diff --git a/cdk-experimental/popover-edit/index.d.ts b/cdk-experimental/popover-edit/index.d.ts index 4176186230..476ad64681 100755 --- a/cdk-experimental/popover-edit/index.d.ts +++ b/cdk-experimental/popover-edit/index.d.ts @@ -1,74 +1,27 @@ -import { BehaviorSubject } from 'rxjs'; import { DataSource } from '@angular/cdk/collections'; -import * as i0 from '@angular/core'; import { NgForm } from '@angular/forms'; -import { Observable } from 'rxjs'; +import { BehaviorSubject, Observable } from 'rxjs'; +import * as i0 from '@angular/core'; -/** - * @title CDK Popover Edit on a CDK data-table - */ -export declare class CdkPopoverEditCdkTableExample { - displayedColumns: string[]; - dataSource: ExampleDataSource_2; - readonly preservedNameValues: WeakMap; - readonly preservedWeightValues: WeakMap; - onSubmitName(element: PeriodicElement_2, f: NgForm): void; - onSubmitWeight(element: PeriodicElement_2, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface PeriodicElement$3 { + name: string; + position: number; + weight: number; + symbol: string; } - /** * @title CDK Popover Edit on a flex cdk-table. */ -export declare class CdkPopoverEditCdkTableFlexExample { +declare class CdkPopoverEditCdkTableFlexExample { displayedColumns: string[]; - dataSource: ExampleDataSource; - readonly preservedNameValues: WeakMap; - readonly preservedWeightValues: WeakMap; - onSubmitName(element: PeriodicElement, f: NgForm): void; - onSubmitWeight(element: PeriodicElement, f: NgForm): void; + dataSource: ExampleDataSource$1; + readonly preservedNameValues: WeakMap; + readonly preservedWeightValues: WeakMap; + onSubmitName(element: PeriodicElement$3, f: NgForm): void; + onSubmitWeight(element: PeriodicElement$3, f: NgForm): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -/** - * @title CDK Popover Edit spanning multiple columns on an HTML data-table - */ -export declare class CdkPopoverEditCellSpanVanillaTableExample { - readonly preservedValues: WeakMap; - readonly persons: Person[]; - onSubmit(person: Person, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title CDK Popover Edit with spreadsheet-like configuration on an HTML data-table - */ -export declare class CdkPopoverEditTabOutVanillaTableExample { - readonly preservedNameValues: WeakMap; - readonly preservedWeightValues: WeakMap; - readonly elements: PeriodicElement_3[]; - onSubmitName(element: PeriodicElement_3, f: NgForm): void; - onSubmitWeight(element: PeriodicElement_3, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title CDK Popover Edit on an HTML data-table - */ -export declare class CdkPopoverEditVanillaTableExample { - readonly preservedNameValues: WeakMap; - readonly preservedWeightValues: WeakMap; - readonly elements: PeriodicElement_4[]; - onSubmitName(element: PeriodicElement_4, f: NgForm): void; - onSubmitWeight(element: PeriodicElement_4, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -76,14 +29,33 @@ export declare class CdkPopoverEditVanillaTableExample { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource extends DataSource { +declare class ExampleDataSource$1 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } +interface PeriodicElement$2 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title CDK Popover Edit on a CDK data-table + */ +declare class CdkPopoverEditCdkTableExample { + displayedColumns: string[]; + dataSource: ExampleDataSource; + readonly preservedNameValues: WeakMap; + readonly preservedWeightValues: WeakMap; + onSubmitName(element: PeriodicElement$2, f: NgForm): void; + onSubmitWeight(element: PeriodicElement$2, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -91,47 +63,67 @@ declare class ExampleDataSource extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_2 extends DataSource { +declare class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; +interface Person { + id: number; + firstName: string; + middleName: string; + lastName: string; } - -declare interface PeriodicElement_2 { - name: string; - position: number; - weight: number; - symbol: string; +/** + * @title CDK Popover Edit spanning multiple columns on an HTML data-table + */ +declare class CdkPopoverEditCellSpanVanillaTableExample { + readonly preservedValues: WeakMap; + readonly persons: Person[]; + onSubmit(person: Person, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement_3 { +interface PeriodicElement$1 { name: string; position: number; weight: number; symbol: string; } +/** + * @title CDK Popover Edit with spreadsheet-like configuration on an HTML data-table + */ +declare class CdkPopoverEditTabOutVanillaTableExample { + readonly preservedNameValues: WeakMap; + readonly preservedWeightValues: WeakMap; + readonly elements: PeriodicElement$1[]; + onSubmitName(element: PeriodicElement$1, f: NgForm): void; + onSubmitWeight(element: PeriodicElement$1, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} -declare interface PeriodicElement_4 { +interface PeriodicElement { name: string; position: number; weight: number; symbol: string; } - -declare interface Person { - id: number; - firstName: string; - middleName: string; - lastName: string; +/** + * @title CDK Popover Edit on an HTML data-table + */ +declare class CdkPopoverEditVanillaTableExample { + readonly preservedNameValues: WeakMap; + readonly preservedWeightValues: WeakMap; + readonly elements: PeriodicElement[]; + onSubmitName(element: PeriodicElement, f: NgForm): void; + onSubmitWeight(element: PeriodicElement, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkPopoverEditCdkTableExample, CdkPopoverEditCdkTableFlexExample, CdkPopoverEditCellSpanVanillaTableExample, CdkPopoverEditTabOutVanillaTableExample, CdkPopoverEditVanillaTableExample }; diff --git a/cdk-experimental/selection/index.d.ts b/cdk-experimental/selection/index.d.ts index 208c193d0d..0ee7f9683c 100755 --- a/cdk-experimental/selection/index.d.ts +++ b/cdk-experimental/selection/index.d.ts @@ -1,10 +1,10 @@ -import * as i0 from '@angular/core'; import { SelectionChange } from '@angular/cdk-experimental/selection'; +import * as i0 from '@angular/core'; /** * @title CDK Selection Column on a CDK table. */ -export declare class CdkSelectionColumnExample { +declare class CdkSelectionColumnExample { displayedColumns: string[]; dataSource: PeriodicElement[]; selected: string[]; @@ -12,11 +12,17 @@ export declare class CdkSelectionColumnExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title CDK Selection on a simple list. */ -export declare class CdkSelectionListExample { +declare class CdkSelectionListExample { data: string[]; selected1: string[]; selected2: string[]; @@ -30,11 +36,4 @@ export declare class CdkSelectionListExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; -} - -export { } +export { CdkSelectionColumnExample, CdkSelectionListExample }; diff --git a/cdk/a11y/index.d.ts b/cdk/a11y/index.d.ts index 5757d4805f..e64e3f3940 100755 --- a/cdk/a11y/index.d.ts +++ b/cdk/a11y/index.d.ts @@ -1,12 +1,9 @@ -import { AfterViewInit } from '@angular/core'; -import { ElementRef } from '@angular/core'; -import { FocusMonitor } from '@angular/cdk/a11y'; -import { FocusOrigin } from '@angular/cdk/a11y'; +import { FocusOrigin, FocusMonitor } from '@angular/cdk/a11y'; import * as i0 from '@angular/core'; -import { OnDestroy } from '@angular/core'; +import { OnDestroy, AfterViewInit, ElementRef } from '@angular/core'; /** @title Monitoring focus with FocusMonitor */ -export declare class FocusMonitorDirectivesExample { +declare class FocusMonitorDirectivesExample { private _ngZone; private _cdr; elementOrigin: string; @@ -18,7 +15,7 @@ export declare class FocusMonitorDirectivesExample { } /** @title Focusing with a specific FocusOrigin */ -export declare class FocusMonitorFocusViaExample implements OnDestroy, AfterViewInit { +declare class FocusMonitorFocusViaExample implements OnDestroy, AfterViewInit { focusMonitor: FocusMonitor; private _cdr; private _ngZone; @@ -32,7 +29,7 @@ export declare class FocusMonitorFocusViaExample implements OnDestroy, AfterView } /** @title Monitoring focus with FocusMonitor */ -export declare class FocusMonitorOverviewExample implements OnDestroy, AfterViewInit { +declare class FocusMonitorOverviewExample implements OnDestroy, AfterViewInit { private _focusMonitor; private _cdr; private _ngZone; @@ -47,4 +44,4 @@ export declare class FocusMonitorOverviewExample implements OnDestroy, AfterView static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { FocusMonitorDirectivesExample, FocusMonitorFocusViaExample, FocusMonitorOverviewExample }; diff --git a/cdk/accordion/index.d.ts b/cdk/accordion/index.d.ts index 19b78d4678..1b8e90d594 100755 --- a/cdk/accordion/index.d.ts +++ b/cdk/accordion/index.d.ts @@ -3,11 +3,11 @@ import * as i0 from '@angular/core'; /** * @title Accordion overview */ -export declare class CdkAccordionOverviewExample { +declare class CdkAccordionOverviewExample { items: string[]; expandedIndex: number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkAccordionOverviewExample }; diff --git a/cdk/clipboard/index.d.ts b/cdk/clipboard/index.d.ts index c169bdb84c..df364b0c49 100755 --- a/cdk/clipboard/index.d.ts +++ b/cdk/clipboard/index.d.ts @@ -3,10 +3,10 @@ import * as i0 from '@angular/core'; /** * @title Clipboard overview */ -export declare class CdkClipboardOverviewExample { +declare class CdkClipboardOverviewExample { value: string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkClipboardOverviewExample }; diff --git a/cdk/dialog/index.d.ts b/cdk/dialog/index.d.ts index 93c2e34c79..5410ce5740 100755 --- a/cdk/dialog/index.d.ts +++ b/cdk/dialog/index.d.ts @@ -1,18 +1,16 @@ -import { Dialog } from '@angular/cdk/dialog'; -import { DialogRef } from '@angular/cdk/dialog'; +import { Dialog, DialogRef } from '@angular/cdk/dialog'; import * as i0 from '@angular/core'; /** * @title Injecting data when opening a dialog */ -export declare class CdkDialogDataExample { +declare class CdkDialogDataExample { dialog: Dialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class CdkDialogDataExampleDialog { +declare class CdkDialogDataExampleDialog { data: any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -21,7 +19,7 @@ export declare class CdkDialogDataExampleDialog { /** * @title CDK Dialog Overview */ -export declare class CdkDialogOverviewExample { +declare class CdkDialogOverviewExample { dialog: Dialog; animal: string | undefined; name: string; @@ -29,8 +27,7 @@ export declare class CdkDialogOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class CdkDialogOverviewExampleDialog { +declare class CdkDialogOverviewExampleDialog { dialogRef: DialogRef; data: any; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -40,17 +37,16 @@ export declare class CdkDialogOverviewExampleDialog { /** * @title CDK Dialog Styling */ -export declare class CdkDialogStylingExample { +declare class CdkDialogStylingExample { dialog: Dialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class CdkDialogStylingExampleDialog { +declare class CdkDialogStylingExampleDialog { dialogRef: DialogRef; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkDialogDataExample, CdkDialogDataExampleDialog, CdkDialogOverviewExample, CdkDialogOverviewExampleDialog, CdkDialogStylingExample, CdkDialogStylingExampleDialog }; diff --git a/cdk/drag-drop/index.d.ts b/cdk/drag-drop/index.d.ts index fda966b37f..b7d60558cd 100755 --- a/cdk/drag-drop/index.d.ts +++ b/cdk/drag-drop/index.d.ts @@ -1,15 +1,12 @@ -import { AfterViewInit } from '@angular/core'; -import { CdkDrag } from '@angular/cdk/drag-drop'; -import { CdkDragDrop } from '@angular/cdk/drag-drop'; import * as i0 from '@angular/core'; +import { AfterViewInit, OnDestroy, TemplateRef } from '@angular/core'; +import { CdkDragDrop, CdkDrag } from '@angular/cdk/drag-drop'; import { MatTable } from '@angular/material/table'; -import { OnDestroy } from '@angular/core'; -import { TemplateRef } from '@angular/core'; /** * @title Drag&Drop position locking */ -export declare class CdkDragDropAxisLockExample { +declare class CdkDragDropAxisLockExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -17,37 +14,37 @@ export declare class CdkDragDropAxisLockExample { /** * @title Drag&Drop boundary */ -export declare class CdkDragDropBoundaryExample { +declare class CdkDragDropBoundaryExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Drag&Drop connected sorting + * @title Drag&Drop connected sorting group */ -export declare class CdkDragDropConnectedSortingExample { +declare class CdkDragDropConnectedSortingGroupExample { todo: string[]; done: string[]; drop(event: CdkDragDrop): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Drag&Drop connected sorting group + * @title Drag&Drop connected sorting */ -export declare class CdkDragDropConnectedSortingGroupExample { +declare class CdkDragDropConnectedSortingExample { todo: string[]; done: string[]; drop(event: CdkDragDrop): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Drag&Drop custom placeholder */ -export declare class CdkDragDropCustomPlaceholderExample { +declare class CdkDragDropCustomPlaceholderExample { movies: string[]; drop(event: CdkDragDrop): void; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -57,7 +54,7 @@ export declare class CdkDragDropCustomPlaceholderExample { /** * @title Drag&Drop custom preview */ -export declare class CdkDragDropCustomPreviewExample { +declare class CdkDragDropCustomPreviewExample { movies: { title: string; poster: string; @@ -73,15 +70,26 @@ export declare class CdkDragDropCustomPreviewExample { /** * @title Delayed dragging */ -export declare class CdkDragDropDelayExample { +declare class CdkDragDropDelayExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Drag&Drop disabled sorting + */ +declare class CdkDragDropDisabledSortingExample { + items: string[]; + basket: string[]; + drop(event: CdkDragDrop): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Drag&Drop disabled */ -export declare class CdkDragDropDisabledExample { +declare class CdkDragDropDisabledExample { items: { value: string; disabled: boolean; @@ -91,21 +99,10 @@ export declare class CdkDragDropDisabledExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Drag&Drop disabled sorting - */ -export declare class CdkDragDropDisabledSortingExample { - items: string[]; - basket: string[]; - drop(event: CdkDragDrop): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Drag&Drop enter predicate */ -export declare class CdkDragDropEnterPredicateExample { +declare class CdkDragDropEnterPredicateExample { all: number[]; even: number[]; drop(event: CdkDragDrop): void; @@ -120,7 +117,7 @@ export declare class CdkDragDropEnterPredicateExample { /** * @title Programmatically setting the free drag position */ -export declare class CdkDragDropFreeDragPositionExample { +declare class CdkDragDropFreeDragPositionExample { dragPosition: { x: number; y: number; @@ -133,7 +130,7 @@ export declare class CdkDragDropFreeDragPositionExample { /** * @title Drag&Drop with a handle */ -export declare class CdkDragDropHandleExample { +declare class CdkDragDropHandleExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -141,27 +138,17 @@ export declare class CdkDragDropHandleExample { /** * @title Drag&Drop horizontal sorting */ -export declare class CdkDragDropHorizontalSortingExample { +declare class CdkDragDropHorizontalSortingExample { timePeriods: string[]; drop(event: CdkDragDrop): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Drag&Drop horizontal wrapping list - */ -export declare class CdkDragDropMixedSortingExample { - items: string[]; - drop(event: CdkDragDrop): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Basic Drag&Drop */ -export declare class CdkDragDropOverviewExample { +declare class CdkDragDropOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -169,8 +156,8 @@ export declare class CdkDragDropOverviewExample { /** * @title Drag&Drop with alternate root element */ -export declare class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy { - private _overlay; +declare class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy { + private _injector; private _viewContainerRef; _dialogTemplate: TemplateRef; private _overlayRef; @@ -185,7 +172,7 @@ export declare class CdkDragDropRootElementExample implements AfterViewInit, OnD /** * @title Drag&Drop sorting */ -export declare class CdkDragDropSortingExample { +declare class CdkDragDropSortingExample { movies: string[]; drop(event: CdkDragDrop): void; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -195,7 +182,7 @@ export declare class CdkDragDropSortingExample { /** * @title Drag&Drop sort predicate */ -export declare class CdkDragDropSortPredicateExample { +declare class CdkDragDropSortPredicateExample { numbers: number[]; drop(event: CdkDragDrop): void; /** @@ -207,10 +194,17 @@ export declare class CdkDragDropSortPredicateExample { static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; + quantity: number; +} /** * @title Drag&Drop table */ -export declare class CdkDragDropTableExample { +declare class CdkDragDropTableExample { table: MatTable; displayedColumns: string[]; dataSource: PeriodicElement[]; @@ -219,10 +213,20 @@ export declare class CdkDragDropTableExample { static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Drag&Drop horizontal wrapping list + */ +declare class CdkDragDropMixedSortingExample { + items: string[]; + drop(event: CdkDragDrop): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Drag&Drop tabs */ -export declare class CdkDragDropTabsExample { +declare class CdkDragDropTabsExample { protected tabs: string[]; protected selectedTabIndex: number; drop(event: CdkDragDrop): void; @@ -230,12 +234,4 @@ export declare class CdkDragDropTabsExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; - quantity: number; -} - -export { } +export { CdkDragDropAxisLockExample, CdkDragDropBoundaryExample, CdkDragDropConnectedSortingExample, CdkDragDropConnectedSortingGroupExample, CdkDragDropCustomPlaceholderExample, CdkDragDropCustomPreviewExample, CdkDragDropDelayExample, CdkDragDropDisabledExample, CdkDragDropDisabledSortingExample, CdkDragDropEnterPredicateExample, CdkDragDropFreeDragPositionExample, CdkDragDropHandleExample, CdkDragDropHorizontalSortingExample, CdkDragDropMixedSortingExample, CdkDragDropOverviewExample, CdkDragDropRootElementExample, CdkDragDropSortPredicateExample, CdkDragDropSortingExample, CdkDragDropTableExample, CdkDragDropTabsExample }; diff --git a/cdk/layout/index.d.ts b/cdk/layout/index.d.ts index c3bb98a9ea..ff71528b59 100755 --- a/cdk/layout/index.d.ts +++ b/cdk/layout/index.d.ts @@ -3,7 +3,7 @@ import { OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; /** @title Respond to viewport changes with BreakpointObserver */ -export declare class BreakpointObserverOverviewExample implements OnDestroy { +declare class BreakpointObserverOverviewExample implements OnDestroy { destroyed: Subject; currentScreenSize: string; displayNameMap: Map; @@ -13,4 +13,4 @@ export declare class BreakpointObserverOverviewExample implements OnDestroy { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { BreakpointObserverOverviewExample }; diff --git a/cdk/listbox/index.d.ts b/cdk/listbox/index.d.ts index fba8503a2a..5b1a287ba9 100755 --- a/cdk/listbox/index.d.ts +++ b/cdk/listbox/index.d.ts @@ -1,16 +1,16 @@ -import { FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; +import { FormControl } from '@angular/forms'; import { Observable } from 'rxjs'; /** @title Listbox with aria-activedescendant. */ -export declare class CdkListboxActivedescendantExample { +declare class CdkListboxActivedescendantExample { features: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with complex object as values. */ -export declare class CdkListboxCompareWithExample { +declare class CdkListboxCompareWithExample { slots: Date[]; appointment: readonly Date[]; compareDate(date1: Date, date2: Date): boolean; @@ -21,26 +21,26 @@ export declare class CdkListboxCompareWithExample { } /** @title Listbox with custom keyboard navigation options. */ -export declare class CdkListboxCustomNavigationExample { +declare class CdkListboxCustomNavigationExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with custom typeahead. */ -export declare class CdkListboxCustomTypeaheadExample { +declare class CdkListboxCustomTypeaheadExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with disabled options. */ -export declare class CdkListboxDisabledExample { +declare class CdkListboxDisabledExample { canDrinkCtrl: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with forms validation. */ -export declare class CdkListboxFormsValidationExample { +declare class CdkListboxFormsValidationExample { signs: string[]; invalid: Observable; constructor(); @@ -51,26 +51,26 @@ export declare class CdkListboxFormsValidationExample { } /** @title Horizontal listbox */ -export declare class CdkListboxHorizontalExample { +declare class CdkListboxHorizontalExample { sizes: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with multiple selection. */ -export declare class CdkListboxMultipleExample { +declare class CdkListboxMultipleExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Basic listbox. */ -export declare class CdkListboxOverviewExample { +declare class CdkListboxOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Listbox with reactive forms. */ -export declare class CdkListboxReactiveFormsExample { +declare class CdkListboxReactiveFormsExample { languages: string[]; languageCtrl: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -78,7 +78,7 @@ export declare class CdkListboxReactiveFormsExample { } /** @title Listbox with template-driven forms. */ -export declare class CdkListboxTemplateFormsExample { +declare class CdkListboxTemplateFormsExample { toppings: string[]; order: readonly string[]; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -86,7 +86,7 @@ export declare class CdkListboxTemplateFormsExample { } /** @title Listbox with value binding. */ -export declare class CdkListboxValueBindingExample { +declare class CdkListboxValueBindingExample { starters: string[]; starter: readonly string[]; reset(): void; @@ -94,4 +94,4 @@ export declare class CdkListboxValueBindingExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkListboxActivedescendantExample, CdkListboxCompareWithExample, CdkListboxCustomNavigationExample, CdkListboxCustomTypeaheadExample, CdkListboxDisabledExample, CdkListboxFormsValidationExample, CdkListboxHorizontalExample, CdkListboxMultipleExample, CdkListboxOverviewExample, CdkListboxReactiveFormsExample, CdkListboxTemplateFormsExample, CdkListboxValueBindingExample }; diff --git a/cdk/menu/index.d.ts b/cdk/menu/index.d.ts index 994d1e424b..a4f99935dd 100755 --- a/cdk/menu/index.d.ts +++ b/cdk/menu/index.d.ts @@ -1,37 +1,13 @@ import * as i0 from '@angular/core'; -/** @title Context menu. */ -export declare class CdkMenuContextExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Gmail inline menu. */ -export declare class CdkMenuInlineExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Google Docs Menu Bar. */ -export declare class CdkMenuMenubarExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Nested context menus. */ -export declare class CdkMenuNestedContextExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** @title Menu with Standalone Trigger. */ -export declare class CdkMenuStandaloneMenuExample { +declare class CdkMenuStandaloneMenuExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Stateful Menu with Standalone Trigger. */ -export declare class CdkMenuStandaloneStatefulMenuExample { +declare class CdkMenuStandaloneStatefulMenuExample { bold: boolean; italic: boolean; sizes: string[]; @@ -41,4 +17,28 @@ export declare class CdkMenuStandaloneStatefulMenuExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** @title Google Docs Menu Bar. */ +declare class CdkMenuMenubarExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Gmail inline menu. */ +declare class CdkMenuInlineExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Context menu. */ +declare class CdkMenuContextExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Nested context menus. */ +declare class CdkMenuNestedContextExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { CdkMenuContextExample, CdkMenuInlineExample, CdkMenuMenubarExample, CdkMenuNestedContextExample, CdkMenuStandaloneMenuExample, CdkMenuStandaloneStatefulMenuExample }; diff --git a/cdk/overlay/index.d.ts b/cdk/overlay/index.d.ts index 50fdaf4ff4..45eb885a0b 100755 --- a/cdk/overlay/index.d.ts +++ b/cdk/overlay/index.d.ts @@ -3,10 +3,10 @@ import * as i0 from '@angular/core'; /** * @title Overlay basic example */ -export declare class CdkOverlayBasicExample { +declare class CdkOverlayBasicExample { isOpen: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkOverlayBasicExample }; diff --git a/cdk/platform/index.d.ts b/cdk/platform/index.d.ts index 6f61181d47..e699ed19b7 100755 --- a/cdk/platform/index.d.ts +++ b/cdk/platform/index.d.ts @@ -1,10 +1,10 @@ -import * as i0 from '@angular/core'; import { Platform } from '@angular/cdk/platform'; +import * as i0 from '@angular/core'; /** * @title Platform overview */ -export declare class CdkPlatformOverviewExample { +declare class CdkPlatformOverviewExample { platform: Platform; supportedInputTypes: string; supportsPassiveEventListeners: boolean; @@ -13,4 +13,4 @@ export declare class CdkPlatformOverviewExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkPlatformOverviewExample }; diff --git a/cdk/portal/index.d.ts b/cdk/portal/index.d.ts index f73ac439d1..ead007943d 100755 --- a/cdk/portal/index.d.ts +++ b/cdk/portal/index.d.ts @@ -1,16 +1,11 @@ -import { AfterViewInit } from '@angular/core'; -import { ComponentPortal } from '@angular/cdk/portal'; -import { DomPortal } from '@angular/cdk/portal'; -import { ElementRef } from '@angular/core'; import * as i0 from '@angular/core'; -import { Portal } from '@angular/cdk/portal'; -import { TemplatePortal } from '@angular/cdk/portal'; -import { TemplateRef } from '@angular/core'; +import { AfterViewInit, TemplateRef, ElementRef } from '@angular/core'; +import { Portal, ComponentPortal, TemplatePortal, DomPortal } from '@angular/cdk/portal'; /** * @title Portal overview */ -export declare class CdkPortalOverviewExample implements AfterViewInit { +declare class CdkPortalOverviewExample implements AfterViewInit { private _viewContainerRef; templatePortalContent: TemplateRef; domPortalContent: ElementRef; @@ -22,10 +17,9 @@ export declare class CdkPortalOverviewExample implements AfterViewInit { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class ComponentPortalExample { +declare class ComponentPortalExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CdkPortalOverviewExample, ComponentPortalExample }; diff --git a/cdk/scrolling/index.d.ts b/cdk/scrolling/index.d.ts index 14b0671b78..c7c5002a5f 100755 --- a/cdk/scrolling/index.d.ts +++ b/cdk/scrolling/index.d.ts @@ -1,39 +1,49 @@ -import { CollectionViewer } from '@angular/cdk/collections'; -import { DataSource } from '@angular/cdk/collections'; import * as i0 from '@angular/core'; -import { InputSignal } from '@angular/core'; +import { DataSource, CollectionViewer } from '@angular/cdk/collections'; import { Observable } from 'rxjs'; /** @title Virtual scroll with view recycling disabled. */ -export declare class CdkVirtualScrollAppendOnlyExample { +declare class CdkVirtualScrollAppendOnlyExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scroll context variables */ -export declare class CdkVirtualScrollContextExample { +declare class CdkVirtualScrollContextExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scroll with a custom strategy */ -export declare class CdkVirtualScrollCustomStrategyExample { +declare class CdkVirtualScrollCustomStrategyExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scroll with a custom data source */ -export declare class CdkVirtualScrollDataSourceExample { +declare class CdkVirtualScrollDataSourceExample { ds: MyDataSource; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +declare class MyDataSource extends DataSource { + private _length; + private _pageSize; + private _cachedData; + private _fetchedPages; + private readonly _dataStream; + private readonly _subscription; + connect(collectionViewer: CollectionViewer): Observable<(string | undefined)[]>; + disconnect(): void; + private _getPageForIndex; + private _fetchPage; +} /** @title Virtual scrolling `
` */ -export declare class CdkVirtualScrollDlExample { +declare class CdkVirtualScrollDlExample { states: { name: string; capital: string; @@ -43,59 +53,46 @@ export declare class CdkVirtualScrollDlExample { } /** @title Fixed size virtual scroll with custom buffer parameters */ -export declare class CdkVirtualScrollFixedBufferExample { +declare class CdkVirtualScrollFixedBufferExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Horizontal virtual scroll */ -export declare class CdkVirtualScrollHorizontalExample { +declare class CdkVirtualScrollHorizontalExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Basic virtual scroll */ -export declare class CdkVirtualScrollOverviewExample { +declare class CdkVirtualScrollOverviewExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scrolling viewport parent element */ -export declare class CdkVirtualScrollParentScrollingExample { +declare class CdkVirtualScrollParentScrollingExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scroll with no template caching */ -export declare class CdkVirtualScrollTemplateCacheExample { +declare class CdkVirtualScrollTemplateCacheExample { items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Virtual scrolling window */ -export declare class CdkVirtualScrollWindowScrollingExample { - readonly shouldRun: InputSignal; +declare class CdkVirtualScrollWindowScrollingExample { + readonly shouldRun: i0.InputSignal; items: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare class MyDataSource extends DataSource { - private _length; - private _pageSize; - private _cachedData; - private _fetchedPages; - private readonly _dataStream; - private readonly _subscription; - connect(collectionViewer: CollectionViewer): Observable<(string | undefined)[]>; - disconnect(): void; - private _getPageForIndex; - private _fetchPage; -} - -export { } +export { CdkVirtualScrollAppendOnlyExample, CdkVirtualScrollContextExample, CdkVirtualScrollCustomStrategyExample, CdkVirtualScrollDataSourceExample, CdkVirtualScrollDlExample, CdkVirtualScrollFixedBufferExample, CdkVirtualScrollHorizontalExample, CdkVirtualScrollOverviewExample, CdkVirtualScrollParentScrollingExample, CdkVirtualScrollTemplateCacheExample, CdkVirtualScrollWindowScrollingExample }; diff --git a/cdk/stepper/index.d.ts b/cdk/stepper/index.d.ts index 521cb44dd4..57eae0e9cf 100755 --- a/cdk/stepper/index.d.ts +++ b/cdk/stepper/index.d.ts @@ -1,41 +1,38 @@ import { CdkStepper } from '@angular/cdk/stepper'; -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; +import * as _angular_forms from '@angular/forms'; /** @title A custom CDK stepper without a form */ -export declare class CdkCustomStepperWithoutFormExample { +declare class CdkCustomStepperWithoutFormExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** Custom CDK stepper component */ +declare class CustomStepper extends CdkStepper { + selectStepByIndex(index: number): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** @title A custom CDK linear stepper with forms */ -export declare class CdkLinearStepperWithFormExample { +declare class CdkLinearStepperWithFormExample { private readonly _formBuilder; isLinear: boolean; - firstFormGroup: FormGroup< { - firstControl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstControl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondControl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondControl: _angular_forms.FormControl; }>; toggleLinearity(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - /** Custom CDK linear stepper component */ -export declare class CustomLinearStepper extends CdkStepper { +declare class CustomLinearStepper extends CdkStepper { selectStepByIndex(index: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** Custom CDK stepper component */ -export declare class CustomStepper extends CdkStepper { - selectStepByIndex(index: number): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { CdkCustomStepperWithoutFormExample, CdkLinearStepperWithFormExample, CustomLinearStepper, CustomStepper }; diff --git a/cdk/table/index.d.ts b/cdk/table/index.d.ts index 95364e6678..3227e4bcff 100755 --- a/cdk/table/index.d.ts +++ b/cdk/table/index.d.ts @@ -1,48 +1,22 @@ -import { BehaviorSubject } from 'rxjs'; import { DataSource } from '@angular/cdk/collections'; +import { BehaviorSubject, Observable } from 'rxjs'; import * as i0 from '@angular/core'; -import { Observable } from 'rxjs'; -/** - * @title Basic CDK data-table - */ -export declare class CdkTableBasicExample { - displayedColumns: string[]; - dataSource: ExampleDataSource_2; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title CDK table with a fixed layout. - */ -export declare class CdkTableFixedLayoutExample { - displayedColumns: string[]; - dataSource: ExampleDataSource_3; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface PeriodicElement$3 { + name: string; + position: number; + symbol: string; + weight: number; } - /** * @title Basic use of `` (uses display flex) */ -export declare class CdkTableFlexBasicExample { +declare class CdkTableFlexBasicExample { displayedColumns: string[]; - dataSource: ExampleDataSource; + dataSource: ExampleDataSource$3; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -/** - * @title Table that uses the recycle view repeater strategy. - */ -export declare class CdkTableRecycleRowsExample { - displayedColumns: string[]; - dataSource: ExampleDataSource_4; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -50,14 +24,29 @@ export declare class CdkTableRecycleRowsExample { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource extends DataSource { +declare class ExampleDataSource$3 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } +interface PeriodicElement$2 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Basic CDK data-table + */ +declare class CdkTableBasicExample { + displayedColumns: string[]; + dataSource: ExampleDataSource$2; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -65,14 +54,29 @@ declare class ExampleDataSource extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_2 extends DataSource { +declare class ExampleDataSource$2 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } +interface PeriodicElement$1 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title CDK table with a fixed layout. + */ +declare class CdkTableFixedLayoutExample { + displayedColumns: string[]; + dataSource: ExampleDataSource$1; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -80,14 +84,29 @@ declare class ExampleDataSource_2 extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_3 extends DataSource { +declare class ExampleDataSource$1 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Table that uses the recycle view repeater strategy. + */ +declare class CdkTableRecycleRowsExample { + displayedColumns: string[]; + dataSource: ExampleDataSource; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -95,40 +114,12 @@ declare class ExampleDataSource_3 extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_4 extends DataSource { +declare class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } -declare interface PeriodicElement { - name: string; - position: number; - symbol: string; - weight: number; -} - -declare interface PeriodicElement_2 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_3 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_4 { - name: string; - position: number; - weight: number; - symbol: string; -} - -export { } +export { CdkTableBasicExample, CdkTableFixedLayoutExample, CdkTableFlexBasicExample, CdkTableRecycleRowsExample }; diff --git a/cdk/text-field/index.d.ts b/cdk/text-field/index.d.ts index ee8536b141..9a6e3bea5a 100755 --- a/cdk/text-field/index.d.ts +++ b/cdk/text-field/index.d.ts @@ -1,11 +1,9 @@ -import { AfterViewInit } from '@angular/core'; -import { CdkTextareaAutosize } from '@angular/cdk/text-field'; -import { ElementRef } from '@angular/core'; import * as i0 from '@angular/core'; -import { OnDestroy } from '@angular/core'; +import { AfterViewInit, OnDestroy, ElementRef } from '@angular/core'; +import { CdkTextareaAutosize } from '@angular/cdk/text-field'; /** @title Monitoring autofill state with cdkAutofill */ -export declare class TextFieldAutofillDirectiveExample { +declare class TextFieldAutofillDirectiveExample { firstNameAutofilled: boolean; lastNameAutofilled: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -13,7 +11,7 @@ export declare class TextFieldAutofillDirectiveExample { } /** @title Monitoring autofill state with AutofillMonitor */ -export declare class TextFieldAutofillMonitorExample implements AfterViewInit, OnDestroy { +declare class TextFieldAutofillMonitorExample implements AfterViewInit, OnDestroy { private _autofill; firstName: ElementRef; lastName: ElementRef; @@ -26,7 +24,7 @@ export declare class TextFieldAutofillMonitorExample implements AfterViewInit, O } /** @title Auto-resizing textarea */ -export declare class TextFieldAutosizeTextareaExample { +declare class TextFieldAutosizeTextareaExample { private _injector; autosize: CdkTextareaAutosize; triggerResize(): void; @@ -34,4 +32,4 @@ export declare class TextFieldAutosizeTextareaExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { TextFieldAutofillDirectiveExample, TextFieldAutofillMonitorExample, TextFieldAutosizeTextareaExample }; diff --git a/cdk/tree/index.d.ts b/cdk/tree/index.d.ts index 18780057c8..d759b4e69c 100755 --- a/cdk/tree/index.d.ts +++ b/cdk/tree/index.d.ts @@ -1,189 +1,143 @@ +import * as rxjs from 'rxjs'; +import { Observable } from 'rxjs'; import { ArrayDataSource } from '@angular/cdk/collections'; -import { CdkTree } from '@angular/cdk/tree'; -import { FlatTreeControl } from '@angular/cdk/tree'; +import { CdkTree, FlatTreeControl, NestedTreeControl } from '@angular/cdk/tree'; import * as i0 from '@angular/core'; -import { NestedTreeControl } from '@angular/cdk/tree'; -import { Observable } from 'rxjs'; import { OnInit } from '@angular/core'; /** - * @title Complex example making use of the redux pattern. - */ -export declare class CdkTreeComplexExample implements OnInit { - private readonly _dataStore; - areRootsLoading: Observable; - roots: Observable; - getChildren: (node: TransformedData) => Observable; - trackBy: (index: number, node: TransformedData) => string; - expansionKey: (node: TransformedData) => string; - ngOnInit(): void; - onExpand(node: TransformedData, expanded: boolean): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Tree with vim keyboard commands. + * Food data with nested structure. + * Each node has a name and an optional list of children. */ -export declare class CdkTreeCustomKeyManagerExample { - treeControl: FlatTreeControl; - dataSource: ArrayDataSource; - hasChild: (_: number, node: ExampleFlatNode_2) => boolean; - getParentNode(node: ExampleFlatNode_2): ExampleFlatNode_2 | null; - shouldRender(node: ExampleFlatNode_2): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface NestedFoodNode$1 { + name: string; + children?: NestedFoodNode$1[]; } - /** * @title Tree with flat nodes */ -export declare class CdkTreeFlatChildrenAccessorExample { - tree: CdkTree; - childrenAccessor: (dataNode: NestedFoodNode) => Observable; - dataSource: ArrayDataSource; - hasChild: (_: number, node: NestedFoodNode) => boolean; - getParentNode(node: NestedFoodNode): NestedFoodNode | null; - shouldRender(node: NestedFoodNode): boolean; +declare class CdkTreeFlatChildrenAccessorExample { + tree: CdkTree; + childrenAccessor: (dataNode: NestedFoodNode$1) => rxjs.Observable; + dataSource: ArrayDataSource; + hasChild: (_: number, node: NestedFoodNode$1) => boolean; + getParentNode(node: NestedFoodNode$1): NestedFoodNode$1 | null; + shouldRender(node: NestedFoodNode$1): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Tree with flat nodes - */ -export declare class CdkTreeFlatExample { - treeControl: FlatTreeControl; - dataSource: ArrayDataSource; - hasChild: (_: number, node: ExampleFlatNode) => boolean; - getParentNode(node: ExampleFlatNode): ExampleFlatNode | null; - shouldRender(node: ExampleFlatNode): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** Flat node with expandable and level information */ +interface FlatFoodNode$1 { + expandable: boolean; + name: string; + level: number; + isExpanded?: boolean; } - /** * @title Tree with flat nodes */ -export declare class CdkTreeFlatLevelAccessorExample { - tree: CdkTree; - levelAccessor: (dataNode: FlatFoodNode) => number; - dataSource: ArrayDataSource; - hasChild: (_: number, node: FlatFoodNode) => boolean; - getParentNode(node: FlatFoodNode): FlatFoodNode | null; - shouldRender(node: FlatFoodNode): boolean; +declare class CdkTreeFlatLevelAccessorExample { + tree: CdkTree; + levelAccessor: (dataNode: FlatFoodNode$1) => number; + dataSource: ArrayDataSource; + hasChild: (_: number, node: FlatFoodNode$1) => boolean; + getParentNode(node: FlatFoodNode$1): FlatFoodNode$1 | null; + shouldRender(node: FlatFoodNode$1): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Tree with nested nodes using childAccessor - */ -export declare class CdkTreeNestedChildrenAccessorExample { - tree: CdkTree; - childrenAccessor: (dataNode: NestedFoodNode_2) => NestedFoodNode_2[]; - dataSource: ArrayDataSource; - hasChild: (_: number, node: NestedFoodNode_2) => boolean; - getParentNode(node: NestedFoodNode_2): NestedFoodNode_2 | null; - shouldRender(node: NestedFoodNode_2): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Tree with nested nodes - */ -export declare class CdkTreeNestedExample { - treeControl: NestedTreeControl; - dataSource: ArrayDataSource; - hasChild: (_: number, node: FoodNode) => boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Tree with nested nodes and level accessor - */ -export declare class CdkTreeNestedLevelAccessorExample { - tree: CdkTree; - levelAccessor: (dataNode: FlatFoodNode_2) => number; - dataSource: ArrayDataSource; - hasChild: (_: number, node: FlatFoodNode_2) => boolean; - getParentNode(node: FlatFoodNode_2): FlatFoodNode_2 | null; - shouldRender(node: FlatFoodNode_2): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** Flat node with expandable and level information */ -declare interface ExampleFlatNode { - expandable: boolean; - name: string; - level: number; - isExpanded?: boolean; -} - /** Flat node with expandable and level information */ -declare interface ExampleFlatNode_2 { +interface ExampleFlatNode$1 { expandable: boolean; name: string; level: number; isExpanded?: boolean; } - -/** Flat node with expandable and level information */ -declare interface FlatFoodNode { - expandable: boolean; - name: string; - level: number; - isExpanded?: boolean; +/** + * @title Tree with flat nodes + */ +declare class CdkTreeFlatExample { + treeControl: FlatTreeControl; + dataSource: ArrayDataSource; + hasChild: (_: number, node: ExampleFlatNode$1) => boolean; + getParentNode(node: ExampleFlatNode$1): ExampleFlatNode$1 | null; + shouldRender(node: ExampleFlatNode$1): boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** Flat node with expandable and level information */ -declare interface FlatFoodNode_2 { +interface FlatFoodNode { expandable: boolean; name: string; level: number; isExpanded?: boolean; } - /** - * Food data with nested structure. - * Each node has a name and an optional list of children. + * @title Tree with nested nodes and level accessor */ -declare interface FoodNode { - name: string; - children?: FoodNode[]; +declare class CdkTreeNestedLevelAccessorExample { + tree: CdkTree; + levelAccessor: (dataNode: FlatFoodNode) => number; + dataSource: ArrayDataSource; + hasChild: (_: number, node: FlatFoodNode) => boolean; + getParentNode(node: FlatFoodNode): FlatFoodNode | null; + shouldRender(node: FlatFoodNode): boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare type LoadingState = 'INIT' | 'LOADING' | 'LOADED'; - /** * Food data with nested structure. * Each node has a name and an optional list of children. */ -declare interface NestedFoodNode { +interface NestedFoodNode { name: string; children?: NestedFoodNode[]; } +/** + * @title Tree with nested nodes using childAccessor + */ +declare class CdkTreeNestedChildrenAccessorExample { + tree: CdkTree; + childrenAccessor: (dataNode: NestedFoodNode) => NestedFoodNode[]; + dataSource: ArrayDataSource; + hasChild: (_: number, node: NestedFoodNode) => boolean; + getParentNode(node: NestedFoodNode): NestedFoodNode | null; + shouldRender(node: NestedFoodNode): boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * Food data with nested structure. * Each node has a name and an optional list of children. */ -declare interface NestedFoodNode_2 { +interface FoodNode { name: string; - children?: NestedFoodNode_2[]; + children?: FoodNode[]; +} +/** + * @title Tree with nested nodes + */ +declare class CdkTreeNestedExample { + treeControl: NestedTreeControl; + dataSource: ArrayDataSource; + hasChild: (_: number, node: FoodNode) => boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface RawData { +type LoadingState = 'INIT' | 'LOADING' | 'LOADED'; +interface RawData { id: string; name: string; parentId?: string; childrenIds?: string[]; childrenLoading: LoadingState; } - declare class TransformedData { raw: RawData; constructor(raw: RawData); @@ -191,5 +145,40 @@ declare class TransformedData { isExpandable(): boolean; isLeaf(): boolean; } +/** + * @title Complex example making use of the redux pattern. + */ +declare class CdkTreeComplexExample implements OnInit { + private readonly _dataStore; + areRootsLoading: Observable; + roots: Observable; + getChildren: (node: TransformedData) => Observable; + trackBy: (index: number, node: TransformedData) => string; + expansionKey: (node: TransformedData) => string; + ngOnInit(): void; + onExpand(node: TransformedData, expanded: boolean): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** Flat node with expandable and level information */ +interface ExampleFlatNode { + expandable: boolean; + name: string; + level: number; + isExpanded?: boolean; +} +/** + * @title Tree with vim keyboard commands. + */ +declare class CdkTreeCustomKeyManagerExample { + treeControl: FlatTreeControl; + dataSource: ArrayDataSource; + hasChild: (_: number, node: ExampleFlatNode) => boolean; + getParentNode(node: ExampleFlatNode): ExampleFlatNode | null; + shouldRender(node: ExampleFlatNode): boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} -export { } +export { CdkTreeComplexExample, CdkTreeCustomKeyManagerExample, CdkTreeFlatChildrenAccessorExample, CdkTreeFlatExample, CdkTreeFlatLevelAccessorExample, CdkTreeNestedChildrenAccessorExample, CdkTreeNestedExample, CdkTreeNestedLevelAccessorExample }; diff --git a/docs-content/api-docs/cdk-bidi.html b/docs-content/api-docs/cdk-bidi.html index 5c06f62876..2be0528b1c 100755 --- a/docs-content/api-docs/cdk-bidi.html +++ b/docs-content/api-docs/cdk-bidi.html @@ -64,7 +64,20 @@
Methods
- boolean | void + boolean

@@ -478,7 +478,7 @@

Methods
- boolean | void + boolean

@@ -670,7 +670,7 @@

Methods
- boolean | void + boolean

@@ -734,7 +734,7 @@

Methods
- boolean | void + boolean

@@ -820,7 +820,7 @@

Methods
- boolean | void + boolean

diff --git a/docs-content/api-docs/cdk-dialog.html b/docs-content/api-docs/cdk-dialog.html index 6a84e1a983..39641fbacf 100755 --- a/docs-content/api-docs/cdk-dialog.html +++ b/docs-content/api-docs/cdk-dialog.html @@ -493,6 +493,19 @@

Selector: cdk-step @@ -287,6 +287,10 @@

Methods
+ diff --git a/docs-content/api-docs/cdk-table.html b/docs-content/api-docs/cdk-table.html index fd1155cc31..66bc820394 100755 --- a/docs-content/api-docs/cdk-table.html +++ b/docs-content/api-docs/cdk-table.html @@ -27,36 +27,13 @@

-

-

Enables the recycle view repeater strategy, which reduces rendering latency. Not compatible with -tables that animate rows.

-

- Selector: - - cdk-table[recycleRows] - - table[cdk-table][recycleRows] - -

- - - - - - - - -
Methods
+

Header template container that contains the cell outlet. Adds the right class and role.

+

+ Selector: + + cdk-header-row + + tr[cdk-header-row] + +

+ + + + + + + + + +

Footer template container that contains the cell outlet. Adds the right class and role.

+

+ Selector: + + cdk-footer-row + + tr[cdk-footer-row] + +

+ + + + + + + + + +

Data row template container that contains the cell outlet. Adds the right class and role.

+

+ Selector: + + cdk-row + + tr[cdk-row] + +

+ + + + + + + + + +

Column that simply shows text content for the header and row cells. Assumes that the table +is using the native table implementation (<table>).

+

By default, the name of this column will be the header text and data property accessor. +The header text can be overridden with the headerText input. Cell values can be overridden with +the dataAccessor input. Change the text justification to the start or end using the justify +input.

+

+ Selector: + + cdk-text-column + +

Properties
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
+ @Input()

+ dataAccessor: (data: T, name: string) => string +

+

Accessor function to retrieve the data rendered for each cell. If this +property is not set, the data cells will render the value found in the data's property matching +the column's name. For example, if the column is named id, then the rendered value will be +value defined by the data's id property.

+
+ @Input()

+ headerText: string +

+

Text label that should be used for the column header. If this property is not +set, the header text will default to the column name with its first letter capitalized.

+
+ @Input()

+ justify: 'start' | 'end' | 'center' +

+

Alignment of the cell values.

+
+ @Input()

+ name: string +

+

Column name that should be used to reference this column.

+
+ + + + + + + + + + +

Enables the recycle view repeater strategy, which reduces rendering latency. Not compatible with +tables that animate rows.

+

+ Selector: + + cdk-table[recycleRows] + + table[cdk-table][recycleRows] + +

+ + + + + + + + +
Methods
-

Header template container that contains the cell outlet. Adds the right class and role.

-

- Selector: - - cdk-header-row - - tr[cdk-header-row] - -

- - - - - - - - - -

Footer template container that contains the cell outlet. Adds the right class and role.

-

- Selector: - - cdk-footer-row - - tr[cdk-footer-row] - -

- - - - - - - - - -

Data row template container that contains the cell outlet. Adds the right class and role.

-

- Selector: - - cdk-row - - tr[cdk-row] - -

- - - - - - - - -

Column that simply shows text content for the header and row cells. Assumes that the table -is using the native table implementation (<table>).

-

By default, the name of this column will be the header text and data property accessor. -The header text can be overridden with the headerText input. Cell values can be overridden with -the dataAccessor input. Change the text justification to the start or end using the justify -input.

-

- Selector: - - cdk-text-column - -

Properties
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescription
- @Input()

- dataAccessor: (data: T, name: string) => string -

-

Accessor function to retrieve the data rendered for each cell. If this -property is not set, the data cells will render the value found in the data's property matching -the column's name. For example, if the column is named id, then the rendered value will be -value defined by the data's id property.

-
- @Input()

- headerText: string -

-

Text label that should be used for the column header. If this property is not -set, the header text will default to the column name with its first letter capitalized.

-
- @Input()

- justify: 'start' | 'end' | 'center' -

-

Alignment of the cell values.

-
- @Input()

- name: string -

-

Column name that should be used to reference this column.

-
- - - - - -
-
-type StickyDirection = 'top' | 'bottom' | 'left' | 'right';
-
-
- - - - -
Methods
documentRootLocatorFactory - + + +

Gets a locator factory rooted at the document root.

+ + + Returns @@ -1399,7 +1405,14 @@
Methods
getAllChildLoaders - + + +

Searches for all elements with the given selector under the environment's root element, +and returns an array of HarnessLoaders, one for each matching element, rooted at that +element.

+ + + Parameters @@ -1413,7 +1426,8 @@
Methods

- +

The selector for the root element of the new HarnessLoader

+

@@ -1428,7 +1442,8 @@
Methods

- +

A list of HarnessLoaders, one for each matching element, rooted at that element.

+

@@ -1445,7 +1460,13 @@
Methods
getAllHarnesses - + + +

Searches for all instances of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a list ComponentHarness for each instance.

+ + + Parameters @@ -1459,7 +1480,8 @@
Methods

- +

A query for a harness to create

+

@@ -1474,7 +1496,8 @@
Methods

- +

A list instances of the given harness type.

+

@@ -1542,7 +1565,14 @@
Methods
getChildLoader - + + +

Searches for an element with the given selector under the evironment's root element, +and returns a HarnessLoader rooted at the matching element. If multiple elements match the +selector, the first is used. If no elements match, an error is thrown.

+ + + Parameters @@ -1556,7 +1586,8 @@
Methods

- +

The selector for the root element of the new HarnessLoader

+

@@ -1571,7 +1602,8 @@
Methods

- +

A HarnessLoader rooted at the element matching the given selector.

+

@@ -1619,7 +1651,15 @@
Methods
getHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, an error is thrown.

+ + + Parameters @@ -1633,7 +1673,8 @@
Methods

- +

A query for a harness to create

+

@@ -1648,7 +1689,8 @@
Methods

- +

An instance of the given harness type

+

@@ -1665,7 +1707,15 @@
Methods
getHarnessOrNull - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, null is returned.

+ + + Parameters @@ -1679,7 +1729,8 @@
Methods

- +

A query for a harness to create

+

@@ -1694,7 +1745,8 @@
Methods

- +

An instance of the given harness type (or null if not found).

+

@@ -1762,7 +1814,12 @@
Methods
harnessLoaderFor - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -1776,7 +1833,8 @@
Methods

- +

The selector for the root element.

+

@@ -1791,7 +1849,8 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector.

+

@@ -1808,7 +1867,12 @@
Methods
harnessLoaderForAll - + + +

Gets a list of HarnessLoader instances, one for each matching element.

+ + + Parameters @@ -1822,7 +1886,8 @@
Methods

- +

The selector for the root element.

+

@@ -1837,7 +1902,8 @@
Methods

- +

A list of HarnessLoader, one rooted at each element matching the given selector.

+

@@ -1854,7 +1920,12 @@
Methods
harnessLoaderForOptional - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -1868,7 +1939,8 @@
Methods

- +

The selector for the root element.

+

@@ -1883,7 +1955,9 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector, or null if + no matching element is found.

+

@@ -1900,7 +1974,13 @@
Methods
hasHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a boolean indicating if any were found.

+ + + Parameters @@ -1914,7 +1994,8 @@
Methods

- +

A query for a harness to create

+

@@ -1929,7 +2010,8 @@
Methods

- +

A boolean indicating if an instance was found.

+

@@ -2008,12 +2090,45 @@
Methods
locatorFor - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorFor(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorFor('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorFor('span')()            // Throws because the `Promise` rejects
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -2033,11 +2148,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>> + () => Promise<LocatorFnResult<T>>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise rejects. The type that the Promise resolves to is a union of all result types for + each query.

+

@@ -2052,12 +2172,51 @@
Methods
locatorForAll - + + +

Creates an asynchronous locator function that can be used to find ComponentHarness instances +or elements under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div' and +IdIsD1Harness.hostSelector is '#d1'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
// Gets [DivHarness for #d1, TestElement for #d1, DivHarness for #d2, TestElement for #d2]
+await lf.locatorForAll(DivHarness, 'div')()
+// Gets [TestElement for #d1, TestElement for #d2]
+await lf.locatorForAll('div', '#d1')()
+// Gets [DivHarness for #d1, IdIsD1Harness for #d1, DivHarness for #d2]
+await lf.locatorForAll(DivHarness, IdIsD1Harness)()
+// Gets []
+await lf.locatorForAll('span')()
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -2077,11 +2236,18 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>[]> + () => Promise<LocatorFnResult<T>[]>

- +

An asynchronous locator function that searches for and returns a Promise for all + elements and harnesses matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If an element matches more than + one ComponentHarness class, the locator gets an instance of each for the same element. If + an element matches multiple string selectors, only one TestElement instance is returned + for that element. The type that the Promise resolves to is an array where each element is + the union of all result types for each query.

+

@@ -2096,12 +2262,45 @@
Methods
locatorForOptional - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironmnet.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorForOptional(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorForOptional('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorForOptional('span')()            // Gets `null`
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -2121,11 +2320,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T> | null> + () => Promise<LocatorFnResult<T> | null>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise is resolved with null. The type that the Promise resolves to is a union of all + result types for each query or null.

+

@@ -2153,7 +2357,8 @@
Methods

- +

A HarnessLoader rooted at the root element of this HarnessEnvironment.

+

diff --git a/docs-content/api-docs/cdk-testing-testbed.html b/docs-content/api-docs/cdk-testing-testbed.html index d2e4fa64c8..8c958c9155 100755 --- a/docs-content/api-docs/cdk-testing-testbed.html +++ b/docs-content/api-docs/cdk-testing-testbed.html @@ -52,7 +52,8 @@
Methods
documentRootLocatorFactory - + + +

Gets a locator factory rooted at the document root.

+ + + Returns @@ -297,7 +303,14 @@
Methods
getAllChildLoaders - + + +

Searches for all elements with the given selector under the environment's root element, +and returns an array of HarnessLoaders, one for each matching element, rooted at that +element.

+ + + Parameters @@ -311,7 +324,8 @@
Methods

- +

The selector for the root element of the new HarnessLoader

+

@@ -326,7 +340,8 @@
Methods

- +

A list of HarnessLoaders, one for each matching element, rooted at that element.

+

@@ -343,7 +358,13 @@
Methods
getAllHarnesses - + + +

Searches for all instances of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a list ComponentHarness for each instance.

+ + + Parameters @@ -357,7 +378,8 @@
Methods

- +

A query for a harness to create

+

@@ -372,7 +394,8 @@
Methods

- +

A list instances of the given harness type.

+

@@ -440,7 +463,14 @@
Methods
getChildLoader - + + +

Searches for an element with the given selector under the evironment's root element, +and returns a HarnessLoader rooted at the matching element. If multiple elements match the +selector, the first is used. If no elements match, an error is thrown.

+ + + Parameters @@ -454,7 +484,8 @@
Methods

- +

The selector for the root element of the new HarnessLoader

+

@@ -469,7 +500,8 @@
Methods

- +

A HarnessLoader rooted at the element matching the given selector.

+

@@ -517,7 +549,15 @@
Methods
getHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, an error is thrown.

+ + + Parameters @@ -531,7 +571,8 @@
Methods

- +

A query for a harness to create

+

@@ -546,7 +587,8 @@
Methods

- +

An instance of the given harness type

+

@@ -563,7 +605,15 @@
Methods
getHarnessOrNull - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, null is returned.

+ + + Parameters @@ -577,7 +627,8 @@
Methods

- +

A query for a harness to create

+

@@ -592,7 +643,8 @@
Methods

- +

An instance of the given harness type (or null if not found).

+

@@ -742,7 +794,12 @@
Methods
harnessLoaderFor - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -756,7 +813,8 @@
Methods

- +

The selector for the root element.

+

@@ -771,7 +829,8 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector.

+

@@ -788,7 +847,12 @@
Methods
harnessLoaderForAll - + + +

Gets a list of HarnessLoader instances, one for each matching element.

+ + + Parameters @@ -802,7 +866,8 @@
Methods

- +

The selector for the root element.

+

@@ -817,7 +882,8 @@
Methods

- +

A list of HarnessLoader, one rooted at each element matching the given selector.

+

@@ -834,7 +900,12 @@
Methods
harnessLoaderForOptional - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -848,7 +919,8 @@
Methods

- +

The selector for the root element.

+

@@ -863,7 +935,9 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector, or null if + no matching element is found.

+

@@ -880,7 +954,13 @@
Methods
hasHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a boolean indicating if any were found.

+ + + Parameters @@ -894,7 +974,8 @@
Methods

- +

A query for a harness to create

+

@@ -909,7 +990,8 @@
Methods

- +

A boolean indicating if an instance was found.

+

@@ -988,12 +1070,45 @@
Methods
locatorFor - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorFor(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorFor('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorFor('span')()            // Throws because the `Promise` rejects
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -1013,11 +1128,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>> + () => Promise<LocatorFnResult<T>>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise rejects. The type that the Promise resolves to is a union of all result types for + each query.

+

@@ -1032,12 +1152,51 @@
Methods
locatorForAll - + + +

Creates an asynchronous locator function that can be used to find ComponentHarness instances +or elements under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div' and +IdIsD1Harness.hostSelector is '#d1'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
// Gets [DivHarness for #d1, TestElement for #d1, DivHarness for #d2, TestElement for #d2]
+await lf.locatorForAll(DivHarness, 'div')()
+// Gets [TestElement for #d1, TestElement for #d2]
+await lf.locatorForAll('div', '#d1')()
+// Gets [DivHarness for #d1, IdIsD1Harness for #d1, DivHarness for #d2]
+await lf.locatorForAll(DivHarness, IdIsD1Harness)()
+// Gets []
+await lf.locatorForAll('span')()
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -1057,11 +1216,18 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>[]> + () => Promise<LocatorFnResult<T>[]>

- +

An asynchronous locator function that searches for and returns a Promise for all + elements and harnesses matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If an element matches more than + one ComponentHarness class, the locator gets an instance of each for the same element. If + an element matches multiple string selectors, only one TestElement instance is returned + for that element. The type that the Promise resolves to is an array where each element is + the union of all result types for each query.

+

@@ -1076,12 +1242,45 @@
Methods
locatorForOptional - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironmnet.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorForOptional(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorForOptional('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorForOptional('span')()            // Gets `null`
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -1101,11 +1300,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T> | null> + () => Promise<LocatorFnResult<T> | null>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise is resolved with null. The type that the Promise resolves to is a union of all + result types for each query or null.

+

@@ -1133,7 +1337,8 @@
Methods

- +

A HarnessLoader rooted at the root element of this HarnessEnvironment.

+

diff --git a/docs-content/api-docs/cdk-testing.html b/docs-content/api-docs/cdk-testing.html index 3044e145e1..bee1df3596 100755 --- a/docs-content/api-docs/cdk-testing.html +++ b/docs-content/api-docs/cdk-testing.html @@ -38,9 +38,8 @@

Base class for component harnesses that all component harness authors should extend. This base -component harness provides the basic ability to locate element and sub-component harness. It -should be inherited when defining user's own harness.

+

Base class for component test harnesses that all component harness authors should extend. This +base component harness provides the basic ability to locate element and sub-component harnesses.

Properties
@@ -164,6 +163,12 @@
Methods
@@ -212,7 +217,7 @@
Methods
@@ -247,6 +245,18 @@
Methods
@@ -295,7 +305,7 @@
Methods
@@ -345,6 +335,12 @@
Methods
@@ -393,7 +389,7 @@
Methods
@@ -470,7 +459,13 @@
Methods
getAllChildLoaders - + + + @@ -484,7 +479,8 @@
Methods
@@ -499,7 +495,8 @@
Methods

Creates an asynchronous locator function that can be used to find a ComponentHarness instance or element under the host element of this ComponentHarness.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await ch.locatorFor(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await ch.locatorFor('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await ch.locatorFor('span')()            // Throws because the `Promise` rejects
- AsyncFactoryFn<LocatorFnResult<T>> + () => Promise<LocatorFnResult<T>>

@@ -221,13 +226,6 @@

Methods
order in the DOM, and second by order in the queries list. If no matches are found, the Promise rejects. The type that the Promise resolves to is a union of all result types for each query.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div':

-
    -
  • await ch.locatorFor(DivHarness, 'div')() gets a DivHarness instance for #d1
  • -
  • await ch.locatorFor('div', DivHarness)() gets a TestElement instance for #d1
  • -
  • await ch.locatorFor('span')() throws because the Promise rejects.
  • -

Creates an asynchronous locator function that can be used to find ComponentHarness instances or elements under the host element of this ComponentHarness.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div' and +IdIsD1Harness.hostSelector is '#d1'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
// Gets [DivHarness for #d1, TestElement for #d1, DivHarness for #d2, TestElement for #d2]
+await ch.locatorForAll(DivHarness, 'div')()
+// Gets [TestElement for #d1, TestElement for #d2]
+await ch.locatorForAll('div', '#d1')()
+// Gets [DivHarness for #d1, IdIsD1Harness for #d1, DivHarness for #d2]
+await ch.locatorForAll(DivHarness, IdIsD1Harness)()
+// Gets []
+await ch.locatorForAll('span')()
- AsyncFactoryFn<LocatorFnResult<T>[]> + () => Promise<LocatorFnResult<T>[]>

@@ -306,26 +316,6 @@

Methods
an element matches multiple string selectors, only one TestElement instance is returned for that element. The type that the Promise resolves to is an array where each element is the union of all result types for each query.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div' and IdIsD1Harness.hostSelector === '#d1':

-
    -
  • await ch.locatorForAll(DivHarness, 'div')() gets [ - DivHarness, // for #d1 - TestElement, // for #d1 - DivHarness, // for #d2 - TestElement // for #d2 -]
  • -
  • await ch.locatorForAll('div', '#d1')() gets [ - TestElement, // for #d1 - TestElement // for #d2 -]
  • -
  • await ch.locatorForAll(DivHarness, IdIsD1Harness)() gets [ - DivHarness, // for #d1 - IdIsD1Harness, // for #d1 - DivHarness // for #d2 -]
  • -
  • await ch.locatorForAll('span')() gets [].
  • -

Creates an asynchronous locator function that can be used to find a ComponentHarness instance or element under the host element of this ComponentHarness.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await ch.locatorForOptional(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await ch.locatorForOptional('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await ch.locatorForOptional('span')()            // Gets `null`
- AsyncFactoryFn<LocatorFnResult<T> | null> + () => Promise<LocatorFnResult<T> | null>

@@ -402,13 +398,6 @@

Methods
order in the DOM, and second by order in the queries list. If no matches are found, the Promise is resolved with null. The type that the Promise resolves to is a union of all result types for each query or null.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div':

-
    -
  • await ch.locatorForOptional(DivHarness, 'div')() gets a DivHarness instance for #d1
  • -
  • await ch.locatorForOptional('div', DivHarness)() gets a TestElement instance for #d1
  • -
  • await ch.locatorForOptional('span')() gets null.
  • -

+

Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

+ +
Parameters

- +

The selector for elements in the component's content.

+

- +

A list of HarnessLoader for each element matching the given selector.

+

@@ -516,7 +513,12 @@
Methods
getAllHarnesses - + + +

Gets all matching harnesses for the given query within the current harness's content.

+ + + Parameters @@ -530,7 +532,8 @@
Methods

- +

The harness query to search for.

+

@@ -545,7 +548,8 @@
Methods

- +

The list of harness matching the given query.

+

@@ -562,7 +566,13 @@
Methods
getChildLoader - + + +

Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

+ + + Parameters @@ -576,7 +586,8 @@
Methods

- +

The selector for an element in the component's content.

+

@@ -591,7 +602,8 @@
Methods

- +

A HarnessLoader that searches for harnesses under the given selector.

+

@@ -608,7 +620,12 @@
Methods
getHarness - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -622,7 +639,8 @@
Methods

- +

The harness query to search for.

+

@@ -637,7 +655,8 @@
Methods

- +

The first harness matching the given query.

+

@@ -654,7 +673,12 @@
Methods
getHarnessOrNull - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -668,7 +692,8 @@
Methods

- +

The harness query to search for.

+

@@ -683,7 +708,8 @@
Methods

- +

The first harness matching the given query, or null if none is found.

+

@@ -734,7 +760,13 @@
Methods
hasHarness - + + +

Checks whether there is a matching harnesses for the given query within the current harness's +content.

+ + + Parameters @@ -748,7 +780,8 @@
Methods

- +

The harness query to search for.

+

@@ -763,7 +796,8 @@
Methods

- +

Whetehr there is matching harnesses for the given query.

+

@@ -813,8 +847,8 @@

A class used to associate a ComponentHarness class with predicates functions that can be used to -filter instances of the class.

+

A class used to associate a ComponentHarness class with predicate functions that can be used to +filter instances of the class to be matched.

Properties
@@ -1195,7 +1229,8 @@ @@ -1207,7 +1242,8 @@ @@ -1289,7 +1325,7 @@
Methods
@@ -1385,7 +1421,12 @@
Methods
- + + + @@ -1413,7 +1454,15 @@
Methods
forceStabilize - + + + @@ -1442,7 +1491,14 @@
Methods
getAllChildLoaders - + + + @@ -1456,7 +1512,8 @@
Methods
@@ -1471,7 +1528,8 @@
Methods

The native root element of this HarnessEnvironment.

+

The root element of this HarnessEnvironment as a TestElement.

+
-

Creates a HarnessLoader rooted at the given raw element.

+

Creates a HarnessEnvironment rooted at the given raw element.

documentRootLocatorFactory
+

Gets a locator factory rooted at the document root.

+ +
Returns
+

Flushes change detection and async tasks captured in the Angular zone. +In most cases it should not be necessary to call this manually. However, there may be some edge +cases where it is needed to fully flush animation events. +This is an abstrct method that must be implemented by subclasses.

+ +
Returns
+

Searches for all elements with the given selector under the environment's root element, +and returns an array of HarnessLoaders, one for each matching element, rooted at that +element.

+ +
Parameters

- +

The selector for the root element of the new HarnessLoader

+

- +

A list of HarnessLoaders, one for each matching element, rooted at that element.

+

@@ -1488,7 +1546,13 @@
Methods
getAllHarnesses - + + +

Searches for all instances of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a list ComponentHarness for each instance.

+ + + Parameters @@ -1502,7 +1566,8 @@
Methods

- +

A query for a harness to create

+

@@ -1517,7 +1582,8 @@
Methods

- +

A list instances of the given harness type.

+

@@ -1585,7 +1651,14 @@
Methods
getChildLoader - + + +

Searches for an element with the given selector under the evironment's root element, +and returns a HarnessLoader rooted at the matching element. If multiple elements match the +selector, the first is used. If no elements match, an error is thrown.

+ + + Parameters @@ -1599,7 +1672,8 @@
Methods

- +

The selector for the root element of the new HarnessLoader

+

@@ -1614,7 +1688,8 @@
Methods

- +

A HarnessLoader rooted at the element matching the given selector.

+

@@ -1662,7 +1737,15 @@
Methods
getHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, an error is thrown.

+ + + Parameters @@ -1676,7 +1759,8 @@
Methods

- +

A query for a harness to create

+

@@ -1691,7 +1775,8 @@
Methods

- +

An instance of the given harness type

+

@@ -1708,7 +1793,15 @@
Methods
getHarnessOrNull - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a ComponentHarness for that instance. If +multiple matching components are found, a harness for the first one is returned. If no matching +component is found, null is returned.

+ + + Parameters @@ -1722,7 +1815,8 @@
Methods

- +

A query for a harness to create

+

@@ -1737,7 +1831,8 @@
Methods

- +

An instance of the given harness type (or null if not found).

+

@@ -1754,7 +1849,12 @@
Methods
harnessLoaderFor - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -1768,7 +1868,8 @@
Methods

- +

The selector for the root element.

+

@@ -1783,7 +1884,8 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector.

+

@@ -1800,7 +1902,12 @@
Methods
harnessLoaderForAll - + + +

Gets a list of HarnessLoader instances, one for each matching element.

+ + + Parameters @@ -1814,7 +1921,8 @@
Methods

- +

The selector for the root element.

+

@@ -1829,7 +1937,8 @@
Methods

- +

A list of HarnessLoader, one rooted at each element matching the given selector.

+

@@ -1846,7 +1955,12 @@
Methods
harnessLoaderForOptional - + + +

Gets a HarnessLoader instance for an element under the root of this HarnessEnvironment.

+ + + Parameters @@ -1860,7 +1974,8 @@
Methods

- +

The selector for the root element.

+

@@ -1875,7 +1990,9 @@
Methods

- +

A HarnessLoader rooted at the first element matching the given selector, or null if + no matching element is found.

+

@@ -1892,7 +2009,13 @@
Methods
hasHarness - + + +

Searches for an instance of the component corresponding to the given harness type under the +HarnessEnvironment's root element, and returns a boolean indicating if any were found.

+ + + Parameters @@ -1906,7 +2029,8 @@
Methods

- +

A query for a harness to create

+

@@ -1921,7 +2045,8 @@
Methods

- +

A boolean indicating if an instance was found.

+

@@ -1936,12 +2061,45 @@
Methods
locatorFor - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorFor(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorFor('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorFor('span')()            // Throws because the `Promise` rejects
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -1961,11 +2119,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>> + () => Promise<LocatorFnResult<T>>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise rejects. The type that the Promise resolves to is a union of all result types for + each query.

+

@@ -1980,12 +2143,51 @@
Methods
locatorForAll - + + +

Creates an asynchronous locator function that can be used to find ComponentHarness instances +or elements under the root element of this HarnessEnvironment.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div' and +IdIsD1Harness.hostSelector is '#d1'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
// Gets [DivHarness for #d1, TestElement for #d1, DivHarness for #d2, TestElement for #d2]
+await lf.locatorForAll(DivHarness, 'div')()
+// Gets [TestElement for #d1, TestElement for #d2]
+await lf.locatorForAll('div', '#d1')()
+// Gets [DivHarness for #d1, IdIsD1Harness for #d1, DivHarness for #d2]
+await lf.locatorForAll(DivHarness, IdIsD1Harness)()
+// Gets []
+await lf.locatorForAll('span')()
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -2005,11 +2207,18 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T>[]> + () => Promise<LocatorFnResult<T>[]>

- +

An asynchronous locator function that searches for and returns a Promise for all + elements and harnesses matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If an element matches more than + one ComponentHarness class, the locator gets an instance of each for the same element. If + an element matches multiple string selectors, only one TestElement instance is returned + for that element. The type that the Promise resolves to is an array where each element is + the union of all result types for each query.

+

@@ -2024,12 +2233,45 @@
Methods
locatorForOptional - + + +

Creates an asynchronous locator function that can be used to find a ComponentHarness instance +or element under the root element of this HarnessEnvironmnet.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorForOptional(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorForOptional('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorForOptional('span')()            // Gets `null`
+ + + Parameters + + +

+ queries

+ + + +

+

A list of queries specifying which harnesses and elements to search for:

+
    +
  • A string searches for elements matching the CSS selector specified by the string.
  • +
  • A ComponentHarness constructor searches for ComponentHarness instances matching the +given class.
  • +
  • A HarnessPredicate searches for ComponentHarness instances matching the given +predicate.
  • +
+ +

+ + +

@@ -2049,11 +2291,16 @@

Methods
- AsyncFactoryFn<LocatorFnResult<T> | null> + () => Promise<LocatorFnResult<T> | null>

- +

An asynchronous locator function that searches for and returns a Promise for the + first element or harness matching the given search criteria. Matches are ordered first by + order in the DOM, and second by order in the queries list. If no matches are found, the + Promise is resolved with null. The type that the Promise resolves to is a union of all + result types for each query or null.

+

@@ -2081,7 +2328,8 @@
Methods

- +

A HarnessLoader rooted at the root element of this HarnessEnvironment.

+

@@ -2098,7 +2346,14 @@
Methods
waitForTasksOutsideAngular - + + +

Waits for all scheduled or running async tasks to complete. This allows harness +authors to wait for async tasks outside of the Angular zone. +This is an abstrct method that must be implemented by subclasses.

+ + + Returns @@ -2743,6 +2998,12 @@
Methods

Creates an asynchronous locator function that can be used to find a ComponentHarness instance or element under the root element of this LocatorFactory.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorFor(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorFor('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorFor('span')()            // Throws because the `Promise` rejects
@@ -2791,7 +3052,7 @@
Methods
- AsyncFactoryFn<LocatorFnResult<T>> + () => Promise<LocatorFnResult<T>>

@@ -2800,13 +3061,6 @@

Methods
order in the DOM, and second by order in the queries list. If no matches are found, the Promise rejects. The type that the Promise resolves to is a union of all result types for each query.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div':

-
    -
  • await lf.locatorFor(DivHarness, 'div')() gets a DivHarness instance for #d1
  • -
  • await lf.locatorFor('div', DivHarness)() gets a TestElement instance for #d1
  • -
  • await lf.locatorFor('span')() throws because the Promise rejects.
  • -

@@ -2826,6 +3080,18 @@
Methods

Creates an asynchronous locator function that can be used to find ComponentHarness instances or elements under the root element of this LocatorFactory.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div' and +IdIsD1Harness.hostSelector is '#d1'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
// Gets [DivHarness for #d1, TestElement for #d1, DivHarness for #d2, TestElement for #d2]
+await lf.locatorForAll(DivHarness, 'div')()
+// Gets [TestElement for #d1, TestElement for #d2]
+await lf.locatorForAll('div', '#d1')()
+// Gets [DivHarness for #d1, IdIsD1Harness for #d1, DivHarness for #d2]
+await lf.locatorForAll(DivHarness, IdIsD1Harness)()
+// Gets []
+await lf.locatorForAll('span')()
@@ -2874,7 +3140,7 @@
Methods
- AsyncFactoryFn<LocatorFnResult<T>[]> + () => Promise<LocatorFnResult<T>[]>

@@ -2885,26 +3151,6 @@

Methods
an element matches multiple string selectors, only one TestElement instance is returned for that element. The type that the Promise resolves to is an array where each element is the union of all result types for each query.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div' and IdIsD1Harness.hostSelector === '#d1':

-
    -
  • await lf.locatorForAll(DivHarness, 'div')() gets [ - DivHarness, // for #d1 - TestElement, // for #d1 - DivHarness, // for #d2 - TestElement // for #d2 -]
  • -
  • await lf.locatorForAll('div', '#d1')() gets [ - TestElement, // for #d1 - TestElement // for #d2 -]
  • -
  • await lf.locatorForAll(DivHarness, IdIsD1Harness)() gets [ - DivHarness, // for #d1 - IdIsD1Harness, // for #d1 - DivHarness // for #d2 -]
  • -
  • await lf.locatorForAll('span')() gets [].
  • -

@@ -2924,6 +3170,12 @@
Methods

Creates an asynchronous locator function that can be used to find a ComponentHarness instance or element under the root element of this LocatorFactory.

+

For example, given the following DOM and assuming DivHarness.hostSelector is 'div'

+
<div id="d1"></div><div id="d2"></div>
+

then we expect:

+
await lf.locatorForOptional(DivHarness, 'div')() // Gets a `DivHarness` instance for #d1
+await lf.locatorForOptional('div', DivHarness)() // Gets a `TestElement` instance for #d1
+await lf.locatorForOptional('span')()            // Gets `null`
@@ -2972,7 +3224,7 @@
Methods
- AsyncFactoryFn<LocatorFnResult<T> | null> + () => Promise<LocatorFnResult<T> | null>

@@ -2981,13 +3233,6 @@

Methods
order in the DOM, and second by order in the queries list. If no matches are found, the Promise is resolved with null. The type that the Promise resolves to is a union of all result types for each query or null.

-

e.g. Given the following DOM: <div id="d1" /><div id="d2" />, and assuming -DivHarness.hostSelector === 'div':

-
    -
  • await lf.locatorForOptional(DivHarness, 'div')() gets a DivHarness instance for #d1
  • -
  • await lf.locatorForOptional('div', DivHarness)() gets a TestElement instance for #d1
  • -
  • await lf.locatorForOptional('span')() gets null.
  • -

@@ -3068,7 +3313,8 @@
Methods

Constructor for a ComponentHarness subclass.

+

Constructor for a ComponentHarness subclass. To be a valid ComponentHarnessConstructor, the +class must also have a static hostSelector property.

Properties
@@ -4236,7 +4482,8 @@
Methods
Properties
+

Options that affect the text returned by TestElement.text.

+

Properties
@@ -4250,7 +4497,7 @@ @@ -4284,7 +4531,8 @@ @@ -4296,7 +4544,8 @@ @@ -4308,7 +4557,8 @@ @@ -4320,7 +4570,8 @@ @@ -4338,7 +4589,9 @@

Represents the status of auto change detection.

+

The status of the test harness auto change detection. If not diabled test harnesses will +automatically trigger change detection after every action (such as a click) and before every read +(such as getting the text of an element).

Properties
Name

Optional selector for elements whose content should be excluded from the text string.

The height of the element in pixels

+

The distance from the left of the viewport in pixels

+

The distance from the top of the viewport in pixels

+

The width of the element in pixels

+
@@ -4543,20 +4796,6 @@

An async function that returns a promise when called.

-

-
-type AsyncFactoryFn = () => Promise<T>;
-
-
- - - - -

CDK tree component that connects with a data source to retrieve data of type T and renders +dataNodes with hierarchy. Updates the dataNodes when new data is provided by the data source.

+

Selector: - cdk-nested-tree-node + cdk-tree

Exported as: -cdkNestedTreeNode
Properties
+cdkTree
Properties
@@ -65,29 +56,14 @@ - - - - - - - - - - @@ -98,24 +74,12 @@ - - - - - - - - - - @@ -124,12 +88,12 @@ - @@ -138,12 +102,14 @@ - @@ -152,11 +118,15 @@ - @@ -166,34 +136,14 @@ - - - - - - - - - - - - - - - - - - - @@ -203,15 +153,15 @@ - @@ -227,15 +177,33 @@
Methods
Name
@Input({ transform: booleanAttribute }) -

- isDisabled: boolean -

-

Whether or not this node is disabled. If it's disabled, then the user won't be able to focus -or activate this node.

-
@Input({ transform: booleanAttribute }) -

- isExpandable: boolean +

+ @Input()

+ childrenAccessor: (dataNode: T) => T[] | Observable<T[]>

Whether or not this node is expandable.

-

If not using FlatTreeControl, or if isExpandable is not provided to -NestedTreeControl, this should be provided for correct node a11y.

+

Given a data node, determines what the children of that node are.

+

One of levelAccessor or childrenAccessor must be specified, not both. +This is enforced at run-time.

@Input()

- isExpanded: boolean -

-
@Input('cdkTreeNodeTypeaheadLabel') -

- typeaheadLabel: string | null + dataSource: DataSource<T> | Observable<T[]> | T[]

The text used to locate this item during typeahead. If not specified, the textContent will -will be used.

+

Provides a stream containing the latest data array to render. Influenced by the tree's +stream of view window (what dataNodes are currently on screen). +Data source can be an observable of data array, or a data array to render.

- @Output()

- activation: EventEmitter<T> +

+ @Input()

+ expansionKey: (dataNode: T) => K

This emits when the node has been programatically activated or activated by keyboard.

+

Given a data node, determines the key by which we determine whether or not this node is expanded.

- @Output()

- expandedChange: EventEmitter<boolean> +

+ @Input()

+ levelAccessor: (dataNode: T) => number

This emits when the node's expansion status has been changed.

+

Given a data node, determines what tree level the node is at.

+

One of levelAccessor or childrenAccessor must be specified, not both. +This is enforced at run-time.

- data: T +

+ @Input()

+ trackBy: TrackByFunction<T>

The tree node's data.

+

Tracking function that will be used to check the differences in data changes. Used similarly +to ngFor trackBy function. Optimize node operations by identifying a node based on its data +relative to the function to know if a node should be added/removed/moved. +Accepts a function that takes two parameters, index and item.

- isLeafNode: boolean -

-

- level: number -

-

- nodeOutlet: QueryList<CdkTreeNodeOutlet> + viewChange: BehaviorSubject<{ + start: number; + end: number; +}>

The children node placeholder.

+

Stream containing the latest information on what rows are being displayed on screen. +Can be used by the data source to as a heuristic of what data should be provided.

- @Input()
Deprecated

- role: 'treeitem' | 'group' + treeControl: TreeControl<T, K>

The role of the tree node.

+

The tree controller

- -
activate + collapse
-

Emits an activation event. Implemented for TreeKeyManagerItem.

+

Collapse the data node. If it is already collapsed, does nothing.

+ + + Parameters + + + + + +

+ dataNode

+ T + + +

+ +

+ + + @@ -244,12 +212,12 @@
Methods
-
collapse + collapseAll
-

Collapses this data node. Implemented for TreeKeyManagerItem.

+

Collapse all data nodes in the tree.

@@ -261,15 +229,33 @@
Methods
- -
expand + collapseDescendants
-

Expands this data node. Implemented for TreeKeyManagerItem.

+

Collapse the data node and all its descendants. If it is already collapsed, does nothing.

+ + + Parameters + + + + + +

+ dataNode

+ T + + +

+ +

+ + + @@ -278,41 +264,33 @@
Methods
- -
focus + expand
-

Focuses this data node. Implemented for TreeKeyManagerItem.

+

Expand the data node. If it is already expanded, does nothing.

- - - - - - - - - - - - - + + + - - + - -
getChildren -
Returns
Parameters
- CdkTreeNode<T, K>[] | Observable<CdkTreeNode<T, K>[]> + +
+

+ dataNode

+ T
-

+

+

+ + @@ -321,22 +299,13 @@
Methods
- - - - - - - - - +
getLabel + expandAll
Returns
- string - -

- -

+
+

Expands all data nodes in the tree.

+
@@ -347,17 +316,150 @@
Methods
- - - - - + + + + + + + + + + + + +
getParent + expandDescendants
Returns
+

Expand the data node and all its descendants. If they are already expanded, does nothing.

+ +
Parameters
+

+ dataNode

+ T +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
insertNode +
+

Create the embedded view for the data node template and place it in the correct index location +within the data node view container.

+ +
Parameters
+

+ nodeData

+ T +
+

+ +

+
+

+ index

+ number +
+

+ +

+
+

+ viewContainer?

+ ViewContainerRef +
+

+ +

+
+

+ parentData?

+ T +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
isExpanded +
+

Whether the data node is expanded or collapsed. Returns true if it's expanded.

+ +
Parameters
+

+ dataNode

+ T +
+

+ +

+
Returns
- CdkTreeNode<T, K> | null + boolean

@@ -373,15 +475,72 @@

Methods
- -
makeFocusable + renderNodeChanges
-

Makes the node focusable. Implemented for TreeKeyManagerItem.

+

Check for changes made in the data and render each change (node added/removed/moved).

+
Parameters
+

+ data

+ readonly T[] +
+

+ +

+
+

+ dataDiffer

+ IterableDiffer<T> = this._dataDiffer +
+

+ +

+
+

+ viewContainer

+ ViewContainerRef = this._nodeOutlet.viewContainer +
+

+ +

+
+

+ parentData?

+ T +
+

+ +

+
@@ -390,15 +549,33 @@
Methods
- -
unfocus + toggle
-

Defocus this data node.

+

If the data node is currently expanded, collapse it. Otherwise, expand it.

+ + + Parameters + + + + + +

+ dataNode

+ T + + +

+ +

+ + + @@ -407,12 +584,13 @@
Methods
- @@ -424,8 +602,8 @@
Methods
updateChildrenNodes + toggleDescendants
-

Add children dataNodes to the NodeOutlet

+

If the data node is currently expanded, collapse it and all its descendants. +Otherwise, expand it and all its descendants.

- children?

- T[] + dataNode

+ T

@@ -440,67 +618,35 @@

Methods
+ -

Data node definition for the CdkTree. -Captures the node's template and a when predicate that describes when this node should be used.

-

- Selector: +

Properties
- - - - - - - - - - - - - - - -
NameDescription
@Input(cdkTreeNodeDefWhen) -

- when: (index: number, nodeData: T) => boolean -

-

Function that should return true if this node template should be used for the provided node -data and index. If left undefined, this node will be considered the default node template to -use when no other when functions return true for the data. -For every node, there must be at least one when function that passes or an undefined to -default.

-
- - - - - - - - - -

Indent for the children tree dataNodes. -This directive will add left-padding to the node to show hierarchy.

+

Nested node is a child of <cdk-tree>. It works with nested tree. +By using cdk-nested-tree-node component in tree node template, children of the parent node will +be added in the cdkTreeNodeOutlet in tree node template. +The children of node will be automatically added to cdkTreeNodeOutlet.

Selector: - [cdkTreeNodePadding] + cdk-nested-tree-node -

Properties
+

Exported as: +cdkNestedTreeNode
Properties
@@ -510,13 +656,13 @@ - @@ -525,12 +671,14 @@ - @@ -539,96 +687,40 @@ - + -
Name
@Input('cdkTreeNodePaddingIndent') +
@Input({ transform: booleanAttribute })

- indent: number | string + isDisabled: boolean

The indent for each level. Can be a number or a CSS string. -Default number 40px from material design menu sub-menu spec.

+

Whether or not this node is disabled. If it's disabled, then the user won't be able to focus +or activate this node.

@Input({ alias: 'cdkTreeNodePadding', transform: numberAttribute }) +
@Input({ transform: booleanAttribute })

- level: number + isExpandable: boolean

The level of depth of the tree node. The padding will be level * indent pixels.

+

Whether or not this node is expandable.

+

If not using FlatTreeControl, or if isExpandable is not provided to +NestedTreeControl, this should be provided for correct node a11y.

- indentUnits: 'px' +

+ @Input()

+ isExpanded: boolean

CSS units used for the indentation value.

-
- - - - - - - - - -

Outlet for nested CdkNode. Put [cdkTreeNodeOutlet] on a tag to place children dataNodes -inside the outlet.

-

- Selector: - - [cdkTreeNodeOutlet] - -

Properties
- - - - - - - - + -
NameDescription

- viewContainer: inject(ViewContainerRef) +

@Input('cdkTreeNodeTypeaheadLabel') +

+ typeaheadLabel: string | null

The text used to locate this item during typeahead. If not specified, the textContent will +will be used.

+
- - - - - - - - - -

CDK tree component that connects with a data source to retrieve data of type T and renders -dataNodes with hierarchy. Updates the dataNodes when new data is provided by the data source.

-

- Selector: - - cdk-tree - -

Exported as: -cdkTree
Properties
- - - - - - - - @@ -637,14 +729,12 @@ - - @@ -653,12 +743,11 @@ - - @@ -667,15 +756,11 @@ - - + @@ -683,16 +768,11 @@ - - + @@ -701,14 +781,10 @@ - @@ -718,15 +794,15 @@ - @@ -742,33 +818,15 @@
Methods
NameDescription
- @Input()

- childrenAccessor: (dataNode: T) => T[] | Observable<T[]> +

+ @Output()

+ activation: EventEmitter<T>

Given a data node, determines what the children of that node are.

-

One of levelAccessor or childrenAccessor must be specified, not both. -This is enforced at run-time.

+

This emits when the node has been programatically activated or activated by keyboard.

- @Input()

- dataSource: DataSource<T> | Observable<T[]> | T[] +

+ @Output()

+ expandedChange: EventEmitter<boolean>

Provides a stream containing the latest data array to render. Influenced by the tree's -stream of view window (what dataNodes are currently on screen). -Data source can be an observable of data array, or a data array to render.

+

This emits when the node's expansion status has been changed.

- @Input()

- expansionKey: (dataNode: T) => K +

+ data: T

Given a data node, determines the key by which we determine whether or not this node is expanded.

+

The tree node's data.

- @Input()

- levelAccessor: (dataNode: T) => number +

+ isLeafNode: boolean

Given a data node, determines what tree level the node is at.

-

One of levelAccessor or childrenAccessor must be specified, not both. -This is enforced at run-time.

-
- @Input()

- trackBy: TrackByFunction<T> +

+ level: number

Tracking function that will be used to check the differences in data changes. Used similarly -to ngFor trackBy function. Optimize node operations by identifying a node based on its data -relative to the function to know if a node should be added/removed/moved. -Accepts a function that takes two parameters, index and item.

-

- viewChange: BehaviorSubject<{ - start: number; - end: number; -}> + nodeOutlet: QueryList<CdkTreeNodeOutlet>

Stream containing the latest information on what rows are being displayed on screen. -Can be used by the data source to as a heuristic of what data should be provided.

+

The children node placeholder.

- @Input()
Deprecated

- treeControl: TreeControl<T, K> + role: 'treeitem' | 'group'

The tree controller

+

The role of the tree node.

- - - - - - - - - - - -
collapse + activate
-

Collapse the data node. If it is already collapsed, does nothing.

+

Emits an activation event. Implemented for TreeKeyManagerItem.

Parameters
-

- dataNode

- T -
-

- -

-
+
@@ -777,12 +835,12 @@
Methods
-
collapseAll + collapse
-

Collapse all data nodes in the tree.

+

Collapses this data node. Implemented for TreeKeyManagerItem.

@@ -794,33 +852,15 @@
Methods
- - - - - - - - - - - -
collapseDescendants + expand
-

Collapse the data node and all its descendants. If it is already collapsed, does nothing.

+

Expands this data node. Implemented for TreeKeyManagerItem.

Parameters
-

- dataNode

- T -
-

- -

-
+ @@ -829,47 +869,12 @@
Methods
- - - - - - - - - - - - - - -
expand -
-

Expand the data node. If it is already expanded, does nothing.

- -
Parameters
-

- dataNode

- T -
-

- -

-
- - - - - - - - -
expandAll + focus
-

Expands all data nodes in the tree.

+

Focuses this data node. Implemented for TreeKeyManagerItem.

@@ -881,33 +886,24 @@
Methods
- - - - - - + + + - - - + - - -
expandDescendants + getChildren
-

Expand the data node and all its descendants. If they are already expanded, does nothing.

- -
Parameters
Returns
-

- dataNode

- T +
+ CdkTreeNode<T, K>[] | Observable<CdkTreeNode<T, K>[]> -

+

+

+ @@ -916,73 +912,24 @@
Methods
- - - - - - + + + - - - - - - - - - - - - - - - - - - + - - -
insertNode + getLabel
-

Create the embedded view for the data node template and place it in the correct index location -within the data node view container.

- -
Parameters
Returns
-

- nodeData

- T -
-

- -

-
-

- index

- number -
-

- -

-
-

- viewContainer?

- ViewContainerRef -
-

- -

-
-

- parentData?

- T +
+ string -

+

+

+ @@ -991,40 +938,17 @@
Methods
- - - - - - - - - - - - - - +
isExpanded + getParent
-

Whether the data node is expanded or collapsed. Returns true if it's expanded.

- -
Parameters
-

- dataNode

- T -
-

- -

-
Returns
- boolean + CdkTreeNode<T, K> | null

@@ -1040,72 +964,15 @@

Methods
- - - - - - - - - - - - - - - - - - - - - - - - - - -
renderNodeChanges + makeFocusable
-

Check for changes made in the data and render each change (node added/removed/moved).

+

Makes the node focusable. Implemented for TreeKeyManagerItem.

Parameters
-

- data

- readonly T[] -
-

- -

-
-

- dataDiffer

- IterableDiffer<T> = this._dataDiffer -
-

- -

-
-

- viewContainer

- ViewContainerRef = this._nodeOutlet.viewContainer -
-

- -

-
-

- parentData?

- T -
-

- -

-
+
@@ -1114,33 +981,15 @@
Methods
- - - - - - - - - - - -
toggle + unfocus
-

If the data node is currently expanded, collapse it. Otherwise, expand it.

+

Defocus this data node.

Parameters
-

- dataNode

- T -
-

- -

-
+ @@ -1149,13 +998,12 @@
Methods
- @@ -1167,8 +1015,8 @@
Methods
+ + + + + + + + + + + + + + + + diff --git a/docs-content/api-docs/material-bottom-sheet-testing.html b/docs-content/api-docs/material-bottom-sheet-testing.html index 5c1dd2edf6..de0639a031 100755 --- a/docs-content/api-docs/material-bottom-sheet-testing.html +++ b/docs-content/api-docs/material-bottom-sheet-testing.html @@ -115,7 +115,13 @@
Methods
getAllChildLoaders - + + + @@ -129,7 +135,8 @@
Methods
@@ -144,7 +151,8 @@
Methods
toggleDescendants + updateChildrenNodes
-

If the data node is currently expanded, collapse it and all its descendants. -Otherwise, expand it and all its descendants.

+

Add children dataNodes to the NodeOutlet

- dataNode

- T + children?

+ T[]

@@ -1186,6 +1034,162 @@

Methods
+

Data node definition for the CdkTree. +Captures the node's template and a when predicate that describes when this node should be used.

+

+ Selector: + + [cdkTreeNodeDef] + +

Properties
+ + + + + + + + + + + + + + + +
NameDescription
@Input(cdkTreeNodeDefWhen) +

+ when: (index: number, nodeData: T) => boolean +

+

Function that should return true if this node template should be used for the provided node +data and index. If left undefined, this node will be considered the default node template to +use when no other when functions return true for the data. +For every node, there must be at least one when function that passes or an undefined to +default.

+
+ + + + + + + + + +

Indent for the children tree dataNodes. +This directive will add left-padding to the node to show hierarchy.

+

+ Selector: + + [cdkTreeNodePadding] + +

Properties
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescription
@Input('cdkTreeNodePaddingIndent') +

+ indent: number | string +

+

The indent for each level. Can be a number or a CSS string. +Default number 40px from material design menu sub-menu spec.

+
@Input({ alias: 'cdkTreeNodePadding', transform: numberAttribute }) +

+ level: number +

+

The level of depth of the tree node. The padding will be level * indent pixels.

+

+ indentUnits: 'px' +

+

CSS units used for the indentation value.

+
+ + + + + + + + + +

Outlet for nested CdkNode. Put [cdkTreeNodeOutlet] on a tag to place children dataNodes +inside the outlet.

+

+ Selector: + + [cdkTreeNodeOutlet] + +

Properties
+ + + + + + + + + + + + + + + +
NameDescription

+ viewContainer: inject(ViewContainerRef) +

+
+ + + + + + + + +

-

@@ -39,7 +39,7 @@ @@ -723,6 +727,32 @@

+ backdropClass: string +

+

Class to be applied to the autocomplete's backdrop.

+

+ hasBackdrop: boolean +

+

Whether the autocomplete has a backdrop.

+

hideSingleSelectionIndicator: boolean diff --git a/docs-content/api-docs/material-badge.html b/docs-content/api-docs/material-badge.html index 270ef369e3..872498cb21 100755 --- a/docs-content/api-docs/material-badge.html +++ b/docs-content/api-docs/material-badge.html @@ -60,9 +60,9 @@

Theme color of the badge. This API is supported in M2 themes only, it -has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/badge/styling.

+has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/badge/styling.

For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

+https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

+

Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

+ +
Parameters

- +

The selector for elements in the component's content.

+

- +

A list of HarnessLoader for each element matching the given selector.

+

@@ -161,7 +169,12 @@
Methods
getAllHarnesses - + + +

Gets all matching harnesses for the given query within the current harness's content.

+ + + Parameters @@ -175,7 +188,8 @@
Methods

- +

The harness query to search for.

+

@@ -190,7 +204,8 @@
Methods

- +

The list of harness matching the given query.

+

@@ -240,7 +255,13 @@
Methods
getChildLoader - + + +

Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

+ + + Parameters @@ -254,7 +275,8 @@
Methods

- +

The selector for an element in the component's content.

+

@@ -269,7 +291,8 @@
Methods

- +

A HarnessLoader that searches for harnesses under the given selector.

+

@@ -286,7 +309,12 @@
Methods
getHarness - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -300,7 +328,8 @@
Methods

- +

The harness query to search for.

+

@@ -315,7 +344,8 @@
Methods

- +

The first harness matching the given query.

+

@@ -332,7 +362,12 @@
Methods
getHarnessOrNull - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -346,7 +381,8 @@
Methods

- +

The harness query to search for.

+

@@ -361,7 +397,8 @@
Methods

- +

The first harness matching the given query, or null if none is found.

+

@@ -378,7 +415,13 @@
Methods
hasHarness - + + +

Checks whether there is a matching harnesses for the given query within the current harness's +content.

+ + + Parameters @@ -392,7 +435,8 @@
Methods

- +

The harness query to search for.

+

@@ -407,7 +451,8 @@
Methods

- +

Whetehr there is matching harnesses for the given query.

+

diff --git a/docs-content/api-docs/material-button-testing.html b/docs-content/api-docs/material-button-testing.html index e1e8895cbc..1b5d1559e6 100755 --- a/docs-content/api-docs/material-button-testing.html +++ b/docs-content/api-docs/material-button-testing.html @@ -57,8 +57,9 @@
Methods
getAllChildLoaders - + + +

Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

+ + + Parameters @@ -316,7 +323,8 @@
Methods

- +

The selector for elements in the component's content.

+

@@ -331,7 +339,8 @@
Methods

- +

A list of HarnessLoader for each element matching the given selector.

+

@@ -348,7 +357,12 @@
Methods
getAllHarnesses - + + +

Gets all matching harnesses for the given query within the current harness's content.

+ + + Parameters @@ -362,7 +376,8 @@
Methods

- +

The harness query to search for.

+

@@ -375,6 +390,40 @@
Methods
Promise<T[]> + +

+

The list of harness matching the given query.

+ +

+ + + + + + + + + + + + + + + + + + + + + - + + + @@ -408,7 +463,8 @@
Methods
@@ -423,7 +479,8 @@
Methods
+ async +
getAppearance +
+

Gets the appearance of the button.

+ +
Returns
+ Promise<ButtonAppearance | null> +

@@ -394,7 +443,13 @@

Methods
getChildLoader
+

Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

+ +
Parameters

- +

The selector for an element in the component's content.

+

- +

A HarnessLoader that searches for harnesses under the given selector.

+

@@ -440,7 +497,12 @@
Methods
getHarness - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -454,7 +516,8 @@
Methods

- +

The harness query to search for.

+

@@ -469,7 +532,8 @@
Methods

- +

The first harness matching the given query.

+

@@ -486,7 +550,12 @@
Methods
getHarnessOrNull - + + +

Gets the first matching harness for the given query within the current harness's content.

+ + + Parameters @@ -500,7 +569,8 @@
Methods

- +

The harness query to search for.

+

@@ -515,7 +585,8 @@
Methods

- +

The first harness matching the given query, or null if none is found.

+

@@ -598,7 +669,13 @@
Methods
hasHarness - + + +

Checks whether there is a matching harnesses for the given query within the current harness's +content.

+ + + Parameters @@ -612,7 +689,8 @@
Methods

- +

The harness query to search for.

+

@@ -627,7 +705,8 @@
Methods

- +

Whetehr there is matching harnesses for the given query.

+

@@ -767,6 +846,7 @@
Methods
  • selector finds a button whose host element matches the given selector.
  • text finds a button with specific text content.
  • variant finds buttons matching a specific variant.
  • +
  • appearance finds buttons matching a specific appearance.
  • @@ -814,6 +894,19 @@

    Possible button variants.

    +

    +
    +type ButtonVariant = 'basic' | 'icon' | 'fab' | 'mini-fab';
    +
    +
    + + + + + +

    Possible button appearances.

    -type ButtonVariant = 'basic' | 'raised' | 'flat' | 'icon' | 'stroked' | 'fab' | 'mini-fab';
    +type ButtonAppearance = 'text' | 'filled' | 'elevated' | 'outlined' | 'tonal';
     
    diff --git a/docs-content/api-docs/material-button-toggle.html b/docs-content/api-docs/material-button-toggle.html index d1b7d1130d..0f57da40c1 100755 --- a/docs-content/api-docs/material-button-toggle.html +++ b/docs-content/api-docs/material-button-toggle.html @@ -27,25 +27,25 @@

    -

    -

    Exclusive selection button toggle group that behaves like a radio-button group.

    -

    +

    Single button inside of a toggle group.

    +

    Selector: - mat-button-toggle-group + mat-button-toggle

    Exported as: -matButtonToggleGroup
    Properties
    +matButtonToggle
    Properties
    @@ -60,7 +60,7 @@ @@ -69,12 +69,27 @@ - + + + + + + + + + @@ -85,10 +100,10 @@ - @@ -99,10 +114,10 @@ - @@ -113,10 +128,10 @@ - @@ -127,10 +142,10 @@ - @@ -141,10 +156,10 @@ - @@ -155,10 +170,10 @@ - @@ -167,12 +182,12 @@ - @@ -186,7 +201,7 @@ @@ -196,10 +211,10 @@ - @@ -209,10 +224,10 @@ - @@ -221,25 +236,96 @@ + + + +
    Name

    The appearance style of the button.

    @Input({ transform: booleanAttribute }) +
    @Input('aria-label')

    - disabled: boolean + ariaLabel: string

    Whether multiple button toggle group is disabled.

    +

    Attached to the aria-label attribute of the host element. In most cases, aria-labelledby will +take precedence so this may be omitted.

    +
    @Input('aria-labelledby') +

    + ariaLabelledby: string | null +

    +

    Users can specify the aria-labelledby attribute which will be forwarded to the input element

    @Input({ transform: booleanAttribute })

    - disabledInteractive: boolean + checked: boolean

    Whether buttons in the group should be interactive while they're disabled.

    +

    Whether the button is checked.

    @Input({ transform: booleanAttribute })

    - hideMultipleSelectionIndicator: boolean + disableRipple: boolean

    Whether checkmark indicator for multiple-selection button toggle groups is hidden.

    +

    Whether ripples are disabled on the button toggle.

    @Input({ transform: booleanAttribute })

    - hideSingleSelectionIndicator: boolean + disabled: boolean

    Whether checkmark indicator for single-selection button toggle groups is hidden.

    +

    Whether the button is disabled.

    @Input({ transform: booleanAttribute })

    - multiple: boolean + disabledInteractive: boolean

    Whether multiple button toggles can be selected.

    +

    Whether the button should remain interactive when it is disabled.

    @Input()

    - name: string + id: string

    name attribute for the underlying input element.

    +

    The unique ID for this button toggle.

    @Input()

    - value: any + name: string

    Value of the toggle group.

    +

    HTML's 'name' attribute used to group radios for unique selection.

    @Input({ transform: booleanAttribute }) -

    - vertical: boolean +

    + @Input()

    + value: any

    Whether the toggle group is vertical.

    +

    MatButtonToggleGroup reads this to assign its own value.

    Event emitted when the group value changes.

    - dir: Direction + buttonId: string

    The layout direction of the toggle button group.

    +

    Unique ID for the underlying button element.

    - selected: MatButtonToggle | MatButtonToggle[] + buttonToggleGroup: MatButtonToggleGroup

    Selected button toggles in the group.

    +

    The parent button toggle group (exclusive selection). Optional.

    + + + + + + + + + + + + + + + + +
    focus +
    +

    Focuses the button.

    + +
    Parameters
    +

    + options?

    + FocusOptions +
    +

    + +

    +
    + + + + + + + + + + + + + + + + + + + + +
    isSingleSelector +
    +

    Whether the toggle is in single selection mode.

    + +
    Returns
    + boolean + +

    + +

    +
    + + + -

    Single button inside of a toggle group.

    +

    Exclusive selection button toggle group that behaves like a radio-button group.

    Selector: - mat-button-toggle + mat-button-toggle-group

    Exported as: -matButtonToggle
    Properties
    +matButtonToggleGroup
    Properties
    @@ -254,22 +340,7 @@ - - - - - - - - @@ -278,12 +349,12 @@ - @@ -294,10 +365,10 @@ - @@ -308,10 +379,10 @@ - @@ -322,10 +393,10 @@ - @@ -336,10 +407,10 @@ - @@ -350,10 +421,10 @@ - @@ -364,10 +435,10 @@ - @@ -376,12 +447,12 @@ - @@ -395,7 +466,7 @@ @@ -405,10 +476,10 @@ - @@ -418,10 +489,10 @@ - @@ -430,74 +501,7 @@ - - -
    Name
    @Input('aria-label') -

    - ariaLabel: string -

    -

    Attached to the aria-label attribute of the host element. In most cases, aria-labelledby will -take precedence so this may be omitted.

    +

    The appearance for all the buttons in the group.

    @Input('aria-labelledby') +
    @Input({ transform: booleanAttribute })

    - ariaLabelledby: string | null + disabled: boolean

    Users can specify the aria-labelledby attribute which will be forwarded to the input element

    +

    Whether multiple button toggle group is disabled.

    @Input({ transform: booleanAttribute })

    - checked: boolean + disabledInteractive: boolean

    Whether the button is checked.

    +

    Whether buttons in the group should be interactive while they're disabled.

    @Input({ transform: booleanAttribute })

    - disableRipple: boolean + hideMultipleSelectionIndicator: boolean

    Whether ripples are disabled on the button toggle.

    +

    Whether checkmark indicator for multiple-selection button toggle groups is hidden.

    @Input({ transform: booleanAttribute })

    - disabled: boolean + hideSingleSelectionIndicator: boolean

    Whether the button is disabled.

    +

    Whether checkmark indicator for single-selection button toggle groups is hidden.

    @Input({ transform: booleanAttribute })

    - disabledInteractive: boolean + multiple: boolean

    Whether the button should remain interactive when it is disabled.

    +

    Whether multiple button toggles can be selected.

    @Input()

    - id: string + name: string

    The unique ID for this button toggle.

    +

    name attribute for the underlying input element.

    @Input()

    - name: string + value: any

    HTML's 'name' attribute used to group radios for unique selection.

    +

    Value of the toggle group.

    - @Input()

    - value: any +

    @Input({ transform: booleanAttribute }) +

    + vertical: boolean

    MatButtonToggleGroup reads this to assign its own value.

    +

    Whether the toggle group is vertical.

    Event emitted when the group's value changes.

    - buttonId: string + dir: Direction

    Unique ID for the underlying button element.

    +

    The layout direction of the toggle button group.

    - buttonToggleGroup: MatButtonToggleGroup + selected: MatButtonToggle | MatButtonToggle[]

    The parent button toggle group (exclusive selection). Optional.

    +

    Selected button toggles in the group.

    - - - - - - - - - - - - - - - - -
    focus -
    -

    Focuses the button.

    - -
    Parameters
    -

    - options?

    - FocusOptions -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    isSingleSelector -
    -

    Whether the toggle is in single selection mode.

    - -
    Returns
    - boolean - -

    - -

    -
    - - - @@ -632,37 +636,6 @@ - - - - - - - - - - - - - - - - - -
    MAT_BUTTON_TOGGLE_GROUP_DEFAULT_OPTIONS_FACTORY -
    Returns
    - MatButtonToggleDefaultOptions - -

    - -

    -
    - -

    -

    @@ -39,15 +39,15 @@

    Material Design button component. Users interact with a button to perform an action. -See https://material.io/components/buttons

    -

    The MatButton class applies to native button elements and captures the appearances for -"text button", "outlined button", and "contained button" per the Material Design -specification. MatButton additionally captures an additional "flat" appearance, which matches -"contained" but without elevation.

    -

    +See https://m3.material.io/components/buttons/overview

    +

    Selector: - button[mat-button] + button[matButton] + + a[matButton] + + button[mat-button] button[mat-raised-button] @@ -73,6 +73,20 @@

    Methods
    + + + + + + + + + + + + + + + + + + + +
    setAppearance +
    +

    Programmatically sets the appearance of the button.

    + +
    Parameters
    +

    + appearance

    + MatButtonAppearance +
    +

    + +

    +
    + + + @@ -215,15 +266,19 @@

    Material Design floating action button (FAB) component. These buttons represent the primary or most common action for users to interact with. -See https://material.io/components/buttons-floating-action-button/

    +See https://m3.material.io/components/floating-action-button/overview

    The MatFabButton class has two appearances: normal and extended.

    -

    +

    Selector: button[mat-fab] a[mat-fab] + button[matFab] + + a[matFab] +

    Exported as: matButton, matAnchor
    Properties
    @@ -255,9 +310,9 @@ @@ -301,7 +356,9 @@ - + + + @@ -141,7 +154,8 @@
    Methods
    @@ -156,7 +170,8 @@
    Methods

    Theme color of the button. This API is supported in M2 themes only, it has -no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/button/styling.

    +no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/button/styling.

    For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    +https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    Natively disabled buttons prevent focus and any pointer events from reaching the button. In some scenarios this might not be desirable, because it can prevent users from finding out -why the button is disabled (e.g. via tooltip).

    +why the button is disabled (e.g. via tooltip). This is also useful for buttons that may +become disabled when activated, which would cause focus to be transferred to the document +body instead of remaining on the button.

    Enabling this input will change the button so that it is styled to be disabled and will be marked as aria-disabled, but it will allow the button to receive events and focus.

    Note that by enabling this, you need to set the tabindex yourself if the button isn't @@ -389,14 +446,18 @@

    Properties
    @@ -428,9 +489,9 @@

    Material Design icon button component. This type of button displays a single interactive icon for users to perform an action. See https://material.io/develop/web/components/buttons/icon-buttons/

    -

    +

    Selector: button[mat-icon-button] a[mat-icon-button] + button[matIconButton] + + a[matIconButton] +

    Exported as:matButton, matAnchor
    Properties
    @@ -588,9 +655,9 @@ @@ -634,7 +701,9 @@ + + + + + + + @@ -795,6 +877,21 @@

    Possible appearances for a MatButton. +See https://m3.material.io/components/buttons/overview

    +

    +
    +type MatButtonAppearance = 'text' | 'filled' | 'elevated' | 'outlined' | 'tonal';
    +
    +
    + + + + +
    Methods
    getAllChildLoaders - + + + @@ -95,7 +101,8 @@
    Methods
    @@ -110,7 +117,8 @@
    Methods

    Theme color of the button. This API is supported in M2 themes only, it has -no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/button/styling.

    +no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/button/styling.

    For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    +https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    Natively disabled buttons prevent focus and any pointer events from reaching the button. In some scenarios this might not be desirable, because it can prevent users from finding out -why the button is disabled (e.g. via tooltip).

    +why the button is disabled (e.g. via tooltip). This is also useful for buttons that may +become disabled when activated, which would cause focus to be transferred to the document +body instead of remaining on the button.

    Enabling this input will change the button so that it is styled to be disabled and will be marked as aria-disabled, but it will allow the button to receive events and focus.

    Note that by enabling this, you need to set the tabindex yourself if the button isn't @@ -733,6 +802,19 @@

    + defaultAppearance: MatButtonAppearance +

    +

    Default appearance for plain buttons (not icon buttons or FABs).

    +

    disabledInteractive: boolean @@ -773,9 +855,9 @@

    +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + +
    Parameters

    - +

    The selector for elements in the component's content.

    +

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -127,7 +135,12 @@
    Methods
    getAllHarnesses
    +

    Gets all matching harnesses for the given query within the current harness's content.

    + +
    Parameters

    - +

    The harness query to search for.

    +

    - +

    The list of harness matching the given query.

    +

    @@ -173,7 +188,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -187,7 +208,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -202,7 +224,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -219,7 +242,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -233,7 +261,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -248,7 +277,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -265,7 +295,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -279,7 +314,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -294,7 +330,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -410,7 +447,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -424,7 +467,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -439,7 +483,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-card.html b/docs-content/api-docs/material-card.html index 9162ff8a7b..7a3c26e64e 100755 --- a/docs-content/api-docs/material-card.html +++ b/docs-content/api-docs/material-card.html @@ -27,9 +27,9 @@

    -

    @@ -41,7 +41,7 @@

    Material Design card component. Cards contain content and actions about a single subject. See https://material.io/design/components/cards.html

    MatCard provides no behaviors, instead serving as a purely visual treatment.

    -

    +

    Selector: mat-card @@ -77,21 +77,41 @@

    Title of a card, intended for use within <mat-card>. This component is an optional -convenience for one variety of card title; any custom title element may be used in its place.

    -

    MatCardTitle provides no behaviors, instead serving as a purely visual treatment.

    -

    +

    Container intended to be used within the <mat-card> component. Can contain exactly one +<mat-card-title>, one <mat-card-subtitle> and one content image of any size +(e.g. <img matCardLgImage>).

    +

    Selector: - mat-card-title + mat-card-title-group - [mat-card-title] +

    + + + + + + + + + +

    Header region of a card, intended for use within <mat-card>. This header captures +a card title, subtitle, and avatar. This component is an optional convenience for use with +other convenience elements, such as <mat-card-footer>; any custom header block element may be +used in its place.

    +

    MatCardHeader provides no behaviors, instead serving as a purely visual treatment.

    +

    + Selector: + + mat-card-header

    @@ -100,20 +120,28 @@ -

    Container intended to be used within the <mat-card> component. Can contain exactly one -<mat-card-title>, one <mat-card-subtitle> and one content image of any size -(e.g. <img matCardLgImage>).

    +

    Title of a card, intended for use within <mat-card>. This component is an optional +convenience for one variety of card title; any custom title element may be used in its place.

    +

    MatCardTitle provides no behaviors, instead serving as a purely visual treatment.

    Selector: - mat-card-title-group + mat-card-title + + [mat-card-title] + + [matCardTitle]

    @@ -220,30 +248,6 @@

    Header region of a card, intended for use within <mat-card>. This header captures -a card title, subtitle, and avatar. This component is an optional convenience for use with -other convenience elements, such as <mat-card-footer>; any custom header block element may be -used in its place.

    -

    MatCardHeader provides no behaviors, instead serving as a purely visual treatment.

    -

    - Selector: - - mat-card-header - -

    - - - - - - - - -

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-checkbox @@ -159,9 +159,9 @@

    Methods
    - - - -

    Validator for Material checkbox's required attribute in template-driven checkbox. -Current CheckboxRequiredValidator only work with input type=checkbox and does not -work with mat-checkbox.

    -

    - Selector: - - mat-checkbox[required][formControlName] - - mat-checkbox[required][formControl] - - mat-checkbox[required][ngModel] - -

    - Deprecated -
    Properties
    - - - - - - - - - - - - - - - -
    NameDescription

    - required: boolean | string -

    -

    Tracks changes to the required attribute bound to this directive.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    enabled -
    Parameters
    -

    - input

    - boolean -
    -

    - -

    -
    Returns
    - boolean - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    registerOnValidatorChange -
    Parameters
    -

    - fn

    - () => void -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    validate -
    Parameters
    -

    - control

    - AbstractControl<any, any> -
    -

    - -

    -
    Returns
    - ValidationErrors | null - -

    - -

    -
    - - - - - -
    - Deprecated -
    -
    -const MAT_CHECKBOX_CONTROL_VALUE_ACCESSOR: any;
    -
    -
    - - - - -
    - Deprecated -
    -
    -const MAT_CHECKBOX_REQUIRED_VALIDATOR: Provider;
    -
    -
    - - diff --git a/docs-content/api-docs/material-chips-testing.html b/docs-content/api-docs/material-chips-testing.html index 31065ca898..b55334f7c9 100755 --- a/docs-content/api-docs/material-chips-testing.html +++ b/docs-content/api-docs/material-chips-testing.html @@ -209,7 +209,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -223,7 +229,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -238,7 +245,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -255,7 +263,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -269,7 +282,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -284,7 +298,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -353,7 +368,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -367,7 +388,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -382,7 +404,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -399,7 +422,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -413,7 +441,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -428,7 +457,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -445,7 +475,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -459,7 +494,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -474,7 +510,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -576,7 +613,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -590,7 +633,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -605,7 +649,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1483,7 +1528,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1497,7 +1548,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1512,7 +1564,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1529,7 +1582,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1543,7 +1601,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1558,7 +1617,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1627,7 +1687,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1641,7 +1707,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1656,7 +1723,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1673,7 +1741,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1687,7 +1760,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1702,7 +1776,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1719,7 +1794,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1733,7 +1813,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1748,7 +1829,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1850,7 +1932,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1864,7 +1952,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1879,7 +1968,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -2923,7 +3013,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -2937,7 +3033,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -2952,7 +3049,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -2969,7 +3067,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -2983,7 +3086,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2998,7 +3102,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -3067,7 +3172,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -3081,7 +3192,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -3096,7 +3208,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -3164,7 +3277,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -3178,7 +3296,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3193,7 +3312,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -3210,7 +3330,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -3224,7 +3349,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3239,7 +3365,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -3341,7 +3468,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -3355,7 +3488,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3370,7 +3504,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-chips.html b/docs-content/api-docs/material-chips.html index d04f4b9039..f7f77ac867 100755 --- a/docs-content/api-docs/material-chips.html +++ b/docs-content/api-docs/material-chips.html @@ -27,9 +27,9 @@

    -

    @@ -40,7 +40,7 @@

    Material design styled Chip base component. Used inside the MatChipSet component.

    Extended by MatChipOption and MatChipRow for different interaction patterns.

    -

    +

    Selector: mat-basic-chip @@ -96,9 +96,9 @@

    An extension of the MatChip component that supports chip selection. Used with MatChipListbox.

    Unlike other chips, the user can focus on disabled chip options inside a MatChipListbox. The user cannot click disabled chips.

    -

    +

    Selector: mat-basic-chip-option @@ -411,9 +411,9 @@

    An extension of the MatChip component used with MatChipGrid and the matChipInputFor directive.

    -

    +

    Selector: mat-chip-row @@ -903,9 +903,9 @@

    Basic container component for the MatChip component.

    Extended by MatChipListbox and MatChipGrid for different interaction patterns.

    -

    +

    Selector: mat-chip-set @@ -1353,7 +1353,7 @@

    An extension of the MatChipSet component used with MatChipRow chips and the matChipInputFor directive.

    -

    +

    Selector: mat-chip-grid @@ -1877,6 +1877,10 @@

    Methods
    + @@ -1943,6 +1947,20 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -129,7 +135,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -144,7 +151,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -161,7 +169,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -175,7 +188,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -190,7 +204,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -207,7 +222,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -221,7 +242,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -236,7 +258,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -253,7 +276,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -267,7 +295,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -282,7 +311,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -299,7 +329,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -313,7 +348,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -328,7 +364,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -378,7 +415,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -392,7 +435,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -407,7 +451,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-core.html b/docs-content/api-docs/material-core.html index 091d6d253b..3fb1c3552f 100755 --- a/docs-content/api-docs/material-core.html +++ b/docs-content/api-docs/material-core.html @@ -21,4730 +21,38 @@

    - import {NativeDateModule} from '@angular/material/core'; + import {MatLineModule} from '@angular/material/core';

    -
    +
    - - - - -

    Adapts the native JS Date for use with cdk-based components that work with dates.

    -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription

    - localeChanges: Observable<void> -

    -

    A stream that emits when the locale changes.

    -
    - Deprecated -

    - useUtcForDisplay: boolean -

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarDays -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    -

    - days

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarMonths -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    -

    - months

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarYears -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    -

    - years

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addSeconds -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    -

    - amount

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    clampDate -
    -

    Clamp the given date between min and max dates.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to clamp.

    - -

    -
    -

    - min?

    - D -
    -

    -

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

    - -

    -
    -

    - max?

    - D -
    -

    -

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

    - -

    -
    Returns
    - D - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    clone -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    compareDate -
    -

    Compares two dates.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to compare.

    - -

    -
    -

    - second

    - D -
    -

    -

    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.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    compareTime -
    -

    Compares the time values of two dates.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    First date to compare.

    - -

    -
    -

    - second

    - D -
    -

    -

    Second date to compare.

    - -

    -
    Returns
    - number - -

    -

    0 if the times are equal, a number less than 0 if the first time is earlier, - a number greater than 0 if the first time is later.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    createDate -
    Parameters
    -

    - year

    - number -
    -

    - -

    -
    -

    - month

    - number -
    -

    - -

    -
    -

    - date

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    deserialize -
    -

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

    - -
    Parameters
    -

    - value

    - any -
    -

    - -

    -
    Returns
    - Date | null - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    format -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    -

    - displayFormat

    - Object -
    -

    - -

    -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDate -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - -
    getDateNames -
    Returns
    - string[] - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDayOfWeek -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDayOfWeekNames -
    Parameters
    -

    - style

    - "long" | "short" | "narrow" -
    -

    - -

    -
    Returns
    - string[] - -

    - -

    -
    - - - - - - - - - - - - - - - - - - -
    getFirstDayOfWeek -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getHours -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMinutes -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMonth -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMonthNames -
    Parameters
    -

    - style

    - "long" | "short" | "narrow" -
    -

    - -

    -
    Returns
    - string[] - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getNumDaysInMonth -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getSeconds -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getValidDateOrNull -
    -

    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
    - D | null - -

    -

    A date or null.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getYear -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getYearName -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - - - - - - - - - - -
    invalid -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    isDateInstance -
    Parameters
    -

    - obj

    - any -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    isValid -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parse -
    Parameters
    -

    - value

    - any -
    -

    - -

    -
    -

    - parseFormat?

    - any -
    -

    - -

    -
    Returns
    - Date | null - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parseTime -
    Parameters
    -

    - userValue

    - any -
    -

    - -

    -
    -

    - parseFormat?

    - any -
    -

    - -

    -
    Returns
    - Date | null - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    sameDate -
    -

    Checks if two dates are equal.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to check.

    - -

    -
    -

    - second

    - D -
    -

    -

    The second date to check.

    - -

    -
    Returns
    - boolean - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    sameTime -
    -

    Checks if the times of two dates are equal.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to check.

    - -

    -
    -

    - second

    - D -
    -

    -

    The second date to check.

    - -

    -
    Returns
    - boolean - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - -
    setLocale -
    -

    Sets the locale used for all dates.

    - -
    Parameters
    -

    - locale

    - L -
    -

    -

    The new locale.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    setTime -
    Parameters
    -

    - target

    - Date -
    -

    - -

    -
    -

    - hours

    - number -
    -

    - -

    -
    -

    - minutes

    - number -
    -

    - -

    -
    -

    - seconds

    - number -
    -

    - -

    -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    toIso8601 -
    Parameters
    -

    - date

    - Date -
    -

    - -

    -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - - - - - - - - - - -
    today -
    Returns
    - Date - -

    - -

    -
    - - - - - - - - - -

    Error state matcher that matches when a control is invalid and dirty.

    -

    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    isErrorState -
    Parameters
    -

    - control

    - AbstractControl<any, any> -
    -

    - -

    -
    -

    - form

    - FormGroupDirective | NgForm -
    -

    - -

    -
    Returns
    - boolean - -

    - -

    -
    - - - - - - - - - -

    Provider that defines how form controls behave with regards to displaying error messages.

    -

    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    isErrorState -
    Parameters
    -

    - control

    - AbstractControl<any, any> -
    -

    - -

    -
    -

    - form

    - FormGroupDirective | NgForm -
    -

    - -

    -
    Returns
    - boolean - -

    - -

    -
    - - - - - - - - - - -

    Single option inside of a <mat-select> element.

    -

    - Selector: - - mat-option - -

    Exported as: -matOption
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    -

    Whether the option is disabled.

    -
    - @Input()

    - id: string -

    -

    The unique ID of the option.

    -
    - @Input()

    - value: T -

    -

    The form value of the option.

    -
    - @Output()

    - onSelectionChange: EventEmitter<MatOptionSelectionChange<T>> -

    -

    Event emitted when the option is selected or deselected.

    -

    - active: boolean -

    -

    Whether or not the option is currently active and ready to be selected. -An active option displays styles as if it is focused, but the -focus is actually retained somewhere else. This comes in handy -for components like autocomplete where focus must remain on the input.

    -

    - disableRipple: boolean -

    -

    Whether ripples for the option are disabled.

    -

    - group: inject<MatOptgroup>(MAT_OPTGROUP, { optional: true }) -

    -

    - hideSingleSelectionIndicator: boolean -

    -

    Whether to display checkmark for single-selection.

    -

    - multiple: -

    -

    Whether the wrapping component is in multiple selection mode.

    -

    - selected: boolean -

    -

    Whether or not the option is currently selected.

    -

    - viewValue: string -

    -

    The displayed value of the option. It is necessary to show the selected option in the -select's trigger.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - -
    deselect -
    -

    Deselects the option.

    - -
    Parameters
    -

    - emitEvent

    - boolean = true -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    focus -
    -

    Sets focus onto this option.

    - -
    Parameters
    -

    - _origin?

    - FocusOrigin -
    -

    - -

    -
    -

    - options?

    - FocusOptions -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    getLabel -
    -

    Gets the label to be used when determining whether the option should be focused.

    - -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - -
    select -
    -

    Selects the option.

    - -
    Parameters
    -

    - emitEvent

    - boolean = true -
    -

    - -

    -
    - - - - - - - - - - - - -
    setActiveStyles -
    -

    This method sets display styles on the option to make it appear -active. This is used by the ActiveDescendantKeyManager so key -events will display the proper options as active on arrow key events.

    - -
    - - - - - - - - - - - - -
    setInactiveStyles -
    -

    This method removes display styles on the option that made it appear -active. This is used by the ActiveDescendantKeyManager so key -events will display the proper options as active on arrow key events.

    - -
    - - - - - - - - - -

    Component that is used to group instances of mat-option.

    -

    - Selector: - - mat-optgroup - -

    Exported as: -matOptgroup
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    -

    whether the option group is disabled.

    -
    - @Input()

    - label: string -

    -

    Label for the option group.

    -
    - - - - - - - - - -

    Shared directive to count lines inside a text area, such as a list item. -Line elements can be extracted with a @ContentChildren(MatLine) query, then -counted by checking the query list's length.

    -

    - Selector: - - [mat-line] - - [matLine] - -

    - - - - - - - - - - -

    Adapts type D to be usable as a date by cdk-based components that work with dates.

    -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription

    - locale: L -

    -

    The locale to use for all dates.

    -

    - localeChanges: Observable<void> -

    -

    A stream that emits when the locale changes.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarDays -
    -

    Adds the given number of days to the date. Days are counted as if moving one cell on the -calendar for each day.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to add days to.

    - -

    -
    -

    - days

    - number -
    -

    -

    The number of days to add (may be negative).

    - -

    -
    Returns
    - D - -

    -

    A new date equal to the given one with the specified number of days added.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarMonths -
    -

    Adds the given number of months to the date. Months are counted as if flipping a page on the -calendar for each month and then finding the closest date in the new month. For example when -adding 1 month to Jan 31, 2017, the resulting date will be Feb 28, 2017.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to add months to.

    - -

    -
    -

    - months

    - number -
    -

    -

    The number of months to add (may be negative).

    - -

    -
    Returns
    - D - -

    -

    A new date equal to the given one with the specified number of months added.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addCalendarYears -
    -

    Adds the given number of years to the date. Years are counted as if flipping 12 pages on the -calendar for each year and then finding the closest date in the new month. For example when -adding 1 year to Feb 29, 2016, the resulting date will be Feb 28, 2017.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to add years to.

    - -

    -
    -

    - years

    - number -
    -

    -

    The number of years to add (may be negative).

    - -

    -
    Returns
    - D - -

    -

    A new date equal to the given one with the specified number of years added.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    addSeconds -
    -

    Adds an amount of seconds to the specified date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    Date to which to add the seconds.

    - -

    -
    -

    - amount

    - number -
    -

    -

    Amount of seconds to add to the date.

    - -

    -
    Returns
    - D - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    clampDate -
    -

    Clamp the given date between min and max dates.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to clamp.

    - -

    -
    -

    - min?

    - D -
    -

    -

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

    - -

    -
    -

    - max?

    - D -
    -

    -

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

    - -

    -
    Returns
    - D - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    clone -
    -

    Clones the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to clone

    - -

    -
    Returns
    - D - -

    -

    A new date equal to the given date.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    compareDate -
    -

    Compares two dates.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to compare.

    - -

    -
    -

    - second

    - D -
    -

    -

    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.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    compareTime -
    -

    Compares the time values of two dates.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    First date to compare.

    - -

    -
    -

    - second

    - D -
    -

    -

    Second date to compare.

    - -

    -
    Returns
    - number - -

    -

    0 if the times are equal, a number less than 0 if the first time is earlier, - a number greater than 0 if the first time is later.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    createDate -
    -

    Creates a date with the given year, month, and date. Does not allow over/under-flow of the -month and date.

    - -
    Parameters
    -

    - year

    - number -
    -

    -

    The full year of the date. (e.g. 89 means the year 89, not the year 1989).

    - -

    -
    -

    - month

    - number -
    -

    -

    The month of the date (0-indexed, 0 = January). Must be an integer 0 - 11.

    - -

    -
    -

    - date

    - number -
    -

    -

    The date of month of the date. Must be an integer 1 - length of the given month.

    - -

    -
    Returns
    - D - -

    -

    The new date, or null if invalid.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    deserialize -
    -

    Attempts to deserialize a value to a valid date object. This is different from parsing in that -deserialize should only accept non-ambiguous, locale-independent formats (e.g. a ISO 8601 -string). The default implementation does not allow any deserialization, it simply checks that -the given value is already a valid date object or null. The <mat-datepicker> will call this -method on all of its @Input() properties that accept dates. It is therefore possible to -support passing values from your backend directly to these properties by overriding this method -to also deserialize the format used by your backend.

    - -
    Parameters
    -

    - value

    - any -
    -

    -

    The value to be deserialized into a date object.

    - -

    -
    Returns
    - D | null - -

    -

    The deserialized date object, either a valid date, null if the value can be - deserialized into a null date (e.g. the empty string), or an invalid date.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    format -
    -

    Formats a date as a string according to the given format.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The value to format.

    - -

    -
    -

    - displayFormat

    - any -
    -

    -

    The format to use to display the date as a string.

    - -

    -
    Returns
    - string - -

    -

    The formatted date string.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDate -
    -

    Gets the date of the month component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the date of the month from.

    - -

    -
    Returns
    - number - -

    -

    The month component (1-indexed, 1 = first of month).

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    getDateNames -
    -

    Gets a list of names for the dates of the month.

    - -
    Returns
    - string[] - -

    -

    An ordered list of all date of the month names, starting with '1'.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDayOfWeek -
    -

    Gets the day of the week component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the day of the week from.

    - -

    -
    Returns
    - number - -

    -

    The month component (0-indexed, 0 = Sunday).

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getDayOfWeekNames -
    -

    Gets a list of names for the days of the week.

    - -
    Parameters
    -

    - style

    - "long" | "short" | "narrow" -
    -

    -

    The naming style (e.g. long = 'Sunday', short = 'Sun', narrow = 'S').

    - -

    -
    Returns
    - string[] - -

    -

    An ordered list of all weekday names, starting with Sunday.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    getFirstDayOfWeek -
    -

    Gets the first day of the week.

    - -
    Returns
    - number - -

    -

    The first day of the week (0-indexed, 0 = Sunday).

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getHours -
    -

    Gets the hours component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the hours from.

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMinutes -
    -

    Gets the minutes component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the minutes from.

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMonth -
    -

    Gets the month component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the month from.

    - -

    -
    Returns
    - number - -

    -

    The month component (0-indexed, 0 = January).

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getMonthNames -
    -

    Gets a list of names for the months.

    - -
    Parameters
    -

    - style

    - "long" | "short" | "narrow" -
    -

    -

    The naming style (e.g. long = 'January', short = 'Jan', narrow = 'J').

    - -

    -
    Returns
    - string[] - -

    -

    An ordered list of all month names, starting with January.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getNumDaysInMonth -
    -

    Gets the number of days in the month of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date whose month should be checked.

    - -

    -
    Returns
    - number - -

    -

    The number of days in the month of the given date.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getSeconds -
    -

    Gets the seconds component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the seconds from.

    - -

    -
    Returns
    - number - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getValidDateOrNull -
    -

    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
    - D | null - -

    -

    A date or null.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getYear -
    -

    Gets the year component of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to extract the year from.

    - -

    -
    Returns
    - number - -

    -

    The year component.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    getYearName -
    -

    Gets the name for the year of the given date.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to get the year name for.

    - -

    -
    Returns
    - string - -

    -

    The name of the given year (e.g. '2017').

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    invalid -
    -

    Gets date instance that is not valid.

    - -
    Returns
    - D - -

    -

    An invalid date.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    isDateInstance -
    -

    Checks whether the given object is considered a date instance by this DateAdapter.

    - -
    Parameters
    -

    - obj

    - any -
    -

    -

    The object to check

    - -

    -
    Returns
    - boolean - -

    -

    Whether the object is a date instance.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    isValid -
    -

    Checks whether the given date is valid.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to check.

    - -

    -
    Returns
    - boolean - -

    -

    Whether the date is valid.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parse -
    -

    Parses a date from a user-provided value.

    - -
    Parameters
    -

    - value

    - any -
    -

    -

    The value to parse.

    - -

    -
    -

    - parseFormat

    - any -
    -

    -

    The expected format of the value being parsed - (type is implementation-dependent).

    - -

    -
    Returns
    - D | null - -

    -

    The parsed date.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parseTime -
    -

    Parses a date with a specific time from a user-provided value.

    - -
    Parameters
    -

    - value

    - any -
    -

    -

    The value to parse.

    - -

    -
    -

    - parseFormat

    - any -
    -

    -

    The expected format of the value being parsed - (type is implementation-dependent).

    - -

    -
    Returns
    - D | null - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    sameDate -
    -

    Checks if two dates are equal.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to check.

    - -

    -
    -

    - second

    - D -
    -

    -

    The second date to check.

    - -

    -
    Returns
    - boolean - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    sameTime -
    -

    Checks if the times of two dates are equal.

    - -
    Parameters
    -

    - first

    - D -
    -

    -

    The first date to check.

    - -

    -
    -

    - second

    - D -
    -

    -

    The second date to check.

    - -

    -
    Returns
    - boolean - -

    -

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

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - -
    setLocale -
    -

    Sets the locale used for all dates.

    - -
    Parameters
    -

    - locale

    - L -
    -

    -

    The new locale.

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    setTime -
    -

    Sets the time of one date to the time of another.

    - -
    Parameters
    -

    - target

    - D -
    -

    -

    Date whose time will be set.

    - -

    -
    -

    - hours

    - number -
    -

    -

    New hours to set on the date object.

    - -

    -
    -

    - minutes

    - number -
    -

    -

    New minutes to set on the date object.

    - -

    -
    -

    - seconds

    - number -
    -

    -

    New seconds to set on the date object.

    - -

    -
    Returns
    - D - -

    - -

    -
    - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - -
    toIso8601 -
    -

    Gets the RFC 3339 compatible string (https://tools.ietf.org/html/rfc3339) for the given date. -This method is used to generate date strings that are compatible with native HTML attributes -such as the min or max attribute of an <input>.

    - -
    Parameters
    -

    - date

    - D -
    -

    -

    The date to get the ISO date string for.

    - -

    -
    Returns
    - string - -

    -

    The ISO date string date string.

    - -

    -
    - - +

    Shared directive to count lines inside a text area, such as a list item. +Line elements can be extracted with a @ContentChildren(MatLine) query, then +counted by checking the query list's length.

    +

    + Selector: - - - - - - -

    Event object emitted by MatOption when selected or deselected.

    -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription

    - isUserInput: false -

    -

    Whether the change in the option's value was a result of a user action.

    -

    - source: MatOption<T> -

    -

    Reference to the option that emitted the event.

    -
    - - - - - - - - - - -

    Object that can be used to configure the sanity checks granularly.

    -

    - Deprecated -
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription

    - doctype: boolean -

    -

    - theme: boolean -

    -

    - version: boolean -

    -
    - - - - - - - - - - - - - - - - - - - - - + [matLine] - - - - - - - - - - - - -
    provideNativeDateAdapter -
    Parameters
    -

    - formats

    - MatDateFormats = MAT_NATIVE_DATE_FORMATS -
    -

    - -

    -
    Returns
    - Provider[] - -

    - -

    -
    - - - - - - -
    - Deprecated -

    Possible sanity checks that can be enabled. If set to -true/false, all checks will be enabled/disabled.

    -

    -
    -type SanityChecks = boolean | GranularSanityChecks;
    -
    -
    - - - - +

    -

    Possible color palette values.

    -

    -
    -type ThemePalette = 'primary' | 'accent' | 'warn' | undefined;
    -
    -
    - - -
    -
    -type MatDateFormats = {
    -    parse: {
    -        dateInput: any;
    -        timeInput?: any;
    -    };
    -    display: {
    -        dateInput: any;
    -        monthLabel?: any;
    -        monthYearLabel: any;
    -        dateA11yLabel: any;
    -        monthYearA11yLabel: any;
    -        timeInput?: any;
    -        timeOptionLabel?: any;
    -    };
    -};
    -
    -
    - Deprecated -

    Injection token that configures whether the Material sanity checks are enabled.

    -

    -
    -const MATERIAL_SANITY_CHECKS: InjectionToken<SanityChecks>;
    -
    -
    - - - - - -

    InjectionToken for datepicker that can be used to override default locale code.

    -

    -
    -const MAT_DATE_LOCALE: InjectionToken<{}>;
    -
    -
    - - - - - -
    -
    -const MAT_DATE_FORMATS: InjectionToken<MatDateFormats>;
    -
    -
    - - - - - -
    -
    -const MAT_NATIVE_DATE_FORMATS: MatDateFormats;
    -
    -
    - - - - - -

    Injection token that can be used to reference instances of MatOptgroup. It serves as -alternative token to the actual MatOptgroup class which could cause unnecessary -retention of the class and its component metadata.

    -

    -
    -const MAT_OPTGROUP: InjectionToken<MatOptgroup>;
    -
    -
    - - - - - -

    Injection token used to provide the parent component to options.

    -

    -
    -const MAT_OPTION_PARENT_COMPONENT: InjectionToken<MatOptionParentComponent>;
    -
    -
    - - diff --git a/docs-content/api-docs/material-datepicker.html b/docs-content/api-docs/material-datepicker.html index b71b1ab48e..cc68921466 100755 --- a/docs-content/api-docs/material-datepicker.html +++ b/docs-content/api-docs/material-datepicker.html @@ -538,25 +538,25 @@
    Methods
    - -

    Directive used to connect an input to a MatDatepicker.

    -

    +

    Component responsible for managing the date range picker popup/dialog.

    +

    Selector: - input[matDatepicker] + mat-date-range-picker

    Exported as: -matDatepickerInput
    Properties
    +matDateRangePicker
    Properties
    @@ -566,12 +566,43 @@ - + + + + + + + + + + + + + + + + + + @@ -585,7 +616,21 @@ + + + + + + + + + @@ -596,10 +641,26 @@ - + + + + + + + + + @@ -610,10 +671,10 @@ - @@ -624,10 +685,25 @@ - + + + + + + + + + @@ -638,10 +714,38 @@ - + + + + + + + + + + + + + + + + + + @@ -652,10 +756,25 @@ - + + + + + + + + + @@ -666,10 +785,51 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -682,7 +842,7 @@ @@ -698,28 +858,13 @@
    Methods
    Name
    @Input('matDatepickerFilter') -

    - dateFilter: DateFilterFn<D> +

    + @Input()

    + calendarHeaderComponent: ComponentType<any>

    Function that can be used to filter out dates within the datepicker.

    +

    An input indicating the type of the custom header component for the calendar, if set.

    +
    + @Input()

    + color: ThemePalette +

    +

    Theme color of the datepicker's calendar. This API is supported in M2 themes only, it +has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/datepicker/styling.

    +

    For information on applying color variants in M3, see +https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    +
    + @Input()

    + dateClass: MatCalendarCellClassFunction<D> +

    +

    Function that can be used to add custom CSS classes to dates.

    Whether the datepicker pop-up should be disabled.

    +
    @Input({ transform: booleanAttribute }) +

    + opened: boolean +

    +

    Whether the calendar is open.

    @Input()

    - matDatepicker: MatDatepickerPanel<MatDatepickerControl<D>, D, D> + panelClass: string | string[]

    The datepicker that this input is associated with.

    +

    Classes to be passed to the date picker panel.

    +
    @Input({ transform: booleanAttribute }) +

    + restoreFocus: boolean +

    +

    Whether to restore focus to the previously-focused element when the calendar is closed. +Note that automatic focus restoration is an accessibility feature and it is recommended that +you provide your own equivalent, if you decide to turn it off.

    @Input()

    - max: D | null + startAt: D | null

    The maximum valid date.

    +

    The date to open the calendar to initially.

    @Input()

    - min: D | null + startView: 'month' | 'year' | 'multi-year'

    The minimum valid date.

    +

    The view that the calendar should start in.

    +
    @Input({ transform: booleanAttribute }) +

    + touchUi: boolean +

    +

    Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather +than a dropdown and elements have more padding to allow for bigger touch targets.

    @Input()

    - value: D | null + xPosition: DatepickerDropdownPositionX

    The value of the input.

    +

    Preferred position of the datepicker in the X axis.

    +
    + @Input()

    + yPosition: DatepickerDropdownPositionY +

    +

    Preferred position of the datepicker in the Y axis.

    +
    @Output('closed') +

    + closedStream: EventEmitter<void> +

    +

    Emits when the datepicker has been closed.

    @Output()

    - dateChange: EventEmitter<MatDatepickerInputEvent<D, S>> + monthSelected: EventEmitter<D>

    Emits when a change event is fired on this <input>.

    +

    Emits selected month in year view. +This doesn't imply a change on the selected date.

    +
    @Output('opened') +

    + openedStream: EventEmitter<void> +

    +

    Emits when the datepicker has been opened.

    @Output()

    - dateInput: EventEmitter<MatDatepickerInputEvent<D, S>> + viewChanged: EventEmitter<MatCalendarView>

    Emits when an input event is fired on this <input>.

    +

    Emits when the current view changes.

    +
    + @Output()

    + yearSelected: EventEmitter<D> +

    +

    Emits selected year in multiyear view. +This doesn't imply a change on the selected date.

    +

    + datepickerInput: C +

    +

    The input element this datepicker is associated with.

    +

    + id: string +

    +

    The id for the datepicker calendar.

    Emits when the datepicker's state changes.

    - - - - - - - - -
    getConnectedOverlayOrigin + close
    -

    Gets the element that the datepicker popup should be connected to.

    - -
    Returns
    - ElementRef - -

    -

    The element to connect the popup to.

    +

    Close the calendar.

    -

    @@ -730,28 +875,14 @@
    Methods
    - - - - - - - - -
    getOverlayLabelId + open
    -

    Gets the ID of an element that should be used a description for the calendar overlay.

    +

    Open the calendar.

    Returns
    - string | null - -

    - -

    -
    @@ -761,29 +892,34 @@
    Methods
    - - - + + - - + - -
    getStartValue + registerActions
    -

    Gets the value at which the calendar should start.

    +

    Registers a portal containing action buttons with the datepicker.

    Returns
    Parameters
    - D | null + +
    +

    + portal

    + TemplatePortal<any>
    -

    - +

    +

    +

    Portal to be registered.

    +

    + + @@ -792,50 +928,141 @@
    Methods
    - + + + + + + + + + +
    getThemePalette + registerInput
    -

    Returns the palette used by the input's form field, if any.

    +

    Register an input with this datepicker.

    Parameters
    +

    + input

    + C +
    +

    +

    The datepicker input to register with this datepicker.

    + +

    +
    Returns
    - ThemePalette + MatDateSelectionModel<S, D>

    - +

    Selection model that the input should hook itself up to.

    +

    + + + + + + + + + + + + + + + + + + + +
    removeActions +
    +

    Removes a portal containing action buttons from the datepicker.

    + +
    Parameters
    +

    + portal

    + TemplatePortal<any> +
    +

    +

    Portal to be removed.

    + +

    +
    + + + + + + + + + + + + + + + + + + + + + + +
    select +
    +

    Selects the given date

    + +
    Parameters
    +

    + date

    + D +
    +

    + +

    +
    + + + -

    Component responsible for managing the date range picker popup/dialog.

    -

    +

    Default header for MatCalendar

    +

    Selector: - mat-date-range-picker + mat-calendar-header

    Exported as: -matDateRangePicker
    Properties
    +matCalendarHeader
    Properties
    @@ -845,13 +1072,11 @@ - + @@ -859,15 +1084,11 @@ - @@ -876,12 +1097,11 @@ - @@ -890,12 +1110,11 @@ - @@ -904,12 +1123,11 @@ - @@ -918,99 +1136,167 @@ - - - - - - - +
    Name
    - @Input()

    - calendarHeaderComponent: ComponentType<any> +

    + calendar: inject<MatCalendar<D>>(MatCalendar)

    An input indicating the type of the custom header component for the calendar, if set.

    -
    - @Input()

    - color: ThemePalette +

    + nextButtonLabel: string

    Theme color of the datepicker's calendar. This API is supported in M2 themes only, it -has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/datepicker/styling.

    -

    For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    +

    The label for the next button.

    - @Input()

    - dateClass: MatCalendarCellClassFunction<D> +

    + periodButtonDescription: string

    Function that can be used to add custom CSS classes to dates.

    +

    The aria description for the current calendar view.

    @Input({ transform: booleanAttribute }) -

    - disabled: boolean +

    + periodButtonLabel: string

    Whether the datepicker pop-up should be disabled.

    +

    The aria-label for changing the calendar view.

    @Input({ transform: booleanAttribute }) -

    - opened: boolean +

    + periodButtonText: string

    Whether the calendar is open.

    +

    The display text for the current calendar view.

    - @Input()

    - panelClass: string | string[] +

    + prevButtonLabel: string

    Classes to be passed to the date picker panel.

    +

    The label for the previous button.

    @Input({ transform: booleanAttribute }) -

    - restoreFocus: boolean -

    -

    Whether to restore focus to the previously-focused element when the calendar is closed. -Note that automatic focus restoration is an accessibility feature and it is recommended that -you provide your own equivalent, if you decide to turn it off.

    -
    +
    Methods
    + - - - -
    - @Input()

    - startAt: D | null -

    - -

    The date to open the calendar to initially.

    - - - - - + + + + + + + - - - + +
    currentPeriodClicked +
    +

    Handles user clicks on the period label.

    -
    - @Input()

    - startView: 'month' | 'year' | 'multi-year' -

    -

    The view that the calendar should start in.

    -
    + - - -
    @Input({ transform: booleanAttribute }) -

    - touchUi: boolean -

    - -

    Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather -than a dropdown and elements have more padding to allow for bigger touch targets.

    - - + + + + + + + +
    nextClicked +
    +

    Handles user clicks on the next button.

    + +
    + - - -
    - @Input()

    - xPosition: DatepickerDropdownPositionX -

    - -

    Preferred position of the datepicker in the X axis.

    - - + + + + + + + + + + + + + + + +
    nextEnabled +
    +

    Whether the next period button is enabled.

    + +
    Returns
    + boolean + +

    + +

    +
    + + + + + + + + + + + + +
    previousClicked +
    +

    Handles user clicks on the previous button.

    + +
    + + + + + + + + + + + + + + + + + + + + +
    previousEnabled +
    +

    Whether the previous period button is enabled.

    + +
    Returns
    + boolean + +

    + +

    +
    + + + + + + + +

    A calendar that is used as part of the datepicker.

    +

    + Selector: + + mat-calendar + +

    Exported as: +matCalendar
    Properties
    + + + + + - @@ -1019,12 +1305,12 @@ - @@ -1033,13 +1319,12 @@ - @@ -1048,12 +1333,12 @@ - @@ -1062,12 +1347,12 @@ - @@ -1076,13 +1361,12 @@ - @@ -1091,11 +1375,12 @@ - @@ -1104,11 +1389,12 @@ - @@ -1117,245 +1403,112 @@ - -
    NameDescription
    @Input()

    - yPosition: DatepickerDropdownPositionY + comparisonEnd: D | null

    Preferred position of the datepicker in the Y axis.

    +

    End of the comparison range.

    @Output('closed') -

    - closedStream: EventEmitter<void> +

    + @Input()

    + comparisonStart: D | null

    Emits when the datepicker has been closed.

    +

    Start of the comparison range.

    - @Output()

    - monthSelected: EventEmitter<D> +

    + @Input()

    + dateClass: MatCalendarCellClassFunction<D>

    Emits selected month in year view. -This doesn't imply a change on the selected date.

    +

    Function that can be used to add custom CSS classes to dates.

    @Output('opened') -

    - openedStream: EventEmitter<void> +

    + @Input()

    + dateFilter: (date: D) => boolean

    Emits when the datepicker has been opened.

    +

    Function used to filter which dates are selectable.

    - @Output()

    - viewChanged: EventEmitter<MatCalendarView> +

    + @Input()

    + endDateAccessibleName: string | null

    Emits when the current view changes.

    +

    ARIA Accessible name of the <input matEndDate/>

    - @Output()

    - yearSelected: EventEmitter<D> +

    + @Input()

    + headerComponent: ComponentType<any>

    Emits selected year in multiyear view. -This doesn't imply a change on the selected date.

    +

    An input indicating the type of the header component, if set.

    - datepickerInput: C +

    + @Input()

    + maxDate: D | null

    The input element this datepicker is associated with.

    +

    The maximum selectable date.

    - id: string +

    + @Input()

    + minDate: D | null

    The id for the datepicker calendar.

    +

    The minimum selectable date.

    - stateChanges: Subject<void> +

    + @Input()

    + selected: DateRange<D> | D | null

    Emits when the datepicker's state changes.

    +

    The currently selected date.

    - - -
    Methods
    - - - - - - - - - - -
    close -
    -

    Close the calendar.

    + -
    + +
    + @Input()

    + startAt: D | null +

    + +

    A date representing the period (month or year) to start the calendar in.

    + + - + - - - - - - - -
    open -
    -

    Open the calendar.

    - -
    + +
    + @Input()

    + startDateAccessibleName: string | null +

    + +

    ARIA Accessible name of the <input matStartDate/>

    + + - + - - - - - - - - - - - - - - - - - -
    registerActions -
    -

    Registers a portal containing action buttons with the datepicker.

    - -
    Parameters
    -

    - portal

    - TemplatePortal<any> -
    -

    -

    Portal to be registered.

    - -

    -
    + +
    + @Input()

    + startView: MatCalendarView +

    + +

    Whether the calendar should be started in month or year view.

    + + - + - - - - - - - - - - - - - - - - - - - - - - - - - -
    registerInput -
    -

    Register an input with this datepicker.

    - -
    Parameters
    -

    - input

    - C -
    -

    -

    The datepicker input to register with this datepicker.

    - -

    -
    Returns
    - MatDateSelectionModel<S, D> - -

    -

    Selection model that the input should hook itself up to.

    - -

    -
    + +
    + @Output()

    + monthSelected: EventEmitter<D> +

    + +

    Emits the month chosen in year view. +This doesn't imply a change on the selected date.

    + + - + - - - - - - - - - - - - - - - - - -
    removeActions -
    -

    Removes a portal containing action buttons from the datepicker.

    - -
    Parameters
    -

    - portal

    - TemplatePortal<any> -
    -

    -

    Portal to be removed.

    - -

    -
    + +
    + @Output()

    + selectedChange: EventEmitter<D | null> +

    + +

    Emits when the currently selected date changes.

    + + - + - - - - - - - - - - - - - - - - - -
    select -
    -

    Selects the given date

    - -
    Parameters
    -

    - date

    - D -
    -

    - -

    -
    - - - - - + +
    + @Output()

    + viewChanged: EventEmitter<MatCalendarView> +

    + +

    Emits when the current view changes.

    + + - - -

    Input for entering the start date in a mat-date-range-input.

    -

    - Selector: - - input[matStartDate] - -

    Properties
    - - - - - - - @@ -1364,12 +1517,12 @@ - - @@ -1378,12 +1531,11 @@ - - @@ -1392,12 +1544,11 @@ - - @@ -1406,12 +1557,11 @@ - - @@ -1421,10 +1571,10 @@ - @@ -1434,10 +1584,10 @@ - @@ -1453,76 +1603,14 @@
    Methods
    NameDescription
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean +

    + @Output()

    + yearSelected: EventEmitter<D>

    Whether the datepicker-input is disabled.

    +

    Emits the year chosen in multiyear view. +This doesn't imply a change on the selected date.

    - @Input()

    - errorStateMatcher: ErrorStateMatcher +

    + activeDate: D

    Object used to control when error messages are shown.

    +

    The current active date. This determines which time period is shown and which date is +highlighted when using keyboard navigation.

    - @Input()

    - value: D | null +

    + currentView: MatCalendarView

    The value of the input.

    +

    Whether the calendar is in month view.

    - @Output()

    - dateChange: EventEmitter<MatDatepickerInputEvent<D, S>> +

    + monthView: MatMonthView<D>

    Emits when a change event is fired on this <input>.

    +

    Reference to the current month view component.

    - @Output()

    - dateInput: EventEmitter<MatDatepickerInputEvent<D, S>> +

    + multiYearView: MatMultiYearView<D>

    Emits when an input event is fired on this <input>.

    +

    Reference to the current multi-year view component.

    - errorState: boolean + stateChanges: Subject<void>

    Whether the input is in an error state.

    +

    Emits whenever there is a state change that the header may need to respond to.

    - stateChanges: Subject<void> + yearView: MatYearView<D>

    Emits when the internal state has changed

    +

    Reference to the current year view component.

    - - - - -
    focus -
    -

    Focuses the input.

    - -
    - - - - - - - - - - - - - - - - - - - - -
    getMirrorValue -
    -

    Gets the value that should be used when mirroring the input's size.

    - -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - - - - - - - - -
    isEmpty + focusActiveCell
    -

    Gets whether the input is empty.

    +

    Focuses the active date.

    Returns
    - boolean - -

    - -

    -
    @@ -1532,12 +1620,12 @@
    Methods
    -
    updateErrorState + updateTodaysDate
    -

    Refreshes the error state of the input.

    +

    Updates today's date after an update of the active date

    @@ -1550,17 +1638,18 @@
    Methods
    -

    Input for entering the end date in a mat-date-range-input.

    -

    +

    Component responsible for managing the datepicker popup/dialog.

    +

    Selector: - input[matEndDate] + mat-datepicker -

    Properties
    +

    Exported as: +matDatepicker
    Properties
    @@ -1570,12 +1659,12 @@ - - @@ -1586,10 +1675,13 @@ - @@ -1600,10 +1692,10 @@ - @@ -1612,12 +1704,12 @@ - - @@ -1626,12 +1718,12 @@ - - @@ -1640,11 +1732,12 @@ - - @@ -1653,149 +1746,129 @@ - - -
    Name
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean +

    + @Input()

    + calendarHeaderComponent: ComponentType<any>

    Whether the datepicker-input is disabled.

    +

    An input indicating the type of the custom header component for the calendar, if set.

    @Input()

    - errorStateMatcher: ErrorStateMatcher + color: ThemePalette

    Object used to control when error messages are shown.

    +

    Theme color of the datepicker's calendar. This API is supported in M2 themes only, it +has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/datepicker/styling.

    +

    For information on applying color variants in M3, see +https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    @Input()

    - value: D | null + dateClass: MatCalendarCellClassFunction<D>

    The value of the input.

    +

    Function that can be used to add custom CSS classes to dates.

    - @Output()

    - dateChange: EventEmitter<MatDatepickerInputEvent<D, S>> +

    @Input({ transform: booleanAttribute }) +

    + disabled: boolean

    Emits when a change event is fired on this <input>.

    +

    Whether the datepicker pop-up should be disabled.

    - @Output()

    - dateInput: EventEmitter<MatDatepickerInputEvent<D, S>> +

    @Input({ transform: booleanAttribute }) +

    + opened: boolean

    Emits when an input event is fired on this <input>.

    +

    Whether the calendar is open.

    - errorState: boolean +

    + @Input()

    + panelClass: string | string[]

    Whether the input is in an error state.

    +

    Classes to be passed to the date picker panel.

    - stateChanges: Subject<void> +

    @Input({ transform: booleanAttribute }) +

    + restoreFocus: boolean

    Emits when the internal state has changed

    +

    Whether to restore focus to the previously-focused element when the calendar is closed. +Note that automatic focus restoration is an accessibility feature and it is recommended that +you provide your own equivalent, if you decide to turn it off.

    - - -
    Methods
    - - - - - - - - - - -
    focus -
    -

    Focuses the input.

    + -
    + +
    + @Input()

    + startAt: D | null +

    + +

    The date to open the calendar to initially.

    + + - + - - - - - - - - - - - - - - - -
    getMirrorValue -
    -

    Gets the value that should be used when mirroring the input's size.

    - -
    Returns
    - string - -

    - -

    -
    + +
    + @Input()

    + startView: 'month' | 'year' | 'multi-year' +

    + +

    The view that the calendar should start in.

    + + - + - - - - - - - - - - - - - - - -
    isEmpty -
    -

    Gets whether the input is empty.

    - -
    Returns
    - boolean - -

    - -

    -
    + +
    @Input({ transform: booleanAttribute }) +

    + touchUi: boolean +

    + +

    Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather +than a dropdown and elements have more padding to allow for bigger touch targets.

    + + - + - - - - - - - + + + - -
    updateErrorState -
    -

    Refreshes the error state of the input.

    +
    + @Input()

    + xPosition: DatepickerDropdownPositionX +

    +

    Preferred position of the datepicker in the X axis.

    +
    + + - + +
    + @Input()

    + yPosition: DatepickerDropdownPositionY +

    + +

    Preferred position of the datepicker in the Y axis.

    + + + + + + + +
    @Output('closed') +

    + closedStream: EventEmitter<void> +

    + +

    Emits when the datepicker has been closed.

    + + -

    Default header for MatCalendar

    -

    - Selector: - - mat-calendar-header - -

    Exported as: -matCalendarHeader
    Properties
    - - - - - + + + + + + - - + @@ -1803,11 +1876,12 @@ - @@ -1816,11 +1890,13 @@ - @@ -1830,10 +1906,10 @@ - @@ -1843,10 +1919,10 @@ - @@ -1856,10 +1932,10 @@ - @@ -1875,12 +1951,12 @@
    Methods
    NameDescription
    + @Output()

    + monthSelected: EventEmitter<D> +

    +

    Emits selected month in year view. +This doesn't imply a change on the selected date.

    +

    - calendar: inject<MatCalendar<D>>(MatCalendar) +

    @Output('opened') +

    + openedStream: EventEmitter<void>

    Emits when the datepicker has been opened.

    +

    - nextButtonLabel: string +

    + @Output()

    + viewChanged: EventEmitter<MatCalendarView>

    The label for the next button.

    +

    Emits when the current view changes.

    - periodButtonDescription: string +

    + @Output()

    + yearSelected: EventEmitter<D>

    The aria description for the current calendar view.

    +

    Emits selected year in multiyear view. +This doesn't imply a change on the selected date.

    - periodButtonLabel: string + datepickerInput: C

    The aria-label for changing the calendar view.

    +

    The input element this datepicker is associated with.

    - periodButtonText: string + id: string

    The display text for the current calendar view.

    +

    The id for the datepicker calendar.

    - prevButtonLabel: string + stateChanges: Subject<void>

    The label for the previous button.

    +

    Emits when the datepicker's state changes.

    -
    currentPeriodClicked + close
    -

    Handles user clicks on the period label.

    +

    Close the calendar.

    @@ -1892,12 +1968,12 @@
    Methods
    -
    nextClicked + open
    -

    Handles user clicks on the next button.

    +

    Open the calendar.

    @@ -1909,26 +1985,82 @@
    Methods
    - + + + + + + + + + + +
    nextEnabled + registerActions
    -

    Whether the next period button is enabled.

    +

    Registers a portal containing action buttons with the datepicker.

    + +
    Parameters
    +

    + portal

    + TemplatePortal<any> +
    +

    +

    Portal to be registered.

    + +

    +
    + + + + + + + + + + + + + + + + + + + + + +
    registerInput +
    +

    Register an input with this datepicker.

    Parameters
    +

    + input

    + C +
    +

    +

    The datepicker input to register with this datepicker.

    + +

    +
    Returns
    - boolean + MatDateSelectionModel<S, D>

    - +

    Selection model that the input should hook itself up to.

    +

    @@ -1940,15 +2072,34 @@
    Methods
    - -
    previousClicked + removeActions
    -

    Handles user clicks on the previous button.

    +

    Removes a portal containing action buttons from the datepicker.

    + + + Parameters + + + + + +

    + portal

    + TemplatePortal<any> + + +

    +

    Portal to be removed.

    + +

    + + + @@ -1957,29 +2108,33 @@
    Methods
    - - - + + - - + - -
    previousEnabled + select
    -

    Whether the previous period button is enabled.

    +

    Selects the given date

    Returns
    Parameters
    - boolean + +
    +

    + date

    + D
    -

    +

    +

    + + @@ -1989,18 +2144,17 @@
    Methods
    -

    A calendar that is used as part of the datepicker.

    -

    +

    Selector: - mat-calendar + mat-datepicker-toggle

    Exported as: -matCalendar
    Properties
    +matDatepickerToggle
    Properties
    @@ -2010,26 +2164,12 @@ - - - - - - - - - - - @@ -2038,12 +2178,12 @@ - - @@ -2054,10 +2194,10 @@ - @@ -2066,26 +2206,53 @@ - - +
    Name
    - @Input()

    - comparisonEnd: D | null -

    -

    End of the comparison range.

    -
    - @Input()

    - comparisonStart: D | null +

    @Input('aria-label') +

    + ariaLabel: string

    Start of the comparison range.

    +

    Screen-reader label for the button.

    - @Input()

    - dateClass: MatCalendarCellClassFunction<D> +

    @Input('for') +

    + datepicker: MatDatepickerPanel<MatDatepickerControl<any>, D>

    Function that can be used to add custom CSS classes to dates.

    +

    Datepicker instance that the button will toggle.

    @Input()

    - dateFilter: (date: D) => boolean + disableRipple: boolean

    Function used to filter which dates are selectable.

    +

    Whether ripples on the toggle should be disabled.

    - @Input()

    - endDateAccessibleName: string | null +

    @Input({ transform: booleanAttribute }) +

    + disabled: boolean

    ARIA Accessible name of the <input matEndDate/>

    +

    Whether the toggle button is disabled.

    + + + + + + + + + +

    + Selector: + + mat-date-range-input + +

    Exported as: +matDateRangeInput
    Properties
    + + + + + + - @@ -2096,10 +2263,10 @@ - @@ -2110,10 +2277,10 @@ - @@ -2122,12 +2289,12 @@ - - @@ -2138,10 +2305,10 @@ - @@ -2152,10 +2319,10 @@ - @@ -2166,10 +2333,10 @@ - @@ -2178,13 +2345,12 @@ - - @@ -2193,12 +2359,12 @@ - - @@ -2207,12 +2373,11 @@ - - @@ -2221,13 +2386,11 @@ - - @@ -2237,11 +2400,10 @@ - @@ -2251,10 +2413,10 @@ - @@ -2264,10 +2426,10 @@ - @@ -2277,10 +2439,10 @@ - @@ -2293,7 +2455,7 @@ @@ -2303,10 +2465,10 @@ - @@ -2322,14 +2484,28 @@
    Methods
    NameDescription
    @Input()

    - headerComponent: ComponentType<any> + comparisonEnd: D | null

    An input indicating the type of the header component, if set.

    +

    End of the comparison range that should be shown in the calendar.

    @Input()

    - maxDate: D | null + comparisonStart: D | null

    The maximum selectable date.

    +

    Start of the comparison range that should be shown in the calendar.

    @Input()

    - minDate: D | null + dateFilter: DateFilterFn<D>

    The minimum selectable date.

    +

    Function that can be used to filter out dates within the date range picker.

    - @Input()

    - selected: DateRange<D> | D | null +

    @Input({ transform: booleanAttribute }) +

    + disabled: boolean

    The currently selected date.

    +

    Whether the input is disabled.

    @Input()

    - startAt: D | null + max: D | null

    A date representing the period (month or year) to start the calendar in.

    +

    The maximum valid date.

    @Input()

    - startDateAccessibleName: string | null + min: D | null

    ARIA Accessible name of the <input matStartDate/>

    +

    The minimum valid date.

    @Input()

    - startView: MatCalendarView + rangePicker: MatDatepickerPanel<MatDatepickerControl<D>, DateRange<D>, D>

    Whether the calendar should be started in month or year view.

    +

    The range picker that this input is associated with.

    - @Output()

    - monthSelected: EventEmitter<D> +

    @Input({ transform: booleanAttribute }) +

    + required: boolean

    Emits the month chosen in year view. -This doesn't imply a change on the selected date.

    +

    Whether the input is required.

    - @Output()

    - selectedChange: EventEmitter<D | null> +

    + @Input()

    + separator: '–'

    Emits when the currently selected date changes.

    +

    Separator text to be shown between the inputs.

    - @Output()

    - viewChanged: EventEmitter<MatCalendarView> +

    + controlType: 'mat-date-range-input'

    Emits when the current view changes.

    +

    Name of the form control.

    - @Output()

    - yearSelected: EventEmitter<D> +

    + empty: boolean

    Emits the year chosen in multiyear view. -This doesn't imply a change on the selected date.

    +

    Whether the datepicker input is empty.

    - activeDate: D + errorState: boolean

    The current active date. This determines which time period is shown and which date is -highlighted when using keyboard navigation.

    +

    Whether the input is in an error state.

    - currentView: MatCalendarView + focused: false

    Whether the calendar is in month view.

    +

    Whether the control is focused.

    - monthView: MatMonthView<D> + id: string

    Reference to the current month view component.

    +

    Unique ID for the group.

    - multiYearView: MatMultiYearView<D> + shouldLabelFloat: boolean

    Reference to the current multi-year view component.

    +

    Whether the control's label should float.

    Emits whenever there is a state change that the header may need to respond to.

    +

    Emits when the input's state has changed.

    - yearView: MatYearView<D> + value:

    Reference to the current year view component.

    +

    Current value of the range input.

    - + + + + + + + +
    focusActiveCell + getConnectedOverlayOrigin
    -

    Focuses the active date.

    +

    Gets the element to which the calendar overlay should be attached.

    Returns
    + ElementRef + +

    + +

    +
    @@ -2339,168 +2515,154 @@
    Methods
    - + + + + + + + +
    updateTodaysDate + getOverlayLabelId
    -

    Updates today's date after an update of the active date

    +

    Gets the ID of an element that should be used a description for the calendar overlay.

    Returns
    + string | null + +

    + +

    +
    - - - - -

    Component responsible for managing the datepicker popup/dialog.

    -

    - Selector: - - mat-datepicker - -

    Exported as: -matDatepicker
    Properties
    - - - - +
    NameDescription
    + + + - - - - - - - - - - - + + - - - + + + + + + + + + +
    getStartValue +
    - @Input()

    - calendarHeaderComponent: ComponentType<any> -

    -

    An input indicating the type of the custom header component for the calendar, if set.

    -
    +

    Gets the date at which the calendar should start.

    -
    - @Input()

    - color: ThemePalette -

    -

    Theme color of the datepicker's calendar. This API is supported in M2 themes only, it -has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/datepicker/styling.

    -

    For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    -
    Returns
    + D | null + +

    + +

    +
    + - - - -
    - @Input()

    - dateClass: MatCalendarCellClassFunction<D> -

    - -

    Function that can be used to add custom CSS classes to dates.

    - - - - - + + + + + + + - - - + + + + + + + + + +
    getThemePalette +
    +

    Gets the input's theme palette.

    -
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    -

    Whether the datepicker pop-up should be disabled.

    -
    Returns
    + ThemePalette + +

    + +

    +
    - - + - -
    @Input({ transform: booleanAttribute }) -

    - opened: boolean -

    - -

    Whether the calendar is open.

    - - - -
    - @Input()

    - panelClass: string | string[] -

    - -

    Classes to be passed to the date picker panel.

    - - +

    Container that can be used to project a row of action buttons +to the bottom of a datepicker or date range picker.

    +

    + Selector: + + mat-datepicker-actions + + mat-date-range-picker-actions + +

    + - - - -
    @Input({ transform: booleanAttribute }) -

    - restoreFocus: boolean -

    - -

    Whether to restore focus to the previously-focused element when the calendar is closed. -Note that automatic focus restoration is an accessibility feature and it is recommended that -you provide your own equivalent, if you decide to turn it off.

    - - + - -
    - @Input()

    - startAt: D | null -

    - -

    The date to open the calendar to initially.

    - - - - +

    Directive used to connect an input to a MatDatepicker.

    +

    + Selector: + + input[matDatepicker] + +

    Exported as: +matDatepickerInput
    Properties
    + + + + + - - @@ -2511,11 +2673,10 @@ - @@ -2526,10 +2687,10 @@ - @@ -2540,24 +2701,10 @@ - - - - - - - - - - @@ -2566,13 +2713,12 @@ - - @@ -2581,12 +2727,12 @@ - - @@ -2597,10 +2743,10 @@ - @@ -2611,37 +2757,10 @@ - - - - - - - - - - - - - - - - - - - @@ -2654,7 +2773,7 @@ @@ -2670,68 +2789,30 @@
    Methods
    NameDescription
    - @Input()

    - startView: 'month' | 'year' | 'multi-year' +

    @Input('matDatepickerFilter') +

    + dateFilter: DateFilterFn<D>

    The view that the calendar should start in.

    +

    Function that can be used to filter out dates within the datepicker.

    @Input({ transform: booleanAttribute })

    - touchUi: boolean + disabled: boolean

    Whether the calendar UI is in touch mode. In touch mode the calendar opens in a dialog rather -than a dropdown and elements have more padding to allow for bigger touch targets.

    +

    Whether the datepicker-input is disabled.

    @Input()

    - xPosition: DatepickerDropdownPositionX + matDatepicker: MatDatepickerPanel<MatDatepickerControl<D>, D, D>

    Preferred position of the datepicker in the X axis.

    +

    The datepicker that this input is associated with.

    @Input()

    - yPosition: DatepickerDropdownPositionY -

    -

    Preferred position of the datepicker in the Y axis.

    -
    @Output('closed') -

    - closedStream: EventEmitter<void> + max: D | null

    Emits when the datepicker has been closed.

    +

    The maximum valid date.

    - @Output()

    - monthSelected: EventEmitter<D> +

    + @Input()

    + min: D | null

    Emits selected month in year view. -This doesn't imply a change on the selected date.

    +

    The minimum valid date.

    @Output('opened') -

    - openedStream: EventEmitter<void> +

    + @Input()

    + value: D | null

    Emits when the datepicker has been opened.

    +

    The value of the input.

    @Output()

    - viewChanged: EventEmitter<MatCalendarView> + dateChange: EventEmitter<MatDatepickerInputEvent<D, S>>

    Emits when the current view changes.

    +

    Emits when a change event is fired on this <input>.

    @Output()

    - yearSelected: EventEmitter<D> -

    -

    Emits selected year in multiyear view. -This doesn't imply a change on the selected date.

    -

    - datepickerInput: C -

    -

    The input element this datepicker is associated with.

    -

    - id: string + dateInput: EventEmitter<MatDatepickerInputEvent<D, S>>

    The id for the datepicker calendar.

    +

    Emits when an input event is fired on this <input>.

    Emits when the datepicker's state changes.

    +

    Emits when the internal state has changed

    - - - - -
    close -
    -

    Close the calendar.

    - -
    - - - - - - - - - - - - -
    open -
    -

    Open the calendar.

    - -
    - - - - - - - - - - - + + - - - + - - -
    registerActions + getConnectedOverlayOrigin
    -

    Registers a portal containing action buttons with the datepicker.

    +

    Gets the element that the datepicker popup should be connected to.

    Parameters
    Returns
    -

    - portal

    - TemplatePortal<any> +
    + ElementRef -

    -

    Portal to be registered.

    +
    +

    +

    The element to connect the popup to.

    + @@ -2740,46 +2821,26 @@
    Methods
    - - - - - - - - - - -
    registerInput + getOverlayLabelId
    -

    Register an input with this datepicker.

    +

    Gets the ID of an element that should be used a description for the calendar overlay.

    Parameters
    -

    - input

    - C -
    -

    -

    The datepicker input to register with this datepicker.

    - -

    -
    Returns
    - MatDateSelectionModel<S, D> + string | null

    -

    Selection model that the input should hook itself up to.

    - +

    @@ -2791,34 +2852,29 @@
    Methods
    - - - + + - - - + - - -
    removeActions + getStartValue
    -

    Removes a portal containing action buttons from the datepicker.

    +

    Gets the value at which the calendar should start.

    Parameters
    Returns
    -

    - portal

    - TemplatePortal<any> +
    + D | null -

    -

    Portal to be removed.

    - +
    +

    +

    + @@ -2827,33 +2883,29 @@
    Methods
    - - - + + - - - + - - -
    select + getThemePalette
    -

    Selects the given date

    +

    Returns the palette used by the input's form field, if any.

    Parameters
    Returns
    -

    - date

    - D +
    + ThemePalette -

    +

    +

    + @@ -2863,37 +2915,17 @@
    Methods
    -

    Can be used to override the icon of a matDatepickerToggle.

    +

    Input for entering the start date in a mat-date-range-input.

    Selector: - [matDatepickerToggleIcon] - -

    - - - - - - - - - -

    - Selector: - - mat-datepicker-toggle + input[matStartDate] -

    Exported as: -matDatepickerToggle
    Properties
    +

    Properties
    @@ -2903,12 +2935,12 @@ - @@ -2917,12 +2949,12 @@ - @@ -2933,10 +2965,10 @@ - @@ -2945,53 +2977,39 @@ - -
    Name
    @Input('aria-label') +
    @Input({ transform: booleanAttribute })

    - ariaLabel: string + disabled: boolean

    Screen-reader label for the button.

    +

    Whether the datepicker-input is disabled.

    @Input('for') -

    - datepicker: MatDatepickerPanel<MatDatepickerControl<any>, D> +

    + @Input()

    + errorStateMatcher: ErrorStateMatcher

    Datepicker instance that the button will toggle.

    +

    Object used to control when error messages are shown.

    @Input()

    - disableRipple: boolean + value: D | null

    Whether ripples on the toggle should be disabled.

    +

    The value of the input.

    @Input({ transform: booleanAttribute }) -

    - disabled: boolean +

    + @Output()

    + dateChange: EventEmitter<MatDatepickerInputEvent<D, S>>

    Whether the toggle button is disabled.

    +

    Emits when a change event is fired on this <input>.

    - - - - + + +
    + @Output()

    + dateInput: EventEmitter<MatDatepickerInputEvent<D, S>> +

    + +

    Emits when an input event is fired on this <input>.

    + + - - -

    - Selector: - - mat-date-range-input - -

    Exported as: -matDateRangeInput
    Properties
    - - - - - - - @@ -3000,68 +3018,149 @@ - - +
    NameDescription
    - @Input()

    - comparisonEnd: D | null +

    + errorState: boolean

    End of the comparison range that should be shown in the calendar.

    +

    Whether the input is in an error state.

    - @Input()

    - comparisonStart: D | null +

    + stateChanges: Subject<void>

    Start of the comparison range that should be shown in the calendar.

    +

    Emits when the internal state has changed

    + + +
    Methods
    + + + + + + + + + + +
    focus +
    +

    Focuses the input.

    + +
    + + + + + + + + + + + + + + + + + + + + +
    getMirrorValue +
    +

    Gets the value that should be used when mirroring the input's size.

    + +
    Returns
    + string + +

    + +

    +
    + + + + + + + + + + + + + + + + + + + + +
    isEmpty +
    +

    Gets whether the input is empty.

    + +
    Returns
    + boolean + +

    + +

    +
    + + + + - -
    - @Input()

    - dateFilter: DateFilterFn<D> -

    - -

    Function that can be used to filter out dates within the date range picker.

    - - + + + + + + + +
    updateErrorState +
    +

    Refreshes the error state of the input.

    + +
    - - + - -
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    - -

    Whether the input is disabled.

    - - - -
    - @Input()

    - max: D | null -

    - -

    The maximum valid date.

    - - - - +

    Input for entering the end date in a mat-date-range-input.

    +

    + Selector: + + input[matEndDate] + +

    Properties
    + + + + + - - @@ -3072,24 +3171,10 @@ - - - - - - - - - - @@ -3100,10 +3185,10 @@ - @@ -3112,11 +3197,12 @@ - @@ -3125,11 +3211,12 @@ - @@ -3150,64 +3237,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3223,28 +3258,14 @@
    Methods
    NameDescription
    - @Input()

    - min: D | null +

    @Input({ transform: booleanAttribute }) +

    + disabled: boolean

    The minimum valid date.

    +

    Whether the datepicker-input is disabled.

    @Input()

    - rangePicker: MatDatepickerPanel<MatDatepickerControl<D>, DateRange<D>, D> -

    -

    The range picker that this input is associated with.

    -
    @Input({ transform: booleanAttribute }) -

    - required: boolean + errorStateMatcher: ErrorStateMatcher

    Whether the input is required.

    +

    Object used to control when error messages are shown.

    @Input()

    - separator: '–' + value: D | null

    Separator text to be shown between the inputs.

    +

    The value of the input.

    - controlType: 'mat-date-range-input' +

    + @Output()

    + dateChange: EventEmitter<MatDatepickerInputEvent<D, S>>

    Name of the form control.

    +

    Emits when a change event is fired on this <input>.

    - empty: boolean +

    + @Output()

    + dateInput: EventEmitter<MatDatepickerInputEvent<D, S>>

    Whether the datepicker input is empty.

    +

    Emits when an input event is fired on this <input>.

    - focused: false -

    -

    Whether the control is focused.

    -

    - id: string -

    -

    Unique ID for the group.

    -

    - shouldLabelFloat: boolean -

    -

    Whether the control's label should float.

    -

    stateChanges: Subject<void>

    Emits when the input's state has changed.

    -

    - value: -

    -

    Current value of the range input.

    +

    Emits when the internal state has changed

    - - - - - - - - -
    getConnectedOverlayOrigin + focus
    -

    Gets the element to which the calendar overlay should be attached.

    +

    Focuses the input.

    Returns
    - ElementRef - -

    - -

    -
    @@ -3254,12 +3275,12 @@
    Methods
    - @@ -3269,7 +3290,7 @@
    Methods
    - + + + @@ -341,7 +354,8 @@
    Methods
    @@ -356,7 +370,8 @@
    Methods
    getOverlayLabelId + getMirrorValue
    -

    Gets the ID of an element that should be used a description for the calendar overlay.

    +

    Gets the value that should be used when mirroring the input's size.

    - string | null + string

    @@ -3285,12 +3306,12 @@

    Methods
    - @@ -3300,7 +3321,7 @@
    Methods
    diff --git a/docs-content/api-docs/material-dialog-testing.html b/docs-content/api-docs/material-dialog-testing.html index 7877a1c3fe..5b419670af 100755 --- a/docs-content/api-docs/material-dialog-testing.html +++ b/docs-content/api-docs/material-dialog-testing.html @@ -27,9 +27,9 @@

    -

    @@ -39,7 +39,7 @@
    Methods
    getAllChildLoaders - + + + @@ -295,7 +301,8 @@
    Methods
    @@ -310,7 +317,8 @@
    Methods
    getStartValue + isEmpty
    -

    Gets the date at which the calendar should start.

    +

    Gets whether the input is empty.

    - D | null + boolean

    @@ -3316,28 +3337,14 @@

    Methods
    - - - - - - - - -
    getThemePalette + updateErrorState
    -

    Gets the input's theme palette.

    +

    Refreshes the error state of the input.

    Returns
    - ThemePalette - -

    - -

    -
    @@ -3348,17 +3355,15 @@
    Methods
    -

    Button that will close the datepicker and assign the current selection to the data model.

    +

    Can be used to override the icon of a matDatepickerToggle.

    Selector: - [matDatepickerApply] - - [matDateRangePickerApply] + [matDatepickerToggleIcon]

    @@ -3370,17 +3375,17 @@

    Button that will close the datepicker and discard the current selection.

    +

    Button that will close the datepicker and assign the current selection to the data model.

    Selector: - [matDatepickerCancel] + [matDatepickerApply] - [matDateRangePickerCancel] + [matDateRangePickerApply]

    @@ -3392,18 +3397,17 @@

    Container that can be used to project a row of action buttons -to the bottom of a datepicker or date range picker.

    +

    Button that will close the datepicker and discard the current selection.

    Selector: - mat-datepicker-actions + [matDatepickerCancel] - mat-date-range-picker-actions + [matDateRangePickerCancel]

    @@ -4034,9 +4038,9 @@
    +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + +
    Parameters

    - +

    The selector for elements in the component's content.

    +

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -327,7 +335,12 @@
    Methods
    getAllHarnesses
    +

    Gets all matching harnesses for the given query within the current harness's content.

    + +
    Parameters

    - +

    The harness query to search for.

    +

    - +

    The list of harness matching the given query.

    +

    @@ -472,7 +487,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -486,7 +507,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -501,7 +523,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -537,7 +560,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -551,7 +579,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -566,7 +595,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -583,7 +613,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -597,7 +632,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -612,7 +648,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -733,7 +770,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -747,7 +790,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -762,7 +806,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-dialog.html b/docs-content/api-docs/material-dialog.html index 1c177c332d..e07391000c 100755 --- a/docs-content/api-docs/material-dialog.html +++ b/docs-content/api-docs/material-dialog.html @@ -360,215 +360,18 @@
    Methods
    - -

    Container for the bottom action buttons in a dialog. -Stays fixed to the bottom when scrolling.

    -

    - Selector: - - [mat-dialog-actions] - - mat-dialog-actions - - [matDialogActions] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - align: 'start' | 'center' | 'end' -

    -

    Horizontal alignment of action buttons.

    -
    - - - - - - - - - -

    Button that will close the current dialog.

    -

    - Selector: - - [mat-dialog-close] - - [matDialogClose] - -

    Exported as: -matDialogClose
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    @Input('aria-label') -

    - ariaLabel: string -

    -

    Screen-reader label for the button.

    -
    @Input('mat-dialog-close') -

    - dialogResult: any -

    -

    Dialog close input.

    -
    - @Input()

    - type: 'submit' | 'button' | 'reset' -

    -

    Default to "button" to prevents accidental form submits.

    -

    - dialogRef: inject<MatDialogRef<any>>(MatDialogRef, { optional: true })! -

    -
    - - - - - - - - - -

    Title of a dialog element. Stays fixed to the top of the dialog when scrolling.

    -

    - Selector: - - [mat-dialog-title] - - [matDialogTitle] - -

    Exported as: -matDialogTitle
    Properties
    - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - id: string -

    -
    - - - - - - - - - -

    Scrollable content container of a dialog.

    -

    - Selector: - - [mat-dialog-content] - - mat-dialog-content - - [matDialogContent] - -

    - - - - - - - - -

    +

    Selector: mat-dialog-container @@ -902,6 +705,207 @@

    Methods
    + + + + +

    Container for the bottom action buttons in a dialog. +Stays fixed to the bottom when scrolling.

    +

    + Selector: + + [mat-dialog-actions] + + mat-dialog-actions + + [matDialogActions] + +

    Properties
    + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + align: 'start' | 'center' | 'end' +

    +

    Horizontal alignment of action buttons.

    +
    + + + + + + + + + +

    Button that will close the current dialog.

    +

    + Selector: + + [mat-dialog-close] + + [matDialogClose] + +

    Exported as: +matDialogClose
    Properties
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    @Input('aria-label') +

    + ariaLabel: string +

    +

    Screen-reader label for the button.

    +
    @Input('mat-dialog-close') +

    + dialogResult: any +

    +

    Dialog close input.

    +
    + @Input()

    + type: 'submit' | 'button' | 'reset' +

    +

    Default to "button" to prevents accidental form submits.

    +

    + dialogRef: inject<MatDialogRef<any>>(MatDialogRef, { optional: true })! +

    +
    + + + + + + + + + +

    Title of a dialog element. Stays fixed to the top of the dialog when scrolling.

    +

    + Selector: + + [mat-dialog-title] + + [matDialogTitle] + +

    Exported as: +matDialogTitle
    Properties
    + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + id: string +

    +
    + + + + + + + + + +

    Scrollable content container of a dialog.

    +

    + Selector: + + [mat-dialog-content] + + mat-dialog-content + + [matDialogContent] + +

    + + + + + +

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-divider diff --git a/docs-content/api-docs/material-expansion-testing.html b/docs-content/api-docs/material-expansion-testing.html index 9a24fd25e0..a5b5482976 100755 --- a/docs-content/api-docs/material-expansion-testing.html +++ b/docs-content/api-docs/material-expansion-testing.html @@ -429,7 +429,13 @@

    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -443,7 +449,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -458,7 +465,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -475,7 +483,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -489,7 +502,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -504,7 +518,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -521,7 +536,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -535,7 +556,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -550,7 +572,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -601,7 +624,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -615,7 +643,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -630,7 +659,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -647,7 +677,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -661,7 +696,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -676,7 +712,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -793,7 +830,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -807,7 +850,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -822,7 +866,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-expansion.html b/docs-content/api-docs/material-expansion.html index 2b75c7b7fd..c1ed0f57d4 100755 --- a/docs-content/api-docs/material-expansion.html +++ b/docs-content/api-docs/material-expansion.html @@ -27,157 +27,13 @@

    -

    -

    Directive for a Material Design Accordion.

    -

    - Selector: - - mat-accordion - -

    Exported as: -matAccordion
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - displayMode: MatAccordionDisplayMode -

    -

    Display mode used for all expansion panels in the accordion. Currently two display -modes exist: - default - a gutter-like spacing is placed around any expanded panel, placing the expanded - panel at a different elevation from the rest of the accordion. - flat - no spacing is placed around expanded panels, showing all panels at the same - elevation.

    -
    @Input({ transform: booleanAttribute }) -

    - hideToggle: boolean -

    -

    Whether the expansion indicator should be hidden.

    -
    @Input({ transform: booleanAttribute }) -

    - multi: boolean -

    -

    Whether the accordion should allow multiple expanded accordion items simultaneously.

    -
    - @Input()

    - togglePosition: MatAccordionTogglePosition -

    -

    The position of the expansion indicator.

    -

    - id: string -

    -

    A readonly id value to use for unique selection coordination.

    -
    - - -
    Methods
    - - - - - - - - - - -
    closeAll -
    -

    Closes all enabled accordion items.

    - -
    - - - - - - - - - - - - -
    openAll -
    -

    Opens all enabled accordion items in an accordion where multi is enabled.

    - -
    - - - - - - - - -
    Methods
    -

    Actions of a <mat-expansion-panel>.

    -

    +

    Header element of a <mat-expansion-panel>.

    +

    Selector: - mat-action-row + mat-expansion-panel-header -

    +

    Properties
    + + + + + + + + + + + + + + + + + - + + + + + + +
    NameDescription
    + @Input()

    + collapsedHeight: string +

    +

    Height of the header while the panel is collapsed.

    +
    + @Input()

    + expandedHeight: string +

    +

    Height of the header while the panel is expanded.

    +

    + panel: inject(MatExpansionPanel, { host: true }) +

    +
    + + + + + + + + + + +

    Header element of a <mat-expansion-panel>.

    + + extends + + CdkAccordion + + + +

    Directive for a Material Design Accordion.

    Selector: - mat-expansion-panel-header + mat-accordion -

    Properties
    +

    Exported as: +matAccordion
    Properties
    @@ -460,10 +375,43 @@ - + + + + + + + + + + + + + + + + + + @@ -474,10 +422,10 @@ - @@ -487,10 +435,11 @@ - + @@ -498,6 +447,61 @@ + + + +
    Name
    @Input()

    - collapsedHeight: string + displayMode: MatAccordionDisplayMode

    Height of the header while the panel is collapsed.

    +

    Display mode used for all expansion panels in the accordion. Currently two display +modes exist: + default - a gutter-like spacing is placed around any expanded panel, placing the expanded + panel at a different elevation from the rest of the accordion. + flat - no spacing is placed around expanded panels, showing all panels at the same + elevation.

    +
    @Input({ transform: booleanAttribute }) +

    + hideToggle: boolean +

    +

    Whether the expansion indicator should be hidden.

    +
    @Input({ transform: booleanAttribute }) +

    + multi: boolean +

    +

    Whether the accordion should allow multiple expanded accordion items simultaneously.

    @Input()

    - expandedHeight: string + togglePosition: MatAccordionTogglePosition

    Height of the header while the panel is expanded.

    +

    The position of the expansion indicator.

    - panel: inject(MatExpansionPanel, { host: true }) + id: string

    A readonly id value to use for unique selection coordination.

    +
    + + + + + + +
    closeAll +
    +

    Closes all enabled accordion items.

    + +
    + + + + + + + + + + + + +
    openAll +
    +

    Opens all enabled accordion items in an accordion where multi is enabled.

    + +
    + + + + + + + + + +

    Actions of a <mat-expansion-panel>.

    +

    + Selector: + + mat-action-row + +

    + + diff --git a/docs-content/api-docs/material-form-field.html b/docs-content/api-docs/material-form-field.html index c6947934ab..7c47607b40 100755 --- a/docs-content/api-docs/material-form-field.html +++ b/docs-content/api-docs/material-form-field.html @@ -27,184 +27,19 @@

    -

    -

    The floating label for a mat-form-field.

    -

    - Selector: - - mat-label - -

    - - - - - - - - - -

    Single error message to be shown underneath the form-field.

    -

    - Selector: - - mat-error - - [matError] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - id: string -

    -
    - - - - - - - - - -

    Hint text to be shown underneath the form field control.

    -

    - Selector: - - mat-hint - -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - align: 'start' | 'end' -

    -

    Whether to align the hint label at the start or end of the line.

    -
    - @Input()

    - id: string -

    -

    Unique ID for the hint. Used for the aria-describedby on the form field control.

    -
    - - - - - - - - - -

    Prefix to be placed in front of the form field.

    -

    - Selector: - - [matPrefix] - - [matIconPrefix] - - [matTextPrefix] - -

    - - - - - - - - - -

    Suffix to be placed at the end of the form field.

    -

    - Selector: - - [matSuffix] - - [matIconSuffix] - - [matTextSuffix] - -

    - - - - - - - - -

    Container for form controls that applies Material Design styling and behavior.

    -

    +

    Selector: mat-form-field @@ -240,9 +75,9 @@

    Injection token that can be used to reference instances of MatError. It serves as -alternative token to the actual MatError class which could cause unnecessary -retention of the class and its directive metadata.

    -

    -
    -const MAT_ERROR: InjectionToken<MatError>;
    -
    -
    - - - - - -

    Injection token that can be used to reference instances of MatPrefix. It serves as -alternative token to the actual MatPrefix class which could cause unnecessary -retention of the class and its directive metadata.

    -

    -
    -const MAT_PREFIX: InjectionToken<MatPrefix>;
    -
    -
    - - - - - -

    Injection token that can be used to reference instances of MatSuffix. It serves as -alternative token to the actual MatSuffix class which could cause unnecessary -retention of the class and its directive metadata.

    -

    -
    -const MAT_SUFFIX: InjectionToken<MatSuffix>;
    -
    -
    - - - - -
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -95,7 +101,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -110,7 +117,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -127,7 +135,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -141,7 +154,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -156,7 +170,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -173,7 +188,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -187,7 +208,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -202,7 +224,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -285,7 +308,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -299,7 +327,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -314,7 +343,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -331,7 +361,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -345,7 +380,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -360,7 +396,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -509,7 +546,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -523,7 +566,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -538,7 +582,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-grid-list.html b/docs-content/api-docs/material-grid-list.html index 11e33c5e91..14435ce80d 100755 --- a/docs-content/api-docs/material-grid-list.html +++ b/docs-content/api-docs/material-grid-list.html @@ -27,9 +27,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-grid-list @@ -107,7 +107,7 @@

    +

    Selector: mat-grid-tile @@ -162,7 +162,7 @@

    +

    Selector: mat-grid-tile-header diff --git a/docs-content/api-docs/material-icon.html b/docs-content/api-docs/material-icon.html index 44336bd498..82bbfa7822 100755 --- a/docs-content/api-docs/material-icon.html +++ b/docs-content/api-docs/material-icon.html @@ -1041,9 +1041,9 @@

    Methods
    - @@ -1084,7 +1084,7 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -975,7 +981,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -990,7 +997,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1007,7 +1015,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1021,7 +1034,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1036,7 +1050,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1053,7 +1068,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1067,7 +1088,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1082,7 +1104,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1131,7 +1154,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1145,7 +1173,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1160,7 +1189,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1177,7 +1207,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1191,7 +1226,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1206,7 +1242,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1380,7 +1417,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1394,7 +1437,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1409,7 +1453,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -2309,7 +2354,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -2323,7 +2374,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -2338,7 +2390,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -2355,7 +2408,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -2369,7 +2427,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2384,7 +2443,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -2401,7 +2461,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -2415,7 +2481,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -2430,7 +2497,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -2479,7 +2547,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2493,7 +2566,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2508,7 +2582,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -2525,7 +2600,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2539,7 +2619,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2554,7 +2635,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -2728,7 +2810,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -2742,7 +2830,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2757,7 +2846,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -3726,7 +3816,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -3740,7 +3836,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -3755,7 +3852,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -3772,7 +3870,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -3786,7 +3889,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3801,7 +3905,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -3818,7 +3923,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -3832,7 +3943,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -3847,7 +3959,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -3896,7 +4009,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -3910,7 +4028,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3925,7 +4044,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -3942,7 +4062,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -3956,7 +4081,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -3971,7 +4097,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -4178,7 +4305,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -4192,7 +4325,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -4207,7 +4341,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -5394,7 +5529,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -5408,7 +5549,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -5423,7 +5565,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -5440,7 +5583,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -5454,7 +5602,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -5469,7 +5618,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -5519,7 +5669,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -5533,7 +5689,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -5548,7 +5705,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -5597,7 +5755,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -5611,7 +5774,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -5626,7 +5790,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -5643,7 +5808,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -5657,7 +5827,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -5672,7 +5843,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -5879,7 +6051,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -5893,7 +6071,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -5908,7 +6087,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-list.html b/docs-content/api-docs/material-list.html index 3aa3a93666..5959a02b15 100755 --- a/docs-content/api-docs/material-list.html +++ b/docs-content/api-docs/material-list.html @@ -27,9 +27,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-list-option @@ -61,9 +61,9 @@

    +

    Selector: mat-action-list @@ -297,7 +297,7 @@

    +

    Selector: mat-list @@ -353,7 +353,7 @@

    +

    Selector: mat-list-item @@ -445,7 +445,7 @@

    +

    Selector: mat-nav-list @@ -501,7 +501,7 @@

    +

    Selector: mat-selection-list @@ -524,9 +524,9 @@

    Methods
    + diff --git a/docs-content/api-docs/material-menu-testing.html b/docs-content/api-docs/material-menu-testing.html index 1efccf7c48..4fa7acc557 100755 --- a/docs-content/api-docs/material-menu-testing.html +++ b/docs-content/api-docs/material-menu-testing.html @@ -266,7 +266,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -280,7 +286,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -295,7 +302,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -312,7 +320,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -326,7 +339,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -341,7 +355,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -358,7 +373,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -372,7 +393,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -387,7 +409,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -404,7 +427,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -418,7 +446,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -433,7 +462,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -450,7 +480,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -464,7 +499,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -479,7 +515,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -609,7 +646,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -623,7 +666,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -638,7 +682,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1018,7 +1063,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1032,7 +1083,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1047,7 +1099,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1064,7 +1117,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1078,7 +1136,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1093,7 +1152,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1110,7 +1170,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1124,7 +1190,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1139,7 +1206,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1156,7 +1224,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1170,7 +1243,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1185,7 +1259,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1202,7 +1277,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1216,7 +1296,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1231,7 +1312,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1314,7 +1396,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1328,7 +1416,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1343,7 +1432,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-menu.html b/docs-content/api-docs/material-menu.html index fad9115f56..3bc2499cc1 100755 --- a/docs-content/api-docs/material-menu.html +++ b/docs-content/api-docs/material-menu.html @@ -27,9 +27,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-menu @@ -424,6 +424,160 @@

    Methods
    +

    Single item inside a mat-menu. Provides the menu item styling and accessibility treatment.

    +

    + Selector: + + [mat-menu-item] + +

    Exported as: +matMenuItem
    Properties
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    @Input({ transform: booleanAttribute }) +

    + disableRipple: boolean +

    +

    Whether ripples are disabled on the menu item.

    +
    @Input({ transform: booleanAttribute }) +

    + disabled: boolean +

    +

    Whether the menu item is disabled.

    +
    + @Input()

    + role: 'menuitem' | 'menuitemradio' | 'menuitemcheckbox' +

    +

    ARIA role for the menu item.

    +
    + + +
    Methods
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    focus +
    +

    Focuses the menu item.

    + +
    Parameters
    +

    + origin?

    + FocusOrigin +
    +

    + +

    +
    +

    + options?

    + FocusOptions +
    +

    + +

    +
    + + + + + + + + + + + + + + + + + + + + +
    getLabel +
    +

    Gets the label to be used when determining whether the option should be focused.

    + +
    Returns
    + string + +

    + +

    +
    + + + + + + + + + +
    Methods
    -

    Single item inside a mat-menu. Provides the menu item styling and accessibility treatment.

    -

    - Selector: - - [mat-menu-item] - -

    Exported as: -matMenuItem
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    @Input({ transform: booleanAttribute }) -

    - disableRipple: boolean -

    -

    Whether ripples are disabled on the menu item.

    -
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    -

    Whether the menu item is disabled.

    -
    - @Input()

    - role: 'menuitem' | 'menuitemradio' | 'menuitemcheckbox' -

    -

    ARIA role for the menu item.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    focus -
    -

    Focuses the menu item.

    - -
    Parameters
    -

    - origin?

    - FocusOrigin -
    -

    - -

    -
    -

    - options?

    - FocusOptions -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    getLabel -
    -

    Gets the label to be used when determining whether the option should be focused.

    - -
    Returns
    - string - -

    - -

    -
    - - - - - - - - - @@ -160,7 +160,7 @@

    Component to provide navigation between paged information. Displays the size of the current page, user-selectable options to change that size, what items are being shown, and navigational button to go to the previous or next page.

    -

    +

    Selector: mat-paginator @@ -182,9 +182,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-progress-bar @@ -74,9 +74,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-progress-spinner @@ -62,9 +62,9 @@

    -

    -

    A group of radio buttons. May contain one or more <mat-radio-button> elements.

    -

    - Selector: - - mat-radio-group - -

    Exported as: -matRadioGroup
    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - color: ThemePalette -

    -

    Theme color of the radio buttons in the group. This API is supported in M2 -themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.io/components/radio/styling.

    -

    For information on applying color variants in M3, see -https://material.angular.io/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    -
    @Input({ transform: booleanAttribute }) -

    - disabled: boolean -

    -

    Whether the radio group is disabled

    -
    @Input({ transform: booleanAttribute }) -

    - disabledInteractive: boolean -

    -

    Whether buttons in the group should be interactive while they're disabled.

    -
    - @Input()

    - labelPosition: 'before' | 'after' -

    -

    Whether the labels should appear after or before the radio-buttons. Defaults to 'after'

    -
    - @Input()

    - name: string -

    -

    Name of the radio button group. All radio buttons inside this group will use this name.

    -
    @Input({ transform: booleanAttribute }) -

    - required: boolean -

    -

    Whether the radio group is required

    -
    - @Input()

    - selected: MatRadioButton -

    -

    The currently selected radio button. If set to a new radio button, the radio group value -will be updated to match the new selected button.

    -
    - @Input()

    - value: any -

    -

    Value for the radio-group. Should equal the value of the selected radio button if there is -a corresponding radio button with a matching value. If there is not such a corresponding -radio button, this value persists to be applied in case a new radio button is added with a -matching value.

    -
    - @Output()

    - change: EventEmitter<MatRadioChange> -

    -

    Event emitted when the group value changes. -Change events are only emitted when the value changes due to user interaction with -a radio button (the same behavior as <input type-"radio">).

    -
    - - - - - - - - -

    +

    Selector: mat-radio-button @@ -279,9 +116,9 @@

    Methods
    + + + + +

    A group of radio buttons. May contain one or more <mat-radio-button> elements.

    +

    + Selector: + + mat-radio-group + +

    Exported as: +matRadioGroup
    Properties
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + color: ThemePalette +

    +

    Theme color of the radio buttons in the group. This API is supported in M2 +themes only, it has no effect in M3 themes. For color customization in M3, see https://material.angular.dev/components/radio/styling.

    +

    For information on applying color variants in M3, see +https://material.angular.dev/guide/material-2-theming#optional-add-backwards-compatibility-styles-for-color-variants

    +
    @Input({ transform: booleanAttribute }) +

    + disabled: boolean +

    +

    Whether the radio group is disabled

    +
    @Input({ transform: booleanAttribute }) +

    + disabledInteractive: boolean +

    +

    Whether buttons in the group should be interactive while they're disabled.

    +
    + @Input()

    + labelPosition: 'before' | 'after' +

    +

    Whether the labels should appear after or before the radio-buttons. Defaults to 'after'

    +
    + @Input()

    + name: string +

    +

    Name of the radio button group. All radio buttons inside this group will use this name.

    +
    @Input({ transform: booleanAttribute }) +

    + required: boolean +

    +

    Whether the radio group is required

    +
    + @Input()

    + selected: MatRadioButton +

    +

    The currently selected radio button. If set to a new radio button, the radio group value +will be updated to match the new selected button.

    +
    + @Input()

    + value: any +

    +

    Value for the radio-group. Should equal the value of the selected radio button if there is +a corresponding radio button with a matching value. If there is not such a corresponding +radio button, this value persists to be applied in case a new radio button is added with a +matching value.

    +
    + @Output()

    + change: EventEmitter<MatRadioChange> +

    +

    Event emitted when the group value changes. +Change events are only emitted when the value changes due to user interaction with +a radio button (the same behavior as <input type-"radio">).

    +
    + + + + + + - - - - - - - - - - - - - - - - - -
    MAT_RADIO_DEFAULT_OPTIONS_FACTORY -
    Returns
    - MatRadioDefaultOptions - -

    - -

    -
    - -

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-select @@ -632,6 +632,10 @@

    Methods
    + diff --git a/docs-content/api-docs/material-sidenav-testing.html b/docs-content/api-docs/material-sidenav-testing.html index 427d31bc90..1ad7a106a5 100755 --- a/docs-content/api-docs/material-sidenav-testing.html +++ b/docs-content/api-docs/material-sidenav-testing.html @@ -74,7 +74,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -88,7 +94,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -103,7 +110,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -120,7 +128,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -134,7 +147,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -149,7 +163,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -166,7 +181,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -180,7 +201,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -195,7 +217,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -212,7 +235,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -226,7 +254,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -241,7 +270,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -258,7 +288,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -272,7 +307,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -287,7 +323,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -366,7 +403,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -380,7 +423,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -395,7 +439,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -573,7 +618,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -587,7 +638,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -602,7 +654,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -619,7 +672,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -633,7 +691,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -648,7 +707,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -665,7 +725,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -679,7 +745,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -694,7 +761,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -796,7 +864,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -810,7 +883,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -825,7 +899,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -842,7 +917,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -856,7 +936,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -871,7 +952,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -888,7 +970,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -902,7 +990,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -917,7 +1006,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1064,7 +1154,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1078,7 +1174,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1093,7 +1190,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1110,7 +1208,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1124,7 +1227,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1139,7 +1243,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1156,7 +1261,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1170,7 +1281,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1185,7 +1297,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1202,7 +1315,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1216,7 +1334,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1231,7 +1350,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1248,7 +1368,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1262,7 +1387,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1277,7 +1403,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1294,7 +1421,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1308,7 +1441,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1323,7 +1457,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1470,7 +1605,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1484,7 +1625,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1499,7 +1641,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1516,7 +1659,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1530,7 +1678,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1545,7 +1694,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1562,7 +1712,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1576,7 +1732,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1591,7 +1748,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1641,7 +1799,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1655,7 +1818,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1670,7 +1834,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1687,7 +1852,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1701,7 +1871,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1716,7 +1887,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1785,7 +1957,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1799,7 +1977,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1814,7 +1993,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1961,7 +2141,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1975,7 +2161,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1990,7 +2177,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -2007,7 +2195,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -2021,7 +2214,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2036,7 +2230,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -2053,7 +2248,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -2067,7 +2268,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -2082,7 +2284,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -2099,7 +2302,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2113,7 +2321,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2128,7 +2337,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -2145,7 +2355,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2159,7 +2374,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2174,7 +2390,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -2191,7 +2408,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -2205,7 +2428,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2220,7 +2444,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -2360,7 +2585,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -2374,7 +2605,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -2389,7 +2621,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -2406,7 +2639,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -2420,7 +2658,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2435,7 +2674,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -2452,7 +2692,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -2466,7 +2712,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -2481,7 +2728,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -2498,7 +2746,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2512,7 +2765,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2527,7 +2781,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -2544,7 +2799,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2558,7 +2818,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2573,7 +2834,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -2652,7 +2914,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -2666,7 +2934,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2681,7 +2950,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-sidenav.html b/docs-content/api-docs/material-sidenav.html index d947296052..b5a19f2531 100755 --- a/docs-content/api-docs/material-sidenav.html +++ b/docs-content/api-docs/material-sidenav.html @@ -27,9 +27,9 @@

    -

    @@ -45,7 +45,7 @@

    Selector: mat-drawer-content @@ -145,7 +145,7 @@

    Methods

    from

    - "top" | "bottom" | "start" | "end" | "left" | "right" + "left" | "right" | "start" | "end" | "top" | "bottom"

    @@ -223,7 +223,7 @@

    This component corresponds to a drawer that can be opened on the drawer container.

    -

    +

    Selector: mat-drawer @@ -536,7 +536,7 @@

    Selector: mat-sidenav-content @@ -810,7 +810,7 @@

    Methods

    from

    - "top" | "bottom" | "start" | "end" | "left" | "right" + "left" | "right" | "start" | "end" | "top" | "bottom"

    @@ -894,7 +894,7 @@

    +

    Selector: mat-sidenav @@ -1255,7 +1255,7 @@

    Selector: mat-sidenav-container diff --git a/docs-content/api-docs/material-slide-toggle.html b/docs-content/api-docs/material-slide-toggle.html index 49e9e98ad8..25cdf4eb66 100755 --- a/docs-content/api-docs/material-slide-toggle.html +++ b/docs-content/api-docs/material-slide-toggle.html @@ -27,9 +27,9 @@

    -

    @@ -38,7 +38,7 @@

    +

    Selector: mat-slide-toggle @@ -116,9 +116,9 @@

    Methods
    - - - -

    Validator for Material slide-toggle components with the required attribute in a -template-driven form. The default validator for required form controls asserts -that the control value is not undefined but that is not appropriate for a slide-toggle -where the value is always defined.

    -

    Required slide-toggle form controls are valid when checked.

    -

    - Selector: - - mat-slide-toggle[required][formControlName] - - mat-slide-toggle[required][formControl] - - mat-slide-toggle[required][ngModel] - -

    - Deprecated -
    Properties
    - - - - - - - - - - - - - - - -
    NameDescription

    - required: boolean | string -

    -

    Tracks changes to the required attribute bound to this directive.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    enabled -
    Parameters
    -

    - input

    - boolean -
    -

    - -

    -
    Returns
    - boolean - -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - -
    registerOnValidatorChange -
    Parameters
    -

    - fn

    - () => void -
    -

    - -

    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    validate -
    Parameters
    -

    - control

    - AbstractControl<any, any> -
    -

    - -

    -
    Returns
    - ValidationErrors | null - -

    - -

    -
    - - - - - -
    - Deprecated -
    -
    -const MAT_SLIDE_TOGGLE_VALUE_ACCESSOR: { provide: InjectionToken<readonly ControlValueAccessor[]>; useExisting: Type<any>; multi: boolean; };
    -
    -
    - - - - -
    - Deprecated -
    -
    -const MAT_SLIDE_TOGGLE_REQUIRED_VALIDATOR: Provider;
    -
    -
    - - diff --git a/docs-content/api-docs/material-slider.html b/docs-content/api-docs/material-slider.html index 615af9aa40..855b0b1969 100755 --- a/docs-content/api-docs/material-slider.html +++ b/docs-content/api-docs/material-slider.html @@ -27,9 +27,9 @@

    -

    @@ -40,7 +40,7 @@

    Allows users to select from a range of values by moving the slider thumb. It is similar in behavior to the native <input type="range"> element.

    -

    +

    Selector: mat-slider @@ -62,9 +62,9 @@

    @@ -481,7 +485,7 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -179,7 +186,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -196,7 +204,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -210,7 +223,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -225,7 +239,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -276,7 +291,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -290,7 +311,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -305,7 +327,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -322,7 +345,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -336,7 +364,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -351,7 +380,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -368,7 +398,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -382,7 +417,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -397,7 +433,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -480,7 +517,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -494,7 +537,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -509,7 +553,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-snack-bar.html b/docs-content/api-docs/material-snack-bar.html index 04bcf49f70..c59a370bc0 100755 --- a/docs-content/api-docs/material-snack-bar.html +++ b/docs-content/api-docs/material-snack-bar.html @@ -318,9 +318,9 @@
    Methods
    - @@ -329,7 +329,7 @@

    +

    Selector: simple-snack-bar @@ -404,6 +404,10 @@

    Methods
    + diff --git a/docs-content/api-docs/material-sort.html b/docs-content/api-docs/material-sort.html index c662d31d11..942422d6e1 100755 --- a/docs-content/api-docs/material-sort.html +++ b/docs-content/api-docs/material-sort.html @@ -68,9 +68,9 @@ @@ -84,7 +84,7 @@ diff --git a/docs-content/api-docs/material-stepper-testing.html b/docs-content/api-docs/material-stepper-testing.html index 504a988dd2..987e10d7d9 100755 --- a/docs-content/api-docs/material-stepper-testing.html +++ b/docs-content/api-docs/material-stepper-testing.html @@ -350,7 +350,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -364,7 +370,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -379,7 +386,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -396,7 +404,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -410,7 +423,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -425,7 +439,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -508,7 +523,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -522,7 +543,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -537,7 +559,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -554,7 +577,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -568,7 +596,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -583,7 +612,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -600,7 +630,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -614,7 +649,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -629,7 +665,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -744,7 +781,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -758,7 +801,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -773,7 +817,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-stepper.html b/docs-content/api-docs/material-stepper.html index 08e118404e..998cabc4f2 100755 --- a/docs-content/api-docs/material-stepper.html +++ b/docs-content/api-docs/material-stepper.html @@ -106,58 +106,13 @@ -

    - Selector: - - [matStepLabel] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription

    - template: inject<TemplateRef<any>>(TemplateRef) -

    -
    - - - - - - - - -

    +

    Selector: mat-step @@ -220,9 +175,9 @@

    +

    Selector: mat-stepper @@ -553,9 +508,9 @@

    Methods
    -

    Button that moves to the next step in a stepper workflow.

    -

    - Selector: - - button[matStepperNext] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - type: string -

    -

    Type of the next button. Defaults to "submit" if not specified.

    -
    - - - - - - - - - -

    Button that moves to the previous step in a stepper workflow.

    -

    - Selector: - - button[matStepperPrevious] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - type: string -

    -

    Type of the previous button. Defaults to "button" if not specified.

    -
    - - - - - - - - -

    +

    Selector: mat-step-header @@ -920,9 +779,9 @@

    Methods
    + + + + +

    + Selector: + + [matStepLabel] + +

    Properties
    + + + + + + + + + + + + + + + +
    NameDescription

    + template: inject<TemplateRef<any>>(TemplateRef) +

    +
    + + + + + + + + + +

    Button that moves to the next step in a stepper workflow.

    +

    + Selector: + + button[matStepperNext] + +

    Properties
    + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + type: string +

    +

    Type of the next button. Defaults to "submit" if not specified.

    +
    + + + + + + + + + +

    Button that moves to the previous step in a stepper workflow.

    +

    + Selector: + + button[matStepperPrevious] + +

    Properties
    + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + type: string +

    +

    Type of the previous button. Defaults to "button" if not specified.

    +
    + + + + + + diff --git a/docs-content/api-docs/material-table-testing.html b/docs-content/api-docs/material-table-testing.html index 548b31046e..0e32b76ff5 100755 --- a/docs-content/api-docs/material-table-testing.html +++ b/docs-content/api-docs/material-table-testing.html @@ -81,7 +81,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -95,7 +101,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -110,7 +117,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -127,7 +135,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -141,7 +154,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -156,7 +170,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -239,7 +254,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -253,7 +274,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -268,7 +290,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -336,7 +359,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -350,7 +378,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -365,7 +394,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -382,7 +412,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -396,7 +431,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -411,7 +447,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -530,7 +567,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -544,7 +587,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -559,7 +603,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1471,7 +1516,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1485,7 +1536,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1500,7 +1552,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1517,7 +1570,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1531,7 +1589,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1546,7 +1605,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -1563,7 +1623,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -1577,7 +1643,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -1592,7 +1659,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -1642,7 +1710,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1656,7 +1729,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1671,7 +1745,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -1688,7 +1763,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -1702,7 +1782,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1717,7 +1798,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -1767,7 +1849,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -1781,7 +1869,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -1796,7 +1885,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -1935,7 +2025,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -1949,7 +2045,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -1964,7 +2061,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -1981,7 +2079,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -1995,7 +2098,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2010,7 +2114,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -2027,7 +2132,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -2041,7 +2152,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -2056,7 +2168,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -2106,7 +2219,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2120,7 +2238,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2135,7 +2254,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -2152,7 +2272,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2166,7 +2291,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2181,7 +2307,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -2231,7 +2358,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -2245,7 +2378,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2260,7 +2394,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    @@ -2400,7 +2535,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -2414,7 +2555,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -2429,7 +2571,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -2446,7 +2589,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -2460,7 +2608,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2475,7 +2624,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -2492,7 +2642,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -2506,7 +2662,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -2521,7 +2678,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -2571,7 +2729,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2585,7 +2748,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2600,7 +2764,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -2617,7 +2782,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -2631,7 +2801,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2646,7 +2817,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -2696,7 +2868,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -2710,7 +2888,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -2725,7 +2904,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-table.html b/docs-content/api-docs/material-table.html index 85a0b3263f..0eb3c12c87 100755 --- a/docs-content/api-docs/material-table.html +++ b/docs-content/api-docs/material-table.html @@ -27,36 +27,13 @@

    -

    -

    Enables the recycle view repeater strategy, which reduces rendering latency. Not compatible with -tables that animate rows.

    -

    - Selector: - - mat-table[recycleRows] - - table[mat-table][recycleRows] - -

    - - - - - - - - -

    +

    Selector: mat-table @@ -615,6 +592,222 @@

    Methods
    +

    Header template container that contains the cell outlet. Adds the right class and role.

    +

    + Selector: + + mat-header-row + + tr[mat-header-row] + +

    Exported as: +matHeaderRow + + + + + + + + + +

    Footer template container that contains the cell outlet. Adds the right class and role.

    +

    + Selector: + + mat-footer-row + + tr[mat-footer-row] + +

    Exported as: +matFooterRow + + + + + + + + + +

    Data row template container that contains the cell outlet. Adds the right class and role.

    +

    + Selector: + + mat-row + + tr[mat-row] + +

    Exported as: +matRow + + + + + + + + + +

    Column that simply shows text content for the header and row cells. Assumes that the table +is using the native table implementation (<table>).

    +

    By default, the name of this column will be the header text and data property accessor. +The header text can be overridden with the headerText input. Cell values can be overridden with +the dataAccessor input. Change the text justification to the start or end using the justify +input.

    +

    + Selector: + + mat-text-column + +

    Properties
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    + @Input()

    + dataAccessor: (data: T, name: string) => string +

    +

    Accessor function to retrieve the data rendered for each cell. If this +property is not set, the data cells will render the value found in the data's property matching +the column's name. For example, if the column is named id, then the rendered value will be +value defined by the data's id property.

    +
    + @Input()

    + headerText: string +

    +

    Text label that should be used for the column header. If this property is not +set, the header text will default to the column name with its first letter capitalized.

    +
    + @Input()

    + justify: 'start' | 'end' | 'center' +

    +

    Alignment of the cell values.

    +
    + @Input()

    + name: string +

    +

    Column name that should be used to reference this column.

    +
    + + + + + + + + + + +

    Enables the recycle view repeater strategy, which reduces rendering latency. Not compatible with +tables that animate rows.

    +

    + Selector: + + mat-table[recycleRows] + + table[mat-table][recycleRows] + +

    + + + + + + + + +
    Methods
    -

    Header template container that contains the cell outlet. Adds the right class and role.

    -

    - Selector: - - mat-header-row - - tr[mat-header-row] - -

    Exported as: -matHeaderRow - - - - - - - - - -

    Footer template container that contains the cell outlet. Adds the right class and role.

    -

    - Selector: - - mat-footer-row - - tr[mat-footer-row] - -

    Exported as: -matFooterRow - - - - - - - - - -

    Data row template container that contains the cell outlet. Adds the right class and role.

    -

    - Selector: - - mat-row - - tr[mat-row] - -

    Exported as: -matRow - - - - - - - - -

    Column that simply shows text content for the header and row cells. Assumes that the table -is using the native table implementation (<table>).

    -

    By default, the name of this column will be the header text and data property accessor. -The header text can be overridden with the headerText input. Cell values can be overridden with -the dataAccessor input. Change the text justification to the start or end using the justify -input.

    -

    - Selector: - - mat-text-column - -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription
    - @Input()

    - dataAccessor: (data: T, name: string) => string -

    -

    Accessor function to retrieve the data rendered for each cell. If this -property is not set, the data cells will render the value found in the data's property matching -the column's name. For example, if the column is named id, then the rendered value will be -value defined by the data's id property.

    -
    - @Input()

    - headerText: string -

    -

    Text label that should be used for the column header. If this property is not -set, the header text will default to the column name with its first letter capitalized.

    -
    - @Input()

    - justify: 'start' | 'end' | 'center' -

    -

    Alignment of the cell values.

    -
    - @Input()

    - name: string -

    -

    Column name that should be used to reference this column.

    -
    - - - - - -
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -363,7 +369,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -378,7 +385,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -395,7 +403,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -409,7 +422,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -424,7 +438,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -507,7 +522,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -521,7 +542,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -536,7 +558,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -553,7 +576,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -567,7 +595,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -582,7 +611,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -599,7 +629,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -613,7 +648,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -628,7 +664,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -739,7 +776,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -753,7 +796,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -768,7 +812,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-tabs.html b/docs-content/api-docs/material-tabs.html index 915fb7ae6c..378c472ae3 100755 --- a/docs-content/api-docs/material-tabs.html +++ b/docs-content/api-docs/material-tabs.html @@ -27,283 +27,18 @@

    -

    -

    Decorates the ng-template tags and reads out the template from it.

    -

    - Selector: - - [matTabContent] - -

    Properties
    - - - - - - - - - - - - - - - -
    NameDescription

    - template: inject<TemplateRef<any>>(TemplateRef) -

    -
    - - - - - - - - - -

    Used to flag tab labels for use with the portal directive

    -

    - Selector: - - [mat-tab-label] - - [matTabLabel] - -

    Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameDescription

    - context: C -

    -

    Contextual data to be passed in to the embedded view.

    -

    - injector: Injector -

    -

    The injector to use for the embedded view.

    -

    - isAttached: boolean -

    -

    Whether this portal is attached to a host.

    -

    - origin: ElementRef -

    -

    - templateRef: TemplateRef<C> -

    -

    The embedded template that will be used to instantiate an embedded View in the host.

    -

    - viewContainerRef: ViewContainerRef -

    -

    Reference to the ViewContainer into which the template will be stamped out.

    -
    - - -
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    attach -
    -

    Attach the portal to the provided PortalOutlet. -When a context is provided it will override the context property of the TemplatePortal -instance.

    - -
    Parameters
    -

    - host

    - PortalOutlet -
    -

    - -

    -
    -

    - context

    - C = this.context -
    -

    - -

    -
    Returns
    - EmbeddedViewRef<C> - -

    - -

    -
    - - - - - - - - - - -
    detach -
    - - - - - - - - - - - - - - - - - - - - - - -
    setAttachedHost -
    -

    Sets the PortalOutlet reference without performing attach(). This is used directly by -the PortalOutlet when it is performing an attach() or detach().

    - -
    Parameters
    -

    - host

    - PortalOutlet -
    -

    - -

    -
    - - - - - - - - -

    +

    Selector: mat-tab @@ -375,6 +110,21 @@

    Material design tab-group component. Supports basic tab pairs (label + content) and includes animated ink-bar, keyboard navigation, and screen reader. See: https://material.io/design/components/tabs.html

    -

    +

    Selector: mat-tab-group @@ -550,9 +300,9 @@

    Navigation component matching the styles of the tab group header. Provides anchored navigation with animated ink bar.

    -

    +

    Selector: [mat-tab-nav-bar] @@ -891,9 +641,9 @@

    Decorates the ng-template tags and reads out the template from it.

    Selector: - mat-tab-nav-panel + [matTabContent] -

    Exported as: -matTabNavPanel
    Properties
    +

    Properties
    @@ -1126,13 +1103,11 @@ - + @@ -1147,20 +1122,26 @@

    Link inside a mat-tab-nav-bar.

    + + extends + + CdkPortal + + + +

    Used to flag tab labels for use with the portal directive

    Selector: - [mat-tab-link] + [mat-tab-label] - [matTabLink] + [matTabLabel] -

    Exported as: -matTabLink
    Properties
    +

    Properties
    Name
    - @Input()

    - id: string +

    + template: inject<TemplateRef<any>>(TemplateRef)

    Unique id for the tab panel.

    -
    @@ -1170,12 +1151,11 @@ - - @@ -1184,12 +1164,11 @@ - - @@ -1198,12 +1177,11 @@ - - @@ -1212,13 +1190,11 @@ - - + @@ -1226,12 +1202,11 @@ - - @@ -1241,10 +1216,11 @@ - + @@ -1259,12 +1235,14 @@
    Methods
    Name
    @Input({ transform: booleanAttribute }) -

    - active: boolean +

    + context: C

    Whether the link is active.

    +

    Contextual data to be passed in to the embedded view.

    @Input({ transform: booleanAttribute }) -

    - disableRipple: boolean +

    + injector: Injector

    Whether ripples are disabled on the tab link.

    +

    The injector to use for the embedded view.

    @Input({ transform: booleanAttribute }) -

    - disabled: boolean +

    + isAttached: boolean

    Whether the tab link is disabled.

    +

    Whether this portal is attached to a host.

    @Input({ transform: booleanAttribute }) -

    - fitInkBarToContent: boolean +

    + origin: ElementRef

    Whether the ink bar should fit to the entire tab or just its content.

    -
    - @Input()

    - id: string +

    + templateRef: TemplateRef<C>

    Unique id for the tab.

    +

    The embedded template that will be used to instantiate an embedded View in the host.

    - elementRef: inject(ElementRef) + viewContainerRef: ViewContainerRef

    Reference to the ViewContainer into which the template will be stamped out.

    +
    - @@ -1276,8 +1254,8 @@
    Methods
    -
    activateInkBar + attach
    -

    Aligns the ink bar to the current item.

    +

    Attach the portal to the provided PortalOutlet. +When a context is provided it will override the context property of the TemplatePortal +instance.

    - previousIndicatorClientRect?

    - DOMRect + host

    + PortalOutlet

    @@ -1285,7 +1263,34 @@

    Methods

    + + + +

    + context

    + C = this.context + + +

    + +

    + + + + + Returns + + + + + EmbeddedViewRef<C> + + +

    + +

    + + @@ -1294,15 +1299,10 @@
    Methods
    - - - -
    deactivateInkBar + detach
    -

    Removes the ink bar from the current item.

    - -
    + @@ -1311,15 +1311,34 @@
    Methods
    - -
    focus + setAttachedHost
    -

    Focuses the tab link.

    +

    Sets the PortalOutlet reference without performing attach(). This is used directly by +the PortalOutlet when it is performing an attach() or detach().

    + + + Parameters + + + + + +

    + host

    + PortalOutlet + + +

    + +

    + + + diff --git a/docs-content/api-docs/material-timepicker.html b/docs-content/api-docs/material-timepicker.html index ceea515f8a..c7db5f2684 100755 --- a/docs-content/api-docs/material-timepicker.html +++ b/docs-content/api-docs/material-timepicker.html @@ -27,9 +27,9 @@

    -

    @@ -40,7 +40,7 @@

    Renders out a listbox that can be used to select a time of day. Intended to be used together with MatTimepickerInput.

    -

    +

    Selector: mat-timepicker @@ -292,18 +292,18 @@

    Methods
    -

    Input that can be used to enter time and connect to a mat-timepicker.

    -

    +

    Button that can be used to open a mat-timepicker.

    +

    Selector: - input[matTimepicker] + mat-timepicker-toggle

    Exported as: -matTimepickerInput
    Properties
    +matTimepickerToggle
    Properties
    @@ -314,10 +314,12 @@ - @@ -327,11 +329,12 @@ - @@ -341,11 +344,10 @@ - @@ -355,10 +357,10 @@ - @@ -368,10 +370,10 @@ - @@ -387,29 +389,13 @@
    Methods
    Name

    - disabled: Signal<boolean> + ariaLabel: input<string | undefined>(undefined, { + alias: 'aria-label', +})

    Whether the input is disabled.

    +

    Screen-reader label for the button.

    - max: InputSignalWithTransform<D | null, unknown> + ariaLabelledby: input<string | undefined>(undefined, { + alias: 'aria-labelledby', +})

    Maximum time that can be selected or typed in. Can be either -a date object (only time will be used) or a valid time string.

    +

    Screen-reader labelled by id for the button.

    - min: InputSignalWithTransform<D | null, unknown> + disableRipple: InputSignalWithTransform<boolean, unknown>

    Minimum time that can be selected or typed in. Can be either -a date object (only time will be used) or a valid time string.

    +

    Whether ripples on the toggle should be disabled.

    - timepicker: InputSignal<MatTimepicker<D>> + disabled: InputSignalWithTransform<boolean, unknown>

    Timepicker that the input is associated with.

    +

    Whether the toggle button is disabled.

    - value: ModelSignal<D | null> + timepicker: InputSignal<MatTimepicker<D>>

    Current value of the input.

    +

    Timepicker instance that the button will toggle.

    - - - - -
    focus -
    -

    Focuses the input.

    - -
    - - - - - - - - - @@ -419,7 +405,7 @@
    Methods
    - + + + @@ -140,7 +153,8 @@
    Methods
    @@ -155,7 +169,8 @@
    Methods
    getOverlayOrigin + getAriaLabel
    -

    Gets the element to which the timepicker popup should be attached.

    +

    Checks for ariaLabelledby and if empty uses custom +aria-label or defaultAriaLabel if neither is provided.

    - ElementRef<HTMLElement> + string | null

    @@ -433,21 +419,25 @@

    Methods
    + -

    Button that can be used to open a mat-timepicker.

    +

    Input that can be used to enter time and connect to a mat-timepicker.

    Selector: - mat-timepicker-toggle + input[matTimepicker]

    Exported as: -matTimepickerToggle
    Properties
    +matTimepickerInput
    Properties
    @@ -458,12 +448,10 @@ - @@ -473,12 +461,11 @@ - @@ -488,10 +475,11 @@ - @@ -501,10 +489,10 @@ - @@ -514,10 +502,10 @@ - @@ -533,13 +521,29 @@
    Methods
    Name

    - ariaLabel: input<string | undefined>(undefined, { - alias: 'aria-label', -}) + disabled: Signal<boolean>

    Screen-reader label for the button.

    +

    Whether the input is disabled.

    - ariaLabelledby: input<string | undefined>(undefined, { - alias: 'aria-labelledby', -}) + max: InputSignalWithTransform<D | null, unknown>

    Screen-reader labelled by id for the button.

    +

    Maximum time that can be selected or typed in. Can be either +a date object (only time will be used) or a valid time string.

    - disableRipple: InputSignalWithTransform<boolean, unknown> + min: InputSignalWithTransform<D | null, unknown>

    Whether ripples on the toggle should be disabled.

    +

    Minimum time that can be selected or typed in. Can be either +a date object (only time will be used) or a valid time string.

    - disabled: InputSignalWithTransform<boolean, unknown> + timepicker: InputSignal<MatTimepicker<D>>

    Whether the toggle button is disabled.

    +

    Timepicker that the input is associated with.

    - timepicker: InputSignal<MatTimepicker<D>> + value: ModelSignal<D | null>

    Timepicker instance that the button will toggle.

    +

    Current value of the input.

    - +
    getAriaLabel + focus
    -

    Checks for ariaLabelledby and if empty uses custom -aria-label or defaultAriaLabel if neither is provided.

    +

    Focuses the input.

    + +
    + + + + + + + + + + + + @@ -549,7 +553,7 @@
    Methods
    - + + + @@ -94,7 +100,8 @@
    Methods
    @@ -109,7 +116,8 @@
    Methods
    getOverlayOrigin +
    +

    Gets the element to which the timepicker popup should be attached.

    - string | null + ElementRef<HTMLElement>

    diff --git a/docs-content/api-docs/material-toolbar-testing.html b/docs-content/api-docs/material-toolbar-testing.html index f971b1e81e..4820163fdd 100755 --- a/docs-content/api-docs/material-toolbar-testing.html +++ b/docs-content/api-docs/material-toolbar-testing.html @@ -80,7 +80,13 @@

    Methods
    getAllChildLoaders
    +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + +
    Parameters

    - +

    The selector for elements in the component's content.

    +

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -126,7 +134,12 @@
    Methods
    getAllHarnesses
    +

    Gets all matching harnesses for the given query within the current harness's content.

    + +
    Parameters

    - +

    The harness query to search for.

    +

    - +

    The list of harness matching the given query.

    +

    @@ -172,7 +187,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -186,7 +207,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -201,7 +223,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -218,7 +241,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -232,7 +260,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -247,7 +276,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -264,7 +294,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -278,7 +313,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -293,7 +329,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -343,7 +380,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -357,7 +400,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -372,7 +416,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-toolbar.html b/docs-content/api-docs/material-toolbar.html index b2f6821820..06c67e52e6 100755 --- a/docs-content/api-docs/material-toolbar.html +++ b/docs-content/api-docs/material-toolbar.html @@ -27,38 +27,18 @@

    -

    -

    - Selector: - - mat-toolbar-row - -

    Exported as: -matToolbarRow - - - - - - - - -

    +

    Selector: mat-toolbar @@ -80,9 +60,9 @@

    + + + +

    + Selector: + + mat-toolbar-row + +

    Exported as: +matToolbarRow + + + + + + diff --git a/docs-content/api-docs/material-tree-testing.html b/docs-content/api-docs/material-tree-testing.html index eae1280679..8d531449c9 100755 --- a/docs-content/api-docs/material-tree-testing.html +++ b/docs-content/api-docs/material-tree-testing.html @@ -149,7 +149,13 @@
    Methods
    getAllChildLoaders - + + +

    Gets a list of HarnessLoader for each element matching the given selector under the current +harness's cotnent that searches for harnesses under that element.

    + + + Parameters @@ -163,7 +169,8 @@
    Methods

    - +

    The selector for elements in the component's content.

    +

    @@ -178,7 +185,8 @@
    Methods

    - +

    A list of HarnessLoader for each element matching the given selector.

    +

    @@ -195,7 +203,12 @@
    Methods
    getAllHarnesses - + + +

    Gets all matching harnesses for the given query within the current harness's content.

    + + + Parameters @@ -209,7 +222,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -224,7 +238,8 @@
    Methods

    - +

    The list of harness matching the given query.

    +

    @@ -241,7 +256,13 @@
    Methods
    getChildLoader - + + +

    Gets a HarnessLoader that searches for harnesses under the first element matching the given +selector within the current harness's content.

    + + + Parameters @@ -255,7 +276,8 @@
    Methods

    - +

    The selector for an element in the component's content.

    +

    @@ -270,7 +292,8 @@
    Methods

    - +

    A HarnessLoader that searches for harnesses under the given selector.

    +

    @@ -287,7 +310,12 @@
    Methods
    getHarness - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -301,7 +329,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -316,7 +345,8 @@
    Methods

    - +

    The first harness matching the given query.

    +

    @@ -333,7 +363,12 @@
    Methods
    getHarnessOrNull - + + +

    Gets the first matching harness for the given query within the current harness's content.

    + + + Parameters @@ -347,7 +382,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -362,7 +398,8 @@
    Methods

    - +

    The first harness matching the given query, or null if none is found.

    +

    @@ -445,7 +482,13 @@
    Methods
    hasHarness - + + +

    Checks whether there is a matching harnesses for the given query within the current harness's +content.

    + + + Parameters @@ -459,7 +502,8 @@
    Methods

    - +

    The harness query to search for.

    +

    @@ -474,7 +518,8 @@
    Methods

    - +

    Whetehr there is matching harnesses for the given query.

    +

    diff --git a/docs-content/api-docs/material-tree.html b/docs-content/api-docs/material-tree.html index dcde2be3f6..00ffe038d0 100755 --- a/docs-content/api-docs/material-tree.html +++ b/docs-content/api-docs/material-tree.html @@ -27,32 +27,32 @@

    -

    -

    Wrapper for the CdkTree node with Material design styles.

    -

    +

    Wrapper for the CdkTable with Material design styles.

    +

    Selector: - mat-tree-node + mat-tree

    Exported as: -matTreeNode
    Properties
    +matTree
    Properties
    @@ -62,29 +62,14 @@ - - - - - - - - - - - @@ -95,24 +80,12 @@ - - - - - - - - - - @@ -121,12 +94,12 @@ - - @@ -135,12 +108,14 @@ - - @@ -149,11 +124,15 @@ - - @@ -163,38 +142,14 @@ - - - - - - - - - - - - - - - - - - - @@ -204,55 +159,15 @@ - - - - - - - - - - - - - - - - - - - @@ -268,15 +183,33 @@
    Methods
    Name
    @Input({ transform: booleanAttribute }) -

    - isDisabled: boolean -

    -

    Whether or not this node is disabled. If it's disabled, then the user won't be able to focus -or activate this node.

    -
    @Input({ transform: booleanAttribute }) -

    - isExpandable: boolean +

    + @Input()

    + childrenAccessor: (dataNode: T) => T[] | Observable<T[]>

    Whether or not this node is expandable.

    -

    If not using FlatTreeControl, or if isExpandable is not provided to -NestedTreeControl, this should be provided for correct node a11y.

    +

    Given a data node, determines what the children of that node are.

    +

    One of levelAccessor or childrenAccessor must be specified, not both. +This is enforced at run-time.

    @Input()

    - isExpanded: boolean -

    -
    @Input('cdkTreeNodeTypeaheadLabel') -

    - typeaheadLabel: string | null + dataSource: DataSource<T> | Observable<T[]> | T[]

    The text used to locate this item during typeahead. If not specified, the textContent will -will be used.

    +

    Provides a stream containing the latest data array to render. Influenced by the tree's +stream of view window (what dataNodes are currently on screen). +Data source can be an observable of data array, or a data array to render.

    - @Output()

    - activation: EventEmitter<T> +

    + @Input()

    + expansionKey: (dataNode: T) => K

    This emits when the node has been programatically activated or activated by keyboard.

    +

    Given a data node, determines the key by which we determine whether or not this node is expanded.

    - @Output()

    - expandedChange: EventEmitter<boolean> +

    + @Input()

    + levelAccessor: (dataNode: T) => number

    This emits when the node's expansion status has been changed.

    +

    Given a data node, determines what tree level the node is at.

    +

    One of levelAccessor or childrenAccessor must be specified, not both. +This is enforced at run-time.

    - data: T +

    + @Input()

    + trackBy: TrackByFunction<T>

    The tree node's data.

    +

    Tracking function that will be used to check the differences in data changes. Used similarly +to ngFor trackBy function. Optimize node operations by identifying a node based on its data +relative to the function to know if a node should be added/removed/moved. +Accepts a function that takes two parameters, index and item.

    - isLeafNode: boolean -

    -

    - level: number -

    -
    @Input({ transform: booleanAttribute }) -
    - Deprecated -

    - disabled: boolean + viewChange: BehaviorSubject<{ + start: number; + end: number; +}>

    Whether the component is disabled.

    +

    Stream containing the latest information on what rows are being displayed on screen. +Can be used by the data source to as a heuristic of what data should be provided.

    - @Input()
    - Deprecated -

    - role: 'treeitem' | 'group' -

    -

    The role of the tree node.

    -
    @Input({ - transform: (value: unknown) => (value == null ? 0 : numberAttribute(value)), - alias: 'tabIndex', -}) -
    - Deprecated -

    - tabIndexInputBinding: number -

    -

    The tabindex of the tree node.

    -
    Deprecated

    - defaultTabIndex: 0 + treeControl: TreeControl<T, K>

    The default tabindex of the tree node.

    +

    The tree controller

    - -
    activate + collapse
    -

    Emits an activation event. Implemented for TreeKeyManagerItem.

    +

    Collapse the data node. If it is already collapsed, does nothing.

    + + + Parameters + + + + + +

    + dataNode

    + T + + +

    + +

    + + + @@ -285,12 +218,12 @@
    Methods
    -
    collapse + collapseAll
    -

    Collapses this data node. Implemented for TreeKeyManagerItem.

    +

    Collapse all data nodes in the tree.

    @@ -302,15 +235,33 @@
    Methods
    - -
    expand + collapseDescendants
    -

    Expands this data node. Implemented for TreeKeyManagerItem.

    +

    Collapse the data node and all its descendants. If it is already collapsed, does nothing.

    + + + Parameters + + + + + +

    + dataNode

    + T + + +

    + +

    + + + @@ -319,15 +270,33 @@
    Methods
    - -
    focus + expand
    -

    Focuses this data node. Implemented for TreeKeyManagerItem.

    +

    Expand the data node. If it is already expanded, does nothing.

    + + + Parameters + + + + + +

    + dataNode

    + T + + +

    + +

    + + + @@ -336,24 +305,50 @@
    Methods
    - - - - + + +
    getChildren + expandAll
    Returns
    +

    Expands all data nodes in the tree.

    + +
    + + + + + + + + + + + + + + + - - + - -
    expandDescendants +
    +

    Expand the data node and all its descendants. If they are already expanded, does nothing.

    + +
    Parameters
    - CdkTreeNode<T, K>[] | Observable<CdkTreeNode<T, K>[]> + +
    +

    + dataNode

    + T
    -

    +

    +

    + + @@ -362,24 +357,73 @@
    Methods
    - - - - + + + + + - - + - -
    getLabel + insertNode
    Returns
    +

    Create the embedded view for the data node template and place it in the correct index location +within the data node view container.

    + +
    Parameters
    - string + +
    +

    + nodeData

    + T
    -

    +

    +

    + + + + +

    + index

    + number + + +

    + +

    + + + + + +

    + viewContainer?

    + ViewContainerRef + + +

    + +

    + + + + + +

    + parentData?

    + T + + +

    + +

    + + + @@ -388,17 +432,40 @@
    Methods
    - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    getParent + isExpanded
    +

    Whether the data node is expanded or collapsed. Returns true if it's expanded.

    + +
    Parameters
    +

    + dataNode

    + T +
    +

    + +

    +
    Returns
    - CdkTreeNode<T, K> | null + boolean

    @@ -414,15 +481,72 @@

    Methods
    - -
    makeFocusable + renderNodeChanges
    -

    Makes the node focusable. Implemented for TreeKeyManagerItem.

    +

    Check for changes made in the data and render each change (node added/removed/moved).

    +
    Parameters
    +

    + data

    + readonly T[] +
    +

    + +

    +
    +

    + dataDiffer

    + IterableDiffer<T> = this._dataDiffer +
    +

    + +

    +
    +

    + viewContainer

    + ViewContainerRef = this._nodeOutlet.viewContainer +
    +

    + +

    +
    +

    + parentData?

    + T +
    +

    + +

    +
    @@ -431,109 +555,101 @@
    Methods
    - -
    unfocus + toggle
    -

    Defocus this data node.

    +

    If the data node is currently expanded, collapse it. Otherwise, expand it.

    - - + + + Parameters + + + + +

    + dataNode

    + T + + +

    + +

    + + + - + - - -

    Wrapper for the CdkTree nested node with Material design styles.

    +

    Wrapper for the CdkTree node with Material design styles.

    Selector: - mat-nested-tree-node + mat-tree-node

    Exported as: -matNestedTreeNode
    Properties
    +matTreeNode
    Properties
    @@ -586,19 +702,6 @@ - - - - - - - - @@ -693,15 +800,16 @@ - @@ -710,16 +818,38 @@ - + + + + + + + + + @@ -916,22 +1046,23 @@
    Methods
    -

    Wrapper for the CdkTree padding with Material design styles.

    +

    Wrapper for the CdkTree node definition with Material design styles. +Captures the node's template and a when predicate that describes when this node should be used.

    Selector: - [matTreeNodePadding] + [matTreeNodeDef]

    Properties
    Name
    @Input('matNestedTreeNode') -

    - node: T -

    -
    @Input('cdkTreeNodeTypeaheadLabel')

    @@ -680,11 +783,15 @@

    - nodeOutlet: QueryList<CdkTreeNodeOutlet> +

    @Input({ transform: booleanAttribute }) +
    + Deprecated +

    + disabled: boolean

    The children node placeholder.

    +

    Whether the component is disabled.

    @Input({ transform: booleanAttribute }) -
    + @Input()
    Deprecated

    - disabled: boolean + role: 'treeitem' | 'group'

    Whether the node is disabled.

    +

    The role of the tree node.

    - @Input()
    @Input({ + transform: (value: unknown) => (value == null ? 0 : numberAttribute(value)), + alias: 'tabIndex', +}) +
    Deprecated

    - role: 'treeitem' | 'group' + tabIndexInputBinding: number

    The role of the tree node.

    +

    The tabindex of the tree node.

    +
    + Deprecated +

    + defaultTabIndex: 0 +

    +

    The default tabindex of the tree node.

    @@ -943,13 +1074,12 @@ - + @@ -957,25 +1087,16 @@ - - - - - - - - - - @@ -991,25 +1112,25 @@

    Wrapper for the CdkTable with Material design styles.

    +

    Wrapper for the CdkTree nested node with Material design styles.

    Selector: - mat-tree + mat-nested-tree-node

    Exported as: -matTree
    Properties
    +matNestedTreeNode
    Properties
    @Input('matTreeNodePaddingIndent') +
    @Input('matTreeNode')

    - indent: number | string + data: T

    The indent for each level. Default number 40px from material design menu sub-menu spec.

    -
    @Input({ alias: 'matTreeNodePadding', transform: numberAttribute }) +
    @Input(matTreeNodeDefWhen)

    - level: number -

    -

    The level of depth of the tree node. The padding will be level * indent pixels.

    -

    - indentUnits: 'px' + when: (index: number, nodeData: T) => boolean

    CSS units used for the indentation value.

    +

    Function that should return true if this node template should be used for the provided node +data and index. If left undefined, this node will be considered the default node template to +use when no other when functions return true for the data. +For every node, there must be at least one when function that passes or an undefined to +default.

    @@ -1019,14 +1140,13 @@ - - @@ -1035,14 +1155,14 @@ - - @@ -1053,11 +1173,10 @@ - + @@ -1065,15 +1184,12 @@ - - + @@ -1081,15 +1197,13 @@ - - @@ -1098,15 +1212,12 @@ - - @@ -1115,197 +1226,121 @@ - - -
    Name
    - @Input()

    - childrenAccessor: (dataNode: T) => T[] | Observable<T[]> +

    @Input({ transform: booleanAttribute }) +

    + isDisabled: boolean

    Given a data node, determines what the children of that node are.

    -

    One of levelAccessor or childrenAccessor must be specified, not both. -This is enforced at run-time.

    +

    Whether or not this node is disabled. If it's disabled, then the user won't be able to focus +or activate this node.

    - @Input()

    - dataSource: DataSource<T> | Observable<T[]> | T[] +

    @Input({ transform: booleanAttribute }) +

    + isExpandable: boolean

    Provides a stream containing the latest data array to render. Influenced by the tree's -stream of view window (what dataNodes are currently on screen). -Data source can be an observable of data array, or a data array to render.

    +

    Whether or not this node is expandable.

    +

    If not using FlatTreeControl, or if isExpandable is not provided to +NestedTreeControl, this should be provided for correct node a11y.

    @Input()

    - expansionKey: (dataNode: T) => K + isExpanded: boolean

    Given a data node, determines the key by which we determine whether or not this node is expanded.

    -
    - @Input()

    - levelAccessor: (dataNode: T) => number +

    @Input('matNestedTreeNode') +

    + node: T

    Given a data node, determines what tree level the node is at.

    -

    One of levelAccessor or childrenAccessor must be specified, not both. -This is enforced at run-time.

    -
    - @Input()

    - trackBy: TrackByFunction<T> +

    @Input('cdkTreeNodeTypeaheadLabel') +

    + typeaheadLabel: string | null

    Tracking function that will be used to check the differences in data changes. Used similarly -to ngFor trackBy function. Optimize node operations by identifying a node based on its data -relative to the function to know if a node should be added/removed/moved. -Accepts a function that takes two parameters, index and item.

    +

    The text used to locate this item during typeahead. If not specified, the textContent will +will be used.

    - viewChange: BehaviorSubject<{ - start: number; - end: number; -}> +

    + @Output()

    + activation: EventEmitter<T>

    Stream containing the latest information on what rows are being displayed on screen. -Can be used by the data source to as a heuristic of what data should be provided.

    +

    This emits when the node has been programatically activated or activated by keyboard.

    - @Input()
    - Deprecated -

    - treeControl: TreeControl<T, K> +

    + @Output()

    + expandedChange: EventEmitter<boolean>

    The tree controller

    +

    This emits when the node's expansion status has been changed.

    + + +

    + data: T +

    + +

    The tree node's data.

    + + -
    Methods
    - - - - - - - - - - - - - - - - - - - -
    collapse -
    -

    Collapse the data node. If it is already collapsed, does nothing.

    + + -
    Parameters
    -

    - dataNode

    - T -
    -

    - -

    -
    + +

    + isLeafNode: boolean +

    + + + - + - - - - - - - -
    collapseAll -
    -

    Collapse all data nodes in the tree.

    - -
    + +

    + level: number +

    + + + - + - - - - - - - - - - - - - - - - - -
    collapseDescendants -
    -

    Collapse the data node and all its descendants. If it is already collapsed, does nothing.

    - -
    Parameters
    -

    - dataNode

    - T -
    -

    - -

    -
    + +

    + nodeOutlet: QueryList<CdkTreeNodeOutlet> +

    + +

    The children node placeholder.

    + + - + - - - - - - - - - - - - - - - - - -
    expand -
    -

    Expand the data node. If it is already expanded, does nothing.

    - -
    Parameters
    -

    - dataNode

    - T -
    -

    - -

    -
    + +
    @Input({ transform: booleanAttribute }) +
    + Deprecated +

    + disabled: boolean +

    + +

    Whether the node is disabled.

    + + - + - - - - - - - + + + - -
    expandAll -
    -

    Expands all data nodes in the tree.

    +
    + @Input()
    + Deprecated +

    + role: 'treeitem' | 'group' +

    +

    The role of the tree node.

    +
    + + + +
    Methods
    - - - - - - - - - - - -
    expandDescendants + activate
    -

    Expand the data node and all its descendants. If they are already expanded, does nothing.

    +

    Emits an activation event. Implemented for TreeKeyManagerItem.

    Parameters
    -

    - dataNode

    - T -
    -

    - -

    -
    + @@ -1314,73 +1349,15 @@
    Methods
    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    insertNode + collapse
    -

    Create the embedded view for the data node template and place it in the correct index location -within the data node view container.

    +

    Collapses this data node. Implemented for TreeKeyManagerItem.

    Parameters
    -

    - nodeData

    - T -
    -

    - -

    -
    -

    - index

    - number -
    -

    - -

    -
    -

    - viewContainer?

    - ViewContainerRef -
    -

    - -

    -
    -

    - parentData?

    - T -
    -

    - -

    -
    + @@ -1389,40 +1366,51 @@
    Methods
    - - - - - - +
    isExpanded + expand
    -

    Whether the data node is expanded or collapsed. Returns true if it's expanded.

    +

    Expands this data node. Implemented for TreeKeyManagerItem.

    Parameters
    + + - - -

    - dataNode

    - T - - -

    - -

    + + + + + + + + + - +
    focus +
    +

    Focuses this data node. Implemented for TreeKeyManagerItem.

    +
    + + + + + + + + + + -
    getChildren +
    Returns
    - boolean + CdkTreeNode<T, K>[] | Observable<CdkTreeNode<T, K>[]>

    @@ -1438,72 +1426,50 @@

    Methods
    - - - - - - + + + - - - - - - - - - - - - - + - - +
    renderNodeChanges + getLabel
    -

    Check for changes made in the data and render each change (node added/removed/moved).

    - -
    Parameters
    Returns
    -

    - data

    - readonly T[] -
    -

    - -

    -
    -

    - dataDiffer

    - IterableDiffer<T> = this._dataDiffer -
    -

    - -

    -
    -

    - viewContainer

    - ViewContainerRef = this._nodeOutlet.viewContainer +
    + string -

    +

    +

    + + -
    -

    - parentData?

    - T + + + + + + + + + + + + + + - - -
    getParent +
    Returns
    + CdkTreeNode<T, K> | null -

    +

    +

    +
    @@ -1512,33 +1478,15 @@
    Methods
    - - - - - - - - - - - -
    toggle + makeFocusable
    -

    If the data node is currently expanded, collapse it. Otherwise, expand it.

    +

    Makes the node focusable. Implemented for TreeKeyManagerItem.

    Parameters
    -

    - dataNode

    - T -
    -

    - -

    -
    + @@ -1547,37 +1495,93 @@
    Methods
    - - - - - - +
    toggleDescendants + unfocus
    -

    If the data node is currently expanded, collapse it and all its descendants. -Otherwise, expand it and all its descendants.

    +

    Defocus this data node.

    Parameters
    + + - - -

    - dataNode

    - T - - -

    - -

    - - - + + + + +

    Wrapper for the CdkTree padding with Material design styles.

    +

    + Selector: + + [matTreeNodePadding] +

    Properties
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameDescription
    @Input('matTreeNodePaddingIndent') +

    + indent: number | string +

    +

    The indent for each level. Default number 40px from material design menu sub-menu spec.

    +
    @Input({ alias: 'matTreeNodePadding', transform: numberAttribute }) +

    + level: number +

    +

    The level of depth of the tree node. The padding will be level * indent pixels.

    +

    + indentUnits: 'px' +

    +

    CSS units used for the indentation value.

    +
    + + + diff --git a/docs-content/examples-highlighted/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example-ts.html b/docs-content/examples-highlighted/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example-ts.html index cb44cd8137..2d2f3b78fa 100755 --- a/docs-content/examples-highlighted/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example-ts.html +++ b/docs-content/examples-highlighted/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example-ts.html @@ -6,8 +6,9 @@ ViewContainerRef, OnDestroy, inject, + Injector, } from '@angular/core'; -import {Overlay, OverlayRef} from '@angular/cdk/overlay'; +import {createGlobalPositionStrategy, createOverlayRef, OverlayRef} from '@angular/cdk/overlay'; import {TemplatePortal} from '@angular/cdk/portal'; import {CdkDrag} from '@angular/cdk/drag-drop'; @@ -21,7 +22,7 @@ imports: [CdkDrag], }) export class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy { - private _overlay = inject(Overlay); + private _injector = inject(Injector); private _viewContainerRef = inject(ViewContainerRef); @ViewChild(TemplateRef) _dialogTemplate: TemplateRef<any>; @@ -30,8 +31,10 @@ ngAfterViewInit() { this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef); - this._overlayRef = this._overlay.create({ - positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(), + this._overlayRef = createOverlayRef(this._injector, { + positionStrategy: createGlobalPositionStrategy(this._injector) + .centerHorizontally() + .centerVertically(), hasBackdrop: true, }); this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach()); diff --git a/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example-html.html b/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example-html.html index e088d648e7..8308d57d0e 100755 --- a/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example-html.html +++ b/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example-html.html @@ -13,5 +13,5 @@ <mat-hint>Autofilled!</mat-hint> } </mat-form-field> - <button mat-raised-button>Submit</button> + <button matButton="elevated">Submit</button> </form> diff --git a/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example-html.html b/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example-html.html index d4474b28a6..3486cbc6c4 100755 --- a/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example-html.html +++ b/docs-content/examples-highlighted/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example-html.html @@ -13,5 +13,5 @@ <mat-hint>Autofilled!</mat-hint> } </mat-form-field> - <button mat-raised-button>Submit</button> + <button matButton="elevated">Submit</button> </form> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-html.html index f07f12f72e..aa32a8699b 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-html.html @@ -20,7 +20,7 @@ @if (!node.areChildrenLoading() && node.isExpandable()) { <button - mat-icon-button + matIconButton cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.raw.name"> <mat-icon class="mat-icon-rtl-mirror"> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-ts.html index 22f9dfc0e7..03b88bcaaf 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-complex/cdk-tree-complex-example-ts.html @@ -14,40 +14,6 @@ children?: string[]; } -const TREE_DATA: Map<string, BackendData> = new Map( - [ - { - id: '1', - name: 'Fruit', - children: ['1-1', '1-2', '1-3'], - }, - {id: '1-1', name: 'Apple', parent: '1'}, - {id: '1-2', name: 'Banana', parent: '1'}, - {id: '1-3', name: 'Fruit Loops', parent: '1'}, - { - id: '2', - name: 'Vegetables', - children: ['2-1', '2-2'], - }, - { - id: '2-1', - name: 'Green', - parent: '2', - children: ['2-1-1', '2-1-2'], - }, - { - id: '2-2', - name: 'Orange', - parent: '2', - children: ['2-2-1', '2-2-2'], - }, - {id: '2-1-1', name: 'Broccoli', parent: '2-1'}, - {id: '2-1-2', name: 'Brussel sprouts', parent: '2-1'}, - {id: '2-2-1', name: 'Pumpkins', parent: '2-2'}, - {id: '2-2-2', name: 'Carrots', parent: '2-2'}, - ].map(datum => [datum.id, datum]), -); - class FakeDataBackend { private _getRandomDelayTime() { // anywhere from 100 to 500ms. @@ -56,16 +22,16 @@ getChildren(id: string): Observable<BackendData[]> { // first, find the specified ID in our tree - const item = TREE_DATA.get(id); + const item = EXAMPLE_DATA.get(id); const children = item?.children ?? []; - return observableOf(children.map(childId => TREE_DATA.get(childId)!)).pipe( + return observableOf(children.map(childId => EXAMPLE_DATA.get(childId)!)).pipe( delay(this._getRandomDelayTime()), ); } getRoots(): Observable<BackendData[]> { - return observableOf([...TREE_DATA.values()].filter(datum => !datum.parent)).pipe( + return observableOf([...EXAMPLE_DATA.values()].filter(datum => !datum.parent)).pipe( delay(this._getRandomDelayTime()), ); } @@ -268,7 +234,7 @@ const transformFn = sourcesAndTransform[sourcesAndTransform.length - 1] as TransformFn<T, U>; return combineLatest([...sources, this._state]).pipe( - map(args => transformFn(...(args as [...ObservedValuesOf<T>, State]))), + map(args => transformFn(...(args as unknown as [...ObservedValuesOf<T>, State]))), shareReplay({refCount: true, bufferSize: 1}), ); } @@ -305,3 +271,37 @@ } } } + +const EXAMPLE_DATA = new Map<string, BackendData>( + [ + { + id: '1', + name: 'Fruit', + children: ['1-1', '1-2', '1-3'], + }, + {id: '1-1', name: 'Apple', parent: '1'}, + {id: '1-2', name: 'Banana', parent: '1'}, + {id: '1-3', name: 'Fruit Loops', parent: '1'}, + { + id: '2', + name: 'Vegetables', + children: ['2-1', '2-2'], + }, + { + id: '2-1', + name: 'Green', + parent: '2', + children: ['2-1-1', '2-1-2'], + }, + { + id: '2-2', + name: 'Orange', + parent: '2', + children: ['2-2-1', '2-2-2'], + }, + {id: '2-1-1', name: 'Broccoli', parent: '2-1'}, + {id: '2-1-2', name: 'Brussel sprouts', parent: '2-1'}, + {id: '2-2-1', name: 'Pumpkins', parent: '2-2'}, + {id: '2-2-2', name: 'Carrots', parent: '2-2'}, + ].map(datum => [datum.id, datum]), +); diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-html.html index e65e3b61d6..58a843a063 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-html.html @@ -5,7 +5,7 @@ [isDisabled]="!shouldRender(node)" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -17,7 +17,7 @@ (expandedChange)="node.isExpanded = $event" class="example-tree-node" tabindex="0"> - <button mat-icon-button cdkTreeNodeToggle + <button matIconButton cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name" [style.visibility]="node.expandable ? 'visible' : 'hidden'"> <mat-icon class="mat-icon-rtl-mirror"> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-ts.html index 816a5242ed..2f1cf41857 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example-ts.html @@ -28,64 +28,6 @@ import {Subject, isObservable, Observable} from 'rxjs'; import {take} from 'rxjs/operators'; -const TREE_DATA: ExampleFlatNode[] = [ - { - name: 'Fruit', - expandable: true, - level: 0, - }, - { - name: 'Apple', - expandable: false, - level: 1, - }, - { - name: 'Banana', - expandable: false, - level: 1, - }, - { - name: 'Fruit loops', - expandable: false, - level: 1, - }, - { - name: 'Vegetables', - expandable: true, - level: 0, - }, - { - name: 'Green', - expandable: true, - level: 1, - }, - { - name: 'Broccoli', - expandable: false, - level: 2, - }, - { - name: 'Brussels sprouts', - expandable: false, - level: 2, - }, - { - name: 'Orange', - expandable: true, - level: 1, - }, - { - name: 'Pumpkins', - expandable: false, - level: 2, - }, - { - name: 'Carrots', - expandable: false, - level: 2, - }, -]; - /** Flat node with expandable and level information */ interface ExampleFlatNode { expandable: boolean; @@ -379,16 +321,16 @@ node => node.expandable, ); - dataSource = new ArrayDataSource(TREE_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_: number, node: ExampleFlatNode) => node.expandable; getParentNode(node: ExampleFlatNode) { - const nodeIndex = TREE_DATA.indexOf(node); + const nodeIndex = EXAMPLE_DATA.indexOf(node); for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; } } @@ -406,3 +348,61 @@ return true; } } + +const EXAMPLE_DATA: ExampleFlatNode[] = [ + { + name: 'Fruit', + expandable: true, + level: 0, + }, + { + name: 'Apple', + expandable: false, + level: 1, + }, + { + name: 'Banana', + expandable: false, + level: 1, + }, + { + name: 'Fruit loops', + expandable: false, + level: 1, + }, + { + name: 'Vegetables', + expandable: true, + level: 0, + }, + { + name: 'Green', + expandable: true, + level: 1, + }, + { + name: 'Broccoli', + expandable: false, + level: 2, + }, + { + name: 'Brussels sprouts', + expandable: false, + level: 2, + }, + { + name: 'Orange', + expandable: true, + level: 1, + }, + { + name: 'Pumpkins', + expandable: false, + level: 2, + }, + { + name: 'Carrots', + expandable: false, + level: 2, + }, +]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-data-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-data-ts.html deleted file mode 100755 index 5e16f4a840..0000000000 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-data-ts.html +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -export interface NestedFoodNode { - name: string; - children?: NestedFoodNode[]; -} - -export const NESTED_DATA: NestedFoodNode[] = [ - { - name: 'Fruit', - children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], - }, - { - name: 'Orange', - children: [{name: 'Pumpkins'}, {name: 'Carrots'}], - }, - ], - }, -]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-html.html index 9fd849764b..2cbd62a271 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-html.html @@ -5,7 +5,7 @@ [isDisabled]="!shouldRender(node)" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -16,7 +16,7 @@ [isDisabled]="!shouldRender(node)" [isExpandable]="true" class="example-tree-node"> - <button mat-icon-button cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> + <button matIconButton cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}} </mat-icon> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-ts.html index 41050ab71d..bd9b901cb3 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-ts.html @@ -5,7 +5,15 @@ import {MatIconModule} from '@angular/material/icon'; import {timer} from 'rxjs'; import {mapTo} from 'rxjs/operators'; -import {NestedFoodNode, NESTED_DATA} from './cdk-tree-flat-children-accessor-example-data'; + +/** + * Food data with nested structure. + * Each node has a name and an optional list of children. + */ +interface NestedFoodNode { + name: string; + children?: NestedFoodNode[]; +} function flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] { const flattenedNodes = []; @@ -34,12 +42,12 @@ childrenAccessor = (dataNode: NestedFoodNode) => timer(100).pipe(mapTo(dataNode.children ?? [])); - dataSource = new ArrayDataSource(NESTED_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_: number, node: NestedFoodNode) => !!node.children?.length; getParentNode(node: NestedFoodNode) { - for (const parent of flattenNodes(NESTED_DATA)) { + for (const parent of flattenNodes(EXAMPLE_DATA)) { if (parent.children?.includes(node)) { return parent; } @@ -59,3 +67,23 @@ return true; } } + +const EXAMPLE_DATA: NestedFoodNode[] = [ + { + name: 'Fruit', + children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], + }, + { + name: 'Vegetables', + children: [ + { + name: 'Green', + children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], + }, + { + name: 'Orange', + children: [{name: 'Pumpkins'}, {name: 'Carrots'}], + }, + ], + }, +]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-data-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-data-ts.html deleted file mode 100755 index 7401401bd7..0000000000 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-data-ts.html +++ /dev/null @@ -1,65 +0,0 @@ -/** Flat node with expandable and level information */ -export interface FlatFoodNode { - expandable: boolean; - name: string; - level: number; - isExpanded?: boolean; -} - -export const FLAT_DATA: FlatFoodNode[] = [ - { - name: 'Fruit', - expandable: true, - level: 0, - }, - { - name: 'Apple', - expandable: false, - level: 1, - }, - { - name: 'Banana', - expandable: false, - level: 1, - }, - { - name: 'Fruit loops', - expandable: false, - level: 1, - }, - { - name: 'Vegetables', - expandable: true, - level: 0, - }, - { - name: 'Green', - expandable: true, - level: 1, - }, - { - name: 'Broccoli', - expandable: false, - level: 2, - }, - { - name: 'Brussels sprouts', - expandable: false, - level: 2, - }, - { - name: 'Orange', - expandable: true, - level: 1, - }, - { - name: 'Pumpkins', - expandable: false, - level: 2, - }, - { - name: 'Carrots', - expandable: false, - level: 2, - }, -]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-html.html index 9f68e3ce83..a3cc93e1b8 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-html.html @@ -5,7 +5,7 @@ [isDisabled]="!shouldRender(node)" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -16,7 +16,7 @@ [isDisabled]="!shouldRender(node)" [isExpandable]="node.expandable" class="example-tree-node"> - <button mat-icon-button cdkTreeNodeToggle + <button matIconButton cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name" [style.visibility]="node.expandable ? 'visible' : 'hidden'"> <mat-icon class="mat-icon-rtl-mirror"> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-ts.html index bf0a1f5ec1..b1d40a34a3 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-ts.html @@ -3,7 +3,14 @@ import {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core'; import {MatButtonModule} from '@angular/material/button'; import {MatIconModule} from '@angular/material/icon'; -import {FlatFoodNode, FLAT_DATA} from './cdk-tree-flat-level-accessor-example-data'; + +/** Flat node with expandable and level information */ +interface FlatFoodNode { + expandable: boolean; + name: string; + level: number; + isExpanded?: boolean; +} /** * @title Tree with flat nodes @@ -21,18 +28,18 @@ levelAccessor = (dataNode: FlatFoodNode) => dataNode.level; - dataSource = new ArrayDataSource(FLAT_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_: number, node: FlatFoodNode) => node.expandable; getParentNode(node: FlatFoodNode) { - const nodeIndex = FLAT_DATA.indexOf(node); + const nodeIndex = EXAMPLE_DATA.indexOf(node); // Determine the node's parent by finding the first preceding node that's // one level shallower. for (let i = nodeIndex - 1; i >= 0; i--) { - if (FLAT_DATA[i].level === node.level - 1) { - return FLAT_DATA[i]; + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; } } @@ -45,3 +52,61 @@ return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } } + +const EXAMPLE_DATA: FlatFoodNode[] = [ + { + name: 'Fruit', + expandable: true, + level: 0, + }, + { + name: 'Apple', + expandable: false, + level: 1, + }, + { + name: 'Banana', + expandable: false, + level: 1, + }, + { + name: 'Fruit loops', + expandable: false, + level: 1, + }, + { + name: 'Vegetables', + expandable: true, + level: 0, + }, + { + name: 'Green', + expandable: true, + level: 1, + }, + { + name: 'Broccoli', + expandable: false, + level: 2, + }, + { + name: 'Brussels sprouts', + expandable: false, + level: 2, + }, + { + name: 'Orange', + expandable: true, + level: 1, + }, + { + name: 'Pumpkins', + expandable: false, + level: 2, + }, + { + name: 'Carrots', + expandable: false, + level: 2, + }, +]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-html.html index bec742865b..5cfc91cc3a 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-html.html @@ -5,7 +5,7 @@ [isDisabled]="!shouldRender(node)" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -15,7 +15,7 @@ [isDisabled]="!shouldRender(node)" (expandedChange)="node.isExpanded = $event" class="example-tree-node"> - <button mat-icon-button cdkTreeNodeToggle + <button matIconButton cdkTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name" [style.visibility]="node.expandable ? 'visible' : 'hidden'"> <mat-icon class="mat-icon-rtl-mirror"> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-ts.html index 2c46edf14b..6be5062b21 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-flat/cdk-tree-flat-example-ts.html @@ -4,7 +4,59 @@ import {MatIconModule} from '@angular/material/icon'; import {MatButtonModule} from '@angular/material/button'; -const TREE_DATA: ExampleFlatNode[] = [ +/** Flat node with expandable and level information */ +interface ExampleFlatNode { + expandable: boolean; + name: string; + level: number; + isExpanded?: boolean; +} + +/** + * @title Tree with flat nodes + */ +@Component({ + selector: 'cdk-tree-flat-example', + templateUrl: 'cdk-tree-flat-example.html', + styleUrl: 'cdk-tree-flat-example.css', + imports: [CdkTreeModule, MatButtonModule, MatIconModule], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class CdkTreeFlatExample { + treeControl = new FlatTreeControl<ExampleFlatNode>( + node => node.level, + node => node.expandable, + ); + + dataSource = new ArrayDataSource(EXAMPLE_DATA); + + hasChild = (_: number, node: ExampleFlatNode) => node.expandable; + + getParentNode(node: ExampleFlatNode) { + const nodeIndex = EXAMPLE_DATA.indexOf(node); + + for (let i = nodeIndex - 1; i >= 0; i--) { + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; + } + } + + return null; + } + + shouldRender(node: ExampleFlatNode) { + let parent = this.getParentNode(node); + while (parent) { + if (!parent.isExpanded) { + return false; + } + parent = this.getParentNode(parent); + } + return true; + } +} + +const EXAMPLE_DATA: ExampleFlatNode[] = [ { name: 'Fruit', expandable: true, @@ -61,55 +113,3 @@ level: 2, }, ]; - -/** Flat node with expandable and level information */ -interface ExampleFlatNode { - expandable: boolean; - name: string; - level: number; - isExpanded?: boolean; -} - -/** - * @title Tree with flat nodes - */ -@Component({ - selector: 'cdk-tree-flat-example', - templateUrl: 'cdk-tree-flat-example.html', - styleUrl: 'cdk-tree-flat-example.css', - imports: [CdkTreeModule, MatButtonModule, MatIconModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class CdkTreeFlatExample { - treeControl = new FlatTreeControl<ExampleFlatNode>( - node => node.level, - node => node.expandable, - ); - - dataSource = new ArrayDataSource(TREE_DATA); - - hasChild = (_: number, node: ExampleFlatNode) => node.expandable; - - getParentNode(node: ExampleFlatNode) { - const nodeIndex = TREE_DATA.indexOf(node); - - for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; - } - } - - return null; - } - - shouldRender(node: ExampleFlatNode) { - let parent = this.getParentNode(node); - while (parent) { - if (!parent.isExpanded) { - return false; - } - parent = this.getParentNode(parent); - } - return true; - } -} diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-data-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-data-ts.html deleted file mode 100755 index 5e16f4a840..0000000000 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-data-ts.html +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -export interface NestedFoodNode { - name: string; - children?: NestedFoodNode[]; -} - -export const NESTED_DATA: NestedFoodNode[] = [ - { - name: 'Fruit', - children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], - }, - { - name: 'Orange', - children: [{name: 'Pumpkins'}, {name: 'Carrots'}], - }, - ], - }, -]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-html.html index 093181cf14..2736b4ec15 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-html.html @@ -3,7 +3,7 @@ <cdk-nested-tree-node #treeNode="cdkNestedTreeNode" *cdkTreeNodeDef="let node" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-nested-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -13,7 +13,7 @@ isExpandable class="example-tree-node"> <button - mat-icon-button + matIconButton class="example-toggle" [attr.aria-label]="'Toggle ' + node.name" cdkTreeNodeToggle> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-ts.html index 4497198168..3703a9ded3 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-ts.html @@ -3,7 +3,15 @@ import {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core'; import {MatButtonModule} from '@angular/material/button'; import {MatIconModule} from '@angular/material/icon'; -import {NestedFoodNode, NESTED_DATA} from './cdk-tree-nested-children-accessor-example-data'; + +/** + * Food data with nested structure. + * Each node has a name and an optional list of children. + */ +interface NestedFoodNode { + name: string; + children?: NestedFoodNode[]; +} function flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] { const flattenedNodes = []; @@ -31,12 +39,12 @@ childrenAccessor = (dataNode: NestedFoodNode) => dataNode.children ?? []; - dataSource = new ArrayDataSource(NESTED_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_: number, node: NestedFoodNode) => !!node.children && node.children.length > 0; getParentNode(node: NestedFoodNode) { - for (const parent of flattenNodes(NESTED_DATA)) { + for (const parent of flattenNodes(EXAMPLE_DATA)) { if (parent.children?.includes(node)) { return parent; } @@ -51,3 +59,23 @@ return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } } + +const EXAMPLE_DATA: NestedFoodNode[] = [ + { + name: 'Fruit', + children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], + }, + { + name: 'Vegetables', + children: [ + { + name: 'Green', + children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], + }, + { + name: 'Orange', + children: [{name: 'Pumpkins'}, {name: 'Carrots'}], + }, + ], + }, +]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-data-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-data-ts.html deleted file mode 100755 index 7401401bd7..0000000000 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-data-ts.html +++ /dev/null @@ -1,65 +0,0 @@ -/** Flat node with expandable and level information */ -export interface FlatFoodNode { - expandable: boolean; - name: string; - level: number; - isExpanded?: boolean; -} - -export const FLAT_DATA: FlatFoodNode[] = [ - { - name: 'Fruit', - expandable: true, - level: 0, - }, - { - name: 'Apple', - expandable: false, - level: 1, - }, - { - name: 'Banana', - expandable: false, - level: 1, - }, - { - name: 'Fruit loops', - expandable: false, - level: 1, - }, - { - name: 'Vegetables', - expandable: true, - level: 0, - }, - { - name: 'Green', - expandable: true, - level: 1, - }, - { - name: 'Broccoli', - expandable: false, - level: 2, - }, - { - name: 'Brussels sprouts', - expandable: false, - level: 2, - }, - { - name: 'Orange', - expandable: true, - level: 1, - }, - { - name: 'Pumpkins', - expandable: false, - level: 2, - }, - { - name: 'Carrots', - expandable: false, - level: 2, - }, -]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-html.html index 8d1653b3c9..9e47f97d2e 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-html.html @@ -3,7 +3,7 @@ <cdk-nested-tree-node #treeNode="cdkNestedTreeNode" *cdkTreeNodeDef="let node" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-nested-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -14,7 +14,7 @@ isExpandable class="example-tree-node"> <button - mat-icon-button + matIconButton class="example-toggle" [attr.aria-label]="'Toggle ' + node.name" cdkTreeNodeToggle> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-ts.html index ee8faf2d08..59e9682a56 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-ts.html @@ -3,7 +3,14 @@ import {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core'; import {MatButtonModule} from '@angular/material/button'; import {MatIconModule} from '@angular/material/icon'; -import {FLAT_DATA, FlatFoodNode} from './cdk-tree-nested-level-accessor-example-data'; + +/** Flat node with expandable and level information */ +interface FlatFoodNode { + expandable: boolean; + name: string; + level: number; + isExpanded?: boolean; +} /** * @title Tree with nested nodes and level accessor @@ -20,18 +27,18 @@ levelAccessor = (dataNode: FlatFoodNode) => dataNode.level; - dataSource = new ArrayDataSource(FLAT_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_: number, node: FlatFoodNode) => node.expandable; getParentNode(node: FlatFoodNode) { - const nodeIndex = FLAT_DATA.indexOf(node); + const nodeIndex = EXAMPLE_DATA.indexOf(node); // Determine the node's parent by finding the first preceding node that's // one level shallower. for (let i = nodeIndex - 1; i >= 0; i--) { - if (FLAT_DATA[i].level === node.level - 1) { - return FLAT_DATA[i]; + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; } } @@ -44,3 +51,61 @@ return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } } + +const EXAMPLE_DATA: FlatFoodNode[] = [ + { + name: 'Fruit', + expandable: true, + level: 0, + }, + { + name: 'Apple', + expandable: false, + level: 1, + }, + { + name: 'Banana', + expandable: false, + level: 1, + }, + { + name: 'Fruit loops', + expandable: false, + level: 1, + }, + { + name: 'Vegetables', + expandable: true, + level: 0, + }, + { + name: 'Green', + expandable: true, + level: 1, + }, + { + name: 'Broccoli', + expandable: false, + level: 2, + }, + { + name: 'Brussels sprouts', + expandable: false, + level: 2, + }, + { + name: 'Orange', + expandable: true, + level: 1, + }, + { + name: 'Pumpkins', + expandable: false, + level: 2, + }, + { + name: 'Carrots', + expandable: false, + level: 2, + }, +]; diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-html.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-html.html index b79a2aee1c..55c002c4d3 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-html.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-html.html @@ -3,7 +3,7 @@ <cdk-nested-tree-node #treeNode="cdkNestedTreeNode" *cdkTreeNodeDef="let node" class="example-tree-node"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </cdk-nested-tree-node> <!-- This is the tree node template for expandable nodes --> @@ -13,7 +13,7 @@ isExpandable class="example-tree-node"> <button - mat-icon-button + matIconButton class="example-toggle" [attr.aria-label]="'Toggle ' + node.name" cdkTreeNodeToggle> diff --git a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-ts.html b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-ts.html index a18d0db6fd..0d1bafb845 100755 --- a/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-ts.html +++ b/docs-content/examples-highlighted/cdk/tree/cdk-tree-nested/cdk-tree-nested-example-ts.html @@ -13,7 +13,24 @@ children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ +/** + * @title Tree with nested nodes + */ +@Component({ + selector: 'cdk-tree-nested-example', + templateUrl: 'cdk-tree-nested-example.html', + styleUrl: 'cdk-tree-nested-example.css', + imports: [CdkTreeModule, MatButtonModule, MatIconModule], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class CdkTreeNestedExample { + treeControl = new NestedTreeControl<FoodNode>(node => node.children); + dataSource = new ArrayDataSource(EXAMPLE_DATA); + + hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; +} + +const EXAMPLE_DATA: FoodNode[] = [ { name: 'Fruit', children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], @@ -32,20 +49,3 @@ ], }, ]; - -/** - * @title Tree with nested nodes - */ -@Component({ - selector: 'cdk-tree-nested-example', - templateUrl: 'cdk-tree-nested-example.html', - styleUrl: 'cdk-tree-nested-example.css', - imports: [CdkTreeModule, MatButtonModule, MatIconModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class CdkTreeNestedExample { - treeControl = new NestedTreeControl<FoodNode>(node => node.children); - dataSource = new ArrayDataSource(TREE_DATA); - - hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; -} diff --git a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example-html.html b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example-html.html index fc8def62c1..f21fde39f4 100755 --- a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example-html.html +++ b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example-html.html @@ -22,9 +22,9 @@ </div> <div mat-edit-actions> - <button mat-button type="submit">Confirm</button> - <button mat-button cdkEditRevert>Revert</button> - <button mat-button cdkEditClose>Close</button> + <button matButton type="submit">Confirm</button> + <button matButton cdkEditRevert>Revert</button> + <button matButton cdkEditClose>Close</button> </div> </form> </div> @@ -46,7 +46,7 @@ {{person.firstName}} <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </td> </ng-container> @@ -61,7 +61,7 @@ {{person.middleName}} <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </td> </ng-container> @@ -76,7 +76,7 @@ {{person.lastName}} <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </td> </ng-container> diff --git a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example-html.html b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example-html.html index 1c09b11fe0..c40716f764 100755 --- a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example-html.html +++ b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example-html.html @@ -47,16 +47,16 @@ </mat-form-field> </div> <div mat-edit-actions> - <button mat-button type="submit">Confirm</button> - <button mat-button matEditRevert>Revert</button> - <button mat-button matEditClose>Close</button> + <button matButton type="submit">Confirm</button> + <button matButton matEditRevert>Revert</button> + <button matButton matEditClose>Close</button> </div> </form> </div> </ng-template> <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </mat-cell> </ng-container> @@ -69,7 +69,7 @@ {{element.weight}} <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </mat-cell> </ng-container> diff --git a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example-html.html b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example-html.html index 743eaa3ba7..cbdb62014f 100755 --- a/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example-html.html +++ b/docs-content/examples-highlighted/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example-html.html @@ -26,10 +26,10 @@ <!-- Row hover content in a non-edit cell. --> <span *matRowHoverContent> - <button mat-icon-button (click)="goodJob(element)"> + <button matIconButton (click)="goodJob(element)"> <mat-icon>thumb_up</mat-icon> </button> - <button mat-icon-button (click)="badJob(element)"> + <button matIconButton (click)="badJob(element)"> <mat-icon>thumb_down</mat-icon> </button> </span> @@ -62,9 +62,9 @@ </mat-form-field> </div> <div mat-edit-actions> - <button mat-button type="submit">Confirm</button> - <button mat-button matEditRevert>Revert</button> - <button mat-button matEditClose>Close</button> + <button matButton type="submit">Confirm</button> + <button matButton matEditRevert>Revert</button> + <button matButton matEditClose>Close</button> </div> </form> </div> @@ -72,7 +72,7 @@ @if (nameEditEnabled) { <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> } </td> @@ -109,7 +109,7 @@ </ng-template> <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>arrow_drop_down</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>arrow_drop_down</mat-icon></button> </span> </td> </ng-container> @@ -122,7 +122,7 @@ {{element.weight}} <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>edit</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>edit</mat-icon></button> </span> </td> </ng-container> @@ -162,15 +162,15 @@ </mat-selection-list> </div> <div mat-edit-actions> - <button mat-button type="submit">Confirm</button> - <button mat-button matEditRevert>Revert</button> + <button matButton type="submit">Confirm</button> + <button matButton matEditRevert>Revert</button> </div> </form> </div> </ng-template> <span *matRowHoverContent> - <button mat-icon-button matEditOpen><mat-icon>arrow_drop_down</mat-icon></button> + <button matIconButton matEditOpen><mat-icon>arrow_drop_down</mat-icon></button> </span> </td> </ng-container> diff --git a/docs-content/examples-highlighted/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec-ts.html index 663c1062e1..4712f5208f 100755 --- a/docs-content/examples-highlighted/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec-ts.html @@ -3,17 +3,12 @@ import {MatAutocompleteHarness} from '@angular/material/autocomplete/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {AutocompleteHarnessExample} from './autocomplete-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatAutocompleteModule} from '@angular/material/autocomplete'; describe('AutocompleteHarnessExample', () => { let fixture: ComponentFixture<AutocompleteHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [MatAutocompleteModule, NoopAnimationsModule], - }); fixture = TestBed.createComponent(AutocompleteHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/badge/badge-harness/badge-harness-example-html.html b/docs-content/examples-highlighted/material/badge/badge-harness/badge-harness-example-html.html index 0368a92ce4..e8f616f42d 100755 --- a/docs-content/examples-highlighted/material/badge/badge-harness/badge-harness-example-html.html +++ b/docs-content/examples-highlighted/material/badge/badge-harness/badge-harness-example-html.html @@ -1,10 +1,10 @@ -<button mat-button id="simple" [matBadge]="simpleContent()">Simple</button> -<button mat-button +<button matButton id="simple" [matBadge]="simpleContent()">Simple</button> +<button matButton id="overlapping" matBadge="O" [matBadgeOverlap]="overlap()">Overlapping</button> <button - mat-button + matButton id="disabled" matBadge="D" [matBadgeDisabled]="disabled()">Disabled</button> diff --git a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example-html.html b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example-html.html index 7cf463a5cc..b0966db422 100755 --- a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example-html.html +++ b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example-html.html @@ -5,14 +5,14 @@ <div class="demo-section"> Button with a badge on the left - <button mat-raised-button matBadge="8" matBadgePosition="before"> + <button matButton="elevated" matBadge="8" matBadgePosition="before"> Action </button> </div> <div class="demo-section"> Button toggles badge visibility - <button mat-raised-button matBadge="7" [matBadgeHidden]="hidden" (click)="toggleBadgeVisibility()"> + <button matButton="elevated" matBadge="7" [matBadgeHidden]="hidden" (click)="toggleBadgeVisibility()"> Hide </button> </div> diff --git a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-hide-html.html b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-hide-html.html index ec43b686ab..dcd844ea1c 100755 --- a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-hide-html.html +++ b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-hide-html.html @@ -1,3 +1,3 @@ -<button mat-raised-button matBadge="7" [matBadgeHidden]="hidden" (click)="toggleBadgeVisibility()"> +<button matButton="elevated" matBadge="7" [matBadgeHidden]="hidden" (click)="toggleBadgeVisibility()"> Hide </button> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-position-html.html b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-position-html.html index bbc4142cff..4bcd35344e 100755 --- a/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-position-html.html +++ b/docs-content/examples-highlighted/material/badge/badge-overview/badge-overview-example_mat-badge-position-html.html @@ -1,3 +1,3 @@ -<button mat-raised-button matBadge="8" matBadgePosition="before"> +<button matButton="elevated" matBadge="8" matBadgePosition="before"> Action </button> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec-ts.html index 686bf212ca..11f5f891a7 100755 --- a/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec-ts.html @@ -3,8 +3,7 @@ import {MatBottomSheetHarness} from '@angular/material/bottom-sheet/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {BottomSheetHarnessExample} from './bottom-sheet-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatBottomSheetModule} from '@angular/material/bottom-sheet'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; describe('BottomSheetHarnessExample', () => { let fixture: ComponentFixture<BottomSheetHarnessExample>; @@ -12,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatBottomSheetModule, NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(BottomSheetHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-html.html b/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-html.html index 5c50b95296..ee6ef37006 100755 --- a/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-html.html +++ b/docs-content/examples-highlighted/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-html.html @@ -1,3 +1,3 @@ <p>You have received a file called "cat-picture.jpeg".</p> -<button mat-raised-button (click)="openBottomSheet()">Open file</button> +<button matButton="elevated" (click)="openBottomSheet()">Open file</button> diff --git a/docs-content/examples-highlighted/material/button/button-disabled-interactive/button-disabled-interactive-example-html.html b/docs-content/examples-highlighted/material/button/button-disabled-interactive/button-disabled-interactive-example-html.html index 11936fd4df..b86b415688 100755 --- a/docs-content/examples-highlighted/material/button/button-disabled-interactive/button-disabled-interactive-example-html.html +++ b/docs-content/examples-highlighted/material/button/button-disabled-interactive/button-disabled-interactive-example-html.html @@ -1,10 +1,10 @@ <button - mat-raised-button + matButton="elevated" disabled disabledInteractive matTooltip="This is a tooltip!">Disabled button allowing interactivity</button> <button - mat-raised-button + matButton="elevated" disabled matTooltip="This is a tooltip!">Default disabled button</button> diff --git a/docs-content/examples-highlighted/material/button/button-harness/button-harness-example-html.html b/docs-content/examples-highlighted/material/button/button-harness/button-harness-example-html.html index 3a9632d102..fe9fb12aa4 100755 --- a/docs-content/examples-highlighted/material/button/button-harness/button-harness-example-html.html +++ b/docs-content/examples-highlighted/material/button/button-harness/button-harness-example-html.html @@ -1,3 +1,3 @@ -<button id="basic" type="button" mat-button (click)="clicked = true"> +<button id="basic" type="button" matButton (click)="clicked = true"> Basic button </button> diff --git a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-css.html b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-css.html index 5bdc2365e6..f2f39f2f06 100755 --- a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-css.html +++ b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-css.html @@ -1,16 +1,15 @@ section { - display: table; + display: flex; + align-items: center; } .example-label { - display: table-cell; font-size: 14px; - margin-left: 8px; + margin: 0 16px 0 8px; min-width: 120px; } .example-button-row { - display: table-cell; max-width: 600px; } @@ -23,9 +22,3 @@ justify-content: space-between; flex-wrap: wrap; } - -.example-button-container { - display: flex; - justify-content: center; - width: 140px; -} diff --git a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-html.html b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-html.html index f9ff06298b..ce59374c67 100755 --- a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-html.html +++ b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-html.html @@ -1,110 +1,106 @@ <section> - <div class="example-label">Basic</div> + <div class="example-label">Text</div> <div class="example-button-row"> - <button mat-button>Basic</button> - <button mat-button disabled>Disabled</button> - <a mat-button href="https://www.google.com/" target="_blank">Link</a> + <button matButton>Basic</button> + <button matButton disabled>Disabled</button> + <a matButton href="https://www.google.com/" target="_blank">Link</a> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> <section> - <div class="example-label">Raised</div> + <div class="example-label">Elevated</div> <div class="example-button-row"> - <button mat-raised-button>Basic</button> - <button mat-raised-button disabled>Disabled</button> - <a mat-raised-button href="https://www.google.com/" target="_blank">Link</a> + <button matButton="elevated">Basic</button> + <button matButton="elevated" disabled>Disabled</button> + <a matButton="elevated" href="https://www.google.com/" target="_blank">Link</a> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> <section> - <div class="example-label">Stroked</div> + <div class="example-label">Outlined</div> <div class="example-button-row"> - <button mat-stroked-button>Basic</button> - <button mat-stroked-button disabled>Disabled</button> - <a mat-stroked-button href="https://www.google.com/" target="_blank">Link</a> + <button matButton="outlined">Basic</button> + <button matButton="outlined" disabled>Disabled</button> + <a matButton="outlined" href="https://www.google.com/" target="_blank">Link</a> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> <section> - <div class="example-label">Flat</div> + <div class="example-label">Filled</div> <div class="example-button-row"> - <button mat-flat-button>Basic</button> - <button mat-flat-button disabled>Disabled</button> - <a mat-flat-button href="https://www.google.com/" target="_blank">Link</a> + <button matButton="filled">Basic</button> + <button matButton="filled" disabled>Disabled</button> + <a matButton="filled" href="https://www.google.com/" target="_blank">Link</a> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> +<section> + <div class="example-label">Tonal</div> + <div class="example-button-row"> + <button matButton="tonal" >Basic</button> + <button matButton="tonal" disabled>Disabled</button> + <a matButton="tonal" href="https://www.google.com/" target="_blank">Link</a> + </div> +</section> +<mat-divider/> <section> <div class="example-label">Icon</div> <div class="example-button-row"> <div class="example-flex-container"> - <button mat-icon-button aria-label="Example icon button with a vertical three dot icon"> + <button matIconButton aria-label="Example icon button with a vertical three dot icon"> <mat-icon>more_vert</mat-icon> </button> - <button mat-icon-button disabled aria-label="Example icon button with a open in new tab icon"> + <button matIconButton disabled aria-label="Example icon button with a open in new tab icon"> <mat-icon>open_in_new</mat-icon> </button> </div> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> <section> - <div class="example-label">FAB</div> + <div class="example-label">Floating Action Button (FAB)</div> <div class="example-button-row"> <div class="example-flex-container"> - <div class="example-button-container"> - <button mat-fab aria-label="Example icon button with a delete icon"> - <mat-icon>delete</mat-icon> - </button> - </div> - <div class="example-button-container"> - <button mat-fab disabled aria-label="Example icon button with a heart icon"> - <mat-icon>favorite</mat-icon> - </button> - </div> + <button matFab aria-label="Example icon button with a delete icon"> + <mat-icon>delete</mat-icon> + </button> + <button matFab disabled aria-label="Example icon button with a heart icon"> + <mat-icon>favorite</mat-icon> + </button> </div> </div> </section> -<mat-divider></mat-divider> +<mat-divider/> <section> <div class="example-label">Mini FAB</div> <div class="example-button-row"> <div class="example-flex-container"> - <div class="example-button-container"> - <button mat-mini-fab aria-label="Example icon button with a menu icon"> - <mat-icon>menu</mat-icon> - </button> - </div> - <div class="example-button-container"> - <button mat-mini-fab disabled aria-label="Example icon button with a home icon"> - <mat-icon>home</mat-icon> - </button> - </div> + <button matMiniFab aria-label="Example icon button with a menu icon"> + <mat-icon>menu</mat-icon> + </button> + <button matMiniFab disabled aria-label="Example icon button with a home icon"> + <mat-icon>home</mat-icon> + </button> </div> </div> </section> +<mat-divider/> <section> - <div class="example-label">Extended Fab</div> + <div class="example-label">Extended FAB</div> <div class="example-button-row"> <div class="example-flex-container"> - <div class="example-button-container"> - <button mat-fab extended> - <mat-icon>favorite</mat-icon> - Basic - </button> - </div> - <div class="example-button-container"> - <button mat-fab extended disabled> - <mat-icon>favorite</mat-icon> - Disabled - </button> - </div> - <div class="example-button-container"> - <a mat-fab extended routerLink="."> - <mat-icon>favorite</mat-icon> - Link - </a> - </div> + <button matFab extended> + <mat-icon>favorite</mat-icon> + Basic + </button> + <button matFab extended disabled> + <mat-icon>favorite</mat-icon> + Disabled + </button> + <a matFab extended routerLink="."> + <mat-icon>favorite</mat-icon> + Link + </a> </div> </div> </section> diff --git a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-ts.html b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-ts.html index 1c2dc6aead..32a2764317 100755 --- a/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/button/button-overview/button-overview-example-ts.html @@ -4,7 +4,7 @@ import {MatButtonModule} from '@angular/material/button'; /** - * @title Basic buttons + * @title Button overview */ @Component({ selector: 'button-overview-example', diff --git a/docs-content/examples-highlighted/material/card/card-actions/card-actions-example-html.html b/docs-content/examples-highlighted/material/card/card-actions/card-actions-example-html.html index 6df6aa31e1..3f706c9409 100755 --- a/docs-content/examples-highlighted/material/card/card-actions/card-actions-example-html.html +++ b/docs-content/examples-highlighted/material/card/card-actions/card-actions-example-html.html @@ -4,7 +4,7 @@ <mat-card-subtitle>Herding group</mat-card-subtitle> </mat-card-header> <mat-card-actions> - <button mat-button>Learn More</button> + <button matButton>Learn More</button> </mat-card-actions> </mat-card> <br> @@ -14,6 +14,6 @@ <mat-card-subtitle>Non-sporting group</mat-card-subtitle> </mat-card-header> <mat-card-actions align="end"> - <button mat-button>Learn More</button> + <button matButton>Learn More</button> </mat-card-actions> </mat-card> diff --git a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-html.html b/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-html.html deleted file mode 100755 index e2852a46e8..0000000000 --- a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-html.html +++ /dev/null @@ -1,19 +0,0 @@ -<mat-card class="example-card" appearance="outlined"> - <mat-card-header> - <div mat-card-avatar class="example-header-image"></div> - <mat-card-title>Shiba Inu</mat-card-title> - <mat-card-subtitle>Dog Breed</mat-card-subtitle> - </mat-card-header> - <img mat-card-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu"> - <mat-card-content> - <p> - The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. - A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally - bred for hunting. - </p> - </mat-card-content> - <mat-card-actions> - <button mat-button>LIKE</button> - <button mat-button>SHARE</button> - </mat-card-actions> -</mat-card> diff --git a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-ts.html b/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-ts.html deleted file mode 100755 index 94e0cf2c16..0000000000 --- a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-ts.html +++ /dev/null @@ -1,15 +0,0 @@ -import {ChangeDetectionStrategy, Component} from '@angular/core'; -import {MatButtonModule} from '@angular/material/button'; -import {MatCardModule} from '@angular/material/card'; - -/** - * @title Card with multiple sections - */ -@Component({ - selector: 'card-fancy-example', - templateUrl: 'card-fancy-example.html', - styleUrl: 'card-fancy-example.css', - imports: [MatCardModule, MatButtonModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class CardFancyExample {} diff --git a/docs-content/examples-highlighted/material/card/card-harness/card-harness-example-html.html b/docs-content/examples-highlighted/material/card/card-harness/card-harness-example-html.html index fe59491678..747008519f 100755 --- a/docs-content/examples-highlighted/material/card/card-harness/card-harness-example-html.html +++ b/docs-content/examples-highlighted/material/card/card-harness/card-harness-example-html.html @@ -15,7 +15,7 @@ </p> </mat-card-content> <mat-card-actions> - <button mat-button>LIKE</button> - <button mat-button>SHARE</button> + <button matButton>LIKE</button> + <button matButton>SHARE</button> </mat-card-actions> </mat-card> diff --git a/docs-content/examples-highlighted/material/card/card-media-size/card-media-size-example-html.html b/docs-content/examples-highlighted/material/card/card-media-size/card-media-size-example-html.html index ef6102e10d..eced8009f9 100755 --- a/docs-content/examples-highlighted/material/card/card-media-size/card-media-size-example-html.html +++ b/docs-content/examples-highlighted/material/card/card-media-size/card-media-size-example-html.html @@ -4,7 +4,7 @@ <mat-card-title-group> <mat-card-title>Shiba Inu</mat-card-title> <mat-card-subtitle>Small</mat-card-subtitle> - <img mat-card-sm-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" > + <img mat-card-sm-image src="https://material.angular.dev/assets/img/examples/shiba2.jpg" > </mat-card-title-group> </mat-card-header> <mat-card-content> @@ -17,7 +17,7 @@ <mat-card-title-group> <mat-card-title>Shiba Inu</mat-card-title> <mat-card-subtitle>Medium</mat-card-subtitle> - <img mat-card-md-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt="Image of a Shiba Inu"> + <img mat-card-md-image src="https://material.angular.dev/assets/img/examples/shiba2.jpg" alt="Image of a Shiba Inu"> </mat-card-title-group> </mat-card-header> <mat-card-content> @@ -30,7 +30,7 @@ <mat-card-title-group> <mat-card-title>Shiba Inu</mat-card-title> <mat-card-subtitle>Large</mat-card-subtitle> - <img mat-card-lg-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" > + <img mat-card-lg-image src="https://material.angular.dev/assets/img/examples/shiba2.jpg" > </mat-card-title-group> </mat-card-header> <mat-card-content> @@ -43,7 +43,7 @@ <mat-card-title-group> <mat-card-title>Shiba Inu</mat-card-title> <mat-card-subtitle>Extra large</mat-card-subtitle> - <img mat-card-xl-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" > + <img mat-card-xl-image src="https://material.angular.dev/assets/img/examples/shiba2.jpg" > </mat-card-title-group> </mat-card-header> <mat-card-content> diff --git a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-css.html b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-css.html similarity index 84% rename from docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-css.html rename to docs-content/examples-highlighted/material/card/card-overview/card-overview-example-css.html index 2b274076bc..9fb5a620d1 100755 --- a/docs-content/examples-highlighted/material/card/card-fancy/card-fancy-example-css.html +++ b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-css.html @@ -3,6 +3,6 @@ } .example-header-image { - background-image: url('https://material.angular.io/assets/img/examples/shiba1.jpg'); + background-image: url('https://material.angular.dev/assets/img/examples/shiba1.jpg'); background-size: cover; } diff --git a/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-html.html b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-html.html index ef4eef4880..0934d2f1c8 100755 --- a/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-html.html +++ b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-html.html @@ -1,3 +1,19 @@ -<mat-card appearance="outlined"> - <mat-card-content>Simple card</mat-card-content> +<mat-card class="example-card" appearance="outlined"> + <mat-card-header> + <div mat-card-avatar class="example-header-image"></div> + <mat-card-title>Shiba Inu</mat-card-title> + <mat-card-subtitle>Dog Breed</mat-card-subtitle> + </mat-card-header> + <img mat-card-image src="https://material.angular.dev/assets/img/examples/shiba2.jpg" alt="Photo of a Shiba Inu"> + <mat-card-content> + <p> + The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. + A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally + bred for hunting. + </p> + </mat-card-content> + <mat-card-actions> + <button matButton>LIKE</button> + <button matButton>SHARE</button> + </mat-card-actions> </mat-card> diff --git a/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-ts.html b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-ts.html index fbfcf0d1bc..3c18eecffa 100755 --- a/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/card/card-overview/card-overview-example-ts.html @@ -1,13 +1,15 @@ import {ChangeDetectionStrategy, Component} from '@angular/core'; +import {MatButtonModule} from '@angular/material/button'; import {MatCardModule} from '@angular/material/card'; /** - * @title Basic cards + * @title Card overview */ @Component({ selector: 'card-overview-example', templateUrl: 'card-overview-example.html', - imports: [MatCardModule], + styleUrl: 'card-overview-example.css', + imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, }) export class CardOverviewExample {} diff --git a/docs-content/examples-highlighted/material/card/index-ts.html b/docs-content/examples-highlighted/material/card/index-ts.html index 70f8be1e35..bcf12ea4f3 100755 --- a/docs-content/examples-highlighted/material/card/index-ts.html +++ b/docs-content/examples-highlighted/material/card/index-ts.html @@ -1,4 +1,3 @@ -export {CardFancyExample} from './card-fancy/card-fancy-example'; export {CardOverviewExample} from './card-overview/card-overview-example'; export {CardHarnessExample} from './card-harness/card-harness-example'; export {CardActionsExample} from './card-actions/card-actions-example'; diff --git a/docs-content/examples-highlighted/material/checkbox/checkbox-harness/checkbox-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/checkbox/checkbox-harness/checkbox-harness-example.spec-ts.html index 9cd9d8726c..72bf2ae013 100755 --- a/docs-content/examples-highlighted/material/checkbox/checkbox-harness/checkbox-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/checkbox/checkbox-harness/checkbox-harness-example.spec-ts.html @@ -3,12 +3,14 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {MatCheckboxHarness} from '@angular/material/checkbox/testing'; import {CheckboxHarnessExample} from './checkbox-harness-example'; +import {provideCheckNoChangesConfig} from '@angular/core'; describe('CheckboxHarnessExample', () => { let fixture: ComponentFixture<CheckboxHarnessExample>; let loader: HarnessLoader; beforeEach(() => { + TestBed.configureTestingModule({providers: [provideCheckNoChangesConfig({exhaustive: false})]}); fixture = TestBed.createComponent(CheckboxHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/chips/chips-avatar/chips-avatar-example-html.html b/docs-content/examples-highlighted/material/chips/chips-avatar/chips-avatar-example-html.html index af6611f017..2c0239e6ad 100755 --- a/docs-content/examples-highlighted/material/chips/chips-avatar/chips-avatar-example-html.html +++ b/docs-content/examples-highlighted/material/chips/chips-avatar/chips-avatar-example-html.html @@ -2,7 +2,7 @@ <mat-chip> <img matChipAvatar - src="https://material.angular.io/assets/img/examples/shiba1.jpg" + src="https://material.angular.dev/assets/img/examples/shiba1.jpg" alt="Photo of a Shiba Inu" /> Dog one @@ -10,7 +10,7 @@ <mat-chip> <img matChipAvatar - src="https://material.angular.io/assets/img/examples/shiba1.jpg" + src="https://material.angular.dev/assets/img/examples/shiba1.jpg" alt="Photo of a Shiba Inu" /> Dog two @@ -18,7 +18,7 @@ <mat-chip> <img matChipAvatar - src="https://material.angular.io/assets/img/examples/shiba1.jpg" + src="https://material.angular.dev/assets/img/examples/shiba1.jpg" alt="Photo of a Shiba Inu" /> Dog three diff --git a/docs-content/examples-highlighted/material/chips/chips-form-control/chips-form-control-example-html.html b/docs-content/examples-highlighted/material/chips/chips-form-control/chips-form-control-example-html.html index 7c6b2d1c60..e4a6acdfb1 100755 --- a/docs-content/examples-highlighted/material/chips/chips-form-control/chips-form-control-example-html.html +++ b/docs-content/examples-highlighted/material/chips/chips-form-control/chips-form-control-example-html.html @@ -1,6 +1,6 @@ <div class="example-button-container"> - <button mat-raised-button (click)="formControl.disable()">Disable form control</button> - <button mat-raised-button (click)="formControl.enable()">Enable form control</button> + <button matButton="elevated" (click)="formControl.disable()">Disable form control</button> + <button matButton="elevated" (click)="formControl.enable()">Enable form control</button> </div> <p> <em>Enter video keywords</em> @@ -11,7 +11,7 @@ @for (keyword of keywords(); track keyword) { <mat-chip-row (removed)="removeKeyword(keyword)"> {{keyword}} - <button matChipRemove aria-label="'remove ' + keyword"> + <button matChipRemove [attr.aria-label]="'remove ' + keyword"> <mat-icon>cancel</mat-icon> </button> </mat-chip-row> diff --git a/docs-content/examples-highlighted/material/chips/chips-harness/chips-harness-example-ts.html b/docs-content/examples-highlighted/material/chips/chips-harness/chips-harness-example-ts.html index 3dc802a24a..5cf2f00e14 100755 --- a/docs-content/examples-highlighted/material/chips/chips-harness/chips-harness-example-ts.html +++ b/docs-content/examples-highlighted/material/chips/chips-harness/chips-harness-example-ts.html @@ -1,3 +1,5 @@ +/// <reference types="jasmine" /> + import {ChangeDetectionStrategy, Component, signal} from '@angular/core'; import {MatChipsModule} from '@angular/material/chips'; import {MatIconModule} from '@angular/material/icon'; diff --git a/docs-content/examples-highlighted/material/chips/chips-reactive-form/chips-reactive-form-example-html.html b/docs-content/examples-highlighted/material/chips/chips-reactive-form/chips-reactive-form-example-html.html index f900ac5b85..5e98a6412e 100755 --- a/docs-content/examples-highlighted/material/chips/chips-reactive-form/chips-reactive-form-example-html.html +++ b/docs-content/examples-highlighted/material/chips/chips-reactive-form/chips-reactive-form-example-html.html @@ -6,7 +6,7 @@ @for (keyword of reactiveKeywords(); track keyword) { <mat-chip-row (removed)="removeReactiveKeyword(keyword)"> {{keyword}} - <button matChipRemove aria-label="'remove reactive form' + keyword"> + <button matChipRemove [attr.aria-label]="'remove reactive form' + keyword"> <mat-icon>cancel</mat-icon> </button> </mat-chip-row> @@ -18,4 +18,4 @@ (matChipInputTokenEnd)="addReactiveKeyword($event)" /> </mat-form-field> -</section> \ No newline at end of file +</section> diff --git a/docs-content/examples-highlighted/material/chips/chips-template-form/chips-template-form-example-html.html b/docs-content/examples-highlighted/material/chips/chips-template-form/chips-template-form-example-html.html index bb06f2886a..2f4657f1ff 100755 --- a/docs-content/examples-highlighted/material/chips/chips-template-form/chips-template-form-example-html.html +++ b/docs-content/examples-highlighted/material/chips/chips-template-form/chips-template-form-example-html.html @@ -6,7 +6,7 @@ @for (keyword of templateKeywords(); track keyword) { <mat-chip-row (removed)="removeTemplateKeyword(keyword)"> {{keyword}} - <button matChipRemove aria-label="'remove template form' + keyword"> + <button matChipRemove [attr.aria-label]="'remove template form' + keyword"> <mat-icon>cancel</mat-icon> </button> </mat-chip-row> diff --git a/docs-content/examples-highlighted/material/core/elevation-overview/elevation-overview-example-html.html b/docs-content/examples-highlighted/material/core/elevation-overview/elevation-overview-example-html.html index 70df66b0c2..e28816c4b8 100755 --- a/docs-content/examples-highlighted/material/core/elevation-overview/elevation-overview-example-html.html +++ b/docs-content/examples-highlighted/material/core/elevation-overview/elevation-overview-example-html.html @@ -4,4 +4,4 @@ Example </div> -<button mat-button (click)="isActive = !isActive">Toggle Elevation</button> +<button matButton (click)="isActive = !isActive">Toggle Elevation</button> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example-html.html index 1bc01dc6d7..8240f2977a 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example-html.html @@ -5,8 +5,8 @@ <mat-datepicker-toggle matIconSuffix [for]="datepicker"></mat-datepicker-toggle> <mat-datepicker #datepicker> <mat-datepicker-actions> - <button mat-button matDatepickerCancel>Cancel</button> - <button mat-raised-button matDatepickerApply>Apply</button> + <button matButton matDatepickerCancel>Cancel</button> + <button matButton="elevated" matDatepickerApply>Apply</button> </mat-datepicker-actions> </mat-datepicker> </mat-form-field> @@ -21,8 +21,8 @@ <mat-datepicker-toggle matIconSuffix [for]="rangePicker"></mat-datepicker-toggle> <mat-date-range-picker #rangePicker> <mat-date-range-picker-actions> - <button mat-button matDateRangePickerCancel>Cancel</button> - <button mat-raised-button matDateRangePickerApply>Apply</button> + <button matButton matDateRangePickerCancel>Cancel</button> + <button matButton="elevated" matDateRangePickerApply>Apply</button> </mat-date-range-picker-actions> </mat-date-range-picker> </mat-form-field> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_date-range-picker-actions-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_date-range-picker-actions-html.html index 52c67685bd..5c6c522720 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_date-range-picker-actions-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_date-range-picker-actions-html.html @@ -1,6 +1,6 @@ <mat-date-range-picker #rangePicker> <mat-date-range-picker-actions> - <button mat-button matDateRangePickerCancel>Cancel</button> - <button mat-raised-button matDateRangePickerApply>Apply</button> + <button matButton matDateRangePickerCancel>Cancel</button> + <button matButton="elevated" matDateRangePickerApply>Apply</button> </mat-date-range-picker-actions> </mat-date-range-picker> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_datepicker-actions-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_datepicker-actions-html.html index 618fbf58af..66294c3100 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_datepicker-actions-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-actions/datepicker-actions-example_datepicker-actions-html.html @@ -1,6 +1,6 @@ <mat-datepicker #datepicker> <mat-datepicker-actions> - <button mat-button matDatepickerCancel>Cancel</button> - <button mat-raised-button matDatepickerApply>Apply</button> + <button matButton matDatepickerCancel>Cancel</button> + <button matButton="elevated" matDatepickerApply>Apply</button> </mat-datepicker-actions> </mat-datepicker> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-api/datepicker-api-example-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-api/datepicker-api-example-html.html index b7c832cfc0..c0289e9eba 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-api/datepicker-api-example-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-api/datepicker-api-example-html.html @@ -4,4 +4,4 @@ <mat-hint>MM/DD/YYYY</mat-hint> <mat-datepicker #picker></mat-datepicker> </mat-form-field> -<button mat-raised-button (click)="picker.open()">Open</button> +<button matButton="elevated" (click)="picker.open()">Open</button> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-custom-header/datepicker-custom-header-example-ts.html b/docs-content/examples-highlighted/material/datepicker/datepicker-custom-header/datepicker-custom-header-example-ts.html index 7678c191c6..5daf38c61a 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-custom-header/datepicker-custom-header-example-ts.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-custom-header/datepicker-custom-header-example-ts.html @@ -39,17 +39,17 @@ `, template: ` <div class="example-header"> - <button mat-icon-button (click)="previousClicked('year')"> + <button matIconButton (click)="previousClicked('year')"> <mat-icon>keyboard_double_arrow_left</mat-icon> </button> - <button mat-icon-button (click)="previousClicked('month')"> + <button matIconButton (click)="previousClicked('month')"> <mat-icon>keyboard_arrow_left</mat-icon> </button> <span class="example-header-label">{{periodLabel()}}</span> - <button mat-icon-button (click)="nextClicked('month')"> + <button matIconButton (click)="nextClicked('month')"> <mat-icon>keyboard_arrow_right</mat-icon> </button> - <button mat-icon-button (click)="nextClicked('year')"> + <button matIconButton (click)="nextClicked('year')"> <mat-icon>keyboard_double_arrow_right</mat-icon> </button> </div> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog-html.html index 473dab2da7..a837dadb50 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog-html.html @@ -8,6 +8,6 @@ </mat-form-field> </mat-dialog-content> <mat-dialog-actions> - <button mat-button mat-dialog-close>Clear</button> - <button mat-button [mat-dialog-close]="date.value" cdkFocusInitial>Ok</button> + <button matButton mat-dialog-close>Clear</button> + <button matButton [mat-dialog-close]="date.value" cdkFocusInitial>Ok</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-html.html index 854e654eb7..19ce2291a1 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-dialog/datepicker-dialog-example-html.html @@ -1,2 +1,2 @@ <p>Selected date: {{selectedDate()}}</p> -<button mat-flat-button color="primary" (click)="openDialog()">Open Dialog</button> +<button matButton="filled" color="primary" (click)="openDialog()">Open Dialog</button> diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-harness/datepicker-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/datepicker/datepicker-harness/datepicker-harness-example.spec-ts.html index 2573e6b158..f32c4dae2d 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-harness/datepicker-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-harness/datepicker-harness-example.spec-ts.html @@ -3,9 +3,7 @@ import {MatDatepickerInputHarness} from '@angular/material/datepicker/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {DatepickerHarnessExample} from './datepicker-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatDatepickerModule} from '@angular/material/datepicker'; -import {MatNativeDateModule} from '@angular/material/core'; +import {MATERIAL_ANIMATIONS, MatNativeDateModule} from '@angular/material/core'; describe('DatepickerHarnessExample', () => { let fixture: ComponentFixture<DatepickerHarnessExample>; @@ -13,7 +11,8 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatDatepickerModule, NoopAnimationsModule, MatNativeDateModule], + imports: [MatNativeDateModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(DatepickerHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/datepicker/datepicker-locale/datepicker-locale-example-html.html b/docs-content/examples-highlighted/material/datepicker/datepicker-locale/datepicker-locale-example-html.html index 742b211447..13fdf93c42 100755 --- a/docs-content/examples-highlighted/material/datepicker/datepicker-locale/datepicker-locale-example-html.html +++ b/docs-content/examples-highlighted/material/datepicker/datepicker-locale/datepicker-locale-example-html.html @@ -5,4 +5,4 @@ <mat-datepicker-toggle matIconSuffix [for]="dp"></mat-datepicker-toggle> <mat-datepicker #dp></mat-datepicker> </mat-form-field> -<button mat-button (click)="french()">Dynamically switch to French</button> +<button matButton (click)="french()">Dynamically switch to French</button> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-dialog-html.html b/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-dialog-html.html index 840f79332f..7255037bf1 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-dialog-html.html @@ -3,6 +3,6 @@ Would you like to delete cat.jpeg? </mat-dialog-content> <mat-dialog-actions> - <button mat-button mat-dialog-close>No</button> - <button mat-button mat-dialog-close cdkFocusInitial>Ok</button> + <button matButton mat-dialog-close>No</button> + <button matButton mat-dialog-close cdkFocusInitial>Ok</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-html.html index 3afc25114d..5d854fdfd8 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-animations/dialog-animations-example-html.html @@ -1,2 +1,2 @@ -<button mat-raised-button (click)="openDialog('0ms', '0ms')">Open dialog without animation</button> -<button mat-raised-button (click)="openDialog('3000ms', '1500ms')">Open dialog slowly</button> +<button matButton="elevated" (click)="openDialog('0ms', '0ms')">Open dialog without animation</button> +<button matButton="elevated" (click)="openDialog('3000ms', '1500ms')">Open dialog slowly</button> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-dialog-html.html b/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-dialog-html.html index 7dbb52c174..4387acdf47 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-dialog-html.html @@ -59,6 +59,6 @@ sophisticated in-browser navigational capabilities.</p> </mat-dialog-content> <mat-dialog-actions align="end"> - <button mat-button mat-dialog-close>Cancel</button> - <button mat-button [mat-dialog-close]="true" cdkFocusInitial>Install</button> + <button matButton mat-dialog-close>Cancel</button> + <button matButton [mat-dialog-close]="true" cdkFocusInitial>Install</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-html.html index 8ce713b68b..27cf385966 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-content/dialog-content-example-html.html @@ -1 +1 @@ -<button mat-button (click)="openDialog()">Open dialog</button> +<button matButton (click)="openDialog()">Open dialog</button> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-data/dialog-data-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-data/dialog-data-example-html.html index 8ce713b68b..27cf385966 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-data/dialog-data-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-data/dialog-data-example-html.html @@ -1 +1 @@ -<button mat-button (click)="openDialog()">Open dialog</button> +<button matButton (click)="openDialog()">Open dialog</button> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-dialog-html.html b/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-dialog-html.html index de31bd4d43..2109f10657 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-dialog-html.html @@ -1,5 +1,5 @@ <h2 mat-dialog-title>Dialog with elements</h2> <mat-dialog-content>This dialog showcases the title, close, content and actions elements.</mat-dialog-content> <mat-dialog-actions> - <button mat-button mat-dialog-close>Close</button> + <button matButton mat-dialog-close>Close</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-html.html index d45415401c..7b20178a47 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-elements/dialog-elements-example-html.html @@ -1 +1 @@ -<button mat-button (click)="openDialog()">Launch dialog</button> +<button matButton (click)="openDialog()">Launch dialog</button> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog-html.html b/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog-html.html index d29194d97a..adf85998dc 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog-html.html @@ -2,5 +2,5 @@ This is a dialog </mat-dialog-content> <mat-dialog-actions> - <button mat-button mat-dialog-close>Okay</button> + <button matButton mat-dialog-close>Okay</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-html.html index 14506af224..0c88464322 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-from-menu/dialog-from-menu-example-html.html @@ -1,4 +1,4 @@ -<button mat-button [matMenuTriggerFor]="menu" #menuTrigger>Menu</button> +<button matButton [matMenuTriggerFor]="menu" #menuTrigger>Menu</button> <mat-menu #menu="matMenu"> <button mat-menu-item (click)="openDialog()">Open dialog</button> </mat-menu> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-harness/dialog-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/dialog/dialog-harness/dialog-harness-example.spec-ts.html index c5d620dec6..5eb44ebd67 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-harness/dialog-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-harness/dialog-harness-example.spec-ts.html @@ -1,9 +1,9 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {MatDialogHarness} from '@angular/material/dialog/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {DialogHarnessExample} from './dialog-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('DialogHarnessExample', () => { let fixture: ComponentFixture<DialogHarnessExample>; @@ -11,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(DialogHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-dialog-html.html b/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-dialog-html.html index ab5a13ca53..578dc67330 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-dialog-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-dialog-html.html @@ -7,6 +7,6 @@ </mat-form-field> </mat-dialog-content> <mat-dialog-actions> - <button mat-button (click)="onNoClick()">No Thanks</button> - <button mat-button [mat-dialog-close]="animal()" cdkFocusInitial>Ok</button> + <button matButton (click)="onNoClick()">No Thanks</button> + <button matButton [mat-dialog-close]="animal()" cdkFocusInitial>Ok</button> </mat-dialog-actions> diff --git a/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-html.html b/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-html.html index afcb17c45d..795d54680b 100755 --- a/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-html.html +++ b/docs-content/examples-highlighted/material/dialog/dialog-overview/dialog-overview-example-html.html @@ -6,7 +6,7 @@ </mat-form-field> </li> <li> - <button mat-raised-button (click)="openDialog()">Pick one</button> + <button matButton="elevated" (click)="openDialog()">Pick one</button> </li> @if (animal()) { <li> diff --git a/docs-content/examples-highlighted/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example-html.html b/docs-content/examples-highlighted/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example-html.html index 91774499d7..d3b183c3a4 100755 --- a/docs-content/examples-highlighted/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example-html.html +++ b/docs-content/examples-highlighted/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example-html.html @@ -1,6 +1,6 @@ <div class="example-action-buttons"> - <button mat-button (click)="accordion().openAll()">Expand All</button> - <button mat-button (click)="accordion().closeAll()">Collapse All</button> + <button matButton (click)="accordion().openAll()">Expand All</button> + <button matButton (click)="accordion().closeAll()">Collapse All</button> </div> <mat-accordion class="example-headers-align" multi> <mat-expansion-panel> diff --git a/docs-content/examples-highlighted/material/expansion/expansion-harness/expansion-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/expansion/expansion-harness/expansion-harness-example.spec-ts.html index e5a835ca6f..62639eae35 100755 --- a/docs-content/examples-highlighted/material/expansion/expansion-harness/expansion-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/expansion/expansion-harness/expansion-harness-example.spec-ts.html @@ -2,7 +2,6 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatAccordionHarness, MatExpansionPanelHarness} from '@angular/material/expansion/testing'; import {HarnessLoader} from '@angular/cdk/testing'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {ExpansionHarnessExample} from './expansion-harness-example'; describe('ExpansionHarnessExample', () => { @@ -10,9 +9,6 @@ let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(ExpansionHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example-html.html b/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example-html.html index 549bfdaaff..e6ad01e01e 100755 --- a/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example-html.html +++ b/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example-html.html @@ -18,7 +18,7 @@ <input matInput type="number" min="1" /> </mat-form-field> <mat-action-row> - <button mat-button (click)="nextStep()">Next</button> + <button matButton (click)="nextStep()">Next</button> </mat-action-row> </mat-expansion-panel> @@ -37,8 +37,8 @@ </mat-form-field> <mat-action-row> - <button mat-button (click)="prevStep()">Previous</button> - <button mat-button (click)="nextStep()">Next</button> + <button matButton (click)="prevStep()">Previous</button> + <button matButton (click)="nextStep()">Next</button> </mat-action-row> </mat-expansion-panel> @@ -58,8 +58,8 @@ <mat-datepicker #picker></mat-datepicker> <mat-action-row> - <button mat-button (click)="prevStep()">Previous</button> - <button mat-button (click)="nextStep()">End</button> + <button matButton (click)="prevStep()">Previous</button> + <button matButton (click)="nextStep()">End</button> </mat-action-row> </mat-expansion-panel> </mat-accordion> diff --git a/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example_action-bar-html.html b/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example_action-bar-html.html index 5ff5d5b480..3f17ab2aa0 100755 --- a/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example_action-bar-html.html +++ b/docs-content/examples-highlighted/material/expansion/expansion-steps/expansion-steps-example_action-bar-html.html @@ -1,3 +1,3 @@ <mat-action-row> - <button mat-button (click)="nextStep()">Next</button> + <button matButton (click)="nextStep()">Next</button> </mat-action-row> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/form-field/form-field-harness/form-field-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/form-field/form-field-harness/form-field-harness-example.spec-ts.html index c48d201243..9185d86b25 100755 --- a/docs-content/examples-highlighted/material/form-field/form-field-harness/form-field-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/form-field/form-field-harness/form-field-harness-example.spec-ts.html @@ -3,7 +3,6 @@ import {MatFormFieldHarness} from '@angular/material/form-field/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {FormFieldHarnessExample} from './form-field-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {MatInputHarness} from '@angular/material/input/testing'; describe('FormFieldHarnessExample', () => { @@ -11,9 +10,6 @@ let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(FormFieldHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example-html.html b/docs-content/examples-highlighted/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example-html.html index c8c08c1311..f8ebc055ff 100755 --- a/docs-content/examples-highlighted/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example-html.html +++ b/docs-content/examples-highlighted/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example-html.html @@ -3,7 +3,7 @@ <mat-label>Enter your password</mat-label> <input matInput [type]="hide() ? 'password' : 'text'" /> <button - mat-icon-button + matIconButton matSuffix (click)="clickEvent($event)" [attr.aria-label]="'Hide password'" diff --git a/docs-content/examples-highlighted/material/input/input-clearable/input-clearable-example-html.html b/docs-content/examples-highlighted/material/input/input-clearable/input-clearable-example-html.html index 24c081d2a6..bd8147c838 100755 --- a/docs-content/examples-highlighted/material/input/input-clearable/input-clearable-example-html.html +++ b/docs-content/examples-highlighted/material/input/input-clearable/input-clearable-example-html.html @@ -2,7 +2,7 @@ <mat-label>Clearable input</mat-label> <input matInput type="text" [(ngModel)]="value"> @if (value) { - <button matSuffix mat-icon-button aria-label="Clear" (click)="value=''"> + <button matSuffix matIconButton aria-label="Clear" (click)="value=''"> <mat-icon>close</mat-icon> </button> } diff --git a/docs-content/examples-highlighted/material/input/input-harness/input-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/input/input-harness/input-harness-example.spec-ts.html index d68ca08ffd..e3fd9bbbc1 100755 --- a/docs-content/examples-highlighted/material/input/input-harness/input-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/input/input-harness/input-harness-example.spec-ts.html @@ -3,16 +3,12 @@ import {MatInputHarness} from '@angular/material/input/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {InputHarnessExample} from './input-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('InputHarnessExample', () => { let fixture: ComponentFixture<InputHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(InputHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/menu/menu-harness/menu-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/menu/menu-harness/menu-harness-example.spec-ts.html index 692d0bfc77..0ce756e627 100755 --- a/docs-content/examples-highlighted/material/menu/menu-harness/menu-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/menu/menu-harness/menu-harness-example.spec-ts.html @@ -2,9 +2,8 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatMenuHarness} from '@angular/material/menu/testing'; import {HarnessLoader} from '@angular/cdk/testing'; -import {MatMenuModule} from '@angular/material/menu'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {MenuHarnessExample} from './menu-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('MenuHarnessExample', () => { let fixture: ComponentFixture<MenuHarnessExample>; @@ -12,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatMenuModule, NoopAnimationsModule, MenuHarnessExample], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(MenuHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/menu/menu-icons/menu-icons-example-html.html b/docs-content/examples-highlighted/material/menu/menu-icons/menu-icons-example-html.html index 7c4b02129f..a055a2622d 100755 --- a/docs-content/examples-highlighted/material/menu/menu-icons/menu-icons-example-html.html +++ b/docs-content/examples-highlighted/material/menu/menu-icons/menu-icons-example-html.html @@ -1,4 +1,4 @@ -<button mat-icon-button [matMenuTriggerFor]="menu" aria-label="Example icon-button with a menu"> +<button matIconButton [matMenuTriggerFor]="menu" aria-label="Example icon-button with a menu"> <mat-icon>more_vert</mat-icon> </button> <mat-menu #menu="matMenu"> diff --git a/docs-content/examples-highlighted/material/menu/menu-nested/menu-nested-example-html.html b/docs-content/examples-highlighted/material/menu/menu-nested/menu-nested-example-html.html index 0a5ec49436..7a5d1419ba 100755 --- a/docs-content/examples-highlighted/material/menu/menu-nested/menu-nested-example-html.html +++ b/docs-content/examples-highlighted/material/menu/menu-nested/menu-nested-example-html.html @@ -1,4 +1,4 @@ -<button mat-button [matMenuTriggerFor]="animals">Animal index</button> +<button matButton [matMenuTriggerFor]="animals">Animal index</button> <mat-menu #animals="matMenu"> <button mat-menu-item [matMenuTriggerFor]="vertebrates">Vertebrates</button> <button mat-menu-item [matMenuTriggerFor]="invertebrates">Invertebrates</button> diff --git a/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example-html.html b/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example-html.html index 7b508b0a86..8c811ced2e 100755 --- a/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example-html.html +++ b/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example-html.html @@ -1,4 +1,4 @@ -<button mat-button [matMenuTriggerFor]="menu">Menu</button> +<button matButton [matMenuTriggerFor]="menu">Menu</button> <mat-menu #menu="matMenu"> <button mat-menu-item>Item 1</button> <button mat-menu-item>Item 2</button> diff --git a/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example_mat-menu-trigger-for-html.html b/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example_mat-menu-trigger-for-html.html index eeb193c39f..d37aad2f16 100755 --- a/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example_mat-menu-trigger-for-html.html +++ b/docs-content/examples-highlighted/material/menu/menu-overview/menu-overview-example_mat-menu-trigger-for-html.html @@ -1 +1 @@ -<button mat-button [matMenuTriggerFor]="menu">Menu</button> \ No newline at end of file +<button matButton [matMenuTriggerFor]="menu">Menu</button> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/menu/menu-position/menu-position-example-html.html b/docs-content/examples-highlighted/material/menu/menu-position/menu-position-example-html.html index c9f67bac3f..c5ec231a7d 100755 --- a/docs-content/examples-highlighted/material/menu/menu-position/menu-position-example-html.html +++ b/docs-content/examples-highlighted/material/menu/menu-position/menu-position-example-html.html @@ -1,23 +1,23 @@ -<button mat-button [matMenuTriggerFor]="aboveMenu">Above</button> +<button matButton [matMenuTriggerFor]="aboveMenu">Above</button> <mat-menu #aboveMenu="matMenu" yPosition="above"> <button mat-menu-item>Item 1</button> <button mat-menu-item>Item 2</button> </mat-menu> -<button mat-button [matMenuTriggerFor]="belowMenu">Below</button> +<button matButton [matMenuTriggerFor]="belowMenu">Below</button> <mat-menu #belowMenu="matMenu" yPosition="below"> <button mat-menu-item>Item 1</button> <button mat-menu-item>Item 2</button> </mat-menu> -<button mat-button [matMenuTriggerFor]="beforeMenu">Before</button> +<button matButton [matMenuTriggerFor]="beforeMenu">Before</button> <mat-menu #beforeMenu="matMenu" xPosition="before"> <button mat-menu-item>Item 1</button> <button mat-menu-item>Item 2</button> </mat-menu> -<button mat-button [matMenuTriggerFor]="afterMenu">After</button> +<button matButton [matMenuTriggerFor]="afterMenu">After</button> <mat-menu #afterMenu="matMenu" xPosition="after"> <button mat-menu-item>Item 1</button> <button mat-menu-item>Item 2</button> diff --git a/docs-content/examples-highlighted/material/paginator/paginator-harness/paginator-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/paginator/paginator-harness/paginator-harness-example.spec-ts.html index 721f9b969a..0a1ce16e21 100755 --- a/docs-content/examples-highlighted/material/paginator/paginator-harness/paginator-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/paginator/paginator-harness/paginator-harness-example.spec-ts.html @@ -3,8 +3,6 @@ import {MatPaginatorHarness} from '@angular/material/paginator/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {PaginatorHarnessExample} from './paginator-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatPaginatorModule} from '@angular/material/paginator'; describe('PaginatorHarnessExample', () => { let fixture: ComponentFixture<PaginatorHarnessExample>; @@ -12,9 +10,6 @@ let instance: PaginatorHarnessExample; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [MatPaginatorModule, NoopAnimationsModule], - }); fixture = TestBed.createComponent(PaginatorHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/paginator/paginator-intl/paginator-intl-example-ts.html b/docs-content/examples-highlighted/material/paginator/paginator-intl/paginator-intl-example-ts.html index 769bfdb53a..41cf665f88 100755 --- a/docs-content/examples-highlighted/material/paginator/paginator-intl/paginator-intl-example-ts.html +++ b/docs-content/examples-highlighted/material/paginator/paginator-intl/paginator-intl-example-ts.html @@ -2,6 +2,8 @@ import {MatPaginatorIntl, MatPaginatorModule} from '@angular/material/paginator'; import {Subject} from 'rxjs'; +import '@angular/localize/init'; + @Injectable() export class MyCustomPaginatorIntl implements MatPaginatorIntl { changes = new Subject<void>(); diff --git a/docs-content/examples-highlighted/material/select/select-harness/select-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/select/select-harness/select-harness-example.spec-ts.html index 113b6ebed7..f423e8f635 100755 --- a/docs-content/examples-highlighted/material/select/select-harness/select-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/select/select-harness/select-harness-example.spec-ts.html @@ -1,10 +1,9 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatSelectHarness} from '@angular/material/select/testing'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {HarnessLoader} from '@angular/cdk/testing'; import {SelectHarnessExample} from './select-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatSelectModule} from '@angular/material/select'; describe('SelectHarnessExample', () => { let fixture: ComponentFixture<SelectHarnessExample>; @@ -12,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatSelectModule, NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(SelectHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-autosize/sidenav-autosize-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-autosize/sidenav-autosize-example-html.html index 7d70d1d97f..26b2c6cdc1 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-autosize/sidenav-autosize-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-autosize/sidenav-autosize-example-html.html @@ -4,13 +4,13 @@ @if (showFiller) { <p>Lorem, ipsum dolor sit amet consectetur.</p> } - <button (click)="showFiller = !showFiller" mat-raised-button> + <button (click)="showFiller = !showFiller" matButton="elevated"> Toggle extra text </button> </mat-drawer> <div class="example-sidenav-content"> - <button type="button" mat-button (click)="drawer.toggle()"> + <button type="button" matButton (click)="drawer.toggle()"> Toggle sidenav </button> </div> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-backdrop/sidenav-backdrop-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-backdrop/sidenav-backdrop-example-html.html index 1ec0616d19..1bccc3fdf9 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-backdrop/sidenav-backdrop-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-backdrop/sidenav-backdrop-example-html.html @@ -17,6 +17,6 @@ <mat-option [value]="false">False</mat-option> </mat-select> </mat-form-field> - <button mat-raised-button (click)="drawer.toggle()">Toggle drawer</button> + <button matButton="elevated" (click)="drawer.toggle()">Toggle drawer</button> </mat-drawer-content> </mat-drawer-container> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example-html.html index e890716468..e9a9dd892d 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example-html.html @@ -1,14 +1,14 @@ @if (shouldRun) { <mat-sidenav-container class="example-container" [hasBackdrop]="hasBackdrop.value"> <mat-sidenav #sidenav [mode]="mode.value!" [position]="position.value!"> - <p><button mat-button (click)="sidenav.toggle()">Toggle</button></p> + <p><button matButton (click)="sidenav.toggle()">Toggle</button></p> <p> <label>Test input for drawer<input/></label> </p> </mat-sidenav> <mat-sidenav-content> - <p><button mat-button (click)="sidenav.toggle()">Toggle</button></p> + <p><button matButton (click)="sidenav.toggle()">Toggle</button></p> <p> <mat-radio-group class="example-radio-group" [formControl]="mode"> <label>Mode:</label> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-disable-close/sidenav-disable-close-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-disable-close/sidenav-disable-close-example-html.html index 28f1fc4772..a6a53b8e21 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-disable-close/sidenav-disable-close-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-disable-close/sidenav-disable-close-example-html.html @@ -2,11 +2,11 @@ <mat-sidenav-container class="example-container" (backdropClick)="close('backdrop')"> <mat-sidenav #sidenav (keydown.escape)="close('escape')" disableClose> - <p><button mat-button (click)="close('toggle button')">Toggle</button></p> + <p><button matButton (click)="close('toggle button')">Toggle</button></p> </mat-sidenav> <mat-sidenav-content> - <p><button mat-button (click)="sidenav.open()">Open</button></p> + <p><button matButton (click)="sidenav.open()">Open</button></p> <p>Closed due to: {{reason}}</p> </mat-sidenav-content> </mat-sidenav-container> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-fixed/sidenav-fixed-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-fixed/sidenav-fixed-example-html.html index b56bccabf9..bcc4556200 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-fixed/sidenav-fixed-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-fixed/sidenav-fixed-example-html.html @@ -18,7 +18,7 @@ <mat-label>Bottom gap</mat-label> <input matInput type="number" formControlName="bottom"> </mat-form-field></p> - <p><button mat-button (click)="sidenav.toggle()">Toggle</button></p> + <p><button matButton (click)="sidenav.toggle()">Toggle</button></p> </mat-sidenav-content> </mat-sidenav-container> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-harness/sidenav-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/sidenav/sidenav-harness/sidenav-harness-example.spec-ts.html index cd05c4bad7..98d49afc76 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-harness/sidenav-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-harness/sidenav-harness-example.spec-ts.html @@ -7,17 +7,12 @@ } from '@angular/material/sidenav/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {SidenavHarnessExample} from './sidenav-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('SidenavHarnessExample', () => { let fixture: ComponentFixture<SidenavHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); - fixture = TestBed.createComponent(SidenavHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-mode/sidenav-mode-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-mode/sidenav-mode-example-html.html index ccc4ed9f7d..00dfe98a7b 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-mode/sidenav-mode-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-mode/sidenav-mode-example-html.html @@ -1,7 +1,7 @@ @if (shouldRun) { <mat-sidenav-container class="example-container"> <mat-sidenav #sidenav [mode]="mode.value || 'over'"> - <p><button mat-button (click)="sidenav.toggle()">Toggle</button></p> + <p><button matButton (click)="sidenav.toggle()">Toggle</button></p> <p> <mat-radio-group class="example-radio-group" [formControl]="mode"> <label>Mode:</label> @@ -13,7 +13,7 @@ </mat-sidenav> <mat-sidenav-content> - <p><button mat-button (click)="sidenav.toggle()">Toggle</button></p> + <p><button matButton (click)="sidenav.toggle()">Toggle</button></p> <p> <mat-radio-group class="example-radio-group" [formControl]="mode"> <label>Mode:</label> diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-open-close/sidenav-open-close-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-open-close/sidenav-open-close-example-html.html index 7ec1dbfd1f..54abe06719 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-open-close/sidenav-open-close-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-open-close/sidenav-open-close-example-html.html @@ -7,7 +7,7 @@ <mat-sidenav-content> <p><mat-checkbox [(ngModel)]="opened">sidenav.opened</mat-checkbox></p> - <p><button mat-button (click)="sidenav.toggle()">sidenav.toggle()</button></p> + <p><button matButton (click)="sidenav.toggle()">sidenav.toggle()</button></p> <p>Events:</p> <div class="example-events"> @for (e of events; track e) { diff --git a/docs-content/examples-highlighted/material/sidenav/sidenav-responsive/sidenav-responsive-example-html.html b/docs-content/examples-highlighted/material/sidenav/sidenav-responsive/sidenav-responsive-example-html.html index 8db683a263..8b4c539b51 100755 --- a/docs-content/examples-highlighted/material/sidenav/sidenav-responsive/sidenav-responsive-example-html.html +++ b/docs-content/examples-highlighted/material/sidenav/sidenav-responsive/sidenav-responsive-example-html.html @@ -1,7 +1,7 @@ @if (shouldRun) { <div class="example-container" [class.example-is-mobile]="isMobile()"> <mat-toolbar class="example-toolbar"> - <button mat-icon-button (click)="snav.toggle()"><mat-icon>menu</mat-icon></button> + <button matIconButton (click)="snav.toggle()"><mat-icon>menu</mat-icon></button> <h1 class="example-app-name">Responsive App</h1> </mat-toolbar> diff --git a/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-html.html b/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-html.html index 08841bcea4..756029c5b6 100755 --- a/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-html.html +++ b/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-html.html @@ -9,7 +9,7 @@ <mat-slide-toggle ngModel name="enableWifi">Enable Wifi</mat-slide-toggle> <mat-slide-toggle ngModel name="acceptTerms" required>Accept Terms of Service</mat-slide-toggle> - <button mat-raised-button type="submit">Save Settings</button> + <button matButton="elevated" type="submit">Save Settings</button> </form> <p>Slide Toggle inside of a Reactive form</p> @@ -21,5 +21,5 @@ <p>Form Group Status: {{formGroup.status}}</p> - <button mat-raised-button type="submit">Save Settings</button> + <button matButton="elevated" type="submit">Save Settings</button> </form> diff --git a/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-ts.html b/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-ts.html index 32dd82e1a2..beecaf2a7f 100755 --- a/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-ts.html +++ b/docs-content/examples-highlighted/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example-ts.html @@ -1,10 +1,7 @@ import {Component, inject} from '@angular/core'; import {FormBuilder, FormGroup, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms'; import {MatButtonModule} from '@angular/material/button'; -import { - MatSlideToggleModule, - _MatSlideToggleRequiredValidatorModule, -} from '@angular/material/slide-toggle'; +import {MatSlideToggleModule} from '@angular/material/slide-toggle'; /** * @title Slide-toggle with forms @@ -13,13 +10,7 @@ selector: 'slide-toggle-forms-example', templateUrl: './slide-toggle-forms-example.html', styleUrl: './slide-toggle-forms-example.css', - imports: [ - MatSlideToggleModule, - FormsModule, - _MatSlideToggleRequiredValidatorModule, - MatButtonModule, - ReactiveFormsModule, - ], + imports: [MatSlideToggleModule, FormsModule, MatButtonModule, ReactiveFormsModule], }) export class SlideToggleFormsExample { private _formBuilder = inject(FormBuilder); diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-html.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-html.html index 26272db4e6..67484d947a 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-html.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-html.html @@ -3,6 +3,6 @@ <input type="number" [(ngModel)]="durationInSeconds" matInput> </mat-form-field> -<button mat-stroked-button (click)="openSnackBar()" aria-label="Show an example snack-bar"> +<button matButton="outlined" (click)="openSnackBar()" aria-label="Show an example snack-bar"> Pizza party </button> diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack-html.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack-html.html index 3a1d971a95..eab94f76da 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack-html.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack-html.html @@ -2,6 +2,6 @@ Pizza party!!! </span> <span matSnackBarActions> - <button mat-button matSnackBarAction (click)="snackBarRef.dismissWithAction()">🍕</button> + <button matButton matSnackBarAction (click)="snackBarRef.dismissWithAction()">🍕</button> </span> diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-component/snack-bar-component-example-html.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-component/snack-bar-component-example-html.html index 26272db4e6..67484d947a 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-component/snack-bar-component-example-html.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-component/snack-bar-component-example-html.html @@ -3,6 +3,6 @@ <input type="number" [(ngModel)]="durationInSeconds" matInput> </mat-form-field> -<button mat-stroked-button (click)="openSnackBar()" aria-label="Show an example snack-bar"> +<button matButton="outlined" (click)="openSnackBar()" aria-label="Show an example snack-bar"> Pizza party </button> diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec-ts.html index 6b4545af25..75dcc50776 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec-ts.html @@ -1,8 +1,8 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {HarnessLoader} from '@angular/cdk/testing'; import {SnackBarHarnessExample} from './snack-bar-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {MatSnackBarHarness} from '@angular/material/snack-bar/testing'; describe('SnackBarHarnessExample', () => { @@ -11,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(SnackBarHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-overview/snack-bar-overview-example-html.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-overview/snack-bar-overview-example-html.html index ad525fb741..2f59a951ad 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-overview/snack-bar-overview-example-html.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-overview/snack-bar-overview-example-html.html @@ -8,4 +8,4 @@ <input matInput value="Dance" #action> </mat-form-field> -<button mat-stroked-button (click)="openSnackBar(message.value, action.value)">Show snack-bar</button> +<button matButton="outlined" (click)="openSnackBar(message.value, action.value)">Show snack-bar</button> diff --git a/docs-content/examples-highlighted/material/snack-bar/snack-bar-position/snack-bar-position-example-html.html b/docs-content/examples-highlighted/material/snack-bar/snack-bar-position/snack-bar-position-example-html.html index 2ab514ab4f..b8748e3dd4 100755 --- a/docs-content/examples-highlighted/material/snack-bar/snack-bar-position/snack-bar-position-example-html.html +++ b/docs-content/examples-highlighted/material/snack-bar/snack-bar-position/snack-bar-position-example-html.html @@ -16,6 +16,6 @@ </mat-select> </mat-form-field> -<button mat-stroked-button (click)="openSnackBar()" aria-label="Show an example snack-bar"> +<button matButton="outlined" (click)="openSnackBar()" aria-label="Show an example snack-bar"> Pool party! </button> diff --git a/docs-content/examples-highlighted/material/sort/sort-harness/sort-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/sort/sort-harness/sort-harness-example.spec-ts.html index 8adce993b6..75204befcd 100755 --- a/docs-content/examples-highlighted/material/sort/sort-harness/sort-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/sort/sort-harness/sort-harness-example.spec-ts.html @@ -3,16 +3,12 @@ import {MatSortHarness} from '@angular/material/sort/testing'; import {HarnessLoader, parallel} from '@angular/cdk/testing'; import {SortHarnessExample} from './sort-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('SortHarnessExample', () => { let fixture: ComponentFixture<SortHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(SortHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/stepper/stepper-animations/stepper-animations-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-animations/stepper-animations-example-html.html index f9e68f864b..456a3c980f 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-animations/stepper-animations-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-animations/stepper-animations-example-html.html @@ -11,7 +11,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -22,8 +22,8 @@ <input matInput placeholder="Address" formControlName="secondCtrl" required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -31,8 +31,8 @@ <ng-template matStepLabel>Done</ng-template> You are now done. <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-vertical-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-editable/stepper-editable-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-editable/stepper-editable-example-html.html index 30ba25ed37..6f8dc5ab69 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-editable/stepper-editable-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-editable/stepper-editable-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button (click)="isEditable = !isEditable"> +<button matButton="elevated" (click)="isEditable = !isEditable"> {{!isEditable ? 'Enable edit mode' : 'Disable edit mode'}} </button> @@ -11,7 +11,7 @@ <input matInput formControlName="firstCtrl" placeholder="Last name, First name" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -24,8 +24,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -33,8 +33,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-errors/stepper-errors-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-errors/stepper-errors-example-html.html index 707042602f..978952f039 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-errors/stepper-errors-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-errors/stepper-errors-example-html.html @@ -8,7 +8,7 @@ </mat-form-field> <div> <p>Go to a different step to see the error state</p> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -22,8 +22,8 @@ </mat-form-field> <div> <p>Go to a different step to see the error state</p> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -31,8 +31,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-harness/stepper-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/stepper/stepper-harness/stepper-harness-example.spec-ts.html index 7355be7715..eec4f53644 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-harness/stepper-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-harness/stepper-harness-example.spec-ts.html @@ -3,16 +3,12 @@ import {MatStepperHarness, MatStepperNextHarness} from '@angular/material/stepper/testing'; import {HarnessLoader, parallel} from '@angular/cdk/testing'; import {StepperHarnessExample} from './stepper-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('StepperHarnessExample', () => { let fixture: ComponentFixture<StepperHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(StepperHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/stepper/stepper-header-position/stepper-header-position-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-header-position/stepper-header-position-example-html.html index bfe862ad29..574f3af75d 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-header-position/stepper-header-position-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-header-position/stepper-header-position-example-html.html @@ -6,7 +6,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -17,8 +17,8 @@ <input matInput placeholder="Address" formControlName="secondCtrl" required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -26,8 +26,8 @@ <ng-template matStepLabel>Done</ng-template> You are now done. <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-intl/stepper-intl-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-intl/stepper-intl-example-html.html index db7837255e..e6b49b7e45 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-intl/stepper-intl-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-intl/stepper-intl-example-html.html @@ -24,7 +24,7 @@ /> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -42,8 +42,8 @@ /> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -51,8 +51,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example-html.html index eae4686912..d757fb89d6 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example-html.html @@ -7,7 +7,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -20,8 +20,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -29,8 +29,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example_buttons-html.html b/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example_buttons-html.html index 7d049e702f..0be7fa49ad 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example_buttons-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example_buttons-html.html @@ -1,2 +1,2 @@ -<button mat-button matStepperPrevious>Back</button> -<button mat-button matStepperNext>Next</button> \ No newline at end of file +<button matButton matStepperPrevious>Back</button> +<button matButton matStepperNext>Next</button> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/stepper/stepper-lazy-content/stepper-lazy-content-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-lazy-content/stepper-lazy-content-example-html.html index e22fb85f8f..20c46f11da 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-lazy-content/stepper-lazy-content-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-lazy-content/stepper-lazy-content-example-html.html @@ -3,20 +3,20 @@ <ng-template matStepLabel>Step 1</ng-template> <ng-template matStepContent> <p>This content was rendered lazily</p> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </ng-template> </mat-step> <mat-step> <ng-template matStepLabel>Step 2</ng-template> <ng-template matStepContent> <p>This content was also rendered lazily</p> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </ng-template> </mat-step> <mat-step> <ng-template matStepLabel>Step 3</ng-template> <p>This content was rendered eagerly</p> - <button mat-button matStepperPrevious>Back</button> + <button matButton matStepperPrevious>Back</button> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-optional/stepper-optional-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-optional/stepper-optional-example-html.html index 3d897aba96..fb038432d9 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-optional/stepper-optional-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-optional/stepper-optional-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button (click)="isOptional = !isOptional"> +<button matButton="elevated" (click)="isOptional = !isOptional"> {{!isOptional ? 'Enable optional steps' : 'Disable optional steps'}} </button> @@ -11,7 +11,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -24,8 +24,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -33,8 +33,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-overview/stepper-overview-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-overview/stepper-overview-example-html.html index 23e408bac8..8091cc7582 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-overview/stepper-overview-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-overview/stepper-overview-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button (click)="isLinear = !isLinear" id="toggle-linear"> +<button matButton="elevated" (click)="isLinear = !isLinear" id="toggle-linear"> {{!isLinear ? 'Enable linear mode' : 'Disable linear mode'}} </button> <mat-stepper [linear]="isLinear" #stepper> @@ -10,7 +10,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -22,8 +22,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -31,8 +31,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-responsive/stepper-responsive-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-responsive/stepper-responsive-example-html.html index c6798138af..6f5e5b7df3 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-responsive/stepper-responsive-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-responsive/stepper-responsive-example-html.html @@ -17,7 +17,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -29,8 +29,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -41,8 +41,8 @@ <input matInput formControlName="thirdCtrl" placeholder="Ex. 12345678" required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -50,7 +50,7 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> + <button matButton matStepperPrevious>Back</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example-html.html index c8f80537a7..bd6d262adc 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example-html.html @@ -7,7 +7,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -20,8 +20,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -29,8 +29,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> @@ -39,14 +39,14 @@ <mat-step label="Step 1" state="phone"> <p>Put down your phones.</p> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </mat-step> <mat-step label="Step 2" state="chat"> <p>Socialize with each other.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </mat-step> <mat-step label="Step 3"> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_label-html.html b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_label-html.html index 8d06469063..50cbba51cf 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_label-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_label-html.html @@ -1,6 +1,6 @@ <mat-step label="Step 1" state="phone"> <p>Put down your phones.</p> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </mat-step> \ No newline at end of file diff --git a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_states-html.html b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_states-html.html index 9f2b7fa024..9c7a86fdc4 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_states-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-states/stepper-states-example_states-html.html @@ -2,14 +2,14 @@ <mat-step label="Step 1" state="phone"> <p>Put down your phones.</p> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </mat-step> <mat-step label="Step 2" state="chat"> <p>Socialize with each other.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </mat-step> <mat-step label="Step 3"> diff --git a/docs-content/examples-highlighted/material/stepper/stepper-vertical/stepper-vertical-example-html.html b/docs-content/examples-highlighted/material/stepper/stepper-vertical/stepper-vertical-example-html.html index 479f2e3f45..926c953cd0 100755 --- a/docs-content/examples-highlighted/material/stepper/stepper-vertical/stepper-vertical-example-html.html +++ b/docs-content/examples-highlighted/material/stepper/stepper-vertical/stepper-vertical-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button (click)="isLinear = !isLinear" id="toggle-linear"> +<button matButton="elevated" (click)="isLinear = !isLinear" id="toggle-linear"> {{!isLinear ? 'Enable linear mode' : 'Disable linear mode'}} </button> <mat-stepper orientation="vertical" [linear]="isLinear" #stepper> @@ -10,7 +10,7 @@ <input matInput placeholder="Last name, First name" formControlName="firstCtrl" required> </mat-form-field> <div> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -23,8 +23,8 @@ required> </mat-form-field> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button matStepperNext>Next</button> + <button matButton matStepperPrevious>Back</button> + <button matButton matStepperNext>Next</button> </div> </form> </mat-step> @@ -32,8 +32,8 @@ <ng-template matStepLabel>Done</ng-template> <p>You are now done.</p> <div> - <button mat-button matStepperPrevious>Back</button> - <button mat-button (click)="stepper.reset()">Reset</button> + <button matButton matStepperPrevious>Back</button> + <button matButton (click)="stepper.reset()">Reset</button> </div> </mat-step> </mat-stepper> diff --git a/docs-content/examples-highlighted/material/table/table-dynamic-array-data/table-dynamic-array-data-example-html.html b/docs-content/examples-highlighted/material/table/table-dynamic-array-data/table-dynamic-array-data-example-html.html index 1314a6c7f2..80aa2cab26 100755 --- a/docs-content/examples-highlighted/material/table/table-dynamic-array-data/table-dynamic-array-data-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-dynamic-array-data/table-dynamic-array-data-example-html.html @@ -1,9 +1,9 @@ <div class="demo-button-container"> - <button mat-raised-button (click)="addData()" class="demo-button"> + <button matButton="elevated" (click)="addData()" class="demo-button"> Add data </button> <button - mat-raised-button + matButton="elevated" [disabled]="!dataSource.length" (click)="removeData()" class="demo-button"> diff --git a/docs-content/examples-highlighted/material/table/table-dynamic-columns/table-dynamic-columns-example-html.html b/docs-content/examples-highlighted/material/table/table-dynamic-columns/table-dynamic-columns-example-html.html index 026cdab3e7..faf0801f23 100755 --- a/docs-content/examples-highlighted/material/table/table-dynamic-columns/table-dynamic-columns-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-dynamic-columns/table-dynamic-columns-example-html.html @@ -1,6 +1,6 @@ -<button mat-raised-button (click)="addColumn()"> Add column </button> -<button mat-raised-button (click)="removeColumn()"> Remove column </button> -<button mat-raised-button (click)="shuffle()"> Shuffle </button> +<button matButton="elevated" (click)="addColumn()"> Add column </button> +<button matButton="elevated" (click)="removeColumn()"> Remove column </button> +<button matButton="elevated" (click)="shuffle()"> Shuffle </button> <table mat-table [dataSource]="data" class="mat-elevation-z8"> @for (column of displayedColumns; track column) { diff --git a/docs-content/examples-highlighted/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example-html.html b/docs-content/examples-highlighted/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example-html.html index 84c0319981..21e8338361 100755 --- a/docs-content/examples-highlighted/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example-html.html @@ -1,9 +1,9 @@ <div class="demo-button-container"> - <button mat-raised-button (click)="addData()" class="demo-button"> + <button matButton="elevated" (click)="addData()" class="demo-button"> Add data </button> <button - mat-raised-button + matButton="elevated" [disabled]="!dataToDisplay.length" (click)="removeData()" class="demo-button"> diff --git a/docs-content/examples-highlighted/material/table/table-expandable-rows/table-expandable-rows-example-html.html b/docs-content/examples-highlighted/material/table/table-expandable-rows/table-expandable-rows-example-html.html index 759dab223d..def9dc4561 100755 --- a/docs-content/examples-highlighted/material/table/table-expandable-rows/table-expandable-rows-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-expandable-rows/table-expandable-rows-example-html.html @@ -11,7 +11,7 @@ <th mat-header-cell *matHeaderCellDef aria-label="row actions">&nbsp;</th> <td mat-cell *matCellDef="let element"> <button - mat-icon-button + matIconButton aria-label="expand row" (click)="toggle(element); $event.stopPropagation()" class="example-toggle-button" diff --git a/docs-content/examples-highlighted/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example-html.html b/docs-content/examples-highlighted/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example-html.html index f320266b28..89a93035c7 100755 --- a/docs-content/examples-highlighted/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example-html.html @@ -1,6 +1,6 @@ <div> - <button mat-raised-button (click)="tables.push(tables.length)">Add table</button> - <button mat-raised-button (click)="tables.pop()">Remove table</button> + <button matButton="elevated" (click)="tables.push(tables.length)">Add table</button> + <button matButton="elevated" (click)="tables.pop()">Remove table</button> </div> <div> diff --git a/docs-content/examples-highlighted/material/table/table-sticky-complex/table-sticky-complex-example-html.html b/docs-content/examples-highlighted/material/table/table-sticky-complex/table-sticky-complex-example-html.html index be2fd189d2..be1ce0d8e1 100755 --- a/docs-content/examples-highlighted/material/table/table-sticky-complex/table-sticky-complex-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-sticky-complex/table-sticky-complex-example-html.html @@ -1,6 +1,6 @@ <div> - <button mat-raised-button (click)="tables.push(tables.length)">Add table</button> - <button mat-raised-button (click)="tables.pop()">Remove table</button> + <button matButton="elevated" (click)="tables.push(tables.length)">Add table</button> + <button matButton="elevated" (click)="tables.pop()">Remove table</button> </div> <div> diff --git a/docs-content/examples-highlighted/material/table/table-wrapped/table-wrapped-example-html.html b/docs-content/examples-highlighted/material/table/table-wrapped/table-wrapped-example-html.html index e61713ad27..6a2e1b81a2 100755 --- a/docs-content/examples-highlighted/material/table/table-wrapped/table-wrapped-example-html.html +++ b/docs-content/examples-highlighted/material/table/table-wrapped/table-wrapped-example-html.html @@ -1,6 +1,6 @@ <div> - <button mat-raised-button (click)="clearTable()">Clear table</button> - <button mat-raised-button (click)="addData()">Add data</button> + <button matButton="elevated" (click)="clearTable()">Clear table</button> + <button matButton="elevated" (click)="addData()">Add data</button> </div> <wrapper-table [dataSource]="dataSource" [columns]="displayedColumns" diff --git a/docs-content/examples-highlighted/material/tabs/tab-group-dynamic/tab-group-dynamic-example-html.html b/docs-content/examples-highlighted/material/tabs/tab-group-dynamic/tab-group-dynamic-example-html.html index 9b85b28488..c1750fd0b0 100755 --- a/docs-content/examples-highlighted/material/tabs/tab-group-dynamic/tab-group-dynamic-example-html.html +++ b/docs-content/examples-highlighted/material/tabs/tab-group-dynamic/tab-group-dynamic-example-html.html @@ -4,7 +4,7 @@ </mat-form-field> <div> - <button mat-raised-button + <button matButton="elevated" class="example-add-tab-button" (click)="addTab(selectAfterAdding.checked)"> Add new tab @@ -18,7 +18,7 @@ <mat-tab [label]="tab"> Contents for {{tab}} tab - <button mat-raised-button + <button matButton="elevated" class="example-delete-tab-button" [disabled]="tabs.length === 1" (click)="removeTab(index)"> diff --git a/docs-content/examples-highlighted/material/tabs/tab-group-harness/tab-group-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/tabs/tab-group-harness/tab-group-harness-example.spec-ts.html index 0d4a651154..0d42779230 100755 --- a/docs-content/examples-highlighted/material/tabs/tab-group-harness/tab-group-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/tabs/tab-group-harness/tab-group-harness-example.spec-ts.html @@ -3,16 +3,12 @@ import {MatTabGroupHarness} from '@angular/material/tabs/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {TabGroupHarnessExample} from './tab-group-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('TabGroupHarnessExample', () => { let fixture: ComponentFixture<TabGroupHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(TabGroupHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-highlighted/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example-html.html b/docs-content/examples-highlighted/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example-html.html index 7ce9577a4b..5dc37ae81a 100755 --- a/docs-content/examples-highlighted/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example-html.html +++ b/docs-content/examples-highlighted/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example-html.html @@ -8,6 +8,6 @@ </nav> <mat-tab-nav-panel #tabPanel></mat-tab-nav-panel> -<button mat-raised-button class="example-action-button" (click)="addLink()"> +<button matButton="elevated" class="example-action-button" (click)="addLink()"> Add link </button> diff --git a/docs-content/examples-highlighted/material/timepicker/timepicker-harness/timepicker-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/timepicker/timepicker-harness/timepicker-harness-example.spec-ts.html index 2b8e8aa188..06a919411b 100755 --- a/docs-content/examples-highlighted/material/timepicker/timepicker-harness/timepicker-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/timepicker/timepicker-harness/timepicker-harness-example.spec-ts.html @@ -3,15 +3,17 @@ import {MatTimepickerInputHarness} from '@angular/material/timepicker/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {TimepickerHarnessExample} from './timepicker-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {DateAdapter, MatNativeDateModule} from '@angular/material/core'; +import {DateAdapter, MATERIAL_ANIMATIONS, MatNativeDateModule} from '@angular/material/core'; describe('TimepickerHarnessExample', () => { let fixture: ComponentFixture<TimepickerHarnessExample>; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({imports: [NoopAnimationsModule, MatNativeDateModule]}); + TestBed.configureTestingModule({ + imports: [MatNativeDateModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], + }); TestBed.inject(DateAdapter).setLocale('en-US'); // Set the locale to en-US to guarantee consistent tests. fixture = TestBed.createComponent(TimepickerHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/timepicker/timepicker-locale/timepicker-locale-example-html.html b/docs-content/examples-highlighted/material/timepicker/timepicker-locale/timepicker-locale-example-html.html index faac01376c..59652f6966 100755 --- a/docs-content/examples-highlighted/material/timepicker/timepicker-locale/timepicker-locale-example-html.html +++ b/docs-content/examples-highlighted/material/timepicker/timepicker-locale/timepicker-locale-example-html.html @@ -5,4 +5,4 @@ <mat-timepicker #picker/> </mat-form-field> -<button mat-button (click)="switchLocale()">Dynamically switch to Bulgarian</button> +<button matButton (click)="switchLocale()">Dynamically switch to Bulgarian</button> diff --git a/docs-content/examples-highlighted/material/toolbar/toolbar-basic/toolbar-basic-example-html.html b/docs-content/examples-highlighted/material/toolbar/toolbar-basic/toolbar-basic-example-html.html index 15210c0488..dc1399b216 100755 --- a/docs-content/examples-highlighted/material/toolbar/toolbar-basic/toolbar-basic-example-html.html +++ b/docs-content/examples-highlighted/material/toolbar/toolbar-basic/toolbar-basic-example-html.html @@ -1,13 +1,13 @@ <mat-toolbar> - <button mat-icon-button class="example-icon" aria-label="Example icon-button with menu icon"> + <button matIconButton class="example-icon" aria-label="Example icon-button with menu icon"> <mat-icon>menu</mat-icon> </button> <span>My App</span> <span class="example-spacer"></span> - <button mat-icon-button class="example-icon favorite-icon" aria-label="Example icon-button with heart icon"> + <button matIconButton class="example-icon favorite-icon" aria-label="Example icon-button with heart icon"> <mat-icon>favorite</mat-icon> </button> - <button mat-icon-button class="example-icon" aria-label="Example icon-button with share icon"> + <button matIconButton class="example-icon" aria-label="Example icon-button with share icon"> <mat-icon>share</mat-icon> </button> </mat-toolbar> diff --git a/docs-content/examples-highlighted/material/toolbar/toolbar-harness/toolbar-harness-example-html.html b/docs-content/examples-highlighted/material/toolbar/toolbar-harness/toolbar-harness-example-html.html index b4e1013551..aa601c1f0c 100755 --- a/docs-content/examples-highlighted/material/toolbar/toolbar-harness/toolbar-harness-example-html.html +++ b/docs-content/examples-highlighted/material/toolbar/toolbar-harness/toolbar-harness-example-html.html @@ -2,10 +2,10 @@ <mat-toolbar> <mat-toolbar-row><span>Row 1</span></mat-toolbar-row> <mat-toolbar-row><span>Row 2</span> - <button mat-button> + <button matButton> Button 1 </button> - <button mat-button> + <button matButton> Button 2 </button> </mat-toolbar-row> diff --git a/docs-content/examples-highlighted/material/toolbar/toolbar-overview/toolbar-overview-example-html.html b/docs-content/examples-highlighted/material/toolbar/toolbar-overview/toolbar-overview-example-html.html index 15210c0488..dc1399b216 100755 --- a/docs-content/examples-highlighted/material/toolbar/toolbar-overview/toolbar-overview-example-html.html +++ b/docs-content/examples-highlighted/material/toolbar/toolbar-overview/toolbar-overview-example-html.html @@ -1,13 +1,13 @@ <mat-toolbar> - <button mat-icon-button class="example-icon" aria-label="Example icon-button with menu icon"> + <button matIconButton class="example-icon" aria-label="Example icon-button with menu icon"> <mat-icon>menu</mat-icon> </button> <span>My App</span> <span class="example-spacer"></span> - <button mat-icon-button class="example-icon favorite-icon" aria-label="Example icon-button with heart icon"> + <button matIconButton class="example-icon favorite-icon" aria-label="Example icon-button with heart icon"> <mat-icon>favorite</mat-icon> </button> - <button mat-icon-button class="example-icon" aria-label="Example icon-button with share icon"> + <button matIconButton class="example-icon" aria-label="Example icon-button with share icon"> <mat-icon>share</mat-icon> </button> </mat-toolbar> diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example-html.html index 4bb7e0fb14..b03fcd5f65 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example-html.html @@ -8,7 +8,7 @@ </mat-form-field> <div class="example-container" cdkScrollable> - <button mat-raised-button #tooltip="matTooltip" + <button matButton="elevated" #tooltip="matTooltip" matTooltip="Info about the action" [matTooltipPosition]="position.value!" matTooltipHideDelay="100000" diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-custom-class/tooltip-custom-class-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-custom-class/tooltip-custom-class-example-html.html index 80c645e77b..d7303fdb84 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-custom-class/tooltip-custom-class-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-custom-class/tooltip-custom-class-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button +<button matButton="elevated" matTooltip="Info about the action" matTooltipClass="example-tooltip-uppercase" aria-label="Button that shows a red tooltip" diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-delay/tooltip-delay-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-delay/tooltip-delay-example-html.html index d45675a221..b7457694cc 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-delay/tooltip-delay-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-delay/tooltip-delay-example-html.html @@ -12,7 +12,7 @@ <mat-hint>milliseconds</mat-hint> </mat-form-field> -<button mat-raised-button matTooltip="Info about the action" +<button matButton="elevated" matTooltip="Info about the action" [matTooltipShowDelay]="showDelay.value" [matTooltipHideDelay]="hideDelay.value" aria-label="Button that displays a tooltip with a customized delay in showing and hiding"> diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-disabled/tooltip-disabled-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-disabled/tooltip-disabled-example-html.html index 1b9740c438..e1b4bec1e3 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-disabled/tooltip-disabled-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-disabled/tooltip-disabled-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button +<button matButton="elevated" matTooltip="Info about the action" [matTooltipDisabled]="disabled.value" aria-label="Button that displays a tooltip that can be programmatically disabled"> diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-harness/tooltip-harness-example.spec-ts.html b/docs-content/examples-highlighted/material/tooltip/tooltip-harness/tooltip-harness-example.spec-ts.html index 47d52c02fb..b567b879e0 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-harness/tooltip-harness-example.spec-ts.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-harness/tooltip-harness-example.spec-ts.html @@ -1,10 +1,9 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatTooltipHarness} from '@angular/material/tooltip/testing'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {HarnessLoader} from '@angular/cdk/testing'; import {TooltipHarnessExample} from './tooltip-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatTooltipModule} from '@angular/material/tooltip'; describe('TooltipHarnessExample', () => { let fixture: ComponentFixture<TooltipHarnessExample>; @@ -12,7 +11,7 @@ beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatTooltipModule, NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(TooltipHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-manual/tooltip-manual-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-manual/tooltip-manual-example-html.html index e0e05c8cad..a0728572f5 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-manual/tooltip-manual-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-manual/tooltip-manual-example-html.html @@ -1,18 +1,18 @@ <div> <span> Click the following buttons to... </span> - <button mat-button + <button matButton (click)="tooltip.show()" aria-label="Show tooltip on the button at the end of this section" class="example-action-button"> show </button> - <button mat-button + <button matButton (click)="tooltip.hide()" aria-label="Hide tooltip on the button at the end of this section" class="example-action-button"> hide </button> - <button mat-button + <button matButton (click)="tooltip.toggle()" aria-label="Show/Hide tooltip on the button at the end of this section" class="example-action-button"> @@ -20,9 +20,9 @@ </button> </div> -<button mat-raised-button #tooltip="matTooltip" +<button matButton="elevated" #tooltip="matTooltip" matTooltip="Info about the action" matTooltipPosition="right" aria-tooltip="Button that displays and hides a tooltip triggered by other buttons"> Action -</button> \ No newline at end of file +</button> diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-message/tooltip-message-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-message/tooltip-message-example-html.html index 0c426510f9..51c00bf73c 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-message/tooltip-message-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-message/tooltip-message-example-html.html @@ -3,7 +3,7 @@ <input matInput [formControl]="message"> </mat-form-field> -<button mat-raised-button +<button matButton="elevated" [matTooltip]="message.value || ''" aria-label="Button that displays a tooltip with a custom message"> Action diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example-html.html index b4659cc4ee..d3061bef6a 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button +<button matButton="elevated" matTooltip="By default, I delay" aria-label="Button that displays a tooltip that has custom delays through a default config"> Button with delay-default tooltip diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-overview/tooltip-overview-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-overview/tooltip-overview-example-html.html index 80e87e3565..0d39402366 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-overview/tooltip-overview-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-overview/tooltip-overview-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button +<button matButton="elevated" matTooltip="Info about the action" aria-label="Button that displays a tooltip when focused or hovered over"> Action diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example-html.html index 2994d42eb2..1e798b1b51 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example-html.html @@ -1,4 +1,4 @@ -<button mat-raised-button +<button matButton="elevated" class="demo-button" matTooltip="Info about the action" [matTooltipPositionAtOrigin]="enabled.value" diff --git a/docs-content/examples-highlighted/material/tooltip/tooltip-position/tooltip-position-example-html.html b/docs-content/examples-highlighted/material/tooltip/tooltip-position/tooltip-position-example-html.html index bd7f8ff5e4..29c63ac973 100755 --- a/docs-content/examples-highlighted/material/tooltip/tooltip-position/tooltip-position-example-html.html +++ b/docs-content/examples-highlighted/material/tooltip/tooltip-position/tooltip-position-example-html.html @@ -7,7 +7,7 @@ </mat-select> </mat-form-field> -<button mat-raised-button +<button matButton="elevated" matTooltip="Info about the action" [matTooltipPosition]="position.value!" aria-label="Button that displays a tooltip in various positions"> diff --git a/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-html.html b/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-html.html index 564fdd8902..a6217755a6 100755 --- a/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-html.html @@ -1,11 +1,11 @@ <mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.item}} </mat-tree-node> <mat-tree-node *matTreeNodeDef="let node; when: hasChild" matTreeNodePadding matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.item"> - <button mat-icon-button + <button matIconButton [attr.aria-label]="'Toggle ' + node.item" matTreeNodeToggle> <mat-icon class="mat-icon-rtl-mirror"> {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} diff --git a/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-ts.html index 7a75929662..1308234b27 100755 --- a/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-dynamic/tree-dynamic-example-ts.html @@ -9,7 +9,7 @@ import {MatTreeModule} from '@angular/material/tree'; /** Flat node with expandable and level information */ -export class DynamicFlatNode { +class DynamicFlatNode { constructor( public item: string, public level = 1, diff --git a/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-html.html b/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-html.html index 7590b628b4..dd1ac9c188 100755 --- a/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-html.html @@ -2,13 +2,13 @@ <!-- This is the tree node template for leaf nodes --> <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </mat-tree-node> <!-- This is the tree node template for expandable nodes --> <mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name"> - <button mat-icon-button matTreeNodeToggle + <button matIconButton matTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}} diff --git a/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-ts.html index df89b58d83..2a02672f39 100755 --- a/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example-ts.html @@ -12,7 +12,24 @@ children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ +/** + * @title Tree with flat nodes (childrenAccessor) + */ +@Component({ + selector: 'tree-flat-child-accessor-overview-example', + templateUrl: 'tree-flat-child-accessor-overview-example.html', + imports: [MatTreeModule, MatButtonModule, MatIconModule], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class TreeFlatChildAccessorOverviewExample { + dataSource = EXAMPLE_DATA; + + childrenAccessor = (node: FoodNode) => node.children ?? []; + + hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; +} + +const EXAMPLE_DATA: FoodNode[] = [ { name: 'Fruit', children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], @@ -31,20 +48,3 @@ ], }, ]; - -/** - * @title Tree with flat nodes (childrenAccessor) - */ -@Component({ - selector: 'tree-flat-child-accessor-overview-example', - templateUrl: 'tree-flat-child-accessor-overview-example.html', - imports: [MatTreeModule, MatButtonModule, MatIconModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class TreeFlatChildAccessorOverviewExample { - dataSource = TREE_DATA; - - childrenAccessor = (node: FoodNode) => node.children ?? []; - - hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; -} diff --git a/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-html.html b/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-html.html index 3a4f27f3d0..f04843d3b2 100755 --- a/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-html.html @@ -2,13 +2,13 @@ <!-- This is the tree node template for leaf nodes --> <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </mat-tree-node> <!-- This is the tree node template for expandable nodes --> <mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name"> - <button mat-icon-button matTreeNodeToggle + <button matIconButton matTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} diff --git a/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-ts.html index b7abffd4f5..cf7209a820 100755 --- a/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-flat-overview/tree-flat-overview-example-ts.html @@ -13,26 +13,6 @@ children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ - { - name: 'Fruit', - children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], - }, - { - name: 'Orange', - children: [{name: 'Pumpkins'}, {name: 'Carrots'}], - }, - ], - }, -]; - /** Flat node with expandable and level information */ interface ExampleFlatNode { expandable: boolean; @@ -73,8 +53,28 @@ dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); constructor() { - this.dataSource.data = TREE_DATA; + this.dataSource.data = EXAMPLE_DATA; } hasChild = (_: number, node: ExampleFlatNode) => node.expandable; } + +const EXAMPLE_DATA: FoodNode[] = [ + { + name: 'Fruit', + children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], + }, + { + name: 'Vegetables', + children: [ + { + name: 'Green', + children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], + }, + { + name: 'Orange', + children: [{name: 'Pumpkins'}, {name: 'Carrots'}], + }, + ], + }, +]; diff --git a/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-html.html b/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-html.html index 3a4f27f3d0..f04843d3b2 100755 --- a/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-html.html @@ -2,13 +2,13 @@ <!-- This is the tree node template for leaf nodes --> <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </mat-tree-node> <!-- This is the tree node template for expandable nodes --> <mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name"> - <button mat-icon-button matTreeNodeToggle + <button matIconButton matTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} diff --git a/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-ts.html index 9aeae58972..6c78373eef 100755 --- a/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-harness/tree-harness-example-ts.html @@ -9,22 +9,6 @@ children?: Node[]; } -const FLAT_TREE_DATA: Node[] = [ - { - name: 'Flat Group 1', - children: [{name: 'Flat Leaf 1.1'}, {name: 'Flat Leaf 1.2'}, {name: 'Flat Leaf 1.3'}], - }, - { - name: 'Flat Group 2', - children: [ - { - name: 'Flat Group 2.1', - children: [{name: 'Flat Leaf 2.1.1'}, {name: 'Flat Leaf 2.1.2'}, {name: 'Flat Leaf 2.1.3'}], - }, - ], - }, -]; - interface ExampleFlatNode { expandable: boolean; name: string; @@ -64,8 +48,24 @@ dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); constructor() { - this.dataSource.data = FLAT_TREE_DATA; + this.dataSource.data = EXAMPLE_DATA; } hasChild = (_: number, node: ExampleFlatNode) => node.expandable; } + +const EXAMPLE_DATA: Node[] = [ + { + name: 'Flat Group 1', + children: [{name: 'Flat Leaf 1.1'}, {name: 'Flat Leaf 1.2'}, {name: 'Flat Leaf 1.3'}], + }, + { + name: 'Flat Group 2', + children: [ + { + name: 'Flat Group 2.1', + children: [{name: 'Flat Leaf 2.1.1'}, {name: 'Flat Leaf 2.1.2'}, {name: 'Flat Leaf 2.1.3'}], + }, + ], + }, +]; diff --git a/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-html.html b/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-html.html index d1ad9280cc..b09069ac35 100755 --- a/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-html.html @@ -4,7 +4,7 @@ class="example-tree-node" tabindex="0"> <!-- use a disabled button to provide padding for tree leaf --> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </mat-tree-node> <!-- This is the tree node template for expandable nodes --> diff --git a/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-ts.html index e05ca89f44..fc248acd78 100755 --- a/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example-ts.html @@ -6,7 +6,48 @@ import {NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER} from '@angular/cdk/a11y'; import {MatTreeModule} from '@angular/material/tree'; -const TREE_DATA: ExampleFlatNode[] = [ +/** Flat node with expandable and level information */ +interface ExampleFlatNode { + expandable: boolean; + name: string; + level: number; +} + +/** + * @title Tree with flat nodes + */ +@Component({ + selector: 'tree-legacy-keyboard-interface-example', + templateUrl: 'tree-legacy-keyboard-interface-example.html', + styleUrls: ['tree-legacy-keyboard-interface-example.css'], + imports: [MatTreeModule, MatButtonModule, MatIconModule], + providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class TreeLegacyKeyboardInterfaceExample { + treeControl = new FlatTreeControl<ExampleFlatNode>( + node => node.level, + node => node.expandable, + ); + + dataSource = new ArrayDataSource(EXAMPLE_DATA); + + hasChild = (_: number, node: ExampleFlatNode) => node.expandable; + + getParentNode(node: ExampleFlatNode) { + const nodeIndex = EXAMPLE_DATA.indexOf(node); + + for (let i = nodeIndex - 1; i >= 0; i--) { + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; + } + } + + return null; + } +} + +const EXAMPLE_DATA: ExampleFlatNode[] = [ { name: 'Fruit', expandable: true, @@ -63,44 +104,3 @@ level: 2, }, ]; - -/** Flat node with expandable and level information */ -interface ExampleFlatNode { - expandable: boolean; - name: string; - level: number; -} - -/** - * @title Tree with flat nodes - */ -@Component({ - selector: 'tree-legacy-keyboard-interface-example', - templateUrl: 'tree-legacy-keyboard-interface-example.html', - styleUrls: ['tree-legacy-keyboard-interface-example.css'], - imports: [MatTreeModule, MatButtonModule, MatIconModule], - providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class TreeLegacyKeyboardInterfaceExample { - treeControl = new FlatTreeControl<ExampleFlatNode>( - node => node.level, - node => node.expandable, - ); - - dataSource = new ArrayDataSource(TREE_DATA); - - hasChild = (_: number, node: ExampleFlatNode) => node.expandable; - - getParentNode(node: ExampleFlatNode) { - const nodeIndex = TREE_DATA.indexOf(node); - - for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; - } - } - - return null; - } -} diff --git a/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-html.html b/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-html.html index b7d9824abf..99c0b4cb1f 100755 --- a/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-html.html @@ -1,14 +1,14 @@ <mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> <!-- Leaf node --> <mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding> - <button mat-icon-button disabled></button> + <button matIconButton disabled></button> {{node.name}} </mat-tree-node> <!-- expandable node --> <mat-tree-node *matTreeNodeDef="let node; when: hasChild" matTreeNodePadding matTreeNodeToggle (expandedChange)="loadChildren(node)" [cdkTreeNodeTypeaheadLabel]="node.name"> - <button mat-icon-button + <button matIconButton [attr.aria-label]="'Toggle ' + node.name" matTreeNodeToggle> <mat-icon class="mat-icon-rtl-mirror"> diff --git a/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-ts.html index fcd0b22d95..5f636162a1 100755 --- a/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-loadmore/tree-loadmore-example-ts.html @@ -13,11 +13,10 @@ import {MatButtonModule} from '@angular/material/button'; import {ENTER, SPACE} from '@angular/cdk/keycodes'; -const LOAD_MORE = 'LOAD_MORE'; let loadMoreId = 1; /** Nested node */ -export class NestedNode { +class NestedNode { childrenChange = new BehaviorSubject<NestedNode[]>([]); get children(): NestedNode[] { @@ -104,7 +103,7 @@ .map(name => this._generateNode(name, parent.name)); if (newChildrenNumber < children.length) { // Need a new "Load More" node - nodes.push(new NestedNode(`${LOAD_MORE}-${loadMoreId++}`, false, name, true)); + nodes.push(new NestedNode(`LOAD_MORE-${loadMoreId++}`, false, name, true)); } parent.childrenChange.next(nodes); diff --git a/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-html.html b/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-html.html index d73c3975c8..32a547174f 100755 --- a/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-html.html @@ -1,7 +1,7 @@ <mat-tree #tree [dataSource]="dataSource" [childrenAccessor]="childrenAccessor" class="example-tree"> <!-- This is the tree node template for leaf nodes --> <!-- There is inline padding applied to this node using styles. - This padding value depends on the mat-icon-button width. --> + This padding value depends on the matIconButton width. --> <mat-nested-tree-node *matTreeNodeDef="let node"> {{node.name}} </mat-nested-tree-node> @@ -10,7 +10,7 @@ *matTreeNodeDef="let node; when: hasChild" matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name"> <div class="mat-tree-node"> - <button mat-icon-button matTreeNodeToggle + <button matIconButton matTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}} @@ -19,7 +19,7 @@ {{node.name}} </div> <!-- There is inline padding applied to this div using styles. - This padding value depends on the mat-icon-button width. --> + This padding value depends on the matIconButton width. --> <div [class.example-tree-invisible]="!tree.isExpanded(node)" role="group"> <ng-container matTreeNodeOutlet></ng-container> diff --git a/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-ts.html index 8d36eae9ee..a874239457 100755 --- a/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example-ts.html @@ -12,7 +12,25 @@ children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ +/** + * @title Tree with nested nodes (childrenAccessor) + */ +@Component({ + selector: 'tree-nested-child-accessor-overview-example', + templateUrl: 'tree-nested-child-accessor-overview-example.html', + styleUrl: 'tree-nested-child-accessor-overview-example.css', + imports: [MatTreeModule, MatButtonModule, MatIconModule], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class TreeNestedChildAccessorOverviewExample { + childrenAccessor = (node: FoodNode) => node.children ?? []; + + dataSource = EXAMPLE_DATA; + + hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; +} + +const EXAMPLE_DATA: FoodNode[] = [ { name: 'Fruit', children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], @@ -31,21 +49,3 @@ ], }, ]; - -/** - * @title Tree with nested nodes (childrenAccessor) - */ -@Component({ - selector: 'tree-nested-child-accessor-overview-example', - templateUrl: 'tree-nested-child-accessor-overview-example.html', - styleUrl: 'tree-nested-child-accessor-overview-example.css', - imports: [MatTreeModule, MatButtonModule, MatIconModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class TreeNestedChildAccessorOverviewExample { - childrenAccessor = (node: FoodNode) => node.children ?? []; - - dataSource = TREE_DATA; - - hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; -} diff --git a/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-html.html b/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-html.html index 42fb238246..13a2a148d2 100755 --- a/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-html.html +++ b/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-html.html @@ -1,7 +1,7 @@ <mat-tree [dataSource]="dataSource" [treeControl]="treeControl" class="example-tree"> <!-- This is the tree node template for leaf nodes --> <!-- There is inline padding applied to this node using styles. - This padding value depends on the mat-icon-button width. --> + This padding value depends on the matIconButton width. --> <mat-nested-tree-node *matTreeNodeDef="let node"> {{node.name}} </mat-nested-tree-node> @@ -10,7 +10,7 @@ *matTreeNodeDef="let node; when: hasChild" matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name"> <div class="mat-tree-node"> - <button mat-icon-button matTreeNodeToggle + <button matIconButton matTreeNodeToggle [attr.aria-label]="'Toggle ' + node.name"> <mat-icon class="mat-icon-rtl-mirror"> {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} @@ -19,7 +19,7 @@ {{node.name}} </div> <!-- There is inline padding applied to this div using styles. - This padding value depends on the mat-icon-button width. --> + This padding value depends on the matIconButton width. --> <div [class.example-tree-invisible]="!treeControl.isExpanded(node)" role="group"> <ng-container matTreeNodeOutlet></ng-container> diff --git a/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-ts.html b/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-ts.html index fd5e6d11e1..21f07995dd 100755 --- a/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-ts.html +++ b/docs-content/examples-highlighted/material/tree/tree-nested-overview/tree-nested-overview-example-ts.html @@ -13,26 +13,6 @@ children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ - { - name: 'Fruit', - children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], - }, - { - name: 'Orange', - children: [{name: 'Pumpkins'}, {name: 'Carrots'}], - }, - ], - }, -]; - /** * @title Tree with nested nodes */ @@ -48,8 +28,28 @@ dataSource = new MatTreeNestedDataSource<FoodNode>(); constructor() { - this.dataSource.data = TREE_DATA; + this.dataSource.data = EXAMPLE_DATA; } hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; } + +const EXAMPLE_DATA: FoodNode[] = [ + { + name: 'Fruit', + children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], + }, + { + name: 'Vegetables', + children: [ + { + name: 'Green', + children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], + }, + { + name: 'Orange', + children: [{name: 'Pumpkins'}, {name: 'Carrots'}], + }, + ], + }, +]; diff --git a/docs-content/examples-source/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts b/docs-content/examples-source/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts index 9758542d80..44857bd39f 100755 --- a/docs-content/examples-source/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts +++ b/docs-content/examples-source/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts @@ -6,8 +6,9 @@ import { ViewContainerRef, OnDestroy, inject, + Injector, } from '@angular/core'; -import {Overlay, OverlayRef} from '@angular/cdk/overlay'; +import {createGlobalPositionStrategy, createOverlayRef, OverlayRef} from '@angular/cdk/overlay'; import {TemplatePortal} from '@angular/cdk/portal'; import {CdkDrag} from '@angular/cdk/drag-drop'; @@ -21,7 +22,7 @@ import {CdkDrag} from '@angular/cdk/drag-drop'; imports: [CdkDrag], }) export class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy { - private _overlay = inject(Overlay); + private _injector = inject(Injector); private _viewContainerRef = inject(ViewContainerRef); @ViewChild(TemplateRef) _dialogTemplate: TemplateRef; @@ -30,8 +31,10 @@ export class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy { ngAfterViewInit() { this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef); - this._overlayRef = this._overlay.create({ - positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(), + this._overlayRef = createOverlayRef(this._injector, { + positionStrategy: createGlobalPositionStrategy(this._injector) + .centerHorizontally() + .centerVertically(), hasBackdrop: true, }); this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach()); diff --git a/docs-content/examples-source/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html b/docs-content/examples-source/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html index 1d2b160fe1..2b7eefe1ea 100755 --- a/docs-content/examples-source/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html +++ b/docs-content/examples-source/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html @@ -13,5 +13,5 @@ Autofilled! } - + diff --git a/docs-content/examples-source/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html b/docs-content/examples-source/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html index 22087273e8..2d7cd902ba 100755 --- a/docs-content/examples-source/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html +++ b/docs-content/examples-source/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html @@ -13,5 +13,5 @@ Autofilled! } - + diff --git a/docs-content/examples-source/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html b/docs-content/examples-source/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html index 90800833af..4de69376ae 100755 --- a/docs-content/examples-source/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html +++ b/docs-content/examples-source/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html @@ -20,7 +20,7 @@ @if (!node.areChildrenLoading() && node.isExpandable()) { + {{node.name}} @@ -17,7 +17,7 @@ (expandedChange)="node.isExpanded = $event" class="example-tree-node" tabindex="0"> - + {{node.name}} @@ -16,7 +16,7 @@ [isDisabled]="!shouldRender(node)" [isExpandable]="true" class="example-tree-node"> - + {{node.name}} @@ -16,7 +16,7 @@ [isDisabled]="!shouldRender(node)" [isExpandable]="node.expandable" class="example-tree-node"> - + {{node.name}} @@ -15,7 +15,7 @@ [isDisabled]="!shouldRender(node)" (expandedChange)="node.isExpanded = $event" class="example-tree-node"> - + {{node.name}} @@ -13,7 +13,7 @@ isExpandable class="example-tree-node"> + {{node.name}} @@ -14,7 +14,7 @@ isExpandable class="example-tree-node"> + {{node.name}} @@ -13,7 +13,7 @@ isExpandable class="example-tree-node"> - - + + + @@ -46,7 +46,7 @@ {{person.firstName}} - + @@ -61,7 +61,7 @@ {{person.middleName}} - + @@ -76,7 +76,7 @@ {{person.lastName}} - + diff --git a/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html b/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html index a636acd735..287a9d0315 100755 --- a/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html +++ b/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html @@ -47,16 +47,16 @@

    Name

    - - - + + +
    - + @@ -69,7 +69,7 @@

    Name

    {{element.weight}} - + diff --git a/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html b/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html index 414532d5a1..14041c5f71 100755 --- a/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html +++ b/docs-content/examples-source/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html @@ -26,10 +26,10 @@ - - @@ -62,9 +62,9 @@

    Name

    - - - + + +
    @@ -72,7 +72,7 @@

    Name

    @if (nameEditEnabled) { - + } @@ -109,7 +109,7 @@

    Name

    - + @@ -122,7 +122,7 @@

    Name

    {{element.weight}} - + @@ -162,15 +162,15 @@

    Name

    - - + +
    - + diff --git a/docs-content/examples-source/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec.ts b/docs-content/examples-source/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec.ts index f58dab2d92..7cb8bee825 100755 --- a/docs-content/examples-source/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec.ts +++ b/docs-content/examples-source/material/autocomplete/autocomplete-harness/autocomplete-harness-example.spec.ts @@ -3,17 +3,12 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatAutocompleteHarness} from '@angular/material/autocomplete/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {AutocompleteHarnessExample} from './autocomplete-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatAutocompleteModule} from '@angular/material/autocomplete'; describe('AutocompleteHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [MatAutocompleteModule, NoopAnimationsModule], - }); fixture = TestBed.createComponent(AutocompleteHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/badge/badge-harness/badge-harness-example.html b/docs-content/examples-source/material/badge/badge-harness/badge-harness-example.html index 9f9c8abd7b..6a7134c8b2 100755 --- a/docs-content/examples-source/material/badge/badge-harness/badge-harness-example.html +++ b/docs-content/examples-source/material/badge/badge-harness/badge-harness-example.html @@ -1,10 +1,10 @@ - - + diff --git a/docs-content/examples-source/material/badge/badge-overview/badge-overview-example.html b/docs-content/examples-source/material/badge/badge-overview/badge-overview-example.html index eab17a8271..ba35dcacfb 100755 --- a/docs-content/examples-source/material/badge/badge-overview/badge-overview-example.html +++ b/docs-content/examples-source/material/badge/badge-overview/badge-overview-example.html @@ -10,7 +10,7 @@
    Button with a badge on the left - @@ -19,7 +19,7 @@
    Button toggles badge visibility - diff --git a/docs-content/examples-source/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec.ts b/docs-content/examples-source/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec.ts index e592441add..d3a9854abd 100755 --- a/docs-content/examples-source/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec.ts +++ b/docs-content/examples-source/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.spec.ts @@ -3,8 +3,7 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatBottomSheetHarness} from '@angular/material/bottom-sheet/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {BottomSheetHarnessExample} from './bottom-sheet-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatBottomSheetModule} from '@angular/material/bottom-sheet'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; describe('BottomSheetHarnessExample', () => { let fixture: ComponentFixture; @@ -12,7 +11,7 @@ describe('BottomSheetHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatBottomSheetModule, NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(BottomSheetHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html b/docs-content/examples-source/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html index d98052160c..a7a6bef8c7 100755 --- a/docs-content/examples-source/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html +++ b/docs-content/examples-source/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html @@ -1,3 +1,3 @@

    You have received a file called "cat-picture.jpeg".

    - + diff --git a/docs-content/examples-source/material/button/button-disabled-interactive/button-disabled-interactive-example.html b/docs-content/examples-source/material/button/button-disabled-interactive/button-disabled-interactive-example.html index 23b52d5c66..5925e29919 100755 --- a/docs-content/examples-source/material/button/button-disabled-interactive/button-disabled-interactive-example.html +++ b/docs-content/examples-source/material/button/button-disabled-interactive/button-disabled-interactive-example.html @@ -1,10 +1,10 @@ diff --git a/docs-content/examples-source/material/button/button-harness/button-harness-example.html b/docs-content/examples-source/material/button/button-harness/button-harness-example.html index 42289b6464..f40c06ea8d 100755 --- a/docs-content/examples-source/material/button/button-harness/button-harness-example.html +++ b/docs-content/examples-source/material/button/button-harness/button-harness-example.html @@ -1,3 +1,3 @@ - diff --git a/docs-content/examples-source/material/button/button-overview/button-overview-example.css b/docs-content/examples-source/material/button/button-overview/button-overview-example.css index 0706c1b66c..06631239a9 100755 --- a/docs-content/examples-source/material/button/button-overview/button-overview-example.css +++ b/docs-content/examples-source/material/button/button-overview/button-overview-example.css @@ -1,16 +1,15 @@ section { - display: table; + display: flex; + align-items: center; } .example-label { - display: table-cell; font-size: 14px; - margin-left: 8px; + margin: 0 16px 0 8px; min-width: 120px; } .example-button-row { - display: table-cell; max-width: 600px; } @@ -23,9 +22,3 @@ section { justify-content: space-between; flex-wrap: wrap; } - -.example-button-container { - display: flex; - justify-content: center; - width: 140px; -} diff --git a/docs-content/examples-source/material/button/button-overview/button-overview-example.html b/docs-content/examples-source/material/button/button-overview/button-overview-example.html index feb62a8caf..f2dee64faf 100755 --- a/docs-content/examples-source/material/button/button-overview/button-overview-example.html +++ b/docs-content/examples-source/material/button/button-overview/button-overview-example.html @@ -1,110 +1,106 @@
    -
    Basic
    +
    Text
    - - - Link + + + Link
    - +
    -
    Raised
    +
    Elevated
    - - - Link + + + Link
    - +
    -
    Stroked
    +
    Outlined
    - - - Link + + + Link
    - +
    -
    Flat
    +
    Filled
    - - - Link + + + Link
    - + +
    +
    Tonal
    +
    + + + Link +
    +
    +
    Icon
    - -
    - +
    -
    FAB
    +
    Floating Action Button (FAB)
    -
    - -
    -
    - -
    + +
    - +
    Mini FAB
    -
    - -
    -
    - -
    + +
    +
    -
    Extended Fab
    +
    Extended FAB
    -
    - -
    -
    - -
    - + + + + favorite + Link +
    diff --git a/docs-content/examples-source/material/button/button-overview/button-overview-example.ts b/docs-content/examples-source/material/button/button-overview/button-overview-example.ts index 21a5f38220..c7783cb767 100755 --- a/docs-content/examples-source/material/button/button-overview/button-overview-example.ts +++ b/docs-content/examples-source/material/button/button-overview/button-overview-example.ts @@ -4,7 +4,7 @@ import {MatDividerModule} from '@angular/material/divider'; import {MatButtonModule} from '@angular/material/button'; /** - * @title Basic buttons + * @title Button overview */ @Component({ selector: 'button-overview-example', diff --git a/docs-content/examples-source/material/card/card-actions/card-actions-example.html b/docs-content/examples-source/material/card/card-actions/card-actions-example.html index 10db36f2ce..9c739dce8e 100755 --- a/docs-content/examples-source/material/card/card-actions/card-actions-example.html +++ b/docs-content/examples-source/material/card/card-actions/card-actions-example.html @@ -4,7 +4,7 @@ Herding group - +
    @@ -14,6 +14,6 @@ Non-sporting group - + diff --git a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.html b/docs-content/examples-source/material/card/card-fancy/card-fancy-example.html deleted file mode 100755 index f4f90b2553..0000000000 --- a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.html +++ /dev/null @@ -1,19 +0,0 @@ - - -
    - Shiba Inu - Dog Breed -
    - Photo of a Shiba Inu - -

    - The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. - A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally - bred for hunting. -

    -
    - - - - -
    diff --git a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.ts b/docs-content/examples-source/material/card/card-fancy/card-fancy-example.ts deleted file mode 100755 index f2e1a64125..0000000000 --- a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.ts +++ /dev/null @@ -1,15 +0,0 @@ -import {ChangeDetectionStrategy, Component} from '@angular/core'; -import {MatButtonModule} from '@angular/material/button'; -import {MatCardModule} from '@angular/material/card'; - -/** - * @title Card with multiple sections - */ -@Component({ - selector: 'card-fancy-example', - templateUrl: 'card-fancy-example.html', - styleUrl: 'card-fancy-example.css', - imports: [MatCardModule, MatButtonModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class CardFancyExample {} diff --git a/docs-content/examples-source/material/card/card-harness/card-harness-example.html b/docs-content/examples-source/material/card/card-harness/card-harness-example.html index ceffe05027..73d7b904da 100755 --- a/docs-content/examples-source/material/card/card-harness/card-harness-example.html +++ b/docs-content/examples-source/material/card/card-harness/card-harness-example.html @@ -15,7 +15,7 @@

    - - + + diff --git a/docs-content/examples-source/material/card/card-media-size/card-media-size-example.html b/docs-content/examples-source/material/card/card-media-size/card-media-size-example.html index 891f4fde82..667f520484 100755 --- a/docs-content/examples-source/material/card/card-media-size/card-media-size-example.html +++ b/docs-content/examples-source/material/card/card-media-size/card-media-size-example.html @@ -4,7 +4,7 @@ Shiba Inu Small - + @@ -17,7 +17,7 @@ Shiba Inu Medium - Image of a Shiba Inu + Image of a Shiba Inu @@ -30,7 +30,7 @@ Shiba Inu Large - + @@ -43,7 +43,7 @@ Shiba Inu Extra large - + diff --git a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.css b/docs-content/examples-source/material/card/card-overview/card-overview-example.css similarity index 50% rename from docs-content/examples-source/material/card/card-fancy/card-fancy-example.css rename to docs-content/examples-source/material/card/card-overview/card-overview-example.css index 943bdd1cb0..9930db5b78 100755 --- a/docs-content/examples-source/material/card/card-fancy/card-fancy-example.css +++ b/docs-content/examples-source/material/card/card-overview/card-overview-example.css @@ -3,6 +3,6 @@ } .example-header-image { - background-image: url('https://material.angular.io/assets/img/examples/shiba1.jpg'); + background-image: url('https://material.angular.dev/assets/img/examples/shiba1.jpg'); background-size: cover; } diff --git a/docs-content/examples-source/material/card/card-overview/card-overview-example.html b/docs-content/examples-source/material/card/card-overview/card-overview-example.html index 6805d4fb82..4617d74082 100755 --- a/docs-content/examples-source/material/card/card-overview/card-overview-example.html +++ b/docs-content/examples-source/material/card/card-overview/card-overview-example.html @@ -1,3 +1,19 @@ - - Simple card + + +
    + Shiba Inu + Dog Breed +
    + Photo of a Shiba Inu + +

    + The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. + A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally + bred for hunting. +

    +
    + + + +
    diff --git a/docs-content/examples-source/material/card/card-overview/card-overview-example.ts b/docs-content/examples-source/material/card/card-overview/card-overview-example.ts index 20d771a367..59b143aad5 100755 --- a/docs-content/examples-source/material/card/card-overview/card-overview-example.ts +++ b/docs-content/examples-source/material/card/card-overview/card-overview-example.ts @@ -1,13 +1,15 @@ import {ChangeDetectionStrategy, Component} from '@angular/core'; +import {MatButtonModule} from '@angular/material/button'; import {MatCardModule} from '@angular/material/card'; /** - * @title Basic cards + * @title Card overview */ @Component({ selector: 'card-overview-example', templateUrl: 'card-overview-example.html', - imports: [MatCardModule], + styleUrl: 'card-overview-example.css', + imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, }) export class CardOverviewExample {} diff --git a/docs-content/examples-source/material/card/index.ts b/docs-content/examples-source/material/card/index.ts index 2c526e731a..9b4642266d 100755 --- a/docs-content/examples-source/material/card/index.ts +++ b/docs-content/examples-source/material/card/index.ts @@ -1,4 +1,3 @@ -export {CardFancyExample} from './card-fancy/card-fancy-example'; export {CardOverviewExample} from './card-overview/card-overview-example'; export {CardHarnessExample} from './card-harness/card-harness-example'; export {CardActionsExample} from './card-actions/card-actions-example'; diff --git a/docs-content/examples-source/material/checkbox/checkbox-harness/checkbox-harness-example.spec.ts b/docs-content/examples-source/material/checkbox/checkbox-harness/checkbox-harness-example.spec.ts index a1d9337250..e09cd3bc6b 100755 --- a/docs-content/examples-source/material/checkbox/checkbox-harness/checkbox-harness-example.spec.ts +++ b/docs-content/examples-source/material/checkbox/checkbox-harness/checkbox-harness-example.spec.ts @@ -3,12 +3,14 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {ComponentFixture, TestBed} from '@angular/core/testing'; import {MatCheckboxHarness} from '@angular/material/checkbox/testing'; import {CheckboxHarnessExample} from './checkbox-harness-example'; +import {provideCheckNoChangesConfig} from '@angular/core'; describe('CheckboxHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { + TestBed.configureTestingModule({providers: [provideCheckNoChangesConfig({exhaustive: false})]}); fixture = TestBed.createComponent(CheckboxHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/chips/chips-avatar/chips-avatar-example.html b/docs-content/examples-source/material/chips/chips-avatar/chips-avatar-example.html index 7a56290eaa..fb3b0f4c76 100755 --- a/docs-content/examples-source/material/chips/chips-avatar/chips-avatar-example.html +++ b/docs-content/examples-source/material/chips/chips-avatar/chips-avatar-example.html @@ -2,7 +2,7 @@ Photo of a Shiba Inu Dog one @@ -10,7 +10,7 @@ Photo of a Shiba Inu Dog two @@ -18,7 +18,7 @@ Photo of a Shiba Inu Dog three diff --git a/docs-content/examples-source/material/chips/chips-form-control/chips-form-control-example.html b/docs-content/examples-source/material/chips/chips-form-control/chips-form-control-example.html index 1e70975572..4cae76b49f 100755 --- a/docs-content/examples-source/material/chips/chips-form-control/chips-form-control-example.html +++ b/docs-content/examples-source/material/chips/chips-form-control/chips-form-control-example.html @@ -1,6 +1,6 @@
    - - + +

    Enter video keywords @@ -11,7 +11,7 @@ @for (keyword of keywords(); track keyword) { {{keyword}} - diff --git a/docs-content/examples-source/material/chips/chips-harness/chips-harness-example.ts b/docs-content/examples-source/material/chips/chips-harness/chips-harness-example.ts index 6808d4850d..e4fa273dde 100755 --- a/docs-content/examples-source/material/chips/chips-harness/chips-harness-example.ts +++ b/docs-content/examples-source/material/chips/chips-harness/chips-harness-example.ts @@ -1,3 +1,5 @@ +/// + import {ChangeDetectionStrategy, Component, signal} from '@angular/core'; import {MatChipsModule} from '@angular/material/chips'; import {MatIconModule} from '@angular/material/icon'; diff --git a/docs-content/examples-source/material/chips/chips-reactive-form/chips-reactive-form-example.html b/docs-content/examples-source/material/chips/chips-reactive-form/chips-reactive-form-example.html index 6e809960bf..57d9876d27 100755 --- a/docs-content/examples-source/material/chips/chips-reactive-form/chips-reactive-form-example.html +++ b/docs-content/examples-source/material/chips/chips-reactive-form/chips-reactive-form-example.html @@ -6,7 +6,7 @@

    Chips inside of a Reactive form

    @for (keyword of reactiveKeywords(); track keyword) { {{keyword}} - @@ -18,4 +18,4 @@

    Chips inside of a Reactive form

    (matChipInputTokenEnd)="addReactiveKeyword($event)" /> - \ No newline at end of file + diff --git a/docs-content/examples-source/material/chips/chips-template-form/chips-template-form-example.html b/docs-content/examples-source/material/chips/chips-template-form/chips-template-form-example.html index e9a99a6667..46dd40bdeb 100755 --- a/docs-content/examples-source/material/chips/chips-template-form/chips-template-form-example.html +++ b/docs-content/examples-source/material/chips/chips-template-form/chips-template-form-example.html @@ -6,7 +6,7 @@

    Chips inside of a Template-driven form

    @for (keyword of templateKeywords(); track keyword) { {{keyword}} - diff --git a/docs-content/examples-source/material/core/elevation-overview/elevation-overview-example.html b/docs-content/examples-source/material/core/elevation-overview/elevation-overview-example.html index 1e38c9220e..5292940f12 100755 --- a/docs-content/examples-source/material/core/elevation-overview/elevation-overview-example.html +++ b/docs-content/examples-source/material/core/elevation-overview/elevation-overview-example.html @@ -4,4 +4,4 @@ Example
    - + diff --git a/docs-content/examples-source/material/datepicker/datepicker-actions/datepicker-actions-example.html b/docs-content/examples-source/material/datepicker/datepicker-actions/datepicker-actions-example.html index 29ae1ae580..11837bba8e 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-actions/datepicker-actions-example.html +++ b/docs-content/examples-source/material/datepicker/datepicker-actions/datepicker-actions-example.html @@ -6,8 +6,8 @@ - - + + @@ -24,8 +24,8 @@ - - + + diff --git a/docs-content/examples-source/material/datepicker/datepicker-api/datepicker-api-example.html b/docs-content/examples-source/material/datepicker/datepicker-api/datepicker-api-example.html index 002db6923b..502d49e8c4 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-api/datepicker-api-example.html +++ b/docs-content/examples-source/material/datepicker/datepicker-api/datepicker-api-example.html @@ -4,4 +4,4 @@ MM/DD/YYYY - + diff --git a/docs-content/examples-source/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts b/docs-content/examples-source/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts index a198d8b869..f894673e9e 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts +++ b/docs-content/examples-source/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts @@ -39,17 +39,17 @@ export class DatepickerCustomHeaderExample { `, template: `
    - - {{periodLabel()}} - -
    diff --git a/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html b/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html index 375a5dc526..df858cc9d7 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html +++ b/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html @@ -8,6 +8,6 @@

    Datepicker in a Dialog

    - - + + diff --git a/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example.html b/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example.html index 95023116f0..2584be348a 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example.html +++ b/docs-content/examples-source/material/datepicker/datepicker-dialog/datepicker-dialog-example.html @@ -1,2 +1,2 @@

    Selected date: {{selectedDate()}}

    - + diff --git a/docs-content/examples-source/material/datepicker/datepicker-harness/datepicker-harness-example.spec.ts b/docs-content/examples-source/material/datepicker/datepicker-harness/datepicker-harness-example.spec.ts index 72f8f5faa4..a2ddcd06ea 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-harness/datepicker-harness-example.spec.ts +++ b/docs-content/examples-source/material/datepicker/datepicker-harness/datepicker-harness-example.spec.ts @@ -3,9 +3,7 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatDatepickerInputHarness} from '@angular/material/datepicker/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {DatepickerHarnessExample} from './datepicker-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatDatepickerModule} from '@angular/material/datepicker'; -import {MatNativeDateModule} from '@angular/material/core'; +import {MATERIAL_ANIMATIONS, MatNativeDateModule} from '@angular/material/core'; describe('DatepickerHarnessExample', () => { let fixture: ComponentFixture; @@ -13,7 +11,8 @@ describe('DatepickerHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatDatepickerModule, NoopAnimationsModule, MatNativeDateModule], + imports: [MatNativeDateModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(DatepickerHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/datepicker/datepicker-locale/datepicker-locale-example.html b/docs-content/examples-source/material/datepicker/datepicker-locale/datepicker-locale-example.html index aa9889acc6..b2db58289a 100755 --- a/docs-content/examples-source/material/datepicker/datepicker-locale/datepicker-locale-example.html +++ b/docs-content/examples-source/material/datepicker/datepicker-locale/datepicker-locale-example.html @@ -5,4 +5,4 @@ - + diff --git a/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example-dialog.html b/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example-dialog.html index 1c983e5e89..1edd9a9d8f 100755 --- a/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example-dialog.html +++ b/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example-dialog.html @@ -3,6 +3,6 @@

    Delete file

    Would you like to delete cat.jpeg? - - + + diff --git a/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example.html b/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example.html index e50b6eecdc..e967c4b06e 100755 --- a/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example.html +++ b/docs-content/examples-source/material/dialog/dialog-animations/dialog-animations-example.html @@ -1,2 +1,2 @@ - - + + diff --git a/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example-dialog.html b/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example-dialog.html index a5f12bc6ac..afe762bace 100755 --- a/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example-dialog.html +++ b/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example-dialog.html @@ -59,6 +59,6 @@

    Architecture overview

    sophisticated in-browser navigational capabilities.

    - - + + diff --git a/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example.html b/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example.html index cdfc2fb33b..6b68e35fc3 100755 --- a/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example.html +++ b/docs-content/examples-source/material/dialog/dialog-content/dialog-content-example.html @@ -1 +1 @@ - + diff --git a/docs-content/examples-source/material/dialog/dialog-data/dialog-data-example.html b/docs-content/examples-source/material/dialog/dialog-data/dialog-data-example.html index cdfc2fb33b..6b68e35fc3 100755 --- a/docs-content/examples-source/material/dialog/dialog-data/dialog-data-example.html +++ b/docs-content/examples-source/material/dialog/dialog-data/dialog-data-example.html @@ -1 +1 @@ - + diff --git a/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example-dialog.html b/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example-dialog.html index 206c9a3efa..175c60fc77 100755 --- a/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example-dialog.html +++ b/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example-dialog.html @@ -1,5 +1,5 @@

    Dialog with elements

    This dialog showcases the title, close, content and actions elements. - + diff --git a/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example.html b/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example.html index cf2103810f..9469c6f613 100755 --- a/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example.html +++ b/docs-content/examples-source/material/dialog/dialog-elements/dialog-elements-example.html @@ -1 +1 @@ - + diff --git a/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html b/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html index dbac55befb..45977231b8 100755 --- a/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html +++ b/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html @@ -2,5 +2,5 @@ This is a dialog - + diff --git a/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example.html b/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example.html index 43edf35651..5353eb5f5c 100755 --- a/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example.html +++ b/docs-content/examples-source/material/dialog/dialog-from-menu/dialog-from-menu-example.html @@ -1,4 +1,4 @@ - + diff --git a/docs-content/examples-source/material/dialog/dialog-harness/dialog-harness-example.spec.ts b/docs-content/examples-source/material/dialog/dialog-harness/dialog-harness-example.spec.ts index 58943abfa8..516e00f54c 100755 --- a/docs-content/examples-source/material/dialog/dialog-harness/dialog-harness-example.spec.ts +++ b/docs-content/examples-source/material/dialog/dialog-harness/dialog-harness-example.spec.ts @@ -1,9 +1,9 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {MatDialogHarness} from '@angular/material/dialog/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {DialogHarnessExample} from './dialog-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('DialogHarnessExample', () => { let fixture: ComponentFixture; @@ -11,7 +11,7 @@ describe('DialogHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(DialogHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example-dialog.html b/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example-dialog.html index 725de76c63..c8c5b7ed99 100755 --- a/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example-dialog.html +++ b/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example-dialog.html @@ -7,6 +7,6 @@

    Hi {{data.name}}

    - - + + diff --git a/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example.html b/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example.html index 210a36c9d4..91ff60849e 100755 --- a/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example.html +++ b/docs-content/examples-source/material/dialog/dialog-overview/dialog-overview-example.html @@ -6,7 +6,7 @@
  • - +
  • @if (animal()) {
  • diff --git a/docs-content/examples-source/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html b/docs-content/examples-source/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html index e0719977ac..afe6cccefa 100755 --- a/docs-content/examples-source/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html +++ b/docs-content/examples-source/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html @@ -1,6 +1,6 @@
    - - + +
    diff --git a/docs-content/examples-source/material/expansion/expansion-harness/expansion-harness-example.spec.ts b/docs-content/examples-source/material/expansion/expansion-harness/expansion-harness-example.spec.ts index f08ba713a9..b2428b5e8b 100755 --- a/docs-content/examples-source/material/expansion/expansion-harness/expansion-harness-example.spec.ts +++ b/docs-content/examples-source/material/expansion/expansion-harness/expansion-harness-example.spec.ts @@ -2,7 +2,6 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatAccordionHarness, MatExpansionPanelHarness} from '@angular/material/expansion/testing'; import {HarnessLoader} from '@angular/cdk/testing'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {ExpansionHarnessExample} from './expansion-harness-example'; describe('ExpansionHarnessExample', () => { @@ -10,9 +9,6 @@ describe('ExpansionHarnessExample', () => { let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(ExpansionHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/expansion/expansion-steps/expansion-steps-example.html b/docs-content/examples-source/material/expansion/expansion-steps/expansion-steps-example.html index 1d69f7ec43..90f15618a2 100755 --- a/docs-content/examples-source/material/expansion/expansion-steps/expansion-steps-example.html +++ b/docs-content/examples-source/material/expansion/expansion-steps/expansion-steps-example.html @@ -19,7 +19,7 @@ - + @@ -39,8 +39,8 @@ - - + + @@ -60,8 +60,8 @@ - - + + diff --git a/docs-content/examples-source/material/form-field/form-field-harness/form-field-harness-example.spec.ts b/docs-content/examples-source/material/form-field/form-field-harness/form-field-harness-example.spec.ts index 74e58d9cac..059474cab0 100755 --- a/docs-content/examples-source/material/form-field/form-field-harness/form-field-harness-example.spec.ts +++ b/docs-content/examples-source/material/form-field/form-field-harness/form-field-harness-example.spec.ts @@ -3,7 +3,6 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatFormFieldHarness} from '@angular/material/form-field/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {FormFieldHarnessExample} from './form-field-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {MatInputHarness} from '@angular/material/input/testing'; describe('FormFieldHarnessExample', () => { @@ -11,9 +10,6 @@ describe('FormFieldHarnessExample', () => { let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(FormFieldHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html b/docs-content/examples-source/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html index 3bf388ecc9..5d53d14c72 100755 --- a/docs-content/examples-source/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html +++ b/docs-content/examples-source/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html @@ -3,7 +3,7 @@ Enter your password } diff --git a/docs-content/examples-source/material/input/input-harness/input-harness-example.spec.ts b/docs-content/examples-source/material/input/input-harness/input-harness-example.spec.ts index bb5a817e61..825c0f727d 100755 --- a/docs-content/examples-source/material/input/input-harness/input-harness-example.spec.ts +++ b/docs-content/examples-source/material/input/input-harness/input-harness-example.spec.ts @@ -3,16 +3,12 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatInputHarness} from '@angular/material/input/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {InputHarnessExample} from './input-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('InputHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(InputHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/menu/menu-harness/menu-harness-example.spec.ts b/docs-content/examples-source/material/menu/menu-harness/menu-harness-example.spec.ts index 0015e75c19..ab9f9adea3 100755 --- a/docs-content/examples-source/material/menu/menu-harness/menu-harness-example.spec.ts +++ b/docs-content/examples-source/material/menu/menu-harness/menu-harness-example.spec.ts @@ -2,9 +2,8 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatMenuHarness} from '@angular/material/menu/testing'; import {HarnessLoader} from '@angular/cdk/testing'; -import {MatMenuModule} from '@angular/material/menu'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {MenuHarnessExample} from './menu-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('MenuHarnessExample', () => { let fixture: ComponentFixture; @@ -12,7 +11,7 @@ describe('MenuHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatMenuModule, NoopAnimationsModule, MenuHarnessExample], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(MenuHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/menu/menu-icons/menu-icons-example.html b/docs-content/examples-source/material/menu/menu-icons/menu-icons-example.html index fb66054d7b..e0c815d44d 100755 --- a/docs-content/examples-source/material/menu/menu-icons/menu-icons-example.html +++ b/docs-content/examples-source/material/menu/menu-icons/menu-icons-example.html @@ -1,4 +1,4 @@ - diff --git a/docs-content/examples-source/material/menu/menu-nested/menu-nested-example.html b/docs-content/examples-source/material/menu/menu-nested/menu-nested-example.html index 26e4306437..242c56f7c0 100755 --- a/docs-content/examples-source/material/menu/menu-nested/menu-nested-example.html +++ b/docs-content/examples-source/material/menu/menu-nested/menu-nested-example.html @@ -1,4 +1,4 @@ - + diff --git a/docs-content/examples-source/material/menu/menu-overview/menu-overview-example.html b/docs-content/examples-source/material/menu/menu-overview/menu-overview-example.html index e8f939714e..289c28ec58 100755 --- a/docs-content/examples-source/material/menu/menu-overview/menu-overview-example.html +++ b/docs-content/examples-source/material/menu/menu-overview/menu-overview-example.html @@ -1,5 +1,5 @@ - + diff --git a/docs-content/examples-source/material/menu/menu-position/menu-position-example.html b/docs-content/examples-source/material/menu/menu-position/menu-position-example.html index ee70948384..3993840e0f 100755 --- a/docs-content/examples-source/material/menu/menu-position/menu-position-example.html +++ b/docs-content/examples-source/material/menu/menu-position/menu-position-example.html @@ -1,4 +1,4 @@ - + @@ -6,20 +6,20 @@ - + - + - + diff --git a/docs-content/examples-source/material/paginator/paginator-harness/paginator-harness-example.spec.ts b/docs-content/examples-source/material/paginator/paginator-harness/paginator-harness-example.spec.ts index ae343a8ce7..aae7ba53f0 100755 --- a/docs-content/examples-source/material/paginator/paginator-harness/paginator-harness-example.spec.ts +++ b/docs-content/examples-source/material/paginator/paginator-harness/paginator-harness-example.spec.ts @@ -3,8 +3,6 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatPaginatorHarness} from '@angular/material/paginator/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {PaginatorHarnessExample} from './paginator-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatPaginatorModule} from '@angular/material/paginator'; describe('PaginatorHarnessExample', () => { let fixture: ComponentFixture; @@ -12,9 +10,6 @@ describe('PaginatorHarnessExample', () => { let instance: PaginatorHarnessExample; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [MatPaginatorModule, NoopAnimationsModule], - }); fixture = TestBed.createComponent(PaginatorHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/paginator/paginator-intl/paginator-intl-example.ts b/docs-content/examples-source/material/paginator/paginator-intl/paginator-intl-example.ts index f4b5cb8b69..77b23d93b5 100755 --- a/docs-content/examples-source/material/paginator/paginator-intl/paginator-intl-example.ts +++ b/docs-content/examples-source/material/paginator/paginator-intl/paginator-intl-example.ts @@ -2,6 +2,8 @@ import {Component, Injectable} from '@angular/core'; import {MatPaginatorIntl, MatPaginatorModule} from '@angular/material/paginator'; import {Subject} from 'rxjs'; +import '@angular/localize/init'; + @Injectable() export class MyCustomPaginatorIntl implements MatPaginatorIntl { changes = new Subject(); diff --git a/docs-content/examples-source/material/select/select-harness/select-harness-example.spec.ts b/docs-content/examples-source/material/select/select-harness/select-harness-example.spec.ts index 6b3008ce78..9d09732f9a 100755 --- a/docs-content/examples-source/material/select/select-harness/select-harness-example.spec.ts +++ b/docs-content/examples-source/material/select/select-harness/select-harness-example.spec.ts @@ -1,10 +1,9 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatSelectHarness} from '@angular/material/select/testing'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {HarnessLoader} from '@angular/cdk/testing'; import {SelectHarnessExample} from './select-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {MatSelectModule} from '@angular/material/select'; describe('SelectHarnessExample', () => { let fixture: ComponentFixture; @@ -12,7 +11,7 @@ describe('SelectHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [MatSelectModule, NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(SelectHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/sidenav/sidenav-autosize/sidenav-autosize-example.html b/docs-content/examples-source/material/sidenav/sidenav-autosize/sidenav-autosize-example.html index 98e69a1c2c..be269dee82 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-autosize/sidenav-autosize-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-autosize/sidenav-autosize-example.html @@ -4,13 +4,13 @@ @if (showFiller) {

    Lorem, ipsum dolor sit amet consectetur.

    } -
    -
    diff --git a/docs-content/examples-source/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html b/docs-content/examples-source/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html index 0fa69dee3b..ca0c7d79aa 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html @@ -17,6 +17,6 @@ False - + diff --git a/docs-content/examples-source/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html b/docs-content/examples-source/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html index e6b0821ca8..a5ecb677a0 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html @@ -1,14 +1,14 @@ @if (shouldRun) { -

    +

    -

    +

    diff --git a/docs-content/examples-source/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html b/docs-content/examples-source/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html index fada970cd0..911537f80d 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html @@ -2,11 +2,11 @@ -

    +

    -

    +

    Closed due to: {{reason}}

    diff --git a/docs-content/examples-source/material/sidenav/sidenav-fixed/sidenav-fixed-example.html b/docs-content/examples-source/material/sidenav/sidenav-fixed/sidenav-fixed-example.html index 9880c28edd..bbf27b42ae 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-fixed/sidenav-fixed-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-fixed/sidenav-fixed-example.html @@ -18,7 +18,7 @@ Bottom gap

    -

    +

    diff --git a/docs-content/examples-source/material/sidenav/sidenav-harness/sidenav-harness-example.spec.ts b/docs-content/examples-source/material/sidenav/sidenav-harness/sidenav-harness-example.spec.ts index 95c79753d1..01a388b499 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-harness/sidenav-harness-example.spec.ts +++ b/docs-content/examples-source/material/sidenav/sidenav-harness/sidenav-harness-example.spec.ts @@ -7,17 +7,12 @@ import { } from '@angular/material/sidenav/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {SidenavHarnessExample} from './sidenav-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('SidenavHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); - fixture = TestBed.createComponent(SidenavHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/sidenav/sidenav-mode/sidenav-mode-example.html b/docs-content/examples-source/material/sidenav/sidenav-mode/sidenav-mode-example.html index 04f8b534ac..7d7501f1fe 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-mode/sidenav-mode-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-mode/sidenav-mode-example.html @@ -1,7 +1,7 @@ @if (shouldRun) { -

    +

    @@ -13,7 +13,7 @@ -

    +

    diff --git a/docs-content/examples-source/material/sidenav/sidenav-open-close/sidenav-open-close-example.html b/docs-content/examples-source/material/sidenav/sidenav-open-close/sidenav-open-close-example.html index f82321e943..a9f781c61e 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-open-close/sidenav-open-close-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-open-close/sidenav-open-close-example.html @@ -7,7 +7,7 @@

    sidenav.opened

    -

    +

    Events:

    @for (e of events; track e) { diff --git a/docs-content/examples-source/material/sidenav/sidenav-responsive/sidenav-responsive-example.html b/docs-content/examples-source/material/sidenav/sidenav-responsive/sidenav-responsive-example.html index e34c05948d..0c7cc03247 100755 --- a/docs-content/examples-source/material/sidenav/sidenav-responsive/sidenav-responsive-example.html +++ b/docs-content/examples-source/material/sidenav/sidenav-responsive/sidenav-responsive-example.html @@ -1,7 +1,7 @@ @if (shouldRun) {
    - +

    Responsive App

    diff --git a/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html b/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html index 1a63b3ba0c..c1cb6520ec 100755 --- a/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html +++ b/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html @@ -9,7 +9,7 @@ Enable Wifi Accept Terms of Service - +

    Slide Toggle inside of a Reactive form

    @@ -21,5 +21,5 @@

    Form Group Status: {{formGroup.status}}

    - + diff --git a/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts b/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts index 08ea68cf49..c8a88fa163 100755 --- a/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts +++ b/docs-content/examples-source/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts @@ -1,10 +1,7 @@ import {Component, inject} from '@angular/core'; import {FormBuilder, FormGroup, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms'; import {MatButtonModule} from '@angular/material/button'; -import { - MatSlideToggleModule, - _MatSlideToggleRequiredValidatorModule, -} from '@angular/material/slide-toggle'; +import {MatSlideToggleModule} from '@angular/material/slide-toggle'; /** * @title Slide-toggle with forms @@ -13,13 +10,7 @@ import { selector: 'slide-toggle-forms-example', templateUrl: './slide-toggle-forms-example.html', styleUrl: './slide-toggle-forms-example.css', - imports: [ - MatSlideToggleModule, - FormsModule, - _MatSlideToggleRequiredValidatorModule, - MatButtonModule, - ReactiveFormsModule, - ], + imports: [MatSlideToggleModule, FormsModule, MatButtonModule, ReactiveFormsModule], }) export class SlideToggleFormsExample { private _formBuilder = inject(FormBuilder); diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html b/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html index 1bb8371b6c..93aca7adb0 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html +++ b/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html @@ -2,6 +2,6 @@ Pizza party!!! - + diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html b/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html index e320fa99a0..b54de6e3b7 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html +++ b/docs-content/examples-source/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html @@ -3,6 +3,6 @@ - diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-component/snack-bar-component-example.html b/docs-content/examples-source/material/snack-bar/snack-bar-component/snack-bar-component-example.html index e320fa99a0..b54de6e3b7 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-component/snack-bar-component-example.html +++ b/docs-content/examples-source/material/snack-bar/snack-bar-component/snack-bar-component-example.html @@ -3,6 +3,6 @@ - diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec.ts b/docs-content/examples-source/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec.ts index 79124ee655..20d1109598 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec.ts +++ b/docs-content/examples-source/material/snack-bar/snack-bar-harness/snack-bar-harness-example.spec.ts @@ -1,8 +1,8 @@ import {ComponentFixture, TestBed} from '@angular/core/testing'; import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; +import {MATERIAL_ANIMATIONS} from '@angular/material/core'; import {HarnessLoader} from '@angular/cdk/testing'; import {SnackBarHarnessExample} from './snack-bar-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; import {MatSnackBarHarness} from '@angular/material/snack-bar/testing'; describe('SnackBarHarnessExample', () => { @@ -11,7 +11,7 @@ describe('SnackBarHarnessExample', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], }); fixture = TestBed.createComponent(SnackBarHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html b/docs-content/examples-source/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html index bc311ebcf1..7f4d73a6d4 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html +++ b/docs-content/examples-source/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html @@ -8,4 +8,4 @@ - + diff --git a/docs-content/examples-source/material/snack-bar/snack-bar-position/snack-bar-position-example.html b/docs-content/examples-source/material/snack-bar/snack-bar-position/snack-bar-position-example.html index 2329a7ddd8..1b80165f18 100755 --- a/docs-content/examples-source/material/snack-bar/snack-bar-position/snack-bar-position-example.html +++ b/docs-content/examples-source/material/snack-bar/snack-bar-position/snack-bar-position-example.html @@ -16,6 +16,6 @@ - diff --git a/docs-content/examples-source/material/sort/sort-harness/sort-harness-example.spec.ts b/docs-content/examples-source/material/sort/sort-harness/sort-harness-example.spec.ts index 4dded206b0..ae9a115607 100755 --- a/docs-content/examples-source/material/sort/sort-harness/sort-harness-example.spec.ts +++ b/docs-content/examples-source/material/sort/sort-harness/sort-harness-example.spec.ts @@ -3,16 +3,12 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatSortHarness} from '@angular/material/sort/testing'; import {HarnessLoader, parallel} from '@angular/cdk/testing'; import {SortHarnessExample} from './sort-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('SortHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(SortHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/stepper/stepper-animations/stepper-animations-example.html b/docs-content/examples-source/material/stepper/stepper-animations/stepper-animations-example.html index 641a259116..6db1217e8f 100755 --- a/docs-content/examples-source/material/stepper/stepper-animations/stepper-animations-example.html +++ b/docs-content/examples-source/material/stepper/stepper-animations/stepper-animations-example.html @@ -11,7 +11,7 @@
    - +
    @@ -22,8 +22,8 @@
    - - + +
    @@ -31,8 +31,8 @@ Done You are now done.
    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-editable/stepper-editable-example.html b/docs-content/examples-source/material/stepper/stepper-editable/stepper-editable-example.html index 8074ec807d..8dc4135bc1 100755 --- a/docs-content/examples-source/material/stepper/stepper-editable/stepper-editable-example.html +++ b/docs-content/examples-source/material/stepper/stepper-editable/stepper-editable-example.html @@ -1,4 +1,4 @@ - @@ -15,7 +15,7 @@
    - +
    @@ -28,8 +28,8 @@ required>
    - - + +
    @@ -37,8 +37,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-errors/stepper-errors-example.html b/docs-content/examples-source/material/stepper/stepper-errors/stepper-errors-example.html index 0b015da0ee..8f24359835 100755 --- a/docs-content/examples-source/material/stepper/stepper-errors/stepper-errors-example.html +++ b/docs-content/examples-source/material/stepper/stepper-errors/stepper-errors-example.html @@ -8,7 +8,7 @@

    Go to a different step to see the error state

    - +
    @@ -22,8 +22,8 @@

    Go to a different step to see the error state

    - - + +
    @@ -31,8 +31,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-harness/stepper-harness-example.spec.ts b/docs-content/examples-source/material/stepper/stepper-harness/stepper-harness-example.spec.ts index ac0a4ba482..d24b221092 100755 --- a/docs-content/examples-source/material/stepper/stepper-harness/stepper-harness-example.spec.ts +++ b/docs-content/examples-source/material/stepper/stepper-harness/stepper-harness-example.spec.ts @@ -3,16 +3,12 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatStepperHarness, MatStepperNextHarness} from '@angular/material/stepper/testing'; import {HarnessLoader, parallel} from '@angular/cdk/testing'; import {StepperHarnessExample} from './stepper-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; describe('StepperHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({ - imports: [NoopAnimationsModule], - }); fixture = TestBed.createComponent(StepperHarnessExample); fixture.detectChanges(); loader = TestbedHarnessEnvironment.loader(fixture); diff --git a/docs-content/examples-source/material/stepper/stepper-header-position/stepper-header-position-example.html b/docs-content/examples-source/material/stepper/stepper-header-position/stepper-header-position-example.html index 7f092843f2..06c357bdd6 100755 --- a/docs-content/examples-source/material/stepper/stepper-header-position/stepper-header-position-example.html +++ b/docs-content/examples-source/material/stepper/stepper-header-position/stepper-header-position-example.html @@ -6,7 +6,7 @@
    - +
    @@ -17,8 +17,8 @@
    - - + +
    @@ -26,8 +26,8 @@ Done You are now done.
    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-intl/stepper-intl-example.html b/docs-content/examples-source/material/stepper/stepper-intl/stepper-intl-example.html index c108f16730..3a63f1e68e 100755 --- a/docs-content/examples-source/material/stepper/stepper-intl/stepper-intl-example.html +++ b/docs-content/examples-source/material/stepper/stepper-intl/stepper-intl-example.html @@ -24,7 +24,7 @@ />
    - +
    @@ -42,8 +42,8 @@ />
    - - + +
    @@ -51,8 +51,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html b/docs-content/examples-source/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html index 29eb1459cb..d2ba6100b7 100755 --- a/docs-content/examples-source/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html +++ b/docs-content/examples-source/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html @@ -9,7 +9,7 @@
    - +
    @@ -23,8 +23,8 @@
    - - + +
    @@ -33,8 +33,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html b/docs-content/examples-source/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html index a632ac1dcf..e5ff21d243 100755 --- a/docs-content/examples-source/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html +++ b/docs-content/examples-source/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html @@ -3,20 +3,20 @@ Step 1

    This content was rendered lazily

    - +
    Step 2

    This content was also rendered lazily

    - - + +
    Step 3

    This content was rendered eagerly

    - +
    diff --git a/docs-content/examples-source/material/stepper/stepper-optional/stepper-optional-example.html b/docs-content/examples-source/material/stepper/stepper-optional/stepper-optional-example.html index 2200fa2409..d177ccc2db 100755 --- a/docs-content/examples-source/material/stepper/stepper-optional/stepper-optional-example.html +++ b/docs-content/examples-source/material/stepper/stepper-optional/stepper-optional-example.html @@ -1,4 +1,4 @@ - @@ -11,7 +11,7 @@
    - +
    @@ -26,8 +26,8 @@ required>
    - - + +
    @@ -35,8 +35,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-overview/stepper-overview-example.html b/docs-content/examples-source/material/stepper/stepper-overview/stepper-overview-example.html index 7b54eb4358..a7f6fd0ad9 100755 --- a/docs-content/examples-source/material/stepper/stepper-overview/stepper-overview-example.html +++ b/docs-content/examples-source/material/stepper/stepper-overview/stepper-overview-example.html @@ -1,4 +1,4 @@ - @@ -10,7 +10,7 @@
    - +
    @@ -24,8 +24,8 @@ required>
    - - + +
    @@ -33,8 +33,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-responsive/stepper-responsive-example.html b/docs-content/examples-source/material/stepper/stepper-responsive/stepper-responsive-example.html index cba6751334..31429d631c 100755 --- a/docs-content/examples-source/material/stepper/stepper-responsive/stepper-responsive-example.html +++ b/docs-content/examples-source/material/stepper/stepper-responsive/stepper-responsive-example.html @@ -17,7 +17,7 @@
    - +
    @@ -29,8 +29,8 @@ required>
    - - + +
    @@ -41,8 +41,8 @@
    - - + +
    @@ -50,7 +50,7 @@ Done

    You are now done.

    - +
    diff --git a/docs-content/examples-source/material/stepper/stepper-states/stepper-states-example.html b/docs-content/examples-source/material/stepper/stepper-states/stepper-states-example.html index aa47cb1f88..cce56f30f5 100755 --- a/docs-content/examples-source/material/stepper/stepper-states/stepper-states-example.html +++ b/docs-content/examples-source/material/stepper/stepper-states/stepper-states-example.html @@ -7,7 +7,7 @@
    - +
    @@ -20,8 +20,8 @@ required>
    - - + +
    @@ -29,8 +29,8 @@ Done

    You are now done.

    - - + +
    @@ -41,15 +41,15 @@

    Put down your phones.

    - +

    Socialize with each other.

    - - + +
    diff --git a/docs-content/examples-source/material/stepper/stepper-vertical/stepper-vertical-example.html b/docs-content/examples-source/material/stepper/stepper-vertical/stepper-vertical-example.html index 288be64f8d..1f3aeadb10 100755 --- a/docs-content/examples-source/material/stepper/stepper-vertical/stepper-vertical-example.html +++ b/docs-content/examples-source/material/stepper/stepper-vertical/stepper-vertical-example.html @@ -1,4 +1,4 @@ - @@ -10,7 +10,7 @@
    - +
    @@ -23,8 +23,8 @@ required>
    - - + +
    @@ -32,8 +32,8 @@ Done

    You are now done.

    - - + +
    diff --git a/docs-content/examples-source/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html b/docs-content/examples-source/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html index 9e0cf9a588..d3613b45a0 100755 --- a/docs-content/examples-source/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html +++ b/docs-content/examples-source/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html @@ -1,9 +1,9 @@
    - - - + + + @for (column of displayedColumns; track column) { diff --git a/docs-content/examples-source/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html b/docs-content/examples-source/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html index b3388c5cc5..6570b63bcb 100755 --- a/docs-content/examples-source/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html +++ b/docs-content/examples-source/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html @@ -1,9 +1,9 @@
    -
    \n \n \n\n \n \n \n\n \n \n \n \n\n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 0 8px 8px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: i0.forwardRef(() => MatButtonModule) }, { kind: "component", type: i0.forwardRef(() => i1$1.MatButton), selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i0.forwardRef(() => WrapperTable), selector: "wrapper-table", inputs: ["columns", "dataSource"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatSortModule) }, { kind: "directive", type: i0.forwardRef(() => i2$1.MatSort), selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatTableModule) }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderCellDef), selector: "[matHeaderCellDef]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderRowDef), selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatColumnDef), selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatCellDef), selector: "[matCellDef]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatRowDef), selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderCell), selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatCell), selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i0.forwardRef(() => i1.MatHeaderRow), selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i0.forwardRef(() => i1.MatRow), selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatNoDataRow), selector: "ng-template[matNoDataRow]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableWrappedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableWrappedExample, isStandalone: true, selector: "table-wrapped-example", viewQueries: [{ propertyName: "sort", first: true, predicate: ["sort"], descendants: true }], ngImport: i0, template: "
    \n \n \n
    \n\n\n \n \n \n \n \n\n \n \n \n\n \n \n \n \n\n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 0 8px 8px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: i0.forwardRef(() => MatButtonModule) }, { kind: "component", type: i0.forwardRef(() => i1$1.MatButton), selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i0.forwardRef(() => WrapperTable), selector: "wrapper-table", inputs: ["columns", "dataSource"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatSortModule) }, { kind: "directive", type: i0.forwardRef(() => i1$4.MatSort), selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatTableModule) }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderCellDef), selector: "[matHeaderCellDef]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderRowDef), selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatColumnDef), selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatCellDef), selector: "[matCellDef]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatRowDef), selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatHeaderCell), selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i0.forwardRef(() => i1.MatCell), selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i0.forwardRef(() => i1.MatHeaderRow), selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i0.forwardRef(() => i1.MatRow), selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatNoDataRow), selector: "ng-template[matNoDataRow]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableWrappedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableWrappedExample, decorators: [{ type: Component, - args: [{ selector: 'table-wrapped-example', imports: [MatButtonModule, forwardRef(() => WrapperTable), MatSortModule, MatTableModule], template: "
    \n \n \n
    \n\n\n \n \n \n \n \n\n \n \n \n\n \n \n \n \n\n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 0 8px 8px 0;\n}\n"] }] + args: [{ selector: 'table-wrapped-example', imports: [MatButtonModule, forwardRef(() => WrapperTable), MatSortModule, MatTableModule], template: "
    \n \n \n
    \n\n\n \n \n \n \n \n\n \n \n \n\n \n \n \n \n\n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 0 8px 8px 0;\n}\n"] }] }], propDecorators: { sort: [{ type: ViewChild, args: ['sort'] @@ -939,10 +939,10 @@ class WrapperTable { this.headerRowDefs.forEach(headerRowDef => this.table.addHeaderRowDef(headerRowDef)); this.table.setNoDataRow(this.noDataRow); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: WrapperTable, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: WrapperTable, isStandalone: true, selector: "wrapper-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, dataSource: { classPropertyName: "dataSource", publicName: "dataSource", isSignal: true, isRequired: true, transformFunction: null } }, queries: [{ propertyName: "noDataRow", first: true, predicate: MatNoDataRow, descendants: true }, { propertyName: "headerRowDefs", predicate: MatHeaderRowDef }, { propertyName: "rowDefs", predicate: MatRowDef }, { propertyName: "columnDefs", predicate: MatColumnDef }], viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true, static: true }], ngImport: i0, template: "
      - + +
    diff --git a/docs-content/examples-source/material/table/table-sticky-complex/table-sticky-complex-example.html b/docs-content/examples-source/material/table/table-sticky-complex/table-sticky-complex-example.html index 3a52339e40..abe0614ab8 100755 --- a/docs-content/examples-source/material/table/table-sticky-complex/table-sticky-complex-example.html +++ b/docs-content/examples-source/material/table/table-sticky-complex/table-sticky-complex-example.html @@ -1,6 +1,6 @@
    - - + +
    diff --git a/docs-content/examples-source/material/table/table-wrapped/table-wrapped-example.html b/docs-content/examples-source/material/table/table-wrapped/table-wrapped-example.html index 540d3fcba2..6acf9d54f7 100755 --- a/docs-content/examples-source/material/table/table-wrapped/table-wrapped-example.html +++ b/docs-content/examples-source/material/table/table-wrapped/table-wrapped-example.html @@ -1,6 +1,6 @@
    - - + +
    - diff --git a/docs-content/examples-source/material/timepicker/timepicker-harness/timepicker-harness-example.spec.ts b/docs-content/examples-source/material/timepicker/timepicker-harness/timepicker-harness-example.spec.ts index 332491f6f6..b990e968be 100755 --- a/docs-content/examples-source/material/timepicker/timepicker-harness/timepicker-harness-example.spec.ts +++ b/docs-content/examples-source/material/timepicker/timepicker-harness/timepicker-harness-example.spec.ts @@ -3,15 +3,17 @@ import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed'; import {MatTimepickerInputHarness} from '@angular/material/timepicker/testing'; import {HarnessLoader} from '@angular/cdk/testing'; import {TimepickerHarnessExample} from './timepicker-harness-example'; -import {NoopAnimationsModule} from '@angular/platform-browser/animations'; -import {DateAdapter, MatNativeDateModule} from '@angular/material/core'; +import {DateAdapter, MATERIAL_ANIMATIONS, MatNativeDateModule} from '@angular/material/core'; describe('TimepickerHarnessExample', () => { let fixture: ComponentFixture; let loader: HarnessLoader; beforeEach(() => { - TestBed.configureTestingModule({imports: [NoopAnimationsModule, MatNativeDateModule]}); + TestBed.configureTestingModule({ + imports: [MatNativeDateModule], + providers: [{provide: MATERIAL_ANIMATIONS, useValue: {animationsDisabled: true}}], + }); TestBed.inject(DateAdapter).setLocale('en-US'); // Set the locale to en-US to guarantee consistent tests. fixture = TestBed.createComponent(TimepickerHarnessExample); fixture.detectChanges(); diff --git a/docs-content/examples-source/material/timepicker/timepicker-locale/timepicker-locale-example.html b/docs-content/examples-source/material/timepicker/timepicker-locale/timepicker-locale-example.html index fae0e9b34d..f3e26023e9 100755 --- a/docs-content/examples-source/material/timepicker/timepicker-locale/timepicker-locale-example.html +++ b/docs-content/examples-source/material/timepicker/timepicker-locale/timepicker-locale-example.html @@ -5,4 +5,4 @@ - + diff --git a/docs-content/examples-source/material/toolbar/toolbar-basic/toolbar-basic-example.html b/docs-content/examples-source/material/toolbar/toolbar-basic/toolbar-basic-example.html index 5499e0bd14..cdb8dc7fa5 100755 --- a/docs-content/examples-source/material/toolbar/toolbar-basic/toolbar-basic-example.html +++ b/docs-content/examples-source/material/toolbar/toolbar-basic/toolbar-basic-example.html @@ -1,13 +1,13 @@ - My App - - diff --git a/docs-content/examples-source/material/toolbar/toolbar-harness/toolbar-harness-example.html b/docs-content/examples-source/material/toolbar/toolbar-harness/toolbar-harness-example.html index 5bf3323eba..b01a29807f 100755 --- a/docs-content/examples-source/material/toolbar/toolbar-harness/toolbar-harness-example.html +++ b/docs-content/examples-source/material/toolbar/toolbar-harness/toolbar-harness-example.html @@ -2,10 +2,10 @@ Row 1 Row 2 - - diff --git a/docs-content/examples-source/material/toolbar/toolbar-overview/toolbar-overview-example.html b/docs-content/examples-source/material/toolbar/toolbar-overview/toolbar-overview-example.html index 5499e0bd14..cdb8dc7fa5 100755 --- a/docs-content/examples-source/material/toolbar/toolbar-overview/toolbar-overview-example.html +++ b/docs-content/examples-source/material/toolbar/toolbar-overview/toolbar-overview-example.html @@ -1,13 +1,13 @@ - My App - - diff --git a/docs-content/examples-source/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html b/docs-content/examples-source/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html index 193542e132..11d3e3c6e2 100755 --- a/docs-content/examples-source/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html +++ b/docs-content/examples-source/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html @@ -8,7 +8,7 @@
    - - -
    - \ No newline at end of file + diff --git a/docs-content/examples-source/material/tooltip/tooltip-message/tooltip-message-example.html b/docs-content/examples-source/material/tooltip/tooltip-message/tooltip-message-example.html index a62e9cf929..86e39f3f46 100755 --- a/docs-content/examples-source/material/tooltip/tooltip-message/tooltip-message-example.html +++ b/docs-content/examples-source/material/tooltip/tooltip-message/tooltip-message-example.html @@ -3,7 +3,7 @@ - + {{node.item}} - + {{node.name}} - + {{node.name}} - + {{node.name}} - + {{node.name}} diff --git a/docs-content/examples-source/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts b/docs-content/examples-source/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts index 3641d3842c..fe0150c1bb 100755 --- a/docs-content/examples-source/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts +++ b/docs-content/examples-source/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts @@ -6,7 +6,48 @@ import {MatButtonModule} from '@angular/material/button'; import {NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER} from '@angular/cdk/a11y'; import {MatTreeModule} from '@angular/material/tree'; -const TREE_DATA: ExampleFlatNode[] = [ +/** Flat node with expandable and level information */ +interface ExampleFlatNode { + expandable: boolean; + name: string; + level: number; +} + +/** + * @title Tree with flat nodes + */ +@Component({ + selector: 'tree-legacy-keyboard-interface-example', + templateUrl: 'tree-legacy-keyboard-interface-example.html', + styleUrls: ['tree-legacy-keyboard-interface-example.css'], + imports: [MatTreeModule, MatButtonModule, MatIconModule], + providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class TreeLegacyKeyboardInterfaceExample { + treeControl = new FlatTreeControl( + node => node.level, + node => node.expandable, + ); + + dataSource = new ArrayDataSource(EXAMPLE_DATA); + + hasChild = (_: number, node: ExampleFlatNode) => node.expandable; + + getParentNode(node: ExampleFlatNode) { + const nodeIndex = EXAMPLE_DATA.indexOf(node); + + for (let i = nodeIndex - 1; i >= 0; i--) { + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; + } + } + + return null; + } +} + +const EXAMPLE_DATA: ExampleFlatNode[] = [ { name: 'Fruit', expandable: true, @@ -63,44 +104,3 @@ const TREE_DATA: ExampleFlatNode[] = [ level: 2, }, ]; - -/** Flat node with expandable and level information */ -interface ExampleFlatNode { - expandable: boolean; - name: string; - level: number; -} - -/** - * @title Tree with flat nodes - */ -@Component({ - selector: 'tree-legacy-keyboard-interface-example', - templateUrl: 'tree-legacy-keyboard-interface-example.html', - styleUrls: ['tree-legacy-keyboard-interface-example.css'], - imports: [MatTreeModule, MatButtonModule, MatIconModule], - providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class TreeLegacyKeyboardInterfaceExample { - treeControl = new FlatTreeControl( - node => node.level, - node => node.expandable, - ); - - dataSource = new ArrayDataSource(TREE_DATA); - - hasChild = (_: number, node: ExampleFlatNode) => node.expandable; - - getParentNode(node: ExampleFlatNode) { - const nodeIndex = TREE_DATA.indexOf(node); - - for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; - } - } - - return null; - } -} diff --git a/docs-content/examples-source/material/tree/tree-loadmore/tree-loadmore-example.html b/docs-content/examples-source/material/tree/tree-loadmore/tree-loadmore-example.html index 28ed67278f..88bf949e17 100755 --- a/docs-content/examples-source/material/tree/tree-loadmore/tree-loadmore-example.html +++ b/docs-content/examples-source/material/tree/tree-loadmore/tree-loadmore-example.html @@ -1,14 +1,14 @@ - + {{node.name}} -
    + This padding value depends on the matIconButton width. -->
    diff --git a/docs-content/examples-source/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts b/docs-content/examples-source/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts index 7281ee1a29..6e3cc2371f 100755 --- a/docs-content/examples-source/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts +++ b/docs-content/examples-source/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts @@ -12,7 +12,25 @@ interface FoodNode { children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ +/** + * @title Tree with nested nodes (childrenAccessor) + */ +@Component({ + selector: 'tree-nested-child-accessor-overview-example', + templateUrl: 'tree-nested-child-accessor-overview-example.html', + styleUrl: 'tree-nested-child-accessor-overview-example.css', + imports: [MatTreeModule, MatButtonModule, MatIconModule], + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class TreeNestedChildAccessorOverviewExample { + childrenAccessor = (node: FoodNode) => node.children ?? []; + + dataSource = EXAMPLE_DATA; + + hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; +} + +const EXAMPLE_DATA: FoodNode[] = [ { name: 'Fruit', children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], @@ -31,21 +49,3 @@ const TREE_DATA: FoodNode[] = [ ], }, ]; - -/** - * @title Tree with nested nodes (childrenAccessor) - */ -@Component({ - selector: 'tree-nested-child-accessor-overview-example', - templateUrl: 'tree-nested-child-accessor-overview-example.html', - styleUrl: 'tree-nested-child-accessor-overview-example.css', - imports: [MatTreeModule, MatButtonModule, MatIconModule], - changeDetection: ChangeDetectionStrategy.OnPush, -}) -export class TreeNestedChildAccessorOverviewExample { - childrenAccessor = (node: FoodNode) => node.children ?? []; - - dataSource = TREE_DATA; - - hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; -} diff --git a/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.html b/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.html index 93b8b82f23..bd6eed8f9f 100755 --- a/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.html +++ b/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.html @@ -1,7 +1,7 @@ + This padding value depends on the matIconButton width. --> {{node.name}} @@ -10,7 +10,7 @@ *matTreeNodeDef="let node; when: hasChild" matTreeNodeToggle [cdkTreeNodeTypeaheadLabel]="node.name">
    -
    + This padding value depends on the matIconButton width. -->
    diff --git a/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.ts b/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.ts index 48f1364142..3500b3a3d0 100755 --- a/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.ts +++ b/docs-content/examples-source/material/tree/tree-nested-overview/tree-nested-overview-example.ts @@ -13,26 +13,6 @@ interface FoodNode { children?: FoodNode[]; } -const TREE_DATA: FoodNode[] = [ - { - name: 'Fruit', - children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], - }, - { - name: 'Orange', - children: [{name: 'Pumpkins'}, {name: 'Carrots'}], - }, - ], - }, -]; - /** * @title Tree with nested nodes */ @@ -48,8 +28,28 @@ export class TreeNestedOverviewExample { dataSource = new MatTreeNestedDataSource(); constructor() { - this.dataSource.data = TREE_DATA; + this.dataSource.data = EXAMPLE_DATA; } hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0; } + +const EXAMPLE_DATA: FoodNode[] = [ + { + name: 'Fruit', + children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}], + }, + { + name: 'Vegetables', + children: [ + { + name: 'Green', + children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}], + }, + { + name: 'Orange', + children: [{name: 'Pumpkins'}, {name: 'Carrots'}], + }, + ], + }, +]; diff --git a/docs-content/guides/bidirectionality.html b/docs-content/guides/bidirectionality.md.html similarity index 100% rename from docs-content/guides/bidirectionality.html rename to docs-content/guides/bidirectionality.md.html diff --git a/docs-content/guides/creating-a-custom-form-field-control.html b/docs-content/guides/creating-a-custom-form-field-control.md.html similarity index 99% rename from docs-content/guides/creating-a-custom-form-field-control.html rename to docs-content/guides/creating-a-custom-form-field-control.md.html index 6a031a8151..9be84e663a 100755 --- a/docs-content/guides/creating-a-custom-form-field-control.html +++ b/docs-content/guides/creating-a-custom-form-field-control.md.html @@ -87,7 +87,7 @@

    form field API documentation.

    +form field API documentation.

    CDK overlay serve as examples of this. The CDK overlay creates an element that is attached directly to the body, outside of the component's host element. In this case, +component's host element. Components that use CDK overlay serve as examples of this. The CDK overlay creates an element that is attached directly to the body, outside of the component's host element. In this case, ComponentHarness provides a method that can be used to get a LocatorFactory for the root element of the document. The LocatorFactory supports most of the same APIs as the ComponentHarness base class, and can then be used to query relative to the document's root element.

    diff --git a/docs-content/overviews/cdk/text-field/text-field.html b/docs-content/overviews/cdk/text-field/text-field.md.html similarity index 100% rename from docs-content/overviews/cdk/text-field/text-field.html rename to docs-content/overviews/cdk/text-field/text-field.md.html diff --git a/docs-content/overviews/cdk/tree/tree.html b/docs-content/overviews/cdk/tree/tree.md.html similarity index 100% rename from docs-content/overviews/cdk/tree/tree.html rename to docs-content/overviews/cdk/tree/tree.md.html diff --git a/docs-content/overviews/material/autocomplete/autocomplete.html b/docs-content/overviews/material/autocomplete/autocomplete.md.html similarity index 99% rename from docs-content/overviews/material/autocomplete/autocomplete.html rename to docs-content/overviews/material/autocomplete/autocomplete.md.html index 1d3c545927..6ffa63447a 100755 --- a/docs-content/overviews/material/autocomplete/autocomplete.html +++ b/docs-content/overviews/material/autocomplete/autocomplete.md.html @@ -67,7 +67,7 @@

    By default, the autocomplete will accept the value that the user typed into the input field. -Instead, if you want to instead ensure that an option from the autocomplete was selected, you can +Instead, if you want to ensure that an option from the autocomplete was selected, you can enable the requireSelection input on mat-autocomplete. This will change the behavior of the autocomplete in the following ways:

      diff --git a/docs-content/overviews/material/badge/badge.html b/docs-content/overviews/material/badge/badge.md.html similarity index 97% rename from docs-content/overviews/material/badge/badge.html rename to docs-content/overviews/material/badge/badge.md.html index 96ac68a1ea..baaaad3c98 100755 --- a/docs-content/overviews/material/badge/badge.html +++ b/docs-content/overviews/material/badge/badge.md.html @@ -55,6 +55,6 @@
    \ No newline at end of file diff --git a/docs-content/overviews/material/bottom-sheet/bottom-sheet.html b/docs-content/overviews/material/bottom-sheet/bottom-sheet.md.html similarity index 99% rename from docs-content/overviews/material/bottom-sheet/bottom-sheet.html rename to docs-content/overviews/material/bottom-sheet/bottom-sheet.md.html index 1c6e888247..746e063a10 100755 --- a/docs-content/overviews/material/bottom-sheet/bottom-sheet.html +++ b/docs-content/overviews/material/bottom-sheet/bottom-sheet.md.html @@ -30,7 +30,7 @@
    \n }\n \n }\n\n", styles: [".example-accordion {\n display: block;\n max-width: 500px;\n}\n\n.example-accordion-item {\n display: block;\n border: solid 1px #ccc;\n}\n\n.example-accordion-item + .example-accordion-item {\n border-top: none;\n}\n\n.example-accordion-item-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n background: none;\n border: none;\n padding: 16px;\n text-align: left;\n\n}\n\n.example-accordion-item-description {\n font-size: 0.85em;\n color: #999;\n}\n\n.example-accordion-item-body {\n padding: 16px;\n}\n\n.example-accordion-item-header:hover {\n cursor: pointer;\n background-color: #eee;\n}\n\n.example-accordion-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n\n.example-accordion-item:last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkAccordionModule }, { kind: "directive", type: i1.CdkAccordion, selector: "cdk-accordion, [cdkAccordion]", inputs: ["multi"], exportAs: ["cdkAccordion"] }, { kind: "directive", type: i1.CdkAccordionItem, selector: "cdk-accordion-item, [cdkAccordionItem]", inputs: ["expanded", "disabled"], outputs: ["closed", "opened", "destroyed", "expandedChange"], exportAs: ["cdkAccordionItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkAccordionOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkAccordionOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-accordion-overview-example', imports: [CdkAccordionModule], template: "\n @for (item of items; track item; let index = $index) {\n \n \n {{ item }}\n \n Click to {{ accordionItem.expanded ? 'close' : 'open' }}\n \n \n @if(accordionItem.expanded) {\n \n Lorem ipsum dolor, sit amet, consectetur adipisicing elit. Perferendis excepturi incidunt ipsum\n deleniti labore, tempore non nam doloribus blanditiis veritatis illo autem iure aliquid ullam\n rem tenetur deserunt velit culpa?\n
    \n }\n \n }\n\n", styles: [".example-accordion {\n display: block;\n max-width: 500px;\n}\n\n.example-accordion-item {\n display: block;\n border: solid 1px #ccc;\n}\n\n.example-accordion-item + .example-accordion-item {\n border-top: none;\n}\n\n.example-accordion-item-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n background: none;\n border: none;\n padding: 16px;\n text-align: left;\n\n}\n\n.example-accordion-item-description {\n font-size: 0.85em;\n color: #999;\n}\n\n.example-accordion-item-body {\n padding: 16px;\n}\n\n.example-accordion-item-header:hover {\n cursor: pointer;\n background-color: #eee;\n}\n\n.example-accordion-item:first-child {\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}\n\n.example-accordion-item:last-child {\n border-bottom-left-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkAccordionOverviewExample }; //# sourceMappingURL=accordion.mjs.map diff --git a/fesm2022/cdk/accordion.mjs.map b/fesm2022/cdk/accordion.mjs.map index a5942512c9..f151fefcde 100755 --- a/fesm2022/cdk/accordion.mjs.map +++ b/fesm2022/cdk/accordion.mjs.map @@ -1 +1 @@ -{"version":3,"file":"accordion.mjs","sources":["../../../../../../../src/components-examples/cdk/accordion/cdk-accordion-overview/cdk-accordion-overview-example.ts","../../../../../../../src/components-examples/cdk/accordion/cdk-accordion-overview/cdk-accordion-overview-example.html","../../../../../../../src/components-examples/cdk/accordion/accordion_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkAccordionModule} from '@angular/cdk/accordion';\n\n/**\n * @title Accordion overview\n */\n@Component({\n selector: 'cdk-accordion-overview-example',\n templateUrl: 'cdk-accordion-overview-example.html',\n styleUrl: 'cdk-accordion-overview-example.css',\n imports: [CdkAccordionModule],\n})\nexport class CdkAccordionOverviewExample {\n items = ['Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5'];\n expandedIndex = 0;\n}\n","\n @for (item of items; track item; let index = $index) {\n \n \n {{ item }}\n \n Click to {{ accordionItem.expanded ? 'close' : 'open' }}\n \n \n @if(accordionItem.expanded) {\n \n Lorem ipsum dolor, sit amet, consectetur adipisicing elit. Perferendis excepturi incidunt ipsum\n deleniti labore, tempore non nam doloribus blanditiis veritatis illo autem iure aliquid ullam\n rem tenetur deserunt velit culpa?\n
    \n }\n \n }\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AAGA;;AAEG;MAOU,2BAA2B,CAAA;AACtC,IAAA,KAAK,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IAC3D,aAAa,GAAG,CAAC,CAAC;uGAFP,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA3B,2BAA2B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZxC,+uCA+BA,EAAA,MAAA,EAAA,CAAA,u3BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDrBY,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,+BAAA,EAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,wCAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEjB,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBANvC,SAAS;+BACE,gCAAgC,EAAA,OAAA,EAGjC,CAAC,kBAAkB,CAAC,EAAA,QAAA,EAAA,+uCAAA,EAAA,MAAA,EAAA,CAAA,u3BAAA,CAAA,EAAA,CAAA;;;AEV/B;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"accordion.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/accordion/cdk-accordion-overview/cdk-accordion-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/accordion/cdk-accordion-overview/cdk-accordion-overview-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkAccordionModule} from '@angular/cdk/accordion';\n\n/**\n * @title Accordion overview\n */\n@Component({\n selector: 'cdk-accordion-overview-example',\n templateUrl: 'cdk-accordion-overview-example.html',\n styleUrl: 'cdk-accordion-overview-example.css',\n imports: [CdkAccordionModule],\n})\nexport class CdkAccordionOverviewExample {\n items = ['Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5'];\n expandedIndex = 0;\n}\n","\n @for (item of items; track item; let index = $index) {\n \n \n {{ item }}\n \n Click to {{ accordionItem.expanded ? 'close' : 'open' }}\n \n \n @if(accordionItem.expanded) {\n \n Lorem ipsum dolor, sit amet, consectetur adipisicing elit. Perferendis excepturi incidunt ipsum\n deleniti labore, tempore non nam doloribus blanditiis veritatis illo autem iure aliquid ullam\n rem tenetur deserunt velit culpa?\n \n }\n \n }\n\n"],"names":[],"mappings":";;;;;AAGA;;AAEG;MAOU,2BAA2B,CAAA;AACtC,IAAA,KAAK,GAAG,CAAC,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,CAAC;IAC1D,aAAa,GAAG,CAAC;4GAFN,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAA3B,2BAA2B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZxC,+uCA+BA,EAAA,MAAA,EAAA,CAAA,u3BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDrBY,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,+BAAA,EAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,wCAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEjB,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBANvC,SAAS;+BACE,gCAAgC,EAAA,OAAA,EAGjC,CAAC,kBAAkB,CAAC,EAAA,QAAA,EAAA,+uCAAA,EAAA,MAAA,EAAA,CAAA,u3BAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/clipboard.mjs b/fesm2022/cdk/clipboard.mjs index bf6f23e4da..821bd661f4 100755 --- a/fesm2022/cdk/clipboard.mjs +++ b/fesm2022/cdk/clipboard.mjs @@ -2,7 +2,7 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; import * as i2 from '@angular/cdk/clipboard'; import { ClipboardModule } from '@angular/cdk/clipboard'; -import * as i1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; /** @@ -18,17 +18,13 @@ class CdkClipboardOverviewExample { `thing he was afraid of was losing his power, which eventually, of course, he did. ` + `Unfortunately, he taught his apprentice everything he knew, then his apprentice ` + `killed him in his sleep. Ironic. He could save others from death, but not himself.`; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkClipboardOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkClipboardOverviewExample, isStandalone: true, selector: "cdk-clipboard-overview-example", ngImport: i0, template: "\n\n\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ClipboardModule }, { kind: "directive", type: i2.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkClipboardOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkClipboardOverviewExample, isStandalone: true, selector: "cdk-clipboard-overview-example", ngImport: i0, template: "\n\n\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ClipboardModule }, { kind: "directive", type: i2.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkClipboardOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkClipboardOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-clipboard-overview-example', imports: [FormsModule, ClipboardModule], template: "\n\n\n", styles: ["textarea {\n display: block;\n margin: 4px 0 8px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkClipboardOverviewExample }; //# sourceMappingURL=clipboard.mjs.map diff --git a/fesm2022/cdk/clipboard.mjs.map b/fesm2022/cdk/clipboard.mjs.map index 6f39a03f40..60e0a6565d 100755 --- a/fesm2022/cdk/clipboard.mjs.map +++ b/fesm2022/cdk/clipboard.mjs.map @@ -1 +1 @@ -{"version":3,"file":"clipboard.mjs","sources":["../../../../../../../src/components-examples/cdk/clipboard/cdk-clipboard-overview/cdk-clipboard-overview-example.ts","../../../../../../../src/components-examples/cdk/clipboard/cdk-clipboard-overview/cdk-clipboard-overview-example.html","../../../../../../../src/components-examples/cdk/clipboard/clipboard_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {ClipboardModule} from '@angular/cdk/clipboard';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Clipboard overview\n */\n@Component({\n selector: 'cdk-clipboard-overview-example',\n templateUrl: 'cdk-clipboard-overview-example.html',\n styleUrl: 'cdk-clipboard-overview-example.css',\n imports: [FormsModule, ClipboardModule],\n})\nexport class CdkClipboardOverviewExample {\n value =\n `Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not ` +\n `a story the Jedi would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord ` +\n `of the Sith, so powerful and so wise he could use the Force to influence the ` +\n `midichlorians to create life… He had such a knowledge of the dark side that he could ` +\n `even keep the ones he cared about from dying. The dark side of the Force is a pathway ` +\n `to many abilities some consider to be unnatural. He became so powerful… the only ` +\n `thing he was afraid of was losing his power, which eventually, of course, he did. ` +\n `Unfortunately, he taught his apprentice everything he knew, then his apprentice ` +\n `killed him in his sleep. Ironic. He could save others from death, but not himself.`;\n}\n","\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;AAIA;;AAEG;MAOU,2BAA2B,CAAA;AACtC,IAAA,KAAK,GACH,CAAoF,kFAAA,CAAA;QACpF,CAAsF,oFAAA,CAAA;QACtF,CAA+E,6EAAA,CAAA;QAC/E,CAAuF,qFAAA,CAAA;QACvF,CAAwF,sFAAA,CAAA;QACxF,CAAmF,iFAAA,CAAA;QACnF,CAAoF,kFAAA,CAAA;QACpF,CAAkF,gFAAA,CAAA;AAClF,QAAA,CAAA,kFAAA,CAAoF,CAAC;uGAV5E,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA3B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,2BAA2B,ECbxC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,iPAGA,EDQY,MAAA,EAAA,CAAA,0DAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,WAAW,8mBAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,4BAAA,CAAA,EAAA,OAAA,EAAA,CAAA,0BAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE3B,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBANvC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,gCAAgC,EAGjC,OAAA,EAAA,CAAC,WAAW,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,iPAAA,EAAA,MAAA,EAAA,CAAA,0DAAA,CAAA,EAAA,CAAA;;;AEXzC;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"clipboard.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/clipboard/cdk-clipboard-overview/cdk-clipboard-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/clipboard/cdk-clipboard-overview/cdk-clipboard-overview-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {ClipboardModule} from '@angular/cdk/clipboard';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Clipboard overview\n */\n@Component({\n selector: 'cdk-clipboard-overview-example',\n templateUrl: 'cdk-clipboard-overview-example.html',\n styleUrl: 'cdk-clipboard-overview-example.css',\n imports: [FormsModule, ClipboardModule],\n})\nexport class CdkClipboardOverviewExample {\n value =\n `Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not ` +\n `a story the Jedi would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord ` +\n `of the Sith, so powerful and so wise he could use the Force to influence the ` +\n `midichlorians to create life… He had such a knowledge of the dark side that he could ` +\n `even keep the ones he cared about from dying. The dark side of the Force is a pathway ` +\n `to many abilities some consider to be unnatural. He became so powerful… the only ` +\n `thing he was afraid of was losing his power, which eventually, of course, he did. ` +\n `Unfortunately, he taught his apprentice everything he knew, then his apprentice ` +\n `killed him in his sleep. Ironic. He could save others from death, but not himself.`;\n}\n","\n\n\n"],"names":[],"mappings":";;;;;;;AAIA;;AAEG;MAOU,2BAA2B,CAAA;AACtC,IAAA,KAAK,GACH,CAAoF,kFAAA,CAAA;QACpF,CAAsF,oFAAA,CAAA;QACtF,CAA+E,6EAAA,CAAA;QAC/E,CAAuF,qFAAA,CAAA;QACvF,CAAwF,sFAAA,CAAA;QACxF,CAAmF,iFAAA,CAAA;QACnF,CAAoF,kFAAA,CAAA;QACpF,CAAkF,gFAAA,CAAA;AAClF,QAAA,CAAA,kFAAA,CAAoF;4GAV3E,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA3B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,2BAA2B,ECbxC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,gCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,iPAGA,EDQY,MAAA,EAAA,CAAA,0DAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,WAAW,8mBAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,4BAAA,CAAA,EAAA,OAAA,EAAA,CAAA,0BAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAE3B,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBANvC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,gCAAgC,EAGjC,OAAA,EAAA,CAAC,WAAW,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,iPAAA,EAAA,MAAA,EAAA,CAAA,0DAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/dialog.mjs b/fesm2022/cdk/dialog.mjs index c668a06dc0..8dfabdf7aa 100755 --- a/fesm2022/cdk/dialog.mjs +++ b/fesm2022/cdk/dialog.mjs @@ -1,7 +1,7 @@ import * as i0 from '@angular/core'; import { inject, Component } from '@angular/core'; import { Dialog, DialogModule, DIALOG_DATA, DialogRef } from '@angular/cdk/dialog'; -import * as i1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; /** @@ -17,19 +17,19 @@ class CdkDialogDataExample { }, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDialogDataExample, isStandalone: true, selector: "cdk-dialog-data-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: DialogModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDialogDataExample, isStandalone: true, selector: "cdk-dialog-data-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: DialogModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogDataExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogDataExample, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-data-example', imports: [DialogModule], template: "\n" }] }] }); class CdkDialogDataExampleDialog { data = inject(DIALOG_DATA); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogDataExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDialogDataExampleDialog, isStandalone: true, selector: "cdk-dialog-data-example-dialog", ngImport: i0, template: "

    Favorite Animal

    \n
    \n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px;\n}\n"] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogDataExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDialogDataExampleDialog, isStandalone: true, selector: "cdk-dialog-data-example-dialog", ngImport: i0, template: "

    Favorite Animal

    \n
    \n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px;\n}\n"] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogDataExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogDataExampleDialog, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-data-example-dialog', template: "

    Favorite Animal

    \n
    \n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px;\n}\n"] }] }] }); @@ -51,20 +51,20 @@ class CdkDialogOverviewExample { this.animal = result; }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDialogOverviewExample, isStandalone: true, selector: "cdk-dialog-overview-example", ngImport: i0, template: "
      \n
    1. \n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal) {\n
    5. \n You chose: {{animal}}\n
    6. \n }\n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: DialogModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDialogOverviewExample, isStandalone: true, selector: "cdk-dialog-overview-example", ngImport: i0, template: "
      \n
    1. \n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal) {\n
    5. \n You chose: {{animal}}\n
    6. \n }\n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: DialogModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-overview-example', imports: [FormsModule, DialogModule], template: "
      \n
    1. \n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal) {\n
    5. \n You chose: {{animal}}\n
    6. \n }\n
    \n" }] }] }); class CdkDialogOverviewExampleDialog { dialogRef = inject((DialogRef)); data = inject(DIALOG_DATA); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogOverviewExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDialogOverviewExampleDialog, isStandalone: true, selector: "cdk-dialog-overview-example-dialog", ngImport: i0, template: "

    Hi {{data.name}}

    \n
    \n \n \n
    \n
    \n \n \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px 16px;\n}\n\ninput {\n margin: 8px 0;\n}\n\nbutton + button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogOverviewExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDialogOverviewExampleDialog, isStandalone: true, selector: "cdk-dialog-overview-example-dialog", ngImport: i0, template: "

    Hi {{data.name}}

    \n
    \n \n \n
    \n
    \n \n \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px 16px;\n}\n\ninput {\n margin: 8px 0;\n}\n\nbutton + button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogOverviewExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogOverviewExampleDialog, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-overview-example-dialog', imports: [FormsModule], template: "

    Hi {{data.name}}

    \n
    \n \n \n
    \n
    \n \n \n
    \n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 8px 16px 16px;\n}\n\ninput {\n margin: 8px 0;\n}\n\nbutton + button {\n margin-left: 8px;\n}\n"] }] }] }); @@ -77,26 +77,22 @@ class CdkDialogStylingExample { openDialog() { this.dialog.open(CdkDialogStylingExampleDialog); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogStylingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDialogStylingExample, isStandalone: true, selector: "cdk-dialog-styling-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: DialogModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogStylingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDialogStylingExample, isStandalone: true, selector: "cdk-dialog-styling-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: DialogModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogStylingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogStylingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-styling-example', imports: [DialogModule], template: "\n" }] }] }); class CdkDialogStylingExampleDialog { dialogRef = inject(DialogRef); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogStylingExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDialogStylingExampleDialog, isStandalone: true, selector: "cdk-dialog-styling-example-dialog", ngImport: i0, template: "Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\nwould tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\nwise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\nof the dark side that he could even keep the ones he cared about from dying. The dark side of the\nForce is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the only\nthing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately,\nhe taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic.\nHe could save others from death, but not himself.\n\n
    \n\n\n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 16px;\n max-width: 500px;\n animation: custom-dialog-enter 1s ease;\n}\n\n@keyframes custom-dialog-enter {\n from {\n transform: scale(0) rotate(360deg);\n }\n\n to {\n transform: none;\n }\n}\n"] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogStylingExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDialogStylingExampleDialog, isStandalone: true, selector: "cdk-dialog-styling-example-dialog", ngImport: i0, template: "Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\nwould tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\nwise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\nof the dark side that he could even keep the ones he cared about from dying. The dark side of the\nForce is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the only\nthing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately,\nhe taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic.\nHe could save others from death, but not himself.\n\n
    \n\n\n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 16px;\n max-width: 500px;\n animation: custom-dialog-enter 1s ease;\n}\n\n@keyframes custom-dialog-enter {\n from {\n transform: scale(0) rotate(360deg);\n }\n\n to {\n transform: none;\n }\n}\n"] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDialogStylingExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDialogStylingExampleDialog, decorators: [{ type: Component, args: [{ selector: 'cdk-dialog-styling-example-dialog', template: "Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\nwould tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\nwise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\nof the dark side that he could even keep the ones he cared about from dying. The dark side of the\nForce is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the only\nthing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately,\nhe taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic.\nHe could save others from death, but not himself.\n\n
    \n\n\n", styles: [":host {\n display: block;\n background: #fff;\n border-radius: 8px;\n padding: 16px;\n max-width: 500px;\n animation: custom-dialog-enter 1s ease;\n}\n\n@keyframes custom-dialog-enter {\n from {\n transform: scale(0) rotate(360deg);\n }\n\n to {\n transform: none;\n }\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkDialogDataExample, CdkDialogDataExampleDialog, CdkDialogOverviewExample, CdkDialogOverviewExampleDialog, CdkDialogStylingExample, CdkDialogStylingExampleDialog }; //# sourceMappingURL=dialog.mjs.map diff --git a/fesm2022/cdk/dialog.mjs.map b/fesm2022/cdk/dialog.mjs.map index 160d76bea8..9a534dd617 100755 --- a/fesm2022/cdk/dialog.mjs.map +++ b/fesm2022/cdk/dialog.mjs.map @@ -1 +1 @@ -{"version":3,"file":"dialog.mjs","sources":["../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example.ts","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example.html","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example-dialog.html","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example.ts","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example.html","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example-dialog.html","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example.ts","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example.html","../../../../../../../src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example-dialog.html","../../../../../../../src/components-examples/cdk/dialog/dialog_public_index.ts"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {Dialog, DIALOG_DATA, DialogModule} from '@angular/cdk/dialog';\n\nexport interface DialogData {\n animal: 'panda' | 'unicorn' | 'lion';\n}\n\n/**\n * @title Injecting data when opening a dialog\n */\n@Component({\n selector: 'cdk-dialog-data-example',\n templateUrl: 'cdk-dialog-data-example.html',\n imports: [DialogModule],\n})\nexport class CdkDialogDataExample {\n dialog = inject(Dialog);\n\n openDialog() {\n this.dialog.open(CdkDialogDataExampleDialog, {\n minWidth: '300px',\n data: {\n animal: 'panda',\n },\n });\n }\n}\n\n@Component({\n selector: 'cdk-dialog-data-example-dialog',\n templateUrl: 'cdk-dialog-data-example-dialog.html',\n styleUrl: './cdk-dialog-data-example-dialog.css',\n})\nexport class CdkDialogDataExampleDialog {\n data = inject(DIALOG_DATA);\n}\n","\n","

    Favorite Animal

    \n
    \n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {Dialog, DialogRef, DIALOG_DATA, DialogModule} from '@angular/cdk/dialog';\nimport {FormsModule} from '@angular/forms';\n\nexport interface DialogData {\n animal: string;\n name: string;\n}\n\n/**\n * @title CDK Dialog Overview\n */\n@Component({\n selector: 'cdk-dialog-overview-example',\n templateUrl: 'cdk-dialog-overview-example.html',\n imports: [FormsModule, DialogModule],\n})\nexport class CdkDialogOverviewExample {\n dialog = inject(Dialog);\n\n animal: string | undefined;\n name: string;\n\n openDialog(): void {\n const dialogRef = this.dialog.open(CdkDialogOverviewExampleDialog, {\n width: '250px',\n data: {name: this.name, animal: this.animal},\n });\n\n dialogRef.closed.subscribe(result => {\n console.log('The dialog was closed');\n this.animal = result;\n });\n }\n}\n\n@Component({\n selector: 'cdk-dialog-overview-example-dialog',\n templateUrl: 'cdk-dialog-overview-example-dialog.html',\n styleUrl: 'cdk-dialog-overview-example-dialog.css',\n imports: [FormsModule],\n})\nexport class CdkDialogOverviewExampleDialog {\n dialogRef = inject>(DialogRef);\n data = inject(DIALOG_DATA);\n}\n","
      \n
    1. \n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal) {\n
    5. \n You chose: {{animal}}\n
    6. \n }\n
    \n","

    Hi {{data.name}}

    \n
    \n \n \n
    \n
    \n \n \n
    \n","import {Component, inject} from '@angular/core';\nimport {Dialog, DialogModule, DialogRef} from '@angular/cdk/dialog';\n\n/**\n * @title CDK Dialog Styling\n */\n@Component({\n selector: 'cdk-dialog-styling-example',\n templateUrl: 'cdk-dialog-styling-example.html',\n imports: [DialogModule],\n})\nexport class CdkDialogStylingExample {\n dialog = inject(Dialog);\n\n openDialog(): void {\n this.dialog.open(CdkDialogStylingExampleDialog);\n }\n}\n\n@Component({\n selector: 'cdk-dialog-styling-example-dialog',\n templateUrl: 'cdk-dialog-styling-example-dialog.html',\n styleUrl: 'cdk-dialog-styling-example-dialog.css',\n})\nexport class CdkDialogStylingExampleDialog {\n dialogRef = inject(DialogRef);\n}\n","\n","Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\nwould tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\nwise he could use the Force to influence the midichlorians to create life… He had such a knowledge\nof the dark side that he could even keep the ones he cared about from dying. The dark side of the\nForce is a pathway to many abilities some consider to be unnatural. He became so powerful… the only\nthing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately,\nhe taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic.\nHe could save others from death, but not himself.\n\n
    \n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"dialog.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-data/cdk-dialog-data-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/dialog/cdk-dialog-styling/cdk-dialog-styling-example-dialog.html"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {Dialog, DIALOG_DATA, DialogModule} from '@angular/cdk/dialog';\n\nexport interface DialogData {\n animal: 'panda' | 'unicorn' | 'lion';\n}\n\n/**\n * @title Injecting data when opening a dialog\n */\n@Component({\n selector: 'cdk-dialog-data-example',\n templateUrl: 'cdk-dialog-data-example.html',\n imports: [DialogModule],\n})\nexport class CdkDialogDataExample {\n dialog = inject(Dialog);\n\n openDialog() {\n this.dialog.open(CdkDialogDataExampleDialog, {\n minWidth: '300px',\n data: {\n animal: 'panda',\n },\n });\n }\n}\n\n@Component({\n selector: 'cdk-dialog-data-example-dialog',\n templateUrl: 'cdk-dialog-data-example-dialog.html',\n styleUrl: './cdk-dialog-data-example-dialog.css',\n})\nexport class CdkDialogDataExampleDialog {\n data = inject(DIALOG_DATA);\n}\n","\n","

    Favorite Animal

    \n
    \n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {Dialog, DialogRef, DIALOG_DATA, DialogModule} from '@angular/cdk/dialog';\nimport {FormsModule} from '@angular/forms';\n\nexport interface DialogData {\n animal: string;\n name: string;\n}\n\n/**\n * @title CDK Dialog Overview\n */\n@Component({\n selector: 'cdk-dialog-overview-example',\n templateUrl: 'cdk-dialog-overview-example.html',\n imports: [FormsModule, DialogModule],\n})\nexport class CdkDialogOverviewExample {\n dialog = inject(Dialog);\n\n animal: string | undefined;\n name: string;\n\n openDialog(): void {\n const dialogRef = this.dialog.open(CdkDialogOverviewExampleDialog, {\n width: '250px',\n data: {name: this.name, animal: this.animal},\n });\n\n dialogRef.closed.subscribe(result => {\n console.log('The dialog was closed');\n this.animal = result;\n });\n }\n}\n\n@Component({\n selector: 'cdk-dialog-overview-example-dialog',\n templateUrl: 'cdk-dialog-overview-example-dialog.html',\n styleUrl: 'cdk-dialog-overview-example-dialog.css',\n imports: [FormsModule],\n})\nexport class CdkDialogOverviewExampleDialog {\n dialogRef = inject>(DialogRef);\n data = inject(DIALOG_DATA);\n}\n","
      \n
    1. \n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal) {\n
    5. \n You chose: {{animal}}\n
    6. \n }\n
    \n","

    Hi {{data.name}}

    \n
    \n \n \n
    \n
    \n \n \n
    \n","import {Component, inject} from '@angular/core';\nimport {Dialog, DialogModule, DialogRef} from '@angular/cdk/dialog';\n\n/**\n * @title CDK Dialog Styling\n */\n@Component({\n selector: 'cdk-dialog-styling-example',\n templateUrl: 'cdk-dialog-styling-example.html',\n imports: [DialogModule],\n})\nexport class CdkDialogStylingExample {\n dialog = inject(Dialog);\n\n openDialog(): void {\n this.dialog.open(CdkDialogStylingExampleDialog);\n }\n}\n\n@Component({\n selector: 'cdk-dialog-styling-example-dialog',\n templateUrl: 'cdk-dialog-styling-example-dialog.html',\n styleUrl: 'cdk-dialog-styling-example-dialog.css',\n})\nexport class CdkDialogStylingExampleDialog {\n dialogRef = inject(DialogRef);\n}\n","\n","Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\nwould tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\nwise he could use the Force to influence the midichlorians to create life… He had such a knowledge\nof the dark side that he could even keep the ones he cared about from dying. The dark side of the\nForce is a pathway to many abilities some consider to be unnatural. He became so powerful… the only\nthing he was afraid of was losing his power, which eventually, of course, he did. Unfortunately,\nhe taught his apprentice everything he knew, then his apprentice killed him in his sleep. Ironic.\nHe could save others from death, but not himself.\n\n
    \n\n\n"],"names":["i1"],"mappings":";;;;;;AAOA;;AAEG;MAMU,oBAAoB,CAAA;AAC/B,IAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;IAEvB,UAAU,GAAA;AACR,QAAA,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,0BAA0B,EAAE;AAC3C,YAAA,QAAQ,EAAE,OAAO;AACjB,YAAA,IAAI,EAAE;AACJ,gBAAA,MAAM,EAAE,OAAO;AAChB,aAAA;AACF,SAAA,CAAC;;4GATO,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAApB,oBAAoB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECfjC,yDACA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDYY,YAAY,EAAA,CAAA,EAAA,CAAA;;gGAEX,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,yBAAyB,EAAA,OAAA,EAE1B,CAAC,YAAY,CAAC,EAAA,QAAA,EAAA,yDAAA,EAAA;;MAoBZ,0BAA0B,CAAA;AACrC,IAAA,IAAI,GAAG,MAAM,CAAC,WAAW,CAAC;4GADf,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,0BAA0B,0FEjCvC,sZAqBA,EAAA,MAAA,EAAA,CAAA,mGAAA,CAAA,EAAA,CAAA;;gGFYa,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBALtC,SAAS;+BACE,gCAAgC,EAAA,QAAA,EAAA,sZAAA,EAAA,MAAA,EAAA,CAAA,mGAAA,CAAA,EAAA;;;AGpB5C;;AAEG;MAMU,wBAAwB,CAAA;AACnC,IAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;AAEvB,IAAA,MAAM;AACN,IAAA,IAAI;IAEJ,UAAU,GAAA;QACR,MAAM,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAS,8BAA8B,EAAE;AACzE,YAAA,KAAK,EAAE,OAAO;AACd,YAAA,IAAI,EAAE,EAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC;AAC7C,SAAA,CAAC;AAEF,QAAA,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,MAAM,IAAG;AAClC,YAAA,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC;AACpC,YAAA,IAAI,CAAC,MAAM,GAAG,MAAM;AACtB,SAAC,CAAC;;4GAfO,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAxB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,wBAAwB,ECjBrC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,oTAcA,EDCY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,WAAW,8mBAAE,YAAY,EAAA,CAAA,EAAA,CAAA;;gGAExB,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,6BAA6B,EAE9B,OAAA,EAAA,CAAC,WAAW,EAAE,YAAY,CAAC,EAAA,QAAA,EAAA,oTAAA,EAAA;;MA2BzB,8BAA8B,CAAA;AACzC,IAAA,SAAS,GAAG,MAAM,EAAoB,SAAiB,EAAC;AACxD,IAAA,IAAI,GAAG,MAAM,CAAC,WAAW,CAAC;4GAFf,8BAA8B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAA9B,8BAA8B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EE1C3C,yVASA,EAAA,MAAA,EAAA,CAAA,qLAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EF+BY,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,SAAA,EAAA,gBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEV,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAN1C,SAAS;+BACE,oCAAoC,EAAA,OAAA,EAGrC,CAAC,WAAW,CAAC,EAAA,QAAA,EAAA,yVAAA,EAAA,MAAA,EAAA,CAAA,qLAAA,CAAA,EAAA;;;AGrCxB;;AAEG;MAMU,uBAAuB,CAAA;AAClC,IAAA,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;IAEvB,UAAU,GAAA;AACR,QAAA,IAAI,CAAC,MAAM,CAAC,IAAI,CAAS,6BAA6B,CAAC;;4GAJ9C,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECXpC,gEACA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDQY,YAAY,EAAA,CAAA,EAAA,CAAA;;gGAEX,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,SAAS;+BACE,4BAA4B,EAAA,OAAA,EAE7B,CAAC,YAAY,CAAC,EAAA,QAAA,EAAA,gEAAA,EAAA;;MAeZ,6BAA6B,CAAA;AACxC,IAAA,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;4GADlB,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA7B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,6BAA6B,6FExB1C,wzBAYA,EAAA,MAAA,EAAA,CAAA,mSAAA,CAAA,EAAA,CAAA;;gGFYa,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBALzC,SAAS;+BACE,mCAAmC,EAAA,QAAA,EAAA,wzBAAA,EAAA,MAAA,EAAA,CAAA,mSAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/drag-drop.mjs b/fesm2022/cdk/drag-drop.mjs index 95ba73c930..ba563d0e09 100755 --- a/fesm2022/cdk/drag-drop.mjs +++ b/fesm2022/cdk/drag-drop.mjs @@ -1,11 +1,11 @@ import * as i0 from '@angular/core'; -import { Component, inject, ViewContainerRef, TemplateRef, ViewChild, ViewEncapsulation } from '@angular/core'; +import { Component, inject, Injector, ViewContainerRef, TemplateRef, ViewChild, ViewEncapsulation } from '@angular/core'; import { CdkDrag, moveItemInArray, transferArrayItem, CdkDropListGroup, CdkDropList, CdkDragPlaceholder, CdkDragPreview, CdkDragHandle } from '@angular/cdk/drag-drop'; -import { Overlay } from '@angular/cdk/overlay'; +import { createOverlayRef, createGlobalPositionStrategy } from '@angular/cdk/overlay'; import { TemplatePortal } from '@angular/cdk/portal'; import * as i1 from '@angular/material/table'; import { MatTableModule } from '@angular/material/table'; -import * as i2 from '@angular/material/icon'; +import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; import * as i1$1 from '@angular/material/tabs'; import { MatTabsModule } from '@angular/material/tabs'; @@ -14,10 +14,10 @@ import { MatTabsModule } from '@angular/material/tabs'; * @title Drag&Drop position locking */ class CdkDragDropAxisLockExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropAxisLockExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropAxisLockExample, isStandalone: true, selector: "cdk-drag-drop-axis-lock-example", ngImport: i0, template: "
    \n I can only be dragged up/down\n
    \n\n
    \n I can only be dragged left/right\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropAxisLockExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropAxisLockExample, isStandalone: true, selector: "cdk-drag-drop-axis-lock-example", ngImport: i0, template: "
    \n I can only be dragged up/down\n
    \n\n
    \n I can only be dragged left/right\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropAxisLockExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropAxisLockExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-axis-lock-example', imports: [CdkDrag], template: "
    \n I can only be dragged up/down\n
    \n\n
    \n I can only be dragged left/right\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"] }] }] }); @@ -26,10 +26,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Drag&Drop boundary */ class CdkDragDropBoundaryExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropBoundaryExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropBoundaryExample, isStandalone: true, selector: "cdk-drag-drop-boundary-example", ngImport: i0, template: "
    \n
    \n I can only be dragged within the dotted container\n
    \n
    \n\n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n box-sizing: border-box;\n padding: 10px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-boundary {\n width: 400px;\n height: 400px;\n max-width: 100%;\n border: dotted #ccc 2px;\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropBoundaryExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropBoundaryExample, isStandalone: true, selector: "cdk-drag-drop-boundary-example", ngImport: i0, template: "
    \n
    \n I can only be dragged within the dotted container\n
    \n
    \n\n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n box-sizing: border-box;\n padding: 10px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-boundary {\n width: 400px;\n height: 400px;\n max-width: 100%;\n border: dotted #ccc 2px;\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropBoundaryExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropBoundaryExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-boundary-example', imports: [CdkDrag], template: "
    \n
    \n I can only be dragged within the dotted container\n
    \n
    \n\n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n margin-right: 25px;\n position: relative;\n z-index: 1;\n box-sizing: border-box;\n padding: 10px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-boundary {\n width: 400px;\n height: 400px;\n max-width: 100%;\n border: dotted #ccc 2px;\n}\n"] }] }] }); @@ -48,10 +48,10 @@ class CdkDragDropConnectedSortingGroupExample { transferArrayItem(event.previousContainer.data, event.container.data, event.previousIndex, event.currentIndex); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropConnectedSortingGroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropConnectedSortingGroupExample, isStandalone: true, selector: "cdk-drag-drop-connected-sorting-group-example", ngImport: i0, template: "
    \n
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropListGroup, selector: "[cdkDropListGroup]", inputs: ["cdkDropListGroupDisabled"], exportAs: ["cdkDropListGroup"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropConnectedSortingGroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropConnectedSortingGroupExample, isStandalone: true, selector: "cdk-drag-drop-connected-sorting-group-example", ngImport: i0, template: "
    \n
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropListGroup, selector: "[cdkDropListGroup]", inputs: ["cdkDropListGroupDisabled"], exportAs: ["cdkDropListGroup"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropConnectedSortingGroupExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropConnectedSortingGroupExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-connected-sorting-group-example', imports: [CdkDropListGroup, CdkDropList, CdkDrag], template: "
    \n
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -70,10 +70,10 @@ class CdkDragDropConnectedSortingExample { transferArrayItem(event.previousContainer.data, event.container.data, event.previousIndex, event.currentIndex); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropConnectedSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropConnectedSortingExample, isStandalone: true, selector: "cdk-drag-drop-connected-sorting-example", ngImport: i0, template: "
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n\n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropConnectedSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropConnectedSortingExample, isStandalone: true, selector: "cdk-drag-drop-connected-sorting-example", ngImport: i0, template: "
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n\n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropConnectedSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropConnectedSortingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-connected-sorting-example', imports: [CdkDropList, CdkDrag], template: "
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n\n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -96,10 +96,10 @@ class CdkDragDropCustomPlaceholderExample { drop(event) { moveItemInArray(this.movies, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropCustomPlaceholderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropCustomPlaceholderExample, isStandalone: true, selector: "cdk-drag-drop-custom-placeholder-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    \n
    \n {{movie}}\n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-custom-placeholder {\n background: #ccc;\n border: dotted 3px #999;\n min-height: 60px;\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragPlaceholder, selector: "ng-template[cdkDragPlaceholder]", inputs: ["data"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropCustomPlaceholderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropCustomPlaceholderExample, isStandalone: true, selector: "cdk-drag-drop-custom-placeholder-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    \n
    \n {{movie}}\n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-custom-placeholder {\n background: #ccc;\n border: dotted 3px #999;\n min-height: 60px;\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragPlaceholder, selector: "ng-template[cdkDragPlaceholder]", inputs: ["data"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropCustomPlaceholderExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropCustomPlaceholderExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-custom-placeholder-example', imports: [CdkDropList, CdkDrag, CdkDragPlaceholder], template: "
    \n @for (movie of movies; track movie) {\n
    \n
    \n {{movie}}\n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-custom-placeholder {\n background: #ccc;\n border: dotted 3px #999;\n min-height: 60px;\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -151,10 +151,10 @@ class CdkDragDropCustomPreviewExample { drop(event) { moveItemInArray(this.movies, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropCustomPreviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropCustomPreviewExample, isStandalone: true, selector: "cdk-drag-drop-custom-preview-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    \n {{movie.title}}\n \n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragPreview, selector: "ng-template[cdkDragPreview]", inputs: ["data", "matchSize"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropCustomPreviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropCustomPreviewExample, isStandalone: true, selector: "cdk-drag-drop-custom-preview-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    \n {{movie.title}}\n \n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragPreview, selector: "ng-template[cdkDragPreview]", inputs: ["data", "matchSize"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropCustomPreviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropCustomPreviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-custom-preview-example', imports: [CdkDropList, CdkDrag, CdkDragPreview], template: "
    \n @for (movie of movies; track movie) {\n
    \n {{movie.title}}\n \n
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -163,10 +163,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Delayed dragging */ class CdkDragDropDelayExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDelayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropDelayExample, isStandalone: true, selector: "cdk-drag-drop-delay-example", ngImport: i0, template: "
    \n Dragging starts after one second\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDelayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropDelayExample, isStandalone: true, selector: "cdk-drag-drop-delay-example", ngImport: i0, template: "
    \n Dragging starts after one second\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDelayExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDelayExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-delay-example', imports: [CdkDrag], template: "
    \n Dragging starts after one second\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"] }] }] }); @@ -185,10 +185,10 @@ class CdkDragDropDisabledSortingExample { transferArrayItem(event.previousContainer.data, event.container.data, event.previousIndex, event.currentIndex); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDisabledSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropDisabledSortingExample, isStandalone: true, selector: "cdk-drag-drop-disabled-sorting-example", ngImport: i0, template: "
    \n
    \n

    Available items

    \n\n \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Shopping basket

    \n\n \n @for (item of basket; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropListGroup, selector: "[cdkDropListGroup]", inputs: ["cdkDropListGroupDisabled"], exportAs: ["cdkDropListGroup"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDisabledSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropDisabledSortingExample, isStandalone: true, selector: "cdk-drag-drop-disabled-sorting-example", ngImport: i0, template: "
    \n
    \n

    Available items

    \n\n \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Shopping basket

    \n\n \n @for (item of basket; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropListGroup, selector: "[cdkDropListGroup]", inputs: ["cdkDropListGroupDisabled"], exportAs: ["cdkDropListGroup"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDisabledSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDisabledSortingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-disabled-sorting-example', imports: [CdkDropListGroup, CdkDropList, CdkDrag], template: "
    \n
    \n

    Available items

    \n\n \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Shopping basket

    \n\n \n @for (item of basket; track item) {\n
    {{item}}
    \n }\n
    \n \n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -205,10 +205,10 @@ class CdkDragDropDisabledExample { drop(event) { moveItemInArray(this.items, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropDisabledExample, isStandalone: true, selector: "cdk-drag-drop-disabled-example", ngImport: i0, template: "
    \n @for (item of items; track item) {\n {{item.value}}
    \n }\n\n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.example-box.cdk-drag-disabled {\n background: #ccc;\n cursor: not-allowed;\n user-select: none;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropDisabledExample, isStandalone: true, selector: "cdk-drag-drop-disabled-example", ngImport: i0, template: "
    \n @for (item of items; track item) {\n {{item.value}}
    \n }\n\n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.example-box.cdk-drag-disabled {\n background: #ccc;\n cursor: not-allowed;\n user-select: none;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropDisabledExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropDisabledExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-disabled-example', imports: [CdkDropList, CdkDrag], template: "
    \n @for (item of items; track item) {\n {{item.value}}
    \n }\n\n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.example-box.cdk-drag-disabled {\n background: #ccc;\n cursor: not-allowed;\n user-select: none;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -235,10 +235,10 @@ class CdkDragDropEnterPredicateExample { noReturnPredicate() { return false; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropEnterPredicateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropEnterPredicateExample, isStandalone: true, selector: "cdk-drag-drop-enter-predicate-example", ngImport: i0, template: "
    \n

    Available numbers

    \n\n \n @for (number of all; track number) {\n {{number}}
    \n }\n \n\n\n
    \n

    Even numbers

    \n\n \n @for (number of even; track number) {\n {{number}}
    \n }\n \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropEnterPredicateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropEnterPredicateExample, isStandalone: true, selector: "cdk-drag-drop-enter-predicate-example", ngImport: i0, template: "
    \n

    Available numbers

    \n\n \n @for (number of all; track number) {\n {{number}}
    \n }\n \n\n\n
    \n

    Even numbers

    \n\n \n @for (number of even; track number) {\n {{number}}
    \n }\n \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropEnterPredicateExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropEnterPredicateExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-enter-predicate-example', imports: [CdkDropList, CdkDrag], template: "
    \n

    Available numbers

    \n\n \n @for (number of all; track number) {\n {{number}}
    \n }\n \n\n\n
    \n

    Even numbers

    \n\n \n @for (number of even; track number) {\n {{number}}
    \n }\n \n\n\n", styles: [".example-container {\n width: 400px;\n max-width: 100%;\n margin: 0 25px 25px 0;\n display: inline-block;\n vertical-align: top;\n}\n\n.example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -251,10 +251,10 @@ class CdkDragDropFreeDragPositionExample { changePosition() { this.dragPosition = { x: this.dragPosition.x + 50, y: this.dragPosition.y + 50 }; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropFreeDragPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropFreeDragPositionExample, isStandalone: true, selector: "cdk-drag-drop-free-drag-position-example", ngImport: i0, template: "

    \n \n

    \n\n
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropFreeDragPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropFreeDragPositionExample, isStandalone: true, selector: "cdk-drag-drop-free-drag-position-example", ngImport: i0, template: "

    \n \n

    \n\n
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropFreeDragPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropFreeDragPositionExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-free-drag-position-example', imports: [CdkDrag], template: "

    \n \n

    \n\n
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"] }] }] }); @@ -263,10 +263,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Drag&Drop with a handle */ class CdkDragDropHandleExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropHandleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropHandleExample, isStandalone: true, selector: "cdk-drag-drop-handle-example", ngImport: i0, template: "
    \n I can only be dragged using the handle\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n padding: 10px;\n box-sizing: border-box;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-handle {\n position: absolute;\n top: 10px;\n right: 10px;\n color: #ccc;\n cursor: move;\n width: 24px;\n height: 24px;\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropHandleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropHandleExample, isStandalone: true, selector: "cdk-drag-drop-handle-example", ngImport: i0, template: "
    \n I can only be dragged using the handle\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n padding: 10px;\n box-sizing: border-box;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-handle {\n position: absolute;\n top: 10px;\n right: 10px;\n color: #ccc;\n cursor: move;\n width: 24px;\n height: 24px;\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropHandleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropHandleExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-handle-example', imports: [CdkDrag, CdkDragHandle], template: "
    \n I can only be dragged using the handle\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n padding: 10px;\n box-sizing: border-box;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.example-handle {\n position: absolute;\n top: 10px;\n right: 10px;\n color: #ccc;\n cursor: move;\n width: 24px;\n height: 24px;\n}\n"] }] }] }); @@ -285,10 +285,10 @@ class CdkDragDropHorizontalSortingExample { drop(event) { moveItemInArray(this.timePeriods, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropHorizontalSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropHorizontalSortingExample, isStandalone: true, selector: "cdk-drag-drop-horizontal-sorting-example", ngImport: i0, template: "
    \n @for (timePeriod of timePeriods; track timePeriod) {\n
    {{timePeriod}}
    \n }\n
    \n", styles: [".example-list {\n width: 1000px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: flex;\n flex-direction: row;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-right: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n flex-grow: 1;\n flex-basis: 0;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropHorizontalSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropHorizontalSortingExample, isStandalone: true, selector: "cdk-drag-drop-horizontal-sorting-example", ngImport: i0, template: "
    \n @for (timePeriod of timePeriods; track timePeriod) {\n
    {{timePeriod}}
    \n }\n
    \n", styles: [".example-list {\n width: 1000px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: flex;\n flex-direction: row;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-right: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n flex-grow: 1;\n flex-basis: 0;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropHorizontalSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropHorizontalSortingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-horizontal-sorting-example', imports: [CdkDropList, CdkDrag], template: "
    \n @for (timePeriod of timePeriods; track timePeriod) {\n
    {{timePeriod}}
    \n }\n
    \n", styles: [".example-list {\n width: 1000px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: flex;\n flex-direction: row;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-right: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n flex-grow: 1;\n flex-basis: 0;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -297,10 +297,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic Drag&Drop */ class CdkDragDropOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropOverviewExample, isStandalone: true, selector: "cdk-drag-drop-overview-example", ngImport: i0, template: "
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropOverviewExample, isStandalone: true, selector: "cdk-drag-drop-overview-example", ngImport: i0, template: "
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-overview-example', imports: [CdkDrag], template: "
    \n Drag me around\n
    \n", styles: [".example-box {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n border-radius: 4px;\n position: relative;\n z-index: 1;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-box:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"] }] }] }); @@ -309,15 +309,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Drag&Drop with alternate root element */ class CdkDragDropRootElementExample { - _overlay = inject(Overlay); + _injector = inject(Injector); _viewContainerRef = inject(ViewContainerRef); _dialogTemplate; _overlayRef; _portal; ngAfterViewInit() { this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef); - this._overlayRef = this._overlay.create({ - positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(), + this._overlayRef = createOverlayRef(this._injector, { + positionStrategy: createGlobalPositionStrategy(this._injector) + .centerHorizontally() + .centerVertically(), hasBackdrop: true, }); this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach()); @@ -328,10 +330,10 @@ class CdkDragDropRootElementExample { openDialog() { this._overlayRef.attach(this._portal); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropRootElementExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropRootElementExample, isStandalone: true, selector: "cdk-drag-drop-root-element-example", viewQueries: [{ propertyName: "_dialogTemplate", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "\n\n\n
    \n Drag the dialog around!\n
    \n
    \n", styles: [".example-dialog-content {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n background: #fff;\n border-radius: 4px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-dialog-content:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropRootElementExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropRootElementExample, isStandalone: true, selector: "cdk-drag-drop-root-element-example", viewQueries: [{ propertyName: "_dialogTemplate", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "\n\n\n
    \n Drag the dialog around!\n
    \n
    \n", styles: [".example-dialog-content {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n background: #fff;\n border-radius: 4px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-dialog-content:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropRootElementExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropRootElementExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-root-element-example', imports: [CdkDrag], template: "\n\n\n
    \n Drag the dialog around!\n
    \n
    \n", styles: [".example-dialog-content {\n width: 200px;\n height: 200px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: flex;\n justify-content: center;\n align-items: center;\n background: #fff;\n border-radius: 4px;\n transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2),\n 0 2px 2px 0 rgba(0, 0, 0, 0.14),\n 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.example-dialog-content:active {\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n"] }] }], propDecorators: { _dialogTemplate: [{ @@ -357,10 +359,10 @@ class CdkDragDropSortingExample { drop(event) { moveItemInArray(this.movies, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropSortingExample, isStandalone: true, selector: "cdk-drag-drop-sorting-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    {{movie}}
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n border: none;\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropSortingExample, isStandalone: true, selector: "cdk-drag-drop-sorting-example", ngImport: i0, template: "
    \n @for (movie of movies; track movie) {\n
    {{movie}}
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n border: none;\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropSortingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-sorting-example', imports: [CdkDropList, CdkDrag], template: "
    \n @for (movie of movies; track movie) {\n
    {{movie}}
    \n }\n
    \n", styles: [".example-list {\n width: 500px;\n max-width: 100%;\n border: solid 1px #ccc;\n min-height: 60px;\n display: block;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n border: none;\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -380,10 +382,10 @@ class CdkDragDropSortPredicateExample { sortPredicate(index, item) { return (index + 1) % 2 === item.data % 2; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropSortPredicateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropSortPredicateExample, isStandalone: true, selector: "cdk-drag-drop-sort-predicate-example", ngImport: i0, template: "\n @for (number of numbers; track number) {\n {{number}}\n }\n\n", styles: [".example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n width: 400px;\n max-width: 100%;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropSortPredicateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropSortPredicateExample, isStandalone: true, selector: "cdk-drag-drop-sort-predicate-example", ngImport: i0, template: "\n @for (number of numbers; track number) {\n {{number}}\n }\n\n", styles: [".example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n width: 400px;\n max-width: 100%;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropSortPredicateExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropSortPredicateExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-sort-predicate-example', imports: [CdkDropList, CdkDrag], template: "\n @for (number of numbers; track number) {\n {{number}}\n }\n\n", styles: [".example-list {\n border: solid 1px #ccc;\n min-height: 60px;\n background: white;\n border-radius: 4px;\n overflow: hidden;\n display: block;\n width: 400px;\n max-width: 100%;\n}\n\n.example-box {\n padding: 20px 10px;\n border-bottom: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n box-sizing: border-box;\n cursor: move;\n background: white;\n font-size: 14px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-box:last-child {\n border: none;\n}\n\n.example-list.cdk-drop-list-dragging .example-box:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -412,10 +414,10 @@ class CdkDragDropTableExample { moveItemInArray(this.dataSource, previousIndex, event.currentIndex); this.table.renderRows(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkDragDropTableExample, isStandalone: true, selector: "cdk-drag-drop-table-example", viewQueries: [{ propertyName: "table", first: true, predicate: ["table"], descendants: true, static: true }], ngImport: i0, template: "\r\n \r\n \r\n No. \r\n \r\n reorder\r\n {{element.position}}\r\n \r\n \r\n\r\n \r\n \r\n Name \r\n {{element.name}} \r\n \r\n\r\n \r\n \r\n Weight \r\n {{element.weight}} \r\n \r\n\r\n \r\n \r\n Symbol \r\n {{element.symbol}} \r\n \r\n\r\n \r\n \r\n Quantity of Element \r\n {{element.quantity}}\r\n \r\n\r\n \r\n \r\n\r\n", styles: ["table {\n width: 100%;\n}\n\n.example-drag-cursor {\n margin-right: 16px;\n cursor: move;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n background-color: white;\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.cdk-drop-list-dragging .mat-row:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkDragDropTableExample, isStandalone: true, selector: "cdk-drag-drop-table-example", viewQueries: [{ propertyName: "table", first: true, predicate: ["table"], descendants: true, static: true }], ngImport: i0, template: "\r\n \r\n \r\n No. \r\n \r\n reorder\r\n {{element.position}}\r\n \r\n \r\n\r\n \r\n \r\n Name \r\n {{element.name}} \r\n \r\n\r\n \r\n \r\n Weight \r\n {{element.weight}} \r\n \r\n\r\n \r\n \r\n Symbol \r\n {{element.symbol}} \r\n \r\n\r\n \r\n \r\n Quantity of Element \r\n {{element.quantity}}\r\n \r\n\r\n \r\n \r\n\r\n", styles: ["table {\n width: 100%;\n}\n\n.example-drag-cursor {\n margin-right: 16px;\n cursor: move;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n background-color: white;\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.cdk-drop-list-dragging .mat-row:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropTableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropTableExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-table-example', imports: [CdkDropList, CdkDrag, MatTableModule, MatIconModule], template: "\r\n \r\n \r\n No. \r\n \r\n reorder\r\n {{element.position}}\r\n \r\n \r\n\r\n \r\n \r\n Name \r\n {{element.name}} \r\n \r\n\r\n \r\n \r\n Weight \r\n {{element.weight}} \r\n \r\n\r\n \r\n \r\n Symbol \r\n {{element.symbol}} \r\n \r\n\r\n \r\n \r\n Quantity of Element \r\n {{element.quantity}}\r\n \r\n\r\n \r\n \r\n\r\n", styles: ["table {\n width: 100%;\n}\n\n.example-drag-cursor {\n margin-right: 16px;\n cursor: move;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n background-color: white;\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.cdk-drop-list-dragging .mat-row:not(.cdk-drag-placeholder) {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }], propDecorators: { table: [{ @@ -431,10 +433,10 @@ class CdkDragDropMixedSortingExample { drop(event) { moveItemInArray(this.items, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropMixedSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropMixedSortingExample, isStandalone: true, selector: "cdk-drag-drop-mixed-sorting-example", ngImport: i0, template: "
    \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n", styles: [".example-list {\n display: flex;\n flex-wrap: wrap;\n width: 505px;\n max-width: 100%;\n gap: 15px;\n padding: 15px;\n border: solid 1px #ccc;\n min-height: 60px;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border: solid 1px #ccc;\n border-radius: 4px;\n color: rgba(0, 0, 0, 0.87);\n display: inline-block;\n box-sizing: border-box;\n cursor: move;\n background: white;\n text-align: center;\n font-size: 14px;\n min-width: 115px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropMixedSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropMixedSortingExample, isStandalone: true, selector: "cdk-drag-drop-mixed-sorting-example", ngImport: i0, template: "
    \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n", styles: [".example-list {\n display: flex;\n flex-wrap: wrap;\n width: 505px;\n max-width: 100%;\n gap: 15px;\n padding: 15px;\n border: solid 1px #ccc;\n min-height: 60px;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border: solid 1px #ccc;\n border-radius: 4px;\n color: rgba(0, 0, 0, 0.87);\n display: inline-block;\n box-sizing: border-box;\n cursor: move;\n background: white;\n text-align: center;\n font-size: 14px;\n min-width: 115px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropMixedSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropMixedSortingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-mixed-sorting-example', imports: [CdkDropList, CdkDrag], template: "
    \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n", styles: [".example-list {\n display: flex;\n flex-wrap: wrap;\n width: 505px;\n max-width: 100%;\n gap: 15px;\n padding: 15px;\n border: solid 1px #ccc;\n min-height: 60px;\n border-radius: 4px;\n overflow: hidden;\n}\n\n.example-box {\n padding: 20px 10px;\n border: solid 1px #ccc;\n border-radius: 4px;\n color: rgba(0, 0, 0, 0.87);\n display: inline-block;\n box-sizing: border-box;\n cursor: move;\n background: white;\n text-align: center;\n font-size: 14px;\n min-width: 115px;\n}\n\n.cdk-drag-preview {\n box-sizing: border-box;\n border-radius: 4px;\n box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),\n 0 8px 10px 1px rgba(0, 0, 0, 0.14),\n 0 3px 14px 2px rgba(0, 0, 0, 0.12);\n}\n\n.cdk-drag-placeholder {\n opacity: 0;\n}\n\n.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -450,17 +452,13 @@ class CdkDragDropTabsExample { moveItemInArray(this.tabs, event.previousIndex, event.currentIndex); this.selectedTabIndex = this.tabs.indexOf(prevActive); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropTabsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkDragDropTabsExample, isStandalone: true, selector: "cdk-drag-drop-tabs-example", ngImport: i0, template: "\n @for (tab of tabs; track $index) {\n \n \n {{tab}}\n \n\n

    Content for {{tab}}

    \n\n Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem perspiciatis in delectus\n reprehenderit, molestias ullam nostrum odit, modi consequatur harum beatae? Sapiente\n voluptatibus illo natus assumenda hic quasi dolor et laborum veniam! Molestiae architecto\n nesciunt est quo nisi? Nostrum repellendus quibusdam laudantium? Optio architecto explicabo\n labore sapiente cum alias nobis!\n
    \n }\n\n", styles: [".example-drag-tabs.cdk-drop-list-dragging {\n pointer-events: none;\n}\n\n.example-drag-tabs-preview.cdk-drag-animating {\n transition: all 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.mat-mdc-tab.example-drag-tabs-preview {\n outline: dashed 1px #ccc;\n outline-offset: 4px;\n}\n\n.example-drag-tabs .cdk-drag-placeholder {\n opacity: 0.5;\n}\n\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1$1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1$1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1$1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }], encapsulation: i0.ViewEncapsulation.None }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropTabsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkDragDropTabsExample, isStandalone: true, selector: "cdk-drag-drop-tabs-example", ngImport: i0, template: "\n @for (tab of tabs; track $index) {\n \n \n {{tab}}\n \n\n

    Content for {{tab}}

    \n\n Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem perspiciatis in delectus\n reprehenderit, molestias ullam nostrum odit, modi consequatur harum beatae? Sapiente\n voluptatibus illo natus assumenda hic quasi dolor et laborum veniam! Molestiae architecto\n nesciunt est quo nisi? Nostrum repellendus quibusdam laudantium? Optio architecto explicabo\n labore sapiente cum alias nobis!\n
    \n }\n\n", styles: [".example-drag-tabs.cdk-drop-list-dragging {\n pointer-events: none;\n}\n\n.example-drag-tabs-preview.cdk-drag-animating {\n transition: all 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.mat-mdc-tab.example-drag-tabs-preview {\n outline: dashed 1px #ccc;\n outline-offset: 4px;\n}\n\n.example-drag-tabs .cdk-drag-placeholder {\n opacity: 0.5;\n}\n\n"], dependencies: [{ kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1$1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1$1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1$1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }], encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkDragDropTabsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkDragDropTabsExample, decorators: [{ type: Component, args: [{ selector: 'cdk-drag-drop-tabs-example', imports: [CdkDrag, CdkDropList, MatTabsModule], encapsulation: ViewEncapsulation.None, template: "\n @for (tab of tabs; track $index) {\n \n \n {{tab}}\n \n\n

    Content for {{tab}}

    \n\n Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem perspiciatis in delectus\n reprehenderit, molestias ullam nostrum odit, modi consequatur harum beatae? Sapiente\n voluptatibus illo natus assumenda hic quasi dolor et laborum veniam! Molestiae architecto\n nesciunt est quo nisi? Nostrum repellendus quibusdam laudantium? Optio architecto explicabo\n labore sapiente cum alias nobis!\n
    \n }\n\n", styles: [".example-drag-tabs.cdk-drop-list-dragging {\n pointer-events: none;\n}\n\n.example-drag-tabs-preview.cdk-drag-animating {\n transition: all 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.mat-mdc-tab.example-drag-tabs-preview {\n outline: dashed 1px #ccc;\n outline-offset: 4px;\n}\n\n.example-drag-tabs .cdk-drag-placeholder {\n opacity: 0.5;\n}\n\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkDragDropAxisLockExample, CdkDragDropBoundaryExample, CdkDragDropConnectedSortingExample, CdkDragDropConnectedSortingGroupExample, CdkDragDropCustomPlaceholderExample, CdkDragDropCustomPreviewExample, CdkDragDropDelayExample, CdkDragDropDisabledExample, CdkDragDropDisabledSortingExample, CdkDragDropEnterPredicateExample, CdkDragDropFreeDragPositionExample, CdkDragDropHandleExample, CdkDragDropHorizontalSortingExample, CdkDragDropMixedSortingExample, CdkDragDropOverviewExample, CdkDragDropRootElementExample, CdkDragDropSortPredicateExample, CdkDragDropSortingExample, CdkDragDropTableExample, CdkDragDropTabsExample }; //# sourceMappingURL=drag-drop.mjs.map diff --git a/fesm2022/cdk/drag-drop.mjs.map b/fesm2022/cdk/drag-drop.mjs.map index 41d4ef1329..26ee48878e 100755 --- a/fesm2022/cdk/drag-drop.mjs.map +++ b/fesm2022/cdk/drag-drop.mjs.map @@ -1 +1 @@ -{"version":3,"file":"drag-drop.mjs","sources":["../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-axis-lock/cdk-drag-drop-axis-lock-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-axis-lock/cdk-drag-drop-axis-lock-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-boundary/cdk-drag-drop-boundary-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-boundary/cdk-drag-drop-boundary-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting-group/cdk-drag-drop-connected-sorting-group-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting-group/cdk-drag-drop-connected-sorting-group-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting/cdk-drag-drop-connected-sorting-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting/cdk-drag-drop-connected-sorting-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-placeholder/cdk-drag-drop-custom-placeholder-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-placeholder/cdk-drag-drop-custom-placeholder-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-preview/cdk-drag-drop-custom-preview-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-preview/cdk-drag-drop-custom-preview-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-delay/cdk-drag-drop-delay-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-delay/cdk-drag-drop-delay-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled-sorting/cdk-drag-drop-disabled-sorting-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled-sorting/cdk-drag-drop-disabled-sorting-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled/cdk-drag-drop-disabled-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled/cdk-drag-drop-disabled-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-enter-predicate/cdk-drag-drop-enter-predicate-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-enter-predicate/cdk-drag-drop-enter-predicate-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-free-drag-position/cdk-drag-drop-free-drag-position-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-free-drag-position/cdk-drag-drop-free-drag-position-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-handle/cdk-drag-drop-handle-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-handle/cdk-drag-drop-handle-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-horizontal-sorting/cdk-drag-drop-horizontal-sorting-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-horizontal-sorting/cdk-drag-drop-horizontal-sorting-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-overview/cdk-drag-drop-overview-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-overview/cdk-drag-drop-overview-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-sorting/cdk-drag-drop-sorting-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-sorting/cdk-drag-drop-sorting-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-sort-predicate/cdk-drag-drop-sort-predicate-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-sort-predicate/cdk-drag-drop-sort-predicate-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-table/cdk-drag-drop-table-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-table/cdk-drag-drop-table-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-mixed-sorting/cdk-drag-drop-mixed-sorting-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-mixed-sorting/cdk-drag-drop-mixed-sorting-example.html","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-tabs/cdk-drag-drop-tabs-example.ts","../../../../../../../src/components-examples/cdk/drag-drop/cdk-drag-drop-tabs/cdk-drag-drop-tabs-example.html","../../../../../../../src/components-examples/cdk/drag-drop/drag-drop_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop position locking\n */\n@Component({\n selector: 'cdk-drag-drop-axis-lock-example',\n templateUrl: 'cdk-drag-drop-axis-lock-example.html',\n styleUrl: 'cdk-drag-drop-axis-lock-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropAxisLockExample {}\n","
    \n I can only be dragged up/down\n
    \n\n
    \n I can only be dragged left/right\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop boundary\n */\n@Component({\n selector: 'cdk-drag-drop-boundary-example',\n templateUrl: 'cdk-drag-drop-boundary-example.html',\n styleUrl: 'cdk-drag-drop-boundary-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropBoundaryExample {}\n","
    \n
    \n I can only be dragged within the dotted container\n
    \n
    \n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n CdkDrag,\n CdkDropList,\n CdkDropListGroup,\n moveItemInArray,\n transferArrayItem,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop connected sorting group\n */\n@Component({\n selector: 'cdk-drag-drop-connected-sorting-group-example',\n templateUrl: 'cdk-drag-drop-connected-sorting-group-example.html',\n styleUrl: 'cdk-drag-drop-connected-sorting-group-example.css',\n imports: [CdkDropListGroup, CdkDropList, CdkDrag],\n})\nexport class CdkDragDropConnectedSortingGroupExample {\n todo = ['Get to work', 'Pick up groceries', 'Go home', 'Fall asleep'];\n\n done = ['Get up', 'Brush teeth', 'Take a shower', 'Check e-mail', 'Walk dog'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n \n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n moveItemInArray,\n transferArrayItem,\n CdkDrag,\n CdkDropList,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop connected sorting\n */\n@Component({\n selector: 'cdk-drag-drop-connected-sorting-example',\n templateUrl: 'cdk-drag-drop-connected-sorting-example.html',\n styleUrl: 'cdk-drag-drop-connected-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropConnectedSortingExample {\n todo = ['Get to work', 'Pick up groceries', 'Go home', 'Fall asleep'];\n\n done = ['Get up', 'Brush teeth', 'Take a shower', 'Check e-mail', 'Walk dog'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n\n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n\n\n","import {Component} from '@angular/core';\nimport {\n CdkDrag,\n CdkDragDrop,\n CdkDragPlaceholder,\n CdkDropList,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop custom placeholder\n */\n@Component({\n selector: 'cdk-drag-drop-custom-placeholder-example',\n templateUrl: 'cdk-drag-drop-custom-placeholder-example.html',\n styleUrl: 'cdk-drag-drop-custom-placeholder-example.css',\n imports: [CdkDropList, CdkDrag, CdkDragPlaceholder],\n})\nexport class CdkDragDropCustomPlaceholderExample {\n movies = [\n 'Episode I - The Phantom Menace',\n 'Episode II - Attack of the Clones',\n 'Episode III - Revenge of the Sith',\n 'Episode IV - A New Hope',\n 'Episode V - The Empire Strikes Back',\n 'Episode VI - Return of the Jedi',\n 'Episode VII - The Force Awakens',\n 'Episode VIII - The Last Jedi',\n 'Episode IX - The Rise of Skywalker',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    \n
    \n {{movie}}\n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n CdkDropList,\n CdkDragPreview,\n CdkDrag,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop custom preview\n */\n@Component({\n selector: 'cdk-drag-drop-custom-preview-example',\n templateUrl: 'cdk-drag-drop-custom-preview-example.html',\n styleUrl: 'cdk-drag-drop-custom-preview-example.css',\n imports: [CdkDropList, CdkDrag, CdkDragPreview],\n})\nexport class CdkDragDropCustomPreviewExample {\n // tslint:disable:max-line-length\n movies = [\n {\n title: 'Episode I - The Phantom Menace',\n poster: 'https://upload.wikimedia.org/wikipedia/en/4/40/Star_Wars_Phantom_Menace_poster.jpg',\n },\n {\n title: 'Episode II - Attack of the Clones',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/3/32/Star_Wars_-_Episode_II_Attack_of_the_Clones_%28movie_poster%29.jpg',\n },\n {\n title: 'Episode III - Revenge of the Sith',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/9/93/Star_Wars_Episode_III_Revenge_of_the_Sith_poster.jpg',\n },\n {\n title: 'Episode IV - A New Hope',\n poster: 'https://upload.wikimedia.org/wikipedia/en/8/87/StarWarsMoviePoster1977.jpg',\n },\n {\n title: 'Episode V - The Empire Strikes Back',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/3/3f/The_Empire_Strikes_Back_%281980_film%29.jpg',\n },\n {\n title: 'Episode VI - Return of the Jedi',\n poster: 'https://upload.wikimedia.org/wikipedia/en/b/b2/ReturnOfTheJediPoster1983.jpg',\n },\n {\n title: 'Episode VII - The Force Awakens',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/a/a2/Star_Wars_The_Force_Awakens_Theatrical_Poster.jpg',\n },\n {\n title: 'Episode VIII - The Last Jedi',\n poster: 'https://upload.wikimedia.org/wikipedia/en/7/7f/Star_Wars_The_Last_Jedi.jpg',\n },\n {\n title: 'Episode IX – The Rise of Skywalker',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/a/af/Star_Wars_The_Rise_of_Skywalker_poster.jpg',\n },\n ];\n // tslint:enable:max-line-length\n\n drop(event: CdkDragDrop<{title: string; poster: string}[]>) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    \n {{movie.title}}\n \n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Delayed dragging\n */\n@Component({\n selector: 'cdk-drag-drop-delay-example',\n templateUrl: 'cdk-drag-drop-delay-example.html',\n styleUrl: 'cdk-drag-drop-delay-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropDelayExample {}\n","
    \n Dragging starts after one second\n
    \n","import {Component} from '@angular/core';\nimport {\n CdkDrag,\n CdkDragDrop,\n CdkDropList,\n CdkDropListGroup,\n moveItemInArray,\n transferArrayItem,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop disabled sorting\n */\n@Component({\n selector: 'cdk-drag-drop-disabled-sorting-example',\n templateUrl: 'cdk-drag-drop-disabled-sorting-example.html',\n styleUrl: 'cdk-drag-drop-disabled-sorting-example.css',\n imports: [CdkDropListGroup, CdkDropList, CdkDrag],\n})\nexport class CdkDragDropDisabledSortingExample {\n items = ['Carrots', 'Tomatoes', 'Onions', 'Apples', 'Avocados'];\n\n basket = ['Oranges', 'Bananas', 'Cucumbers'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n
    \n

    Available items

    \n\n \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Shopping basket

    \n\n \n @for (item of basket; track item) {\n
    {{item}}
    \n }\n
    \n \n\n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop disabled\n */\n@Component({\n selector: 'cdk-drag-drop-disabled-example',\n templateUrl: 'cdk-drag-drop-disabled-example.html',\n styleUrl: 'cdk-drag-drop-disabled-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropDisabledExample {\n items = [\n {value: 'I can be dragged', disabled: false},\n {value: 'I cannot be dragged', disabled: true},\n {value: 'I can also be dragged', disabled: false},\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.items, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (item of items; track item) {\n {{item.value}}
    \n }\n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n moveItemInArray,\n transferArrayItem,\n CdkDrag,\n CdkDropList,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop enter predicate\n */\n@Component({\n selector: 'cdk-drag-drop-enter-predicate-example',\n templateUrl: 'cdk-drag-drop-enter-predicate-example.html',\n styleUrl: 'cdk-drag-drop-enter-predicate-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropEnterPredicateExample {\n all = [1, 2, 3, 4, 5, 6, 7, 8, 9];\n even = [10];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n\n /** Predicate function that only allows even numbers to be dropped into a list. */\n evenPredicate(item: CdkDrag) {\n return item.data % 2 === 0;\n }\n\n /** Predicate function that doesn't allow items to be dropped into a list. */\n noReturnPredicate() {\n return false;\n }\n}\n","
    \n

    Available numbers

    \n\n \n @for (number of all; track number) {\n {{number}}
    \n }\n \n\n\n
    \n

    Even numbers

    \n\n \n @for (number of even; track number) {\n {{number}}
    \n }\n \n\n\n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Programmatically setting the free drag position\n */\n@Component({\n selector: 'cdk-drag-drop-free-drag-position-example',\n templateUrl: 'cdk-drag-drop-free-drag-position-example.html',\n styleUrl: 'cdk-drag-drop-free-drag-position-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropFreeDragPositionExample {\n dragPosition = {x: 0, y: 0};\n\n changePosition() {\n this.dragPosition = {x: this.dragPosition.x + 50, y: this.dragPosition.y + 50};\n }\n}\n","

    \n \n

    \n\n
    \n Drag me around\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag, CdkDragHandle} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop with a handle\n */\n@Component({\n selector: 'cdk-drag-drop-handle-example',\n templateUrl: 'cdk-drag-drop-handle-example.html',\n styleUrl: 'cdk-drag-drop-handle-example.css',\n imports: [CdkDrag, CdkDragHandle],\n})\nexport class CdkDragDropHandleExample {}\n","
    \n I can only be dragged using the handle\n\n
    \n \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop horizontal sorting\n */\n@Component({\n selector: 'cdk-drag-drop-horizontal-sorting-example',\n templateUrl: 'cdk-drag-drop-horizontal-sorting-example.html',\n styleUrl: 'cdk-drag-drop-horizontal-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropHorizontalSortingExample {\n timePeriods = [\n 'Bronze age',\n 'Iron age',\n 'Middle ages',\n 'Early modern period',\n 'Long nineteenth century',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.timePeriods, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (timePeriod of timePeriods; track timePeriod) {\n
    {{timePeriod}}
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Basic Drag&Drop\n */\n@Component({\n selector: 'cdk-drag-drop-overview-example',\n templateUrl: 'cdk-drag-drop-overview-example.html',\n styleUrl: 'cdk-drag-drop-overview-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropOverviewExample {}\n","
    \n Drag me around\n
    \n","import {\n Component,\n ViewChild,\n TemplateRef,\n AfterViewInit,\n ViewContainerRef,\n OnDestroy,\n inject,\n} from '@angular/core';\nimport {Overlay, OverlayRef} from '@angular/cdk/overlay';\nimport {TemplatePortal} from '@angular/cdk/portal';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop with alternate root element\n */\n@Component({\n selector: 'cdk-drag-drop-root-element-example',\n templateUrl: 'cdk-drag-drop-root-element-example.html',\n styleUrl: 'cdk-drag-drop-root-element-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy {\n private _overlay = inject(Overlay);\n private _viewContainerRef = inject(ViewContainerRef);\n\n @ViewChild(TemplateRef) _dialogTemplate: TemplateRef;\n private _overlayRef: OverlayRef;\n private _portal: TemplatePortal;\n\n ngAfterViewInit() {\n this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef);\n this._overlayRef = this._overlay.create({\n positionStrategy: this._overlay.position().global().centerHorizontally().centerVertically(),\n hasBackdrop: true,\n });\n this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach());\n }\n\n ngOnDestroy() {\n this._overlayRef.dispose();\n }\n\n openDialog() {\n this._overlayRef.attach(this._portal);\n }\n}\n","\n\n\n
    \n Drag the dialog around!\n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDropList, CdkDrag, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop sorting\n */\n@Component({\n selector: 'cdk-drag-drop-sorting-example',\n templateUrl: 'cdk-drag-drop-sorting-example.html',\n styleUrl: 'cdk-drag-drop-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropSortingExample {\n movies = [\n 'Episode I - The Phantom Menace',\n 'Episode II - Attack of the Clones',\n 'Episode III - Revenge of the Sith',\n 'Episode IV - A New Hope',\n 'Episode V - The Empire Strikes Back',\n 'Episode VI - Return of the Jedi',\n 'Episode VII - The Force Awakens',\n 'Episode VIII - The Last Jedi',\n 'Episode IX – The Rise of Skywalker',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    {{movie}}
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, moveItemInArray, CdkDrag, CdkDropList} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop sort predicate\n */\n@Component({\n selector: 'cdk-drag-drop-sort-predicate-example',\n templateUrl: 'cdk-drag-drop-sort-predicate-example.html',\n styleUrl: 'cdk-drag-drop-sort-predicate-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropSortPredicateExample {\n numbers = [1, 2, 3, 4, 5, 6, 7, 8];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.numbers, event.previousIndex, event.currentIndex);\n }\n\n /**\n * Predicate function that only allows even numbers to be\n * sorted into even indices and odd numbers at odd indices.\n */\n sortPredicate(index: number, item: CdkDrag) {\n return (index + 1) % 2 === item.data % 2;\n }\n}\n","\n @for (number of numbers; track number) {\n {{number}}\n }\n\n","import {Component, ViewChild} from '@angular/core';\nimport {CdkDragDrop, CdkDropList, CdkDrag, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTable, MatTableModule} from '@angular/material/table';\nimport {MatIconModule} from '@angular/material/icon';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n quantity: number;\n}\n\nexport const ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H', quantity: 100},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He', quantity: 100},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li', quantity: 100},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be', quantity: 100},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B', quantity: 100},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C', quantity: 100},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N', quantity: 100},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O', quantity: 100},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F', quantity: 100},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne', quantity: 100},\n];\n\n/**\n * @title Drag&Drop table\n */\n@Component({\n selector: 'cdk-drag-drop-table-example',\n templateUrl: 'cdk-drag-drop-table-example.html',\n styleUrl: 'cdk-drag-drop-table-example.css',\n imports: [CdkDropList, CdkDrag, MatTableModule, MatIconModule],\n})\nexport class CdkDragDropTableExample {\n @ViewChild('table', {static: true}) table: MatTable;\n\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol', 'quantity'];\n dataSource = ELEMENT_DATA;\n\n drop(event: CdkDragDrop) {\n const previousIndex = this.dataSource.findIndex(d => d === event.item.data);\n\n moveItemInArray(this.dataSource, previousIndex, event.currentIndex);\n this.table.renderRows();\n }\n}\n","\r\n \r\n \r\n No. \r\n \r\n reorder\r\n {{element.position}}\r\n \r\n \r\n\r\n \r\n \r\n Name \r\n {{element.name}} \r\n \r\n\r\n \r\n \r\n Weight \r\n {{element.weight}} \r\n \r\n\r\n \r\n \r\n Symbol \r\n {{element.symbol}} \r\n \r\n\r\n \r\n \r\n Quantity of Element \r\n {{element.quantity}}\r\n \r\n\r\n \r\n \r\n\r\n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop horizontal wrapping list\n */\n@Component({\n selector: 'cdk-drag-drop-mixed-sorting-example',\n templateUrl: 'cdk-drag-drop-mixed-sorting-example.html',\n styleUrl: 'cdk-drag-drop-mixed-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropMixedSortingExample {\n items = ['Zero', 'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine'];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.items, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {CdkDrag, CdkDragDrop, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Drag&Drop tabs\n */\n@Component({\n selector: 'cdk-drag-drop-tabs-example',\n templateUrl: 'cdk-drag-drop-tabs-example.html',\n styleUrl: 'cdk-drag-drop-tabs-example.css',\n imports: [CdkDrag, CdkDropList, MatTabsModule],\n encapsulation: ViewEncapsulation.None,\n})\nexport class CdkDragDropTabsExample {\n protected tabs = ['One', 'Two', 'Three', 'Four', 'Five'];\n protected selectedTabIndex = 0;\n\n drop(event: CdkDragDrop) {\n const prevActive = this.tabs[this.selectedTabIndex];\n moveItemInArray(this.tabs, event.previousIndex, event.currentIndex);\n this.selectedTabIndex = this.tabs.indexOf(prevActive);\n }\n}\n","\n @for (tab of tabs; track $index) {\n \n \n {{tab}}\n \n\n

    Content for {{tab}}

    \n\n Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem perspiciatis in delectus\n reprehenderit, molestias ullam nostrum odit, modi consequatur harum beatae? Sapiente\n voluptatibus illo natus assumenda hic quasi dolor et laborum veniam! Molestiae architecto\n nesciunt est quo nisi? Nostrum repellendus quibusdam laudantium? Optio architecto explicabo\n labore sapiente cum alias nobis!\n
    \n }\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"drag-drop.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-axis-lock/cdk-drag-drop-axis-lock-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-axis-lock/cdk-drag-drop-axis-lock-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-boundary/cdk-drag-drop-boundary-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-boundary/cdk-drag-drop-boundary-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting-group/cdk-drag-drop-connected-sorting-group-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting-group/cdk-drag-drop-connected-sorting-group-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting/cdk-drag-drop-connected-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-connected-sorting/cdk-drag-drop-connected-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-placeholder/cdk-drag-drop-custom-placeholder-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-placeholder/cdk-drag-drop-custom-placeholder-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-preview/cdk-drag-drop-custom-preview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-custom-preview/cdk-drag-drop-custom-preview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-delay/cdk-drag-drop-delay-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-delay/cdk-drag-drop-delay-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled-sorting/cdk-drag-drop-disabled-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled-sorting/cdk-drag-drop-disabled-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled/cdk-drag-drop-disabled-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-disabled/cdk-drag-drop-disabled-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-enter-predicate/cdk-drag-drop-enter-predicate-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-enter-predicate/cdk-drag-drop-enter-predicate-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-free-drag-position/cdk-drag-drop-free-drag-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-free-drag-position/cdk-drag-drop-free-drag-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-handle/cdk-drag-drop-handle-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-handle/cdk-drag-drop-handle-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-horizontal-sorting/cdk-drag-drop-horizontal-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-horizontal-sorting/cdk-drag-drop-horizontal-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-overview/cdk-drag-drop-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-overview/cdk-drag-drop-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-root-element/cdk-drag-drop-root-element-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-sorting/cdk-drag-drop-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-sorting/cdk-drag-drop-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-sort-predicate/cdk-drag-drop-sort-predicate-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-sort-predicate/cdk-drag-drop-sort-predicate-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-table/cdk-drag-drop-table-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-table/cdk-drag-drop-table-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-mixed-sorting/cdk-drag-drop-mixed-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-mixed-sorting/cdk-drag-drop-mixed-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-tabs/cdk-drag-drop-tabs-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/drag-drop/cdk-drag-drop-tabs/cdk-drag-drop-tabs-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop position locking\n */\n@Component({\n selector: 'cdk-drag-drop-axis-lock-example',\n templateUrl: 'cdk-drag-drop-axis-lock-example.html',\n styleUrl: 'cdk-drag-drop-axis-lock-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropAxisLockExample {}\n","
    \n I can only be dragged up/down\n
    \n\n
    \n I can only be dragged left/right\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop boundary\n */\n@Component({\n selector: 'cdk-drag-drop-boundary-example',\n templateUrl: 'cdk-drag-drop-boundary-example.html',\n styleUrl: 'cdk-drag-drop-boundary-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropBoundaryExample {}\n","
    \n
    \n I can only be dragged within the dotted container\n
    \n
    \n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n CdkDrag,\n CdkDropList,\n CdkDropListGroup,\n moveItemInArray,\n transferArrayItem,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop connected sorting group\n */\n@Component({\n selector: 'cdk-drag-drop-connected-sorting-group-example',\n templateUrl: 'cdk-drag-drop-connected-sorting-group-example.html',\n styleUrl: 'cdk-drag-drop-connected-sorting-group-example.css',\n imports: [CdkDropListGroup, CdkDropList, CdkDrag],\n})\nexport class CdkDragDropConnectedSortingGroupExample {\n todo = ['Get to work', 'Pick up groceries', 'Go home', 'Fall asleep'];\n\n done = ['Get up', 'Brush teeth', 'Take a shower', 'Check e-mail', 'Walk dog'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n \n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n moveItemInArray,\n transferArrayItem,\n CdkDrag,\n CdkDropList,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop connected sorting\n */\n@Component({\n selector: 'cdk-drag-drop-connected-sorting-example',\n templateUrl: 'cdk-drag-drop-connected-sorting-example.html',\n styleUrl: 'cdk-drag-drop-connected-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropConnectedSortingExample {\n todo = ['Get to work', 'Pick up groceries', 'Go home', 'Fall asleep'];\n\n done = ['Get up', 'Brush teeth', 'Take a shower', 'Check e-mail', 'Walk dog'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n

    To do

    \n\n \n @for (item of todo; track item) {\n
    {{item}}
    \n }\n
    \n\n\n
    \n

    Done

    \n\n \n @for (item of done; track item) {\n
    {{item}}
    \n }\n
    \n\n\n","import {Component} from '@angular/core';\nimport {\n CdkDrag,\n CdkDragDrop,\n CdkDragPlaceholder,\n CdkDropList,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop custom placeholder\n */\n@Component({\n selector: 'cdk-drag-drop-custom-placeholder-example',\n templateUrl: 'cdk-drag-drop-custom-placeholder-example.html',\n styleUrl: 'cdk-drag-drop-custom-placeholder-example.css',\n imports: [CdkDropList, CdkDrag, CdkDragPlaceholder],\n})\nexport class CdkDragDropCustomPlaceholderExample {\n movies = [\n 'Episode I - The Phantom Menace',\n 'Episode II - Attack of the Clones',\n 'Episode III - Revenge of the Sith',\n 'Episode IV - A New Hope',\n 'Episode V - The Empire Strikes Back',\n 'Episode VI - Return of the Jedi',\n 'Episode VII - The Force Awakens',\n 'Episode VIII - The Last Jedi',\n 'Episode IX - The Rise of Skywalker',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    \n
    \n {{movie}}\n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n CdkDropList,\n CdkDragPreview,\n CdkDrag,\n moveItemInArray,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop custom preview\n */\n@Component({\n selector: 'cdk-drag-drop-custom-preview-example',\n templateUrl: 'cdk-drag-drop-custom-preview-example.html',\n styleUrl: 'cdk-drag-drop-custom-preview-example.css',\n imports: [CdkDropList, CdkDrag, CdkDragPreview],\n})\nexport class CdkDragDropCustomPreviewExample {\n // tslint:disable:max-line-length\n movies = [\n {\n title: 'Episode I - The Phantom Menace',\n poster: 'https://upload.wikimedia.org/wikipedia/en/4/40/Star_Wars_Phantom_Menace_poster.jpg',\n },\n {\n title: 'Episode II - Attack of the Clones',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/3/32/Star_Wars_-_Episode_II_Attack_of_the_Clones_%28movie_poster%29.jpg',\n },\n {\n title: 'Episode III - Revenge of the Sith',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/9/93/Star_Wars_Episode_III_Revenge_of_the_Sith_poster.jpg',\n },\n {\n title: 'Episode IV - A New Hope',\n poster: 'https://upload.wikimedia.org/wikipedia/en/8/87/StarWarsMoviePoster1977.jpg',\n },\n {\n title: 'Episode V - The Empire Strikes Back',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/3/3f/The_Empire_Strikes_Back_%281980_film%29.jpg',\n },\n {\n title: 'Episode VI - Return of the Jedi',\n poster: 'https://upload.wikimedia.org/wikipedia/en/b/b2/ReturnOfTheJediPoster1983.jpg',\n },\n {\n title: 'Episode VII - The Force Awakens',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/a/a2/Star_Wars_The_Force_Awakens_Theatrical_Poster.jpg',\n },\n {\n title: 'Episode VIII - The Last Jedi',\n poster: 'https://upload.wikimedia.org/wikipedia/en/7/7f/Star_Wars_The_Last_Jedi.jpg',\n },\n {\n title: 'Episode IX – The Rise of Skywalker',\n poster:\n 'https://upload.wikimedia.org/wikipedia/en/a/af/Star_Wars_The_Rise_of_Skywalker_poster.jpg',\n },\n ];\n // tslint:enable:max-line-length\n\n drop(event: CdkDragDrop<{title: string; poster: string}[]>) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    \n {{movie.title}}\n \n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Delayed dragging\n */\n@Component({\n selector: 'cdk-drag-drop-delay-example',\n templateUrl: 'cdk-drag-drop-delay-example.html',\n styleUrl: 'cdk-drag-drop-delay-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropDelayExample {}\n","
    \n Dragging starts after one second\n
    \n","import {Component} from '@angular/core';\nimport {\n CdkDrag,\n CdkDragDrop,\n CdkDropList,\n CdkDropListGroup,\n moveItemInArray,\n transferArrayItem,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop disabled sorting\n */\n@Component({\n selector: 'cdk-drag-drop-disabled-sorting-example',\n templateUrl: 'cdk-drag-drop-disabled-sorting-example.html',\n styleUrl: 'cdk-drag-drop-disabled-sorting-example.css',\n imports: [CdkDropListGroup, CdkDropList, CdkDrag],\n})\nexport class CdkDragDropDisabledSortingExample {\n items = ['Carrots', 'Tomatoes', 'Onions', 'Apples', 'Avocados'];\n\n basket = ['Oranges', 'Bananas', 'Cucumbers'];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n}\n","
    \n
    \n

    Available items

    \n\n \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n
    \n\n
    \n

    Shopping basket

    \n\n \n @for (item of basket; track item) {\n
    {{item}}
    \n }\n
    \n \n\n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop disabled\n */\n@Component({\n selector: 'cdk-drag-drop-disabled-example',\n templateUrl: 'cdk-drag-drop-disabled-example.html',\n styleUrl: 'cdk-drag-drop-disabled-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropDisabledExample {\n items = [\n {value: 'I can be dragged', disabled: false},\n {value: 'I cannot be dragged', disabled: true},\n {value: 'I can also be dragged', disabled: false},\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.items, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (item of items; track item) {\n {{item.value}}
    \n }\n\n","import {Component} from '@angular/core';\nimport {\n CdkDragDrop,\n moveItemInArray,\n transferArrayItem,\n CdkDrag,\n CdkDropList,\n} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop enter predicate\n */\n@Component({\n selector: 'cdk-drag-drop-enter-predicate-example',\n templateUrl: 'cdk-drag-drop-enter-predicate-example.html',\n styleUrl: 'cdk-drag-drop-enter-predicate-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropEnterPredicateExample {\n all = [1, 2, 3, 4, 5, 6, 7, 8, 9];\n even = [10];\n\n drop(event: CdkDragDrop) {\n if (event.previousContainer === event.container) {\n moveItemInArray(event.container.data, event.previousIndex, event.currentIndex);\n } else {\n transferArrayItem(\n event.previousContainer.data,\n event.container.data,\n event.previousIndex,\n event.currentIndex,\n );\n }\n }\n\n /** Predicate function that only allows even numbers to be dropped into a list. */\n evenPredicate(item: CdkDrag) {\n return item.data % 2 === 0;\n }\n\n /** Predicate function that doesn't allow items to be dropped into a list. */\n noReturnPredicate() {\n return false;\n }\n}\n","
    \n

    Available numbers

    \n\n \n @for (number of all; track number) {\n {{number}}
    \n }\n \n\n\n
    \n

    Even numbers

    \n\n \n @for (number of even; track number) {\n {{number}}
    \n }\n \n\n\n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Programmatically setting the free drag position\n */\n@Component({\n selector: 'cdk-drag-drop-free-drag-position-example',\n templateUrl: 'cdk-drag-drop-free-drag-position-example.html',\n styleUrl: 'cdk-drag-drop-free-drag-position-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropFreeDragPositionExample {\n dragPosition = {x: 0, y: 0};\n\n changePosition() {\n this.dragPosition = {x: this.dragPosition.x + 50, y: this.dragPosition.y + 50};\n }\n}\n","

    \n \n

    \n\n
    \n Drag me around\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag, CdkDragHandle} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop with a handle\n */\n@Component({\n selector: 'cdk-drag-drop-handle-example',\n templateUrl: 'cdk-drag-drop-handle-example.html',\n styleUrl: 'cdk-drag-drop-handle-example.css',\n imports: [CdkDrag, CdkDragHandle],\n})\nexport class CdkDragDropHandleExample {}\n","
    \n I can only be dragged using the handle\n\n
    \n \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop horizontal sorting\n */\n@Component({\n selector: 'cdk-drag-drop-horizontal-sorting-example',\n templateUrl: 'cdk-drag-drop-horizontal-sorting-example.html',\n styleUrl: 'cdk-drag-drop-horizontal-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropHorizontalSortingExample {\n timePeriods = [\n 'Bronze age',\n 'Iron age',\n 'Middle ages',\n 'Early modern period',\n 'Long nineteenth century',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.timePeriods, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (timePeriod of timePeriods; track timePeriod) {\n
    {{timePeriod}}
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Basic Drag&Drop\n */\n@Component({\n selector: 'cdk-drag-drop-overview-example',\n templateUrl: 'cdk-drag-drop-overview-example.html',\n styleUrl: 'cdk-drag-drop-overview-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropOverviewExample {}\n","
    \n Drag me around\n
    \n","import {\n Component,\n ViewChild,\n TemplateRef,\n AfterViewInit,\n ViewContainerRef,\n OnDestroy,\n inject,\n Injector,\n} from '@angular/core';\nimport {createGlobalPositionStrategy, createOverlayRef, OverlayRef} from '@angular/cdk/overlay';\nimport {TemplatePortal} from '@angular/cdk/portal';\nimport {CdkDrag} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop with alternate root element\n */\n@Component({\n selector: 'cdk-drag-drop-root-element-example',\n templateUrl: 'cdk-drag-drop-root-element-example.html',\n styleUrl: 'cdk-drag-drop-root-element-example.css',\n imports: [CdkDrag],\n})\nexport class CdkDragDropRootElementExample implements AfterViewInit, OnDestroy {\n private _injector = inject(Injector);\n private _viewContainerRef = inject(ViewContainerRef);\n\n @ViewChild(TemplateRef) _dialogTemplate: TemplateRef;\n private _overlayRef: OverlayRef;\n private _portal: TemplatePortal;\n\n ngAfterViewInit() {\n this._portal = new TemplatePortal(this._dialogTemplate, this._viewContainerRef);\n this._overlayRef = createOverlayRef(this._injector, {\n positionStrategy: createGlobalPositionStrategy(this._injector)\n .centerHorizontally()\n .centerVertically(),\n hasBackdrop: true,\n });\n this._overlayRef.backdropClick().subscribe(() => this._overlayRef.detach());\n }\n\n ngOnDestroy() {\n this._overlayRef.dispose();\n }\n\n openDialog() {\n this._overlayRef.attach(this._portal);\n }\n}\n","\n\n\n
    \n Drag the dialog around!\n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDropList, CdkDrag, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop sorting\n */\n@Component({\n selector: 'cdk-drag-drop-sorting-example',\n templateUrl: 'cdk-drag-drop-sorting-example.html',\n styleUrl: 'cdk-drag-drop-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropSortingExample {\n movies = [\n 'Episode I - The Phantom Menace',\n 'Episode II - Attack of the Clones',\n 'Episode III - Revenge of the Sith',\n 'Episode IV - A New Hope',\n 'Episode V - The Empire Strikes Back',\n 'Episode VI - Return of the Jedi',\n 'Episode VII - The Force Awakens',\n 'Episode VIII - The Last Jedi',\n 'Episode IX – The Rise of Skywalker',\n ];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.movies, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (movie of movies; track movie) {\n
    {{movie}}
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, moveItemInArray, CdkDrag, CdkDropList} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop sort predicate\n */\n@Component({\n selector: 'cdk-drag-drop-sort-predicate-example',\n templateUrl: 'cdk-drag-drop-sort-predicate-example.html',\n styleUrl: 'cdk-drag-drop-sort-predicate-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropSortPredicateExample {\n numbers = [1, 2, 3, 4, 5, 6, 7, 8];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.numbers, event.previousIndex, event.currentIndex);\n }\n\n /**\n * Predicate function that only allows even numbers to be\n * sorted into even indices and odd numbers at odd indices.\n */\n sortPredicate(index: number, item: CdkDrag) {\n return (index + 1) % 2 === item.data % 2;\n }\n}\n","\n @for (number of numbers; track number) {\n {{number}}\n }\n\n","import {Component, ViewChild} from '@angular/core';\nimport {CdkDragDrop, CdkDropList, CdkDrag, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTable, MatTableModule} from '@angular/material/table';\nimport {MatIconModule} from '@angular/material/icon';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n quantity: number;\n}\n\nexport const ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H', quantity: 100},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He', quantity: 100},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li', quantity: 100},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be', quantity: 100},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B', quantity: 100},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C', quantity: 100},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N', quantity: 100},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O', quantity: 100},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F', quantity: 100},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne', quantity: 100},\n];\n\n/**\n * @title Drag&Drop table\n */\n@Component({\n selector: 'cdk-drag-drop-table-example',\n templateUrl: 'cdk-drag-drop-table-example.html',\n styleUrl: 'cdk-drag-drop-table-example.css',\n imports: [CdkDropList, CdkDrag, MatTableModule, MatIconModule],\n})\nexport class CdkDragDropTableExample {\n @ViewChild('table', {static: true}) table: MatTable;\n\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol', 'quantity'];\n dataSource = ELEMENT_DATA;\n\n drop(event: CdkDragDrop) {\n const previousIndex = this.dataSource.findIndex(d => d === event.item.data);\n\n moveItemInArray(this.dataSource, previousIndex, event.currentIndex);\n this.table.renderRows();\n }\n}\n","\r\n \r\n \r\n No. \r\n \r\n reorder\r\n {{element.position}}\r\n \r\n \r\n\r\n \r\n \r\n Name \r\n {{element.name}} \r\n \r\n\r\n \r\n \r\n Weight \r\n {{element.weight}} \r\n \r\n\r\n \r\n \r\n Symbol \r\n {{element.symbol}} \r\n \r\n\r\n \r\n \r\n Quantity of Element \r\n {{element.quantity}}\r\n \r\n\r\n \r\n \r\n\r\n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\n\n/**\n * @title Drag&Drop horizontal wrapping list\n */\n@Component({\n selector: 'cdk-drag-drop-mixed-sorting-example',\n templateUrl: 'cdk-drag-drop-mixed-sorting-example.html',\n styleUrl: 'cdk-drag-drop-mixed-sorting-example.css',\n imports: [CdkDropList, CdkDrag],\n})\nexport class CdkDragDropMixedSortingExample {\n items = ['Zero', 'One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine'];\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.items, event.previousIndex, event.currentIndex);\n }\n}\n","
    \n @for (item of items; track item) {\n
    {{item}}
    \n }\n
    \n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {CdkDrag, CdkDragDrop, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Drag&Drop tabs\n */\n@Component({\n selector: 'cdk-drag-drop-tabs-example',\n templateUrl: 'cdk-drag-drop-tabs-example.html',\n styleUrl: 'cdk-drag-drop-tabs-example.css',\n imports: [CdkDrag, CdkDropList, MatTabsModule],\n encapsulation: ViewEncapsulation.None,\n})\nexport class CdkDragDropTabsExample {\n protected tabs = ['One', 'Two', 'Three', 'Four', 'Five'];\n protected selectedTabIndex = 0;\n\n drop(event: CdkDragDrop) {\n const prevActive = this.tabs[this.selectedTabIndex];\n moveItemInArray(this.tabs, event.previousIndex, event.currentIndex);\n this.selectedTabIndex = this.tabs.indexOf(prevActive);\n }\n}\n","\n @for (tab of tabs; track $index) {\n \n \n {{tab}}\n \n\n

    Content for {{tab}}

    \n\n Lorem ipsum dolor, sit amet consectetur adipisicing elit. Quidem perspiciatis in delectus\n reprehenderit, molestias ullam nostrum odit, modi consequatur harum beatae? Sapiente\n voluptatibus illo natus assumenda hic quasi dolor et laborum veniam! Molestiae architecto\n nesciunt est quo nisi? Nostrum repellendus quibusdam laudantium? Optio architecto explicabo\n labore sapiente cum alias nobis!\n
    \n }\n\n"],"names":["i2","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/layout.mjs b/fesm2022/cdk/layout.mjs index 00b969f949..7f27903f0d 100755 --- a/fesm2022/cdk/layout.mjs +++ b/fesm2022/cdk/layout.mjs @@ -38,17 +38,13 @@ class BreakpointObserverOverviewExample { this.destroyed.next(); this.destroyed.complete(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BreakpointObserverOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BreakpointObserverOverviewExample, isStandalone: true, selector: "breakpoint-observer-overview-example", ngImport: i0, template: "

    \n Resize your browser window to see the current screen size change.\n

    \n

    \n The current screen size is {{currentScreenSize}}\n

    \n", styles: ["/** No CSS for this example */\n"] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BreakpointObserverOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BreakpointObserverOverviewExample, isStandalone: true, selector: "breakpoint-observer-overview-example", ngImport: i0, template: "

    \n Resize your browser window to see the current screen size change.\n

    \n

    \n The current screen size is {{currentScreenSize}}\n

    \n", styles: ["/** No CSS for this example */\n"] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BreakpointObserverOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BreakpointObserverOverviewExample, decorators: [{ type: Component, args: [{ selector: 'breakpoint-observer-overview-example', template: "

    \n Resize your browser window to see the current screen size change.\n

    \n

    \n The current screen size is {{currentScreenSize}}\n

    \n", styles: ["/** No CSS for this example */\n"] }] }], ctorParameters: () => [] }); -/** - * Generated bundle index. Do not edit. - */ - export { BreakpointObserverOverviewExample }; //# sourceMappingURL=layout.mjs.map diff --git a/fesm2022/cdk/layout.mjs.map b/fesm2022/cdk/layout.mjs.map index 92d0e275e4..52208f1bd7 100755 --- a/fesm2022/cdk/layout.mjs.map +++ b/fesm2022/cdk/layout.mjs.map @@ -1 +1 @@ -{"version":3,"file":"layout.mjs","sources":["../../../../../../../src/components-examples/cdk/layout/breakpoint-observer-overview/breakpoint-observer-overview-example.ts","../../../../../../../src/components-examples/cdk/layout/breakpoint-observer-overview/breakpoint-observer-overview-example.html","../../../../../../../src/components-examples/cdk/layout/layout_public_index.ts"],"sourcesContent":["import {Component, OnDestroy, inject} from '@angular/core';\nimport {BreakpointObserver, Breakpoints} from '@angular/cdk/layout';\nimport {Subject} from 'rxjs';\nimport {takeUntil} from 'rxjs/operators';\n\n/** @title Respond to viewport changes with BreakpointObserver */\n@Component({\n selector: 'breakpoint-observer-overview-example',\n templateUrl: 'breakpoint-observer-overview-example.html',\n styleUrl: 'breakpoint-observer-overview-example.css',\n})\nexport class BreakpointObserverOverviewExample implements OnDestroy {\n destroyed = new Subject();\n currentScreenSize: string;\n\n // Create a map to display breakpoint names for demonstration purposes.\n displayNameMap = new Map([\n [Breakpoints.XSmall, 'XSmall'],\n [Breakpoints.Small, 'Small'],\n [Breakpoints.Medium, 'Medium'],\n [Breakpoints.Large, 'Large'],\n [Breakpoints.XLarge, 'XLarge'],\n ]);\n\n constructor() {\n inject(BreakpointObserver)\n .observe([\n Breakpoints.XSmall,\n Breakpoints.Small,\n Breakpoints.Medium,\n Breakpoints.Large,\n Breakpoints.XLarge,\n ])\n .pipe(takeUntil(this.destroyed))\n .subscribe(result => {\n for (const query of Object.keys(result.breakpoints)) {\n if (result.breakpoints[query]) {\n this.currentScreenSize = this.displayNameMap.get(query) ?? 'Unknown';\n }\n }\n });\n }\n\n ngOnDestroy() {\n this.destroyed.next();\n this.destroyed.complete();\n }\n}\n","

    \n Resize your browser window to see the current screen size change.\n

    \n

    \n The current screen size is {{currentScreenSize}}\n

    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAKA;MAMa,iCAAiC,CAAA;AAC5C,IAAA,SAAS,GAAG,IAAI,OAAO,EAAQ,CAAC;AAChC,IAAA,iBAAiB,CAAS;;IAG1B,cAAc,GAAG,IAAI,GAAG,CAAC;AACvB,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC9B,QAAA,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC;AAC5B,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC9B,QAAA,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC;AAC5B,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC/B,KAAA,CAAC,CAAC;AAEH,IAAA,WAAA,GAAA;QACE,MAAM,CAAC,kBAAkB,CAAC;AACvB,aAAA,OAAO,CAAC;AACP,YAAA,WAAW,CAAC,MAAM;AAClB,YAAA,WAAW,CAAC,KAAK;AACjB,YAAA,WAAW,CAAC,MAAM;AAClB,YAAA,WAAW,CAAC,KAAK;AACjB,YAAA,WAAW,CAAC,MAAM;SACnB,CAAC;AACD,aAAA,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;aAC/B,SAAS,CAAC,MAAM,IAAG;AAClB,YAAA,KAAK,MAAM,KAAK,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;AACnD,gBAAA,IAAI,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE;AAC7B,oBAAA,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,SAAS,CAAC;iBACtE;aACF;AACH,SAAC,CAAC,CAAC;KACN;IAED,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;AACtB,QAAA,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE,CAAC;KAC3B;uGAnCU,iCAAiC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAjC,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iCAAiC,gGCX9C,kKAMA,EAAA,MAAA,EAAA,CAAA,kCAAA,CAAA,EAAA,CAAA,CAAA;;2FDKa,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAL7C,SAAS;+BACE,sCAAsC,EAAA,QAAA,EAAA,kKAAA,EAAA,MAAA,EAAA,CAAA,kCAAA,CAAA,EAAA,CAAA;;;AEPlD;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"layout.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/layout/breakpoint-observer-overview/breakpoint-observer-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/layout/breakpoint-observer-overview/breakpoint-observer-overview-example.html"],"sourcesContent":["import {Component, OnDestroy, inject} from '@angular/core';\nimport {BreakpointObserver, Breakpoints} from '@angular/cdk/layout';\nimport {Subject} from 'rxjs';\nimport {takeUntil} from 'rxjs/operators';\n\n/** @title Respond to viewport changes with BreakpointObserver */\n@Component({\n selector: 'breakpoint-observer-overview-example',\n templateUrl: 'breakpoint-observer-overview-example.html',\n styleUrl: 'breakpoint-observer-overview-example.css',\n})\nexport class BreakpointObserverOverviewExample implements OnDestroy {\n destroyed = new Subject();\n currentScreenSize: string;\n\n // Create a map to display breakpoint names for demonstration purposes.\n displayNameMap = new Map([\n [Breakpoints.XSmall, 'XSmall'],\n [Breakpoints.Small, 'Small'],\n [Breakpoints.Medium, 'Medium'],\n [Breakpoints.Large, 'Large'],\n [Breakpoints.XLarge, 'XLarge'],\n ]);\n\n constructor() {\n inject(BreakpointObserver)\n .observe([\n Breakpoints.XSmall,\n Breakpoints.Small,\n Breakpoints.Medium,\n Breakpoints.Large,\n Breakpoints.XLarge,\n ])\n .pipe(takeUntil(this.destroyed))\n .subscribe(result => {\n for (const query of Object.keys(result.breakpoints)) {\n if (result.breakpoints[query]) {\n this.currentScreenSize = this.displayNameMap.get(query) ?? 'Unknown';\n }\n }\n });\n }\n\n ngOnDestroy() {\n this.destroyed.next();\n this.destroyed.complete();\n }\n}\n","

    \n Resize your browser window to see the current screen size change.\n

    \n

    \n The current screen size is {{currentScreenSize}}\n

    \n"],"names":[],"mappings":";;;;;;AAKA;MAMa,iCAAiC,CAAA;AAC5C,IAAA,SAAS,GAAG,IAAI,OAAO,EAAQ;AAC/B,IAAA,iBAAiB;;IAGjB,cAAc,GAAG,IAAI,GAAG,CAAC;AACvB,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC9B,QAAA,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC;AAC5B,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC9B,QAAA,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC;AAC5B,QAAA,CAAC,WAAW,CAAC,MAAM,EAAE,QAAQ,CAAC;AAC/B,KAAA,CAAC;AAEF,IAAA,WAAA,GAAA;QACE,MAAM,CAAC,kBAAkB;AACtB,aAAA,OAAO,CAAC;AACP,YAAA,WAAW,CAAC,MAAM;AAClB,YAAA,WAAW,CAAC,KAAK;AACjB,YAAA,WAAW,CAAC,MAAM;AAClB,YAAA,WAAW,CAAC,KAAK;AACjB,YAAA,WAAW,CAAC,MAAM;SACnB;AACA,aAAA,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,SAAS,CAAC;aAC9B,SAAS,CAAC,MAAM,IAAG;AAClB,YAAA,KAAK,MAAM,KAAK,IAAI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE;AACnD,gBAAA,IAAI,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE;AAC7B,oBAAA,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,SAAS;;;AAG1E,SAAC,CAAC;;IAGN,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE;AACrB,QAAA,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE;;4GAlChB,iCAAiC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAjC,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,iCAAiC,gGCX9C,kKAMA,EAAA,MAAA,EAAA,CAAA,kCAAA,CAAA,EAAA,CAAA;;gGDKa,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAL7C,SAAS;+BACE,sCAAsC,EAAA,QAAA,EAAA,kKAAA,EAAA,MAAA,EAAA,CAAA,kCAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/listbox.mjs b/fesm2022/cdk/listbox.mjs index cfc688b1e8..bba66783c6 100755 --- a/fesm2022/cdk/listbox.mjs +++ b/fesm2022/cdk/listbox.mjs @@ -2,17 +2,17 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; import { CdkListbox, CdkOption } from '@angular/cdk/listbox'; import { JsonPipe, AsyncPipe } from '@angular/common'; -import * as i1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms'; import { map } from 'rxjs/operators'; /** @title Listbox with aria-activedescendant. */ class CdkListboxActivedescendantExample { features = ['Hydrodynamic', 'Port & Starboard Attachments', 'Turbo Drive']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxActivedescendantExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxActivedescendantExample, isStandalone: true, selector: "cdk-listbox-activedescendant-example", exportAs: ["cdkListboxActivedescendantExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (feature of features; track feature) {\n
    • {{feature}}
    • \n }\n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-listbox:focus .cdk-option-active {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxActivedescendantExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxActivedescendantExample, isStandalone: true, selector: "cdk-listbox-activedescendant-example", exportAs: ["cdkListboxActivedescendantExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (feature of features; track feature) {\n
    • {{feature}}
    • \n }\n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-listbox:focus .cdk-option-active {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxActivedescendantExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxActivedescendantExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-activedescendant-example', exportAs: 'cdkListboxActivedescendantExample', imports: [CdkListbox, CdkOption], template: "
    \n \n \n
      \n @for (feature of features; track feature) {\n
    • {{feature}}
    • \n }\n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-listbox:focus .cdk-option-active {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); @@ -40,30 +40,30 @@ class CdkListboxCompareWithExample { formatAppointment() { return this.appointment.map(a => this.formatTime(a)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCompareWithExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxCompareWithExample, isStandalone: true, selector: "cdk-listbox-compare-with-example", exportAs: ["cdkListboxCompareWithExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (time of slots; track time) {\n
    • {{formatTime(time)}}
    • \n }\n
    \n \n
    \n@if (appointment[0]) {\n

    \n Your appointment is scheduled for {{formatAppointment() | json}} \n

    \n}\n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCompareWithExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxCompareWithExample, isStandalone: true, selector: "cdk-listbox-compare-with-example", exportAs: ["cdkListboxCompareWithExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (time of slots; track time) {\n
    • {{formatTime(time)}}
    • \n }\n
    \n \n
    \n@if (appointment[0]) {\n

    \n Your appointment is scheduled for {{formatAppointment() | json}} \n

    \n}\n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCompareWithExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCompareWithExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-compare-with-example', exportAs: 'cdkListboxCompareWithExample', imports: [CdkListbox, CdkOption, JsonPipe], template: "
    \n \n \n
      \n @for (time of slots; track time) {\n
    • {{formatTime(time)}}
    • \n }\n
    \n \n
    \n@if (appointment[0]) {\n

    \n Your appointment is scheduled for {{formatAppointment() | json}} \n

    \n}\n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); /** @title Listbox with custom keyboard navigation options. */ class CdkListboxCustomNavigationExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCustomNavigationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkListboxCustomNavigationExample, isStandalone: true, selector: "cdk-listbox-custom-navigation-example", exportAs: ["cdkListboxCustomNavigationExample"], ngImport: i0, template: "
    \n \n \n
      \n
    • \n Chocolate\n
    • \n
    • \n Pumpkin Spice (seasonal)\n
    • \n
    • \n Strawberry\n
    • \n
    • \n Vanilla\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCustomNavigationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkListboxCustomNavigationExample, isStandalone: true, selector: "cdk-listbox-custom-navigation-example", exportAs: ["cdkListboxCustomNavigationExample"], ngImport: i0, template: "
    \n \n \n
      \n
    • \n Chocolate\n
    • \n
    • \n Pumpkin Spice (seasonal)\n
    • \n
    • \n Strawberry\n
    • \n
    • \n Vanilla\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCustomNavigationExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCustomNavigationExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-custom-navigation-example', exportAs: 'cdkListboxCustomNavigationExample', imports: [CdkListbox, CdkOption], template: "
    \n \n \n
      \n
    • \n Chocolate\n
    • \n
    • \n Pumpkin Spice (seasonal)\n
    • \n
    • \n Strawberry\n
    • \n
    • \n Vanilla\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); /** @title Listbox with custom typeahead. */ class CdkListboxCustomTypeaheadExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCustomTypeaheadExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkListboxCustomTypeaheadExample, isStandalone: true, selector: "cdk-listbox-custom-typeahead-example", exportAs: ["cdkListboxCustomTypeaheadExample"], ngImport: i0, template: "
    \n \n \n
      \n \n \uD83D\uDE00 Great\n \n
    • \n \uD83D\uDE10 Okay\n
    • \n
    • \n \uD83D\uDE41 Bad\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCustomTypeaheadExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkListboxCustomTypeaheadExample, isStandalone: true, selector: "cdk-listbox-custom-typeahead-example", exportAs: ["cdkListboxCustomTypeaheadExample"], ngImport: i0, template: "
    \n \n \n
      \n \n \uD83D\uDE00 Great\n \n
    • \n \uD83D\uDE10 Okay\n
    • \n
    • \n \uD83D\uDE41 Bad\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxCustomTypeaheadExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxCustomTypeaheadExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-custom-typeahead-example', exportAs: 'cdkListboxCustomTypeaheadExample', imports: [CdkListbox, CdkOption], template: "
    \n \n \n
      \n \n \uD83D\uDE00 Great\n \n
    • \n \uD83D\uDE10 Okay\n
    • \n
    • \n \uD83D\uDE41 Bad\n
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); @@ -71,10 +71,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Listbox with disabled options. */ class CdkListboxDisabledExample { canDrinkCtrl = new FormControl(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkListboxDisabledExample, isStandalone: true, selector: "cdk-listbox-disabled-example", exportAs: ["cdkListboxDisabledExample"], ngImport: i0, template: "
    \n

    \n  \n \n

    \n
    \n
    \n \n \n
      \n
    • \n Cabernet Sauvignon\n
    • \n
    • \n Syrah\n
    • \n
    • \n Zinfandel (sold out)\n
    • \n
    • \n Riesling\n
    • \n
    \n \n
    \n
    \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-disabled {\n border-color: rgba(0, 0, 0, 0.5);\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-disabled .example-listbox-label {\n opacity: 0.5;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-sold-out {\n color: red;\n font-size: 0.75em;\n vertical-align: super;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkListboxDisabledExample, isStandalone: true, selector: "cdk-listbox-disabled-example", exportAs: ["cdkListboxDisabledExample"], ngImport: i0, template: "
    \n

    \n  \n \n

    \n
    \n
    \n \n \n
      \n
    • \n Cabernet Sauvignon\n
    • \n
    • \n Syrah\n
    • \n
    • \n Zinfandel (sold out)\n
    • \n
    • \n Riesling\n
    • \n
    \n \n
    \n
    \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-disabled {\n border-color: rgba(0, 0, 0, 0.5);\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-disabled .example-listbox-label {\n opacity: 0.5;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-sold-out {\n color: red;\n font-size: 0.75em;\n vertical-align: super;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxDisabledExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxDisabledExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-disabled-example', exportAs: 'cdkListboxDisabledExample', imports: [FormsModule, ReactiveFormsModule, CdkListbox, CdkOption], template: "
    \n

    \n  \n \n

    \n
    \n
    \n \n \n
      \n
    • \n Cabernet Sauvignon\n
    • \n
    • \n Syrah\n
    • \n
    • \n Zinfandel (sold out)\n
    • \n
    • \n Riesling\n
    • \n
    \n \n
    \n
    \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-disabled {\n border-color: rgba(0, 0, 0, 0.5);\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-disabled .example-listbox-label {\n opacity: 0.5;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option[aria-disabled='true'] {\n opacity: 0.5;\n}\n\n.example-option[aria-disabled='false']:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-sold-out {\n color: red;\n font-size: 0.75em;\n vertical-align: super;\n}\n"] }] }] }); @@ -108,10 +108,10 @@ class CdkListboxFormsValidationExample { } return errors.length ? errors : null; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxFormsValidationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxFormsValidationExample, isStandalone: true, selector: "cdk-listbox-forms-validation-example", exportAs: ["cdkListboxFormsValidationExample"], ngImport: i0, template: "
    \n \n
      \n @for (sign of signs; track sign) {\n
    • {{sign}}
    • \n }\n
    \n
    \n@if (invalid | async) {\n
    \n @for (error of getErrors(); track error) {\n

    {{error}}

    \n }\n
    \n}\n

    \n Your zodiac sign is: {{signCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-invalid {\n border-color: red;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox-invalid .example-listbox-label {\n color: red;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n height: 200px;\n overflow: auto;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-listbox-errors {\n color: red;\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxFormsValidationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxFormsValidationExample, isStandalone: true, selector: "cdk-listbox-forms-validation-example", exportAs: ["cdkListboxFormsValidationExample"], ngImport: i0, template: "
    \n \n
      \n @for (sign of signs; track sign) {\n
    • {{sign}}
    • \n }\n
    \n
    \n@if (invalid | async) {\n
    \n @for (error of getErrors(); track error) {\n

    {{error}}

    \n }\n
    \n}\n

    \n Your zodiac sign is: {{signCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-invalid {\n border-color: red;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox-invalid .example-listbox-label {\n color: red;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n height: 200px;\n overflow: auto;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-listbox-errors {\n color: red;\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxFormsValidationExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxFormsValidationExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-forms-validation-example', exportAs: 'cdkListboxFormsValidationExample', imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, AsyncPipe, JsonPipe], template: "
    \n \n
      \n @for (sign of signs; track sign) {\n
    • {{sign}}
    • \n }\n
    \n
    \n@if (invalid | async) {\n
    \n @for (error of getErrors(); track error) {\n

    {{error}}

    \n }\n
    \n}\n

    \n Your zodiac sign is: {{signCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-invalid {\n border-color: red;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox-invalid .example-listbox-label {\n color: red;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n height: 200px;\n overflow: auto;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n\n.example-listbox-errors {\n color: red;\n}\n"] }] }], ctorParameters: () => [] }); @@ -119,30 +119,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Horizontal listbox */ class CdkListboxHorizontalExample { sizes = ['XS', 'S', 'M', 'L', 'XL']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxHorizontalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxHorizontalExample, isStandalone: true, selector: "cdk-listbox-horizontal-example", exportAs: ["cdkListboxhorizontalExample"], ngImport: i0, template: "\n\n
      \n @for (size of sizes; track size) {\n
    • {{size}}
    • \n }\n
    \n\n", styles: [".example-listbox {\n display: flex;\n width: 250px;\n padding: 0;\n}\n\n.example-option {\n display: flex;\n flex: 1;\n align-items: center;\n justify-content: center;\n position: relative;\n list-style: none;\n padding: 12px;\n border: solid black;\n border-width: 1px 1px 1px 0;\n}\n\n.example-option:first-child {\n border-left-width: 1px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n position: absolute;\n border: 2px solid black;\n top: 3px;\n bottom: 3px;\n left: 3px;\n right: 3px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxHorizontalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxHorizontalExample, isStandalone: true, selector: "cdk-listbox-horizontal-example", exportAs: ["cdkListboxhorizontalExample"], ngImport: i0, template: "\n\n
      \n @for (size of sizes; track size) {\n
    • {{size}}
    • \n }\n
    \n\n", styles: [".example-listbox {\n display: flex;\n width: 250px;\n padding: 0;\n}\n\n.example-option {\n display: flex;\n flex: 1;\n align-items: center;\n justify-content: center;\n position: relative;\n list-style: none;\n padding: 12px;\n border: solid black;\n border-width: 1px 1px 1px 0;\n}\n\n.example-option:first-child {\n border-left-width: 1px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n position: absolute;\n border: 2px solid black;\n top: 3px;\n bottom: 3px;\n left: 3px;\n right: 3px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxHorizontalExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxHorizontalExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-horizontal-example', exportAs: 'cdkListboxhorizontalExample', imports: [CdkListbox, CdkOption], template: "\n\n
      \n @for (size of sizes; track size) {\n
    • {{size}}
    • \n }\n
    \n\n", styles: [".example-listbox {\n display: flex;\n width: 250px;\n padding: 0;\n}\n\n.example-option {\n display: flex;\n flex: 1;\n align-items: center;\n justify-content: center;\n position: relative;\n list-style: none;\n padding: 12px;\n border: solid black;\n border-width: 1px 1px 1px 0;\n}\n\n.example-option:first-child {\n border-left-width: 1px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n position: absolute;\n border: 2px solid black;\n top: 3px;\n bottom: 3px;\n left: 3px;\n right: 3px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); /** @title Listbox with multiple selection. */ class CdkListboxMultipleExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxMultipleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkListboxMultipleExample, isStandalone: true, selector: "cdk-listbox-multiple-example", exportAs: ["cdkListboxMultipleExample"], ngImport: i0, template: "
    \n \n \n
      \n
    • Chinese
    • \n
    • French
    • \n
    • Italian
    • \n
    • Japanese
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxMultipleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkListboxMultipleExample, isStandalone: true, selector: "cdk-listbox-multiple-example", exportAs: ["cdkListboxMultipleExample"], ngImport: i0, template: "
    \n \n \n
      \n
    • Chinese
    • \n
    • French
    • \n
    • Italian
    • \n
    • Japanese
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxMultipleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxMultipleExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-multiple-example', exportAs: 'cdkListboxMultipleExample', imports: [CdkListbox, CdkOption], template: "
    \n \n \n
      \n
    • Chinese
    • \n
    • French
    • \n
    • Italian
    • \n
    • Japanese
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); /** @title Basic listbox. */ class CdkListboxOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkListboxOverviewExample, isStandalone: true, selector: "cdk-listbox-overview-example", exportAs: ["cdkListboxOverviewExample"], ngImport: i0, template: "
    \n \n \n
      \n \n
    • Red
    • \n \n
    • Green
    • \n
    • Blue
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkListboxOverviewExample, isStandalone: true, selector: "cdk-listbox-overview-example", exportAs: ["cdkListboxOverviewExample"], ngImport: i0, template: "
    \n \n \n
      \n \n
    • Red
    • \n \n
    • Green
    • \n
    • Blue
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-overview-example', exportAs: 'cdkListboxOverviewExample', imports: [CdkListbox, CdkOption], template: "
    \n \n \n
      \n \n
    • Red
    • \n \n
    • Green
    • \n
    • Blue
    • \n
    \n \n
    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); @@ -151,10 +151,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class CdkListboxReactiveFormsExample { languages = ['C++', 'Java', 'JavaScript', 'Python', 'TypeScript']; languageCtrl = new FormControl(['TypeScript']); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxReactiveFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxReactiveFormsExample, isStandalone: true, selector: "cdk-listbox-reactive-forms-example", exportAs: ["cdkListboxReactiveFormsExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (language of languages; track language) {\n
    • {{language}}
    • \n }\n
    \n \n
    \n

    \n Your preferred language: {{languageCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxReactiveFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxReactiveFormsExample, isStandalone: true, selector: "cdk-listbox-reactive-forms-example", exportAs: ["cdkListboxReactiveFormsExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (language of languages; track language) {\n
    • {{language}}
    • \n }\n
    \n \n
    \n

    \n Your preferred language: {{languageCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxReactiveFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxReactiveFormsExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-reactive-forms-example', exportAs: 'cdkListboxReactiveFormsExample', imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, JsonPipe], template: "
    \n \n \n
      \n @for (language of languages; track language) {\n
    • {{language}}
    • \n }\n
    \n \n
    \n

    \n Your preferred language: {{languageCtrl.value | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); @@ -163,10 +163,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class CdkListboxTemplateFormsExample { toppings = ['Extra Cheese', 'Mushrooms', 'Pepperoni', 'Sausage']; order = []; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxTemplateFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxTemplateFormsExample, isStandalone: true, selector: "cdk-listbox-template-forms-example", exportAs: ["cdkListboxTemplateFormsExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (topping of toppings; track topping) {\n
    • {{topping}}
    • \n }\n
    \n \n
    \n

    \n Your order: {{order | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxTemplateFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxTemplateFormsExample, isStandalone: true, selector: "cdk-listbox-template-forms-example", exportAs: ["cdkListboxTemplateFormsExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (topping of toppings; track topping) {\n
    • {{topping}}
    • \n }\n
    \n \n
    \n

    \n Your order: {{order | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxTemplateFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxTemplateFormsExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-template-forms-example', exportAs: 'cdkListboxTemplateFormsExample', imports: [CdkListbox, FormsModule, CdkOption, JsonPipe], template: "
    \n \n \n
      \n @for (topping of toppings; track topping) {\n
    • {{topping}}
    • \n }\n
    \n \n
    \n

    \n Your order: {{order | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); @@ -178,17 +178,13 @@ class CdkListboxValueBindingExample { reset() { this.starter = ['Fuecoco']; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxValueBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkListboxValueBindingExample, isStandalone: true, selector: "cdk-listbox-value-binding-example", exportAs: ["cdkListboxValueBindingExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (pokemon of starters; track pokemon) {\n
    • {{pokemon}}
    • \n }\n
    \n \n
    \n

    \n Your starter pokemon is {{starter | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxValueBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkListboxValueBindingExample, isStandalone: true, selector: "cdk-listbox-value-binding-example", exportAs: ["cdkListboxValueBindingExample"], ngImport: i0, template: "
    \n \n \n
      \n @for (pokemon of starters; track pokemon) {\n
    • {{pokemon}}
    • \n }\n
    \n \n
    \n

    \n Your starter pokemon is {{starter | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"], dependencies: [{ kind: "directive", type: CdkListbox, selector: "[cdkListbox]", inputs: ["id", "tabindex", "cdkListboxValue", "cdkListboxMultiple", "cdkListboxDisabled", "cdkListboxUseActiveDescendant", "cdkListboxOrientation", "cdkListboxCompareWith", "cdkListboxNavigationWrapDisabled", "cdkListboxNavigatesDisabledOptions"], outputs: ["cdkListboxValueChange"], exportAs: ["cdkListbox"] }, { kind: "directive", type: CdkOption, selector: "[cdkOption]", inputs: ["id", "cdkOption", "cdkOptionTypeaheadLabel", "cdkOptionDisabled", "tabindex"], exportAs: ["cdkOption"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkListboxValueBindingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkListboxValueBindingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-listbox-value-binding-example', exportAs: 'cdkListboxValueBindingExample', imports: [CdkListbox, CdkOption, JsonPipe], template: "
    \n \n \n
      \n @for (pokemon of starters; track pokemon) {\n
    • {{pokemon}}
    • \n }\n
    \n \n
    \n

    \n Your starter pokemon is {{starter | json}} \n \n

    \n", styles: [".example-listbox-container {\n display: block;\n width: 250px;\n border: 1px solid black;\n}\n\n.example-listbox-label {\n display: block;\n padding: 5px;\n}\n\n.example-listbox {\n list-style: none;\n padding: 0;\n margin: 0;\n}\n\n.example-option {\n position: relative;\n padding: 5px 5px 5px 25px;\n}\n\n.example-option[aria-selected='true']::before {\n content: '';\n display: block;\n width: 20px;\n height: 20px;\n background-image: url('data:image/svg+xml;utf8,'); /* stylelint-disable-line */\n background-size: cover;\n position: absolute;\n left: 2px;\n}\n\n.example-option:focus {\n background: rgba(0, 0, 0, 0.2);\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkListboxActivedescendantExample, CdkListboxCompareWithExample, CdkListboxCustomNavigationExample, CdkListboxCustomTypeaheadExample, CdkListboxDisabledExample, CdkListboxFormsValidationExample, CdkListboxHorizontalExample, CdkListboxMultipleExample, CdkListboxOverviewExample, CdkListboxReactiveFormsExample, CdkListboxTemplateFormsExample, CdkListboxValueBindingExample }; //# sourceMappingURL=listbox.mjs.map diff --git a/fesm2022/cdk/listbox.mjs.map b/fesm2022/cdk/listbox.mjs.map index 96973a1f58..248a63f76b 100755 --- a/fesm2022/cdk/listbox.mjs.map +++ b/fesm2022/cdk/listbox.mjs.map @@ -1 +1 @@ -{"version":3,"file":"listbox.mjs","sources":["../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-activedescendant/cdk-listbox-activedescendant-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-activedescendant/cdk-listbox-activedescendant-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-compare-with/cdk-listbox-compare-with-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-compare-with/cdk-listbox-compare-with-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-custom-navigation/cdk-listbox-custom-navigation-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-custom-navigation/cdk-listbox-custom-navigation-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-custom-typeahead/cdk-listbox-custom-typeahead-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-custom-typeahead/cdk-listbox-custom-typeahead-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-disabled/cdk-listbox-disabled-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-disabled/cdk-listbox-disabled-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-forms-validation/cdk-listbox-forms-validation-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-forms-validation/cdk-listbox-forms-validation-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-horizontal/cdk-listbox-horizontal-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-horizontal/cdk-listbox-horizontal-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-multiple/cdk-listbox-multiple-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-multiple/cdk-listbox-multiple-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-overview/cdk-listbox-overview-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-overview/cdk-listbox-overview-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-reactive-forms/cdk-listbox-reactive-forms-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-reactive-forms/cdk-listbox-reactive-forms-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-template-forms/cdk-listbox-template-forms-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-template-forms/cdk-listbox-template-forms-example.html","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-value-binding/cdk-listbox-value-binding-example.ts","../../../../../../../src/components-examples/cdk/listbox/cdk-listbox-value-binding/cdk-listbox-value-binding-example.html","../../../../../../../src/components-examples/cdk/listbox/listbox_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with aria-activedescendant. */\n@Component({\n selector: 'cdk-listbox-activedescendant-example',\n exportAs: 'cdkListboxActivedescendantExample',\n templateUrl: 'cdk-listbox-activedescendant-example.html',\n styleUrl: 'cdk-listbox-activedescendant-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxActivedescendantExample {\n features = ['Hydrodynamic', 'Port & Starboard Attachments', 'Turbo Drive'];\n}\n","
    \n \n \n
      \n @for (feature of features; track feature) {\n
    • {{feature}}
    • \n }\n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\nconst today = new Date();\n\nconst formatter = new Intl.DateTimeFormat(undefined, {\n weekday: 'short',\n month: 'short',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n});\n\n/** @title Listbox with complex object as values. */\n@Component({\n selector: 'cdk-listbox-compare-with-example',\n exportAs: 'cdkListboxCompareWithExample',\n templateUrl: 'cdk-listbox-compare-with-example.html',\n styleUrl: 'cdk-listbox-compare-with-example.css',\n imports: [CdkListbox, CdkOption, JsonPipe],\n})\nexport class CdkListboxCompareWithExample {\n slots = [12, 13, 14, 15].map(\n hour => new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1, hour),\n );\n\n appointment: readonly Date[] = [\n new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1, 14),\n ];\n\n compareDate(date1: Date, date2: Date) {\n return date1.getTime() === date2.getTime();\n }\n\n formatTime(date: Date) {\n return formatter.format(date);\n }\n\n formatAppointment() {\n return this.appointment.map(a => this.formatTime(a));\n }\n}\n","
    \n \n \n
      \n @for (time of slots; track time) {\n
    • {{formatTime(time)}}
    • \n }\n
    \n \n
    \n@if (appointment[0]) {\n

    \n Your appointment is scheduled for {{formatAppointment() | json}} \n

    \n}\n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with custom keyboard navigation options. */\n@Component({\n selector: 'cdk-listbox-custom-navigation-example',\n exportAs: 'cdkListboxCustomNavigationExample',\n templateUrl: 'cdk-listbox-custom-navigation-example.html',\n styleUrl: 'cdk-listbox-custom-navigation-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxCustomNavigationExample {}\n","
    \n \n \n
      \n
    • \n Chocolate\n
    • \n
    • \n Pumpkin Spice (seasonal)\n
    • \n
    • \n Strawberry\n
    • \n
    • \n Vanilla\n
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with custom typeahead. */\n@Component({\n selector: 'cdk-listbox-custom-typeahead-example',\n exportAs: 'cdkListboxCustomTypeaheadExample',\n templateUrl: 'cdk-listbox-custom-typeahead-example.html',\n styleUrl: 'cdk-listbox-custom-typeahead-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxCustomTypeaheadExample {}\n","
    \n \n \n
      \n \n 😀 Great\n \n
    • \n 😐 Okay\n
    • \n
    • \n 🙁 Bad\n
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with disabled options. */\n@Component({\n selector: 'cdk-listbox-disabled-example',\n exportAs: 'cdkListboxDisabledExample',\n templateUrl: 'cdk-listbox-disabled-example.html',\n styleUrl: 'cdk-listbox-disabled-example.css',\n imports: [FormsModule, ReactiveFormsModule, CdkListbox, CdkOption],\n})\nexport class CdkListboxDisabledExample {\n canDrinkCtrl = new FormControl(false);\n}\n","
    \n

    \n  \n \n

    \n
    \n
    \n \n \n
      \n
    • \n Cabernet Sauvignon\n
    • \n
    • \n Syrah\n
    • \n
    • \n Zinfandel (sold out)\n
    • \n
    • \n Riesling\n
    • \n
    \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {map} from 'rxjs/operators';\nimport {Observable} from 'rxjs';\nimport {AsyncPipe, JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with forms validation. */\n@Component({\n selector: 'cdk-listbox-forms-validation-example',\n exportAs: 'cdkListboxFormsValidationExample',\n templateUrl: 'cdk-listbox-forms-validation-example.html',\n styleUrl: 'cdk-listbox-forms-validation-example.css',\n imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, AsyncPipe, JsonPipe],\n})\nexport class CdkListboxFormsValidationExample {\n signs = [\n 'Rat',\n 'Ox',\n 'Tiger',\n 'Rabbit',\n 'Dragon',\n 'Snake',\n 'Horse',\n 'Goat',\n 'Monkey',\n 'Rooster',\n 'Dog',\n 'Pig',\n ];\n invalid: Observable;\n\n constructor() {\n this.invalid = this.signCtrl.valueChanges.pipe(\n map(() => this.signCtrl.touched && !this.signCtrl.valid),\n );\n }\n\n // #docregion errors\n signCtrl = new FormControl([], Validators.required);\n\n getErrors() {\n const errors = [];\n if (this.signCtrl.hasError('required')) {\n errors.push('You must enter your zodiac sign');\n }\n\n return errors.length ? errors : null;\n }\n // #enddocregion errors\n}\n","
    \n \n
      \n @for (sign of signs; track sign) {\n
    • {{sign}}
    • \n }\n
    \n
    \n@if (invalid | async) {\n
    \n @for (error of getErrors(); track error) {\n

    {{error}}

    \n }\n
    \n}\n

    \n Your zodiac sign is: {{signCtrl.value | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Horizontal listbox */\n@Component({\n selector: 'cdk-listbox-horizontal-example',\n exportAs: 'cdkListboxhorizontalExample',\n templateUrl: 'cdk-listbox-horizontal-example.html',\n styleUrl: 'cdk-listbox-horizontal-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxHorizontalExample {\n sizes = ['XS', 'S', 'M', 'L', 'XL'];\n}\n","\n\n
      \n @for (size of sizes; track size) {\n
    • {{size}}
    • \n }\n
    \n\n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with multiple selection. */\n@Component({\n selector: 'cdk-listbox-multiple-example',\n exportAs: 'cdkListboxMultipleExample',\n templateUrl: 'cdk-listbox-multiple-example.html',\n styleUrl: 'cdk-listbox-multiple-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxMultipleExample {}\n","
    \n \n \n
      \n
    • Chinese
    • \n
    • French
    • \n
    • Italian
    • \n
    • Japanese
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Basic listbox. */\n@Component({\n selector: 'cdk-listbox-overview-example',\n exportAs: 'cdkListboxOverviewExample',\n templateUrl: 'cdk-listbox-overview-example.html',\n styleUrl: 'cdk-listbox-overview-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxOverviewExample {}\n","
    \n \n \n
      \n \n
    • Red
    • \n \n
    • Green
    • \n
    • Blue
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with reactive forms. */\n@Component({\n selector: 'cdk-listbox-reactive-forms-example',\n exportAs: 'cdkListboxReactiveFormsExample',\n templateUrl: 'cdk-listbox-reactive-forms-example.html',\n styleUrl: 'cdk-listbox-reactive-forms-example.css',\n imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, JsonPipe],\n})\nexport class CdkListboxReactiveFormsExample {\n languages = ['C++', 'Java', 'JavaScript', 'Python', 'TypeScript'];\n languageCtrl = new FormControl(['TypeScript']);\n}\n","
    \n \n \n
      \n @for (language of languages; track language) {\n
    • {{language}}
    • \n }\n
    \n \n
    \n

    \n Your preferred language: {{languageCtrl.value | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {FormsModule} from '@angular/forms';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with template-driven forms. */\n@Component({\n selector: 'cdk-listbox-template-forms-example',\n exportAs: 'cdkListboxTemplateFormsExample',\n templateUrl: 'cdk-listbox-template-forms-example.html',\n styleUrl: 'cdk-listbox-template-forms-example.css',\n imports: [CdkListbox, FormsModule, CdkOption, JsonPipe],\n})\nexport class CdkListboxTemplateFormsExample {\n toppings = ['Extra Cheese', 'Mushrooms', 'Pepperoni', 'Sausage'];\n order: readonly string[] = [];\n}\n","
    \n \n \n
      \n @for (topping of toppings; track topping) {\n
    • {{topping}}
    • \n }\n
    \n \n
    \n

    \n Your order: {{order | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with value binding. */\n@Component({\n selector: 'cdk-listbox-value-binding-example',\n exportAs: 'cdkListboxValueBindingExample',\n templateUrl: 'cdk-listbox-value-binding-example.html',\n styleUrl: 'cdk-listbox-value-binding-example.css',\n imports: [CdkListbox, CdkOption, JsonPipe],\n})\nexport class CdkListboxValueBindingExample {\n starters = ['Sprigatito', 'Fuecoco', 'Quaxly'];\n starter: readonly string[] = ['Fuecoco'];\n\n reset() {\n this.starter = ['Fuecoco'];\n }\n}\n","
    \n \n \n
      \n @for (pokemon of starters; track pokemon) {\n
    • {{pokemon}}
    • \n }\n
    \n \n
    \n

    \n Your starter pokemon is {{starter | json}} \n \n

    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"listbox.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-activedescendant/cdk-listbox-activedescendant-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-activedescendant/cdk-listbox-activedescendant-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-compare-with/cdk-listbox-compare-with-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-compare-with/cdk-listbox-compare-with-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-custom-navigation/cdk-listbox-custom-navigation-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-custom-navigation/cdk-listbox-custom-navigation-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-custom-typeahead/cdk-listbox-custom-typeahead-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-custom-typeahead/cdk-listbox-custom-typeahead-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-disabled/cdk-listbox-disabled-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-disabled/cdk-listbox-disabled-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-forms-validation/cdk-listbox-forms-validation-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-forms-validation/cdk-listbox-forms-validation-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-horizontal/cdk-listbox-horizontal-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-horizontal/cdk-listbox-horizontal-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-multiple/cdk-listbox-multiple-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-multiple/cdk-listbox-multiple-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-overview/cdk-listbox-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-overview/cdk-listbox-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-reactive-forms/cdk-listbox-reactive-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-reactive-forms/cdk-listbox-reactive-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-template-forms/cdk-listbox-template-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-template-forms/cdk-listbox-template-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-value-binding/cdk-listbox-value-binding-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/listbox/cdk-listbox-value-binding/cdk-listbox-value-binding-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with aria-activedescendant. */\n@Component({\n selector: 'cdk-listbox-activedescendant-example',\n exportAs: 'cdkListboxActivedescendantExample',\n templateUrl: 'cdk-listbox-activedescendant-example.html',\n styleUrl: 'cdk-listbox-activedescendant-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxActivedescendantExample {\n features = ['Hydrodynamic', 'Port & Starboard Attachments', 'Turbo Drive'];\n}\n","
    \n \n \n
      \n @for (feature of features; track feature) {\n
    • {{feature}}
    • \n }\n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\nconst today = new Date();\n\nconst formatter = new Intl.DateTimeFormat(undefined, {\n weekday: 'short',\n month: 'short',\n day: 'numeric',\n hour: 'numeric',\n minute: 'numeric',\n});\n\n/** @title Listbox with complex object as values. */\n@Component({\n selector: 'cdk-listbox-compare-with-example',\n exportAs: 'cdkListboxCompareWithExample',\n templateUrl: 'cdk-listbox-compare-with-example.html',\n styleUrl: 'cdk-listbox-compare-with-example.css',\n imports: [CdkListbox, CdkOption, JsonPipe],\n})\nexport class CdkListboxCompareWithExample {\n slots = [12, 13, 14, 15].map(\n hour => new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1, hour),\n );\n\n appointment: readonly Date[] = [\n new Date(today.getFullYear(), today.getMonth(), today.getDate() + 1, 14),\n ];\n\n compareDate(date1: Date, date2: Date) {\n return date1.getTime() === date2.getTime();\n }\n\n formatTime(date: Date) {\n return formatter.format(date);\n }\n\n formatAppointment() {\n return this.appointment.map(a => this.formatTime(a));\n }\n}\n","
    \n \n \n
      \n @for (time of slots; track time) {\n
    • {{formatTime(time)}}
    • \n }\n
    \n \n
    \n@if (appointment[0]) {\n

    \n Your appointment is scheduled for {{formatAppointment() | json}} \n

    \n}\n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with custom keyboard navigation options. */\n@Component({\n selector: 'cdk-listbox-custom-navigation-example',\n exportAs: 'cdkListboxCustomNavigationExample',\n templateUrl: 'cdk-listbox-custom-navigation-example.html',\n styleUrl: 'cdk-listbox-custom-navigation-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxCustomNavigationExample {}\n","
    \n \n \n
      \n
    • \n Chocolate\n
    • \n
    • \n Pumpkin Spice (seasonal)\n
    • \n
    • \n Strawberry\n
    • \n
    • \n Vanilla\n
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with custom typeahead. */\n@Component({\n selector: 'cdk-listbox-custom-typeahead-example',\n exportAs: 'cdkListboxCustomTypeaheadExample',\n templateUrl: 'cdk-listbox-custom-typeahead-example.html',\n styleUrl: 'cdk-listbox-custom-typeahead-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxCustomTypeaheadExample {}\n","
    \n \n \n
      \n \n 😀 Great\n \n
    • \n 😐 Okay\n
    • \n
    • \n 🙁 Bad\n
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with disabled options. */\n@Component({\n selector: 'cdk-listbox-disabled-example',\n exportAs: 'cdkListboxDisabledExample',\n templateUrl: 'cdk-listbox-disabled-example.html',\n styleUrl: 'cdk-listbox-disabled-example.css',\n imports: [FormsModule, ReactiveFormsModule, CdkListbox, CdkOption],\n})\nexport class CdkListboxDisabledExample {\n canDrinkCtrl = new FormControl(false);\n}\n","
    \n

    \n  \n \n

    \n
    \n
    \n \n \n
      \n
    • \n Cabernet Sauvignon\n
    • \n
    • \n Syrah\n
    • \n
    • \n Zinfandel (sold out)\n
    • \n
    • \n Riesling\n
    • \n
    \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {map} from 'rxjs/operators';\nimport {Observable} from 'rxjs';\nimport {AsyncPipe, JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with forms validation. */\n@Component({\n selector: 'cdk-listbox-forms-validation-example',\n exportAs: 'cdkListboxFormsValidationExample',\n templateUrl: 'cdk-listbox-forms-validation-example.html',\n styleUrl: 'cdk-listbox-forms-validation-example.css',\n imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, AsyncPipe, JsonPipe],\n})\nexport class CdkListboxFormsValidationExample {\n signs = [\n 'Rat',\n 'Ox',\n 'Tiger',\n 'Rabbit',\n 'Dragon',\n 'Snake',\n 'Horse',\n 'Goat',\n 'Monkey',\n 'Rooster',\n 'Dog',\n 'Pig',\n ];\n invalid: Observable;\n\n constructor() {\n this.invalid = this.signCtrl.valueChanges.pipe(\n map(() => this.signCtrl.touched && !this.signCtrl.valid),\n );\n }\n\n // #docregion errors\n signCtrl = new FormControl([], Validators.required);\n\n getErrors() {\n const errors = [];\n if (this.signCtrl.hasError('required')) {\n errors.push('You must enter your zodiac sign');\n }\n\n return errors.length ? errors : null;\n }\n // #enddocregion errors\n}\n","
    \n \n
      \n @for (sign of signs; track sign) {\n
    • {{sign}}
    • \n }\n
    \n
    \n@if (invalid | async) {\n
    \n @for (error of getErrors(); track error) {\n

    {{error}}

    \n }\n
    \n}\n

    \n Your zodiac sign is: {{signCtrl.value | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Horizontal listbox */\n@Component({\n selector: 'cdk-listbox-horizontal-example',\n exportAs: 'cdkListboxhorizontalExample',\n templateUrl: 'cdk-listbox-horizontal-example.html',\n styleUrl: 'cdk-listbox-horizontal-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxHorizontalExample {\n sizes = ['XS', 'S', 'M', 'L', 'XL'];\n}\n","\n\n
      \n @for (size of sizes; track size) {\n
    • {{size}}
    • \n }\n
    \n\n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with multiple selection. */\n@Component({\n selector: 'cdk-listbox-multiple-example',\n exportAs: 'cdkListboxMultipleExample',\n templateUrl: 'cdk-listbox-multiple-example.html',\n styleUrl: 'cdk-listbox-multiple-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxMultipleExample {}\n","
    \n \n \n
      \n
    • Chinese
    • \n
    • French
    • \n
    • Italian
    • \n
    • Japanese
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Basic listbox. */\n@Component({\n selector: 'cdk-listbox-overview-example',\n exportAs: 'cdkListboxOverviewExample',\n templateUrl: 'cdk-listbox-overview-example.html',\n styleUrl: 'cdk-listbox-overview-example.css',\n imports: [CdkListbox, CdkOption],\n})\nexport class CdkListboxOverviewExample {}\n","
    \n \n \n
      \n \n
    • Red
    • \n \n
    • Green
    • \n
    • Blue
    • \n
    \n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with reactive forms. */\n@Component({\n selector: 'cdk-listbox-reactive-forms-example',\n exportAs: 'cdkListboxReactiveFormsExample',\n templateUrl: 'cdk-listbox-reactive-forms-example.html',\n styleUrl: 'cdk-listbox-reactive-forms-example.css',\n imports: [CdkListbox, FormsModule, ReactiveFormsModule, CdkOption, JsonPipe],\n})\nexport class CdkListboxReactiveFormsExample {\n languages = ['C++', 'Java', 'JavaScript', 'Python', 'TypeScript'];\n languageCtrl = new FormControl(['TypeScript']);\n}\n","
    \n \n \n
      \n @for (language of languages; track language) {\n
    • {{language}}
    • \n }\n
    \n \n
    \n

    \n Your preferred language: {{languageCtrl.value | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {FormsModule} from '@angular/forms';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with template-driven forms. */\n@Component({\n selector: 'cdk-listbox-template-forms-example',\n exportAs: 'cdkListboxTemplateFormsExample',\n templateUrl: 'cdk-listbox-template-forms-example.html',\n styleUrl: 'cdk-listbox-template-forms-example.css',\n imports: [CdkListbox, FormsModule, CdkOption, JsonPipe],\n})\nexport class CdkListboxTemplateFormsExample {\n toppings = ['Extra Cheese', 'Mushrooms', 'Pepperoni', 'Sausage'];\n order: readonly string[] = [];\n}\n","
    \n \n \n
      \n @for (topping of toppings; track topping) {\n
    • {{topping}}
    • \n }\n
    \n \n
    \n

    \n Your order: {{order | json}} \n \n

    \n","import {Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {CdkListbox, CdkOption} from '@angular/cdk/listbox';\n\n/** @title Listbox with value binding. */\n@Component({\n selector: 'cdk-listbox-value-binding-example',\n exportAs: 'cdkListboxValueBindingExample',\n templateUrl: 'cdk-listbox-value-binding-example.html',\n styleUrl: 'cdk-listbox-value-binding-example.css',\n imports: [CdkListbox, CdkOption, JsonPipe],\n})\nexport class CdkListboxValueBindingExample {\n starters = ['Sprigatito', 'Fuecoco', 'Quaxly'];\n starter: readonly string[] = ['Fuecoco'];\n\n reset() {\n this.starter = ['Fuecoco'];\n }\n}\n","
    \n \n \n
      \n @for (pokemon of starters; track pokemon) {\n
    • {{pokemon}}
    • \n }\n
    \n \n
    \n

    \n Your starter pokemon is {{starter | json}} \n \n

    \n"],"names":["i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/menu.mjs b/fesm2022/cdk/menu.mjs index 444f684f07..eeed6f18bd 100755 --- a/fesm2022/cdk/menu.mjs +++ b/fesm2022/cdk/menu.mjs @@ -4,10 +4,10 @@ import { CdkMenuTrigger, CdkMenu, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuGroup /** @title Menu with Standalone Trigger. */ class CdkMenuStandaloneMenuExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuStandaloneMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkMenuStandaloneMenuExample, isStandalone: true, selector: "cdk-menu-standalone-menu-example", ngImport: i0, template: "\n\n\n\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgba(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item,\n.example-standalone-trigger {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-standalone-item {\n background-color: rgb(239, 239, 239);\n}\n.example-standalone-item:hover {\n background-color: rgb(208, 208, 208);\n}\n.example-standalone-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuStandaloneMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkMenuStandaloneMenuExample, isStandalone: true, selector: "cdk-menu-standalone-menu-example", ngImport: i0, template: "\n\n\n\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgba(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item,\n.example-standalone-trigger {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-standalone-item {\n background-color: rgb(239, 239, 239);\n}\n.example-standalone-item:hover {\n background-color: rgb(208, 208, 208);\n}\n.example-standalone-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuStandaloneMenuExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuStandaloneMenuExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-standalone-menu-example', imports: [CdkMenuTrigger, CdkMenu, CdkMenuItem], template: "\n\n\n\n\n
    \n \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgba(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item,\n.example-standalone-trigger {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-standalone-item {\n background-color: rgb(239, 239, 239);\n}\n.example-standalone-item:hover {\n background-color: rgb(208, 208, 208);\n}\n.example-standalone-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208);\n}\n"] }] }] }); @@ -23,10 +23,10 @@ class CdkMenuStandaloneStatefulMenuExample { this.italic = false; this.selectedSize = 'Normal'; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuStandaloneStatefulMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkMenuStandaloneStatefulMenuExample, isStandalone: true, selector: "cdk-menu-standalone-stateful-menu-example", ngImport: i0, template: "\n\n\n
    \n \n \n Bold\n \n \n \n Italic\n \n
    \n
    \n \n @for (size of sizes; track size) {\n \n {{size}}\n \n }\n \n
    \n
    \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu .example-menu-item {\n width: 100%;\n}\n\nhr {\n width: 100%;\n color: rgba(0, 0, 0, 0.12);\n}\n\n.example-menu-item,\n.example-standalone-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-standalone-item {\n background-color: rgb(239, 239, 239);\n}\n.example-standalone-item:hover {\n background-color: rgb(208, 208, 208);\n}\n.example-standalone-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item[role='menuitemradio'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu-item[role='menuitemcheckbox'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItemCheckbox, selector: "[cdkMenuItemCheckbox]", exportAs: ["cdkMenuItemCheckbox"] }, { kind: "directive", type: CdkMenuGroup, selector: "[cdkMenuGroup]", exportAs: ["cdkMenuGroup"] }, { kind: "directive", type: CdkMenuItemRadio, selector: "[cdkMenuItemRadio]", exportAs: ["cdkMenuItemRadio"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuStandaloneStatefulMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkMenuStandaloneStatefulMenuExample, isStandalone: true, selector: "cdk-menu-standalone-stateful-menu-example", ngImport: i0, template: "\n\n\n
    \n \n \n Bold\n \n \n \n Italic\n \n
    \n
    \n \n @for (size of sizes; track size) {\n \n {{size}}\n \n }\n \n
    \n
    \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu .example-menu-item {\n width: 100%;\n}\n\nhr {\n width: 100%;\n color: rgba(0, 0, 0, 0.12);\n}\n\n.example-menu-item,\n.example-standalone-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-standalone-item {\n background-color: rgb(239, 239, 239);\n}\n.example-standalone-item:hover {\n background-color: rgb(208, 208, 208);\n}\n.example-standalone-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item[role='menuitemradio'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu-item[role='menuitemcheckbox'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItemCheckbox, selector: "[cdkMenuItemCheckbox]", exportAs: ["cdkMenuItemCheckbox"] }, { kind: "directive", type: CdkMenuGroup, selector: "[cdkMenuGroup]", exportAs: ["cdkMenuGroup"] }, { kind: "directive", type: CdkMenuItemRadio, selector: "[cdkMenuItemRadio]", exportAs: ["cdkMenuItemRadio"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuStandaloneStatefulMenuExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuStandaloneStatefulMenuExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-standalone-stateful-menu-example', imports: [ CdkMenuTrigger, @@ -40,10 +40,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Google Docs Menu Bar. */ class CdkMenuMenubarExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuMenubarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkMenuMenubarExample, isStandalone: true, selector: "cdk-menu-menubar-example", exportAs: ["cdkMenuMenubarExample"], ngImport: i0, template: "
    \n \n \n \n \n \n
    \n\n\n
    \n \n
    \n \n \n \n
    \n \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-menu-bar-item {\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 34px;\n line-height: 26px;\n padding: 0 16px;\n}\n\n.example-menu-bar-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu hr {\n width: 100%;\n color: rgba(0, 0, 0, 0.12);\n}\n\n.example-menu .example-menu-group {\n display: inline-flex;\n flex-direction: column;\n}\n\n.example-menu .example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item > span {\n display: flex;\n flex-direction: row;\n flex: 1;\n justify-content: flex-end;\n}\n\n.example-menu .example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu .example-menu-item[role='menuitemradio'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu .example-menu-item[role='menuitemcheckbox'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu .example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-menu-bar-item[aria-expanded='true'],\n.example-menu-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208) !important;\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuBar, selector: "[cdkMenuBar]", exportAs: ["cdkMenuBar"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }, { kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuGroup, selector: "[cdkMenuGroup]", exportAs: ["cdkMenuGroup"] }, { kind: "directive", type: CdkMenuItemCheckbox, selector: "[cdkMenuItemCheckbox]", exportAs: ["cdkMenuItemCheckbox"] }, { kind: "directive", type: CdkMenuItemRadio, selector: "[cdkMenuItemRadio]", exportAs: ["cdkMenuItemRadio"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuMenubarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkMenuMenubarExample, isStandalone: true, selector: "cdk-menu-menubar-example", exportAs: ["cdkMenuMenubarExample"], ngImport: i0, template: "
    \n \n \n \n \n \n
    \n\n\n
    \n \n
    \n \n \n \n
    \n \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-menu-bar-item {\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 34px;\n line-height: 26px;\n padding: 0 16px;\n}\n\n.example-menu-bar-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu hr {\n width: 100%;\n color: rgba(0, 0, 0, 0.12);\n}\n\n.example-menu .example-menu-group {\n display: inline-flex;\n flex-direction: column;\n}\n\n.example-menu .example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item > span {\n display: flex;\n flex-direction: row;\n flex: 1;\n justify-content: flex-end;\n}\n\n.example-menu .example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu .example-menu-item[role='menuitemradio'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu .example-menu-item[role='menuitemcheckbox'][aria-checked='true'] {\n background-color: rgb(225, 225, 225);\n}\n.example-menu .example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n\n.example-menu-bar-item[aria-expanded='true'],\n.example-menu-item[aria-expanded='true'] {\n background-color: rgb(208, 208, 208) !important;\n}\n"], dependencies: [{ kind: "directive", type: CdkMenuBar, selector: "[cdkMenuBar]", exportAs: ["cdkMenuBar"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }, { kind: "directive", type: CdkMenuTrigger, selector: "[cdkMenuTriggerFor]", inputs: ["cdkMenuTriggerFor", "cdkMenuPosition", "cdkMenuTriggerData"], outputs: ["cdkMenuOpened", "cdkMenuClosed"], exportAs: ["cdkMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuGroup, selector: "[cdkMenuGroup]", exportAs: ["cdkMenuGroup"] }, { kind: "directive", type: CdkMenuItemCheckbox, selector: "[cdkMenuItemCheckbox]", exportAs: ["cdkMenuItemCheckbox"] }, { kind: "directive", type: CdkMenuItemRadio, selector: "[cdkMenuItemRadio]", exportAs: ["cdkMenuItemRadio"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuMenubarExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuMenubarExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-menubar-example', exportAs: 'cdkMenuMenubarExample', imports: [ CdkMenuBar, @@ -58,37 +58,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Gmail inline menu. */ class CdkMenuInlineExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuInlineExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkMenuInlineExample, isStandalone: true, selector: "cdk-menu-inline-example", exportAs: ["cdkMenuInlineExample"], ngImport: i0, template: "
    \n \n \n \n \n \n \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuInlineExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkMenuInlineExample, isStandalone: true, selector: "cdk-menu-inline-example", exportAs: ["cdkMenuInlineExample"], ngImport: i0, template: "
    \n \n \n \n \n \n \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuInlineExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuInlineExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-inline-example', exportAs: 'cdkMenuInlineExample', imports: [CdkMenu, CdkMenuItem], template: "
    \n \n \n \n \n \n \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"] }] }] }); /** @title Context menu. */ class CdkMenuContextExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkMenuContextExample, isStandalone: true, selector: "cdk-menu-context-example", exportAs: ["cdkMenuContextExample"], ngImport: i0, template: "
    \n Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\n would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\n wise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\n of the dark side that he could even keep the ones he cared about from dying. The dark side of the\n Force is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the\n only thing he was afraid of was losing his power, which eventually, of course, he did.\n Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his\n sleep. Ironic. He could save others from death, but not himself.\n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkContextMenuTrigger, selector: "[cdkContextMenuTriggerFor]", inputs: ["cdkContextMenuTriggerFor", "cdkContextMenuPosition", "cdkContextMenuTriggerData", "cdkContextMenuDisabled"], outputs: ["cdkContextMenuOpened", "cdkContextMenuClosed"], exportAs: ["cdkContextMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkMenuContextExample, isStandalone: true, selector: "cdk-menu-context-example", exportAs: ["cdkMenuContextExample"], ngImport: i0, template: "
    \n Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\n would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\n wise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\n of the dark side that he could even keep the ones he cared about from dying. The dark side of the\n Force is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the\n only thing he was afraid of was losing his power, which eventually, of course, he did.\n Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his\n sleep. Ironic. He could save others from death, but not himself.\n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkContextMenuTrigger, selector: "[cdkContextMenuTriggerFor]", inputs: ["cdkContextMenuTriggerFor", "cdkContextMenuPosition", "cdkContextMenuTriggerData", "cdkContextMenuDisabled"], outputs: ["cdkContextMenuOpened", "cdkContextMenuClosed"], exportAs: ["cdkContextMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuContextExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuContextExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-context-example', exportAs: 'cdkMenuContextExample', imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem], template: "
    \n Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\n would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\n wise he could use the Force to influence the midichlorians to create life\u2026 He had such a knowledge\n of the dark side that he could even keep the ones he cared about from dying. The dark side of the\n Force is a pathway to many abilities some consider to be unnatural. He became so powerful\u2026 the\n only thing he was afraid of was losing his power, which eventually, of course, he did.\n Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his\n sleep. Ironic. He could save others from death, but not himself.\n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"] }] }] }); /** @title Nested context menus. */ class CdkMenuNestedContextExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuNestedContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkMenuNestedContextExample, isStandalone: true, selector: "cdk-menu-nested-context-example", exportAs: ["cdkMenuNestedContextExample"], ngImport: i0, template: "\n
    \n Outer context menu\n
    Inner context menu
    \n
    \n\n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-context-area {\n display: inline-grid;\n border: 2px dashed black;\n}\n\n.example-context-area .example-context-area {\n margin: 100px;\n width: 200px;\n height: 100px;\n}\n\n.example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkContextMenuTrigger, selector: "[cdkContextMenuTriggerFor]", inputs: ["cdkContextMenuTriggerFor", "cdkContextMenuPosition", "cdkContextMenuTriggerData", "cdkContextMenuDisabled"], outputs: ["cdkContextMenuOpened", "cdkContextMenuClosed"], exportAs: ["cdkContextMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuNestedContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkMenuNestedContextExample, isStandalone: true, selector: "cdk-menu-nested-context-example", exportAs: ["cdkMenuNestedContextExample"], ngImport: i0, template: "\n
    \n Outer context menu\n
    Inner context menu
    \n
    \n\n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-context-area {\n display: inline-grid;\n border: 2px dashed black;\n}\n\n.example-context-area .example-context-area {\n margin: 100px;\n width: 200px;\n height: 100px;\n}\n\n.example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"], dependencies: [{ kind: "directive", type: CdkContextMenuTrigger, selector: "[cdkContextMenuTriggerFor]", inputs: ["cdkContextMenuTriggerFor", "cdkContextMenuPosition", "cdkContextMenuTriggerData", "cdkContextMenuDisabled"], outputs: ["cdkContextMenuOpened", "cdkContextMenuClosed"], exportAs: ["cdkContextMenuTriggerFor"] }, { kind: "directive", type: CdkMenu, selector: "[cdkMenu]", outputs: ["closed"], exportAs: ["cdkMenu"] }, { kind: "directive", type: CdkMenuItem, selector: "[cdkMenuItem]", inputs: ["cdkMenuItemDisabled", "cdkMenuitemTypeaheadLabel"], outputs: ["cdkMenuItemTriggered"], exportAs: ["cdkMenuItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkMenuNestedContextExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkMenuNestedContextExample, decorators: [{ type: Component, args: [{ selector: 'cdk-menu-nested-context-example', exportAs: 'cdkMenuNestedContextExample', imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem], template: "\n
    \n Outer context menu\n
    Inner context menu
    \n
    \n\n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n", styles: [".example-context-area {\n display: inline-grid;\n border: 2px dashed black;\n}\n\n.example-context-area .example-context-area {\n margin: 100px;\n width: 200px;\n height: 100px;\n}\n\n.example-menu {\n display: inline-flex;\n flex-direction: column;\n min-width: 180px;\n max-width: 280px;\n background-color: rgb(255, 255, 255);\n padding: 6px 0;\n}\n\n.example-menu-item {\n background-color: transparent;\n cursor: pointer;\n border: none;\n\n user-select: none;\n min-width: 64px;\n line-height: 36px;\n padding: 0 16px;\n\n display: flex;\n align-items: center;\n flex-direction: row;\n flex: 1;\n}\n\n.example-menu-item:hover {\n background-color: rgb(208, 208, 208);\n}\n\n.example-menu-item:active {\n background-color: rgb(170, 170, 170);\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkMenuContextExample, CdkMenuInlineExample, CdkMenuMenubarExample, CdkMenuNestedContextExample, CdkMenuStandaloneMenuExample, CdkMenuStandaloneStatefulMenuExample }; //# sourceMappingURL=menu.mjs.map diff --git a/fesm2022/cdk/menu.mjs.map b/fesm2022/cdk/menu.mjs.map index d6e79b37f8..2f6f8bd84e 100755 --- a/fesm2022/cdk/menu.mjs.map +++ b/fesm2022/cdk/menu.mjs.map @@ -1 +1 @@ -{"version":3,"file":"menu.mjs","sources":["../../../../../../../src/components-examples/cdk/menu/cdk-menu-standalone-menu/cdk-menu-standalone-menu-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-standalone-menu/cdk-menu-standalone-menu-example.html","../../../../../../../src/components-examples/cdk/menu/cdk-menu-standalone-stateful-menu/cdk-menu-standalone-stateful-menu-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-standalone-stateful-menu/cdk-menu-standalone-stateful-menu-example.html","../../../../../../../src/components-examples/cdk/menu/cdk-menu-menubar/cdk-menu-menubar-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-menubar/cdk-menu-menubar-example.html","../../../../../../../src/components-examples/cdk/menu/cdk-menu-inline/cdk-menu-inline-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-inline/cdk-menu-inline-example.html","../../../../../../../src/components-examples/cdk/menu/cdk-menu-context/cdk-menu-context-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-context/cdk-menu-context-example.html","../../../../../../../src/components-examples/cdk/menu/cdk-menu-nested-context/cdk-menu-nested-context-example.ts","../../../../../../../src/components-examples/cdk/menu/cdk-menu-nested-context/cdk-menu-nested-context-example.html","../../../../../../../src/components-examples/cdk/menu/menu_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem, CdkMenuTrigger} from '@angular/cdk/menu';\n\n/** @title Menu with Standalone Trigger. */\n@Component({\n selector: 'cdk-menu-standalone-menu-example',\n styleUrl: 'cdk-menu-standalone-menu-example.css',\n templateUrl: 'cdk-menu-standalone-menu-example.html',\n imports: [CdkMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuStandaloneMenuExample {}\n","\n\n\n\n\n
    \n \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {\n CdkMenu,\n CdkMenuItem,\n CdkMenuItemRadio,\n CdkMenuGroup,\n CdkMenuItemCheckbox,\n CdkMenuTrigger,\n} from '@angular/cdk/menu';\n\n/** @title Stateful Menu with Standalone Trigger. */\n@Component({\n selector: 'cdk-menu-standalone-stateful-menu-example',\n styleUrl: 'cdk-menu-standalone-stateful-menu-example.css',\n templateUrl: 'cdk-menu-standalone-stateful-menu-example.html',\n imports: [\n CdkMenuTrigger,\n CdkMenu,\n CdkMenuItemCheckbox,\n CdkMenuGroup,\n CdkMenuItemRadio,\n CdkMenuItem,\n ],\n})\nexport class CdkMenuStandaloneStatefulMenuExample {\n bold = false;\n italic = false;\n\n sizes = ['Small', 'Normal', 'Large'];\n selectedSize: string | undefined = 'Normal';\n\n reset() {\n this.bold = false;\n this.italic = false;\n this.selectedSize = 'Normal';\n }\n}\n","\n\n\n
    \n \n \n Bold\n \n \n \n Italic\n \n
    \n
    \n \n @for (size of sizes; track size) {\n \n {{size}}\n \n }\n \n
    \n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {\n CdkMenuItemRadio,\n CdkMenuItemCheckbox,\n CdkMenuGroup,\n CdkMenu,\n CdkMenuTrigger,\n CdkMenuItem,\n CdkMenuBar,\n} from '@angular/cdk/menu';\n\n/** @title Google Docs Menu Bar. */\n@Component({\n selector: 'cdk-menu-menubar-example',\n exportAs: 'cdkMenuMenubarExample',\n styleUrl: 'cdk-menu-menubar-example.css',\n templateUrl: 'cdk-menu-menubar-example.html',\n imports: [\n CdkMenuBar,\n CdkMenuItem,\n CdkMenuTrigger,\n CdkMenu,\n CdkMenuGroup,\n CdkMenuItemCheckbox,\n CdkMenuItemRadio,\n ],\n})\nexport class CdkMenuMenubarExample {}\n","
    \n \n \n \n \n \n
    \n\n\n
    \n \n
    \n \n \n \n
    \n \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem} from '@angular/cdk/menu';\n\n/** @title Gmail inline menu. */\n@Component({\n selector: 'cdk-menu-inline-example',\n exportAs: 'cdkMenuInlineExample',\n styleUrl: 'cdk-menu-inline-example.css',\n templateUrl: 'cdk-menu-inline-example.html',\n imports: [CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuInlineExample {}\n","
    \n \n \n \n \n \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkContextMenuTrigger, CdkMenuItem, CdkMenu} from '@angular/cdk/menu';\n\n/** @title Context menu. */\n@Component({\n selector: 'cdk-menu-context-example',\n exportAs: 'cdkMenuContextExample',\n styleUrl: 'cdk-menu-context-example.css',\n templateUrl: 'cdk-menu-context-example.html',\n imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuContextExample {}\n","
    \n Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\n would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\n wise he could use the Force to influence the midichlorians to create life… He had such a knowledge\n of the dark side that he could even keep the ones he cared about from dying. The dark side of the\n Force is a pathway to many abilities some consider to be unnatural. He became so powerful… the\n only thing he was afraid of was losing his power, which eventually, of course, he did.\n Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his\n sleep. Ironic. He could save others from death, but not himself.\n
    \n\n\n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem, CdkContextMenuTrigger} from '@angular/cdk/menu';\n\n/** @title Nested context menus. */\n@Component({\n selector: 'cdk-menu-nested-context-example',\n exportAs: 'cdkMenuNestedContextExample',\n styleUrl: 'cdk-menu-nested-context-example.css',\n templateUrl: 'cdk-menu-nested-context-example.html',\n imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuNestedContextExample {}\n","\n
    \n Outer context menu\n
    Inner context menu
    \n
    \n\n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"menu.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-standalone-menu/cdk-menu-standalone-menu-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-standalone-menu/cdk-menu-standalone-menu-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-standalone-stateful-menu/cdk-menu-standalone-stateful-menu-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-standalone-stateful-menu/cdk-menu-standalone-stateful-menu-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-menubar/cdk-menu-menubar-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-menubar/cdk-menu-menubar-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-inline/cdk-menu-inline-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-inline/cdk-menu-inline-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-context/cdk-menu-context-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-context/cdk-menu-context-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-nested-context/cdk-menu-nested-context-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/menu/cdk-menu-nested-context/cdk-menu-nested-context-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem, CdkMenuTrigger} from '@angular/cdk/menu';\n\n/** @title Menu with Standalone Trigger. */\n@Component({\n selector: 'cdk-menu-standalone-menu-example',\n styleUrl: 'cdk-menu-standalone-menu-example.css',\n templateUrl: 'cdk-menu-standalone-menu-example.html',\n imports: [CdkMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuStandaloneMenuExample {}\n","\n\n\n\n\n
    \n \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {\n CdkMenu,\n CdkMenuItem,\n CdkMenuItemRadio,\n CdkMenuGroup,\n CdkMenuItemCheckbox,\n CdkMenuTrigger,\n} from '@angular/cdk/menu';\n\n/** @title Stateful Menu with Standalone Trigger. */\n@Component({\n selector: 'cdk-menu-standalone-stateful-menu-example',\n styleUrl: 'cdk-menu-standalone-stateful-menu-example.css',\n templateUrl: 'cdk-menu-standalone-stateful-menu-example.html',\n imports: [\n CdkMenuTrigger,\n CdkMenu,\n CdkMenuItemCheckbox,\n CdkMenuGroup,\n CdkMenuItemRadio,\n CdkMenuItem,\n ],\n})\nexport class CdkMenuStandaloneStatefulMenuExample {\n bold = false;\n italic = false;\n\n sizes = ['Small', 'Normal', 'Large'];\n selectedSize: string | undefined = 'Normal';\n\n reset() {\n this.bold = false;\n this.italic = false;\n this.selectedSize = 'Normal';\n }\n}\n","\n\n\n
    \n \n \n Bold\n \n \n \n Italic\n \n
    \n
    \n \n @for (size of sizes; track size) {\n \n {{size}}\n \n }\n \n
    \n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {\n CdkMenuItemRadio,\n CdkMenuItemCheckbox,\n CdkMenuGroup,\n CdkMenu,\n CdkMenuTrigger,\n CdkMenuItem,\n CdkMenuBar,\n} from '@angular/cdk/menu';\n\n/** @title Google Docs Menu Bar. */\n@Component({\n selector: 'cdk-menu-menubar-example',\n exportAs: 'cdkMenuMenubarExample',\n styleUrl: 'cdk-menu-menubar-example.css',\n templateUrl: 'cdk-menu-menubar-example.html',\n imports: [\n CdkMenuBar,\n CdkMenuItem,\n CdkMenuTrigger,\n CdkMenu,\n CdkMenuGroup,\n CdkMenuItemCheckbox,\n CdkMenuItemRadio,\n ],\n})\nexport class CdkMenuMenubarExample {}\n","
    \n \n \n \n \n \n
    \n\n\n
    \n \n
    \n \n \n \n
    \n \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n
    \n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n\n\n
    \n \n \n
    \n \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem} from '@angular/cdk/menu';\n\n/** @title Gmail inline menu. */\n@Component({\n selector: 'cdk-menu-inline-example',\n exportAs: 'cdkMenuInlineExample',\n styleUrl: 'cdk-menu-inline-example.css',\n templateUrl: 'cdk-menu-inline-example.html',\n imports: [CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuInlineExample {}\n","
    \n \n \n \n \n \n \n
    \n","import {Component} from '@angular/core';\nimport {CdkContextMenuTrigger, CdkMenuItem, CdkMenu} from '@angular/cdk/menu';\n\n/** @title Context menu. */\n@Component({\n selector: 'cdk-menu-context-example',\n exportAs: 'cdkMenuContextExample',\n styleUrl: 'cdk-menu-context-example.css',\n templateUrl: 'cdk-menu-context-example.html',\n imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuContextExample {}\n","
    \n Did you ever hear the tragedy of Darth Plagueis The Wise? I thought not. It's not a story the Jedi\n would tell you. It's a Sith legend. Darth Plagueis was a Dark Lord of the Sith, so powerful and so\n wise he could use the Force to influence the midichlorians to create life… He had such a knowledge\n of the dark side that he could even keep the ones he cared about from dying. The dark side of the\n Force is a pathway to many abilities some consider to be unnatural. He became so powerful… the\n only thing he was afraid of was losing his power, which eventually, of course, he did.\n Unfortunately, he taught his apprentice everything he knew, then his apprentice killed him in his\n sleep. Ironic. He could save others from death, but not himself.\n
    \n\n\n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {CdkMenu, CdkMenuItem, CdkContextMenuTrigger} from '@angular/cdk/menu';\n\n/** @title Nested context menus. */\n@Component({\n selector: 'cdk-menu-nested-context-example',\n exportAs: 'cdkMenuNestedContextExample',\n styleUrl: 'cdk-menu-nested-context-example.css',\n templateUrl: 'cdk-menu-nested-context-example.html',\n imports: [CdkContextMenuTrigger, CdkMenu, CdkMenuItem],\n})\nexport class CdkMenuNestedContextExample {}\n","\n
    \n Outer context menu\n
    Inner context menu
    \n
    \n\n\n\n
    \n \n \n
    \n
    \n\n\n
    \n \n \n \n
    \n
    \n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/overlay.mjs b/fesm2022/cdk/overlay.mjs index 4adbefa855..b533990788 100755 --- a/fesm2022/cdk/overlay.mjs +++ b/fesm2022/cdk/overlay.mjs @@ -8,17 +8,13 @@ import { OverlayModule } from '@angular/cdk/overlay'; */ class CdkOverlayBasicExample { isOpen = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkOverlayBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkOverlayBasicExample, isStandalone: true, selector: "cdk-overlay-basic-example", ngImport: i0, template: "\n\n\n\n\n
      \n
    • Item 1
    • \n
    • Item 2
    • \n
    • Item 3
    • \n
    \n\n", styles: [".example-list {\n width: 100px;\n border: solid 1px #ccc;\n border-radius: 5px;\n background: #fff;\n text-align: center;\n padding: 10px;\n margin: 0;\n}\n\n.example-list > li {\n list-style-type: none;\n border-bottom: solid 1px #8b8b8b;\n padding: 8px 0;\n}\n\n.example-list > li:last-child {\n border-bottom: none;\n}\n"], dependencies: [{ kind: "ngmodule", type: OverlayModule }, { kind: "directive", type: i1.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush", "cdkConnectedOverlayDisposeOnNavigation"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "directive", type: i1.CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkOverlayBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkOverlayBasicExample, isStandalone: true, selector: "cdk-overlay-basic-example", ngImport: i0, template: "\n\n\n\n\n
      \n
    • Item 1
    • \n
    • Item 2
    • \n
    • Item 3
    • \n
    \n\n", styles: [".example-list {\n width: 100px;\n border: solid 1px #ccc;\n border-radius: 5px;\n background: #fff;\n text-align: center;\n padding: 10px;\n margin: 0;\n}\n\n.example-list > li {\n list-style-type: none;\n border-bottom: solid 1px #8b8b8b;\n padding: 8px 0;\n}\n\n.example-list > li:last-child {\n border-bottom: none;\n}\n"], dependencies: [{ kind: "ngmodule", type: OverlayModule }, { kind: "directive", type: i1.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush", "cdkConnectedOverlayDisposeOnNavigation"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "directive", type: i1.CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkOverlayBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkOverlayBasicExample, decorators: [{ type: Component, args: [{ selector: 'cdk-overlay-basic-example', imports: [OverlayModule], template: "\n\n\n\n\n
      \n
    • Item 1
    • \n
    • Item 2
    • \n
    • Item 3
    • \n
    \n\n", styles: [".example-list {\n width: 100px;\n border: solid 1px #ccc;\n border-radius: 5px;\n background: #fff;\n text-align: center;\n padding: 10px;\n margin: 0;\n}\n\n.example-list > li {\n list-style-type: none;\n border-bottom: solid 1px #8b8b8b;\n padding: 8px 0;\n}\n\n.example-list > li:last-child {\n border-bottom: none;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkOverlayBasicExample }; //# sourceMappingURL=overlay.mjs.map diff --git a/fesm2022/cdk/overlay.mjs.map b/fesm2022/cdk/overlay.mjs.map index 6226e7e7be..4bccad67c9 100755 --- a/fesm2022/cdk/overlay.mjs.map +++ b/fesm2022/cdk/overlay.mjs.map @@ -1 +1 @@ -{"version":3,"file":"overlay.mjs","sources":["../../../../../../../src/components-examples/cdk/overlay/cdk-overlay-basic/cdk-overlay-basic-example.ts","../../../../../../../src/components-examples/cdk/overlay/cdk-overlay-basic/cdk-overlay-basic-example.html","../../../../../../../src/components-examples/cdk/overlay/overlay_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {OverlayModule} from '@angular/cdk/overlay';\n\n/**\n * @title Overlay basic example\n */\n@Component({\n selector: 'cdk-overlay-basic-example',\n templateUrl: './cdk-overlay-basic-example.html',\n styleUrl: './cdk-overlay-basic-example.css',\n imports: [OverlayModule],\n})\nexport class CdkOverlayBasicExample {\n isOpen = false;\n}\n","\n\n\n\n\n
      \n
    • Item 1
    • \n
    • Item 2
    • \n
    • Item 3
    • \n
    \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AAGA;;AAEG;MAOU,sBAAsB,CAAA;IACjC,MAAM,GAAG,KAAK,CAAC;uGADJ,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZnC,6jBAkBA,EAAA,MAAA,EAAA,CAAA,gVAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDRY,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,qEAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,EAAA,8BAAA,EAAA,qCAAA,EAAA,4BAAA,EAAA,4BAAA,EAAA,0BAAA,EAAA,2BAAA,EAAA,6BAAA,EAAA,8BAAA,EAAA,kCAAA,EAAA,+BAAA,EAAA,mCAAA,EAAA,mCAAA,EAAA,yBAAA,EAAA,iCAAA,EAAA,sCAAA,EAAA,gCAAA,EAAA,iCAAA,EAAA,uCAAA,EAAA,kCAAA,EAAA,yBAAA,EAAA,wCAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,EAAA,gBAAA,EAAA,QAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,4DAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEZ,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,2BAA2B,EAAA,OAAA,EAG5B,CAAC,aAAa,CAAC,EAAA,QAAA,EAAA,6jBAAA,EAAA,MAAA,EAAA,CAAA,gVAAA,CAAA,EAAA,CAAA;;;AEV1B;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"overlay.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/overlay/cdk-overlay-basic/cdk-overlay-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/overlay/cdk-overlay-basic/cdk-overlay-basic-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {OverlayModule} from '@angular/cdk/overlay';\n\n/**\n * @title Overlay basic example\n */\n@Component({\n selector: 'cdk-overlay-basic-example',\n templateUrl: './cdk-overlay-basic-example.html',\n styleUrl: './cdk-overlay-basic-example.css',\n imports: [OverlayModule],\n})\nexport class CdkOverlayBasicExample {\n isOpen = false;\n}\n","\n\n\n\n\n
      \n
    • Item 1
    • \n
    • Item 2
    • \n
    • Item 3
    • \n
    \n\n"],"names":[],"mappings":";;;;;AAGA;;AAEG;MAOU,sBAAsB,CAAA;IACjC,MAAM,GAAG,KAAK;4GADH,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZnC,6jBAkBA,EAAA,MAAA,EAAA,CAAA,gVAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDRY,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,qEAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,EAAA,8BAAA,EAAA,qCAAA,EAAA,4BAAA,EAAA,4BAAA,EAAA,0BAAA,EAAA,2BAAA,EAAA,6BAAA,EAAA,8BAAA,EAAA,kCAAA,EAAA,+BAAA,EAAA,mCAAA,EAAA,mCAAA,EAAA,yBAAA,EAAA,iCAAA,EAAA,sCAAA,EAAA,gCAAA,EAAA,iCAAA,EAAA,uCAAA,EAAA,kCAAA,EAAA,yBAAA,EAAA,wCAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,EAAA,gBAAA,EAAA,QAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,4DAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEZ,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,2BAA2B,EAAA,OAAA,EAG5B,CAAC,aAAa,CAAC,EAAA,QAAA,EAAA,6jBAAA,EAAA,MAAA,EAAA,CAAA,gVAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/platform.mjs b/fesm2022/cdk/platform.mjs index ec5a5182d5..2c5ff78e7b 100755 --- a/fesm2022/cdk/platform.mjs +++ b/fesm2022/cdk/platform.mjs @@ -10,17 +10,13 @@ class CdkPlatformOverviewExample { supportedInputTypes = Array.from(getSupportedInputTypes()).join(', '); supportsPassiveEventListeners = supportsPassiveEventListeners(); supportsScrollBehavior = supportsScrollBehavior(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkPlatformOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkPlatformOverviewExample, isStandalone: true, selector: "cdk-platform-overview-example", ngImport: i0, template: "

    Platform information:

    \n

    Is Android: {{platform.ANDROID}}

    \n

    Is iOS: {{platform.IOS}}

    \n

    Is Firefox: {{platform.FIREFOX}}

    \n

    Is Blink: {{platform.BLINK}}

    \n

    Is Webkit: {{platform.WEBKIT}}

    \n

    Is Trident: {{platform.TRIDENT}}

    \n

    Is Edge: {{platform.EDGE}}

    \n

    Is Safari: {{platform.SAFARI}}

    \n

    Supported input types: {{supportedInputTypes}}

    \n

    Supports passive event listeners: {{supportsPassiveEventListeners}}

    \n

    Supports scroll behavior: {{supportsScrollBehavior}}

    \n" }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkPlatformOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkPlatformOverviewExample, isStandalone: true, selector: "cdk-platform-overview-example", ngImport: i0, template: "

    Platform information:

    \n

    Is Android: {{platform.ANDROID}}

    \n

    Is iOS: {{platform.IOS}}

    \n

    Is Firefox: {{platform.FIREFOX}}

    \n

    Is Blink: {{platform.BLINK}}

    \n

    Is Webkit: {{platform.WEBKIT}}

    \n

    Is Trident: {{platform.TRIDENT}}

    \n

    Is Edge: {{platform.EDGE}}

    \n

    Is Safari: {{platform.SAFARI}}

    \n

    Supported input types: {{supportedInputTypes}}

    \n

    Supports passive event listeners: {{supportsPassiveEventListeners}}

    \n

    Supports scroll behavior: {{supportsScrollBehavior}}

    \n" }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkPlatformOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkPlatformOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-platform-overview-example', template: "

    Platform information:

    \n

    Is Android: {{platform.ANDROID}}

    \n

    Is iOS: {{platform.IOS}}

    \n

    Is Firefox: {{platform.FIREFOX}}

    \n

    Is Blink: {{platform.BLINK}}

    \n

    Is Webkit: {{platform.WEBKIT}}

    \n

    Is Trident: {{platform.TRIDENT}}

    \n

    Is Edge: {{platform.EDGE}}

    \n

    Is Safari: {{platform.SAFARI}}

    \n

    Supported input types: {{supportedInputTypes}}

    \n

    Supports passive event listeners: {{supportsPassiveEventListeners}}

    \n

    Supports scroll behavior: {{supportsScrollBehavior}}

    \n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkPlatformOverviewExample }; //# sourceMappingURL=platform.mjs.map diff --git a/fesm2022/cdk/platform.mjs.map b/fesm2022/cdk/platform.mjs.map index 7ac0c541ae..67884d1cfb 100755 --- a/fesm2022/cdk/platform.mjs.map +++ b/fesm2022/cdk/platform.mjs.map @@ -1 +1 @@ -{"version":3,"file":"platform.mjs","sources":["../../../../../../../src/components-examples/cdk/platform/cdk-platform-overview/cdk-platform-overview-example.ts","../../../../../../../src/components-examples/cdk/platform/cdk-platform-overview/cdk-platform-overview-example.html","../../../../../../../src/components-examples/cdk/platform/platform_public_index.ts"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {\n getSupportedInputTypes,\n Platform,\n supportsPassiveEventListeners,\n supportsScrollBehavior,\n} from '@angular/cdk/platform';\n\n/**\n * @title Platform overview\n */\n@Component({\n selector: 'cdk-platform-overview-example',\n templateUrl: 'cdk-platform-overview-example.html',\n})\nexport class CdkPlatformOverviewExample {\n platform = inject(Platform);\n\n supportedInputTypes = Array.from(getSupportedInputTypes()).join(', ');\n supportsPassiveEventListeners = supportsPassiveEventListeners();\n supportsScrollBehavior = supportsScrollBehavior();\n}\n","

    Platform information:

    \n

    Is Android: {{platform.ANDROID}}

    \n

    Is iOS: {{platform.IOS}}

    \n

    Is Firefox: {{platform.FIREFOX}}

    \n

    Is Blink: {{platform.BLINK}}

    \n

    Is Webkit: {{platform.WEBKIT}}

    \n

    Is Trident: {{platform.TRIDENT}}

    \n

    Is Edge: {{platform.EDGE}}

    \n

    Is Safari: {{platform.SAFARI}}

    \n

    Supported input types: {{supportedInputTypes}}

    \n

    Supports passive event listeners: {{supportsPassiveEventListeners}}

    \n

    Supports scroll behavior: {{supportsScrollBehavior}}

    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;AAQA;;AAEG;MAKU,0BAA0B,CAAA;AACrC,IAAA,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC,CAAC;AAE5B,IAAA,mBAAmB,GAAG,KAAK,CAAC,IAAI,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACtE,6BAA6B,GAAG,6BAA6B,EAAE,CAAC;IAChE,sBAAsB,GAAG,sBAAsB,EAAE,CAAC;uGALvC,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,0BAA0B,yFCfvC,ohBAYA,EAAA,CAAA,CAAA;;2FDGa,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBAJtC,SAAS;+BACE,+BAA+B,EAAA,QAAA,EAAA,ohBAAA,EAAA,CAAA;;;AEZ3C;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"platform.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/platform/cdk-platform-overview/cdk-platform-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/platform/cdk-platform-overview/cdk-platform-overview-example.html"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {\n getSupportedInputTypes,\n Platform,\n supportsPassiveEventListeners,\n supportsScrollBehavior,\n} from '@angular/cdk/platform';\n\n/**\n * @title Platform overview\n */\n@Component({\n selector: 'cdk-platform-overview-example',\n templateUrl: 'cdk-platform-overview-example.html',\n})\nexport class CdkPlatformOverviewExample {\n platform = inject(Platform);\n\n supportedInputTypes = Array.from(getSupportedInputTypes()).join(', ');\n supportsPassiveEventListeners = supportsPassiveEventListeners();\n supportsScrollBehavior = supportsScrollBehavior();\n}\n","

    Platform information:

    \n

    Is Android: {{platform.ANDROID}}

    \n

    Is iOS: {{platform.IOS}}

    \n

    Is Firefox: {{platform.FIREFOX}}

    \n

    Is Blink: {{platform.BLINK}}

    \n

    Is Webkit: {{platform.WEBKIT}}

    \n

    Is Trident: {{platform.TRIDENT}}

    \n

    Is Edge: {{platform.EDGE}}

    \n

    Is Safari: {{platform.SAFARI}}

    \n

    Supported input types: {{supportedInputTypes}}

    \n

    Supports passive event listeners: {{supportsPassiveEventListeners}}

    \n

    Supports scroll behavior: {{supportsScrollBehavior}}

    \n"],"names":[],"mappings":";;;;AAQA;;AAEG;MAKU,0BAA0B,CAAA;AACrC,IAAA,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;AAE3B,IAAA,mBAAmB,GAAG,KAAK,CAAC,IAAI,CAAC,sBAAsB,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;IACrE,6BAA6B,GAAG,6BAA6B,EAAE;IAC/D,sBAAsB,GAAG,sBAAsB,EAAE;4GALtC,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,0BAA0B,yFCfvC,ohBAYA,EAAA,CAAA;;gGDGa,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBAJtC,SAAS;+BACE,+BAA+B,EAAA,QAAA,EAAA,ohBAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/portal.mjs b/fesm2022/cdk/portal.mjs index ec21dff377..a729a7a368 100755 --- a/fesm2022/cdk/portal.mjs +++ b/fesm2022/cdk/portal.mjs @@ -19,10 +19,10 @@ class CdkPortalOverviewExample { this.templatePortal = new TemplatePortal(this.templatePortalContent, this._viewContainerRef); this.domPortal = new DomPortal(this.domPortalContent); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkPortalOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkPortalOverviewExample, isStandalone: true, selector: "cdk-portal-overview-example", viewQueries: [{ propertyName: "templatePortalContent", first: true, predicate: ["templatePortalContent"], descendants: true }, { propertyName: "domPortalContent", first: true, predicate: ["domPortalContent"], descendants: true }], ngImport: i0, template: "

    The portal outlet is below:

    \n
    \n \n
    \nHello, this is a template portal\n\n\n\n\n\n
    Hello, this is a DOM portal
    \n", styles: [".example-portal-outlet {\n margin-bottom: 10px;\n padding: 10px;\n border: 1px dashed black;\n width: 250px;\n height: 250px;\n}\n"], dependencies: [{ kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i1.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkPortalOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkPortalOverviewExample, isStandalone: true, selector: "cdk-portal-overview-example", viewQueries: [{ propertyName: "templatePortalContent", first: true, predicate: ["templatePortalContent"], descendants: true }, { propertyName: "domPortalContent", first: true, predicate: ["domPortalContent"], descendants: true }], ngImport: i0, template: "

    The portal outlet is below:

    \n
    \n \n
    \nHello, this is a template portal\n\n\n\n\n\n
    Hello, this is a DOM portal
    \n", styles: [".example-portal-outlet {\n margin-bottom: 10px;\n padding: 10px;\n border: 1px dashed black;\n width: 250px;\n height: 250px;\n}\n"], dependencies: [{ kind: "ngmodule", type: PortalModule }, { kind: "directive", type: i1.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkPortalOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkPortalOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-portal-overview-example', imports: [PortalModule], template: "

    The portal outlet is below:

    \n
    \n \n
    \nHello, this is a template portal\n\n\n\n\n\n
    Hello, this is a DOM portal
    \n", styles: [".example-portal-outlet {\n margin-bottom: 10px;\n padding: 10px;\n border: 1px dashed black;\n width: 250px;\n height: 250px;\n}\n"] }] }], propDecorators: { templatePortalContent: [{ @@ -33,10 +33,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor args: ['domPortalContent'] }] } }); class ComponentPortalExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ComponentPortalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ComponentPortalExample, isStandalone: true, selector: "component-portal-example", ngImport: i0, template: 'Hello, this is a component portal', isInline: true }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ComponentPortalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ComponentPortalExample, isStandalone: true, selector: "component-portal-example", ngImport: i0, template: 'Hello, this is a component portal', isInline: true }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ComponentPortalExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ComponentPortalExample, decorators: [{ type: Component, args: [{ selector: 'component-portal-example', @@ -44,9 +44,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkPortalOverviewExample, ComponentPortalExample }; //# sourceMappingURL=portal.mjs.map diff --git a/fesm2022/cdk/portal.mjs.map b/fesm2022/cdk/portal.mjs.map index 4020fb3f52..173c2be509 100755 --- a/fesm2022/cdk/portal.mjs.map +++ b/fesm2022/cdk/portal.mjs.map @@ -1 +1 @@ -{"version":3,"file":"portal.mjs","sources":["../../../../../../../src/components-examples/cdk/portal/cdk-portal-overview/cdk-portal-overview-example.ts","../../../../../../../src/components-examples/cdk/portal/cdk-portal-overview/cdk-portal-overview-example.html","../../../../../../../src/components-examples/cdk/portal/portal_public_index.ts"],"sourcesContent":["import {\n AfterViewInit,\n Component,\n TemplateRef,\n ViewChild,\n ViewContainerRef,\n ElementRef,\n inject,\n} from '@angular/core';\nimport {\n ComponentPortal,\n DomPortal,\n Portal,\n TemplatePortal,\n PortalModule,\n} from '@angular/cdk/portal';\n\n/**\n * @title Portal overview\n */\n@Component({\n selector: 'cdk-portal-overview-example',\n templateUrl: 'cdk-portal-overview-example.html',\n styleUrl: 'cdk-portal-overview-example.css',\n imports: [PortalModule],\n})\nexport class CdkPortalOverviewExample implements AfterViewInit {\n private _viewContainerRef = inject(ViewContainerRef);\n\n @ViewChild('templatePortalContent') templatePortalContent: TemplateRef;\n @ViewChild('domPortalContent') domPortalContent: ElementRef;\n\n selectedPortal: Portal;\n componentPortal: ComponentPortal;\n templatePortal: TemplatePortal;\n domPortal: DomPortal;\n\n ngAfterViewInit() {\n this.componentPortal = new ComponentPortal(ComponentPortalExample);\n this.templatePortal = new TemplatePortal(this.templatePortalContent, this._viewContainerRef);\n this.domPortal = new DomPortal(this.domPortalContent);\n }\n}\n\n@Component({\n selector: 'component-portal-example',\n template: 'Hello, this is a component portal',\n})\nexport class ComponentPortalExample {}\n","

    The portal outlet is below:

    \n
    \n \n
    \nHello, this is a template portal\n\n\n\n\n\n
    Hello, this is a DOM portal
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;AAiBA;;AAEG;MAOU,wBAAwB,CAAA;AAC3B,IAAA,iBAAiB,GAAG,MAAM,CAAC,gBAAgB,CAAC,CAAC;AAEjB,IAAA,qBAAqB,CAAuB;AACjD,IAAA,gBAAgB,CAA0B;AAEzE,IAAA,cAAc,CAAc;AAC5B,IAAA,eAAe,CAA0C;AACzD,IAAA,cAAc,CAAsB;AACpC,IAAA,SAAS,CAAiB;IAE1B,eAAe,GAAA;QACb,IAAI,CAAC,eAAe,GAAG,IAAI,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACnE,QAAA,IAAI,CAAC,cAAc,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC;QAC7F,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;KACvD;uGAfU,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,uBAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,uBAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,kBAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EC1BrC,oiBAWA,EAAA,MAAA,EAAA,CAAA,yIAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDaY,YAAY,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEX,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,6BAA6B,EAAA,OAAA,EAG9B,CAAC,YAAY,CAAC,EAAA,QAAA,EAAA,oiBAAA,EAAA,MAAA,EAAA,CAAA,yIAAA,CAAA,EAAA,CAAA;8BAKa,qBAAqB,EAAA,CAAA;sBAAxD,SAAS;uBAAC,uBAAuB,CAAA;gBACH,gBAAgB,EAAA,CAAA;sBAA9C,SAAS;uBAAC,kBAAkB,CAAA;;MAkBlB,sBAAsB,CAAA;uGAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,oFAFvB,mCAAmC,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;2FAElC,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,0BAA0B;AACpC,oBAAA,QAAQ,EAAE,mCAAmC;AAC9C,iBAAA,CAAA;;;AE/CD;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"portal.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/portal/cdk-portal-overview/cdk-portal-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/portal/cdk-portal-overview/cdk-portal-overview-example.html"],"sourcesContent":["import {\n AfterViewInit,\n Component,\n TemplateRef,\n ViewChild,\n ViewContainerRef,\n ElementRef,\n inject,\n} from '@angular/core';\nimport {\n ComponentPortal,\n DomPortal,\n Portal,\n TemplatePortal,\n PortalModule,\n} from '@angular/cdk/portal';\n\n/**\n * @title Portal overview\n */\n@Component({\n selector: 'cdk-portal-overview-example',\n templateUrl: 'cdk-portal-overview-example.html',\n styleUrl: 'cdk-portal-overview-example.css',\n imports: [PortalModule],\n})\nexport class CdkPortalOverviewExample implements AfterViewInit {\n private _viewContainerRef = inject(ViewContainerRef);\n\n @ViewChild('templatePortalContent') templatePortalContent: TemplateRef;\n @ViewChild('domPortalContent') domPortalContent: ElementRef;\n\n selectedPortal: Portal;\n componentPortal: ComponentPortal;\n templatePortal: TemplatePortal;\n domPortal: DomPortal;\n\n ngAfterViewInit() {\n this.componentPortal = new ComponentPortal(ComponentPortalExample);\n this.templatePortal = new TemplatePortal(this.templatePortalContent, this._viewContainerRef);\n this.domPortal = new DomPortal(this.domPortalContent);\n }\n}\n\n@Component({\n selector: 'component-portal-example',\n template: 'Hello, this is a component portal',\n})\nexport class ComponentPortalExample {}\n","

    The portal outlet is below:

    \n
    \n \n
    \nHello, this is a template portal\n\n\n\n\n\n
    Hello, this is a DOM portal
    \n"],"names":[],"mappings":";;;;;AAiBA;;AAEG;MAOU,wBAAwB,CAAA;AAC3B,IAAA,iBAAiB,GAAG,MAAM,CAAC,gBAAgB,CAAC;AAEhB,IAAA,qBAAqB;AAC1B,IAAA,gBAAgB;AAE/C,IAAA,cAAc;AACd,IAAA,eAAe;AACf,IAAA,cAAc;AACd,IAAA,SAAS;IAET,eAAe,GAAA;QACb,IAAI,CAAC,eAAe,GAAG,IAAI,eAAe,CAAC,sBAAsB,CAAC;AAClE,QAAA,IAAI,CAAC,cAAc,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,qBAAqB,EAAE,IAAI,CAAC,iBAAiB,CAAC;QAC5F,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,gBAAgB,CAAC;;4GAd5C,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,uBAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,uBAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,kBAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EC1BrC,oiBAWA,EAAA,MAAA,EAAA,CAAA,yIAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDaY,YAAY,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEX,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,6BAA6B,EAAA,OAAA,EAG9B,CAAC,YAAY,CAAC,EAAA,QAAA,EAAA,oiBAAA,EAAA,MAAA,EAAA,CAAA,yIAAA,CAAA,EAAA;8BAKa,qBAAqB,EAAA,CAAA;sBAAxD,SAAS;uBAAC,uBAAuB;gBACH,gBAAgB,EAAA,CAAA;sBAA9C,SAAS;uBAAC,kBAAkB;;MAkBlB,sBAAsB,CAAA;4GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,sBAAsB,oFAFvB,mCAAmC,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA;;gGAElC,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,0BAA0B;AACpC,oBAAA,QAAQ,EAAE,mCAAmC;AAC9C,iBAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/scrolling.mjs b/fesm2022/cdk/scrolling.mjs index 170bdbe036..10728c2a7f 100755 --- a/fesm2022/cdk/scrolling.mjs +++ b/fesm2022/cdk/scrolling.mjs @@ -1,17 +1,17 @@ import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy, ViewEncapsulation, input } from '@angular/core'; import * as i1 from '@angular/cdk/scrolling'; -import { ScrollingModule, FixedSizeVirtualScrollStrategy, VIRTUAL_SCROLL_STRATEGY } from '@angular/cdk/scrolling'; +import { ScrollingModule, VIRTUAL_SCROLL_STRATEGY, FixedSizeVirtualScrollStrategy } from '@angular/cdk/scrolling'; import { DataSource } from '@angular/cdk/collections'; import { BehaviorSubject, Subscription } from 'rxjs'; /** @title Virtual scroll with view recycling disabled. */ class CdkVirtualScrollAppendOnlyExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollAppendOnlyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollAppendOnlyExample, isStandalone: true, selector: "cdk-virtual-scroll-append-only-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollAppendOnlyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollAppendOnlyExample, isStandalone: true, selector: "cdk-virtual-scroll-append-only-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollAppendOnlyExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollAppendOnlyExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-append-only-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -19,10 +19,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Virtual scroll context variables */ class CdkVirtualScrollContextExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollContextExample, isStandalone: true, selector: "cdk-virtual-scroll-context-example", ngImport: i0, template: "\n
    \n
    Item: {{item}}
    \n
    Index: {{index}}
    \n
    Count: {{count}}
    \n
    First: {{first ? 'Yes' : 'No'}}
    \n
    Last: {{last ? 'Yes' : 'No'}}
    \n
    Even: {{even ? 'Yes' : 'No'}}
    \n
    Odd: {{odd ? 'Yes' : 'No'}}
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item-detail {\n height: 18px;\n}\n\n.example-alternate {\n background: rgba(127, 127, 127, 0.3);\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollContextExample, isStandalone: true, selector: "cdk-virtual-scroll-context-example", ngImport: i0, template: "\n
    \n
    Item: {{item}}
    \n
    Index: {{index}}
    \n
    Count: {{count}}
    \n
    First: {{first ? 'Yes' : 'No'}}
    \n
    Last: {{last ? 'Yes' : 'No'}}
    \n
    Even: {{even ? 'Yes' : 'No'}}
    \n
    Odd: {{odd ? 'Yes' : 'No'}}
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item-detail {\n height: 18px;\n}\n\n.example-alternate {\n background: rgba(127, 127, 127, 0.3);\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollContextExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollContextExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-context-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    \n
    Item: {{item}}
    \n
    Index: {{index}}
    \n
    Count: {{count}}
    \n
    First: {{first ? 'Yes' : 'No'}}
    \n
    Last: {{last ? 'Yes' : 'No'}}
    \n
    Even: {{even ? 'Yes' : 'No'}}
    \n
    Odd: {{odd ? 'Yes' : 'No'}}
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item-detail {\n height: 18px;\n}\n\n.example-alternate {\n background: rgba(127, 127, 127, 0.3);\n}\n"] }] }] }); @@ -35,10 +35,10 @@ class CustomVirtualScrollStrategy extends FixedSizeVirtualScrollStrategy { /** @title Virtual scroll with a custom strategy */ class CdkVirtualScrollCustomStrategyExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollCustomStrategyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollCustomStrategyExample, isStandalone: true, selector: "cdk-virtual-scroll-custom-strategy-example", providers: [{ provide: VIRTUAL_SCROLL_STRATEGY, useClass: CustomVirtualScrollStrategy }], ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollCustomStrategyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollCustomStrategyExample, isStandalone: true, selector: "cdk-virtual-scroll-custom-strategy-example", providers: [{ provide: VIRTUAL_SCROLL_STRATEGY, useClass: CustomVirtualScrollStrategy }], ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollCustomStrategyExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollCustomStrategyExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-custom-strategy-example', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: VIRTUAL_SCROLL_STRATEGY, useClass: CustomVirtualScrollStrategy }], imports: [ScrollingModule], template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -46,10 +46,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Virtual scroll with a custom data source */ class CdkVirtualScrollDataSourceExample { ds = new MyDataSource(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollDataSourceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollDataSourceExample, isStandalone: true, selector: "cdk-virtual-scroll-data-source-example", ngImport: i0, template: "\n
    {{item || 'Loading...'}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollDataSourceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollDataSourceExample, isStandalone: true, selector: "cdk-virtual-scroll-data-source-example", ngImport: i0, template: "\n
    {{item || 'Loading...'}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollDataSourceExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollDataSourceExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-data-source-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    {{item || 'Loading...'}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -143,10 +143,10 @@ class CdkVirtualScrollDlExample { { name: 'Wisconsin', capital: 'Madison' }, { name: 'Wyoming', capital: 'Cheyenne' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollDlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollDlExample, isStandalone: true, selector: "cdk-virtual-scroll-dl-example", ngImport: i0, template: "\n
    \n \n
    {{state.name}}
    \n
    {{state.capital}}
    \n
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-dt {\n height: 30px;\n font-weight: bold;\n}\n\n.example-dd {\n height: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollDlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollDlExample, isStandalone: true, selector: "cdk-virtual-scroll-dl-example", ngImport: i0, template: "\n
    \n \n
    {{state.name}}
    \n
    {{state.capital}}
    \n
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-dt {\n height: 30px;\n font-weight: bold;\n}\n\n.example-dd {\n height: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollDlExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollDlExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-dl-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    \n \n
    {{state.name}}
    \n
    {{state.capital}}
    \n
    \n
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-dt {\n height: 30px;\n font-weight: bold;\n}\n\n.example-dd {\n height: 30px;\n}\n"] }] }] }); @@ -154,10 +154,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Fixed size virtual scroll with custom buffer parameters */ class CdkVirtualScrollFixedBufferExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollFixedBufferExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollFixedBufferExample, isStandalone: true, selector: "cdk-virtual-scroll-fixed-buffer-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollFixedBufferExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollFixedBufferExample, isStandalone: true, selector: "cdk-virtual-scroll-fixed-buffer-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollFixedBufferExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollFixedBufferExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-fixed-buffer-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -165,10 +165,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Horizontal virtual scroll */ class CdkVirtualScrollHorizontalExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollHorizontalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollHorizontalExample, isStandalone: true, selector: "cdk-virtual-scroll-horizontal-example", ngImport: i0, template: "
    \n \n
    {{item}}
    \n
    \n
    \n", styles: [".cdk-virtual-scroll-data-source-example .example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.cdk-virtual-scroll-data-source-example .example-viewport .cdk-virtual-scroll-content-wrapper {\n display: flex;\n flex-direction: row;\n}\n\n.cdk-virtual-scroll-data-source-example .example-item {\n width: 50px;\n height: 100%;\n writing-mode: vertical-lr;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollHorizontalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollHorizontalExample, isStandalone: true, selector: "cdk-virtual-scroll-horizontal-example", ngImport: i0, template: "
    \n \n
    {{item}}
    \n
    \n
    \n", styles: [".cdk-virtual-scroll-data-source-example .example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.cdk-virtual-scroll-data-source-example .example-viewport .cdk-virtual-scroll-content-wrapper {\n display: flex;\n flex-direction: row;\n}\n\n.cdk-virtual-scroll-data-source-example .example-item {\n width: 50px;\n height: 100%;\n writing-mode: vertical-lr;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollHorizontalExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollHorizontalExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-horizontal-example', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "
    \n \n
    {{item}}
    \n
    \n
    \n", styles: [".cdk-virtual-scroll-data-source-example .example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.cdk-virtual-scroll-data-source-example .example-viewport .cdk-virtual-scroll-content-wrapper {\n display: flex;\n flex-direction: row;\n}\n\n.cdk-virtual-scroll-data-source-example .example-item {\n width: 50px;\n height: 100%;\n writing-mode: vertical-lr;\n}\n"] }] }] }); @@ -176,10 +176,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Basic virtual scroll */ class CdkVirtualScrollOverviewExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollOverviewExample, isStandalone: true, selector: "cdk-virtual-scroll-overview-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollOverviewExample, isStandalone: true, selector: "cdk-virtual-scroll-overview-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollOverviewExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-overview-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -187,10 +187,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Virtual scrolling viewport parent element */ class CdkVirtualScrollParentScrollingExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollParentScrollingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollParentScrollingExample, isStandalone: true, selector: "cdk-virtual-scroll-parent-scrolling-example", ngImport: i0, template: "
    \n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n
    \n", styles: [".example-viewport {\n flex: 1;\n width: 200px;\n min-height: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "directive", type: i1.CdkVirtualScrollableElement, selector: "[cdkVirtualScrollingElement]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollParentScrollingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollParentScrollingExample, isStandalone: true, selector: "cdk-virtual-scroll-parent-scrolling-example", ngImport: i0, template: "
    \n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n
    \n", styles: [".example-viewport {\n flex: 1;\n width: 200px;\n min-height: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "directive", type: i1.CdkVirtualScrollableElement, selector: "[cdkVirtualScrollingElement]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollParentScrollingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollParentScrollingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-parent-scrolling-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "
    \n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n
    \n", styles: [".example-viewport {\n flex: 1;\n width: 200px;\n min-height: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"] }] }] }); @@ -198,10 +198,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Virtual scroll with no template caching */ class CdkVirtualScrollTemplateCacheExample { items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollTemplateCacheExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkVirtualScrollTemplateCacheExample, isStandalone: true, selector: "cdk-virtual-scroll-template-cache-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollTemplateCacheExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollTemplateCacheExample, isStandalone: true, selector: "cdk-virtual-scroll-template-cache-example", ngImport: i0, template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollTemplateCacheExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollTemplateCacheExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-template-cache-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "\n
    {{item}}
    \n
    \n", styles: [".example-viewport {\n height: 200px;\n width: 200px;\n border: 1px solid black;\n}\n\n.example-item {\n height: 50px;\n}\n"] }] }] }); @@ -210,17 +210,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class CdkVirtualScrollWindowScrollingExample { shouldRun = input(/(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host)); items = Array.from({ length: 100000 }).map((_, i) => `Item #${i}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollWindowScrollingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkVirtualScrollWindowScrollingExample, isStandalone: true, selector: "cdk-virtual-scroll-window-scrolling-example", inputs: { shouldRun: { classPropertyName: "shouldRun", publicName: "shouldRun", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (shouldRun()) {\n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n}\n\n@if (!shouldRun()) {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "directive", type: i1.CdkVirtualScrollableWindow, selector: "cdk-virtual-scroll-viewport[scrollWindow]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollWindowScrollingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkVirtualScrollWindowScrollingExample, isStandalone: true, selector: "cdk-virtual-scroll-window-scrolling-example", inputs: { shouldRun: { classPropertyName: "shouldRun", publicName: "shouldRun", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "@if (shouldRun()) {\n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n}\n\n@if (!shouldRun()) {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"], dependencies: [{ kind: "ngmodule", type: ScrollingModule }, { kind: "directive", type: i1.CdkFixedSizeVirtualScroll, selector: "cdk-virtual-scroll-viewport[itemSize]", inputs: ["itemSize", "minBufferPx", "maxBufferPx"] }, { kind: "directive", type: i1.CdkVirtualForOf, selector: "[cdkVirtualFor][cdkVirtualForOf]", inputs: ["cdkVirtualForOf", "cdkVirtualForTrackBy", "cdkVirtualForTemplate", "cdkVirtualForTemplateCacheSize"] }, { kind: "component", type: i1.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "directive", type: i1.CdkVirtualScrollableWindow, selector: "cdk-virtual-scroll-viewport[scrollWindow]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkVirtualScrollWindowScrollingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkVirtualScrollWindowScrollingExample, decorators: [{ type: Component, args: [{ selector: 'cdk-virtual-scroll-window-scrolling-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ScrollingModule], template: "@if (shouldRun()) {\n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n}\n\n@if (!shouldRun()) {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-item {\n height: 50px;\n}\n\n.example-header,\n.example-footer {\n height: 100px;\n background: lightgray;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkVirtualScrollAppendOnlyExample, CdkVirtualScrollContextExample, CdkVirtualScrollCustomStrategyExample, CdkVirtualScrollDataSourceExample, CdkVirtualScrollDlExample, CdkVirtualScrollFixedBufferExample, CdkVirtualScrollHorizontalExample, CdkVirtualScrollOverviewExample, CdkVirtualScrollParentScrollingExample, CdkVirtualScrollTemplateCacheExample, CdkVirtualScrollWindowScrollingExample }; //# sourceMappingURL=scrolling.mjs.map diff --git a/fesm2022/cdk/scrolling.mjs.map b/fesm2022/cdk/scrolling.mjs.map index ef4073402f..6fb5f71879 100755 --- a/fesm2022/cdk/scrolling.mjs.map +++ b/fesm2022/cdk/scrolling.mjs.map @@ -1 +1 @@ -{"version":3,"file":"scrolling.mjs","sources":["../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-append-only/cdk-virtual-scroll-append-only-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-append-only/cdk-virtual-scroll-append-only-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-context/cdk-virtual-scroll-context-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-context/cdk-virtual-scroll-context-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-custom-strategy/cdk-virtual-scroll-custom-strategy-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-custom-strategy/cdk-virtual-scroll-custom-strategy-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-data-source/cdk-virtual-scroll-data-source-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-data-source/cdk-virtual-scroll-data-source-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-dl/cdk-virtual-scroll-dl-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-dl/cdk-virtual-scroll-dl-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-fixed-buffer/cdk-virtual-scroll-fixed-buffer-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-fixed-buffer/cdk-virtual-scroll-fixed-buffer-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-horizontal/cdk-virtual-scroll-horizontal-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-horizontal/cdk-virtual-scroll-horizontal-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-overview/cdk-virtual-scroll-overview-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-overview/cdk-virtual-scroll-overview-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-parent-scrolling/cdk-virtual-scroll-parent-scrolling-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-parent-scrolling/cdk-virtual-scroll-parent-scrolling-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-template-cache/cdk-virtual-scroll-template-cache-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-template-cache/cdk-virtual-scroll-template-cache-example.html","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-window-scrolling/cdk-virtual-scroll-window-scrolling-example.ts","../../../../../../../src/components-examples/cdk/scrolling/cdk-virtual-scroll-window-scrolling/cdk-virtual-scroll-window-scrolling-example.html","../../../../../../../src/components-examples/cdk/scrolling/scrolling_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with view recycling disabled. */\n@Component({\n selector: 'cdk-virtual-scroll-append-only-example',\n styleUrl: 'cdk-virtual-scroll-append-only-example.css',\n templateUrl: 'cdk-virtual-scroll-append-only-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollAppendOnlyExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll context variables */\n@Component({\n selector: 'cdk-virtual-scroll-context-example',\n styleUrl: 'cdk-virtual-scroll-context-example.css',\n templateUrl: 'cdk-virtual-scroll-context-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollContextExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    \n
    Item: {{item}}
    \n
    Index: {{index}}
    \n
    Count: {{count}}
    \n
    First: {{first ? 'Yes' : 'No'}}
    \n
    Last: {{last ? 'Yes' : 'No'}}
    \n
    Even: {{even ? 'Yes' : 'No'}}
    \n
    Odd: {{odd ? 'Yes' : 'No'}}
    \n
    \n
    \n","import {\n FixedSizeVirtualScrollStrategy,\n ScrollingModule,\n VIRTUAL_SCROLL_STRATEGY,\n} from '@angular/cdk/scrolling';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\n\nexport class CustomVirtualScrollStrategy extends FixedSizeVirtualScrollStrategy {\n constructor() {\n super(50, 250, 500);\n }\n}\n\n/** @title Virtual scroll with a custom strategy */\n@Component({\n selector: 'cdk-virtual-scroll-custom-strategy-example',\n styleUrl: 'cdk-virtual-scroll-custom-strategy-example.css',\n templateUrl: 'cdk-virtual-scroll-custom-strategy-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{provide: VIRTUAL_SCROLL_STRATEGY, useClass: CustomVirtualScrollStrategy}],\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollCustomStrategyExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {CollectionViewer, DataSource} from '@angular/cdk/collections';\nimport {BehaviorSubject, Observable, Subscription} from 'rxjs';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with a custom data source */\n@Component({\n selector: 'cdk-virtual-scroll-data-source-example',\n styleUrl: 'cdk-virtual-scroll-data-source-example.css',\n templateUrl: 'cdk-virtual-scroll-data-source-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollDataSourceExample {\n ds = new MyDataSource();\n}\n\nexport class MyDataSource extends DataSource {\n private _length = 100000;\n private _pageSize = 100;\n private _cachedData = Array.from({length: this._length});\n private _fetchedPages = new Set();\n private readonly _dataStream = new BehaviorSubject<(string | undefined)[]>(this._cachedData);\n private readonly _subscription = new Subscription();\n\n connect(collectionViewer: CollectionViewer): Observable<(string | undefined)[]> {\n this._subscription.add(\n collectionViewer.viewChange.subscribe(range => {\n const startPage = this._getPageForIndex(range.start);\n const endPage = this._getPageForIndex(range.end - 1);\n for (let i = startPage; i <= endPage; i++) {\n this._fetchPage(i);\n }\n }),\n );\n return this._dataStream;\n }\n\n disconnect(): void {\n this._subscription.unsubscribe();\n }\n\n private _getPageForIndex(index: number): number {\n return Math.floor(index / this._pageSize);\n }\n\n private _fetchPage(page: number) {\n if (this._fetchedPages.has(page)) {\n return;\n }\n this._fetchedPages.add(page);\n\n // Use `setTimeout` to simulate fetching data from server.\n setTimeout(\n () => {\n this._cachedData.splice(\n page * this._pageSize,\n this._pageSize,\n ...Array.from({length: this._pageSize}).map(\n (_, i) => `Item #${page * this._pageSize + i}`,\n ),\n );\n this._dataStream.next(this._cachedData);\n },\n Math.random() * 1000 + 200,\n );\n }\n}\n","\n
    {{item || 'Loading...'}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling `
    ` */\n@Component({\n selector: 'cdk-virtual-scroll-dl-example',\n styleUrl: 'cdk-virtual-scroll-dl-example.css',\n templateUrl: 'cdk-virtual-scroll-dl-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollDlExample {\n states = [\n {name: 'Alabama', capital: 'Montgomery'},\n {name: 'Alaska', capital: 'Juneau'},\n {name: 'Arizona', capital: 'Phoenix'},\n {name: 'Arkansas', capital: 'Little Rock'},\n {name: 'California', capital: 'Sacramento'},\n {name: 'Colorado', capital: 'Denver'},\n {name: 'Connecticut', capital: 'Hartford'},\n {name: 'Delaware', capital: 'Dover'},\n {name: 'Florida', capital: 'Tallahassee'},\n {name: 'Georgia', capital: 'Atlanta'},\n {name: 'Hawaii', capital: 'Honolulu'},\n {name: 'Idaho', capital: 'Boise'},\n {name: 'Illinois', capital: 'Springfield'},\n {name: 'Indiana', capital: 'Indianapolis'},\n {name: 'Iowa', capital: 'Des Moines'},\n {name: 'Kansas', capital: 'Topeka'},\n {name: 'Kentucky', capital: 'Frankfort'},\n {name: 'Louisiana', capital: 'Baton Rouge'},\n {name: 'Maine', capital: 'Augusta'},\n {name: 'Maryland', capital: 'Annapolis'},\n {name: 'Massachusetts', capital: 'Boston'},\n {name: 'Michigan', capital: 'Lansing'},\n {name: 'Minnesota', capital: 'St. Paul'},\n {name: 'Mississippi', capital: 'Jackson'},\n {name: 'Missouri', capital: 'Jefferson City'},\n {name: 'Montana', capital: 'Helena'},\n {name: 'Nebraska', capital: 'Lincoln'},\n {name: 'Nevada', capital: 'Carson City'},\n {name: 'New Hampshire', capital: 'Concord'},\n {name: 'New Jersey', capital: 'Trenton'},\n {name: 'New Mexico', capital: 'Santa Fe'},\n {name: 'New York', capital: 'Albany'},\n {name: 'North Carolina', capital: 'Raleigh'},\n {name: 'North Dakota', capital: 'Bismarck'},\n {name: 'Ohio', capital: 'Columbus'},\n {name: 'Oklahoma', capital: 'Oklahoma City'},\n {name: 'Oregon', capital: 'Salem'},\n {name: 'Pennsylvania', capital: 'Harrisburg'},\n {name: 'Rhode Island', capital: 'Providence'},\n {name: 'South Carolina', capital: 'Columbia'},\n {name: 'South Dakota', capital: 'Pierre'},\n {name: 'Tennessee', capital: 'Nashville'},\n {name: 'Texas', capital: 'Austin'},\n {name: 'Utah', capital: 'Salt Lake City'},\n {name: 'Vermont', capital: 'Montpelier'},\n {name: 'Virginia', capital: 'Richmond'},\n {name: 'Washington', capital: 'Olympia'},\n {name: 'West Virginia', capital: 'Charleston'},\n {name: 'Wisconsin', capital: 'Madison'},\n {name: 'Wyoming', capital: 'Cheyenne'},\n ];\n}\n","\n
    \n \n
    {{state.name}}
    \n
    {{state.capital}}
    \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Fixed size virtual scroll with custom buffer parameters */\n@Component({\n selector: 'cdk-virtual-scroll-fixed-buffer-example',\n styleUrl: 'cdk-virtual-scroll-fixed-buffer-example.css',\n templateUrl: 'cdk-virtual-scroll-fixed-buffer-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollFixedBufferExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Horizontal virtual scroll */\n@Component({\n selector: 'cdk-virtual-scroll-horizontal-example',\n styleUrl: 'cdk-virtual-scroll-horizontal-example.css',\n templateUrl: 'cdk-virtual-scroll-horizontal-example.html',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollHorizontalExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","
    \n \n
    {{item}}
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Basic virtual scroll */\n@Component({\n selector: 'cdk-virtual-scroll-overview-example',\n styleUrl: 'cdk-virtual-scroll-overview-example.css',\n templateUrl: 'cdk-virtual-scroll-overview-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollOverviewExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling viewport parent element */\n@Component({\n selector: 'cdk-virtual-scroll-parent-scrolling-example',\n styleUrl: 'cdk-virtual-scroll-parent-scrolling-example.css',\n templateUrl: 'cdk-virtual-scroll-parent-scrolling-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollParentScrollingExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","
    \n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with no template caching */\n@Component({\n selector: 'cdk-virtual-scroll-template-cache-example',\n styleUrl: 'cdk-virtual-scroll-template-cache-example.css',\n templateUrl: 'cdk-virtual-scroll-template-cache-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollTemplateCacheExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component, input} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling window */\n@Component({\n selector: 'cdk-virtual-scroll-window-scrolling-example',\n styleUrl: 'cdk-virtual-scroll-window-scrolling-example.css',\n templateUrl: 'cdk-virtual-scroll-window-scrolling-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollWindowScrollingExample {\n readonly shouldRun = input(/(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host));\n\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","@if (shouldRun()) {\n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n}\n\n@if (!shouldRun()) {\n
    Please open on StackBlitz to see result
    \n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"scrolling.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-append-only/cdk-virtual-scroll-append-only-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-append-only/cdk-virtual-scroll-append-only-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-context/cdk-virtual-scroll-context-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-context/cdk-virtual-scroll-context-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-custom-strategy/cdk-virtual-scroll-custom-strategy-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-custom-strategy/cdk-virtual-scroll-custom-strategy-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-data-source/cdk-virtual-scroll-data-source-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-data-source/cdk-virtual-scroll-data-source-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-dl/cdk-virtual-scroll-dl-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-dl/cdk-virtual-scroll-dl-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-fixed-buffer/cdk-virtual-scroll-fixed-buffer-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-fixed-buffer/cdk-virtual-scroll-fixed-buffer-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-horizontal/cdk-virtual-scroll-horizontal-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-horizontal/cdk-virtual-scroll-horizontal-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-overview/cdk-virtual-scroll-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-overview/cdk-virtual-scroll-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-parent-scrolling/cdk-virtual-scroll-parent-scrolling-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-parent-scrolling/cdk-virtual-scroll-parent-scrolling-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-template-cache/cdk-virtual-scroll-template-cache-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-template-cache/cdk-virtual-scroll-template-cache-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-window-scrolling/cdk-virtual-scroll-window-scrolling-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/scrolling/cdk-virtual-scroll-window-scrolling/cdk-virtual-scroll-window-scrolling-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with view recycling disabled. */\n@Component({\n selector: 'cdk-virtual-scroll-append-only-example',\n styleUrl: 'cdk-virtual-scroll-append-only-example.css',\n templateUrl: 'cdk-virtual-scroll-append-only-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollAppendOnlyExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll context variables */\n@Component({\n selector: 'cdk-virtual-scroll-context-example',\n styleUrl: 'cdk-virtual-scroll-context-example.css',\n templateUrl: 'cdk-virtual-scroll-context-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollContextExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    \n
    Item: {{item}}
    \n
    Index: {{index}}
    \n
    Count: {{count}}
    \n
    First: {{first ? 'Yes' : 'No'}}
    \n
    Last: {{last ? 'Yes' : 'No'}}
    \n
    Even: {{even ? 'Yes' : 'No'}}
    \n
    Odd: {{odd ? 'Yes' : 'No'}}
    \n
    \n
    \n","import {\n FixedSizeVirtualScrollStrategy,\n ScrollingModule,\n VIRTUAL_SCROLL_STRATEGY,\n} from '@angular/cdk/scrolling';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\n\nexport class CustomVirtualScrollStrategy extends FixedSizeVirtualScrollStrategy {\n constructor() {\n super(50, 250, 500);\n }\n}\n\n/** @title Virtual scroll with a custom strategy */\n@Component({\n selector: 'cdk-virtual-scroll-custom-strategy-example',\n styleUrl: 'cdk-virtual-scroll-custom-strategy-example.css',\n templateUrl: 'cdk-virtual-scroll-custom-strategy-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [{provide: VIRTUAL_SCROLL_STRATEGY, useClass: CustomVirtualScrollStrategy}],\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollCustomStrategyExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {CollectionViewer, DataSource} from '@angular/cdk/collections';\nimport {BehaviorSubject, Observable, Subscription} from 'rxjs';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with a custom data source */\n@Component({\n selector: 'cdk-virtual-scroll-data-source-example',\n styleUrl: 'cdk-virtual-scroll-data-source-example.css',\n templateUrl: 'cdk-virtual-scroll-data-source-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollDataSourceExample {\n ds = new MyDataSource();\n}\n\nexport class MyDataSource extends DataSource {\n private _length = 100000;\n private _pageSize = 100;\n private _cachedData = Array.from({length: this._length});\n private _fetchedPages = new Set();\n private readonly _dataStream = new BehaviorSubject<(string | undefined)[]>(this._cachedData);\n private readonly _subscription = new Subscription();\n\n connect(collectionViewer: CollectionViewer): Observable<(string | undefined)[]> {\n this._subscription.add(\n collectionViewer.viewChange.subscribe(range => {\n const startPage = this._getPageForIndex(range.start);\n const endPage = this._getPageForIndex(range.end - 1);\n for (let i = startPage; i <= endPage; i++) {\n this._fetchPage(i);\n }\n }),\n );\n return this._dataStream;\n }\n\n disconnect(): void {\n this._subscription.unsubscribe();\n }\n\n private _getPageForIndex(index: number): number {\n return Math.floor(index / this._pageSize);\n }\n\n private _fetchPage(page: number) {\n if (this._fetchedPages.has(page)) {\n return;\n }\n this._fetchedPages.add(page);\n\n // Use `setTimeout` to simulate fetching data from server.\n setTimeout(\n () => {\n this._cachedData.splice(\n page * this._pageSize,\n this._pageSize,\n ...Array.from({length: this._pageSize}).map(\n (_, i) => `Item #${page * this._pageSize + i}`,\n ),\n );\n this._dataStream.next(this._cachedData);\n },\n Math.random() * 1000 + 200,\n );\n }\n}\n","\n
    {{item || 'Loading...'}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling `
    ` */\n@Component({\n selector: 'cdk-virtual-scroll-dl-example',\n styleUrl: 'cdk-virtual-scroll-dl-example.css',\n templateUrl: 'cdk-virtual-scroll-dl-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollDlExample {\n states = [\n {name: 'Alabama', capital: 'Montgomery'},\n {name: 'Alaska', capital: 'Juneau'},\n {name: 'Arizona', capital: 'Phoenix'},\n {name: 'Arkansas', capital: 'Little Rock'},\n {name: 'California', capital: 'Sacramento'},\n {name: 'Colorado', capital: 'Denver'},\n {name: 'Connecticut', capital: 'Hartford'},\n {name: 'Delaware', capital: 'Dover'},\n {name: 'Florida', capital: 'Tallahassee'},\n {name: 'Georgia', capital: 'Atlanta'},\n {name: 'Hawaii', capital: 'Honolulu'},\n {name: 'Idaho', capital: 'Boise'},\n {name: 'Illinois', capital: 'Springfield'},\n {name: 'Indiana', capital: 'Indianapolis'},\n {name: 'Iowa', capital: 'Des Moines'},\n {name: 'Kansas', capital: 'Topeka'},\n {name: 'Kentucky', capital: 'Frankfort'},\n {name: 'Louisiana', capital: 'Baton Rouge'},\n {name: 'Maine', capital: 'Augusta'},\n {name: 'Maryland', capital: 'Annapolis'},\n {name: 'Massachusetts', capital: 'Boston'},\n {name: 'Michigan', capital: 'Lansing'},\n {name: 'Minnesota', capital: 'St. Paul'},\n {name: 'Mississippi', capital: 'Jackson'},\n {name: 'Missouri', capital: 'Jefferson City'},\n {name: 'Montana', capital: 'Helena'},\n {name: 'Nebraska', capital: 'Lincoln'},\n {name: 'Nevada', capital: 'Carson City'},\n {name: 'New Hampshire', capital: 'Concord'},\n {name: 'New Jersey', capital: 'Trenton'},\n {name: 'New Mexico', capital: 'Santa Fe'},\n {name: 'New York', capital: 'Albany'},\n {name: 'North Carolina', capital: 'Raleigh'},\n {name: 'North Dakota', capital: 'Bismarck'},\n {name: 'Ohio', capital: 'Columbus'},\n {name: 'Oklahoma', capital: 'Oklahoma City'},\n {name: 'Oregon', capital: 'Salem'},\n {name: 'Pennsylvania', capital: 'Harrisburg'},\n {name: 'Rhode Island', capital: 'Providence'},\n {name: 'South Carolina', capital: 'Columbia'},\n {name: 'South Dakota', capital: 'Pierre'},\n {name: 'Tennessee', capital: 'Nashville'},\n {name: 'Texas', capital: 'Austin'},\n {name: 'Utah', capital: 'Salt Lake City'},\n {name: 'Vermont', capital: 'Montpelier'},\n {name: 'Virginia', capital: 'Richmond'},\n {name: 'Washington', capital: 'Olympia'},\n {name: 'West Virginia', capital: 'Charleston'},\n {name: 'Wisconsin', capital: 'Madison'},\n {name: 'Wyoming', capital: 'Cheyenne'},\n ];\n}\n","\n
    \n \n
    {{state.name}}
    \n
    {{state.capital}}
    \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Fixed size virtual scroll with custom buffer parameters */\n@Component({\n selector: 'cdk-virtual-scroll-fixed-buffer-example',\n styleUrl: 'cdk-virtual-scroll-fixed-buffer-example.css',\n templateUrl: 'cdk-virtual-scroll-fixed-buffer-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollFixedBufferExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Horizontal virtual scroll */\n@Component({\n selector: 'cdk-virtual-scroll-horizontal-example',\n styleUrl: 'cdk-virtual-scroll-horizontal-example.css',\n templateUrl: 'cdk-virtual-scroll-horizontal-example.html',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollHorizontalExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","
    \n \n
    {{item}}
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Basic virtual scroll */\n@Component({\n selector: 'cdk-virtual-scroll-overview-example',\n styleUrl: 'cdk-virtual-scroll-overview-example.css',\n templateUrl: 'cdk-virtual-scroll-overview-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollOverviewExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling viewport parent element */\n@Component({\n selector: 'cdk-virtual-scroll-parent-scrolling-example',\n styleUrl: 'cdk-virtual-scroll-parent-scrolling-example.css',\n templateUrl: 'cdk-virtual-scroll-parent-scrolling-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollParentScrollingExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","
    \n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scroll with no template caching */\n@Component({\n selector: 'cdk-virtual-scroll-template-cache-example',\n styleUrl: 'cdk-virtual-scroll-template-cache-example.css',\n templateUrl: 'cdk-virtual-scroll-template-cache-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollTemplateCacheExample {\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","\n
    {{item}}
    \n
    \n","import {ChangeDetectionStrategy, Component, input} from '@angular/core';\nimport {ScrollingModule} from '@angular/cdk/scrolling';\n\n/** @title Virtual scrolling window */\n@Component({\n selector: 'cdk-virtual-scroll-window-scrolling-example',\n styleUrl: 'cdk-virtual-scroll-window-scrolling-example.css',\n templateUrl: 'cdk-virtual-scroll-window-scrolling-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [ScrollingModule],\n})\nexport class CdkVirtualScrollWindowScrollingExample {\n readonly shouldRun = input(/(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host));\n\n items = Array.from({length: 100000}).map((_, i) => `Item #${i}`);\n}\n","@if (shouldRun()) {\n
    Content before
    \n \n
    {{item}}
    \n
    \n
    Content after
    \n}\n\n@if (!shouldRun()) {\n
    Please open on StackBlitz to see result
    \n}\n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/stepper.mjs b/fesm2022/cdk/stepper.mjs index 7d2c68230a..a294b442ee 100755 --- a/fesm2022/cdk/stepper.mjs +++ b/fesm2022/cdk/stepper.mjs @@ -3,15 +3,15 @@ import { Component, forwardRef, inject } from '@angular/core'; import * as i1 from '@angular/cdk/stepper'; import { CdkStepperModule, CdkStepper } from '@angular/cdk/stepper'; import { NgTemplateOutlet } from '@angular/common'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormBuilder, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms'; /** @title A custom CDK stepper without a form */ class CdkCustomStepperWithoutFormExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkCustomStepperWithoutFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkCustomStepperWithoutFormExample, isStandalone: true, selector: "cdk-custom-stepper-without-form-example", ngImport: i0, template: "\n

    This is any content of \"Step 1\"

    \n

    This is any content of \"Step 2\"

    \n
    \n", styles: [""], dependencies: [{ kind: "component", type: i0.forwardRef(() => CustomStepper), selector: "example-custom-stepper" }, { kind: "ngmodule", type: i0.forwardRef(() => CdkStepperModule) }, { kind: "component", type: i0.forwardRef(() => i1.CdkStep), selector: "cdk-step", inputs: ["stepControl", "label", "errorMessage", "aria-label", "aria-labelledby", "state", "editable", "optional", "completed", "hasError"], outputs: ["interacted"], exportAs: ["cdkStep"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkCustomStepperWithoutFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkCustomStepperWithoutFormExample, isStandalone: true, selector: "cdk-custom-stepper-without-form-example", ngImport: i0, template: "\n

    This is any content of \"Step 1\"

    \n

    This is any content of \"Step 2\"

    \n
    \n", styles: [""], dependencies: [{ kind: "component", type: i0.forwardRef(() => CustomStepper), selector: "example-custom-stepper" }, { kind: "ngmodule", type: i0.forwardRef(() => CdkStepperModule) }, { kind: "component", type: i0.forwardRef(() => i1.CdkStep), selector: "cdk-step", inputs: ["stepControl", "label", "errorMessage", "aria-label", "aria-labelledby", "state", "editable", "optional", "completed", "hasError"], outputs: ["interacted"], exportAs: ["cdkStep"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkCustomStepperWithoutFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkCustomStepperWithoutFormExample, decorators: [{ type: Component, args: [{ selector: 'cdk-custom-stepper-without-form-example', imports: [forwardRef(() => CustomStepper), CdkStepperModule], template: "\n

    This is any content of \"Step 1\"

    \n

    This is any content of \"Step 2\"

    \n
    \n" }] }] }); @@ -20,10 +20,10 @@ class CustomStepper extends CdkStepper { selectStepByIndex(index) { this.selectedIndex = index; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CustomStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CustomStepper, isStandalone: true, selector: "example-custom-stepper", providers: [{ provide: CdkStepper, useExisting: CustomStepper }], usesInheritance: true, ngImport: i0, template: "
    \n
    \n

    Step {{ selectedIndex + 1 }}/{{ steps.length }}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: CdkStepperModule }, { kind: "directive", type: i1.CdkStepperNext, selector: "button[cdkStepperNext]", inputs: ["type"] }, { kind: "directive", type: i1.CdkStepperPrevious, selector: "button[cdkStepperPrevious]", inputs: ["type"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CustomStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CustomStepper, isStandalone: true, selector: "example-custom-stepper", providers: [{ provide: CdkStepper, useExisting: CustomStepper }], usesInheritance: true, ngImport: i0, template: "
    \n
    \n

    Step {{ selectedIndex + 1 }}/{{ steps.length }}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: CdkStepperModule }, { kind: "directive", type: i1.CdkStepperNext, selector: "button[cdkStepperNext]", inputs: ["type"] }, { kind: "directive", type: i1.CdkStepperPrevious, selector: "button[cdkStepperPrevious]", inputs: ["type"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CustomStepper, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CustomStepper, decorators: [{ type: Component, args: [{ selector: 'example-custom-stepper', providers: [{ provide: CdkStepper, useExisting: CustomStepper }], imports: [NgTemplateOutlet, CdkStepperModule], template: "
    \n
    \n

    Step {{ selectedIndex + 1 }}/{{ steps.length }}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"] }] }] }); @@ -41,10 +41,10 @@ class CdkLinearStepperWithFormExample { toggleLinearity() { this.isLinear = !this.isLinear; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkLinearStepperWithFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkLinearStepperWithFormExample, isStandalone: true, selector: "cdk-linear-stepper-with-form-example", ngImport: i0, template: "\n \n \n
    \n \n
    \n
    \n \n \n
    \n \n
    \n
    \n
    \n\n", styles: [".example-toggle-linear-button {\n margin-left: 10px;\n}\n"], dependencies: [{ kind: "component", type: i0.forwardRef(() => CustomLinearStepper), selector: "example-custom-linear-stepper" }, { kind: "ngmodule", type: i0.forwardRef(() => CdkStepperModule) }, { kind: "component", type: i0.forwardRef(() => i1.CdkStep), selector: "cdk-step", inputs: ["stepControl", "label", "errorMessage", "aria-label", "aria-labelledby", "state", "editable", "optional", "completed", "hasError"], outputs: ["interacted"], exportAs: ["cdkStep"] }, { kind: "ngmodule", type: i0.forwardRef(() => FormsModule) }, { kind: "directive", type: i0.forwardRef(() => i2.ɵNgNoValidate), selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i0.forwardRef(() => i2.DefaultValueAccessor), selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i0.forwardRef(() => i2.NgControlStatus), selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i0.forwardRef(() => i2.NgControlStatusGroup), selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i0.forwardRef(() => i2.RequiredValidator), selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: i0.forwardRef(() => ReactiveFormsModule) }, { kind: "directive", type: i0.forwardRef(() => i2.FormGroupDirective), selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i0.forwardRef(() => i2.FormControlName), selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkLinearStepperWithFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkLinearStepperWithFormExample, isStandalone: true, selector: "cdk-linear-stepper-with-form-example", ngImport: i0, template: "\n \n \n
    \n \n
    \n
    \n \n \n
    \n \n
    \n
    \n
    \n\n", styles: [".example-toggle-linear-button {\n margin-left: 10px;\n}\n"], dependencies: [{ kind: "component", type: i0.forwardRef(() => CustomLinearStepper), selector: "example-custom-linear-stepper" }, { kind: "ngmodule", type: i0.forwardRef(() => CdkStepperModule) }, { kind: "component", type: i0.forwardRef(() => i1.CdkStep), selector: "cdk-step", inputs: ["stepControl", "label", "errorMessage", "aria-label", "aria-labelledby", "state", "editable", "optional", "completed", "hasError"], outputs: ["interacted"], exportAs: ["cdkStep"] }, { kind: "ngmodule", type: i0.forwardRef(() => FormsModule) }, { kind: "directive", type: i0.forwardRef(() => i3.ɵNgNoValidate), selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i0.forwardRef(() => i3.DefaultValueAccessor), selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i0.forwardRef(() => i3.NgControlStatus), selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i0.forwardRef(() => i3.NgControlStatusGroup), selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i0.forwardRef(() => i3.RequiredValidator), selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: i0.forwardRef(() => ReactiveFormsModule) }, { kind: "directive", type: i0.forwardRef(() => i3.FormGroupDirective), selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i0.forwardRef(() => i3.FormControlName), selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkLinearStepperWithFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkLinearStepperWithFormExample, decorators: [{ type: Component, args: [{ selector: 'cdk-linear-stepper-with-form-example', imports: [ forwardRef(() => CustomLinearStepper), @@ -58,17 +58,13 @@ class CustomLinearStepper extends CdkStepper { selectStepByIndex(index) { this.selectedIndex = index; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CustomLinearStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CustomLinearStepper, isStandalone: true, selector: "example-custom-linear-stepper", providers: [{ provide: CdkStepper, useExisting: CustomLinearStepper }], usesInheritance: true, ngImport: i0, template: "
    \n
    \n

    Step {{selectedIndex + 1}}/{{steps.length}}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: CdkStepperModule }, { kind: "directive", type: i1.CdkStepperNext, selector: "button[cdkStepperNext]", inputs: ["type"] }, { kind: "directive", type: i1.CdkStepperPrevious, selector: "button[cdkStepperPrevious]", inputs: ["type"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CustomLinearStepper, deps: null, target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CustomLinearStepper, isStandalone: true, selector: "example-custom-linear-stepper", providers: [{ provide: CdkStepper, useExisting: CustomLinearStepper }], usesInheritance: true, ngImport: i0, template: "
    \n
    \n

    Step {{selectedIndex + 1}}/{{steps.length}}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "ngmodule", type: CdkStepperModule }, { kind: "directive", type: i1.CdkStepperNext, selector: "button[cdkStepperNext]", inputs: ["type"] }, { kind: "directive", type: i1.CdkStepperPrevious, selector: "button[cdkStepperPrevious]", inputs: ["type"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CustomLinearStepper, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CustomLinearStepper, decorators: [{ type: Component, args: [{ selector: 'example-custom-linear-stepper', providers: [{ provide: CdkStepper, useExisting: CustomLinearStepper }], imports: [NgTemplateOutlet, CdkStepperModule], template: "
    \n
    \n

    Step {{selectedIndex + 1}}/{{steps.length}}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n", styles: [".example-container {\n border: 1px solid;\n padding: 10px;\n margin: 10px;\n}\n\n.example-step-navigation-bar {\n display: flex;\n justify-content: flex-start;\n margin-top: 10px;\n}\n\n.example-step {\n background: transparent;\n border: 0;\n margin: 0 10px;\n padding: 10px;\n color: inherit;\n}\n\n.example-step.example-active {\n border-bottom: 1px solid;\n font-weight: 600;\n}\n\n.example-nav-button {\n background: transparent;\n border: 0;\n color: inherit;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CdkCustomStepperWithoutFormExample, CdkLinearStepperWithFormExample, CustomLinearStepper, CustomStepper }; //# sourceMappingURL=stepper.mjs.map diff --git a/fesm2022/cdk/stepper.mjs.map b/fesm2022/cdk/stepper.mjs.map index 35ed2c9308..282de0312a 100755 --- a/fesm2022/cdk/stepper.mjs.map +++ b/fesm2022/cdk/stepper.mjs.map @@ -1 +1 @@ -{"version":3,"file":"stepper.mjs","sources":["../../../../../../../src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/cdk-custom-stepper-without-form-example.ts","../../../../../../../src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/cdk-custom-stepper-without-form-example.html","../../../../../../../src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/example-custom-stepper.html","../../../../../../../src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/cdk-linear-stepper-with-form-example.ts","../../../../../../../src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/cdk-linear-stepper-with-form-example.html","../../../../../../../src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/example-custom-linear-stepper.html","../../../../../../../src/components-examples/cdk/stepper/stepper_public_index.ts"],"sourcesContent":["import {Component, forwardRef} from '@angular/core';\nimport {CdkStepper, CdkStepperModule} from '@angular/cdk/stepper';\nimport {NgTemplateOutlet} from '@angular/common';\n\n/** @title A custom CDK stepper without a form */\n@Component({\n selector: 'cdk-custom-stepper-without-form-example',\n templateUrl: './cdk-custom-stepper-without-form-example.html',\n styleUrl: './cdk-custom-stepper-without-form-example.css',\n imports: [forwardRef(() => CustomStepper), CdkStepperModule],\n})\nexport class CdkCustomStepperWithoutFormExample {}\n\n/** Custom CDK stepper component */\n@Component({\n selector: 'example-custom-stepper',\n templateUrl: './example-custom-stepper.html',\n styleUrl: './example-custom-stepper.css',\n providers: [{provide: CdkStepper, useExisting: CustomStepper}],\n imports: [NgTemplateOutlet, CdkStepperModule],\n})\nexport class CustomStepper extends CdkStepper {\n selectStepByIndex(index: number): void {\n this.selectedIndex = index;\n }\n}\n","\n

    This is any content of \"Step 1\"

    \n

    This is any content of \"Step 2\"

    \n
    \n","
    \n
    \n

    Step {{ selectedIndex + 1 }}/{{ steps.length }}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n","import {Component, forwardRef, inject} from '@angular/core';\nimport {CdkStepper, CdkStepperModule} from '@angular/cdk/stepper';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {NgTemplateOutlet} from '@angular/common';\n\n/** @title A custom CDK linear stepper with forms */\n@Component({\n selector: 'cdk-linear-stepper-with-form-example',\n templateUrl: './cdk-linear-stepper-with-form-example.html',\n styleUrl: './cdk-linear-stepper-with-form-example.css',\n imports: [\n forwardRef(() => CustomLinearStepper),\n CdkStepperModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n})\nexport class CdkLinearStepperWithFormExample {\n private readonly _formBuilder = inject(FormBuilder);\n\n isLinear = true;\n firstFormGroup = this._formBuilder.group({\n firstControl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondControl: ['', Validators.required],\n });\n\n toggleLinearity() {\n this.isLinear = !this.isLinear;\n }\n}\n\n/** Custom CDK linear stepper component */\n@Component({\n selector: 'example-custom-linear-stepper',\n templateUrl: './example-custom-linear-stepper.html',\n styleUrl: './example-custom-linear-stepper.css',\n providers: [{provide: CdkStepper, useExisting: CustomLinearStepper}],\n imports: [NgTemplateOutlet, CdkStepperModule],\n})\nexport class CustomLinearStepper extends CdkStepper {\n selectStepByIndex(index: number): void {\n this.selectedIndex = index;\n }\n}\n","\n \n \n
    \n \n
    \n
    \n \n \n
    \n \n
    \n
    \n
    \n\n","
    \n
    \n

    Step {{selectedIndex + 1}}/{{steps.length}}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"stepper.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/cdk-custom-stepper-without-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/cdk-custom-stepper-without-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-custom-stepper-without-form/example-custom-stepper.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/cdk-linear-stepper-with-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/cdk-linear-stepper-with-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/stepper/cdk-linear-stepper-with-form/example-custom-linear-stepper.html"],"sourcesContent":["import {Component, forwardRef} from '@angular/core';\nimport {CdkStepper, CdkStepperModule} from '@angular/cdk/stepper';\nimport {NgTemplateOutlet} from '@angular/common';\n\n/** @title A custom CDK stepper without a form */\n@Component({\n selector: 'cdk-custom-stepper-without-form-example',\n templateUrl: './cdk-custom-stepper-without-form-example.html',\n styleUrl: './cdk-custom-stepper-without-form-example.css',\n imports: [forwardRef(() => CustomStepper), CdkStepperModule],\n})\nexport class CdkCustomStepperWithoutFormExample {}\n\n/** Custom CDK stepper component */\n@Component({\n selector: 'example-custom-stepper',\n templateUrl: './example-custom-stepper.html',\n styleUrl: './example-custom-stepper.css',\n providers: [{provide: CdkStepper, useExisting: CustomStepper}],\n imports: [NgTemplateOutlet, CdkStepperModule],\n})\nexport class CustomStepper extends CdkStepper {\n selectStepByIndex(index: number): void {\n this.selectedIndex = index;\n }\n}\n","\n

    This is any content of \"Step 1\"

    \n

    This is any content of \"Step 2\"

    \n
    \n","
    \n
    \n

    Step {{ selectedIndex + 1 }}/{{ steps.length }}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n","import {Component, forwardRef, inject} from '@angular/core';\nimport {CdkStepper, CdkStepperModule} from '@angular/cdk/stepper';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {NgTemplateOutlet} from '@angular/common';\n\n/** @title A custom CDK linear stepper with forms */\n@Component({\n selector: 'cdk-linear-stepper-with-form-example',\n templateUrl: './cdk-linear-stepper-with-form-example.html',\n styleUrl: './cdk-linear-stepper-with-form-example.css',\n imports: [\n forwardRef(() => CustomLinearStepper),\n CdkStepperModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n})\nexport class CdkLinearStepperWithFormExample {\n private readonly _formBuilder = inject(FormBuilder);\n\n isLinear = true;\n firstFormGroup = this._formBuilder.group({\n firstControl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondControl: ['', Validators.required],\n });\n\n toggleLinearity() {\n this.isLinear = !this.isLinear;\n }\n}\n\n/** Custom CDK linear stepper component */\n@Component({\n selector: 'example-custom-linear-stepper',\n templateUrl: './example-custom-linear-stepper.html',\n styleUrl: './example-custom-linear-stepper.css',\n providers: [{provide: CdkStepper, useExisting: CustomLinearStepper}],\n imports: [NgTemplateOutlet, CdkStepperModule],\n})\nexport class CustomLinearStepper extends CdkStepper {\n selectStepByIndex(index: number): void {\n this.selectedIndex = index;\n }\n}\n","\n \n \n
    \n \n
    \n
    \n \n \n
    \n \n
    \n
    \n
    \n\n","
    \n
    \n

    Step {{selectedIndex + 1}}/{{steps.length}}

    \n
    \n\n
    \n\n
    \n \n @for (step of steps; track step; let i = $index) {\n Step {{ i + 1 }}\n }\n \n
    \n
    \n"],"names":["i2"],"mappings":";;;;;;;;AAIA;MAOa,kCAAkC,CAAA;4GAAlC,kCAAkC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAlC,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,kCAAkC,ECX/C,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,6LAIA,EDiBa,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAA,aAAa,uFAZmB,gBAAgB,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,aAAA,EAAA,OAAA,EAAA,cAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,UAAA,EAAA,WAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEhD,kCAAkC,EAAA,UAAA,EAAA,CAAA;kBAN9C,SAAS;+BACE,yCAAyC,EAAA,OAAA,EAG1C,CAAC,UAAU,CAAC,MAAM,aAAa,CAAC,EAAE,gBAAgB,CAAC,EAAA,QAAA,EAAA,6LAAA,EAAA;;AAI9D;AAQM,MAAO,aAAc,SAAQ,UAAU,CAAA;AAC3C,IAAA,iBAAiB,CAAC,KAAa,EAAA;AAC7B,QAAA,IAAI,CAAC,aAAa,GAAG,KAAK;;4GAFjB,aAAa,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAb,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,aAAa,qEAHb,CAAC,EAAC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,aAAa,EAAC,CAAC,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EElBhE,wpBAkBA,EFCY,MAAA,EAAA,CAAA,weAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,gBAAgB,mJAAE,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,MAAA,EAAA,CAAA,MAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,MAAA,EAAA,CAAA,MAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEjC,aAAa,EAAA,UAAA,EAAA,CAAA;kBAPzB,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,wBAAwB,aAGvB,CAAC,EAAC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAe,aAAA,EAAC,CAAC,EACrD,OAAA,EAAA,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,EAAA,QAAA,EAAA,wpBAAA,EAAA,MAAA,EAAA,CAAA,weAAA,CAAA,EAAA;;;AGd/C;MAYa,+BAA+B,CAAA;AACzB,IAAA,YAAY,GAAG,MAAM,CAAC,WAAW,CAAC;IAEnD,QAAQ,GAAG,IAAI;AACf,IAAA,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC;AACvC,QAAA,YAAY,EAAE,CAAC,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC;AACxC,KAAA,CAAC;AACF,IAAA,eAAe,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC;AACxC,QAAA,aAAa,EAAE,CAAC,EAAE,EAAE,UAAU,CAAC,QAAQ,CAAC;AACzC,KAAA,CAAC;IAEF,eAAe,GAAA;AACb,QAAA,IAAI,CAAC,QAAQ,GAAG,CAAC,IAAI,CAAC,QAAQ;;4GAZrB,+BAA+B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAA/B,+BAA+B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECjB5C,qxBAiBA,EDwBa,MAAA,EAAA,CAAA,4DAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAA,mBAAmB,8FA7B5B,gBAAgB,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,aAAA,EAAA,OAAA,EAAA,cAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,UAAA,EAAA,WAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAChB,WAAW,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,aAAA,CAAA,EAAA,QAAA,EAAA,8CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,QAAA,EAAA,0FAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,iBAAA,CAAA,EAAA,QAAA,EAAA,wIAAA,EAAA,MAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MACX,mBAAmB,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,OAAA,EAAA,CAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,UAAA,EAAA,SAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAGV,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAX3C,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,sCAAsC,EAGvC,OAAA,EAAA;AACP,wBAAA,UAAU,CAAC,MAAM,mBAAmB,CAAC;wBACrC,gBAAgB;wBAChB,WAAW;wBACX,mBAAmB;AACpB,qBAAA,EAAA,QAAA,EAAA,qxBAAA,EAAA,MAAA,EAAA,CAAA,4DAAA,CAAA,EAAA;;AAkBH;AAQM,MAAO,mBAAoB,SAAQ,UAAU,CAAA;AACjD,IAAA,iBAAiB,CAAC,KAAa,EAAA;AAC7B,QAAA,IAAI,CAAC,aAAa,GAAG,KAAK;;4GAFjB,mBAAmB,EAAA,IAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,mBAAmB,4EAHnB,CAAC,EAAC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,mBAAmB,EAAC,CAAC,EAAA,eAAA,EAAA,IAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EEtCtE,opBAkBA,EFqBY,MAAA,EAAA,CAAA,weAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,gBAAgB,mJAAE,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,MAAA,EAAA,CAAA,MAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,MAAA,EAAA,CAAA,MAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEjC,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAP/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,+BAA+B,aAG9B,CAAC,EAAC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAqB,mBAAA,EAAC,CAAC,EAC3D,OAAA,EAAA,CAAC,gBAAgB,EAAE,gBAAgB,CAAC,EAAA,QAAA,EAAA,opBAAA,EAAA,MAAA,EAAA,CAAA,weAAA,CAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/cdk/table.mjs b/fesm2022/cdk/table.mjs index f501a801df..54549b88dd 100755 --- a/fesm2022/cdk/table.mjs +++ b/fesm2022/cdk/table.mjs @@ -23,10 +23,10 @@ const ELEMENT_DATA$3 = [ class CdkTableFlexBasicExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = new ExampleDataSource$3(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableFlexBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTableFlexBasicExample, isStandalone: true, selector: "cdk-table-flex-basic-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: ["/**\n * Add basic flex styling so that the cells evenly space themselves in the row.\n */\ncdk-row, cdk-header-row, cdk-footer-row {\n display: flex;\n}\n\ncdk-cell, cdk-header-cell, cdk-footer-cell {\n flex: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableFlexBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTableFlexBasicExample, isStandalone: true, selector: "cdk-table-flex-basic-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: ["/**\n * Add basic flex styling so that the cells evenly space themselves in the row.\n */\ncdk-row, cdk-header-row, cdk-footer-row {\n display: flex;\n}\n\ncdk-cell, cdk-header-cell, cdk-footer-cell {\n flex: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableFlexBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableFlexBasicExample, decorators: [{ type: Component, args: [{ selector: 'cdk-table-flex-basic-example', imports: [CdkTableModule], template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: ["/**\n * Add basic flex styling so that the cells evenly space themselves in the row.\n */\ncdk-row, cdk-header-row, cdk-footer-row {\n display: flex;\n}\n\ncdk-cell, cdk-header-cell, cdk-footer-cell {\n flex: 1;\n}\n"] }] }] }); @@ -37,7 +37,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$3 extends DataSource { +let ExampleDataSource$3 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(ELEMENT_DATA$3); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -45,7 +45,7 @@ class ExampleDataSource$3 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA$2 = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -65,10 +65,10 @@ const ELEMENT_DATA$2 = [ class CdkTableBasicExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = new ExampleDataSource$2(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTableBasicExample, isStandalone: true, selector: "cdk-table-basic-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTableBasicExample, isStandalone: true, selector: "cdk-table-basic-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableBasicExample, decorators: [{ type: Component, args: [{ selector: 'cdk-table-basic-example', imports: [CdkTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"] }] }] }); @@ -79,7 +79,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$2 extends DataSource { +let ExampleDataSource$2 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(ELEMENT_DATA$2); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -87,7 +87,7 @@ class ExampleDataSource$2 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA$1 = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -107,10 +107,10 @@ const ELEMENT_DATA$1 = [ class CdkTableFixedLayoutExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = new ExampleDataSource$1(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableFixedLayoutExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTableFixedLayoutExample, isStandalone: true, selector: "cdk-table-fixed-layout-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableFixedLayoutExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTableFixedLayoutExample, isStandalone: true, selector: "cdk-table-fixed-layout-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableFixedLayoutExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableFixedLayoutExample, decorators: [{ type: Component, args: [{ selector: 'cdk-table-fixed-layout-example', imports: [CdkTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth {\n text-align: left;\n}\n"] }] }] }); @@ -121,7 +121,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$1 extends DataSource { +let ExampleDataSource$1 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(ELEMENT_DATA$1); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -129,7 +129,7 @@ class ExampleDataSource$1 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -149,10 +149,10 @@ const ELEMENT_DATA = [ class CdkTableRecycleRowsExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = new ExampleDataSource(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableRecycleRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTableRecycleRowsExample, isStandalone: true, selector: "cdk-table-recycle-rows-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-row {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }, { kind: "directive", type: i1.CdkRecycleRows, selector: "cdk-table[recycleRows], table[cdk-table][recycleRows]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableRecycleRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTableRecycleRowsExample, isStandalone: true, selector: "cdk-table-recycle-rows-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-row {\n text-align: left;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "component", type: i1.CdkTable, selector: "cdk-table, table[cdk-table]", inputs: ["trackBy", "dataSource", "multiTemplateDataRows", "fixedLayout"], outputs: ["contentChanged"], exportAs: ["cdkTable"] }, { kind: "directive", type: i1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["cdkColumnDef", "sticky", "stickyEnd"] }, { kind: "directive", type: i1.CdkCell, selector: "cdk-cell, td[cdk-cell]" }, { kind: "component", type: i1.CdkRow, selector: "cdk-row, tr[cdk-row]" }, { kind: "directive", type: i1.CdkHeaderCell, selector: "cdk-header-cell, th[cdk-header-cell]" }, { kind: "component", type: i1.CdkHeaderRow, selector: "cdk-header-row, tr[cdk-header-row]" }, { kind: "directive", type: i1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }, { kind: "directive", type: i1.CdkRecycleRows, selector: "cdk-table[recycleRows], table[cdk-table][recycleRows]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTableRecycleRowsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTableRecycleRowsExample, decorators: [{ type: Component, args: [{ selector: 'cdk-table-recycle-rows-example', imports: [CdkTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-row {\n text-align: left;\n}\n"] }] }] }); @@ -173,9 +173,5 @@ class ExampleDataSource extends DataSource { disconnect() { } } -/** - * Generated bundle index. Do not edit. - */ - export { CdkTableBasicExample, CdkTableFixedLayoutExample, CdkTableFlexBasicExample, CdkTableRecycleRowsExample }; //# sourceMappingURL=table.mjs.map diff --git a/fesm2022/cdk/table.mjs.map b/fesm2022/cdk/table.mjs.map index 59b0e9f109..aa8ce53905 100755 --- a/fesm2022/cdk/table.mjs.map +++ b/fesm2022/cdk/table.mjs.map @@ -1 +1 @@ -{"version":3,"file":"table.mjs","sources":["../../../../../../../src/components-examples/cdk/table/cdk-table-flex-basic/cdk-table-flex-basic-example.ts","../../../../../../../src/components-examples/cdk/table/cdk-table-flex-basic/cdk-table-flex-basic-example.html","../../../../../../../src/components-examples/cdk/table/cdk-table-basic/cdk-table-basic-example.ts","../../../../../../../src/components-examples/cdk/table/cdk-table-basic/cdk-table-basic-example.html","../../../../../../../src/components-examples/cdk/table/cdk-table-fixed-layout/cdk-table-fixed-layout-example.ts","../../../../../../../src/components-examples/cdk/table/cdk-table-fixed-layout/cdk-table-fixed-layout-example.html","../../../../../../../src/components-examples/cdk/table/cdk-table-recycle-rows/cdk-table-recycle-rows-example.ts","../../../../../../../src/components-examples/cdk/table/cdk-table-recycle-rows/cdk-table-recycle-rows-example.html","../../../../../../../src/components-examples/cdk/table/table_public_index.ts"],"sourcesContent":["import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n symbol: string;\n weight: number;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of `` (uses display flex)\n */\n@Component({\n selector: 'cdk-table-flex-basic-example',\n styleUrl: 'cdk-table-flex-basic-example.css',\n templateUrl: 'cdk-table-flex-basic-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableFlexBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic CDK data-table\n */\n@Component({\n selector: 'cdk-table-basic-example',\n styleUrl: 'cdk-table-basic-example.css',\n templateUrl: 'cdk-table-basic-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title CDK table with a fixed layout.\n */\n@Component({\n selector: 'cdk-table-fixed-layout-example',\n styleUrl: 'cdk-table-fixed-layout-example.css',\n templateUrl: 'cdk-table-fixed-layout-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableFixedLayoutExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table that uses the recycle view repeater strategy.\n */\n@Component({\n selector: 'cdk-table-recycle-rows-example',\n styleUrl: 'cdk-table-recycle-rows-example.css',\n templateUrl: 'cdk-table-recycle-rows-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableRecycleRowsExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["ELEMENT_DATA","ExampleDataSource"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"table.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-flex-basic/cdk-table-flex-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-flex-basic/cdk-table-flex-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-basic/cdk-table-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-basic/cdk-table-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-fixed-layout/cdk-table-fixed-layout-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-fixed-layout/cdk-table-fixed-layout-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-recycle-rows/cdk-table-recycle-rows-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/table/cdk-table-recycle-rows/cdk-table-recycle-rows-example.html"],"sourcesContent":["import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n symbol: string;\n weight: number;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of `` (uses display flex)\n */\n@Component({\n selector: 'cdk-table-flex-basic-example',\n styleUrl: 'cdk-table-flex-basic-example.css',\n templateUrl: 'cdk-table-flex-basic-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableFlexBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic CDK data-table\n */\n@Component({\n selector: 'cdk-table-basic-example',\n styleUrl: 'cdk-table-basic-example.css',\n templateUrl: 'cdk-table-basic-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title CDK table with a fixed layout.\n */\n@Component({\n selector: 'cdk-table-fixed-layout-example',\n styleUrl: 'cdk-table-fixed-layout-example.css',\n templateUrl: 'cdk-table-fixed-layout-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableFixedLayoutExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {CdkTableModule} from '@angular/cdk/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table that uses the recycle view repeater strategy.\n */\n@Component({\n selector: 'cdk-table-recycle-rows-example',\n styleUrl: 'cdk-table-recycle-rows-example.css',\n templateUrl: 'cdk-table-recycle-rows-example.html',\n imports: [CdkTableModule],\n})\nexport class CdkTableRecycleRowsExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n"],"names":["ELEMENT_DATA","ExampleDataSource"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/text-field.mjs b/fesm2022/cdk/text-field.mjs index c2b1afbe44..c90fcc6c6b 100755 --- a/fesm2022/cdk/text-field.mjs +++ b/fesm2022/cdk/text-field.mjs @@ -1,6 +1,6 @@ import * as i0 from '@angular/core'; import { Component, inject, ElementRef, ViewChild, Injector, afterNextRender } from '@angular/core'; -import * as i4 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i3 from '@angular/cdk/text-field'; import { TextFieldModule, AutofillMonitor } from '@angular/cdk/text-field'; @@ -10,18 +10,17 @@ import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i2$1 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; -import * as i3$1 from '@angular/material/core'; /** @title Monitoring autofill state with cdkAutofill */ class TextFieldAutofillDirectiveExample { firstNameAutofilled; lastNameAutofilled; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutofillDirectiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TextFieldAutofillDirectiveExample, isStandalone: true, selector: "text-field-autofill-directive-example", ngImport: i0, template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "directive", type: i3.CdkAutofill, selector: "[cdkAutofill]", outputs: ["cdkAutofill"] }, { kind: "ngmodule", type: TextFieldModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutofillDirectiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TextFieldAutofillDirectiveExample, isStandalone: true, selector: "text-field-autofill-directive-example", ngImport: i0, template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "directive", type: i3.CdkAutofill, selector: "[cdkAutofill]", outputs: ["cdkAutofill"] }, { kind: "ngmodule", type: TextFieldModule }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutofillDirectiveExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutofillDirectiveExample, decorators: [{ type: Component, - args: [{ selector: 'text-field-autofill-directive-example', imports: [MatFormFieldModule, MatInputModule, TextFieldModule, MatButtonModule], template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'text-field-autofill-directive-example', imports: [MatFormFieldModule, MatInputModule, TextFieldModule, MatButtonModule], template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); /** @title Monitoring autofill state with AutofillMonitor */ @@ -43,12 +42,12 @@ class TextFieldAutofillMonitorExample { this._autofill.stopMonitoring(this.firstName); this._autofill.stopMonitoring(this.lastName); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutofillMonitorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TextFieldAutofillMonitorExample, isStandalone: true, selector: "text-field-autofill-monitor-example", viewQueries: [{ propertyName: "firstName", first: true, predicate: ["first"], descendants: true, read: ElementRef }, { propertyName: "lastName", first: true, predicate: ["last"], descendants: true, read: ElementRef }], ngImport: i0, template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutofillMonitorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TextFieldAutofillMonitorExample, isStandalone: true, selector: "text-field-autofill-monitor-example", viewQueries: [{ propertyName: "firstName", first: true, predicate: ["first"], descendants: true, read: ElementRef }, { propertyName: "lastName", first: true, predicate: ["last"], descendants: true, read: ElementRef }], ngImport: i0, template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutofillMonitorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutofillMonitorExample, decorators: [{ type: Component, - args: [{ selector: 'text-field-autofill-monitor-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule], template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'text-field-autofill-monitor-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule], template: "
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }], propDecorators: { firstName: [{ type: ViewChild, args: ['first', { read: ElementRef }] @@ -69,10 +68,10 @@ class TextFieldAutosizeTextareaExample { injector: this._injector, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutosizeTextareaExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TextFieldAutosizeTextareaExample, isStandalone: true, selector: "text-field-autosize-textarea-example", viewQueries: [{ propertyName: "autosize", first: true, predicate: ["autosize"], descendants: true }], ngImport: i0, template: "\n Font size\n \n 10px\n 12px\n 14px\n 16px\n 18px\n 20px\n \n\n\n\n Autosize textarea\n \n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "directive", type: i3.CdkTextareaAutosize, selector: "textarea[cdkTextareaAutosize]", inputs: ["cdkAutosizeMinRows", "cdkAutosizeMaxRows", "cdkTextareaAutosize", "placeholder"], exportAs: ["cdkTextareaAutosize"] }, { kind: "ngmodule", type: TextFieldModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutosizeTextareaExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TextFieldAutosizeTextareaExample, isStandalone: true, selector: "text-field-autosize-textarea-example", viewQueries: [{ propertyName: "autosize", first: true, predicate: ["autosize"], descendants: true }], ngImport: i0, template: "\n Font size\n \n 10px\n 12px\n 14px\n 16px\n 18px\n 20px\n \n\n\n\n Autosize textarea\n \n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "directive", type: i3.CdkTextareaAutosize, selector: "textarea[cdkTextareaAutosize]", inputs: ["cdkAutosizeMinRows", "cdkAutosizeMaxRows", "cdkTextareaAutosize", "placeholder"], exportAs: ["cdkTextareaAutosize"] }, { kind: "ngmodule", type: TextFieldModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TextFieldAutosizeTextareaExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TextFieldAutosizeTextareaExample, decorators: [{ type: Component, args: [{ selector: 'text-field-autosize-textarea-example', imports: [MatFormFieldModule, MatSelectModule, MatInputModule, TextFieldModule], template: "\n Font size\n \n 10px\n 12px\n 14px\n 16px\n 18px\n 20px\n \n\n\n\n Autosize textarea\n \n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }], propDecorators: { autosize: [{ @@ -80,9 +79,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor args: ['autosize'] }] } }); -/** - * Generated bundle index. Do not edit. - */ - export { TextFieldAutofillDirectiveExample, TextFieldAutofillMonitorExample, TextFieldAutosizeTextareaExample }; //# sourceMappingURL=text-field.mjs.map diff --git a/fesm2022/cdk/text-field.mjs.map b/fesm2022/cdk/text-field.mjs.map index 9d32438b05..e1ccb308df 100755 --- a/fesm2022/cdk/text-field.mjs.map +++ b/fesm2022/cdk/text-field.mjs.map @@ -1 +1 @@ -{"version":3,"file":"text-field.mjs","sources":["../../../../../../../src/components-examples/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.ts","../../../../../../../src/components-examples/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html","../../../../../../../src/components-examples/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.ts","../../../../../../../src/components-examples/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html","../../../../../../../src/components-examples/cdk/text-field/text-field-autosize-textarea/text-field-autosize-textarea-example.ts","../../../../../../../src/components-examples/cdk/text-field/text-field-autosize-textarea/text-field-autosize-textarea-example.html","../../../../../../../src/components-examples/cdk/text-field/text-field_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {TextFieldModule} from '@angular/cdk/text-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Monitoring autofill state with cdkAutofill */\n@Component({\n selector: 'text-field-autofill-directive-example',\n templateUrl: './text-field-autofill-directive-example.html',\n styleUrl: './text-field-autofill-directive-example.css',\n imports: [MatFormFieldModule, MatInputModule, TextFieldModule, MatButtonModule],\n})\nexport class TextFieldAutofillDirectiveExample {\n firstNameAutofilled: boolean;\n lastNameAutofilled: boolean;\n}\n","
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n","import {AfterViewInit, Component, ElementRef, OnDestroy, ViewChild, inject} from '@angular/core';\nimport {AutofillMonitor} from '@angular/cdk/text-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Monitoring autofill state with AutofillMonitor */\n@Component({\n selector: 'text-field-autofill-monitor-example',\n templateUrl: './text-field-autofill-monitor-example.html',\n styleUrl: './text-field-autofill-monitor-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule],\n})\nexport class TextFieldAutofillMonitorExample implements AfterViewInit, OnDestroy {\n private _autofill = inject(AutofillMonitor);\n\n @ViewChild('first', {read: ElementRef}) firstName: ElementRef;\n @ViewChild('last', {read: ElementRef}) lastName: ElementRef;\n firstNameAutofilled: boolean;\n lastNameAutofilled: boolean;\n\n ngAfterViewInit() {\n this._autofill\n .monitor(this.firstName)\n .subscribe(e => (this.firstNameAutofilled = e.isAutofilled));\n this._autofill\n .monitor(this.lastName)\n .subscribe(e => (this.lastNameAutofilled = e.isAutofilled));\n }\n\n ngOnDestroy() {\n this._autofill.stopMonitoring(this.firstName);\n this._autofill.stopMonitoring(this.lastName);\n }\n}\n","
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n","import {CdkTextareaAutosize, TextFieldModule} from '@angular/cdk/text-field';\nimport {afterNextRender, Component, inject, Injector, ViewChild} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Auto-resizing textarea */\n@Component({\n selector: 'text-field-autosize-textarea-example',\n templateUrl: './text-field-autosize-textarea-example.html',\n styleUrl: './text-field-autosize-textarea-example.css',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, TextFieldModule],\n})\nexport class TextFieldAutosizeTextareaExample {\n private _injector = inject(Injector);\n\n @ViewChild('autosize') autosize: CdkTextareaAutosize;\n\n triggerResize() {\n // Wait for content to render, then trigger textarea resize.\n afterNextRender(\n () => {\n this.autosize.resizeToFitContent(true);\n },\n {\n injector: this._injector,\n },\n );\n }\n}\n","\n Font size\n \n 10px\n 12px\n 14px\n 16px\n 18px\n 20px\n \n\n\n\n Autosize textarea\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i3","i2","i4","i5"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"text-field.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autofill-directive/text-field-autofill-directive-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autofill-monitor/text-field-autofill-monitor-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autosize-textarea/text-field-autosize-textarea-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/text-field/text-field-autosize-textarea/text-field-autosize-textarea-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {TextFieldModule} from '@angular/cdk/text-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Monitoring autofill state with cdkAutofill */\n@Component({\n selector: 'text-field-autofill-directive-example',\n templateUrl: './text-field-autofill-directive-example.html',\n styleUrl: './text-field-autofill-directive-example.css',\n imports: [MatFormFieldModule, MatInputModule, TextFieldModule, MatButtonModule],\n})\nexport class TextFieldAutofillDirectiveExample {\n firstNameAutofilled: boolean;\n lastNameAutofilled: boolean;\n}\n","
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n","import {AfterViewInit, Component, ElementRef, OnDestroy, ViewChild, inject} from '@angular/core';\nimport {AutofillMonitor} from '@angular/cdk/text-field';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Monitoring autofill state with AutofillMonitor */\n@Component({\n selector: 'text-field-autofill-monitor-example',\n templateUrl: './text-field-autofill-monitor-example.html',\n styleUrl: './text-field-autofill-monitor-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule],\n})\nexport class TextFieldAutofillMonitorExample implements AfterViewInit, OnDestroy {\n private _autofill = inject(AutofillMonitor);\n\n @ViewChild('first', {read: ElementRef}) firstName: ElementRef;\n @ViewChild('last', {read: ElementRef}) lastName: ElementRef;\n firstNameAutofilled: boolean;\n lastNameAutofilled: boolean;\n\n ngAfterViewInit() {\n this._autofill\n .monitor(this.firstName)\n .subscribe(e => (this.firstNameAutofilled = e.isAutofilled));\n this._autofill\n .monitor(this.lastName)\n .subscribe(e => (this.lastNameAutofilled = e.isAutofilled));\n }\n\n ngOnDestroy() {\n this._autofill.stopMonitoring(this.firstName);\n this._autofill.stopMonitoring(this.lastName);\n }\n}\n","
    \n \n First name\n \n @if (firstNameAutofilled) {\n Autofilled!\n }\n \n \n Last name\n \n @if (lastNameAutofilled) {\n Autofilled!\n }\n \n \n
    \n","import {CdkTextareaAutosize, TextFieldModule} from '@angular/cdk/text-field';\nimport {afterNextRender, Component, inject, Injector, ViewChild} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Auto-resizing textarea */\n@Component({\n selector: 'text-field-autosize-textarea-example',\n templateUrl: './text-field-autosize-textarea-example.html',\n styleUrl: './text-field-autosize-textarea-example.css',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, TextFieldModule],\n})\nexport class TextFieldAutosizeTextareaExample {\n private _injector = inject(Injector);\n\n @ViewChild('autosize') autosize: CdkTextareaAutosize;\n\n triggerResize() {\n // Wait for content to render, then trigger textarea resize.\n afterNextRender(\n () => {\n this.autosize.resizeToFitContent(true);\n },\n {\n injector: this._injector,\n },\n );\n }\n}\n","\n Font size\n \n 10px\n 12px\n 14px\n 16px\n 18px\n 20px\n \n\n\n\n Autosize textarea\n \n\n"],"names":["i4","i3","i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/cdk/tree.mjs b/fesm2022/cdk/tree.mjs index 4ac62ca0e1..7c10242b3a 100755 --- a/fesm2022/cdk/tree.mjs +++ b/fesm2022/cdk/tree.mjs @@ -3,40 +3,20 @@ import * as i1 from '@angular/cdk/tree'; import { CdkTree, CdkTreeModule, FlatTreeControl, NestedTreeControl } from '@angular/cdk/tree'; import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy, ViewChild, QueryList } from '@angular/core'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import { timer, of, BehaviorSubject, combineLatest, isObservable, Subject } from 'rxjs'; -import { mapTo, delay, map, shareReplay, take } from 'rxjs/operators'; +import { timer, BehaviorSubject, combineLatest, of, isObservable, Subject } from 'rxjs'; +import { mapTo, map, shareReplay, delay, take } from 'rxjs/operators'; import * as i4 from '@angular/common'; import { CommonModule } from '@angular/common'; -import * as i5 from '@angular/material/progress-spinner'; +import * as i1$2 from '@angular/material/progress-spinner'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { coerceObservable } from '@angular/cdk/coercion/private'; import { TREE_KEY_MANAGER } from '@angular/cdk/a11y'; import { SPACE, ENTER, END, HOME, H, LEFT_ARROW, L, RIGHT_ARROW, K, UP_ARROW, J, DOWN_ARROW, TAB } from '@angular/cdk/keycodes'; -const NESTED_DATA$1 = [ - { - name: 'Fruit', - children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], - }, - { - name: 'Orange', - children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], - }, - ], - }, -]; - function flattenNodes$1(nodes) { const flattenedNodes = []; for (const node of nodes) { @@ -53,10 +33,10 @@ function flattenNodes$1(nodes) { class CdkTreeFlatChildrenAccessorExample { tree; childrenAccessor = (dataNode) => timer(100).pipe(mapTo(dataNode.children ?? [])); - dataSource = new ArrayDataSource(NESTED_DATA$1); + dataSource = new ArrayDataSource(EXAMPLE_DATA$7); hasChild = (_, node) => !!node.children?.length; getParentNode(node) { - for (const parent of flattenNodes$1(NESTED_DATA$1)) { + for (const parent of flattenNodes$1(EXAMPLE_DATA$7)) { if (parent.children?.includes(node)) { return parent; } @@ -73,72 +53,33 @@ class CdkTreeFlatChildrenAccessorExample { } return true; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatChildrenAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeFlatChildrenAccessorExample, isStandalone: true, selector: "cdk-tree-flat-children-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatChildrenAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeFlatChildrenAccessorExample, isStandalone: true, selector: "cdk-tree-flat-children-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatChildrenAccessorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatChildrenAccessorExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-flat-children-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] + args: [{ selector: 'cdk-tree-flat-children-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }], propDecorators: { tree: [{ type: ViewChild, args: [CdkTree] }] } }); - -const FLAT_DATA$1 = [ +const EXAMPLE_DATA$7 = [ { name: 'Fruit', - expandable: true, - level: 0, - }, - { - name: 'Apple', - expandable: false, - level: 1, - }, - { - name: 'Banana', - expandable: false, - level: 1, - }, - { - name: 'Fruit loops', - expandable: false, - level: 1, + children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], }, { name: 'Vegetables', - expandable: true, - level: 0, - }, - { - name: 'Green', - expandable: true, - level: 1, - }, - { - name: 'Broccoli', - expandable: false, - level: 2, - }, - { - name: 'Brussels sprouts', - expandable: false, - level: 2, - }, - { - name: 'Orange', - expandable: true, - level: 1, - }, - { - name: 'Pumpkins', - expandable: false, - level: 2, - }, - { - name: 'Carrots', - expandable: false, - level: 2, + children: [ + { + name: 'Green', + children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], + }, + { + name: 'Orange', + children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], + }, + ], }, ]; @@ -148,15 +89,15 @@ const FLAT_DATA$1 = [ class CdkTreeFlatLevelAccessorExample { tree; levelAccessor = (dataNode) => dataNode.level; - dataSource = new ArrayDataSource(FLAT_DATA$1); + dataSource = new ArrayDataSource(EXAMPLE_DATA$6); hasChild = (_, node) => node.expandable; getParentNode(node) { - const nodeIndex = FLAT_DATA$1.indexOf(node); + const nodeIndex = EXAMPLE_DATA$6.indexOf(node); // Determine the node's parent by finding the first preceding node that's // one level shallower. for (let i = nodeIndex - 1; i >= 0; i--) { - if (FLAT_DATA$1[i].level === node.level - 1) { - return FLAT_DATA$1[i]; + if (EXAMPLE_DATA$6[i].level === node.level - 1) { + return EXAMPLE_DATA$6[i]; } } return null; @@ -166,18 +107,17 @@ class CdkTreeFlatLevelAccessorExample { const parent = this.getParentNode(node); return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatLevelAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeFlatLevelAccessorExample, isStandalone: true, selector: "cdk-tree-flat-level-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatLevelAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeFlatLevelAccessorExample, isStandalone: true, selector: "cdk-tree-flat-level-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatLevelAccessorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatLevelAccessorExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-flat-level-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] + args: [{ selector: 'cdk-tree-flat-level-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }], propDecorators: { tree: [{ type: ViewChild, args: [CdkTree] }] } }); - -const TREE_DATA$3 = [ +const EXAMPLE_DATA$6 = [ { name: 'Fruit', expandable: true, @@ -234,18 +174,19 @@ const TREE_DATA$3 = [ level: 2, }, ]; + /** * @title Tree with flat nodes */ class CdkTreeFlatExample { treeControl = new FlatTreeControl(node => node.level, node => node.expandable); - dataSource = new ArrayDataSource(TREE_DATA$3); + dataSource = new ArrayDataSource(EXAMPLE_DATA$5); hasChild = (_, node) => node.expandable; getParentNode(node) { - const nodeIndex = TREE_DATA$3.indexOf(node); + const nodeIndex = EXAMPLE_DATA$5.indexOf(node); for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA$3[i].level === node.level - 1) { - return TREE_DATA$3[i]; + if (EXAMPLE_DATA$5[i].level === node.level - 1) { + return EXAMPLE_DATA$5[i]; } } return null; @@ -260,15 +201,14 @@ class CdkTreeFlatExample { } return true; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeFlatExample, isStandalone: true, selector: "cdk-tree-flat-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeFlatExample, isStandalone: true, selector: "cdk-tree-flat-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeFlatExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeFlatExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-flat-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] + args: [{ selector: 'cdk-tree-flat-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }] }); - -const FLAT_DATA = [ +const EXAMPLE_DATA$5 = [ { name: 'Fruit', expandable: true, @@ -332,15 +272,15 @@ const FLAT_DATA = [ class CdkTreeNestedLevelAccessorExample { tree; levelAccessor = (dataNode) => dataNode.level; - dataSource = new ArrayDataSource(FLAT_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA$4); hasChild = (_, node) => node.expandable; getParentNode(node) { - const nodeIndex = FLAT_DATA.indexOf(node); + const nodeIndex = EXAMPLE_DATA$4.indexOf(node); // Determine the node's parent by finding the first preceding node that's // one level shallower. for (let i = nodeIndex - 1; i >= 0; i--) { - if (FLAT_DATA[i].level === node.level - 1) { - return FLAT_DATA[i]; + if (EXAMPLE_DATA$4[i].level === node.level - 1) { + return EXAMPLE_DATA$4[i]; } } return null; @@ -350,34 +290,71 @@ class CdkTreeNestedLevelAccessorExample { const parent = this.getParentNode(node); return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedLevelAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeNestedLevelAccessorExample, isStandalone: true, selector: "cdk-tree-nested-level-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedLevelAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeNestedLevelAccessorExample, isStandalone: true, selector: "cdk-tree-nested-level-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedLevelAccessorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedLevelAccessorExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-nested-level-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] + args: [{ selector: 'cdk-tree-nested-level-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] }], propDecorators: { tree: [{ type: ViewChild, args: [CdkTree] }] } }); - -const NESTED_DATA = [ +const EXAMPLE_DATA$4 = [ { name: 'Fruit', - children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], + expandable: true, + level: 0, + }, + { + name: 'Apple', + expandable: false, + level: 1, + }, + { + name: 'Banana', + expandable: false, + level: 1, + }, + { + name: 'Fruit loops', + expandable: false, + level: 1, }, { name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], - }, - { - name: 'Orange', - children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], - }, - ], + expandable: true, + level: 0, + }, + { + name: 'Green', + expandable: true, + level: 1, + }, + { + name: 'Broccoli', + expandable: false, + level: 2, + }, + { + name: 'Brussels sprouts', + expandable: false, + level: 2, + }, + { + name: 'Orange', + expandable: true, + level: 1, + }, + { + name: 'Pumpkins', + expandable: false, + level: 2, + }, + { + name: 'Carrots', + expandable: false, + level: 2, }, ]; @@ -397,10 +374,10 @@ function flattenNodes(nodes) { class CdkTreeNestedChildrenAccessorExample { tree; childrenAccessor = (dataNode) => dataNode.children ?? []; - dataSource = new ArrayDataSource(NESTED_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA$3); hasChild = (_, node) => !!node.children && node.children.length > 0; getParentNode(node) { - for (const parent of flattenNodes(NESTED_DATA)) { + for (const parent of flattenNodes(EXAMPLE_DATA$3)) { if (parent.children?.includes(node)) { return parent; } @@ -412,18 +389,17 @@ class CdkTreeNestedChildrenAccessorExample { const parent = this.getParentNode(node); return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedChildrenAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeNestedChildrenAccessorExample, isStandalone: true, selector: "cdk-tree-nested-children-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedChildrenAccessorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeNestedChildrenAccessorExample, isStandalone: true, selector: "cdk-tree-nested-children-accessor-example", viewQueries: [{ propertyName: "tree", first: true, predicate: CdkTree, descendants: true }], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedChildrenAccessorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedChildrenAccessorExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-nested-children-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] + args: [{ selector: 'cdk-tree-nested-children-accessor-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n line-height: 40px;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] }], propDecorators: { tree: [{ type: ViewChild, args: [CdkTree] }] } }); - -const TREE_DATA$2 = [ +const EXAMPLE_DATA$3 = [ { name: 'Fruit', children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], @@ -442,52 +418,41 @@ const TREE_DATA$2 = [ ], }, ]; + /** * @title Tree with nested nodes */ class CdkTreeNestedExample { treeControl = new NestedTreeControl(node => node.children); - dataSource = new ArrayDataSource(TREE_DATA$2); + dataSource = new ArrayDataSource(EXAMPLE_DATA$2); hasChild = (_, node) => !!node.children && node.children.length > 0; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeNestedExample, isStandalone: true, selector: "cdk-tree-nested-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeNestedExample, isStandalone: true, selector: "cdk-tree-nested-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkNestedTreeNode, selector: "cdk-nested-tree-node", exportAs: ["cdkNestedTreeNode"] }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNodeOutlet, selector: "[cdkTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeNestedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeNestedExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-nested-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] + args: [{ selector: 'cdk-tree-nested-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n.example-tree-node {\n display: block;\n}\n\n.example-tree-node .example-tree-node {\n padding-left: 40px;\n}\n\n.example-toggle {\n vertical-align: middle;\n}\n"] }] }] }); - -const TREE_DATA$1 = new Map([ +const EXAMPLE_DATA$2 = [ { - id: '1', name: 'Fruit', - children: ['1-1', '1-2', '1-3'], + children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], }, - { id: '1-1', name: 'Apple', parent: '1' }, - { id: '1-2', name: 'Banana', parent: '1' }, - { id: '1-3', name: 'Fruit Loops', parent: '1' }, { - id: '2', name: 'Vegetables', - children: ['2-1', '2-2'], - }, - { - id: '2-1', - name: 'Green', - parent: '2', - children: ['2-1-1', '2-1-2'], - }, - { - id: '2-2', - name: 'Orange', - parent: '2', - children: ['2-2-1', '2-2-2'], + children: [ + { + name: 'Green', + children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], + }, + { + name: 'Orange', + children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], + }, + ], }, - { id: '2-1-1', name: 'Broccoli', parent: '2-1' }, - { id: '2-1-2', name: 'Brussel sprouts', parent: '2-1' }, - { id: '2-2-1', name: 'Pumpkins', parent: '2-2' }, - { id: '2-2-2', name: 'Carrots', parent: '2-2' }, -].map(datum => [datum.id, datum])); +]; + class FakeDataBackend { _getRandomDelayTime() { // anywhere from 100 to 500ms. @@ -495,12 +460,12 @@ class FakeDataBackend { } getChildren(id) { // first, find the specified ID in our tree - const item = TREE_DATA$1.get(id); + const item = EXAMPLE_DATA$1.get(id); const children = item?.children ?? []; - return of(children.map(childId => TREE_DATA$1.get(childId))).pipe(delay(this._getRandomDelayTime())); + return of(children.map(childId => EXAMPLE_DATA$1.get(childId))).pipe(delay(this._getRandomDelayTime())); } getRoots() { - return of([...TREE_DATA$1.values()].filter(datum => !datum.parent)).pipe(delay(this._getRandomDelayTime())); + return of([...EXAMPLE_DATA$1.values()].filter(datum => !datum.parent)).pipe(delay(this._getRandomDelayTime())); } } class TransformedData { @@ -658,71 +623,45 @@ class CdkTreeComplexExample { this._dataStore.loadChildren(node.raw.id); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeComplexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CdkTreeComplexExample, isStandalone: true, selector: "cdk-tree-complex-example", ngImport: i0, template: "@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n", styles: ["cdk-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i5.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeComplexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CdkTreeComplexExample, isStandalone: true, selector: "cdk-tree-complex-example", ngImport: i0, template: "@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n", styles: ["cdk-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$2.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeComplexExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeComplexExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-complex-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule, CommonModule, MatProgressSpinnerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n", styles: ["cdk-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] + args: [{ selector: 'cdk-tree-complex-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule, CommonModule, MatProgressSpinnerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n", styles: ["cdk-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }] }); - -const TREE_DATA = [ +const EXAMPLE_DATA$1 = new Map([ { + id: '1', name: 'Fruit', - expandable: true, - level: 0, - }, - { - name: 'Apple', - expandable: false, - level: 1, - }, - { - name: 'Banana', - expandable: false, - level: 1, - }, - { - name: 'Fruit loops', - expandable: false, - level: 1, + children: ['1-1', '1-2', '1-3'], }, + { id: '1-1', name: 'Apple', parent: '1' }, + { id: '1-2', name: 'Banana', parent: '1' }, + { id: '1-3', name: 'Fruit Loops', parent: '1' }, { + id: '2', name: 'Vegetables', - expandable: true, - level: 0, + children: ['2-1', '2-2'], }, { + id: '2-1', name: 'Green', - expandable: true, - level: 1, - }, - { - name: 'Broccoli', - expandable: false, - level: 2, - }, - { - name: 'Brussels sprouts', - expandable: false, - level: 2, + parent: '2', + children: ['2-1-1', '2-1-2'], }, { + id: '2-2', name: 'Orange', - expandable: true, - level: 1, - }, - { - name: 'Pumpkins', - expandable: false, - level: 2, - }, - { - name: 'Carrots', - expandable: false, - level: 2, + parent: '2', + children: ['2-2-1', '2-2-2'], }, -]; + { id: '2-1-1', name: 'Broccoli', parent: '2-1' }, + { id: '2-1-2', name: 'Brussel sprouts', parent: '2-1' }, + { id: '2-2-1', name: 'Pumpkins', parent: '2-2' }, + { id: '2-2-2', name: 'Carrots', parent: '2-2' }, +].map(datum => [datum.id, datum])); + /** * This class manages keyboard events for trees. If you pass it a QueryList or other list of tree * items, it will set the active item, focus, handle expansion and typeahead correctly when @@ -944,13 +883,13 @@ const VIM_TREE_KEY_MANAGER_PROVIDER = { */ class CdkTreeCustomKeyManagerExample { treeControl = new FlatTreeControl(node => node.level, node => node.expandable); - dataSource = new ArrayDataSource(TREE_DATA); + dataSource = new ArrayDataSource(EXAMPLE_DATA); hasChild = (_, node) => node.expandable; getParentNode(node) { - const nodeIndex = TREE_DATA.indexOf(node); + const nodeIndex = EXAMPLE_DATA.indexOf(node); for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; } } return null; @@ -965,17 +904,70 @@ class CdkTreeCustomKeyManagerExample { } return true; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeCustomKeyManagerExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CdkTreeCustomKeyManagerExample, isStandalone: true, selector: "cdk-tree-custom-key-manager-example", providers: [VIM_TREE_KEY_MANAGER_PROVIDER], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeCustomKeyManagerExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CdkTreeCustomKeyManagerExample, isStandalone: true, selector: "cdk-tree-custom-key-manager-example", providers: [VIM_TREE_KEY_MANAGER_PROVIDER], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: CdkTreeModule }, { kind: "directive", type: i1.CdkTreeNodeDef, selector: "[cdkTreeNodeDef]", inputs: ["cdkTreeNodeDefWhen"] }, { kind: "directive", type: i1.CdkTreeNodePadding, selector: "[cdkTreeNodePadding]", inputs: ["cdkTreeNodePadding", "cdkTreeNodePaddingIndent"] }, { kind: "directive", type: i1.CdkTreeNodeToggle, selector: "[cdkTreeNodeToggle]", inputs: ["cdkTreeNodeToggleRecursive"] }, { kind: "component", type: i1.CdkTree, selector: "cdk-tree", inputs: ["dataSource", "treeControl", "levelAccessor", "childrenAccessor", "trackBy", "expansionKey"], exportAs: ["cdkTree"] }, { kind: "directive", type: i1.CdkTreeNode, selector: "cdk-tree-node", inputs: ["role", "isExpandable", "isExpanded", "isDisabled", "cdkTreeNodeTypeaheadLabel"], outputs: ["activation", "expandedChange"], exportAs: ["cdkTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CdkTreeCustomKeyManagerExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CdkTreeCustomKeyManagerExample, decorators: [{ type: Component, - args: [{ selector: 'cdk-tree-custom-key-manager-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], providers: [VIM_TREE_KEY_MANAGER_PROVIDER], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] + args: [{ selector: 'cdk-tree-custom-key-manager-example', imports: [CdkTreeModule, MatButtonModule, MatIconModule], providers: [VIM_TREE_KEY_MANAGER_PROVIDER], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }] }); - -/** - * Generated bundle index. Do not edit. - */ +const EXAMPLE_DATA = [ + { + name: 'Fruit', + expandable: true, + level: 0, + }, + { + name: 'Apple', + expandable: false, + level: 1, + }, + { + name: 'Banana', + expandable: false, + level: 1, + }, + { + name: 'Fruit loops', + expandable: false, + level: 1, + }, + { + name: 'Vegetables', + expandable: true, + level: 0, + }, + { + name: 'Green', + expandable: true, + level: 1, + }, + { + name: 'Broccoli', + expandable: false, + level: 2, + }, + { + name: 'Brussels sprouts', + expandable: false, + level: 2, + }, + { + name: 'Orange', + expandable: true, + level: 1, + }, + { + name: 'Pumpkins', + expandable: false, + level: 2, + }, + { + name: 'Carrots', + expandable: false, + level: 2, + }, +]; export { CdkTreeComplexExample, CdkTreeCustomKeyManagerExample, CdkTreeFlatChildrenAccessorExample, CdkTreeFlatExample, CdkTreeFlatLevelAccessorExample, CdkTreeNestedChildrenAccessorExample, CdkTreeNestedExample, CdkTreeNestedLevelAccessorExample }; //# sourceMappingURL=tree.mjs.map diff --git a/fesm2022/cdk/tree.mjs.map b/fesm2022/cdk/tree.mjs.map index f80d9dc355..4d2923357e 100755 --- a/fesm2022/cdk/tree.mjs.map +++ b/fesm2022/cdk/tree.mjs.map @@ -1 +1 @@ -{"version":3,"file":"tree.mjs","sources":["../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example-data.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example-data.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat/cdk-tree-flat-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-flat/cdk-tree-flat-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example-data.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example-data.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested/cdk-tree-nested-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-nested/cdk-tree-nested-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html","../../../../../../../src/components-examples/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example.ts","../../../../../../../src/components-examples/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example.html","../../../../../../../src/components-examples/cdk/tree/tree_public_index.ts"],"sourcesContent":["/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\nexport interface NestedFoodNode {\n name: string;\n children?: NestedFoodNode[];\n}\n\nexport const NESTED_DATA: NestedFoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {timer} from 'rxjs';\nimport {mapTo} from 'rxjs/operators';\nimport {NestedFoodNode, NESTED_DATA} from './cdk-tree-flat-children-accessor-example-data';\n\nfunction flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] {\n const flattenedNodes = [];\n for (const node of nodes) {\n flattenedNodes.push(node);\n if (node.children) {\n flattenedNodes.push(...flattenNodes(node.children));\n }\n }\n return flattenedNodes;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-children-accessor-example',\n templateUrl: 'cdk-tree-flat-children-accessor-example.html',\n styleUrls: ['cdk-tree-flat-children-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatChildrenAccessorExample {\n @ViewChild(CdkTree)\n tree!: CdkTree;\n\n childrenAccessor = (dataNode: NestedFoodNode) => timer(100).pipe(mapTo(dataNode.children ?? []));\n\n dataSource = new ArrayDataSource(NESTED_DATA);\n\n hasChild = (_: number, node: NestedFoodNode) => !!node.children?.length;\n\n getParentNode(node: NestedFoodNode) {\n for (const parent of flattenNodes(NESTED_DATA)) {\n if (parent.children?.includes(node)) {\n return parent;\n }\n }\n\n return null;\n }\n\n shouldRender(node: NestedFoodNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!this.tree.isExpanded(parent)) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","/** Flat node with expandable and level information */\nexport interface FlatFoodNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\nexport const FLAT_DATA: FlatFoodNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {FlatFoodNode, FLAT_DATA} from './cdk-tree-flat-level-accessor-example-data';\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-level-accessor-example',\n templateUrl: 'cdk-tree-flat-level-accessor-example.html',\n styleUrls: ['cdk-tree-flat-level-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatLevelAccessorExample {\n @ViewChild(CdkTree)\n tree: CdkTree;\n\n levelAccessor = (dataNode: FlatFoodNode) => dataNode.level;\n\n dataSource = new ArrayDataSource(FLAT_DATA);\n\n hasChild = (_: number, node: FlatFoodNode) => node.expandable;\n\n getParentNode(node: FlatFoodNode) {\n const nodeIndex = FLAT_DATA.indexOf(node);\n\n // Determine the node's parent by finding the first preceding node that's\n // one level shallower.\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (FLAT_DATA[i].level === node.level - 1) {\n return FLAT_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: FlatFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\nconst TREE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-example',\n templateUrl: 'cdk-tree-flat-example.html',\n styleUrl: 'cdk-tree-flat-example.css',\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(TREE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = TREE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (TREE_DATA[i].level === node.level - 1) {\n return TREE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: ExampleFlatNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!parent.isExpanded) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","/** Flat node with expandable and level information */\nexport interface FlatFoodNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\nexport const FLAT_DATA: FlatFoodNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {FLAT_DATA, FlatFoodNode} from './cdk-tree-nested-level-accessor-example-data';\n\n/**\n * @title Tree with nested nodes and level accessor\n */\n@Component({\n selector: 'cdk-tree-nested-level-accessor-example',\n templateUrl: 'cdk-tree-nested-level-accessor-example.html',\n styleUrls: ['cdk-tree-nested-level-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedLevelAccessorExample {\n @ViewChild(CdkTree) tree: CdkTree;\n\n levelAccessor = (dataNode: FlatFoodNode) => dataNode.level;\n\n dataSource = new ArrayDataSource(FLAT_DATA);\n\n hasChild = (_: number, node: FlatFoodNode) => node.expandable;\n\n getParentNode(node: FlatFoodNode) {\n const nodeIndex = FLAT_DATA.indexOf(node);\n\n // Determine the node's parent by finding the first preceding node that's\n // one level shallower.\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (FLAT_DATA[i].level === node.level - 1) {\n return FLAT_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: FlatFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n","/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\nexport interface NestedFoodNode {\n name: string;\n children?: NestedFoodNode[];\n}\n\nexport const NESTED_DATA: NestedFoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {NestedFoodNode, NESTED_DATA} from './cdk-tree-nested-children-accessor-example-data';\n\nfunction flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] {\n const flattenedNodes = [];\n for (const node of nodes) {\n flattenedNodes.push(node);\n if (node.children) {\n flattenedNodes.push(...flattenNodes(node.children));\n }\n }\n return flattenedNodes;\n}\n\n/**\n * @title Tree with nested nodes using childAccessor\n */\n@Component({\n selector: 'cdk-tree-nested-children-accessor-example',\n templateUrl: 'cdk-tree-nested-children-accessor-example.html',\n styleUrls: ['cdk-tree-nested-children-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedChildrenAccessorExample {\n @ViewChild(CdkTree) tree: CdkTree;\n\n childrenAccessor = (dataNode: NestedFoodNode) => dataNode.children ?? [];\n\n dataSource = new ArrayDataSource(NESTED_DATA);\n\n hasChild = (_: number, node: NestedFoodNode) => !!node.children && node.children.length > 0;\n\n getParentNode(node: NestedFoodNode) {\n for (const parent of flattenNodes(NESTED_DATA)) {\n if (parent.children?.includes(node)) {\n return parent;\n }\n }\n\n return null;\n }\n\n shouldRender(node: NestedFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {NestedTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\nconst TREE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n\n/**\n * @title Tree with nested nodes\n */\n@Component({\n selector: 'cdk-tree-nested-example',\n templateUrl: 'cdk-tree-nested-example.html',\n styleUrl: 'cdk-tree-nested-example.css',\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedExample {\n treeControl = new NestedTreeControl(node => node.children);\n dataSource = new ArrayDataSource(TREE_DATA);\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n","import {CdkTreeModule} from '@angular/cdk/tree';\nimport {CommonModule} from '@angular/common';\nimport {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {BehaviorSubject, Observable, combineLatest, of as observableOf} from 'rxjs';\nimport {delay, map, shareReplay} from 'rxjs/operators';\n\ninterface BackendData {\n id: string;\n name: string;\n parent?: string;\n children?: string[];\n}\n\nconst TREE_DATA: Map = new Map(\n [\n {\n id: '1',\n name: 'Fruit',\n children: ['1-1', '1-2', '1-3'],\n },\n {id: '1-1', name: 'Apple', parent: '1'},\n {id: '1-2', name: 'Banana', parent: '1'},\n {id: '1-3', name: 'Fruit Loops', parent: '1'},\n {\n id: '2',\n name: 'Vegetables',\n children: ['2-1', '2-2'],\n },\n {\n id: '2-1',\n name: 'Green',\n parent: '2',\n children: ['2-1-1', '2-1-2'],\n },\n {\n id: '2-2',\n name: 'Orange',\n parent: '2',\n children: ['2-2-1', '2-2-2'],\n },\n {id: '2-1-1', name: 'Broccoli', parent: '2-1'},\n {id: '2-1-2', name: 'Brussel sprouts', parent: '2-1'},\n {id: '2-2-1', name: 'Pumpkins', parent: '2-2'},\n {id: '2-2-2', name: 'Carrots', parent: '2-2'},\n ].map(datum => [datum.id, datum]),\n);\n\nclass FakeDataBackend {\n private _getRandomDelayTime() {\n // anywhere from 100 to 500ms.\n return Math.floor(Math.random() * 400) + 100;\n }\n\n getChildren(id: string): Observable {\n // first, find the specified ID in our tree\n const item = TREE_DATA.get(id);\n const children = item?.children ?? [];\n\n return observableOf(children.map(childId => TREE_DATA.get(childId)!)).pipe(\n delay(this._getRandomDelayTime()),\n );\n }\n\n getRoots(): Observable {\n return observableOf([...TREE_DATA.values()].filter(datum => !datum.parent)).pipe(\n delay(this._getRandomDelayTime()),\n );\n }\n}\n\ntype LoadingState = 'INIT' | 'LOADING' | 'LOADED';\n\ninterface RawData {\n id: string;\n name: string;\n parentId?: string;\n childrenIds?: string[];\n childrenLoading: LoadingState;\n}\n\nclass TransformedData {\n constructor(public raw: RawData) {}\n\n areChildrenLoading() {\n return this.raw.childrenLoading === 'LOADING';\n }\n\n isExpandable() {\n return (\n (this.raw.childrenLoading === 'INIT' || this.raw.childrenLoading === 'LOADED') &&\n !!this.raw.childrenIds?.length\n );\n }\n\n isLeaf() {\n return !this.isExpandable() && !this.areChildrenLoading();\n }\n}\n\ninterface State {\n rootIds: string[];\n rootsLoading: LoadingState;\n allData: Map;\n dataLoading: Map;\n}\n\ntype ObservedValueOf = T extends Observable ? U : never;\n\ntype ObservedValuesOf[]> = {\n [K in keyof T]: ObservedValueOf;\n};\n\ntype TransformFn[], U> = (\n ...args: [...ObservedValuesOf, State]\n) => U;\n\nclass ComplexDataStore {\n private readonly _backend = new FakeDataBackend();\n\n private _state = new BehaviorSubject({\n rootIds: [],\n rootsLoading: 'INIT',\n allData: new Map(),\n dataLoading: new Map(),\n });\n\n private readonly _rootIds = this.select(state => state.rootIds);\n private readonly _allData = this.select(state => state.allData);\n private readonly _loadingData = this.select(state => state.dataLoading);\n private readonly _rootsLoadingState = this.select(state => state.rootsLoading);\n readonly areRootsLoading = this.select(\n this._rootIds,\n this._loadingData,\n this._rootsLoadingState,\n (rootIds, loading, rootsLoading) =>\n rootsLoading !== 'LOADED' || rootIds.some(id => loading.get(id) !== 'LOADED'),\n );\n readonly roots = this.select(\n this.areRootsLoading,\n this._rootIds,\n this._allData,\n (rootsLoading, rootIds, data) => {\n if (rootsLoading) {\n return [];\n }\n return this._getDataByIds(rootIds, data);\n },\n );\n\n getChildren(parentId: string) {\n return this.select(this._allData, this._loadingData, (data, loading) => {\n const parentData = data.get(parentId);\n if (parentData?.childrenLoading !== 'LOADED') {\n return [];\n }\n const childIds = parentData.childrenIds ?? [];\n if (childIds.some(id => loading.get(id) !== 'LOADED')) {\n return [];\n }\n return this._getDataByIds(childIds, data);\n });\n }\n\n loadRoots() {\n this._setRootsLoading();\n this._backend.getRoots().subscribe(roots => {\n this._setRoots(roots);\n });\n }\n\n loadChildren(parentId: string) {\n this._setChildrenLoading(parentId);\n this._backend.getChildren(parentId).subscribe(children => {\n this._addLoadedData(parentId, children);\n });\n }\n\n private _setRootsLoading() {\n this._state.next({\n ...this._state.value,\n rootsLoading: 'LOADING',\n });\n }\n\n private _setRoots(roots: BackendData[]) {\n const currentState = this._state.value;\n\n this._state.next({\n ...currentState,\n rootIds: roots.map(root => root.id),\n rootsLoading: 'LOADED',\n ...this._addData(currentState, roots),\n });\n }\n\n private _setChildrenLoading(parentId: string) {\n const currentState = this._state.value;\n const parentData = currentState.allData.get(parentId);\n\n this._state.next({\n ...currentState,\n allData: new Map([\n ...currentState.allData,\n ...(parentData ? ([[parentId, {...parentData, childrenLoading: 'LOADING'}]] as const) : []),\n ]),\n dataLoading: new Map([\n ...currentState.dataLoading,\n ...(parentData?.childrenIds?.map(childId => [childId, 'LOADING'] as const) ?? []),\n ]),\n });\n }\n\n private _addLoadedData(parentId: string, childData: BackendData[]) {\n const currentState = this._state.value;\n\n this._state.next({\n ...currentState,\n ...this._addData(currentState, childData, parentId),\n });\n }\n\n private _addData(\n {allData, dataLoading}: State,\n data: BackendData[],\n parentId?: string,\n ): Pick {\n const parentData = parentId && allData.get(parentId);\n const allChildren = data.flatMap(datum => datum.children ?? []);\n return {\n allData: new Map([\n ...allData,\n ...data.map(datum => {\n return [\n datum.id,\n {\n id: datum.id,\n name: datum.name,\n parentId,\n childrenIds: datum.children,\n childrenLoading: 'INIT',\n },\n ] as const;\n }),\n ...(parentData ? ([[parentId, {...parentData, childrenLoading: 'LOADED'}]] as const) : []),\n ]),\n dataLoading: new Map([\n ...dataLoading,\n ...data.map(datum => [datum.id, 'LOADED'] as const),\n ...allChildren.map(childId => [childId, 'INIT'] as const),\n ]),\n };\n }\n\n private _getDataByIds(ids: string[], data: State['allData']) {\n return ids\n .map(id => data.get(id))\n .filter((item: T | undefined): item is T => !!item)\n .map(datum => new TransformedData(datum));\n }\n\n select[], U>(\n ...sourcesAndTransform: [...T, TransformFn]\n ) {\n const sources = sourcesAndTransform.slice(0, -1) as unknown as T;\n const transformFn = sourcesAndTransform[sourcesAndTransform.length - 1] as TransformFn;\n\n return combineLatest([...sources, this._state]).pipe(\n map(args => transformFn(...(args as [...ObservedValuesOf, State]))),\n shareReplay({refCount: true, bufferSize: 1}),\n );\n }\n}\n\n/**\n * @title Complex example making use of the redux pattern.\n */\n@Component({\n selector: 'cdk-tree-complex-example',\n templateUrl: 'cdk-tree-complex-example.html',\n styleUrls: ['cdk-tree-complex-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule, CommonModule, MatProgressSpinnerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeComplexExample implements OnInit {\n private readonly _dataStore = new ComplexDataStore();\n\n areRootsLoading = this._dataStore.areRootsLoading;\n roots = this._dataStore.roots;\n\n getChildren = (node: TransformedData) => this._dataStore.getChildren(node.raw.id);\n trackBy = (index: number, node: TransformedData) => this.expansionKey(node);\n expansionKey = (node: TransformedData) => node.raw.id;\n\n ngOnInit() {\n this._dataStore.loadRoots();\n }\n\n onExpand(node: TransformedData, expanded: boolean) {\n if (expanded) {\n // Only perform a load on expansion.\n this._dataStore.loadChildren(node.raw.id);\n }\n }\n}\n","@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n","import {ChangeDetectionStrategy, Component, QueryList} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {coerceObservable} from '@angular/cdk/coercion/private';\nimport {FlatTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n TREE_KEY_MANAGER,\n TreeKeyManagerFactory,\n TreeKeyManagerItem,\n TreeKeyManagerStrategy,\n} from '@angular/cdk/a11y';\nimport {\n DOWN_ARROW,\n END,\n ENTER,\n H,\n HOME,\n J,\n K,\n L,\n LEFT_ARROW,\n RIGHT_ARROW,\n SPACE,\n TAB,\n UP_ARROW,\n} from '@angular/cdk/keycodes';\nimport {Subject, isObservable, Observable} from 'rxjs';\nimport {take} from 'rxjs/operators';\n\nconst TREE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * This class manages keyboard events for trees. If you pass it a QueryList or other list of tree\n * items, it will set the active item, focus, handle expansion and typeahead correctly when\n * keyboard events occur.\n */\nexport class VimTreeKeyManager implements TreeKeyManagerStrategy {\n private _activeItemIndex = -1;\n private _activeItem: T | null = null;\n\n private _items: T[] = [];\n\n private _hasInitialFocused = false;\n\n private _initialFocus() {\n if (this._hasInitialFocused) {\n return;\n }\n\n if (!this._items.length) {\n return;\n }\n\n this._focusFirstItem();\n\n this._hasInitialFocused = true;\n }\n\n // TreeKeyManagerOptions not implemented.\n constructor(items: Observable | QueryList | T[]) {\n // We allow for the items to be an array or Observable because, in some cases, the consumer may\n // not have access to a QueryList of the items they want to manage (e.g. when the\n // items aren't being collected via `ViewChildren` or `ContentChildren`).\n if (items instanceof QueryList) {\n this._items = items.toArray();\n items.changes.subscribe((newItems: QueryList) => {\n this._items = newItems.toArray();\n this._updateActiveItemIndex(this._items);\n this._initialFocus();\n });\n } else if (isObservable(items)) {\n items.subscribe(newItems => {\n this._items = newItems;\n this._updateActiveItemIndex(newItems);\n this._initialFocus();\n });\n } else {\n this._items = items;\n this._initialFocus();\n }\n }\n\n destroy() {\n this.change.complete();\n }\n\n /** Stream that emits any time the focused item changes. */\n readonly change = new Subject();\n\n /**\n * Handles a keyboard event on the tree.\n * @param event Keyboard event that represents the user interaction with the tree.\n */\n onKeydown(event: KeyboardEvent) {\n const keyCode = event.keyCode;\n\n switch (keyCode) {\n case TAB:\n // Return early here, in order to allow Tab to actually tab out of the tree\n return;\n\n case DOWN_ARROW:\n case J:\n this._focusNextItem();\n break;\n\n case UP_ARROW:\n case K:\n this._focusPreviousItem();\n break;\n\n case RIGHT_ARROW:\n case L:\n this._expandCurrentItem();\n break;\n\n case LEFT_ARROW:\n case H:\n this._collapseCurrentItem();\n break;\n\n case HOME:\n this._focusFirstItem();\n break;\n\n case END:\n this._focusLastItem();\n break;\n\n case ENTER:\n case SPACE:\n this._activateCurrentItem();\n break;\n }\n }\n\n /** Index of the currently active item. */\n getActiveItemIndex(): number | null {\n return this._activeItemIndex;\n }\n\n /** The currently active item. */\n getActiveItem(): T | null {\n return this._activeItem;\n }\n\n /**\n * Focus the provided item by index.\n * @param index The index of the item to focus.\n * @param options Additional focusing options.\n */\n focusItem(index: number, options?: {emitChangeEvent?: boolean}): void;\n /**\n * Focus the provided item.\n * @param item The item to focus. Equality is determined via the trackBy function.\n * @param options Additional focusing options.\n */\n focusItem(item: T, options?: {emitChangeEvent?: boolean}): void;\n focusItem(itemOrIndex: number | T, options?: {emitChangeEvent?: boolean}): void;\n focusItem(itemOrIndex: number | T, options: {emitChangeEvent?: boolean} = {}) {\n // Set default options\n options.emitChangeEvent ??= true;\n\n let index =\n typeof itemOrIndex === 'number'\n ? itemOrIndex\n : this._items.findIndex(item => item === itemOrIndex);\n if (index < 0 || index >= this._items.length) {\n return;\n }\n const activeItem = this._items[index];\n\n // If we're just setting the same item, don't re-call activate or focus\n if (this._activeItem !== null && activeItem === this._activeItem) {\n return;\n }\n\n this._activeItem = activeItem ?? null;\n this._activeItemIndex = index;\n\n if (options.emitChangeEvent) {\n // Emit to `change` stream as required by TreeKeyManagerStrategy interface.\n this.change.next(this._activeItem);\n }\n this._activeItem?.focus();\n this._activateCurrentItem();\n }\n\n private _updateActiveItemIndex(newItems: T[]) {\n const activeItem = this._activeItem;\n if (activeItem) {\n const newIndex = newItems.findIndex(item => item === activeItem);\n\n if (newIndex > -1 && newIndex !== this._activeItemIndex) {\n this._activeItemIndex = newIndex;\n }\n }\n }\n\n /** Focus the first available item. */\n private _focusFirstItem(): void {\n this.focusItem(this._findNextAvailableItemIndex(-1));\n }\n\n /** Focus the last available item. */\n private _focusLastItem(): void {\n this.focusItem(this._findPreviousAvailableItemIndex(this._items.length));\n }\n\n /** Focus the next available item. */\n private _focusNextItem(): void {\n this.focusItem(this._findNextAvailableItemIndex(this._activeItemIndex));\n }\n\n /** Focus the previous available item. */\n private _focusPreviousItem(): void {\n this.focusItem(this._findPreviousAvailableItemIndex(this._activeItemIndex));\n }\n\n //// Navigational methods\n private _findNextAvailableItemIndex(startingIndex: number) {\n if (startingIndex + 1 < this._items.length) {\n return startingIndex + 1;\n }\n return startingIndex;\n }\n\n private _findPreviousAvailableItemIndex(startingIndex: number) {\n if (startingIndex - 1 >= 0) {\n return startingIndex - 1;\n }\n return startingIndex;\n }\n\n /**\n * If the item is already expanded, we collapse the item. Otherwise, we will focus the parent.\n */\n private _collapseCurrentItem() {\n if (!this._activeItem) {\n return;\n }\n\n if (this._isCurrentItemExpanded()) {\n this._activeItem.collapse();\n } else {\n const parent = this._activeItem.getParent();\n if (!parent) {\n return;\n }\n this.focusItem(parent as T);\n }\n }\n\n /**\n * If the item is already collapsed, we expand the item. Otherwise, we will focus the first child.\n */\n private _expandCurrentItem() {\n if (!this._activeItem) {\n return;\n }\n\n if (!this._isCurrentItemExpanded()) {\n this._activeItem.expand();\n } else {\n coerceObservable(this._activeItem.getChildren())\n .pipe(take(1))\n .subscribe(children => {\n const firstChild = children[0];\n if (!firstChild) {\n return;\n }\n this.focusItem(firstChild as T);\n });\n }\n }\n\n private _isCurrentItemExpanded() {\n if (!this._activeItem) {\n return false;\n }\n return typeof this._activeItem.isExpanded === 'boolean'\n ? this._activeItem.isExpanded\n : this._activeItem.isExpanded();\n }\n\n private _activateCurrentItem() {\n this._activeItem?.activate();\n }\n}\n\nfunction VimTreeKeyManagerFactory(): TreeKeyManagerFactory {\n return items => new VimTreeKeyManager(items);\n}\n\nconst VIM_TREE_KEY_MANAGER_PROVIDER = {\n provide: TREE_KEY_MANAGER,\n useFactory: VimTreeKeyManagerFactory,\n};\n\n/**\n * @title Tree with vim keyboard commands.\n */\n@Component({\n selector: 'cdk-tree-custom-key-manager-example',\n templateUrl: 'cdk-tree-custom-key-manager-example.html',\n styleUrls: ['cdk-tree-custom-key-manager-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n providers: [VIM_TREE_KEY_MANAGER_PROVIDER],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeCustomKeyManagerExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(TREE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = TREE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (TREE_DATA[i].level === node.level - 1) {\n return TREE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: ExampleFlatNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!parent.isExpanded) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["NESTED_DATA","flattenNodes","FLAT_DATA","TREE_DATA","observableOf"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"tree.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat-children-accessor/cdk-tree-flat-children-accessor-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat-level-accessor/cdk-tree-flat-level-accessor-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat/cdk-tree-flat-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-flat/cdk-tree-flat-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested-level-accessor/cdk-tree-nested-level-accessor-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested-children-accessor/cdk-tree-nested-children-accessor-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested/cdk-tree-nested-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-nested/cdk-tree-nested-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-complex/cdk-tree-complex-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/cdk/tree/cdk-tree-custom-key-manager/cdk-tree-custom-key-manager-example.html"],"sourcesContent":["import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {timer} from 'rxjs';\nimport {mapTo} from 'rxjs/operators';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface NestedFoodNode {\n name: string;\n children?: NestedFoodNode[];\n}\n\nfunction flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] {\n const flattenedNodes = [];\n for (const node of nodes) {\n flattenedNodes.push(node);\n if (node.children) {\n flattenedNodes.push(...flattenNodes(node.children));\n }\n }\n return flattenedNodes;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-children-accessor-example',\n templateUrl: 'cdk-tree-flat-children-accessor-example.html',\n styleUrls: ['cdk-tree-flat-children-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatChildrenAccessorExample {\n @ViewChild(CdkTree)\n tree!: CdkTree;\n\n childrenAccessor = (dataNode: NestedFoodNode) => timer(100).pipe(mapTo(dataNode.children ?? []));\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: NestedFoodNode) => !!node.children?.length;\n\n getParentNode(node: NestedFoodNode) {\n for (const parent of flattenNodes(EXAMPLE_DATA)) {\n if (parent.children?.includes(node)) {\n return parent;\n }\n }\n\n return null;\n }\n\n shouldRender(node: NestedFoodNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!this.tree.isExpanded(parent)) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n\nconst EXAMPLE_DATA: NestedFoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\n\n/** Flat node with expandable and level information */\ninterface FlatFoodNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-level-accessor-example',\n templateUrl: 'cdk-tree-flat-level-accessor-example.html',\n styleUrls: ['cdk-tree-flat-level-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatLevelAccessorExample {\n @ViewChild(CdkTree)\n tree: CdkTree;\n\n levelAccessor = (dataNode: FlatFoodNode) => dataNode.level;\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: FlatFoodNode) => node.expandable;\n\n getParentNode(node: FlatFoodNode) {\n const nodeIndex = EXAMPLE_DATA.indexOf(node);\n\n // Determine the node's parent by finding the first preceding node that's\n // one level shallower.\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (EXAMPLE_DATA[i].level === node.level - 1) {\n return EXAMPLE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: FlatFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n\nconst EXAMPLE_DATA: FlatFoodNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'cdk-tree-flat-example',\n templateUrl: 'cdk-tree-flat-example.html',\n styleUrl: 'cdk-tree-flat-example.css',\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeFlatExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = EXAMPLE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (EXAMPLE_DATA[i].level === node.level - 1) {\n return EXAMPLE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: ExampleFlatNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!parent.isExpanded) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n\nconst EXAMPLE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\n\n/** Flat node with expandable and level information */\ninterface FlatFoodNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * @title Tree with nested nodes and level accessor\n */\n@Component({\n selector: 'cdk-tree-nested-level-accessor-example',\n templateUrl: 'cdk-tree-nested-level-accessor-example.html',\n styleUrls: ['cdk-tree-nested-level-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedLevelAccessorExample {\n @ViewChild(CdkTree) tree: CdkTree;\n\n levelAccessor = (dataNode: FlatFoodNode) => dataNode.level;\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: FlatFoodNode) => node.expandable;\n\n getParentNode(node: FlatFoodNode) {\n const nodeIndex = EXAMPLE_DATA.indexOf(node);\n\n // Determine the node's parent by finding the first preceding node that's\n // one level shallower.\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (EXAMPLE_DATA[i].level === node.level - 1) {\n return EXAMPLE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: FlatFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n\nconst EXAMPLE_DATA: FlatFoodNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n \n
    \n","import {ArrayDataSource} from '@angular/cdk/collections';\nimport {CdkTree, CdkTreeModule} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, ViewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface NestedFoodNode {\n name: string;\n children?: NestedFoodNode[];\n}\n\nfunction flattenNodes(nodes: NestedFoodNode[]): NestedFoodNode[] {\n const flattenedNodes = [];\n for (const node of nodes) {\n flattenedNodes.push(node);\n if (node.children) {\n flattenedNodes.push(...flattenNodes(node.children));\n }\n }\n return flattenedNodes;\n}\n\n/**\n * @title Tree with nested nodes using childAccessor\n */\n@Component({\n selector: 'cdk-tree-nested-children-accessor-example',\n templateUrl: 'cdk-tree-nested-children-accessor-example.html',\n styleUrls: ['cdk-tree-nested-children-accessor-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedChildrenAccessorExample {\n @ViewChild(CdkTree) tree: CdkTree;\n\n childrenAccessor = (dataNode: NestedFoodNode) => dataNode.children ?? [];\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: NestedFoodNode) => !!node.children && node.children.length > 0;\n\n getParentNode(node: NestedFoodNode) {\n for (const parent of flattenNodes(EXAMPLE_DATA)) {\n if (parent.children?.includes(node)) {\n return parent;\n }\n }\n\n return null;\n }\n\n shouldRender(node: NestedFoodNode): boolean {\n // This node should render if it is a root node or if all of its ancestors are expanded.\n const parent = this.getParentNode(node);\n return !parent || (!!this.tree?.isExpanded(parent) && this.shouldRender(parent));\n }\n}\n\nconst EXAMPLE_DATA: NestedFoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {NestedTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\n/**\n * @title Tree with nested nodes\n */\n@Component({\n selector: 'cdk-tree-nested-example',\n templateUrl: 'cdk-tree-nested-example.html',\n styleUrl: 'cdk-tree-nested-example.css',\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeNestedExample {\n treeControl = new NestedTreeControl(node => node.children);\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n\nconst EXAMPLE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n \n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n {{node.name}}\n
    \n \n
    \n
    \n
    \n","import {CdkTreeModule} from '@angular/cdk/tree';\nimport {CommonModule} from '@angular/common';\nimport {ChangeDetectionStrategy, Component, OnInit} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {BehaviorSubject, Observable, combineLatest, of as observableOf} from 'rxjs';\nimport {delay, map, shareReplay} from 'rxjs/operators';\n\ninterface BackendData {\n id: string;\n name: string;\n parent?: string;\n children?: string[];\n}\n\nclass FakeDataBackend {\n private _getRandomDelayTime() {\n // anywhere from 100 to 500ms.\n return Math.floor(Math.random() * 400) + 100;\n }\n\n getChildren(id: string): Observable {\n // first, find the specified ID in our tree\n const item = EXAMPLE_DATA.get(id);\n const children = item?.children ?? [];\n\n return observableOf(children.map(childId => EXAMPLE_DATA.get(childId)!)).pipe(\n delay(this._getRandomDelayTime()),\n );\n }\n\n getRoots(): Observable {\n return observableOf([...EXAMPLE_DATA.values()].filter(datum => !datum.parent)).pipe(\n delay(this._getRandomDelayTime()),\n );\n }\n}\n\ntype LoadingState = 'INIT' | 'LOADING' | 'LOADED';\n\ninterface RawData {\n id: string;\n name: string;\n parentId?: string;\n childrenIds?: string[];\n childrenLoading: LoadingState;\n}\n\nclass TransformedData {\n constructor(public raw: RawData) {}\n\n areChildrenLoading() {\n return this.raw.childrenLoading === 'LOADING';\n }\n\n isExpandable() {\n return (\n (this.raw.childrenLoading === 'INIT' || this.raw.childrenLoading === 'LOADED') &&\n !!this.raw.childrenIds?.length\n );\n }\n\n isLeaf() {\n return !this.isExpandable() && !this.areChildrenLoading();\n }\n}\n\ninterface State {\n rootIds: string[];\n rootsLoading: LoadingState;\n allData: Map;\n dataLoading: Map;\n}\n\ntype ObservedValueOf = T extends Observable ? U : never;\n\ntype ObservedValuesOf[]> = {\n [K in keyof T]: ObservedValueOf;\n};\n\ntype TransformFn[], U> = (\n ...args: [...ObservedValuesOf, State]\n) => U;\n\nclass ComplexDataStore {\n private readonly _backend = new FakeDataBackend();\n\n private _state = new BehaviorSubject({\n rootIds: [],\n rootsLoading: 'INIT',\n allData: new Map(),\n dataLoading: new Map(),\n });\n\n private readonly _rootIds = this.select(state => state.rootIds);\n private readonly _allData = this.select(state => state.allData);\n private readonly _loadingData = this.select(state => state.dataLoading);\n private readonly _rootsLoadingState = this.select(state => state.rootsLoading);\n readonly areRootsLoading = this.select(\n this._rootIds,\n this._loadingData,\n this._rootsLoadingState,\n (rootIds, loading, rootsLoading) =>\n rootsLoading !== 'LOADED' || rootIds.some(id => loading.get(id) !== 'LOADED'),\n );\n readonly roots = this.select(\n this.areRootsLoading,\n this._rootIds,\n this._allData,\n (rootsLoading, rootIds, data) => {\n if (rootsLoading) {\n return [];\n }\n return this._getDataByIds(rootIds, data);\n },\n );\n\n getChildren(parentId: string) {\n return this.select(this._allData, this._loadingData, (data, loading) => {\n const parentData = data.get(parentId);\n if (parentData?.childrenLoading !== 'LOADED') {\n return [];\n }\n const childIds = parentData.childrenIds ?? [];\n if (childIds.some(id => loading.get(id) !== 'LOADED')) {\n return [];\n }\n return this._getDataByIds(childIds, data);\n });\n }\n\n loadRoots() {\n this._setRootsLoading();\n this._backend.getRoots().subscribe(roots => {\n this._setRoots(roots);\n });\n }\n\n loadChildren(parentId: string) {\n this._setChildrenLoading(parentId);\n this._backend.getChildren(parentId).subscribe(children => {\n this._addLoadedData(parentId, children);\n });\n }\n\n private _setRootsLoading() {\n this._state.next({\n ...this._state.value,\n rootsLoading: 'LOADING',\n });\n }\n\n private _setRoots(roots: BackendData[]) {\n const currentState = this._state.value;\n\n this._state.next({\n ...currentState,\n rootIds: roots.map(root => root.id),\n rootsLoading: 'LOADED',\n ...this._addData(currentState, roots),\n });\n }\n\n private _setChildrenLoading(parentId: string) {\n const currentState = this._state.value;\n const parentData = currentState.allData.get(parentId);\n\n this._state.next({\n ...currentState,\n allData: new Map([\n ...currentState.allData,\n ...(parentData ? ([[parentId, {...parentData, childrenLoading: 'LOADING'}]] as const) : []),\n ]),\n dataLoading: new Map([\n ...currentState.dataLoading,\n ...(parentData?.childrenIds?.map(childId => [childId, 'LOADING'] as const) ?? []),\n ]),\n });\n }\n\n private _addLoadedData(parentId: string, childData: BackendData[]) {\n const currentState = this._state.value;\n\n this._state.next({\n ...currentState,\n ...this._addData(currentState, childData, parentId),\n });\n }\n\n private _addData(\n {allData, dataLoading}: State,\n data: BackendData[],\n parentId?: string,\n ): Pick {\n const parentData = parentId && allData.get(parentId);\n const allChildren = data.flatMap(datum => datum.children ?? []);\n return {\n allData: new Map([\n ...allData,\n ...data.map(datum => {\n return [\n datum.id,\n {\n id: datum.id,\n name: datum.name,\n parentId,\n childrenIds: datum.children,\n childrenLoading: 'INIT',\n },\n ] as const;\n }),\n ...(parentData ? ([[parentId, {...parentData, childrenLoading: 'LOADED'}]] as const) : []),\n ]),\n dataLoading: new Map([\n ...dataLoading,\n ...data.map(datum => [datum.id, 'LOADED'] as const),\n ...allChildren.map(childId => [childId, 'INIT'] as const),\n ]),\n };\n }\n\n private _getDataByIds(ids: string[], data: State['allData']) {\n return ids\n .map(id => data.get(id))\n .filter((item: T | undefined): item is T => !!item)\n .map(datum => new TransformedData(datum));\n }\n\n select[], U>(\n ...sourcesAndTransform: [...T, TransformFn]\n ) {\n const sources = sourcesAndTransform.slice(0, -1) as unknown as T;\n const transformFn = sourcesAndTransform[sourcesAndTransform.length - 1] as TransformFn;\n\n return combineLatest([...sources, this._state]).pipe(\n map(args => transformFn(...(args as unknown as [...ObservedValuesOf, State]))),\n shareReplay({refCount: true, bufferSize: 1}),\n );\n }\n}\n\n/**\n * @title Complex example making use of the redux pattern.\n */\n@Component({\n selector: 'cdk-tree-complex-example',\n templateUrl: 'cdk-tree-complex-example.html',\n styleUrls: ['cdk-tree-complex-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule, CommonModule, MatProgressSpinnerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeComplexExample implements OnInit {\n private readonly _dataStore = new ComplexDataStore();\n\n areRootsLoading = this._dataStore.areRootsLoading;\n roots = this._dataStore.roots;\n\n getChildren = (node: TransformedData) => this._dataStore.getChildren(node.raw.id);\n trackBy = (index: number, node: TransformedData) => this.expansionKey(node);\n expansionKey = (node: TransformedData) => node.raw.id;\n\n ngOnInit() {\n this._dataStore.loadRoots();\n }\n\n onExpand(node: TransformedData, expanded: boolean) {\n if (expanded) {\n // Only perform a load on expansion.\n this._dataStore.loadChildren(node.raw.id);\n }\n }\n}\n\nconst EXAMPLE_DATA = new Map(\n [\n {\n id: '1',\n name: 'Fruit',\n children: ['1-1', '1-2', '1-3'],\n },\n {id: '1-1', name: 'Apple', parent: '1'},\n {id: '1-2', name: 'Banana', parent: '1'},\n {id: '1-3', name: 'Fruit Loops', parent: '1'},\n {\n id: '2',\n name: 'Vegetables',\n children: ['2-1', '2-2'],\n },\n {\n id: '2-1',\n name: 'Green',\n parent: '2',\n children: ['2-1-1', '2-1-2'],\n },\n {\n id: '2-2',\n name: 'Orange',\n parent: '2',\n children: ['2-2-1', '2-2-2'],\n },\n {id: '2-1-1', name: 'Broccoli', parent: '2-1'},\n {id: '2-1-2', name: 'Brussel sprouts', parent: '2-1'},\n {id: '2-2-1', name: 'Pumpkins', parent: '2-2'},\n {id: '2-2-2', name: 'Carrots', parent: '2-2'},\n ].map(datum => [datum.id, datum]),\n);\n","@if (areRootsLoading | async) {\n \n} @else {\n \n \n \n @if (node.areChildrenLoading()) {\n \n }\n\n @if (!node.areChildrenLoading() && node.isExpandable()) {\n \n \n {{tree.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n \n \n }\n\n \n @if (node.isLeaf()) {\n
    \n }\n\n {{node.raw.name}}\n \n \n}\n","import {ChangeDetectionStrategy, Component, QueryList} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {coerceObservable} from '@angular/cdk/coercion/private';\nimport {FlatTreeControl, CdkTreeModule} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n TREE_KEY_MANAGER,\n TreeKeyManagerFactory,\n TreeKeyManagerItem,\n TreeKeyManagerStrategy,\n} from '@angular/cdk/a11y';\nimport {\n DOWN_ARROW,\n END,\n ENTER,\n H,\n HOME,\n J,\n K,\n L,\n LEFT_ARROW,\n RIGHT_ARROW,\n SPACE,\n TAB,\n UP_ARROW,\n} from '@angular/cdk/keycodes';\nimport {Subject, isObservable, Observable} from 'rxjs';\nimport {take} from 'rxjs/operators';\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n isExpanded?: boolean;\n}\n\n/**\n * This class manages keyboard events for trees. If you pass it a QueryList or other list of tree\n * items, it will set the active item, focus, handle expansion and typeahead correctly when\n * keyboard events occur.\n */\nexport class VimTreeKeyManager implements TreeKeyManagerStrategy {\n private _activeItemIndex = -1;\n private _activeItem: T | null = null;\n\n private _items: T[] = [];\n\n private _hasInitialFocused = false;\n\n private _initialFocus() {\n if (this._hasInitialFocused) {\n return;\n }\n\n if (!this._items.length) {\n return;\n }\n\n this._focusFirstItem();\n\n this._hasInitialFocused = true;\n }\n\n // TreeKeyManagerOptions not implemented.\n constructor(items: Observable | QueryList | T[]) {\n // We allow for the items to be an array or Observable because, in some cases, the consumer may\n // not have access to a QueryList of the items they want to manage (e.g. when the\n // items aren't being collected via `ViewChildren` or `ContentChildren`).\n if (items instanceof QueryList) {\n this._items = items.toArray();\n items.changes.subscribe((newItems: QueryList) => {\n this._items = newItems.toArray();\n this._updateActiveItemIndex(this._items);\n this._initialFocus();\n });\n } else if (isObservable(items)) {\n items.subscribe(newItems => {\n this._items = newItems;\n this._updateActiveItemIndex(newItems);\n this._initialFocus();\n });\n } else {\n this._items = items;\n this._initialFocus();\n }\n }\n\n destroy() {\n this.change.complete();\n }\n\n /** Stream that emits any time the focused item changes. */\n readonly change = new Subject();\n\n /**\n * Handles a keyboard event on the tree.\n * @param event Keyboard event that represents the user interaction with the tree.\n */\n onKeydown(event: KeyboardEvent) {\n const keyCode = event.keyCode;\n\n switch (keyCode) {\n case TAB:\n // Return early here, in order to allow Tab to actually tab out of the tree\n return;\n\n case DOWN_ARROW:\n case J:\n this._focusNextItem();\n break;\n\n case UP_ARROW:\n case K:\n this._focusPreviousItem();\n break;\n\n case RIGHT_ARROW:\n case L:\n this._expandCurrentItem();\n break;\n\n case LEFT_ARROW:\n case H:\n this._collapseCurrentItem();\n break;\n\n case HOME:\n this._focusFirstItem();\n break;\n\n case END:\n this._focusLastItem();\n break;\n\n case ENTER:\n case SPACE:\n this._activateCurrentItem();\n break;\n }\n }\n\n /** Index of the currently active item. */\n getActiveItemIndex(): number | null {\n return this._activeItemIndex;\n }\n\n /** The currently active item. */\n getActiveItem(): T | null {\n return this._activeItem;\n }\n\n /**\n * Focus the provided item by index.\n * @param index The index of the item to focus.\n * @param options Additional focusing options.\n */\n focusItem(index: number, options?: {emitChangeEvent?: boolean}): void;\n /**\n * Focus the provided item.\n * @param item The item to focus. Equality is determined via the trackBy function.\n * @param options Additional focusing options.\n */\n focusItem(item: T, options?: {emitChangeEvent?: boolean}): void;\n focusItem(itemOrIndex: number | T, options?: {emitChangeEvent?: boolean}): void;\n focusItem(itemOrIndex: number | T, options: {emitChangeEvent?: boolean} = {}) {\n // Set default options\n options.emitChangeEvent ??= true;\n\n let index =\n typeof itemOrIndex === 'number'\n ? itemOrIndex\n : this._items.findIndex(item => item === itemOrIndex);\n if (index < 0 || index >= this._items.length) {\n return;\n }\n const activeItem = this._items[index];\n\n // If we're just setting the same item, don't re-call activate or focus\n if (this._activeItem !== null && activeItem === this._activeItem) {\n return;\n }\n\n this._activeItem = activeItem ?? null;\n this._activeItemIndex = index;\n\n if (options.emitChangeEvent) {\n // Emit to `change` stream as required by TreeKeyManagerStrategy interface.\n this.change.next(this._activeItem);\n }\n this._activeItem?.focus();\n this._activateCurrentItem();\n }\n\n private _updateActiveItemIndex(newItems: T[]) {\n const activeItem = this._activeItem;\n if (activeItem) {\n const newIndex = newItems.findIndex(item => item === activeItem);\n\n if (newIndex > -1 && newIndex !== this._activeItemIndex) {\n this._activeItemIndex = newIndex;\n }\n }\n }\n\n /** Focus the first available item. */\n private _focusFirstItem(): void {\n this.focusItem(this._findNextAvailableItemIndex(-1));\n }\n\n /** Focus the last available item. */\n private _focusLastItem(): void {\n this.focusItem(this._findPreviousAvailableItemIndex(this._items.length));\n }\n\n /** Focus the next available item. */\n private _focusNextItem(): void {\n this.focusItem(this._findNextAvailableItemIndex(this._activeItemIndex));\n }\n\n /** Focus the previous available item. */\n private _focusPreviousItem(): void {\n this.focusItem(this._findPreviousAvailableItemIndex(this._activeItemIndex));\n }\n\n //// Navigational methods\n private _findNextAvailableItemIndex(startingIndex: number) {\n if (startingIndex + 1 < this._items.length) {\n return startingIndex + 1;\n }\n return startingIndex;\n }\n\n private _findPreviousAvailableItemIndex(startingIndex: number) {\n if (startingIndex - 1 >= 0) {\n return startingIndex - 1;\n }\n return startingIndex;\n }\n\n /**\n * If the item is already expanded, we collapse the item. Otherwise, we will focus the parent.\n */\n private _collapseCurrentItem() {\n if (!this._activeItem) {\n return;\n }\n\n if (this._isCurrentItemExpanded()) {\n this._activeItem.collapse();\n } else {\n const parent = this._activeItem.getParent();\n if (!parent) {\n return;\n }\n this.focusItem(parent as T);\n }\n }\n\n /**\n * If the item is already collapsed, we expand the item. Otherwise, we will focus the first child.\n */\n private _expandCurrentItem() {\n if (!this._activeItem) {\n return;\n }\n\n if (!this._isCurrentItemExpanded()) {\n this._activeItem.expand();\n } else {\n coerceObservable(this._activeItem.getChildren())\n .pipe(take(1))\n .subscribe(children => {\n const firstChild = children[0];\n if (!firstChild) {\n return;\n }\n this.focusItem(firstChild as T);\n });\n }\n }\n\n private _isCurrentItemExpanded() {\n if (!this._activeItem) {\n return false;\n }\n return typeof this._activeItem.isExpanded === 'boolean'\n ? this._activeItem.isExpanded\n : this._activeItem.isExpanded();\n }\n\n private _activateCurrentItem() {\n this._activeItem?.activate();\n }\n}\n\nfunction VimTreeKeyManagerFactory(): TreeKeyManagerFactory {\n return items => new VimTreeKeyManager(items);\n}\n\nconst VIM_TREE_KEY_MANAGER_PROVIDER = {\n provide: TREE_KEY_MANAGER,\n useFactory: VimTreeKeyManagerFactory,\n};\n\n/**\n * @title Tree with vim keyboard commands.\n */\n@Component({\n selector: 'cdk-tree-custom-key-manager-example',\n templateUrl: 'cdk-tree-custom-key-manager-example.html',\n styleUrls: ['cdk-tree-custom-key-manager-example.css'],\n imports: [CdkTreeModule, MatButtonModule, MatIconModule],\n providers: [VIM_TREE_KEY_MANAGER_PROVIDER],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CdkTreeCustomKeyManagerExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = EXAMPLE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (EXAMPLE_DATA[i].level === node.level - 1) {\n return EXAMPLE_DATA[i];\n }\n }\n\n return null;\n }\n\n shouldRender(node: ExampleFlatNode) {\n let parent = this.getParentNode(node);\n while (parent) {\n if (!parent.isExpanded) {\n return false;\n }\n parent = this.getParentNode(parent);\n }\n return true;\n }\n}\n\nconst EXAMPLE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n"],"names":["flattenNodes","EXAMPLE_DATA","i2","observableOf","i5"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/components-examples.mjs b/fesm2022/components-examples.mjs index 16d9581b71..4a84e5fa69 100755 --- a/fesm2022/components-examples.mjs +++ b/fesm2022/components-examples.mjs @@ -1616,7 +1616,7 @@ const EXAMPLE_COMPONENTS = { }, "button-overview": { "packagePath": "material/button/button-overview", - "title": "Basic buttons", + "title": "Button overview", "componentName": "ButtonOverviewExample", "files": [ "button-overview-example.ts", @@ -1641,20 +1641,6 @@ const EXAMPLE_COMPONENTS = { "primaryFile": "card-actions-example.ts", "importPath": "material/card" }, - "card-fancy": { - "packagePath": "material/card/card-fancy", - "title": "Card with multiple sections", - "componentName": "CardFancyExample", - "files": [ - "card-fancy-example.ts", - "card-fancy-example.html", - "card-fancy-example.css" - ], - "selector": "card-fancy-example", - "additionalComponents": [], - "primaryFile": "card-fancy-example.ts", - "importPath": "material/card" - }, "card-footer": { "packagePath": "material/card/card-footer", "title": "Card with footer", @@ -1699,11 +1685,12 @@ const EXAMPLE_COMPONENTS = { }, "card-overview": { "packagePath": "material/card/card-overview", - "title": "Basic cards", + "title": "Card overview", "componentName": "CardOverviewExample", "files": [ "card-overview-example.ts", - "card-overview-example.html" + "card-overview-example.html", + "card-overview-example.css" ], "selector": "card-overview-example", "additionalComponents": [], @@ -5251,8 +5238,6 @@ async function loadExample(id) { return import('@angular/components-examples/material/button'); case 'card-actions': return import('@angular/components-examples/material/card'); - case 'card-fancy': - return import('@angular/components-examples/material/card'); case 'card-footer': return import('@angular/components-examples/material/card'); case 'card-harness': @@ -5745,6 +5730,7 @@ async function loadExample(id) { } // The example-module file will be auto-generated. As soon as the +// examples are being compiled, the module file will be generated. /** * Example data with information about component name, selector, files used in * example, and path to examples. @@ -5774,9 +5760,5 @@ class ExampleData { } } -/** - * Generated bundle index. Do not edit. - */ - export { EXAMPLE_COMPONENTS, ExampleData, loadExample }; //# sourceMappingURL=components-examples.mjs.map diff --git a/fesm2022/components-examples.mjs.map b/fesm2022/components-examples.mjs.map index 191bce9c15..e74aafd7c7 100755 --- a/fesm2022/components-examples.mjs.map +++ b/fesm2022/components-examples.mjs.map @@ -1 +1 @@ -{"version":3,"file":"components-examples.mjs","sources":["../../../../../../src/components-examples/example-module.ts","../../../../../../src/components-examples/example-data.ts","../../../../../../src/components-examples/components-examples_public_index.ts"],"sourcesContent":["/**\n ******************************************************************************\n * DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED.\n ******************************************************************************\n */\n\nexport interface LiveExample {\n /** Title of the example. */\n title: string;\n /** Name of the example component. */\n componentName: string;\n /** Selector to match the component of this example. */\n selector: string;\n /** Name of the primary file of this example. */\n primaryFile: string;\n /** List of files which are part of the example. */\n files: string[];\n /** Path to the directory containing the example. */\n packagePath: string;\n /** List of additional components which are part of the example. */\n additionalComponents: string[];\n /** Path from which to import the xample. */\n importPath: string;\n}\n\nexport const EXAMPLE_COMPONENTS: {[id: string]: LiveExample} = {\n \"cdk-popover-edit-cdk-table-flex\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cdk-table-flex\",\n \"title\": \"CDK Popover Edit on a flex cdk-table.\",\n \"componentName\": \"CdkPopoverEditCdkTableFlexExample\",\n \"files\": [\n \"cdk-popover-edit-cdk-table-flex-example.ts\",\n \"cdk-popover-edit-cdk-table-flex-example.html\",\n \"cdk-popover-edit-cdk-table-flex-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cdk-table-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cdk-table-flex-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-cdk-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cdk-table\",\n \"title\": \"CDK Popover Edit on a CDK data-table\",\n \"componentName\": \"CdkPopoverEditCdkTableExample\",\n \"files\": [\n \"cdk-popover-edit-cdk-table-example.ts\",\n \"cdk-popover-edit-cdk-table-example.html\",\n \"cdk-popover-edit-cdk-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cdk-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cdk-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-cell-span-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cell-span-vanilla-table\",\n \"title\": \"CDK Popover Edit spanning multiple columns on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditCellSpanVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-cell-span-vanilla-table-example.ts\",\n \"cdk-popover-edit-cell-span-vanilla-table-example.html\",\n \"cdk-popover-edit-cell-span-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cell-span-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cell-span-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-tab-out-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-tab-out-vanilla-table\",\n \"title\": \"CDK Popover Edit with spreadsheet-like configuration on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditTabOutVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-tab-out-vanilla-table-example.ts\",\n \"cdk-popover-edit-tab-out-vanilla-table-example.html\",\n \"cdk-popover-edit-tab-out-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-tab-out-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-tab-out-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-vanilla-table\",\n \"title\": \"CDK Popover Edit on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-vanilla-table-example.ts\",\n \"cdk-popover-edit-vanilla-table-example.html\",\n \"cdk-popover-edit-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-selection-column\": {\n \"packagePath\": \"cdk-experimental/selection/cdk-selection-column\",\n \"title\": \"CDK Selection Column on a CDK table.\",\n \"componentName\": \"CdkSelectionColumnExample\",\n \"files\": [\n \"cdk-selection-column-example.ts\",\n \"cdk-selection-column-example.html\",\n \"cdk-selection-column-example.css\"\n ],\n \"selector\": \"cdk-selection-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-selection-column-example.ts\",\n \"importPath\": \"cdk-experimental/selection\"\n },\n \"cdk-selection-list\": {\n \"packagePath\": \"cdk-experimental/selection/cdk-selection-list\",\n \"title\": \"CDK Selection on a simple list.\",\n \"componentName\": \"CdkSelectionListExample\",\n \"files\": [\n \"cdk-selection-list-example.ts\",\n \"cdk-selection-list-example.html\"\n ],\n \"selector\": \"cdk-selection-list-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-selection-list-example.ts\",\n \"importPath\": \"cdk-experimental/selection\"\n },\n \"focus-monitor-directives\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-directives\",\n \"title\": \"Monitoring focus with FocusMonitor\",\n \"componentName\": \"FocusMonitorDirectivesExample\",\n \"files\": [\n \"focus-monitor-directives-example.ts\",\n \"focus-monitor-directives-example.html\",\n \"focus-monitor-directives-example.css\"\n ],\n \"selector\": \"focus-monitor-directives-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-directives-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"focus-monitor-focus-via\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-focus-via\",\n \"title\": \"Focusing with a specific FocusOrigin\",\n \"componentName\": \"FocusMonitorFocusViaExample\",\n \"files\": [\n \"focus-monitor-focus-via-example.ts\",\n \"focus-monitor-focus-via-example.html\",\n \"focus-monitor-focus-via-example.css\"\n ],\n \"selector\": \"focus-monitor-focus-via-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-focus-via-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"focus-monitor-overview\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-overview\",\n \"title\": \"Monitoring focus with FocusMonitor\",\n \"componentName\": \"FocusMonitorOverviewExample\",\n \"files\": [\n \"focus-monitor-overview-example.ts\",\n \"focus-monitor-overview-example.html\",\n \"focus-monitor-overview-example.css\"\n ],\n \"selector\": \"focus-monitor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-overview-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"cdk-accordion-overview\": {\n \"packagePath\": \"cdk/accordion/cdk-accordion-overview\",\n \"title\": \"Accordion overview\",\n \"componentName\": \"CdkAccordionOverviewExample\",\n \"files\": [\n \"cdk-accordion-overview-example.ts\",\n \"cdk-accordion-overview-example.html\",\n \"cdk-accordion-overview-example.css\"\n ],\n \"selector\": \"cdk-accordion-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-accordion-overview-example.ts\",\n \"importPath\": \"cdk/accordion\"\n },\n \"cdk-clipboard-overview\": {\n \"packagePath\": \"cdk/clipboard/cdk-clipboard-overview\",\n \"title\": \"Clipboard overview\",\n \"componentName\": \"CdkClipboardOverviewExample\",\n \"files\": [\n \"cdk-clipboard-overview-example.ts\",\n \"cdk-clipboard-overview-example.html\",\n \"cdk-clipboard-overview-example.css\"\n ],\n \"selector\": \"cdk-clipboard-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-clipboard-overview-example.ts\",\n \"importPath\": \"cdk/clipboard\"\n },\n \"cdk-dialog-data\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-data\",\n \"title\": \"Injecting data when opening a dialog\",\n \"componentName\": \"CdkDialogDataExample\",\n \"files\": [\n \"cdk-dialog-data-example.ts\",\n \"cdk-dialog-data-example.html\",\n \"cdk-dialog-data-example-dialog.html\",\n \"./cdk-dialog-data-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-data-example\",\n \"additionalComponents\": [\n \"CdkDialogDataExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-data-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-dialog-overview\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-overview\",\n \"title\": \"CDK Dialog Overview\",\n \"componentName\": \"CdkDialogOverviewExample\",\n \"files\": [\n \"cdk-dialog-overview-example.ts\",\n \"cdk-dialog-overview-example.html\",\n \"cdk-dialog-overview-example-dialog.html\",\n \"cdk-dialog-overview-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-overview-example\",\n \"additionalComponents\": [\n \"CdkDialogOverviewExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-overview-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-dialog-styling\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-styling\",\n \"title\": \"CDK Dialog Styling\",\n \"componentName\": \"CdkDialogStylingExample\",\n \"files\": [\n \"cdk-dialog-styling-example.ts\",\n \"cdk-dialog-styling-example.html\",\n \"cdk-dialog-styling-example-dialog.html\",\n \"cdk-dialog-styling-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-styling-example\",\n \"additionalComponents\": [\n \"CdkDialogStylingExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-styling-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-drag-drop-axis-lock\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-axis-lock\",\n \"title\": \"Drag&Drop position locking\",\n \"componentName\": \"CdkDragDropAxisLockExample\",\n \"files\": [\n \"cdk-drag-drop-axis-lock-example.ts\",\n \"cdk-drag-drop-axis-lock-example.html\",\n \"cdk-drag-drop-axis-lock-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-axis-lock-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-axis-lock-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-boundary\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-boundary\",\n \"title\": \"Drag&Drop boundary\",\n \"componentName\": \"CdkDragDropBoundaryExample\",\n \"files\": [\n \"cdk-drag-drop-boundary-example.ts\",\n \"cdk-drag-drop-boundary-example.html\",\n \"cdk-drag-drop-boundary-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-boundary-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-boundary-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-connected-sorting-group\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-connected-sorting-group\",\n \"title\": \"Drag&Drop connected sorting group\",\n \"componentName\": \"CdkDragDropConnectedSortingGroupExample\",\n \"files\": [\n \"cdk-drag-drop-connected-sorting-group-example.ts\",\n \"cdk-drag-drop-connected-sorting-group-example.html\",\n \"cdk-drag-drop-connected-sorting-group-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-connected-sorting-group-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-connected-sorting-group-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-connected-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-connected-sorting\",\n \"title\": \"Drag&Drop connected sorting\",\n \"componentName\": \"CdkDragDropConnectedSortingExample\",\n \"files\": [\n \"cdk-drag-drop-connected-sorting-example.ts\",\n \"cdk-drag-drop-connected-sorting-example.html\",\n \"cdk-drag-drop-connected-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-connected-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-connected-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-custom-placeholder\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-custom-placeholder\",\n \"title\": \"Drag&Drop custom placeholder\",\n \"componentName\": \"CdkDragDropCustomPlaceholderExample\",\n \"files\": [\n \"cdk-drag-drop-custom-placeholder-example.ts\",\n \"cdk-drag-drop-custom-placeholder-example.html\",\n \"cdk-drag-drop-custom-placeholder-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-custom-placeholder-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-custom-placeholder-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-custom-preview\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-custom-preview\",\n \"title\": \"Drag&Drop custom preview\",\n \"componentName\": \"CdkDragDropCustomPreviewExample\",\n \"files\": [\n \"cdk-drag-drop-custom-preview-example.ts\",\n \"cdk-drag-drop-custom-preview-example.html\",\n \"cdk-drag-drop-custom-preview-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-custom-preview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-custom-preview-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-delay\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-delay\",\n \"title\": \"Delayed dragging\",\n \"componentName\": \"CdkDragDropDelayExample\",\n \"files\": [\n \"cdk-drag-drop-delay-example.ts\",\n \"cdk-drag-drop-delay-example.html\",\n \"cdk-drag-drop-delay-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-delay-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-delay-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-disabled-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-disabled-sorting\",\n \"title\": \"Drag&Drop disabled sorting\",\n \"componentName\": \"CdkDragDropDisabledSortingExample\",\n \"files\": [\n \"cdk-drag-drop-disabled-sorting-example.ts\",\n \"cdk-drag-drop-disabled-sorting-example.html\",\n \"cdk-drag-drop-disabled-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-disabled-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-disabled-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-disabled\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-disabled\",\n \"title\": \"Drag&Drop disabled\",\n \"componentName\": \"CdkDragDropDisabledExample\",\n \"files\": [\n \"cdk-drag-drop-disabled-example.ts\",\n \"cdk-drag-drop-disabled-example.html\",\n \"cdk-drag-drop-disabled-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-disabled-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-enter-predicate\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-enter-predicate\",\n \"title\": \"Drag&Drop enter predicate\",\n \"componentName\": \"CdkDragDropEnterPredicateExample\",\n \"files\": [\n \"cdk-drag-drop-enter-predicate-example.ts\",\n \"cdk-drag-drop-enter-predicate-example.html\",\n \"cdk-drag-drop-enter-predicate-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-enter-predicate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-enter-predicate-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-free-drag-position\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-free-drag-position\",\n \"title\": \"Programmatically setting the free drag position\",\n \"componentName\": \"CdkDragDropFreeDragPositionExample\",\n \"files\": [\n \"cdk-drag-drop-free-drag-position-example.ts\",\n \"cdk-drag-drop-free-drag-position-example.html\",\n \"cdk-drag-drop-free-drag-position-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-free-drag-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-free-drag-position-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-handle\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-handle\",\n \"title\": \"Drag&Drop with a handle\",\n \"componentName\": \"CdkDragDropHandleExample\",\n \"files\": [\n \"cdk-drag-drop-handle-example.ts\",\n \"cdk-drag-drop-handle-example.html\",\n \"cdk-drag-drop-handle-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-handle-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-handle-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-horizontal-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-horizontal-sorting\",\n \"title\": \"Drag&Drop horizontal sorting\",\n \"componentName\": \"CdkDragDropHorizontalSortingExample\",\n \"files\": [\n \"cdk-drag-drop-horizontal-sorting-example.ts\",\n \"cdk-drag-drop-horizontal-sorting-example.html\",\n \"cdk-drag-drop-horizontal-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-horizontal-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-horizontal-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-mixed-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-mixed-sorting\",\n \"title\": \"Drag&Drop horizontal wrapping list\",\n \"componentName\": \"CdkDragDropMixedSortingExample\",\n \"files\": [\n \"cdk-drag-drop-mixed-sorting-example.ts\",\n \"cdk-drag-drop-mixed-sorting-example.html\",\n \"cdk-drag-drop-mixed-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-mixed-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-mixed-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-overview\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-overview\",\n \"title\": \"Basic Drag&Drop\",\n \"componentName\": \"CdkDragDropOverviewExample\",\n \"files\": [\n \"cdk-drag-drop-overview-example.ts\",\n \"cdk-drag-drop-overview-example.html\",\n \"cdk-drag-drop-overview-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-overview-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-root-element\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-root-element\",\n \"title\": \"Drag&Drop with alternate root element\",\n \"componentName\": \"CdkDragDropRootElementExample\",\n \"files\": [\n \"cdk-drag-drop-root-element-example.ts\",\n \"cdk-drag-drop-root-element-example.html\",\n \"cdk-drag-drop-root-element-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-root-element-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-root-element-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-sort-predicate\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-sort-predicate\",\n \"title\": \"Drag&Drop sort predicate\",\n \"componentName\": \"CdkDragDropSortPredicateExample\",\n \"files\": [\n \"cdk-drag-drop-sort-predicate-example.ts\",\n \"cdk-drag-drop-sort-predicate-example.html\",\n \"cdk-drag-drop-sort-predicate-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-sort-predicate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-sort-predicate-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-sorting\",\n \"title\": \"Drag&Drop sorting\",\n \"componentName\": \"CdkDragDropSortingExample\",\n \"files\": [\n \"cdk-drag-drop-sorting-example.ts\",\n \"cdk-drag-drop-sorting-example.html\",\n \"cdk-drag-drop-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-table\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-table\",\n \"title\": \"Drag&Drop table\",\n \"componentName\": \"CdkDragDropTableExample\",\n \"files\": [\n \"cdk-drag-drop-table-example.ts\",\n \"cdk-drag-drop-table-example.html\",\n \"cdk-drag-drop-table-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-table-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-tabs\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-tabs\",\n \"title\": \"Drag&Drop tabs\",\n \"componentName\": \"CdkDragDropTabsExample\",\n \"files\": [\n \"cdk-drag-drop-tabs-example.ts\",\n \"cdk-drag-drop-tabs-example.html\",\n \"cdk-drag-drop-tabs-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-tabs-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-tabs-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"breakpoint-observer-overview\": {\n \"packagePath\": \"cdk/layout/breakpoint-observer-overview\",\n \"title\": \"Respond to viewport changes with BreakpointObserver\",\n \"componentName\": \"BreakpointObserverOverviewExample\",\n \"files\": [\n \"breakpoint-observer-overview-example.ts\",\n \"breakpoint-observer-overview-example.html\",\n \"breakpoint-observer-overview-example.css\"\n ],\n \"selector\": \"breakpoint-observer-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"breakpoint-observer-overview-example.ts\",\n \"importPath\": \"cdk/layout\"\n },\n \"cdk-listbox-activedescendant\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-activedescendant\",\n \"title\": \"Listbox with aria-activedescendant.\",\n \"componentName\": \"CdkListboxActivedescendantExample\",\n \"files\": [\n \"cdk-listbox-activedescendant-example.ts\",\n \"cdk-listbox-activedescendant-example.html\",\n \"cdk-listbox-activedescendant-example.css\"\n ],\n \"selector\": \"cdk-listbox-activedescendant-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-activedescendant-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-compare-with\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-compare-with\",\n \"title\": \"Listbox with complex object as values.\",\n \"componentName\": \"CdkListboxCompareWithExample\",\n \"files\": [\n \"cdk-listbox-compare-with-example.ts\",\n \"cdk-listbox-compare-with-example.html\",\n \"cdk-listbox-compare-with-example.css\"\n ],\n \"selector\": \"cdk-listbox-compare-with-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-compare-with-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-custom-navigation\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-custom-navigation\",\n \"title\": \"Listbox with custom keyboard navigation options.\",\n \"componentName\": \"CdkListboxCustomNavigationExample\",\n \"files\": [\n \"cdk-listbox-custom-navigation-example.ts\",\n \"cdk-listbox-custom-navigation-example.html\",\n \"cdk-listbox-custom-navigation-example.css\"\n ],\n \"selector\": \"cdk-listbox-custom-navigation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-custom-navigation-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-custom-typeahead\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-custom-typeahead\",\n \"title\": \"Listbox with custom typeahead.\",\n \"componentName\": \"CdkListboxCustomTypeaheadExample\",\n \"files\": [\n \"cdk-listbox-custom-typeahead-example.ts\",\n \"cdk-listbox-custom-typeahead-example.html\",\n \"cdk-listbox-custom-typeahead-example.css\"\n ],\n \"selector\": \"cdk-listbox-custom-typeahead-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-custom-typeahead-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-disabled\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-disabled\",\n \"title\": \"Listbox with disabled options.\",\n \"componentName\": \"CdkListboxDisabledExample\",\n \"files\": [\n \"cdk-listbox-disabled-example.ts\",\n \"cdk-listbox-disabled-example.html\",\n \"cdk-listbox-disabled-example.css\"\n ],\n \"selector\": \"cdk-listbox-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-disabled-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-forms-validation\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-forms-validation\",\n \"title\": \"Listbox with forms validation.\",\n \"componentName\": \"CdkListboxFormsValidationExample\",\n \"files\": [\n \"cdk-listbox-forms-validation-example.ts\",\n \"cdk-listbox-forms-validation-example.html\",\n \"cdk-listbox-forms-validation-example.css\"\n ],\n \"selector\": \"cdk-listbox-forms-validation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-forms-validation-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-horizontal\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-horizontal\",\n \"title\": \"Horizontal listbox\",\n \"componentName\": \"CdkListboxHorizontalExample\",\n \"files\": [\n \"cdk-listbox-horizontal-example.ts\",\n \"cdk-listbox-horizontal-example.html\",\n \"cdk-listbox-horizontal-example.css\"\n ],\n \"selector\": \"cdk-listbox-horizontal-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-horizontal-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-multiple\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-multiple\",\n \"title\": \"Listbox with multiple selection.\",\n \"componentName\": \"CdkListboxMultipleExample\",\n \"files\": [\n \"cdk-listbox-multiple-example.ts\",\n \"cdk-listbox-multiple-example.html\",\n \"cdk-listbox-multiple-example.css\"\n ],\n \"selector\": \"cdk-listbox-multiple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-multiple-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-overview\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-overview\",\n \"title\": \"Basic listbox.\",\n \"componentName\": \"CdkListboxOverviewExample\",\n \"files\": [\n \"cdk-listbox-overview-example.ts\",\n \"cdk-listbox-overview-example.html\",\n \"cdk-listbox-overview-example.css\"\n ],\n \"selector\": \"cdk-listbox-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-overview-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-reactive-forms\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-reactive-forms\",\n \"title\": \"Listbox with reactive forms.\",\n \"componentName\": \"CdkListboxReactiveFormsExample\",\n \"files\": [\n \"cdk-listbox-reactive-forms-example.ts\",\n \"cdk-listbox-reactive-forms-example.html\",\n \"cdk-listbox-reactive-forms-example.css\"\n ],\n \"selector\": \"cdk-listbox-reactive-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-reactive-forms-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-template-forms\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-template-forms\",\n \"title\": \"Listbox with template-driven forms.\",\n \"componentName\": \"CdkListboxTemplateFormsExample\",\n \"files\": [\n \"cdk-listbox-template-forms-example.ts\",\n \"cdk-listbox-template-forms-example.html\",\n \"cdk-listbox-template-forms-example.css\"\n ],\n \"selector\": \"cdk-listbox-template-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-template-forms-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-value-binding\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-value-binding\",\n \"title\": \"Listbox with value binding.\",\n \"componentName\": \"CdkListboxValueBindingExample\",\n \"files\": [\n \"cdk-listbox-value-binding-example.ts\",\n \"cdk-listbox-value-binding-example.html\",\n \"cdk-listbox-value-binding-example.css\"\n ],\n \"selector\": \"cdk-listbox-value-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-value-binding-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-menu-context\": {\n \"packagePath\": \"cdk/menu/cdk-menu-context\",\n \"title\": \"Context menu.\",\n \"componentName\": \"CdkMenuContextExample\",\n \"files\": [\n \"cdk-menu-context-example.ts\",\n \"cdk-menu-context-example.html\",\n \"cdk-menu-context-example.css\"\n ],\n \"selector\": \"cdk-menu-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-context-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-inline\": {\n \"packagePath\": \"cdk/menu/cdk-menu-inline\",\n \"title\": \"Gmail inline menu.\",\n \"componentName\": \"CdkMenuInlineExample\",\n \"files\": [\n \"cdk-menu-inline-example.ts\",\n \"cdk-menu-inline-example.html\",\n \"cdk-menu-inline-example.css\"\n ],\n \"selector\": \"cdk-menu-inline-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-inline-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-menubar\": {\n \"packagePath\": \"cdk/menu/cdk-menu-menubar\",\n \"title\": \"Google Docs Menu Bar.\",\n \"componentName\": \"CdkMenuMenubarExample\",\n \"files\": [\n \"cdk-menu-menubar-example.ts\",\n \"cdk-menu-menubar-example.html\",\n \"cdk-menu-menubar-example.css\"\n ],\n \"selector\": \"cdk-menu-menubar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-menubar-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-nested-context\": {\n \"packagePath\": \"cdk/menu/cdk-menu-nested-context\",\n \"title\": \"Nested context menus.\",\n \"componentName\": \"CdkMenuNestedContextExample\",\n \"files\": [\n \"cdk-menu-nested-context-example.ts\",\n \"cdk-menu-nested-context-example.html\",\n \"cdk-menu-nested-context-example.css\"\n ],\n \"selector\": \"cdk-menu-nested-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-nested-context-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-standalone-menu\": {\n \"packagePath\": \"cdk/menu/cdk-menu-standalone-menu\",\n \"title\": \"Menu with Standalone Trigger.\",\n \"componentName\": \"CdkMenuStandaloneMenuExample\",\n \"files\": [\n \"cdk-menu-standalone-menu-example.ts\",\n \"cdk-menu-standalone-menu-example.html\",\n \"cdk-menu-standalone-menu-example.css\"\n ],\n \"selector\": \"cdk-menu-standalone-menu-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-standalone-menu-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-standalone-stateful-menu\": {\n \"packagePath\": \"cdk/menu/cdk-menu-standalone-stateful-menu\",\n \"title\": \"Stateful Menu with Standalone Trigger.\",\n \"componentName\": \"CdkMenuStandaloneStatefulMenuExample\",\n \"files\": [\n \"cdk-menu-standalone-stateful-menu-example.ts\",\n \"cdk-menu-standalone-stateful-menu-example.html\",\n \"cdk-menu-standalone-stateful-menu-example.css\"\n ],\n \"selector\": \"cdk-menu-standalone-stateful-menu-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-standalone-stateful-menu-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-overlay-basic\": {\n \"packagePath\": \"cdk/overlay/cdk-overlay-basic\",\n \"title\": \"Overlay basic example\",\n \"componentName\": \"CdkOverlayBasicExample\",\n \"files\": [\n \"cdk-overlay-basic-example.ts\",\n \"./cdk-overlay-basic-example.html\",\n \"./cdk-overlay-basic-example.css\"\n ],\n \"selector\": \"cdk-overlay-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-overlay-basic-example.ts\",\n \"importPath\": \"cdk/overlay\"\n },\n \"cdk-platform-overview\": {\n \"packagePath\": \"cdk/platform/cdk-platform-overview\",\n \"title\": \"Platform overview\",\n \"componentName\": \"CdkPlatformOverviewExample\",\n \"files\": [\n \"cdk-platform-overview-example.ts\",\n \"cdk-platform-overview-example.html\"\n ],\n \"selector\": \"cdk-platform-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-platform-overview-example.ts\",\n \"importPath\": \"cdk/platform\"\n },\n \"cdk-portal-overview\": {\n \"packagePath\": \"cdk/portal/cdk-portal-overview\",\n \"title\": \"Portal overview\",\n \"componentName\": \"CdkPortalOverviewExample\",\n \"files\": [\n \"cdk-portal-overview-example.ts\",\n \"cdk-portal-overview-example.html\",\n \"cdk-portal-overview-example.css\"\n ],\n \"selector\": \"cdk-portal-overview-example\",\n \"additionalComponents\": [\n \"ComponentPortalExample\"\n ],\n \"primaryFile\": \"cdk-portal-overview-example.ts\",\n \"importPath\": \"cdk/portal\"\n },\n \"cdk-virtual-scroll-append-only\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-append-only\",\n \"title\": \"Virtual scroll with view recycling disabled.\",\n \"componentName\": \"CdkVirtualScrollAppendOnlyExample\",\n \"files\": [\n \"cdk-virtual-scroll-append-only-example.ts\",\n \"cdk-virtual-scroll-append-only-example.html\",\n \"cdk-virtual-scroll-append-only-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-append-only-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-append-only-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-context\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-context\",\n \"title\": \"Virtual scroll context variables\",\n \"componentName\": \"CdkVirtualScrollContextExample\",\n \"files\": [\n \"cdk-virtual-scroll-context-example.ts\",\n \"cdk-virtual-scroll-context-example.html\",\n \"cdk-virtual-scroll-context-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-context-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-custom-strategy\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-custom-strategy\",\n \"title\": \"Virtual scroll with a custom strategy\",\n \"componentName\": \"CdkVirtualScrollCustomStrategyExample\",\n \"files\": [\n \"cdk-virtual-scroll-custom-strategy-example.ts\",\n \"cdk-virtual-scroll-custom-strategy-example.html\",\n \"cdk-virtual-scroll-custom-strategy-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-custom-strategy-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-custom-strategy-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-data-source\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-data-source\",\n \"title\": \"Virtual scroll with a custom data source\",\n \"componentName\": \"CdkVirtualScrollDataSourceExample\",\n \"files\": [\n \"cdk-virtual-scroll-data-source-example.ts\",\n \"cdk-virtual-scroll-data-source-example.html\",\n \"cdk-virtual-scroll-data-source-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-data-source-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-data-source-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-dl\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-dl\",\n \"title\": \"Virtual scrolling `
    `\",\n \"componentName\": \"CdkVirtualScrollDlExample\",\n \"files\": [\n \"cdk-virtual-scroll-dl-example.ts\",\n \"cdk-virtual-scroll-dl-example.html\",\n \"cdk-virtual-scroll-dl-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-dl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-dl-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-fixed-buffer\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-fixed-buffer\",\n \"title\": \"Fixed size virtual scroll with custom buffer parameters\",\n \"componentName\": \"CdkVirtualScrollFixedBufferExample\",\n \"files\": [\n \"cdk-virtual-scroll-fixed-buffer-example.ts\",\n \"cdk-virtual-scroll-fixed-buffer-example.html\",\n \"cdk-virtual-scroll-fixed-buffer-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-fixed-buffer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-fixed-buffer-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-horizontal\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-horizontal\",\n \"title\": \"Horizontal virtual scroll\",\n \"componentName\": \"CdkVirtualScrollHorizontalExample\",\n \"files\": [\n \"cdk-virtual-scroll-horizontal-example.ts\",\n \"cdk-virtual-scroll-horizontal-example.html\",\n \"cdk-virtual-scroll-horizontal-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-horizontal-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-horizontal-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-overview\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-overview\",\n \"title\": \"Basic virtual scroll\",\n \"componentName\": \"CdkVirtualScrollOverviewExample\",\n \"files\": [\n \"cdk-virtual-scroll-overview-example.ts\",\n \"cdk-virtual-scroll-overview-example.html\",\n \"cdk-virtual-scroll-overview-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-overview-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-parent-scrolling\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-parent-scrolling\",\n \"title\": \"Virtual scrolling viewport parent element\",\n \"componentName\": \"CdkVirtualScrollParentScrollingExample\",\n \"files\": [\n \"cdk-virtual-scroll-parent-scrolling-example.ts\",\n \"cdk-virtual-scroll-parent-scrolling-example.html\",\n \"cdk-virtual-scroll-parent-scrolling-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-parent-scrolling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-parent-scrolling-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-template-cache\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-template-cache\",\n \"title\": \"Virtual scroll with no template caching\",\n \"componentName\": \"CdkVirtualScrollTemplateCacheExample\",\n \"files\": [\n \"cdk-virtual-scroll-template-cache-example.ts\",\n \"cdk-virtual-scroll-template-cache-example.html\",\n \"cdk-virtual-scroll-template-cache-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-template-cache-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-template-cache-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-window-scrolling\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-window-scrolling\",\n \"title\": \"Virtual scrolling window\",\n \"componentName\": \"CdkVirtualScrollWindowScrollingExample\",\n \"files\": [\n \"cdk-virtual-scroll-window-scrolling-example.ts\",\n \"cdk-virtual-scroll-window-scrolling-example.html\",\n \"cdk-virtual-scroll-window-scrolling-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-window-scrolling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-window-scrolling-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-custom-stepper-without-form\": {\n \"packagePath\": \"cdk/stepper/cdk-custom-stepper-without-form\",\n \"title\": \"A custom CDK stepper without a form\",\n \"componentName\": \"CdkCustomStepperWithoutFormExample\",\n \"files\": [\n \"cdk-custom-stepper-without-form-example.ts\",\n \"./cdk-custom-stepper-without-form-example.html\",\n \"./cdk-custom-stepper-without-form-example.css\",\n \"./example-custom-stepper.html\",\n \"./example-custom-stepper.css\"\n ],\n \"selector\": \"cdk-custom-stepper-without-form-example\",\n \"additionalComponents\": [\n \"CustomStepper\"\n ],\n \"primaryFile\": \"cdk-custom-stepper-without-form-example.ts\",\n \"importPath\": \"cdk/stepper\"\n },\n \"cdk-linear-stepper-with-form\": {\n \"packagePath\": \"cdk/stepper/cdk-linear-stepper-with-form\",\n \"title\": \"A custom CDK linear stepper with forms\",\n \"componentName\": \"CdkLinearStepperWithFormExample\",\n \"files\": [\n \"cdk-linear-stepper-with-form-example.ts\",\n \"./cdk-linear-stepper-with-form-example.html\",\n \"./cdk-linear-stepper-with-form-example.css\",\n \"./example-custom-linear-stepper.html\",\n \"./example-custom-linear-stepper.css\"\n ],\n \"selector\": \"cdk-linear-stepper-with-form-example\",\n \"additionalComponents\": [\n \"CustomLinearStepper\"\n ],\n \"primaryFile\": \"cdk-linear-stepper-with-form-example.ts\",\n \"importPath\": \"cdk/stepper\"\n },\n \"cdk-table-basic\": {\n \"packagePath\": \"cdk/table/cdk-table-basic\",\n \"title\": \"Basic CDK data-table\",\n \"componentName\": \"CdkTableBasicExample\",\n \"files\": [\n \"cdk-table-basic-example.ts\",\n \"cdk-table-basic-example.html\",\n \"cdk-table-basic-example.css\"\n ],\n \"selector\": \"cdk-table-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-basic-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-fixed-layout\": {\n \"packagePath\": \"cdk/table/cdk-table-fixed-layout\",\n \"title\": \"CDK table with a fixed layout.\",\n \"componentName\": \"CdkTableFixedLayoutExample\",\n \"files\": [\n \"cdk-table-fixed-layout-example.ts\",\n \"cdk-table-fixed-layout-example.html\",\n \"cdk-table-fixed-layout-example.css\"\n ],\n \"selector\": \"cdk-table-fixed-layout-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-fixed-layout-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-flex-basic\": {\n \"packagePath\": \"cdk/table/cdk-table-flex-basic\",\n \"title\": \"Basic use of `` (uses display flex)\",\n \"componentName\": \"CdkTableFlexBasicExample\",\n \"files\": [\n \"cdk-table-flex-basic-example.ts\",\n \"cdk-table-flex-basic-example.html\",\n \"cdk-table-flex-basic-example.css\"\n ],\n \"selector\": \"cdk-table-flex-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-flex-basic-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-recycle-rows\": {\n \"packagePath\": \"cdk/table/cdk-table-recycle-rows\",\n \"title\": \"Table that uses the recycle view repeater strategy.\",\n \"componentName\": \"CdkTableRecycleRowsExample\",\n \"files\": [\n \"cdk-table-recycle-rows-example.ts\",\n \"cdk-table-recycle-rows-example.html\",\n \"cdk-table-recycle-rows-example.css\"\n ],\n \"selector\": \"cdk-table-recycle-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-recycle-rows-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"text-field-autofill-directive\": {\n \"packagePath\": \"cdk/text-field/text-field-autofill-directive\",\n \"title\": \"Monitoring autofill state with cdkAutofill\",\n \"componentName\": \"TextFieldAutofillDirectiveExample\",\n \"files\": [\n \"text-field-autofill-directive-example.ts\",\n \"./text-field-autofill-directive-example.html\",\n \"./text-field-autofill-directive-example.css\"\n ],\n \"selector\": \"text-field-autofill-directive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autofill-directive-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"text-field-autofill-monitor\": {\n \"packagePath\": \"cdk/text-field/text-field-autofill-monitor\",\n \"title\": \"Monitoring autofill state with AutofillMonitor\",\n \"componentName\": \"TextFieldAutofillMonitorExample\",\n \"files\": [\n \"text-field-autofill-monitor-example.ts\",\n \"./text-field-autofill-monitor-example.html\",\n \"./text-field-autofill-monitor-example.css\"\n ],\n \"selector\": \"text-field-autofill-monitor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autofill-monitor-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"text-field-autosize-textarea\": {\n \"packagePath\": \"cdk/text-field/text-field-autosize-textarea\",\n \"title\": \"Auto-resizing textarea\",\n \"componentName\": \"TextFieldAutosizeTextareaExample\",\n \"files\": [\n \"text-field-autosize-textarea-example.ts\",\n \"./text-field-autosize-textarea-example.html\",\n \"./text-field-autosize-textarea-example.css\"\n ],\n \"selector\": \"text-field-autosize-textarea-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autosize-textarea-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"cdk-tree-complex\": {\n \"packagePath\": \"cdk/tree/cdk-tree-complex\",\n \"title\": \"Complex example making use of the redux pattern.\",\n \"componentName\": \"CdkTreeComplexExample\",\n \"files\": [\n \"cdk-tree-complex-example.ts\",\n \"cdk-tree-complex-example.html\",\n \"cdk-tree-complex-example.css\"\n ],\n \"selector\": \"cdk-tree-complex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-complex-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-custom-key-manager\": {\n \"packagePath\": \"cdk/tree/cdk-tree-custom-key-manager\",\n \"title\": \"Tree with vim keyboard commands.\",\n \"componentName\": \"CdkTreeCustomKeyManagerExample\",\n \"files\": [\n \"cdk-tree-custom-key-manager-example.ts\",\n \"cdk-tree-custom-key-manager-example.html\",\n \"cdk-tree-custom-key-manager-example.css\"\n ],\n \"selector\": \"cdk-tree-custom-key-manager-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-custom-key-manager-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat-children-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat-children-accessor\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatChildrenAccessorExample\",\n \"files\": [\n \"cdk-tree-flat-children-accessor-example.ts\",\n \"cdk-tree-flat-children-accessor-example.html\",\n \"cdk-tree-flat-children-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-children-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-children-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat-level-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat-level-accessor\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatLevelAccessorExample\",\n \"files\": [\n \"cdk-tree-flat-level-accessor-example.ts\",\n \"cdk-tree-flat-level-accessor-example.html\",\n \"cdk-tree-flat-level-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-level-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-level-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatExample\",\n \"files\": [\n \"cdk-tree-flat-example.ts\",\n \"cdk-tree-flat-example.html\",\n \"cdk-tree-flat-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested-children-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested-children-accessor\",\n \"title\": \"Tree with nested nodes using childAccessor\",\n \"componentName\": \"CdkTreeNestedChildrenAccessorExample\",\n \"files\": [\n \"cdk-tree-nested-children-accessor-example.ts\",\n \"cdk-tree-nested-children-accessor-example.html\",\n \"cdk-tree-nested-children-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-children-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-children-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested-level-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested-level-accessor\",\n \"title\": \"Tree with nested nodes and level accessor\",\n \"componentName\": \"CdkTreeNestedLevelAccessorExample\",\n \"files\": [\n \"cdk-tree-nested-level-accessor-example.ts\",\n \"cdk-tree-nested-level-accessor-example.html\",\n \"cdk-tree-nested-level-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-level-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-level-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested\",\n \"title\": \"Tree with nested nodes\",\n \"componentName\": \"CdkTreeNestedExample\",\n \"files\": [\n \"cdk-tree-nested-example.ts\",\n \"cdk-tree-nested-example.html\",\n \"cdk-tree-nested-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"default-enabled-column-resize-flex\": {\n \"packagePath\": \"material-experimental/column-resize/default-enabled-column-resize-flex\",\n \"title\": \"Default-enabled column resize with a flex-based mat-table.\",\n \"componentName\": \"DefaultEnabledColumnResizeFlexExample\",\n \"files\": [\n \"default-enabled-column-resize-flex-example.ts\",\n \"default-enabled-column-resize-flex-example.html\",\n \"default-enabled-column-resize-flex-example.css\"\n ],\n \"selector\": \"default-enabled-column-resize-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"default-enabled-column-resize-flex-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"default-enabled-column-resize\": {\n \"packagePath\": \"material-experimental/column-resize/default-enabled-column-resize\",\n \"title\": \"Default-enabled column resize with a table-based mat-table.\",\n \"componentName\": \"DefaultEnabledColumnResizeExample\",\n \"files\": [\n \"default-enabled-column-resize-example.ts\",\n \"default-enabled-column-resize-example.html\",\n \"default-enabled-column-resize-example.css\"\n ],\n \"selector\": \"default-enabled-column-resize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"default-enabled-column-resize-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"opt-in-column-resize\": {\n \"packagePath\": \"material-experimental/column-resize/opt-in-column-resize\",\n \"title\": \"Opt-in column resize with a table-based mat-table.\",\n \"componentName\": \"OptInColumnResizeExample\",\n \"files\": [\n \"opt-in-column-resize-example.ts\",\n \"opt-in-column-resize-example.html\",\n \"opt-in-column-resize-example.css\"\n ],\n \"selector\": \"opt-in-column-resize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"opt-in-column-resize-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"popover-edit-cell-span-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-cell-span-mat-table\",\n \"title\": \"Material Popover Edit spanning multiple columns on a Material data-table\",\n \"componentName\": \"PopoverEditCellSpanMatTableExample\",\n \"files\": [\n \"popover-edit-cell-span-mat-table-example.ts\",\n \"popover-edit-cell-span-mat-table-example.html\",\n \"popover-edit-cell-span-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-cell-span-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-cell-span-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-mat-table-flex\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-mat-table-flex\",\n \"title\": \"Material Popover Edit on a flex Material data-table\",\n \"componentName\": \"PopoverEditMatTableFlexExample\",\n \"files\": [\n \"popover-edit-mat-table-flex-example.ts\",\n \"popover-edit-mat-table-flex-example.html\",\n \"popover-edit-mat-table-flex-example.css\"\n ],\n \"selector\": \"popover-edit-mat-table-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-mat-table-flex-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-mat-table\",\n \"title\": \"Material Popover Edit on a Material data-table\",\n \"componentName\": \"PopoverEditMatTableExample\",\n \"files\": [\n \"popover-edit-mat-table-example.ts\",\n \"popover-edit-mat-table-example.html\",\n \"popover-edit-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-tab-out-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-tab-out-mat-table\",\n \"title\": \"Material Popover Edit with spreadsheet-like configuration on a Material data-table\",\n \"componentName\": \"PopoverEditTabOutMatTableExample\",\n \"files\": [\n \"popover-edit-tab-out-mat-table-example.ts\",\n \"popover-edit-tab-out-mat-table-example.html\",\n \"popover-edit-tab-out-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-tab-out-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-tab-out-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"mat-selection-column\": {\n \"packagePath\": \"material-experimental/selection/mat-selection-column\",\n \"title\": \"Table that uses `matSelectionColumn` which allows users to select rows.\",\n \"componentName\": \"MatSelectionColumnExample\",\n \"files\": [\n \"mat-selection-column-example.ts\",\n \"mat-selection-column-example.html\",\n \"mat-selection-column-example.css\"\n ],\n \"selector\": \"mat-selection-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"mat-selection-column-example.ts\",\n \"importPath\": \"material-experimental/selection\"\n },\n \"mat-selection-list\": {\n \"packagePath\": \"material-experimental/selection/mat-selection-list\",\n \"title\": \"Mat Selection on a simple list.\",\n \"componentName\": \"MatSelectionListExample\",\n \"files\": [\n \"mat-selection-list-example.ts\",\n \"mat-selection-list-example.html\"\n ],\n \"selector\": \"mat-selection-list-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"mat-selection-list-example.ts\",\n \"importPath\": \"material-experimental/selection\"\n },\n \"autocomplete-auto-active-first-option\": {\n \"packagePath\": \"material/autocomplete/autocomplete-auto-active-first-option\",\n \"title\": \"Highlight the first autocomplete option\",\n \"componentName\": \"AutocompleteAutoActiveFirstOptionExample\",\n \"files\": [\n \"autocomplete-auto-active-first-option-example.ts\",\n \"autocomplete-auto-active-first-option-example.html\",\n \"autocomplete-auto-active-first-option-example.css\"\n ],\n \"selector\": \"autocomplete-auto-active-first-option-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-auto-active-first-option-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-display\": {\n \"packagePath\": \"material/autocomplete/autocomplete-display\",\n \"title\": \"Display value autocomplete\",\n \"componentName\": \"AutocompleteDisplayExample\",\n \"files\": [\n \"autocomplete-display-example.ts\",\n \"autocomplete-display-example.html\",\n \"autocomplete-display-example.css\"\n ],\n \"selector\": \"autocomplete-display-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-display-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-filter\": {\n \"packagePath\": \"material/autocomplete/autocomplete-filter\",\n \"title\": \"Filter autocomplete\",\n \"componentName\": \"AutocompleteFilterExample\",\n \"files\": [\n \"autocomplete-filter-example.ts\",\n \"autocomplete-filter-example.html\",\n \"autocomplete-filter-example.css\"\n ],\n \"selector\": \"autocomplete-filter-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-filter-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-harness\": {\n \"packagePath\": \"material/autocomplete/autocomplete-harness\",\n \"title\": \"Testing with MatAutocompleteHarness\",\n \"componentName\": \"AutocompleteHarnessExample\",\n \"files\": [\n \"autocomplete-harness-example.ts\",\n \"autocomplete-harness-example.html\",\n \"autocomplete-harness-example.spec.ts\"\n ],\n \"selector\": \"autocomplete-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-harness-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-optgroup\": {\n \"packagePath\": \"material/autocomplete/autocomplete-optgroup\",\n \"title\": \"Option groups autocomplete\",\n \"componentName\": \"AutocompleteOptgroupExample\",\n \"files\": [\n \"autocomplete-optgroup-example.ts\",\n \"autocomplete-optgroup-example.html\"\n ],\n \"selector\": \"autocomplete-optgroup-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-optgroup-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-overview\": {\n \"packagePath\": \"material/autocomplete/autocomplete-overview\",\n \"title\": \"Autocomplete overview\",\n \"componentName\": \"AutocompleteOverviewExample\",\n \"files\": [\n \"autocomplete-overview-example.ts\",\n \"autocomplete-overview-example.html\",\n \"autocomplete-overview-example.css\"\n ],\n \"selector\": \"autocomplete-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-overview-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-plain-input\": {\n \"packagePath\": \"material/autocomplete/autocomplete-plain-input\",\n \"title\": \"Plain input autocomplete\",\n \"componentName\": \"AutocompletePlainInputExample\",\n \"files\": [\n \"autocomplete-plain-input-example.ts\",\n \"autocomplete-plain-input-example.html\",\n \"autocomplete-plain-input-example.css\"\n ],\n \"selector\": \"autocomplete-plain-input-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-plain-input-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-require-selection\": {\n \"packagePath\": \"material/autocomplete/autocomplete-require-selection\",\n \"title\": \"Require an autocomplete option to be selected\",\n \"componentName\": \"AutocompleteRequireSelectionExample\",\n \"files\": [\n \"autocomplete-require-selection-example.ts\",\n \"autocomplete-require-selection-example.html\",\n \"autocomplete-require-selection-example.css\"\n ],\n \"selector\": \"autocomplete-require-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-require-selection-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-simple\": {\n \"packagePath\": \"material/autocomplete/autocomplete-simple\",\n \"title\": \"Simple autocomplete\",\n \"componentName\": \"AutocompleteSimpleExample\",\n \"files\": [\n \"autocomplete-simple-example.ts\",\n \"autocomplete-simple-example.html\",\n \"autocomplete-simple-example.css\"\n ],\n \"selector\": \"autocomplete-simple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-simple-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"badge-harness\": {\n \"packagePath\": \"material/badge/badge-harness\",\n \"title\": \"Testing with MatBadgeHarness\",\n \"componentName\": \"BadgeHarnessExample\",\n \"files\": [\n \"badge-harness-example.ts\",\n \"badge-harness-example.html\",\n \"badge-harness-example.spec.ts\"\n ],\n \"selector\": \"badge-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"badge-harness-example.ts\",\n \"importPath\": \"material/badge\"\n },\n \"badge-overview\": {\n \"packagePath\": \"material/badge/badge-overview\",\n \"title\": \"Badge overview\",\n \"componentName\": \"BadgeOverviewExample\",\n \"files\": [\n \"badge-overview-example.ts\",\n \"badge-overview-example.html\",\n \"badge-overview-example.css\"\n ],\n \"selector\": \"badge-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"badge-overview-example.ts\",\n \"importPath\": \"material/badge\"\n },\n \"bottom-sheet-harness\": {\n \"packagePath\": \"material/bottom-sheet/bottom-sheet-harness\",\n \"title\": \"Testing with MatBottomSheetHarness\",\n \"componentName\": \"BottomSheetHarnessExample\",\n \"files\": [\n \"bottom-sheet-harness-example.ts\",\n \"bottom-sheet-harness-example.html\",\n \"bottom-sheet-harness-example.spec.ts\"\n ],\n \"selector\": \"bottom-sheet-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"bottom-sheet-harness-example.ts\",\n \"importPath\": \"material/bottom-sheet\"\n },\n \"bottom-sheet-overview\": {\n \"packagePath\": \"material/bottom-sheet/bottom-sheet-overview\",\n \"title\": \"Bottom Sheet Overview\",\n \"componentName\": \"BottomSheetOverviewExample\",\n \"files\": [\n \"bottom-sheet-overview-example.ts\",\n \"bottom-sheet-overview-example.html\",\n \"bottom-sheet-overview-example-sheet.html\"\n ],\n \"selector\": \"bottom-sheet-overview-example\",\n \"additionalComponents\": [\n \"BottomSheetOverviewExampleSheet\"\n ],\n \"primaryFile\": \"bottom-sheet-overview-example.ts\",\n \"importPath\": \"material/bottom-sheet\"\n },\n \"button-toggle-appearance\": {\n \"packagePath\": \"material/button-toggle/button-toggle-appearance\",\n \"title\": \"Button toggle appearance\",\n \"componentName\": \"ButtonToggleAppearanceExample\",\n \"files\": [\n \"button-toggle-appearance-example.ts\",\n \"button-toggle-appearance-example.html\",\n \"button-toggle-appearance-example.css\"\n ],\n \"selector\": \"button-toggle-appearance-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-appearance-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-forms\": {\n \"packagePath\": \"material/button-toggle/button-toggle-forms\",\n \"title\": \"Button-toggles with forms\",\n \"componentName\": \"ButtonToggleFormsExample\",\n \"files\": [\n \"button-toggle-forms-example.ts\",\n \"button-toggle-forms-example.html\"\n ],\n \"selector\": \"button-toggle-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-forms-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-harness\": {\n \"packagePath\": \"material/button-toggle/button-toggle-harness\",\n \"title\": \"Testing with MatButtonToggleHarness\",\n \"componentName\": \"ButtonToggleHarnessExample\",\n \"files\": [\n \"button-toggle-harness-example.ts\",\n \"button-toggle-harness-example.html\",\n \"button-toggle-harness-example.spec.ts\"\n ],\n \"selector\": \"button-toggle-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-harness-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-mode\": {\n \"packagePath\": \"material/button-toggle/button-toggle-mode\",\n \"title\": \"Button toggle selection mode\",\n \"componentName\": \"ButtonToggleModeExample\",\n \"files\": [\n \"button-toggle-mode-example.ts\",\n \"button-toggle-mode-example.html\"\n ],\n \"selector\": \"button-toggle-mode-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-mode-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-overview\": {\n \"packagePath\": \"material/button-toggle/button-toggle-overview\",\n \"title\": \"Basic button-toggles\",\n \"componentName\": \"ButtonToggleOverviewExample\",\n \"files\": [\n \"button-toggle-overview-example.ts\",\n \"button-toggle-overview-example.html\"\n ],\n \"selector\": \"button-toggle-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-overview-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-disabled-interactive\": {\n \"packagePath\": \"material/button/button-disabled-interactive\",\n \"title\": \"Interactive disabled buttons\",\n \"componentName\": \"ButtonDisabledInteractiveExample\",\n \"files\": [\n \"button-disabled-interactive-example.ts\",\n \"button-disabled-interactive-example.html\",\n \"button-disabled-interactive-example.css\"\n ],\n \"selector\": \"button-disabled-interactive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-disabled-interactive-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"button-harness\": {\n \"packagePath\": \"material/button/button-harness\",\n \"title\": \"Testing with MatButtonHarness\",\n \"componentName\": \"ButtonHarnessExample\",\n \"files\": [\n \"button-harness-example.ts\",\n \"button-harness-example.html\",\n \"button-harness-example.spec.ts\"\n ],\n \"selector\": \"button-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-harness-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"button-overview\": {\n \"packagePath\": \"material/button/button-overview\",\n \"title\": \"Basic buttons\",\n \"componentName\": \"ButtonOverviewExample\",\n \"files\": [\n \"button-overview-example.ts\",\n \"button-overview-example.html\",\n \"button-overview-example.css\"\n ],\n \"selector\": \"button-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-overview-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"card-actions\": {\n \"packagePath\": \"material/card/card-actions\",\n \"title\": \"Card with actions alignment option\",\n \"componentName\": \"CardActionsExample\",\n \"files\": [\n \"card-actions-example.ts\",\n \"card-actions-example.html\"\n ],\n \"selector\": \"card-actions-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-actions-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-fancy\": {\n \"packagePath\": \"material/card/card-fancy\",\n \"title\": \"Card with multiple sections\",\n \"componentName\": \"CardFancyExample\",\n \"files\": [\n \"card-fancy-example.ts\",\n \"card-fancy-example.html\",\n \"card-fancy-example.css\"\n ],\n \"selector\": \"card-fancy-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-fancy-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-footer\": {\n \"packagePath\": \"material/card/card-footer\",\n \"title\": \"Card with footer\",\n \"componentName\": \"CardFooterExample\",\n \"files\": [\n \"card-footer-example.ts\",\n \"card-footer-example.html\",\n \"card-footer-example.css\"\n ],\n \"selector\": \"card-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-footer-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-harness\": {\n \"packagePath\": \"material/card/card-harness\",\n \"title\": \"Testing with MatCardHarness\",\n \"componentName\": \"CardHarnessExample\",\n \"files\": [\n \"card-harness-example.ts\",\n \"card-harness-example.html\",\n \"card-harness-example.spec.ts\"\n ],\n \"selector\": \"card-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-harness-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-media-size\": {\n \"packagePath\": \"material/card/card-media-size\",\n \"title\": \"Card with media size\",\n \"componentName\": \"CardMediaSizeExample\",\n \"files\": [\n \"card-media-size-example.ts\",\n \"card-media-size-example.html\",\n \"card-media-size-example.css\"\n ],\n \"selector\": \"card-media-size-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-media-size-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-overview\": {\n \"packagePath\": \"material/card/card-overview\",\n \"title\": \"Basic cards\",\n \"componentName\": \"CardOverviewExample\",\n \"files\": [\n \"card-overview-example.ts\",\n \"card-overview-example.html\"\n ],\n \"selector\": \"card-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-overview-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"checkbox-configurable\": {\n \"packagePath\": \"material/checkbox/checkbox-configurable\",\n \"title\": \"Configurable checkbox\",\n \"componentName\": \"CheckboxConfigurableExample\",\n \"files\": [\n \"checkbox-configurable-example.ts\",\n \"checkbox-configurable-example.html\",\n \"checkbox-configurable-example.css\"\n ],\n \"selector\": \"checkbox-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-configurable-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-harness\": {\n \"packagePath\": \"material/checkbox/checkbox-harness\",\n \"title\": \"Testing with MatCheckboxHarness\",\n \"componentName\": \"CheckboxHarnessExample\",\n \"files\": [\n \"checkbox-harness-example.ts\",\n \"checkbox-harness-example.html\",\n \"checkbox-harness-example.spec.ts\"\n ],\n \"selector\": \"checkbox-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-harness-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-overview\": {\n \"packagePath\": \"material/checkbox/checkbox-overview\",\n \"title\": \"Basic checkboxes\",\n \"componentName\": \"CheckboxOverviewExample\",\n \"files\": [\n \"checkbox-overview-example.ts\",\n \"checkbox-overview-example.html\",\n \"checkbox-overview-example.css\"\n ],\n \"selector\": \"checkbox-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-overview-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-reactive-forms\": {\n \"packagePath\": \"material/checkbox/checkbox-reactive-forms\",\n \"title\": \"Checkboxes with reactive forms\",\n \"componentName\": \"CheckboxReactiveFormsExample\",\n \"files\": [\n \"checkbox-reactive-forms-example.ts\",\n \"checkbox-reactive-forms-example.html\",\n \"checkbox-reactive-forms-example.css\"\n ],\n \"selector\": \"checkbox-reactive-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-reactive-forms-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"chips-autocomplete\": {\n \"packagePath\": \"material/chips/chips-autocomplete\",\n \"title\": \"Chips Autocomplete\",\n \"componentName\": \"ChipsAutocompleteExample\",\n \"files\": [\n \"chips-autocomplete-example.ts\",\n \"chips-autocomplete-example.html\",\n \"chips-autocomplete-example.css\"\n ],\n \"selector\": \"chips-autocomplete-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-autocomplete-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-avatar\": {\n \"packagePath\": \"material/chips/chips-avatar\",\n \"title\": \"Chips avatar\",\n \"componentName\": \"ChipsAvatarExample\",\n \"files\": [\n \"chips-avatar-example.ts\",\n \"chips-avatar-example.html\",\n \"chips-avatar-example.css\"\n ],\n \"selector\": \"chips-avatar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-avatar-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-drag-drop\": {\n \"packagePath\": \"material/chips/chips-drag-drop\",\n \"title\": \"Chips Drag and Drop\",\n \"componentName\": \"ChipsDragDropExample\",\n \"files\": [\n \"chips-drag-drop-example.ts\",\n \"chips-drag-drop-example.html\",\n \"chips-drag-drop-example.css\"\n ],\n \"selector\": \"chips-drag-drop-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-drag-drop-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-form-control\": {\n \"packagePath\": \"material/chips/chips-form-control\",\n \"title\": \"Chips with form control\",\n \"componentName\": \"ChipsFormControlExample\",\n \"files\": [\n \"chips-form-control-example.ts\",\n \"chips-form-control-example.html\",\n \"chips-form-control-example.css\"\n ],\n \"selector\": \"chips-form-control-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-form-control-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-harness\": {\n \"packagePath\": \"material/chips/chips-harness\",\n \"title\": \"Testing with MatChipsHarness\",\n \"componentName\": \"ChipsHarnessExample\",\n \"files\": [\n \"chips-harness-example.ts\",\n \"chips-harness-example.html\",\n \"chips-harness-example.spec.ts\"\n ],\n \"selector\": \"chips-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-harness-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-input\": {\n \"packagePath\": \"material/chips/chips-input\",\n \"title\": \"Chips with input\",\n \"componentName\": \"ChipsInputExample\",\n \"files\": [\n \"chips-input-example.ts\",\n \"chips-input-example.html\",\n \"chips-input-example.css\"\n ],\n \"selector\": \"chips-input-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-input-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-overview\": {\n \"packagePath\": \"material/chips/chips-overview\",\n \"title\": \"Basic chips\",\n \"componentName\": \"ChipsOverviewExample\",\n \"files\": [\n \"chips-overview-example.ts\",\n \"chips-overview-example.html\"\n ],\n \"selector\": \"chips-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-overview-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-reactive-form\": {\n \"packagePath\": \"material/chips/chips-reactive-form\",\n \"title\": \"Chips in reactive forms\",\n \"componentName\": \"ChipsReactiveFormExample\",\n \"files\": [\n \"chips-reactive-form-example.ts\",\n \"chips-reactive-form-example.html\",\n \"chips-reactive-form-example.css\"\n ],\n \"selector\": \"chips-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-reactive-form-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-stacked\": {\n \"packagePath\": \"material/chips/chips-stacked\",\n \"title\": \"Stacked chips\",\n \"componentName\": \"ChipsStackedExample\",\n \"files\": [\n \"chips-stacked-example.ts\",\n \"chips-stacked-example.html\",\n \"chips-stacked-example.css\"\n ],\n \"selector\": \"chips-stacked-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-stacked-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-template-form\": {\n \"packagePath\": \"material/chips/chips-template-form\",\n \"title\": \"Chips in template-driven forms\",\n \"componentName\": \"ChipsTemplateFormExample\",\n \"files\": [\n \"chips-template-form-example.ts\",\n \"chips-template-form-example.html\",\n \"chips-template-form-example.css\"\n ],\n \"selector\": \"chips-template-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-template-form-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"elevation-overview\": {\n \"packagePath\": \"material/core/elevation-overview\",\n \"title\": \"Elevation CSS classes\",\n \"componentName\": \"ElevationOverviewExample\",\n \"files\": [\n \"elevation-overview-example.ts\",\n \"elevation-overview-example.html\",\n \"elevation-overview-example.css\"\n ],\n \"selector\": \"elevation-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"elevation-overview-example.ts\",\n \"importPath\": \"material/core\"\n },\n \"ripple-overview\": {\n \"packagePath\": \"material/core/ripple-overview\",\n \"title\": \"MatRipple basic usage\",\n \"componentName\": \"RippleOverviewExample\",\n \"files\": [\n \"ripple-overview-example.ts\",\n \"ripple-overview-example.html\",\n \"ripple-overview-example.css\"\n ],\n \"selector\": \"ripple-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"ripple-overview-example.ts\",\n \"importPath\": \"material/core\"\n },\n \"date-range-picker-comparison\": {\n \"packagePath\": \"material/datepicker/date-range-picker-comparison\",\n \"title\": \"Date range picker comparison ranges\",\n \"componentName\": \"DateRangePickerComparisonExample\",\n \"files\": [\n \"date-range-picker-comparison-example.ts\",\n \"date-range-picker-comparison-example.html\",\n \"date-range-picker-comparison-example.css\"\n ],\n \"selector\": \"date-range-picker-comparison-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-comparison-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-forms\": {\n \"packagePath\": \"material/datepicker/date-range-picker-forms\",\n \"title\": \"Date range picker forms integration\",\n \"componentName\": \"DateRangePickerFormsExample\",\n \"files\": [\n \"date-range-picker-forms-example.ts\",\n \"date-range-picker-forms-example.html\"\n ],\n \"selector\": \"date-range-picker-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-forms-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-overview\": {\n \"packagePath\": \"material/datepicker/date-range-picker-overview\",\n \"title\": \"Basic date range picker\",\n \"componentName\": \"DateRangePickerOverviewExample\",\n \"files\": [\n \"date-range-picker-overview-example.ts\",\n \"date-range-picker-overview-example.html\"\n ],\n \"selector\": \"date-range-picker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-overview-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-selection-strategy\": {\n \"packagePath\": \"material/datepicker/date-range-picker-selection-strategy\",\n \"title\": \"Date range picker with a custom selection strategy\",\n \"componentName\": \"DateRangePickerSelectionStrategyExample\",\n \"files\": [\n \"date-range-picker-selection-strategy-example.ts\",\n \"date-range-picker-selection-strategy-example.html\"\n ],\n \"selector\": \"date-range-picker-selection-strategy-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-selection-strategy-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-actions\": {\n \"packagePath\": \"material/datepicker/datepicker-actions\",\n \"title\": \"Datepicker action buttons\",\n \"componentName\": \"DatepickerActionsExample\",\n \"files\": [\n \"datepicker-actions-example.ts\",\n \"datepicker-actions-example.html\",\n \"datepicker-actions-example.css\"\n ],\n \"selector\": \"datepicker-actions-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-actions-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-api\": {\n \"packagePath\": \"material/datepicker/datepicker-api\",\n \"title\": \"Datepicker open method\",\n \"componentName\": \"DatepickerApiExample\",\n \"files\": [\n \"datepicker-api-example.ts\",\n \"datepicker-api-example.html\",\n \"datepicker-api-example.css\"\n ],\n \"selector\": \"datepicker-api-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-api-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-custom-header\": {\n \"packagePath\": \"material/datepicker/datepicker-custom-header\",\n \"title\": \"Datepicker with custom calendar header\",\n \"componentName\": \"DatepickerCustomHeaderExample\",\n \"files\": [\n \"datepicker-custom-header-example.ts\",\n \"datepicker-custom-header-example.html\"\n ],\n \"selector\": \"datepicker-custom-header-example\",\n \"additionalComponents\": [\n \"ExampleHeader\"\n ],\n \"primaryFile\": \"datepicker-custom-header-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-custom-icon\": {\n \"packagePath\": \"material/datepicker/datepicker-custom-icon\",\n \"title\": \"Datepicker with custom icon\",\n \"componentName\": \"DatepickerCustomIconExample\",\n \"files\": [\n \"datepicker-custom-icon-example.ts\",\n \"datepicker-custom-icon-example.html\"\n ],\n \"selector\": \"datepicker-custom-icon-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-custom-icon-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-date-class\": {\n \"packagePath\": \"material/datepicker/datepicker-date-class\",\n \"title\": \"Datepicker with custom date classes\",\n \"componentName\": \"DatepickerDateClassExample\",\n \"files\": [\n \"datepicker-date-class-example.ts\",\n \"datepicker-date-class-example.html\",\n \"datepicker-date-class-example.css\"\n ],\n \"selector\": \"datepicker-date-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-date-class-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-dialog\": {\n \"packagePath\": \"material/datepicker/datepicker-dialog\",\n \"title\": \"Datepicker inside a MatDialog\",\n \"componentName\": \"DatepickerDialogExample\",\n \"files\": [\n \"datepicker-dialog-example.ts\",\n \"datepicker-dialog-example.html\",\n \"datepicker-dialog-example-dialog.html\"\n ],\n \"selector\": \"datepicker-dialog-example\",\n \"additionalComponents\": [\n \"DatepickerDialogExampleDialog\"\n ],\n \"primaryFile\": \"datepicker-dialog-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-disabled\": {\n \"packagePath\": \"material/datepicker/datepicker-disabled\",\n \"title\": \"Disabled datepicker\",\n \"componentName\": \"DatepickerDisabledExample\",\n \"files\": [\n \"datepicker-disabled-example.ts\",\n \"datepicker-disabled-example.html\"\n ],\n \"selector\": \"datepicker-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-disabled-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-events\": {\n \"packagePath\": \"material/datepicker/datepicker-events\",\n \"title\": \"Datepicker input and change events\",\n \"componentName\": \"DatepickerEventsExample\",\n \"files\": [\n \"datepicker-events-example.ts\",\n \"datepicker-events-example.html\",\n \"datepicker-events-example.css\"\n ],\n \"selector\": \"datepicker-events-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-events-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-filter\": {\n \"packagePath\": \"material/datepicker/datepicker-filter\",\n \"title\": \"Datepicker with filter validation\",\n \"componentName\": \"DatepickerFilterExample\",\n \"files\": [\n \"datepicker-filter-example.ts\",\n \"datepicker-filter-example.html\"\n ],\n \"selector\": \"datepicker-filter-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-filter-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-formats\": {\n \"packagePath\": \"material/datepicker/datepicker-formats\",\n \"title\": \"Datepicker with custom formats\",\n \"componentName\": \"DatepickerFormatsExample\",\n \"files\": [\n \"datepicker-formats-example.ts\",\n \"datepicker-formats-example.html\"\n ],\n \"selector\": \"datepicker-formats-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-formats-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-harness\": {\n \"packagePath\": \"material/datepicker/datepicker-harness\",\n \"title\": \"Testing with MatDatepickerInputHarness\",\n \"componentName\": \"DatepickerHarnessExample\",\n \"files\": [\n \"datepicker-harness-example.ts\",\n \"datepicker-harness-example.html\",\n \"datepicker-harness-example.spec.ts\"\n ],\n \"selector\": \"datepicker-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-harness-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-inline-calendar\": {\n \"packagePath\": \"material/datepicker/datepicker-inline-calendar\",\n \"title\": \"Datepicker inline calendar example\",\n \"componentName\": \"DatepickerInlineCalendarExample\",\n \"files\": [\n \"datepicker-inline-calendar-example.ts\",\n \"datepicker-inline-calendar-example.html\",\n \"datepicker-inline-calendar-example.css\"\n ],\n \"selector\": \"datepicker-inline-calendar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-inline-calendar-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-locale\": {\n \"packagePath\": \"material/datepicker/datepicker-locale\",\n \"title\": \"Datepicker with different locale\",\n \"componentName\": \"DatepickerLocaleExample\",\n \"files\": [\n \"datepicker-locale-example.ts\",\n \"datepicker-locale-example.html\",\n \"datepicker-locale-example.css\"\n ],\n \"selector\": \"datepicker-locale-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-locale-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-min-max\": {\n \"packagePath\": \"material/datepicker/datepicker-min-max\",\n \"title\": \"Datepicker with min & max validation\",\n \"componentName\": \"DatepickerMinMaxExample\",\n \"files\": [\n \"datepicker-min-max-example.ts\",\n \"datepicker-min-max-example.html\"\n ],\n \"selector\": \"datepicker-min-max-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-min-max-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-moment\": {\n \"packagePath\": \"material/datepicker/datepicker-moment\",\n \"title\": \"Datepicker that uses Moment.js dates\",\n \"componentName\": \"DatepickerMomentExample\",\n \"files\": [\n \"datepicker-moment-example.ts\",\n \"datepicker-moment-example.html\"\n ],\n \"selector\": \"datepicker-moment-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-moment-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-overview\": {\n \"packagePath\": \"material/datepicker/datepicker-overview\",\n \"title\": \"Basic datepicker\",\n \"componentName\": \"DatepickerOverviewExample\",\n \"files\": [\n \"datepicker-overview-example.ts\",\n \"datepicker-overview-example.html\"\n ],\n \"selector\": \"datepicker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-overview-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-start-view\": {\n \"packagePath\": \"material/datepicker/datepicker-start-view\",\n \"title\": \"Datepicker start date\",\n \"componentName\": \"DatepickerStartViewExample\",\n \"files\": [\n \"datepicker-start-view-example.ts\",\n \"datepicker-start-view-example.html\"\n ],\n \"selector\": \"datepicker-start-view-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-start-view-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-touch\": {\n \"packagePath\": \"material/datepicker/datepicker-touch\",\n \"title\": \"Datepicker touch UI\",\n \"componentName\": \"DatepickerTouchExample\",\n \"files\": [\n \"datepicker-touch-example.ts\",\n \"datepicker-touch-example.html\"\n ],\n \"selector\": \"datepicker-touch-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-touch-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-value\": {\n \"packagePath\": \"material/datepicker/datepicker-value\",\n \"title\": \"Datepicker selected value\",\n \"componentName\": \"DatepickerValueExample\",\n \"files\": [\n \"datepicker-value-example.ts\",\n \"datepicker-value-example.html\",\n \"datepicker-value-example.css\"\n ],\n \"selector\": \"datepicker-value-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-value-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-views-selection\": {\n \"packagePath\": \"material/datepicker/datepicker-views-selection\",\n \"title\": \"Datepicker emulating a Year and month picker\",\n \"componentName\": \"DatepickerViewsSelectionExample\",\n \"files\": [\n \"datepicker-views-selection-example.ts\",\n \"datepicker-views-selection-example.html\",\n \"datepicker-views-selection-example.css\"\n ],\n \"selector\": \"datepicker-views-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-views-selection-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"dialog-animations\": {\n \"packagePath\": \"material/dialog/dialog-animations\",\n \"title\": \"Dialog Animations\",\n \"componentName\": \"DialogAnimationsExample\",\n \"files\": [\n \"dialog-animations-example.ts\",\n \"dialog-animations-example.html\",\n \"dialog-animations-example.css\",\n \"dialog-animations-example-dialog.html\"\n ],\n \"selector\": \"dialog-animations-example\",\n \"additionalComponents\": [\n \"DialogAnimationsExampleDialog\"\n ],\n \"primaryFile\": \"dialog-animations-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-content\": {\n \"packagePath\": \"material/dialog/dialog-content\",\n \"title\": \"Dialog with header, scrollable content and actions\",\n \"componentName\": \"DialogContentExample\",\n \"files\": [\n \"dialog-content-example.ts\",\n \"dialog-content-example.html\",\n \"dialog-content-example-dialog.html\"\n ],\n \"selector\": \"dialog-content-example\",\n \"additionalComponents\": [\n \"DialogContentExampleDialog\"\n ],\n \"primaryFile\": \"dialog-content-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-data\": {\n \"packagePath\": \"material/dialog/dialog-data\",\n \"title\": \"Injecting data when opening a dialog\",\n \"componentName\": \"DialogDataExample\",\n \"files\": [\n \"dialog-data-example.ts\",\n \"dialog-data-example.html\",\n \"dialog-data-example-dialog.html\"\n ],\n \"selector\": \"dialog-data-example\",\n \"additionalComponents\": [\n \"DialogDataExampleDialog\"\n ],\n \"primaryFile\": \"dialog-data-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-elements\": {\n \"packagePath\": \"material/dialog/dialog-elements\",\n \"title\": \"Dialog elements\",\n \"componentName\": \"DialogElementsExample\",\n \"files\": [\n \"dialog-elements-example.ts\",\n \"dialog-elements-example.html\",\n \"dialog-elements-example-dialog.html\"\n ],\n \"selector\": \"dialog-elements-example\",\n \"additionalComponents\": [\n \"DialogElementsExampleDialog\"\n ],\n \"primaryFile\": \"dialog-elements-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-from-menu\": {\n \"packagePath\": \"material/dialog/dialog-from-menu\",\n \"title\": \"Dialog launched from a menu\",\n \"componentName\": \"DialogFromMenuExample\",\n \"files\": [\n \"dialog-from-menu-example.ts\",\n \"dialog-from-menu-example.html\",\n \"dialog-from-menu-example-dialog.html\"\n ],\n \"selector\": \"dialog-from-menu-example\",\n \"additionalComponents\": [\n \"DialogFromMenuExampleDialog\"\n ],\n \"primaryFile\": \"dialog-from-menu-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-harness\": {\n \"packagePath\": \"material/dialog/dialog-harness\",\n \"title\": \"Testing with MatDialogHarness\",\n \"componentName\": \"DialogHarnessExample\",\n \"files\": [\n \"dialog-harness-example.ts\",\n \"dialog-harness-example.html\",\n \"dialog-harness-example.spec.ts\"\n ],\n \"selector\": \"dialog-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"dialog-harness-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-overview\": {\n \"packagePath\": \"material/dialog/dialog-overview\",\n \"title\": \"Dialog Overview\",\n \"componentName\": \"DialogOverviewExample\",\n \"files\": [\n \"dialog-overview-example.ts\",\n \"dialog-overview-example.html\",\n \"dialog-overview-example-dialog.html\"\n ],\n \"selector\": \"dialog-overview-example\",\n \"additionalComponents\": [\n \"DialogOverviewExampleDialog\"\n ],\n \"primaryFile\": \"dialog-overview-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"divider-harness\": {\n \"packagePath\": \"material/divider/divider-harness\",\n \"title\": \"Testing with MatDividerHarness\",\n \"componentName\": \"DividerHarnessExample\",\n \"files\": [\n \"divider-harness-example.ts\",\n \"divider-harness-example.html\",\n \"divider-harness-example.spec.ts\"\n ],\n \"selector\": \"divider-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"divider-harness-example.ts\",\n \"importPath\": \"material/divider\"\n },\n \"divider-overview\": {\n \"packagePath\": \"material/divider/divider-overview\",\n \"title\": \"Basic divider\",\n \"componentName\": \"DividerOverviewExample\",\n \"files\": [\n \"divider-overview-example.ts\",\n \"divider-overview-example.html\"\n ],\n \"selector\": \"divider-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"divider-overview-example.ts\",\n \"importPath\": \"material/divider\"\n },\n \"expansion-expand-collapse-all\": {\n \"packagePath\": \"material/expansion/expansion-expand-collapse-all\",\n \"title\": \"Accordion with expand/collapse all toggles\",\n \"componentName\": \"ExpansionExpandCollapseAllExample\",\n \"files\": [\n \"expansion-expand-collapse-all-example.ts\",\n \"expansion-expand-collapse-all-example.html\",\n \"expansion-expand-collapse-all-example.css\"\n ],\n \"selector\": \"expansion-expand-collapse-all-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-expand-collapse-all-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-harness\": {\n \"packagePath\": \"material/expansion/expansion-harness\",\n \"title\": \"Testing with MatExpansionPanelHarness and MatAccordionHarness\",\n \"componentName\": \"ExpansionHarnessExample\",\n \"files\": [\n \"expansion-harness-example.ts\",\n \"expansion-harness-example.html\",\n \"expansion-harness-example.spec.ts\"\n ],\n \"selector\": \"expansion-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-harness-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-overview\": {\n \"packagePath\": \"material/expansion/expansion-overview\",\n \"title\": \"Basic expansion panel\",\n \"componentName\": \"ExpansionOverviewExample\",\n \"files\": [\n \"expansion-overview-example.ts\",\n \"expansion-overview-example.html\"\n ],\n \"selector\": \"expansion-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-overview-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-steps\": {\n \"packagePath\": \"material/expansion/expansion-steps\",\n \"title\": \"Expansion panel as accordion\",\n \"componentName\": \"ExpansionStepsExample\",\n \"files\": [\n \"expansion-steps-example.ts\",\n \"expansion-steps-example.html\",\n \"expansion-steps-example.css\"\n ],\n \"selector\": \"expansion-steps-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-steps-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"form-field-appearance\": {\n \"packagePath\": \"material/form-field/form-field-appearance\",\n \"title\": \"Form field appearance variants\",\n \"componentName\": \"FormFieldAppearanceExample\",\n \"files\": [\n \"form-field-appearance-example.ts\",\n \"form-field-appearance-example.html\"\n ],\n \"selector\": \"form-field-appearance-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-appearance-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-custom-control\": {\n \"packagePath\": \"material/form-field/form-field-custom-control\",\n \"title\": \"Form field with custom telephone number input control.\",\n \"componentName\": \"FormFieldCustomControlExample\",\n \"files\": [\n \"form-field-custom-control-example.ts\",\n \"form-field-custom-control-example.html\",\n \"example-tel-input-example.html\",\n \"example-tel-input-example.css\"\n ],\n \"selector\": \"form-field-custom-control-example\",\n \"additionalComponents\": [\n \"MyTelInput\"\n ],\n \"primaryFile\": \"form-field-custom-control-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-error\": {\n \"packagePath\": \"material/form-field/form-field-error\",\n \"title\": \"Form field with error messages\",\n \"componentName\": \"FormFieldErrorExample\",\n \"files\": [\n \"form-field-error-example.ts\",\n \"form-field-error-example.html\",\n \"form-field-error-example.css\"\n ],\n \"selector\": \"form-field-error-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-error-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-harness\": {\n \"packagePath\": \"material/form-field/form-field-harness\",\n \"title\": \"Testing with MatFormFieldHarness\",\n \"componentName\": \"FormFieldHarnessExample\",\n \"files\": [\n \"form-field-harness-example.ts\",\n \"form-field-harness-example.html\",\n \"form-field-harness-example.spec.ts\"\n ],\n \"selector\": \"form-field-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-harness-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-hint\": {\n \"packagePath\": \"material/form-field/form-field-hint\",\n \"title\": \"Form field with hints\",\n \"componentName\": \"FormFieldHintExample\",\n \"files\": [\n \"form-field-hint-example.ts\",\n \"form-field-hint-example.html\",\n \"form-field-hint-example.css\"\n ],\n \"selector\": \"form-field-hint-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-hint-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-label\": {\n \"packagePath\": \"material/form-field/form-field-label\",\n \"title\": \"Form field with label\",\n \"componentName\": \"FormFieldLabelExample\",\n \"files\": [\n \"form-field-label-example.ts\",\n \"form-field-label-example.html\",\n \"form-field-label-example.css\"\n ],\n \"selector\": \"form-field-label-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-label-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-overview\": {\n \"packagePath\": \"material/form-field/form-field-overview\",\n \"title\": \"Simple form field\",\n \"componentName\": \"FormFieldOverviewExample\",\n \"files\": [\n \"form-field-overview-example.ts\",\n \"form-field-overview-example.html\",\n \"form-field-overview-example.css\"\n ],\n \"selector\": \"form-field-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-overview-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-prefix-suffix\": {\n \"packagePath\": \"material/form-field/form-field-prefix-suffix\",\n \"title\": \"Form field with prefix & suffix\",\n \"componentName\": \"FormFieldPrefixSuffixExample\",\n \"files\": [\n \"form-field-prefix-suffix-example.ts\",\n \"form-field-prefix-suffix-example.html\",\n \"form-field-prefix-suffix-example.css\"\n ],\n \"selector\": \"form-field-prefix-suffix-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-prefix-suffix-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"grid-list-dynamic\": {\n \"packagePath\": \"material/grid-list/grid-list-dynamic\",\n \"title\": \"Dynamic grid-list\",\n \"componentName\": \"GridListDynamicExample\",\n \"files\": [\n \"grid-list-dynamic-example.ts\",\n \"grid-list-dynamic-example.html\"\n ],\n \"selector\": \"grid-list-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-dynamic-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"grid-list-harness\": {\n \"packagePath\": \"material/grid-list/grid-list-harness\",\n \"title\": \"Testing with MatGridListHarness\",\n \"componentName\": \"GridListHarnessExample\",\n \"files\": [\n \"grid-list-harness-example.ts\",\n \"grid-list-harness-example.html\",\n \"grid-list-harness-example.spec.ts\"\n ],\n \"selector\": \"grid-list-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-harness-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"grid-list-overview\": {\n \"packagePath\": \"material/grid-list/grid-list-overview\",\n \"title\": \"Basic grid-list\",\n \"componentName\": \"GridListOverviewExample\",\n \"files\": [\n \"grid-list-overview-example.ts\",\n \"grid-list-overview-example.html\",\n \"grid-list-overview-example.css\"\n ],\n \"selector\": \"grid-list-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-overview-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"icon-harness\": {\n \"packagePath\": \"material/icon/icon-harness\",\n \"title\": \"Testing with MatIconHarness\",\n \"componentName\": \"IconHarnessExample\",\n \"files\": [\n \"icon-harness-example.ts\",\n \"icon-harness-example.html\",\n \"icon-harness-example.spec.ts\"\n ],\n \"selector\": \"icon-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-harness-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"icon-overview\": {\n \"packagePath\": \"material/icon/icon-overview\",\n \"title\": \"Basic icons\",\n \"componentName\": \"IconOverviewExample\",\n \"files\": [\n \"icon-overview-example.ts\",\n \"icon-overview-example.html\"\n ],\n \"selector\": \"icon-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-overview-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"icon-svg\": {\n \"packagePath\": \"material/icon/icon-svg\",\n \"title\": \"SVG icons\",\n \"componentName\": \"IconSvgExample\",\n \"files\": [\n \"icon-svg-example.ts\",\n \"icon-svg-example.html\"\n ],\n \"selector\": \"icon-svg-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-svg-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"input-clearable\": {\n \"packagePath\": \"material/input/input-clearable\",\n \"title\": \"Input with a clear button\",\n \"componentName\": \"InputClearableExample\",\n \"files\": [\n \"input-clearable-example.ts\",\n \"./input-clearable-example.html\",\n \"./input-clearable-example.css\"\n ],\n \"selector\": \"input-clearable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-clearable-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-error-state-matcher\": {\n \"packagePath\": \"material/input/input-error-state-matcher\",\n \"title\": \"Input with a custom ErrorStateMatcher\",\n \"componentName\": \"InputErrorStateMatcherExample\",\n \"files\": [\n \"input-error-state-matcher-example.ts\",\n \"./input-error-state-matcher-example.html\",\n \"./input-error-state-matcher-example.css\"\n ],\n \"selector\": \"input-error-state-matcher-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-error-state-matcher-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-errors\": {\n \"packagePath\": \"material/input/input-errors\",\n \"title\": \"Input with error messages\",\n \"componentName\": \"InputErrorsExample\",\n \"files\": [\n \"input-errors-example.ts\",\n \"input-errors-example.html\",\n \"input-errors-example.css\"\n ],\n \"selector\": \"input-errors-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-errors-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-form\": {\n \"packagePath\": \"material/input/input-form\",\n \"title\": \"Inputs in a form\",\n \"componentName\": \"InputFormExample\",\n \"files\": [\n \"input-form-example.ts\",\n \"input-form-example.html\",\n \"input-form-example.css\"\n ],\n \"selector\": \"input-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-form-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-harness\": {\n \"packagePath\": \"material/input/input-harness\",\n \"title\": \"Testing with MatInputHarness\",\n \"componentName\": \"InputHarnessExample\",\n \"files\": [\n \"input-harness-example.ts\",\n \"input-harness-example.html\",\n \"input-harness-example.spec.ts\"\n ],\n \"selector\": \"input-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-harness-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-hint\": {\n \"packagePath\": \"material/input/input-hint\",\n \"title\": \"Input with hints\",\n \"componentName\": \"InputHintExample\",\n \"files\": [\n \"input-hint-example.ts\",\n \"input-hint-example.html\",\n \"input-hint-example.css\"\n ],\n \"selector\": \"input-hint-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-hint-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-overview\": {\n \"packagePath\": \"material/input/input-overview\",\n \"title\": \"Basic Inputs\",\n \"componentName\": \"InputOverviewExample\",\n \"files\": [\n \"input-overview-example.ts\",\n \"input-overview-example.html\",\n \"input-overview-example.css\"\n ],\n \"selector\": \"input-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-overview-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-prefix-suffix\": {\n \"packagePath\": \"material/input/input-prefix-suffix\",\n \"title\": \"Inputs with prefixes and suffixes\",\n \"componentName\": \"InputPrefixSuffixExample\",\n \"files\": [\n \"input-prefix-suffix-example.ts\",\n \"input-prefix-suffix-example.html\",\n \"input-prefix-suffix-example.css\"\n ],\n \"selector\": \"input-prefix-suffix-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-prefix-suffix-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"list-harness\": {\n \"packagePath\": \"material/list/list-harness\",\n \"title\": \"Testing with MatListHarness\",\n \"componentName\": \"ListHarnessExample\",\n \"files\": [\n \"list-harness-example.ts\",\n \"list-harness-example.html\",\n \"list-harness-example.spec.ts\"\n ],\n \"selector\": \"list-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-harness-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-overview\": {\n \"packagePath\": \"material/list/list-overview\",\n \"title\": \"Basic list\",\n \"componentName\": \"ListOverviewExample\",\n \"files\": [\n \"list-overview-example.ts\",\n \"list-overview-example.html\"\n ],\n \"selector\": \"list-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-overview-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-sections\": {\n \"packagePath\": \"material/list/list-sections\",\n \"title\": \"List with sections\",\n \"componentName\": \"ListSectionsExample\",\n \"files\": [\n \"list-sections-example.ts\",\n \"list-sections-example.html\",\n \"list-sections-example.css\"\n ],\n \"selector\": \"list-sections-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-sections-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-selection\": {\n \"packagePath\": \"material/list/list-selection\",\n \"title\": \"List with selection\",\n \"componentName\": \"ListSelectionExample\",\n \"files\": [\n \"list-selection-example.ts\",\n \"list-selection-example.html\"\n ],\n \"selector\": \"list-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-selection-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-single-selection-reactive-form\": {\n \"packagePath\": \"material/list/list-single-selection-reactive-form\",\n \"title\": \"List with single selection using Reactive forms\",\n \"componentName\": \"ListSingleSelectionReactiveFormExample\",\n \"files\": [\n \"list-single-selection-reactive-form-example.ts\",\n \"list-single-selection-form-example.html\"\n ],\n \"selector\": \"list-single-selection-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-single-selection-reactive-form-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-single-selection\": {\n \"packagePath\": \"material/list/list-single-selection\",\n \"title\": \"List with single selection using Reactive Forms\",\n \"componentName\": \"ListSingleSelectionExample\",\n \"files\": [\n \"list-single-selection-example.ts\",\n \"list-single-selection-example.html\"\n ],\n \"selector\": \"list-single-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-single-selection-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-variants\": {\n \"packagePath\": \"material/list/list-variants\",\n \"title\": \"List variants\",\n \"componentName\": \"ListVariantsExample\",\n \"files\": [\n \"list-variants-example.ts\",\n \"list-variants-example.html\",\n \"./list-variants-example.css\"\n ],\n \"selector\": \"list-variants-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-variants-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"menu-harness\": {\n \"packagePath\": \"material/menu/menu-harness\",\n \"title\": \"Testing with MatMenuHarness\",\n \"componentName\": \"MenuHarnessExample\",\n \"files\": [\n \"menu-harness-example.ts\",\n \"menu-harness-example.html\",\n \"menu-harness-example.spec.ts\"\n ],\n \"selector\": \"menu-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-harness-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-icons\": {\n \"packagePath\": \"material/menu/menu-icons\",\n \"title\": \"Menu with icons\",\n \"componentName\": \"MenuIconsExample\",\n \"files\": [\n \"menu-icons-example.ts\",\n \"menu-icons-example.html\"\n ],\n \"selector\": \"menu-icons-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-icons-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-nested\": {\n \"packagePath\": \"material/menu/menu-nested\",\n \"title\": \"Nested menu\",\n \"componentName\": \"MenuNestedExample\",\n \"files\": [\n \"menu-nested-example.ts\",\n \"menu-nested-example.html\"\n ],\n \"selector\": \"menu-nested-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-nested-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-overview\": {\n \"packagePath\": \"material/menu/menu-overview\",\n \"title\": \"Basic menu\",\n \"componentName\": \"MenuOverviewExample\",\n \"files\": [\n \"menu-overview-example.ts\",\n \"menu-overview-example.html\"\n ],\n \"selector\": \"menu-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-overview-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-position\": {\n \"packagePath\": \"material/menu/menu-position\",\n \"title\": \"Menu positioning\",\n \"componentName\": \"MenuPositionExample\",\n \"files\": [\n \"menu-position-example.ts\",\n \"menu-position-example.html\"\n ],\n \"selector\": \"menu-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-position-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"paginator-configurable\": {\n \"packagePath\": \"material/paginator/paginator-configurable\",\n \"title\": \"Configurable paginator\",\n \"componentName\": \"PaginatorConfigurableExample\",\n \"files\": [\n \"paginator-configurable-example.ts\",\n \"paginator-configurable-example.html\",\n \"paginator-configurable-example.css\"\n ],\n \"selector\": \"paginator-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-configurable-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-harness\": {\n \"packagePath\": \"material/paginator/paginator-harness\",\n \"title\": \"Testing with MatPaginatorHarness\",\n \"componentName\": \"PaginatorHarnessExample\",\n \"files\": [\n \"paginator-harness-example.ts\",\n \"paginator-harness-example.html\",\n \"paginator-harness-example.spec.ts\"\n ],\n \"selector\": \"paginator-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-harness-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-intl\": {\n \"packagePath\": \"material/paginator/paginator-intl\",\n \"title\": \"Paginator internationalization\",\n \"componentName\": \"PaginatorIntlExample\",\n \"files\": [\n \"paginator-intl-example.ts\",\n \"paginator-intl-example.html\"\n ],\n \"selector\": \"paginator-intl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-intl-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-overview\": {\n \"packagePath\": \"material/paginator/paginator-overview\",\n \"title\": \"Paginator\",\n \"componentName\": \"PaginatorOverviewExample\",\n \"files\": [\n \"paginator-overview-example.ts\",\n \"paginator-overview-example.html\"\n ],\n \"selector\": \"paginator-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-overview-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"progress-bar-buffer\": {\n \"packagePath\": \"material/progress-bar/progress-bar-buffer\",\n \"title\": \"Buffer progress-bar\",\n \"componentName\": \"ProgressBarBufferExample\",\n \"files\": [\n \"progress-bar-buffer-example.ts\",\n \"progress-bar-buffer-example.html\"\n ],\n \"selector\": \"progress-bar-buffer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-buffer-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-configurable\": {\n \"packagePath\": \"material/progress-bar/progress-bar-configurable\",\n \"title\": \"Configurable progress-bar\",\n \"componentName\": \"ProgressBarConfigurableExample\",\n \"files\": [\n \"progress-bar-configurable-example.ts\",\n \"progress-bar-configurable-example.html\",\n \"progress-bar-configurable-example.css\"\n ],\n \"selector\": \"progress-bar-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-configurable-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-determinate\": {\n \"packagePath\": \"material/progress-bar/progress-bar-determinate\",\n \"title\": \"Determinate progress-bar\",\n \"componentName\": \"ProgressBarDeterminateExample\",\n \"files\": [\n \"progress-bar-determinate-example.ts\",\n \"progress-bar-determinate-example.html\"\n ],\n \"selector\": \"progress-bar-determinate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-determinate-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-harness\": {\n \"packagePath\": \"material/progress-bar/progress-bar-harness\",\n \"title\": \"Testing with MatProgressBarHarness\",\n \"componentName\": \"ProgressBarHarnessExample\",\n \"files\": [\n \"progress-bar-harness-example.ts\",\n \"progress-bar-harness-example.html\",\n \"progress-bar-harness-example.spec.ts\"\n ],\n \"selector\": \"progress-bar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-harness-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-indeterminate\": {\n \"packagePath\": \"material/progress-bar/progress-bar-indeterminate\",\n \"title\": \"Indeterminate progress-bar\",\n \"componentName\": \"ProgressBarIndeterminateExample\",\n \"files\": [\n \"progress-bar-indeterminate-example.ts\",\n \"progress-bar-indeterminate-example.html\"\n ],\n \"selector\": \"progress-bar-indeterminate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-indeterminate-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-query\": {\n \"packagePath\": \"material/progress-bar/progress-bar-query\",\n \"title\": \"Query progress-bar\",\n \"componentName\": \"ProgressBarQueryExample\",\n \"files\": [\n \"progress-bar-query-example.ts\",\n \"progress-bar-query-example.html\"\n ],\n \"selector\": \"progress-bar-query-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-query-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-spinner-configurable\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-configurable\",\n \"title\": \"Configurable progress spinner\",\n \"componentName\": \"ProgressSpinnerConfigurableExample\",\n \"files\": [\n \"progress-spinner-configurable-example.ts\",\n \"progress-spinner-configurable-example.html\",\n \"progress-spinner-configurable-example.css\"\n ],\n \"selector\": \"progress-spinner-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-configurable-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"progress-spinner-harness\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-harness\",\n \"title\": \"Testing with MatProgressSpinnerHarness\",\n \"componentName\": \"ProgressSpinnerHarnessExample\",\n \"files\": [\n \"progress-spinner-harness-example.ts\",\n \"progress-spinner-harness-example.html\",\n \"progress-spinner-harness-example.spec.ts\"\n ],\n \"selector\": \"progress-spinner-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-harness-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"progress-spinner-overview\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-overview\",\n \"title\": \"Basic progress-spinner\",\n \"componentName\": \"ProgressSpinnerOverviewExample\",\n \"files\": [\n \"progress-spinner-overview-example.ts\",\n \"progress-spinner-overview-example.html\"\n ],\n \"selector\": \"progress-spinner-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-overview-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"radio-harness\": {\n \"packagePath\": \"material/radio/radio-harness\",\n \"title\": \"Testing with MatRadioHarness\",\n \"componentName\": \"RadioHarnessExample\",\n \"files\": [\n \"radio-harness-example.ts\",\n \"radio-harness-example.html\",\n \"radio-harness-example.spec.ts\"\n ],\n \"selector\": \"radio-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-harness-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"radio-ng-model\": {\n \"packagePath\": \"material/radio/radio-ng-model\",\n \"title\": \"Radios with ngModel\",\n \"componentName\": \"RadioNgModelExample\",\n \"files\": [\n \"radio-ng-model-example.ts\",\n \"radio-ng-model-example.html\",\n \"radio-ng-model-example.css\"\n ],\n \"selector\": \"radio-ng-model-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-ng-model-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"radio-overview\": {\n \"packagePath\": \"material/radio/radio-overview\",\n \"title\": \"Basic radios\",\n \"componentName\": \"RadioOverviewExample\",\n \"files\": [\n \"radio-overview-example.ts\",\n \"radio-overview-example.html\",\n \"radio-overview-example.css\"\n ],\n \"selector\": \"radio-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-overview-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"select-custom-trigger\": {\n \"packagePath\": \"material/select/select-custom-trigger\",\n \"title\": \"Select with custom trigger text\",\n \"componentName\": \"SelectCustomTriggerExample\",\n \"files\": [\n \"select-custom-trigger-example.ts\",\n \"select-custom-trigger-example.html\",\n \"select-custom-trigger-example.css\"\n ],\n \"selector\": \"select-custom-trigger-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-custom-trigger-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-disabled\": {\n \"packagePath\": \"material/select/select-disabled\",\n \"title\": \"Disabled select\",\n \"componentName\": \"SelectDisabledExample\",\n \"files\": [\n \"select-disabled-example.ts\",\n \"select-disabled-example.html\"\n ],\n \"selector\": \"select-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-disabled-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-error-state-matcher\": {\n \"packagePath\": \"material/select/select-error-state-matcher\",\n \"title\": \"Select with a custom ErrorStateMatcher\",\n \"componentName\": \"SelectErrorStateMatcherExample\",\n \"files\": [\n \"select-error-state-matcher-example.ts\",\n \"select-error-state-matcher-example.html\"\n ],\n \"selector\": \"select-error-state-matcher-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-error-state-matcher-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-form\": {\n \"packagePath\": \"material/select/select-form\",\n \"title\": \"Select in a form\",\n \"componentName\": \"SelectFormExample\",\n \"files\": [\n \"select-form-example.ts\",\n \"select-form-example.html\"\n ],\n \"selector\": \"select-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-form-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-harness\": {\n \"packagePath\": \"material/select/select-harness\",\n \"title\": \"Testing with MatSelectHarness\",\n \"componentName\": \"SelectHarnessExample\",\n \"files\": [\n \"select-harness-example.ts\",\n \"select-harness-example.html\",\n \"select-harness-example.spec.ts\"\n ],\n \"selector\": \"select-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-harness-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-hint-error\": {\n \"packagePath\": \"material/select/select-hint-error\",\n \"title\": \"Select with form field features\",\n \"componentName\": \"SelectHintErrorExample\",\n \"files\": [\n \"select-hint-error-example.ts\",\n \"select-hint-error-example.html\"\n ],\n \"selector\": \"select-hint-error-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-hint-error-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-initial-value\": {\n \"packagePath\": \"material/select/select-initial-value\",\n \"title\": \"Basic select with initial value and no form\",\n \"componentName\": \"SelectInitialValueExample\",\n \"files\": [\n \"select-initial-value-example.ts\",\n \"select-initial-value-example.html\"\n ],\n \"selector\": \"select-initial-value-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-initial-value-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-multiple\": {\n \"packagePath\": \"material/select/select-multiple\",\n \"title\": \"Select with multiple selection\",\n \"componentName\": \"SelectMultipleExample\",\n \"files\": [\n \"select-multiple-example.ts\",\n \"select-multiple-example.html\"\n ],\n \"selector\": \"select-multiple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-multiple-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-no-ripple\": {\n \"packagePath\": \"material/select/select-no-ripple\",\n \"title\": \"Select with no option ripple\",\n \"componentName\": \"SelectNoRippleExample\",\n \"files\": [\n \"select-no-ripple-example.ts\",\n \"select-no-ripple-example.html\"\n ],\n \"selector\": \"select-no-ripple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-no-ripple-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-optgroup\": {\n \"packagePath\": \"material/select/select-optgroup\",\n \"title\": \"Select with option groups\",\n \"componentName\": \"SelectOptgroupExample\",\n \"files\": [\n \"select-optgroup-example.ts\",\n \"select-optgroup-example.html\"\n ],\n \"selector\": \"select-optgroup-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-optgroup-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-overview\": {\n \"packagePath\": \"material/select/select-overview\",\n \"title\": \"Basic select\",\n \"componentName\": \"SelectOverviewExample\",\n \"files\": [\n \"select-overview-example.ts\",\n \"select-overview-example.html\"\n ],\n \"selector\": \"select-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-overview-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-panel-class\": {\n \"packagePath\": \"material/select/select-panel-class\",\n \"title\": \"Select with custom panel styling\",\n \"componentName\": \"SelectPanelClassExample\",\n \"files\": [\n \"select-panel-class-example.ts\",\n \"select-panel-class-example.html\",\n \"select-panel-class-example.css\"\n ],\n \"selector\": \"select-panel-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-panel-class-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-reactive-form\": {\n \"packagePath\": \"material/select/select-reactive-form\",\n \"title\": \"Select in a reactive form\",\n \"componentName\": \"SelectReactiveFormExample\",\n \"files\": [\n \"select-reactive-form-example.ts\",\n \"select-reactive-form-example.html\"\n ],\n \"selector\": \"select-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-reactive-form-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-reset\": {\n \"packagePath\": \"material/select/select-reset\",\n \"title\": \"Select with reset option\",\n \"componentName\": \"SelectResetExample\",\n \"files\": [\n \"select-reset-example.ts\",\n \"select-reset-example.html\"\n ],\n \"selector\": \"select-reset-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-reset-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-selectable-null\": {\n \"packagePath\": \"material/select/select-selectable-null\",\n \"title\": \"Select with selectable null options\",\n \"componentName\": \"SelectSelectableNullExample\",\n \"files\": [\n \"select-selectable-null-example.ts\",\n \"select-selectable-null-example.html\"\n ],\n \"selector\": \"select-selectable-null-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-selectable-null-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-value-binding\": {\n \"packagePath\": \"material/select/select-value-binding\",\n \"title\": \"Select with 2-way value binding\",\n \"componentName\": \"SelectValueBindingExample\",\n \"files\": [\n \"select-value-binding-example.ts\",\n \"select-value-binding-example.html\"\n ],\n \"selector\": \"select-value-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-value-binding-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"sidenav-autosize\": {\n \"packagePath\": \"material/sidenav/sidenav-autosize\",\n \"title\": \"Autosize sidenav\",\n \"componentName\": \"SidenavAutosizeExample\",\n \"files\": [\n \"sidenav-autosize-example.ts\",\n \"sidenav-autosize-example.html\",\n \"sidenav-autosize-example.css\"\n ],\n \"selector\": \"sidenav-autosize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-autosize-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-backdrop\": {\n \"packagePath\": \"material/sidenav/sidenav-backdrop\",\n \"title\": \"Drawer with explicit backdrop setting\",\n \"componentName\": \"SidenavBackdropExample\",\n \"files\": [\n \"sidenav-backdrop-example.ts\",\n \"sidenav-backdrop-example.html\",\n \"sidenav-backdrop-example.css\"\n ],\n \"selector\": \"sidenav-backdrop-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-backdrop-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-configurable-focus-trap\": {\n \"packagePath\": \"material/sidenav/sidenav-configurable-focus-trap\",\n \"title\": \"Sidenav using injected ConfigurableFocusTrap\",\n \"componentName\": \"SidenavConfigurableFocusTrapExample\",\n \"files\": [\n \"sidenav-configurable-focus-trap-example.ts\",\n \"sidenav-configurable-focus-trap-example.html\",\n \"sidenav-configurable-focus-trap-example.css\"\n ],\n \"selector\": \"sidenav-configurable-focus-trap-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-configurable-focus-trap-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-disable-close\": {\n \"packagePath\": \"material/sidenav/sidenav-disable-close\",\n \"title\": \"Sidenav with custom escape and backdrop click behavior\",\n \"componentName\": \"SidenavDisableCloseExample\",\n \"files\": [\n \"sidenav-disable-close-example.ts\",\n \"sidenav-disable-close-example.html\",\n \"sidenav-disable-close-example.css\"\n ],\n \"selector\": \"sidenav-disable-close-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-disable-close-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-drawer-overview\": {\n \"packagePath\": \"material/sidenav/sidenav-drawer-overview\",\n \"title\": \"Basic drawer\",\n \"componentName\": \"SidenavDrawerOverviewExample\",\n \"files\": [\n \"sidenav-drawer-overview-example.ts\",\n \"sidenav-drawer-overview-example.html\",\n \"sidenav-drawer-overview-example.css\"\n ],\n \"selector\": \"sidenav-drawer-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-drawer-overview-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-fixed\": {\n \"packagePath\": \"material/sidenav/sidenav-fixed\",\n \"title\": \"Fixed sidenav\",\n \"componentName\": \"SidenavFixedExample\",\n \"files\": [\n \"sidenav-fixed-example.ts\",\n \"sidenav-fixed-example.html\",\n \"sidenav-fixed-example.css\"\n ],\n \"selector\": \"sidenav-fixed-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-fixed-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-harness\": {\n \"packagePath\": \"material/sidenav/sidenav-harness\",\n \"title\": \"Testing with MatSidenavHarness\",\n \"componentName\": \"SidenavHarnessExample\",\n \"files\": [\n \"sidenav-harness-example.ts\",\n \"sidenav-harness-example.html\",\n \"sidenav-harness-example.spec.ts\"\n ],\n \"selector\": \"sidenav-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-harness-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-mode\": {\n \"packagePath\": \"material/sidenav/sidenav-mode\",\n \"title\": \"Sidenav with configurable mode\",\n \"componentName\": \"SidenavModeExample\",\n \"files\": [\n \"sidenav-mode-example.ts\",\n \"sidenav-mode-example.html\",\n \"sidenav-mode-example.css\"\n ],\n \"selector\": \"sidenav-mode-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-mode-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-open-close\": {\n \"packagePath\": \"material/sidenav/sidenav-open-close\",\n \"title\": \"Sidenav open & close behavior\",\n \"componentName\": \"SidenavOpenCloseExample\",\n \"files\": [\n \"sidenav-open-close-example.ts\",\n \"sidenav-open-close-example.html\",\n \"sidenav-open-close-example.css\"\n ],\n \"selector\": \"sidenav-open-close-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-open-close-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-overview\": {\n \"packagePath\": \"material/sidenav/sidenav-overview\",\n \"title\": \"Basic sidenav\",\n \"componentName\": \"SidenavOverviewExample\",\n \"files\": [\n \"sidenav-overview-example.ts\",\n \"sidenav-overview-example.html\",\n \"sidenav-overview-example.css\"\n ],\n \"selector\": \"sidenav-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-overview-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-position\": {\n \"packagePath\": \"material/sidenav/sidenav-position\",\n \"title\": \"Implicit main content with two sidenavs\",\n \"componentName\": \"SidenavPositionExample\",\n \"files\": [\n \"sidenav-position-example.ts\",\n \"sidenav-position-example.html\",\n \"sidenav-position-example.css\"\n ],\n \"selector\": \"sidenav-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-position-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-responsive\": {\n \"packagePath\": \"material/sidenav/sidenav-responsive\",\n \"title\": \"Responsive sidenav\",\n \"componentName\": \"SidenavResponsiveExample\",\n \"files\": [\n \"sidenav-responsive-example.ts\",\n \"sidenav-responsive-example.html\",\n \"sidenav-responsive-example.css\"\n ],\n \"selector\": \"sidenav-responsive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-responsive-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"slide-toggle-configurable\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-configurable\",\n \"title\": \"Configurable slide-toggle\",\n \"componentName\": \"SlideToggleConfigurableExample\",\n \"files\": [\n \"slide-toggle-configurable-example.ts\",\n \"slide-toggle-configurable-example.html\",\n \"slide-toggle-configurable-example.css\"\n ],\n \"selector\": \"slide-toggle-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-configurable-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-forms\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-forms\",\n \"title\": \"Slide-toggle with forms\",\n \"componentName\": \"SlideToggleFormsExample\",\n \"files\": [\n \"slide-toggle-forms-example.ts\",\n \"./slide-toggle-forms-example.html\",\n \"./slide-toggle-forms-example.css\"\n ],\n \"selector\": \"slide-toggle-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-forms-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-harness\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-harness\",\n \"title\": \"Testing with MatSlideToggleHarness\",\n \"componentName\": \"SlideToggleHarnessExample\",\n \"files\": [\n \"slide-toggle-harness-example.ts\",\n \"slide-toggle-harness-example.html\",\n \"slide-toggle-harness-example.spec.ts\"\n ],\n \"selector\": \"slide-toggle-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-harness-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-overview\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-overview\",\n \"title\": \"Basic slide-toggles\",\n \"componentName\": \"SlideToggleOverviewExample\",\n \"files\": [\n \"slide-toggle-overview-example.ts\",\n \"slide-toggle-overview-example.html\"\n ],\n \"selector\": \"slide-toggle-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-overview-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slider-configurable\": {\n \"packagePath\": \"material/slider/slider-configurable\",\n \"title\": \"Configurable slider\",\n \"componentName\": \"SliderConfigurableExample\",\n \"files\": [\n \"slider-configurable-example.ts\",\n \"slider-configurable-example.html\",\n \"slider-configurable-example.css\"\n ],\n \"selector\": \"slider-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-configurable-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-formatting\": {\n \"packagePath\": \"material/slider/slider-formatting\",\n \"title\": \"Slider with custom thumb label formatting.\",\n \"componentName\": \"SliderFormattingExample\",\n \"files\": [\n \"slider-formatting-example.ts\",\n \"slider-formatting-example.html\",\n \"slider-formatting-example.css\"\n ],\n \"selector\": \"slider-formatting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-formatting-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-harness\": {\n \"packagePath\": \"material/slider/slider-harness\",\n \"title\": \"Testing with MatSliderHarness\",\n \"componentName\": \"SliderHarnessExample\",\n \"files\": [\n \"slider-harness-example.ts\",\n \"slider-harness-example.html\",\n \"slider-harness-example.spec.ts\"\n ],\n \"selector\": \"slider-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-harness-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-overview\": {\n \"packagePath\": \"material/slider/slider-overview\",\n \"title\": \"Basic slider\",\n \"componentName\": \"SliderOverviewExample\",\n \"files\": [\n \"slider-overview-example.ts\",\n \"slider-overview-example.html\",\n \"slider-overview-example.css\"\n ],\n \"selector\": \"slider-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-overview-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-range\": {\n \"packagePath\": \"material/slider/slider-range\",\n \"title\": \"Range slider\",\n \"componentName\": \"SliderRangeExample\",\n \"files\": [\n \"slider-range-example.ts\",\n \"slider-range-example.html\",\n \"slider-range-example.css\"\n ],\n \"selector\": \"slider-range-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-range-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"snack-bar-annotated-component\": {\n \"packagePath\": \"material/snack-bar/snack-bar-annotated-component\",\n \"title\": \"Snack-bar with an annotated custom component\",\n \"componentName\": \"SnackBarAnnotatedComponentExample\",\n \"files\": [\n \"snack-bar-annotated-component-example.ts\",\n \"snack-bar-annotated-component-example.html\",\n \"snack-bar-annotated-component-example.css\",\n \"snack-bar-annotated-component-example-snack.html\"\n ],\n \"selector\": \"snack-bar-annotated-component-example\",\n \"additionalComponents\": [\n \"PizzaPartyAnnotatedComponent\"\n ],\n \"primaryFile\": \"snack-bar-annotated-component-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-component\": {\n \"packagePath\": \"material/snack-bar/snack-bar-component\",\n \"title\": \"Snack-bar with a custom component\",\n \"componentName\": \"SnackBarComponentExample\",\n \"files\": [\n \"snack-bar-component-example.ts\",\n \"snack-bar-component-example.html\",\n \"snack-bar-component-example.css\",\n \"snack-bar-component-example-snack.html\"\n ],\n \"selector\": \"snack-bar-component-example\",\n \"additionalComponents\": [\n \"PizzaPartyComponent\"\n ],\n \"primaryFile\": \"snack-bar-component-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-harness\": {\n \"packagePath\": \"material/snack-bar/snack-bar-harness\",\n \"title\": \"Testing with MatSnackBarHarness\",\n \"componentName\": \"SnackBarHarnessExample\",\n \"files\": [\n \"snack-bar-harness-example.ts\",\n \"snack-bar-harness-example.html\",\n \"snack-bar-harness-example.spec.ts\"\n ],\n \"selector\": \"snack-bar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-harness-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-overview\": {\n \"packagePath\": \"material/snack-bar/snack-bar-overview\",\n \"title\": \"Basic snack-bar\",\n \"componentName\": \"SnackBarOverviewExample\",\n \"files\": [\n \"snack-bar-overview-example.ts\",\n \"snack-bar-overview-example.html\",\n \"snack-bar-overview-example.css\"\n ],\n \"selector\": \"snack-bar-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-overview-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-position\": {\n \"packagePath\": \"material/snack-bar/snack-bar-position\",\n \"title\": \"Snack-bar with configurable position\",\n \"componentName\": \"SnackBarPositionExample\",\n \"files\": [\n \"snack-bar-position-example.ts\",\n \"snack-bar-position-example.html\",\n \"snack-bar-position-example.css\"\n ],\n \"selector\": \"snack-bar-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-position-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"sort-harness\": {\n \"packagePath\": \"material/sort/sort-harness\",\n \"title\": \"Testing with MatSortHarness\",\n \"componentName\": \"SortHarnessExample\",\n \"files\": [\n \"sort-harness-example.ts\",\n \"sort-harness-example.html\",\n \"sort-harness-example.spec.ts\"\n ],\n \"selector\": \"sort-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sort-harness-example.ts\",\n \"importPath\": \"material/sort\"\n },\n \"sort-overview\": {\n \"packagePath\": \"material/sort/sort-overview\",\n \"title\": \"Sorting overview\",\n \"componentName\": \"SortOverviewExample\",\n \"files\": [\n \"sort-overview-example.ts\",\n \"sort-overview-example.html\",\n \"sort-overview-example.css\"\n ],\n \"selector\": \"sort-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sort-overview-example.ts\",\n \"importPath\": \"material/sort\"\n },\n \"stepper-animations\": {\n \"packagePath\": \"material/stepper/stepper-animations\",\n \"title\": \"Stepper animations\",\n \"componentName\": \"StepperAnimationsExample\",\n \"files\": [\n \"stepper-animations-example.ts\",\n \"stepper-animations-example.html\",\n \"stepper-animations-example.css\"\n ],\n \"selector\": \"stepper-animations-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-animations-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-editable\": {\n \"packagePath\": \"material/stepper/stepper-editable\",\n \"title\": \"Stepper with editable steps\",\n \"componentName\": \"StepperEditableExample\",\n \"files\": [\n \"stepper-editable-example.ts\",\n \"stepper-editable-example.html\",\n \"stepper-editable-example.css\"\n ],\n \"selector\": \"stepper-editable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-editable-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-errors\": {\n \"packagePath\": \"material/stepper/stepper-errors\",\n \"title\": \"Stepper that displays errors in the steps\",\n \"componentName\": \"StepperErrorsExample\",\n \"files\": [\n \"stepper-errors-example.ts\",\n \"stepper-errors-example.html\",\n \"stepper-errors-example.css\"\n ],\n \"selector\": \"stepper-errors-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-errors-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-harness\": {\n \"packagePath\": \"material/stepper/stepper-harness\",\n \"title\": \"Testing with MatStepperHarness\",\n \"componentName\": \"StepperHarnessExample\",\n \"files\": [\n \"stepper-harness-example.ts\",\n \"stepper-harness-example.html\",\n \"stepper-harness-example.spec.ts\"\n ],\n \"selector\": \"stepper-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-harness-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-header-position\": {\n \"packagePath\": \"material/stepper/stepper-header-position\",\n \"title\": \"Stepper header position\",\n \"componentName\": \"StepperHeaderPositionExample\",\n \"files\": [\n \"stepper-header-position-example.ts\",\n \"stepper-header-position-example.html\"\n ],\n \"selector\": \"stepper-header-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-header-position-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-intl\": {\n \"packagePath\": \"material/stepper/stepper-intl\",\n \"title\": \"Stepper that uses the MatStepperIntl service\",\n \"componentName\": \"StepperIntlExample\",\n \"files\": [\n \"stepper-intl-example.ts\",\n \"stepper-intl-example.html\",\n \"stepper-intl-example.css\"\n ],\n \"selector\": \"stepper-intl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-intl-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-label-position-bottom\": {\n \"packagePath\": \"material/stepper/stepper-label-position-bottom\",\n \"title\": \"Stepper label bottom position\",\n \"componentName\": \"StepperLabelPositionBottomExample\",\n \"files\": [\n \"stepper-label-position-bottom-example.ts\",\n \"stepper-label-position-bottom-example.html\",\n \"stepper-label-position-bottom-example.css\"\n ],\n \"selector\": \"stepper-label-position-bottom-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-label-position-bottom-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-lazy-content\": {\n \"packagePath\": \"material/stepper/stepper-lazy-content\",\n \"title\": \"Stepper lazy content rendering\",\n \"componentName\": \"StepperLazyContentExample\",\n \"files\": [\n \"stepper-lazy-content-example.ts\",\n \"stepper-lazy-content-example.html\"\n ],\n \"selector\": \"stepper-lazy-content-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-lazy-content-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-optional\": {\n \"packagePath\": \"material/stepper/stepper-optional\",\n \"title\": \"Stepper with optional steps\",\n \"componentName\": \"StepperOptionalExample\",\n \"files\": [\n \"stepper-optional-example.ts\",\n \"stepper-optional-example.html\",\n \"stepper-optional-example.css\"\n ],\n \"selector\": \"stepper-optional-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-optional-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-overview\": {\n \"packagePath\": \"material/stepper/stepper-overview\",\n \"title\": \"Stepper overview\",\n \"componentName\": \"StepperOverviewExample\",\n \"files\": [\n \"stepper-overview-example.ts\",\n \"stepper-overview-example.html\",\n \"stepper-overview-example.css\"\n ],\n \"selector\": \"stepper-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-overview-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-responsive\": {\n \"packagePath\": \"material/stepper/stepper-responsive\",\n \"title\": \"Stepper responsive\",\n \"componentName\": \"StepperResponsiveExample\",\n \"files\": [\n \"stepper-responsive-example.ts\",\n \"stepper-responsive-example.html\",\n \"stepper-responsive-example.css\"\n ],\n \"selector\": \"stepper-responsive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-responsive-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-states\": {\n \"packagePath\": \"material/stepper/stepper-states\",\n \"title\": \"Stepper with customized states\",\n \"componentName\": \"StepperStatesExample\",\n \"files\": [\n \"stepper-states-example.ts\",\n \"stepper-states-example.html\",\n \"stepper-states-example.css\"\n ],\n \"selector\": \"stepper-states-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-states-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-vertical\": {\n \"packagePath\": \"material/stepper/stepper-vertical\",\n \"title\": \"Stepper vertical\",\n \"componentName\": \"StepperVerticalExample\",\n \"files\": [\n \"stepper-vertical-example.ts\",\n \"stepper-vertical-example.html\",\n \"stepper-vertical-example.css\"\n ],\n \"selector\": \"stepper-vertical-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-vertical-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"table-basic\": {\n \"packagePath\": \"material/table/table-basic\",\n \"title\": \"Basic use of ``\",\n \"componentName\": \"TableBasicExample\",\n \"files\": [\n \"table-basic-example.ts\",\n \"table-basic-example.html\",\n \"table-basic-example.css\"\n ],\n \"selector\": \"table-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-basic-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-column-styling\": {\n \"packagePath\": \"material/table/table-column-styling\",\n \"title\": \"Styling columns using their auto-generated column names\",\n \"componentName\": \"TableColumnStylingExample\",\n \"files\": [\n \"table-column-styling-example.ts\",\n \"table-column-styling-example.html\",\n \"table-column-styling-example.css\"\n ],\n \"selector\": \"table-column-styling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-column-styling-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-array-data\": {\n \"packagePath\": \"material/table/table-dynamic-array-data\",\n \"title\": \"Adding and removing data when using an array-based datasource.\",\n \"componentName\": \"TableDynamicArrayDataExample\",\n \"files\": [\n \"table-dynamic-array-data-example.ts\",\n \"table-dynamic-array-data-example.html\",\n \"table-dynamic-array-data-example.css\"\n ],\n \"selector\": \"table-dynamic-array-data-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-array-data-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-columns\": {\n \"packagePath\": \"material/table/table-dynamic-columns\",\n \"title\": \"Table dynamically changing the columns displayed\",\n \"componentName\": \"TableDynamicColumnsExample\",\n \"files\": [\n \"table-dynamic-columns-example.ts\",\n \"table-dynamic-columns-example.html\",\n \"table-dynamic-columns-example.css\"\n ],\n \"selector\": \"table-dynamic-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-observable-data\": {\n \"packagePath\": \"material/table/table-dynamic-observable-data\",\n \"title\": \"Adding and removing data when using an observable-based datasource.\",\n \"componentName\": \"TableDynamicObservableDataExample\",\n \"files\": [\n \"table-dynamic-observable-data-example.ts\",\n \"table-dynamic-observable-data-example.html\",\n \"table-dynamic-observable-data-example.css\"\n ],\n \"selector\": \"table-dynamic-observable-data-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-observable-data-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-expandable-rows\": {\n \"packagePath\": \"material/table/table-expandable-rows\",\n \"title\": \"Table with expandable rows\",\n \"componentName\": \"TableExpandableRowsExample\",\n \"files\": [\n \"table-expandable-rows-example.ts\",\n \"table-expandable-rows-example.html\",\n \"table-expandable-rows-example.css\"\n ],\n \"selector\": \"table-expandable-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-expandable-rows-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-filtering\": {\n \"packagePath\": \"material/table/table-filtering\",\n \"title\": \"Table with filtering\",\n \"componentName\": \"TableFilteringExample\",\n \"files\": [\n \"table-filtering-example.ts\",\n \"table-filtering-example.html\",\n \"table-filtering-example.css\"\n ],\n \"selector\": \"table-filtering-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-filtering-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-flex-basic\": {\n \"packagePath\": \"material/table/table-flex-basic\",\n \"title\": \"Basic use of `` (uses display flex)\",\n \"componentName\": \"TableFlexBasicExample\",\n \"files\": [\n \"table-flex-basic-example.ts\",\n \"table-flex-basic-example.html\",\n \"table-flex-basic-example.css\"\n ],\n \"selector\": \"table-flex-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-flex-basic-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-flex-large-row\": {\n \"packagePath\": \"material/table/table-flex-large-row\",\n \"title\": \"Flex table where one column's cells has a greater height than others.\",\n \"componentName\": \"TableFlexLargeRowExample\",\n \"files\": [\n \"table-flex-large-row-example.ts\",\n \"table-flex-large-row-example.html\",\n \"table-flex-large-row-example.css\"\n ],\n \"selector\": \"table-flex-large-row-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-flex-large-row-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-footer-row\": {\n \"packagePath\": \"material/table/table-footer-row\",\n \"title\": \"Footer row table\",\n \"componentName\": \"TableFooterRowExample\",\n \"files\": [\n \"table-footer-row-example.ts\",\n \"table-footer-row-example.html\",\n \"table-footer-row-example.css\"\n ],\n \"selector\": \"table-footer-row-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-footer-row-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-generated-columns\": {\n \"packagePath\": \"material/table/table-generated-columns\",\n \"title\": \"Table with columns defined using a for loop instead of statically written in the template.\",\n \"componentName\": \"TableGeneratedColumnsExample\",\n \"files\": [\n \"table-generated-columns-example.ts\",\n \"table-generated-columns-example.html\",\n \"table-generated-columns-example.css\"\n ],\n \"selector\": \"table-generated-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-generated-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-harness\": {\n \"packagePath\": \"material/table/table-harness\",\n \"title\": \"Testing with MatTableHarness\",\n \"componentName\": \"TableHarnessExample\",\n \"files\": [\n \"table-harness-example.ts\",\n \"table-harness-example.html\",\n \"table-harness-example.spec.ts\"\n ],\n \"selector\": \"table-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-harness-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-http\": {\n \"packagePath\": \"material/table/table-http\",\n \"title\": \"Table retrieving data through HTTP\",\n \"componentName\": \"TableHttpExample\",\n \"files\": [\n \"table-http-example.ts\",\n \"table-http-example.html\",\n \"table-http-example.css\"\n ],\n \"selector\": \"table-http-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-http-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-multiple-header-footer\": {\n \"packagePath\": \"material/table/table-multiple-header-footer\",\n \"title\": \"Table with multiple header and footer rows\",\n \"componentName\": \"TableMultipleHeaderFooterExample\",\n \"files\": [\n \"table-multiple-header-footer-example.ts\",\n \"table-multiple-header-footer-example.html\",\n \"table-multiple-header-footer-example.css\"\n ],\n \"selector\": \"table-multiple-header-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-multiple-header-footer-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-multiple-row-template\": {\n \"packagePath\": \"material/table/table-multiple-row-template\",\n \"title\": \"Table with multiple row template\",\n \"componentName\": \"TableMultipleRowTemplateExample\",\n \"files\": [\n \"table-multiple-row-template-example.ts\",\n \"table-multiple-row-template-example.html\",\n \"table-multiple-row-template-example.css\"\n ],\n \"selector\": \"table-multiple-row-template-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-multiple-row-template-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-overview\": {\n \"packagePath\": \"material/table/table-overview\",\n \"title\": \"Data table with sorting, pagination, and filtering.\",\n \"componentName\": \"TableOverviewExample\",\n \"files\": [\n \"table-overview-example.ts\",\n \"table-overview-example.html\",\n \"table-overview-example.css\"\n ],\n \"selector\": \"table-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-overview-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-pagination\": {\n \"packagePath\": \"material/table/table-pagination\",\n \"title\": \"Table with pagination\",\n \"componentName\": \"TablePaginationExample\",\n \"files\": [\n \"table-pagination-example.ts\",\n \"table-pagination-example.html\",\n \"table-pagination-example.css\"\n ],\n \"selector\": \"table-pagination-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-pagination-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-recycle-rows\": {\n \"packagePath\": \"material/table/table-recycle-rows\",\n \"title\": \"Table that uses the recycle view repeater strategy.\",\n \"componentName\": \"TableRecycleRowsExample\",\n \"files\": [\n \"table-recycle-rows-example.ts\",\n \"table-recycle-rows-example.html\",\n \"table-recycle-rows-example.css\"\n ],\n \"selector\": \"table-recycle-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-recycle-rows-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-reorderable\": {\n \"packagePath\": \"material/table/table-reorderable\",\n \"title\": \"Table with re-orderable columns\",\n \"componentName\": \"TableReorderableExample\",\n \"files\": [\n \"table-reorderable-example.ts\",\n \"./table-reorderable-example.html\",\n \"./table-reorderable-example.css\"\n ],\n \"selector\": \"table-reorderable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-reorderable-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-row-binding\": {\n \"packagePath\": \"material/table/table-row-binding\",\n \"title\": \"Binding event handlers and properties to the table rows.\",\n \"componentName\": \"TableRowBindingExample\",\n \"files\": [\n \"table-row-binding-example.ts\",\n \"table-row-binding-example.html\",\n \"table-row-binding-example.css\"\n ],\n \"selector\": \"table-row-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-row-binding-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-row-context\": {\n \"packagePath\": \"material/table/table-row-context\",\n \"title\": \"Table showing each row context properties.\",\n \"componentName\": \"TableRowContextExample\",\n \"files\": [\n \"table-row-context-example.ts\",\n \"table-row-context-example.html\",\n \"table-row-context-example.css\"\n ],\n \"selector\": \"table-row-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-row-context-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-selection\": {\n \"packagePath\": \"material/table/table-selection\",\n \"title\": \"Table with selection\",\n \"componentName\": \"TableSelectionExample\",\n \"files\": [\n \"table-selection-example.ts\",\n \"table-selection-example.html\",\n \"table-selection-example.css\"\n ],\n \"selector\": \"table-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-selection-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sorting\": {\n \"packagePath\": \"material/table/table-sorting\",\n \"title\": \"Table with sorting\",\n \"componentName\": \"TableSortingExample\",\n \"files\": [\n \"table-sorting-example.ts\",\n \"table-sorting-example.html\",\n \"table-sorting-example.css\"\n ],\n \"selector\": \"table-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sorting-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-columns\": {\n \"packagePath\": \"material/table/table-sticky-columns\",\n \"title\": \"Table with sticky columns\",\n \"componentName\": \"TableStickyColumnsExample\",\n \"files\": [\n \"table-sticky-columns-example.ts\",\n \"table-sticky-columns-example.html\",\n \"table-sticky-columns-example.css\"\n ],\n \"selector\": \"table-sticky-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-complex-flex\": {\n \"packagePath\": \"material/table/table-sticky-complex-flex\",\n \"title\": \"Flex-layout tables with toggle-able sticky headers, footers, and columns\",\n \"componentName\": \"TableStickyComplexFlexExample\",\n \"files\": [\n \"table-sticky-complex-flex-example.ts\",\n \"table-sticky-complex-flex-example.html\",\n \"table-sticky-complex-flex-example.css\"\n ],\n \"selector\": \"table-sticky-complex-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-complex-flex-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-complex\": {\n \"packagePath\": \"material/table/table-sticky-complex\",\n \"title\": \"Tables with toggle-able sticky headers, footers, and columns\",\n \"componentName\": \"TableStickyComplexExample\",\n \"files\": [\n \"table-sticky-complex-example.ts\",\n \"table-sticky-complex-example.html\",\n \"table-sticky-complex-example.css\"\n ],\n \"selector\": \"table-sticky-complex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-complex-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-footer\": {\n \"packagePath\": \"material/table/table-sticky-footer\",\n \"title\": \"Table with a sticky footer\",\n \"componentName\": \"TableStickyFooterExample\",\n \"files\": [\n \"table-sticky-footer-example.ts\",\n \"table-sticky-footer-example.html\",\n \"table-sticky-footer-example.css\"\n ],\n \"selector\": \"table-sticky-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-footer-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-header\": {\n \"packagePath\": \"material/table/table-sticky-header\",\n \"title\": \"Table with sticky header\",\n \"componentName\": \"TableStickyHeaderExample\",\n \"files\": [\n \"table-sticky-header-example.ts\",\n \"table-sticky-header-example.html\",\n \"table-sticky-header-example.css\"\n ],\n \"selector\": \"table-sticky-header-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-header-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-text-column-advanced\": {\n \"packagePath\": \"material/table/table-text-column-advanced\",\n \"title\": \"Use of 'mat-text-column' with various configurations of the interface.\",\n \"componentName\": \"TableTextColumnAdvancedExample\",\n \"files\": [\n \"table-text-column-advanced-example.ts\",\n \"table-text-column-advanced-example.html\",\n \"table-text-column-advanced-example.css\"\n ],\n \"selector\": \"table-text-column-advanced-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-text-column-advanced-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-text-column\": {\n \"packagePath\": \"material/table/table-text-column\",\n \"title\": \"Use of `mat-text-column` which can be used for simple columns that only need to display\\na text value for the header and cells.\",\n \"componentName\": \"TableTextColumnExample\",\n \"files\": [\n \"table-text-column-example.ts\",\n \"table-text-column-example.html\",\n \"table-text-column-example.css\"\n ],\n \"selector\": \"table-text-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-text-column-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-with-ripples\": {\n \"packagePath\": \"material/table/table-with-ripples\",\n \"title\": \"Tables with Material Design ripples.\",\n \"componentName\": \"TableWithRipplesExample\",\n \"files\": [\n \"table-with-ripples-example.ts\",\n \"table-with-ripples-example.html\"\n ],\n \"selector\": \"table-with-ripples-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-with-ripples-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-wrapped\": {\n \"packagePath\": \"material/table/table-wrapped\",\n \"title\": \"Table example that shows how to wrap a table component for definition and behavior reuse.\",\n \"componentName\": \"TableWrappedExample\",\n \"files\": [\n \"table-wrapped-example.ts\",\n \"table-wrapped-example.html\",\n \"table-wrapped-example.css\",\n \"wrapper-table.html\"\n ],\n \"selector\": \"table-wrapped-example\",\n \"additionalComponents\": [\n \"WrapperTable\"\n ],\n \"primaryFile\": \"table-wrapped-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"tab-group-align\": {\n \"packagePath\": \"material/tabs/tab-group-align\",\n \"title\": \"Tab group with aligned labels\",\n \"componentName\": \"TabGroupAlignExample\",\n \"files\": [\n \"tab-group-align-example.ts\",\n \"tab-group-align-example.html\",\n \"tab-group-align-example.css\"\n ],\n \"selector\": \"tab-group-align-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-align-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-animations\": {\n \"packagePath\": \"material/tabs/tab-group-animations\",\n \"title\": \"Tab group animations\",\n \"componentName\": \"TabGroupAnimationsExample\",\n \"files\": [\n \"tab-group-animations-example.ts\",\n \"tab-group-animations-example.html\",\n \"tab-group-animations-example.css\"\n ],\n \"selector\": \"tab-group-animations-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-animations-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-async\": {\n \"packagePath\": \"material/tabs/tab-group-async\",\n \"title\": \"Tab group with asynchronously loading tab contents\",\n \"componentName\": \"TabGroupAsyncExample\",\n \"files\": [\n \"tab-group-async-example.ts\",\n \"tab-group-async-example.html\"\n ],\n \"selector\": \"tab-group-async-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-async-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-basic\": {\n \"packagePath\": \"material/tabs/tab-group-basic\",\n \"title\": \"Basic use of the tab group\",\n \"componentName\": \"TabGroupBasicExample\",\n \"files\": [\n \"tab-group-basic-example.ts\",\n \"tab-group-basic-example.html\"\n ],\n \"selector\": \"tab-group-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-basic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-custom-label\": {\n \"packagePath\": \"material/tabs/tab-group-custom-label\",\n \"title\": \"Using tabs with a custom label template\",\n \"componentName\": \"TabGroupCustomLabelExample\",\n \"files\": [\n \"tab-group-custom-label-example.ts\",\n \"tab-group-custom-label-example.html\",\n \"tab-group-custom-label-example.css\"\n ],\n \"selector\": \"tab-group-custom-label-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-custom-label-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-dynamic-height\": {\n \"packagePath\": \"material/tabs/tab-group-dynamic-height\",\n \"title\": \"Tab group with dynamic height based on tab contents\",\n \"componentName\": \"TabGroupDynamicHeightExample\",\n \"files\": [\n \"tab-group-dynamic-height-example.ts\",\n \"tab-group-dynamic-height-example.html\",\n \"tab-group-dynamic-height-example.css\"\n ],\n \"selector\": \"tab-group-dynamic-height-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-dynamic-height-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-dynamic\": {\n \"packagePath\": \"material/tabs/tab-group-dynamic\",\n \"title\": \"Tab group with dynamically changing tabs\",\n \"componentName\": \"TabGroupDynamicExample\",\n \"files\": [\n \"tab-group-dynamic-example.ts\",\n \"tab-group-dynamic-example.html\",\n \"tab-group-dynamic-example.css\"\n ],\n \"selector\": \"tab-group-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-dynamic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-harness\": {\n \"packagePath\": \"material/tabs/tab-group-harness\",\n \"title\": \"Testing with MatTabGroupHarness\",\n \"componentName\": \"TabGroupHarnessExample\",\n \"files\": [\n \"tab-group-harness-example.ts\",\n \"tab-group-harness-example.html\",\n \"tab-group-harness-example.spec.ts\"\n ],\n \"selector\": \"tab-group-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-harness-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-header-below\": {\n \"packagePath\": \"material/tabs/tab-group-header-below\",\n \"title\": \"Tab group with headers below the content\",\n \"componentName\": \"TabGroupHeaderBelowExample\",\n \"files\": [\n \"tab-group-header-below-example.ts\",\n \"tab-group-header-below-example.html\"\n ],\n \"selector\": \"tab-group-header-below-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-header-below-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-ink-bar\": {\n \"packagePath\": \"material/tabs/tab-group-ink-bar\",\n \"title\": \"Tab group with ink bar fit to content\",\n \"componentName\": \"TabGroupInkBarExample\",\n \"files\": [\n \"tab-group-ink-bar-example.ts\",\n \"tab-group-ink-bar-example.html\"\n ],\n \"selector\": \"tab-group-ink-bar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-ink-bar-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-lazy-loaded\": {\n \"packagePath\": \"material/tabs/tab-group-lazy-loaded\",\n \"title\": \"Tab group where the tab content is loaded lazily (when activated)\",\n \"componentName\": \"TabGroupLazyLoadedExample\",\n \"files\": [\n \"tab-group-lazy-loaded-example.ts\",\n \"tab-group-lazy-loaded-example.html\"\n ],\n \"selector\": \"tab-group-lazy-loaded-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-lazy-loaded-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-paginated\": {\n \"packagePath\": \"material/tabs/tab-group-paginated\",\n \"title\": \"Tab group with paginated tabs\",\n \"componentName\": \"TabGroupPaginatedExample\",\n \"files\": [\n \"tab-group-paginated-example.ts\",\n \"tab-group-paginated-example.html\"\n ],\n \"selector\": \"tab-group-paginated-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-paginated-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-preserve-content\": {\n \"packagePath\": \"material/tabs/tab-group-preserve-content\",\n \"title\": \"Tab group that keeps its content inside the DOM when it's off-screen.\",\n \"componentName\": \"TabGroupPreserveContentExample\",\n \"files\": [\n \"tab-group-preserve-content-example.ts\",\n \"tab-group-preserve-content-example.html\"\n ],\n \"selector\": \"tab-group-preserve-content-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-preserve-content-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-stretched\": {\n \"packagePath\": \"material/tabs/tab-group-stretched\",\n \"title\": \"Tab group with stretched labels\",\n \"componentName\": \"TabGroupStretchedExample\",\n \"files\": [\n \"tab-group-stretched-example.ts\",\n \"tab-group-stretched-example.html\",\n \"tab-group-stretched-example.css\"\n ],\n \"selector\": \"tab-group-stretched-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-stretched-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-nav-bar-basic\": {\n \"packagePath\": \"material/tabs/tab-nav-bar-basic\",\n \"title\": \"Basic use of the tab nav bar\",\n \"componentName\": \"TabNavBarBasicExample\",\n \"files\": [\n \"tab-nav-bar-basic-example.ts\",\n \"tab-nav-bar-basic-example.html\",\n \"tab-nav-bar-basic-example.css\"\n ],\n \"selector\": \"tab-nav-bar-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-nav-bar-basic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"timepicker-custom-icon\": {\n \"packagePath\": \"material/timepicker/timepicker-custom-icon\",\n \"title\": \"Timepicker with custom toggle icon\",\n \"componentName\": \"TimepickerCustomIconExample\",\n \"files\": [\n \"timepicker-custom-icon-example.ts\",\n \"timepicker-custom-icon-example.html\"\n ],\n \"selector\": \"timepicker-custom-icon-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-custom-icon-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-datepicker-integration\": {\n \"packagePath\": \"material/timepicker/timepicker-datepicker-integration\",\n \"title\": \"Timepicker integration with datepicker\",\n \"componentName\": \"TimepickerDatepickerIntegrationExample\",\n \"files\": [\n \"timepicker-datepicker-integration-example.ts\",\n \"timepicker-datepicker-integration-example.html\",\n \"./timepicker-datepicker-integration-example.css\"\n ],\n \"selector\": \"timepicker-datepicker-integration-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-datepicker-integration-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-forms\": {\n \"packagePath\": \"material/timepicker/timepicker-forms\",\n \"title\": \"Timepicker forms integration\",\n \"componentName\": \"TimepickerFormsExample\",\n \"files\": [\n \"timepicker-forms-example.ts\",\n \"timepicker-forms-example.html\"\n ],\n \"selector\": \"timepicker-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-forms-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-harness\": {\n \"packagePath\": \"material/timepicker/timepicker-harness\",\n \"title\": \"Testing with MatTimepickerInputHarness\",\n \"componentName\": \"TimepickerHarnessExample\",\n \"files\": [\n \"timepicker-harness-example.ts\",\n \"timepicker-harness-example.html\",\n \"timepicker-harness-example.spec.ts\"\n ],\n \"selector\": \"timepicker-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-harness-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-locale\": {\n \"packagePath\": \"material/timepicker/timepicker-locale\",\n \"title\": \"Timepicker with different locale\",\n \"componentName\": \"TimepickerLocaleExample\",\n \"files\": [\n \"timepicker-locale-example.ts\",\n \"timepicker-locale-example.html\"\n ],\n \"selector\": \"timepicker-locale-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-locale-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-options\": {\n \"packagePath\": \"material/timepicker/timepicker-options\",\n \"title\": \"Timepicker options customization\",\n \"componentName\": \"TimepickerOptionsExample\",\n \"files\": [\n \"timepicker-options-example.ts\",\n \"timepicker-options-example.html\"\n ],\n \"selector\": \"timepicker-options-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-options-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-overview\": {\n \"packagePath\": \"material/timepicker/timepicker-overview\",\n \"title\": \"Basic timepicker\",\n \"componentName\": \"TimepickerOverviewExample\",\n \"files\": [\n \"timepicker-overview-example.ts\",\n \"timepicker-overview-example.html\"\n ],\n \"selector\": \"timepicker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-overview-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-validation\": {\n \"packagePath\": \"material/timepicker/timepicker-validation\",\n \"title\": \"Timepicker validation\",\n \"componentName\": \"TimepickerValidationExample\",\n \"files\": [\n \"timepicker-validation-example.ts\",\n \"timepicker-validation-example.html\",\n \"./timepicker-validation-example.css\"\n ],\n \"selector\": \"timepicker-validation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-validation-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"toolbar-basic\": {\n \"packagePath\": \"material/toolbar/toolbar-basic\",\n \"title\": \"Basic toolbar\",\n \"componentName\": \"ToolbarBasicExample\",\n \"files\": [\n \"toolbar-basic-example.ts\",\n \"toolbar-basic-example.html\",\n \"toolbar-basic-example.css\"\n ],\n \"selector\": \"toolbar-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-basic-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-harness\": {\n \"packagePath\": \"material/toolbar/toolbar-harness\",\n \"title\": \"Testing with MatToolbarHarness\",\n \"componentName\": \"ToolbarHarnessExample\",\n \"files\": [\n \"toolbar-harness-example.ts\",\n \"toolbar-harness-example.html\",\n \"toolbar-harness-example.spec.ts\"\n ],\n \"selector\": \"toolbar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-harness-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-multirow\": {\n \"packagePath\": \"material/toolbar/toolbar-multirow\",\n \"title\": \"Multi-row toolbar\",\n \"componentName\": \"ToolbarMultirowExample\",\n \"files\": [\n \"toolbar-multirow-example.ts\",\n \"toolbar-multirow-example.html\",\n \"toolbar-multirow-example.css\"\n ],\n \"selector\": \"toolbar-multirow-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-multirow-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-overview\": {\n \"packagePath\": \"material/toolbar/toolbar-overview\",\n \"title\": \"Toolbar overview\",\n \"componentName\": \"ToolbarOverviewExample\",\n \"files\": [\n \"toolbar-overview-example.ts\",\n \"toolbar-overview-example.html\",\n \"toolbar-overview-example.css\"\n ],\n \"selector\": \"toolbar-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-overview-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-simple\": {\n \"packagePath\": \"material/toolbar/toolbar-simple\",\n \"title\": \"Toolbar with just text\",\n \"componentName\": \"ToolbarSimpleExample\",\n \"files\": [\n \"toolbar-simple-example.ts\",\n \"toolbar-simple-example.html\"\n ],\n \"selector\": \"toolbar-simple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-simple-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"tooltip-auto-hide\": {\n \"packagePath\": \"material/tooltip/tooltip-auto-hide\",\n \"title\": \"Tooltip that demonstrates auto-hiding when it clips out of its scrolling container.\",\n \"componentName\": \"TooltipAutoHideExample\",\n \"files\": [\n \"tooltip-auto-hide-example.ts\",\n \"tooltip-auto-hide-example.html\",\n \"tooltip-auto-hide-example.css\"\n ],\n \"selector\": \"tooltip-auto-hide-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-auto-hide-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-custom-class\": {\n \"packagePath\": \"material/tooltip/tooltip-custom-class\",\n \"title\": \"Tooltip that can have a custom class applied.\",\n \"componentName\": \"TooltipCustomClassExample\",\n \"files\": [\n \"tooltip-custom-class-example.ts\",\n \"tooltip-custom-class-example.html\",\n \"tooltip-custom-class-example.css\"\n ],\n \"selector\": \"tooltip-custom-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-custom-class-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-delay\": {\n \"packagePath\": \"material/tooltip/tooltip-delay\",\n \"title\": \"Tooltip with a show and hide delay\",\n \"componentName\": \"TooltipDelayExample\",\n \"files\": [\n \"tooltip-delay-example.ts\",\n \"tooltip-delay-example.html\",\n \"tooltip-delay-example.css\"\n ],\n \"selector\": \"tooltip-delay-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-delay-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-disabled\": {\n \"packagePath\": \"material/tooltip/tooltip-disabled\",\n \"title\": \"Tooltip that can be disabled\",\n \"componentName\": \"TooltipDisabledExample\",\n \"files\": [\n \"tooltip-disabled-example.ts\",\n \"tooltip-disabled-example.html\",\n \"tooltip-disabled-example.css\"\n ],\n \"selector\": \"tooltip-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-disabled-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-harness\": {\n \"packagePath\": \"material/tooltip/tooltip-harness\",\n \"title\": \"Testing with MatTooltipHarness\",\n \"componentName\": \"TooltipHarnessExample\",\n \"files\": [\n \"tooltip-harness-example.ts\",\n \"tooltip-harness-example.html\",\n \"tooltip-harness-example.spec.ts\"\n ],\n \"selector\": \"tooltip-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-harness-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-manual\": {\n \"packagePath\": \"material/tooltip/tooltip-manual\",\n \"title\": \"Tooltip that can be manually shown/hidden.\",\n \"componentName\": \"TooltipManualExample\",\n \"files\": [\n \"tooltip-manual-example.ts\",\n \"tooltip-manual-example.html\",\n \"tooltip-manual-example.css\"\n ],\n \"selector\": \"tooltip-manual-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-manual-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-message\": {\n \"packagePath\": \"material/tooltip/tooltip-message\",\n \"title\": \"Tooltip with a changing message\",\n \"componentName\": \"TooltipMessageExample\",\n \"files\": [\n \"tooltip-message-example.ts\",\n \"tooltip-message-example.html\",\n \"tooltip-message-example.css\"\n ],\n \"selector\": \"tooltip-message-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-message-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-modified-defaults\": {\n \"packagePath\": \"material/tooltip/tooltip-modified-defaults\",\n \"title\": \"Tooltip with a show and hide delay\",\n \"componentName\": \"TooltipModifiedDefaultsExample\",\n \"files\": [\n \"tooltip-modified-defaults-example.ts\",\n \"tooltip-modified-defaults-example.html\"\n ],\n \"selector\": \"tooltip-modified-defaults-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-modified-defaults-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-overview\": {\n \"packagePath\": \"material/tooltip/tooltip-overview\",\n \"title\": \"Basic tooltip\",\n \"componentName\": \"TooltipOverviewExample\",\n \"files\": [\n \"tooltip-overview-example.ts\",\n \"tooltip-overview-example.html\"\n ],\n \"selector\": \"tooltip-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-overview-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-position-at-origin\": {\n \"packagePath\": \"material/tooltip/tooltip-position-at-origin\",\n \"title\": \"Basic tooltip\",\n \"componentName\": \"TooltipPositionAtOriginExample\",\n \"files\": [\n \"tooltip-position-at-origin-example.ts\",\n \"tooltip-position-at-origin-example.html\",\n \"tooltip-position-at-origin-example.css\"\n ],\n \"selector\": \"tooltip-position-at-origin-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-position-at-origin-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-position\": {\n \"packagePath\": \"material/tooltip/tooltip-position\",\n \"title\": \"Tooltip with a custom position\",\n \"componentName\": \"TooltipPositionExample\",\n \"files\": [\n \"tooltip-position-example.ts\",\n \"tooltip-position-example.html\",\n \"tooltip-position-example.css\"\n ],\n \"selector\": \"tooltip-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-position-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tree-dynamic\": {\n \"packagePath\": \"material/tree/tree-dynamic\",\n \"title\": \"Tree with dynamic data\",\n \"componentName\": \"TreeDynamicExample\",\n \"files\": [\n \"tree-dynamic-example.ts\",\n \"tree-dynamic-example.html\",\n \"tree-dynamic-example.css\"\n ],\n \"selector\": \"tree-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-dynamic-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-flat-child-accessor-overview\": {\n \"packagePath\": \"material/tree/tree-flat-child-accessor-overview\",\n \"title\": \"Tree with flat nodes (childrenAccessor)\",\n \"componentName\": \"TreeFlatChildAccessorOverviewExample\",\n \"files\": [\n \"tree-flat-child-accessor-overview-example.ts\",\n \"tree-flat-child-accessor-overview-example.html\"\n ],\n \"selector\": \"tree-flat-child-accessor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-flat-child-accessor-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-flat-overview\": {\n \"packagePath\": \"material/tree/tree-flat-overview\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"TreeFlatOverviewExample\",\n \"files\": [\n \"tree-flat-overview-example.ts\",\n \"tree-flat-overview-example.html\"\n ],\n \"selector\": \"tree-flat-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-flat-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-harness\": {\n \"packagePath\": \"material/tree/tree-harness\",\n \"title\": \"Testing with MatTreeHarness\",\n \"componentName\": \"TreeHarnessExample\",\n \"files\": [\n \"tree-harness-example.ts\",\n \"tree-harness-example.html\",\n \"tree-harness-example.spec.ts\"\n ],\n \"selector\": \"tree-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-harness-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-legacy-keyboard-interface\": {\n \"packagePath\": \"material/tree/tree-legacy-keyboard-interface\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"TreeLegacyKeyboardInterfaceExample\",\n \"files\": [\n \"tree-legacy-keyboard-interface-example.ts\",\n \"tree-legacy-keyboard-interface-example.html\",\n \"tree-legacy-keyboard-interface-example.css\"\n ],\n \"selector\": \"tree-legacy-keyboard-interface-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-legacy-keyboard-interface-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-loadmore\": {\n \"packagePath\": \"material/tree/tree-loadmore\",\n \"title\": \"Tree with partially loaded data\",\n \"componentName\": \"TreeLoadmoreExample\",\n \"files\": [\n \"tree-loadmore-example.ts\",\n \"tree-loadmore-example.html\",\n \"tree-loadmore-example.css\"\n ],\n \"selector\": \"tree-loadmore-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-loadmore-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-nested-child-accessor-overview\": {\n \"packagePath\": \"material/tree/tree-nested-child-accessor-overview\",\n \"title\": \"Tree with nested nodes (childrenAccessor)\",\n \"componentName\": \"TreeNestedChildAccessorOverviewExample\",\n \"files\": [\n \"tree-nested-child-accessor-overview-example.ts\",\n \"tree-nested-child-accessor-overview-example.html\",\n \"tree-nested-child-accessor-overview-example.css\"\n ],\n \"selector\": \"tree-nested-child-accessor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-nested-child-accessor-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-nested-overview\": {\n \"packagePath\": \"material/tree/tree-nested-overview\",\n \"title\": \"Tree with nested nodes\",\n \"componentName\": \"TreeNestedOverviewExample\",\n \"files\": [\n \"tree-nested-overview-example.ts\",\n \"tree-nested-overview-example.html\",\n \"tree-nested-overview-example.css\"\n ],\n \"selector\": \"tree-nested-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-nested-overview-example.ts\",\n \"importPath\": \"material/tree\"\n }\n};\nexport async function loadExample(id: string): Promise {\n switch (id) {\n case 'cdk-popover-edit-cdk-table-flex':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-cdk-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-cell-span-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-tab-out-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-selection-column':\nreturn import('@angular/components-examples/cdk-experimental/selection');\n case 'cdk-selection-list':\nreturn import('@angular/components-examples/cdk-experimental/selection');\n case 'focus-monitor-directives':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'focus-monitor-focus-via':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'focus-monitor-overview':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'cdk-accordion-overview':\nreturn import('@angular/components-examples/cdk/accordion');\n case 'cdk-clipboard-overview':\nreturn import('@angular/components-examples/cdk/clipboard');\n case 'cdk-dialog-data':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-dialog-overview':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-dialog-styling':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-drag-drop-axis-lock':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-boundary':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-connected-sorting-group':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-connected-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-custom-placeholder':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-custom-preview':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-delay':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-disabled-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-disabled':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-enter-predicate':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-free-drag-position':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-handle':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-horizontal-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-mixed-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-overview':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-root-element':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-sort-predicate':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-table':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-tabs':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'breakpoint-observer-overview':\nreturn import('@angular/components-examples/cdk/layout');\n case 'cdk-listbox-activedescendant':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-compare-with':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-custom-navigation':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-custom-typeahead':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-disabled':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-forms-validation':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-horizontal':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-multiple':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-overview':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-reactive-forms':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-template-forms':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-value-binding':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-menu-context':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-inline':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-menubar':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-nested-context':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-standalone-menu':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-standalone-stateful-menu':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-overlay-basic':\nreturn import('@angular/components-examples/cdk/overlay');\n case 'cdk-platform-overview':\nreturn import('@angular/components-examples/cdk/platform');\n case 'cdk-portal-overview':\nreturn import('@angular/components-examples/cdk/portal');\n case 'cdk-virtual-scroll-append-only':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-context':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-custom-strategy':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-data-source':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-dl':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-fixed-buffer':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-horizontal':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-overview':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-parent-scrolling':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-template-cache':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-window-scrolling':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-custom-stepper-without-form':\nreturn import('@angular/components-examples/cdk/stepper');\n case 'cdk-linear-stepper-with-form':\nreturn import('@angular/components-examples/cdk/stepper');\n case 'cdk-table-basic':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-fixed-layout':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-flex-basic':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-recycle-rows':\nreturn import('@angular/components-examples/cdk/table');\n case 'text-field-autofill-directive':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'text-field-autofill-monitor':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'text-field-autosize-textarea':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'cdk-tree-complex':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-custom-key-manager':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat-children-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat-level-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested-children-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested-level-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested':\nreturn import('@angular/components-examples/cdk/tree');\n case 'default-enabled-column-resize-flex':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'default-enabled-column-resize':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'opt-in-column-resize':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'popover-edit-cell-span-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-mat-table-flex':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-tab-out-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'mat-selection-column':\nreturn import('@angular/components-examples/material-experimental/selection');\n case 'mat-selection-list':\nreturn import('@angular/components-examples/material-experimental/selection');\n case 'autocomplete-auto-active-first-option':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-display':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-filter':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-harness':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-optgroup':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-overview':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-plain-input':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-require-selection':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-simple':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'badge-harness':\nreturn import('@angular/components-examples/material/badge');\n case 'badge-overview':\nreturn import('@angular/components-examples/material/badge');\n case 'bottom-sheet-harness':\nreturn import('@angular/components-examples/material/bottom-sheet');\n case 'bottom-sheet-overview':\nreturn import('@angular/components-examples/material/bottom-sheet');\n case 'button-toggle-appearance':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-forms':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-harness':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-mode':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-overview':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-disabled-interactive':\nreturn import('@angular/components-examples/material/button');\n case 'button-harness':\nreturn import('@angular/components-examples/material/button');\n case 'button-overview':\nreturn import('@angular/components-examples/material/button');\n case 'card-actions':\nreturn import('@angular/components-examples/material/card');\n case 'card-fancy':\nreturn import('@angular/components-examples/material/card');\n case 'card-footer':\nreturn import('@angular/components-examples/material/card');\n case 'card-harness':\nreturn import('@angular/components-examples/material/card');\n case 'card-media-size':\nreturn import('@angular/components-examples/material/card');\n case 'card-overview':\nreturn import('@angular/components-examples/material/card');\n case 'checkbox-configurable':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-harness':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-overview':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-reactive-forms':\nreturn import('@angular/components-examples/material/checkbox');\n case 'chips-autocomplete':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-avatar':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-drag-drop':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-form-control':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-harness':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-input':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-overview':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-reactive-form':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-stacked':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-template-form':\nreturn import('@angular/components-examples/material/chips');\n case 'elevation-overview':\nreturn import('@angular/components-examples/material/core');\n case 'ripple-overview':\nreturn import('@angular/components-examples/material/core');\n case 'date-range-picker-comparison':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-forms':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-overview':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-selection-strategy':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-actions':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-api':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-custom-header':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-custom-icon':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-date-class':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-dialog':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-disabled':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-events':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-filter':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-formats':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-harness':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-inline-calendar':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-locale':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-min-max':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-moment':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-overview':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-start-view':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-touch':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-value':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-views-selection':\nreturn import('@angular/components-examples/material/datepicker');\n case 'dialog-animations':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-content':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-data':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-elements':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-from-menu':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-harness':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-overview':\nreturn import('@angular/components-examples/material/dialog');\n case 'divider-harness':\nreturn import('@angular/components-examples/material/divider');\n case 'divider-overview':\nreturn import('@angular/components-examples/material/divider');\n case 'expansion-expand-collapse-all':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-harness':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-overview':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-steps':\nreturn import('@angular/components-examples/material/expansion');\n case 'form-field-appearance':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-custom-control':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-error':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-harness':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-hint':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-label':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-overview':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-prefix-suffix':\nreturn import('@angular/components-examples/material/form-field');\n case 'grid-list-dynamic':\nreturn import('@angular/components-examples/material/grid-list');\n case 'grid-list-harness':\nreturn import('@angular/components-examples/material/grid-list');\n case 'grid-list-overview':\nreturn import('@angular/components-examples/material/grid-list');\n case 'icon-harness':\nreturn import('@angular/components-examples/material/icon');\n case 'icon-overview':\nreturn import('@angular/components-examples/material/icon');\n case 'icon-svg':\nreturn import('@angular/components-examples/material/icon');\n case 'input-clearable':\nreturn import('@angular/components-examples/material/input');\n case 'input-error-state-matcher':\nreturn import('@angular/components-examples/material/input');\n case 'input-errors':\nreturn import('@angular/components-examples/material/input');\n case 'input-form':\nreturn import('@angular/components-examples/material/input');\n case 'input-harness':\nreturn import('@angular/components-examples/material/input');\n case 'input-hint':\nreturn import('@angular/components-examples/material/input');\n case 'input-overview':\nreturn import('@angular/components-examples/material/input');\n case 'input-prefix-suffix':\nreturn import('@angular/components-examples/material/input');\n case 'list-harness':\nreturn import('@angular/components-examples/material/list');\n case 'list-overview':\nreturn import('@angular/components-examples/material/list');\n case 'list-sections':\nreturn import('@angular/components-examples/material/list');\n case 'list-selection':\nreturn import('@angular/components-examples/material/list');\n case 'list-single-selection-reactive-form':\nreturn import('@angular/components-examples/material/list');\n case 'list-single-selection':\nreturn import('@angular/components-examples/material/list');\n case 'list-variants':\nreturn import('@angular/components-examples/material/list');\n case 'menu-harness':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-icons':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-nested':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-overview':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-position':\nreturn import('@angular/components-examples/material/menu');\n case 'paginator-configurable':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-harness':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-intl':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-overview':\nreturn import('@angular/components-examples/material/paginator');\n case 'progress-bar-buffer':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-configurable':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-determinate':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-harness':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-indeterminate':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-query':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-spinner-configurable':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'progress-spinner-harness':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'progress-spinner-overview':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'radio-harness':\nreturn import('@angular/components-examples/material/radio');\n case 'radio-ng-model':\nreturn import('@angular/components-examples/material/radio');\n case 'radio-overview':\nreturn import('@angular/components-examples/material/radio');\n case 'select-custom-trigger':\nreturn import('@angular/components-examples/material/select');\n case 'select-disabled':\nreturn import('@angular/components-examples/material/select');\n case 'select-error-state-matcher':\nreturn import('@angular/components-examples/material/select');\n case 'select-form':\nreturn import('@angular/components-examples/material/select');\n case 'select-harness':\nreturn import('@angular/components-examples/material/select');\n case 'select-hint-error':\nreturn import('@angular/components-examples/material/select');\n case 'select-initial-value':\nreturn import('@angular/components-examples/material/select');\n case 'select-multiple':\nreturn import('@angular/components-examples/material/select');\n case 'select-no-ripple':\nreturn import('@angular/components-examples/material/select');\n case 'select-optgroup':\nreturn import('@angular/components-examples/material/select');\n case 'select-overview':\nreturn import('@angular/components-examples/material/select');\n case 'select-panel-class':\nreturn import('@angular/components-examples/material/select');\n case 'select-reactive-form':\nreturn import('@angular/components-examples/material/select');\n case 'select-reset':\nreturn import('@angular/components-examples/material/select');\n case 'select-selectable-null':\nreturn import('@angular/components-examples/material/select');\n case 'select-value-binding':\nreturn import('@angular/components-examples/material/select');\n case 'sidenav-autosize':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-backdrop':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-configurable-focus-trap':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-disable-close':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-drawer-overview':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-fixed':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-harness':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-mode':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-open-close':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-overview':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-position':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-responsive':\nreturn import('@angular/components-examples/material/sidenav');\n case 'slide-toggle-configurable':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-forms':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-harness':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-overview':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slider-configurable':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-formatting':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-harness':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-overview':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-range':\nreturn import('@angular/components-examples/material/slider');\n case 'snack-bar-annotated-component':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-component':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-harness':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-overview':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-position':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'sort-harness':\nreturn import('@angular/components-examples/material/sort');\n case 'sort-overview':\nreturn import('@angular/components-examples/material/sort');\n case 'stepper-animations':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-editable':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-errors':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-harness':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-header-position':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-intl':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-label-position-bottom':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-lazy-content':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-optional':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-overview':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-responsive':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-states':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-vertical':\nreturn import('@angular/components-examples/material/stepper');\n case 'table-basic':\nreturn import('@angular/components-examples/material/table');\n case 'table-column-styling':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-array-data':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-observable-data':\nreturn import('@angular/components-examples/material/table');\n case 'table-expandable-rows':\nreturn import('@angular/components-examples/material/table');\n case 'table-filtering':\nreturn import('@angular/components-examples/material/table');\n case 'table-flex-basic':\nreturn import('@angular/components-examples/material/table');\n case 'table-flex-large-row':\nreturn import('@angular/components-examples/material/table');\n case 'table-footer-row':\nreturn import('@angular/components-examples/material/table');\n case 'table-generated-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-harness':\nreturn import('@angular/components-examples/material/table');\n case 'table-http':\nreturn import('@angular/components-examples/material/table');\n case 'table-multiple-header-footer':\nreturn import('@angular/components-examples/material/table');\n case 'table-multiple-row-template':\nreturn import('@angular/components-examples/material/table');\n case 'table-overview':\nreturn import('@angular/components-examples/material/table');\n case 'table-pagination':\nreturn import('@angular/components-examples/material/table');\n case 'table-recycle-rows':\nreturn import('@angular/components-examples/material/table');\n case 'table-reorderable':\nreturn import('@angular/components-examples/material/table');\n case 'table-row-binding':\nreturn import('@angular/components-examples/material/table');\n case 'table-row-context':\nreturn import('@angular/components-examples/material/table');\n case 'table-selection':\nreturn import('@angular/components-examples/material/table');\n case 'table-sorting':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-complex-flex':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-complex':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-footer':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-header':\nreturn import('@angular/components-examples/material/table');\n case 'table-text-column-advanced':\nreturn import('@angular/components-examples/material/table');\n case 'table-text-column':\nreturn import('@angular/components-examples/material/table');\n case 'table-with-ripples':\nreturn import('@angular/components-examples/material/table');\n case 'table-wrapped':\nreturn import('@angular/components-examples/material/table');\n case 'tab-group-align':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-animations':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-async':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-basic':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-custom-label':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-dynamic-height':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-dynamic':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-harness':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-header-below':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-ink-bar':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-lazy-loaded':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-paginated':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-preserve-content':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-stretched':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-nav-bar-basic':\nreturn import('@angular/components-examples/material/tabs');\n case 'timepicker-custom-icon':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-datepicker-integration':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-forms':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-harness':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-locale':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-options':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-overview':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-validation':\nreturn import('@angular/components-examples/material/timepicker');\n case 'toolbar-basic':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-harness':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-multirow':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-overview':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-simple':\nreturn import('@angular/components-examples/material/toolbar');\n case 'tooltip-auto-hide':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-custom-class':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-delay':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-disabled':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-harness':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-manual':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-message':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-modified-defaults':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-overview':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-position-at-origin':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-position':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tree-dynamic':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-flat-child-accessor-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-flat-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-harness':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-legacy-keyboard-interface':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-loadmore':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-nested-child-accessor-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-nested-overview':\nreturn import('@angular/components-examples/material/tree');\n default:\nreturn undefined;\n }\n}","// The example-module file will be auto-generated. As soon as the\n// examples are being compiled, the module file will be generated.\nimport {EXAMPLE_COMPONENTS} from './example-module';\n\n/**\n * Example data with information about component name, selector, files used in\n * example, and path to examples.\n */\nexport class ExampleData {\n /** Description of the example. */\n description: string;\n\n /** List of files that are part of this example. */\n exampleFiles: string[];\n\n /** Selector name of the example component. */\n selectorName: string;\n\n /** Name of the file that contains the example component. */\n indexFilename: string;\n\n /** Names of the components being used in this example. */\n componentNames: string[];\n\n constructor(example: string) {\n if (!example || !EXAMPLE_COMPONENTS.hasOwnProperty(example)) {\n return;\n }\n\n const {componentName, files, selector, primaryFile, additionalComponents, title} =\n EXAMPLE_COMPONENTS[example];\n const exampleName = example.replace(/(?:^\\w|\\b\\w)/g, letter => letter.toUpperCase());\n\n this.exampleFiles = files;\n this.selectorName = selector;\n this.indexFilename = primaryFile;\n this.description = title || exampleName.replace(/[\\-]+/g, ' ') + ' Example';\n this.componentNames = [componentName, ...additionalComponents];\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"components-examples.mjs","sources":["../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/example-module.ts","../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/example-data.ts"],"sourcesContent":["/**\n ******************************************************************************\n * DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED.\n ******************************************************************************\n */\n\nexport interface LiveExample {\n /** Title of the example. */\n title: string;\n /** Name of the example component. */\n componentName: string;\n /** Selector to match the component of this example. */\n selector: string;\n /** Name of the primary file of this example. */\n primaryFile: string;\n /** List of files which are part of the example. */\n files: string[];\n /** Path to the directory containing the example. */\n packagePath: string;\n /** List of additional components which are part of the example. */\n additionalComponents: string[];\n /** Path from which to import the xample. */\n importPath: string;\n}\n\nexport const EXAMPLE_COMPONENTS: {[id: string]: LiveExample} = {\n \"cdk-popover-edit-cdk-table-flex\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cdk-table-flex\",\n \"title\": \"CDK Popover Edit on a flex cdk-table.\",\n \"componentName\": \"CdkPopoverEditCdkTableFlexExample\",\n \"files\": [\n \"cdk-popover-edit-cdk-table-flex-example.ts\",\n \"cdk-popover-edit-cdk-table-flex-example.html\",\n \"cdk-popover-edit-cdk-table-flex-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cdk-table-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cdk-table-flex-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-cdk-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cdk-table\",\n \"title\": \"CDK Popover Edit on a CDK data-table\",\n \"componentName\": \"CdkPopoverEditCdkTableExample\",\n \"files\": [\n \"cdk-popover-edit-cdk-table-example.ts\",\n \"cdk-popover-edit-cdk-table-example.html\",\n \"cdk-popover-edit-cdk-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cdk-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cdk-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-cell-span-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-cell-span-vanilla-table\",\n \"title\": \"CDK Popover Edit spanning multiple columns on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditCellSpanVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-cell-span-vanilla-table-example.ts\",\n \"cdk-popover-edit-cell-span-vanilla-table-example.html\",\n \"cdk-popover-edit-cell-span-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-cell-span-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-cell-span-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-tab-out-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-tab-out-vanilla-table\",\n \"title\": \"CDK Popover Edit with spreadsheet-like configuration on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditTabOutVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-tab-out-vanilla-table-example.ts\",\n \"cdk-popover-edit-tab-out-vanilla-table-example.html\",\n \"cdk-popover-edit-tab-out-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-tab-out-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-tab-out-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-popover-edit-vanilla-table\": {\n \"packagePath\": \"cdk-experimental/popover-edit/cdk-popover-edit-vanilla-table\",\n \"title\": \"CDK Popover Edit on an HTML data-table\",\n \"componentName\": \"CdkPopoverEditVanillaTableExample\",\n \"files\": [\n \"cdk-popover-edit-vanilla-table-example.ts\",\n \"cdk-popover-edit-vanilla-table-example.html\",\n \"cdk-popover-edit-vanilla-table-example.css\"\n ],\n \"selector\": \"cdk-popover-edit-vanilla-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-popover-edit-vanilla-table-example.ts\",\n \"importPath\": \"cdk-experimental/popover-edit\"\n },\n \"cdk-selection-column\": {\n \"packagePath\": \"cdk-experimental/selection/cdk-selection-column\",\n \"title\": \"CDK Selection Column on a CDK table.\",\n \"componentName\": \"CdkSelectionColumnExample\",\n \"files\": [\n \"cdk-selection-column-example.ts\",\n \"cdk-selection-column-example.html\",\n \"cdk-selection-column-example.css\"\n ],\n \"selector\": \"cdk-selection-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-selection-column-example.ts\",\n \"importPath\": \"cdk-experimental/selection\"\n },\n \"cdk-selection-list\": {\n \"packagePath\": \"cdk-experimental/selection/cdk-selection-list\",\n \"title\": \"CDK Selection on a simple list.\",\n \"componentName\": \"CdkSelectionListExample\",\n \"files\": [\n \"cdk-selection-list-example.ts\",\n \"cdk-selection-list-example.html\"\n ],\n \"selector\": \"cdk-selection-list-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-selection-list-example.ts\",\n \"importPath\": \"cdk-experimental/selection\"\n },\n \"focus-monitor-directives\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-directives\",\n \"title\": \"Monitoring focus with FocusMonitor\",\n \"componentName\": \"FocusMonitorDirectivesExample\",\n \"files\": [\n \"focus-monitor-directives-example.ts\",\n \"focus-monitor-directives-example.html\",\n \"focus-monitor-directives-example.css\"\n ],\n \"selector\": \"focus-monitor-directives-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-directives-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"focus-monitor-focus-via\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-focus-via\",\n \"title\": \"Focusing with a specific FocusOrigin\",\n \"componentName\": \"FocusMonitorFocusViaExample\",\n \"files\": [\n \"focus-monitor-focus-via-example.ts\",\n \"focus-monitor-focus-via-example.html\",\n \"focus-monitor-focus-via-example.css\"\n ],\n \"selector\": \"focus-monitor-focus-via-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-focus-via-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"focus-monitor-overview\": {\n \"packagePath\": \"cdk/a11y/focus-monitor-overview\",\n \"title\": \"Monitoring focus with FocusMonitor\",\n \"componentName\": \"FocusMonitorOverviewExample\",\n \"files\": [\n \"focus-monitor-overview-example.ts\",\n \"focus-monitor-overview-example.html\",\n \"focus-monitor-overview-example.css\"\n ],\n \"selector\": \"focus-monitor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"focus-monitor-overview-example.ts\",\n \"importPath\": \"cdk/a11y\"\n },\n \"cdk-accordion-overview\": {\n \"packagePath\": \"cdk/accordion/cdk-accordion-overview\",\n \"title\": \"Accordion overview\",\n \"componentName\": \"CdkAccordionOverviewExample\",\n \"files\": [\n \"cdk-accordion-overview-example.ts\",\n \"cdk-accordion-overview-example.html\",\n \"cdk-accordion-overview-example.css\"\n ],\n \"selector\": \"cdk-accordion-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-accordion-overview-example.ts\",\n \"importPath\": \"cdk/accordion\"\n },\n \"cdk-clipboard-overview\": {\n \"packagePath\": \"cdk/clipboard/cdk-clipboard-overview\",\n \"title\": \"Clipboard overview\",\n \"componentName\": \"CdkClipboardOverviewExample\",\n \"files\": [\n \"cdk-clipboard-overview-example.ts\",\n \"cdk-clipboard-overview-example.html\",\n \"cdk-clipboard-overview-example.css\"\n ],\n \"selector\": \"cdk-clipboard-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-clipboard-overview-example.ts\",\n \"importPath\": \"cdk/clipboard\"\n },\n \"cdk-dialog-data\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-data\",\n \"title\": \"Injecting data when opening a dialog\",\n \"componentName\": \"CdkDialogDataExample\",\n \"files\": [\n \"cdk-dialog-data-example.ts\",\n \"cdk-dialog-data-example.html\",\n \"cdk-dialog-data-example-dialog.html\",\n \"./cdk-dialog-data-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-data-example\",\n \"additionalComponents\": [\n \"CdkDialogDataExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-data-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-dialog-overview\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-overview\",\n \"title\": \"CDK Dialog Overview\",\n \"componentName\": \"CdkDialogOverviewExample\",\n \"files\": [\n \"cdk-dialog-overview-example.ts\",\n \"cdk-dialog-overview-example.html\",\n \"cdk-dialog-overview-example-dialog.html\",\n \"cdk-dialog-overview-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-overview-example\",\n \"additionalComponents\": [\n \"CdkDialogOverviewExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-overview-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-dialog-styling\": {\n \"packagePath\": \"cdk/dialog/cdk-dialog-styling\",\n \"title\": \"CDK Dialog Styling\",\n \"componentName\": \"CdkDialogStylingExample\",\n \"files\": [\n \"cdk-dialog-styling-example.ts\",\n \"cdk-dialog-styling-example.html\",\n \"cdk-dialog-styling-example-dialog.html\",\n \"cdk-dialog-styling-example-dialog.css\"\n ],\n \"selector\": \"cdk-dialog-styling-example\",\n \"additionalComponents\": [\n \"CdkDialogStylingExampleDialog\"\n ],\n \"primaryFile\": \"cdk-dialog-styling-example.ts\",\n \"importPath\": \"cdk/dialog\"\n },\n \"cdk-drag-drop-axis-lock\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-axis-lock\",\n \"title\": \"Drag&Drop position locking\",\n \"componentName\": \"CdkDragDropAxisLockExample\",\n \"files\": [\n \"cdk-drag-drop-axis-lock-example.ts\",\n \"cdk-drag-drop-axis-lock-example.html\",\n \"cdk-drag-drop-axis-lock-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-axis-lock-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-axis-lock-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-boundary\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-boundary\",\n \"title\": \"Drag&Drop boundary\",\n \"componentName\": \"CdkDragDropBoundaryExample\",\n \"files\": [\n \"cdk-drag-drop-boundary-example.ts\",\n \"cdk-drag-drop-boundary-example.html\",\n \"cdk-drag-drop-boundary-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-boundary-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-boundary-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-connected-sorting-group\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-connected-sorting-group\",\n \"title\": \"Drag&Drop connected sorting group\",\n \"componentName\": \"CdkDragDropConnectedSortingGroupExample\",\n \"files\": [\n \"cdk-drag-drop-connected-sorting-group-example.ts\",\n \"cdk-drag-drop-connected-sorting-group-example.html\",\n \"cdk-drag-drop-connected-sorting-group-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-connected-sorting-group-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-connected-sorting-group-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-connected-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-connected-sorting\",\n \"title\": \"Drag&Drop connected sorting\",\n \"componentName\": \"CdkDragDropConnectedSortingExample\",\n \"files\": [\n \"cdk-drag-drop-connected-sorting-example.ts\",\n \"cdk-drag-drop-connected-sorting-example.html\",\n \"cdk-drag-drop-connected-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-connected-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-connected-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-custom-placeholder\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-custom-placeholder\",\n \"title\": \"Drag&Drop custom placeholder\",\n \"componentName\": \"CdkDragDropCustomPlaceholderExample\",\n \"files\": [\n \"cdk-drag-drop-custom-placeholder-example.ts\",\n \"cdk-drag-drop-custom-placeholder-example.html\",\n \"cdk-drag-drop-custom-placeholder-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-custom-placeholder-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-custom-placeholder-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-custom-preview\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-custom-preview\",\n \"title\": \"Drag&Drop custom preview\",\n \"componentName\": \"CdkDragDropCustomPreviewExample\",\n \"files\": [\n \"cdk-drag-drop-custom-preview-example.ts\",\n \"cdk-drag-drop-custom-preview-example.html\",\n \"cdk-drag-drop-custom-preview-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-custom-preview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-custom-preview-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-delay\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-delay\",\n \"title\": \"Delayed dragging\",\n \"componentName\": \"CdkDragDropDelayExample\",\n \"files\": [\n \"cdk-drag-drop-delay-example.ts\",\n \"cdk-drag-drop-delay-example.html\",\n \"cdk-drag-drop-delay-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-delay-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-delay-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-disabled-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-disabled-sorting\",\n \"title\": \"Drag&Drop disabled sorting\",\n \"componentName\": \"CdkDragDropDisabledSortingExample\",\n \"files\": [\n \"cdk-drag-drop-disabled-sorting-example.ts\",\n \"cdk-drag-drop-disabled-sorting-example.html\",\n \"cdk-drag-drop-disabled-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-disabled-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-disabled-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-disabled\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-disabled\",\n \"title\": \"Drag&Drop disabled\",\n \"componentName\": \"CdkDragDropDisabledExample\",\n \"files\": [\n \"cdk-drag-drop-disabled-example.ts\",\n \"cdk-drag-drop-disabled-example.html\",\n \"cdk-drag-drop-disabled-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-disabled-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-enter-predicate\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-enter-predicate\",\n \"title\": \"Drag&Drop enter predicate\",\n \"componentName\": \"CdkDragDropEnterPredicateExample\",\n \"files\": [\n \"cdk-drag-drop-enter-predicate-example.ts\",\n \"cdk-drag-drop-enter-predicate-example.html\",\n \"cdk-drag-drop-enter-predicate-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-enter-predicate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-enter-predicate-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-free-drag-position\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-free-drag-position\",\n \"title\": \"Programmatically setting the free drag position\",\n \"componentName\": \"CdkDragDropFreeDragPositionExample\",\n \"files\": [\n \"cdk-drag-drop-free-drag-position-example.ts\",\n \"cdk-drag-drop-free-drag-position-example.html\",\n \"cdk-drag-drop-free-drag-position-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-free-drag-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-free-drag-position-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-handle\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-handle\",\n \"title\": \"Drag&Drop with a handle\",\n \"componentName\": \"CdkDragDropHandleExample\",\n \"files\": [\n \"cdk-drag-drop-handle-example.ts\",\n \"cdk-drag-drop-handle-example.html\",\n \"cdk-drag-drop-handle-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-handle-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-handle-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-horizontal-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-horizontal-sorting\",\n \"title\": \"Drag&Drop horizontal sorting\",\n \"componentName\": \"CdkDragDropHorizontalSortingExample\",\n \"files\": [\n \"cdk-drag-drop-horizontal-sorting-example.ts\",\n \"cdk-drag-drop-horizontal-sorting-example.html\",\n \"cdk-drag-drop-horizontal-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-horizontal-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-horizontal-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-mixed-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-mixed-sorting\",\n \"title\": \"Drag&Drop horizontal wrapping list\",\n \"componentName\": \"CdkDragDropMixedSortingExample\",\n \"files\": [\n \"cdk-drag-drop-mixed-sorting-example.ts\",\n \"cdk-drag-drop-mixed-sorting-example.html\",\n \"cdk-drag-drop-mixed-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-mixed-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-mixed-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-overview\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-overview\",\n \"title\": \"Basic Drag&Drop\",\n \"componentName\": \"CdkDragDropOverviewExample\",\n \"files\": [\n \"cdk-drag-drop-overview-example.ts\",\n \"cdk-drag-drop-overview-example.html\",\n \"cdk-drag-drop-overview-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-overview-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-root-element\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-root-element\",\n \"title\": \"Drag&Drop with alternate root element\",\n \"componentName\": \"CdkDragDropRootElementExample\",\n \"files\": [\n \"cdk-drag-drop-root-element-example.ts\",\n \"cdk-drag-drop-root-element-example.html\",\n \"cdk-drag-drop-root-element-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-root-element-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-root-element-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-sort-predicate\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-sort-predicate\",\n \"title\": \"Drag&Drop sort predicate\",\n \"componentName\": \"CdkDragDropSortPredicateExample\",\n \"files\": [\n \"cdk-drag-drop-sort-predicate-example.ts\",\n \"cdk-drag-drop-sort-predicate-example.html\",\n \"cdk-drag-drop-sort-predicate-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-sort-predicate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-sort-predicate-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-sorting\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-sorting\",\n \"title\": \"Drag&Drop sorting\",\n \"componentName\": \"CdkDragDropSortingExample\",\n \"files\": [\n \"cdk-drag-drop-sorting-example.ts\",\n \"cdk-drag-drop-sorting-example.html\",\n \"cdk-drag-drop-sorting-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-sorting-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-table\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-table\",\n \"title\": \"Drag&Drop table\",\n \"componentName\": \"CdkDragDropTableExample\",\n \"files\": [\n \"cdk-drag-drop-table-example.ts\",\n \"cdk-drag-drop-table-example.html\",\n \"cdk-drag-drop-table-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-table-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"cdk-drag-drop-tabs\": {\n \"packagePath\": \"cdk/drag-drop/cdk-drag-drop-tabs\",\n \"title\": \"Drag&Drop tabs\",\n \"componentName\": \"CdkDragDropTabsExample\",\n \"files\": [\n \"cdk-drag-drop-tabs-example.ts\",\n \"cdk-drag-drop-tabs-example.html\",\n \"cdk-drag-drop-tabs-example.css\"\n ],\n \"selector\": \"cdk-drag-drop-tabs-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-drag-drop-tabs-example.ts\",\n \"importPath\": \"cdk/drag-drop\"\n },\n \"breakpoint-observer-overview\": {\n \"packagePath\": \"cdk/layout/breakpoint-observer-overview\",\n \"title\": \"Respond to viewport changes with BreakpointObserver\",\n \"componentName\": \"BreakpointObserverOverviewExample\",\n \"files\": [\n \"breakpoint-observer-overview-example.ts\",\n \"breakpoint-observer-overview-example.html\",\n \"breakpoint-observer-overview-example.css\"\n ],\n \"selector\": \"breakpoint-observer-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"breakpoint-observer-overview-example.ts\",\n \"importPath\": \"cdk/layout\"\n },\n \"cdk-listbox-activedescendant\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-activedescendant\",\n \"title\": \"Listbox with aria-activedescendant.\",\n \"componentName\": \"CdkListboxActivedescendantExample\",\n \"files\": [\n \"cdk-listbox-activedescendant-example.ts\",\n \"cdk-listbox-activedescendant-example.html\",\n \"cdk-listbox-activedescendant-example.css\"\n ],\n \"selector\": \"cdk-listbox-activedescendant-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-activedescendant-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-compare-with\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-compare-with\",\n \"title\": \"Listbox with complex object as values.\",\n \"componentName\": \"CdkListboxCompareWithExample\",\n \"files\": [\n \"cdk-listbox-compare-with-example.ts\",\n \"cdk-listbox-compare-with-example.html\",\n \"cdk-listbox-compare-with-example.css\"\n ],\n \"selector\": \"cdk-listbox-compare-with-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-compare-with-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-custom-navigation\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-custom-navigation\",\n \"title\": \"Listbox with custom keyboard navigation options.\",\n \"componentName\": \"CdkListboxCustomNavigationExample\",\n \"files\": [\n \"cdk-listbox-custom-navigation-example.ts\",\n \"cdk-listbox-custom-navigation-example.html\",\n \"cdk-listbox-custom-navigation-example.css\"\n ],\n \"selector\": \"cdk-listbox-custom-navigation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-custom-navigation-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-custom-typeahead\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-custom-typeahead\",\n \"title\": \"Listbox with custom typeahead.\",\n \"componentName\": \"CdkListboxCustomTypeaheadExample\",\n \"files\": [\n \"cdk-listbox-custom-typeahead-example.ts\",\n \"cdk-listbox-custom-typeahead-example.html\",\n \"cdk-listbox-custom-typeahead-example.css\"\n ],\n \"selector\": \"cdk-listbox-custom-typeahead-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-custom-typeahead-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-disabled\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-disabled\",\n \"title\": \"Listbox with disabled options.\",\n \"componentName\": \"CdkListboxDisabledExample\",\n \"files\": [\n \"cdk-listbox-disabled-example.ts\",\n \"cdk-listbox-disabled-example.html\",\n \"cdk-listbox-disabled-example.css\"\n ],\n \"selector\": \"cdk-listbox-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-disabled-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-forms-validation\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-forms-validation\",\n \"title\": \"Listbox with forms validation.\",\n \"componentName\": \"CdkListboxFormsValidationExample\",\n \"files\": [\n \"cdk-listbox-forms-validation-example.ts\",\n \"cdk-listbox-forms-validation-example.html\",\n \"cdk-listbox-forms-validation-example.css\"\n ],\n \"selector\": \"cdk-listbox-forms-validation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-forms-validation-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-horizontal\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-horizontal\",\n \"title\": \"Horizontal listbox\",\n \"componentName\": \"CdkListboxHorizontalExample\",\n \"files\": [\n \"cdk-listbox-horizontal-example.ts\",\n \"cdk-listbox-horizontal-example.html\",\n \"cdk-listbox-horizontal-example.css\"\n ],\n \"selector\": \"cdk-listbox-horizontal-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-horizontal-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-multiple\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-multiple\",\n \"title\": \"Listbox with multiple selection.\",\n \"componentName\": \"CdkListboxMultipleExample\",\n \"files\": [\n \"cdk-listbox-multiple-example.ts\",\n \"cdk-listbox-multiple-example.html\",\n \"cdk-listbox-multiple-example.css\"\n ],\n \"selector\": \"cdk-listbox-multiple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-multiple-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-overview\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-overview\",\n \"title\": \"Basic listbox.\",\n \"componentName\": \"CdkListboxOverviewExample\",\n \"files\": [\n \"cdk-listbox-overview-example.ts\",\n \"cdk-listbox-overview-example.html\",\n \"cdk-listbox-overview-example.css\"\n ],\n \"selector\": \"cdk-listbox-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-overview-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-reactive-forms\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-reactive-forms\",\n \"title\": \"Listbox with reactive forms.\",\n \"componentName\": \"CdkListboxReactiveFormsExample\",\n \"files\": [\n \"cdk-listbox-reactive-forms-example.ts\",\n \"cdk-listbox-reactive-forms-example.html\",\n \"cdk-listbox-reactive-forms-example.css\"\n ],\n \"selector\": \"cdk-listbox-reactive-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-reactive-forms-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-template-forms\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-template-forms\",\n \"title\": \"Listbox with template-driven forms.\",\n \"componentName\": \"CdkListboxTemplateFormsExample\",\n \"files\": [\n \"cdk-listbox-template-forms-example.ts\",\n \"cdk-listbox-template-forms-example.html\",\n \"cdk-listbox-template-forms-example.css\"\n ],\n \"selector\": \"cdk-listbox-template-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-template-forms-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-listbox-value-binding\": {\n \"packagePath\": \"cdk/listbox/cdk-listbox-value-binding\",\n \"title\": \"Listbox with value binding.\",\n \"componentName\": \"CdkListboxValueBindingExample\",\n \"files\": [\n \"cdk-listbox-value-binding-example.ts\",\n \"cdk-listbox-value-binding-example.html\",\n \"cdk-listbox-value-binding-example.css\"\n ],\n \"selector\": \"cdk-listbox-value-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-listbox-value-binding-example.ts\",\n \"importPath\": \"cdk/listbox\"\n },\n \"cdk-menu-context\": {\n \"packagePath\": \"cdk/menu/cdk-menu-context\",\n \"title\": \"Context menu.\",\n \"componentName\": \"CdkMenuContextExample\",\n \"files\": [\n \"cdk-menu-context-example.ts\",\n \"cdk-menu-context-example.html\",\n \"cdk-menu-context-example.css\"\n ],\n \"selector\": \"cdk-menu-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-context-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-inline\": {\n \"packagePath\": \"cdk/menu/cdk-menu-inline\",\n \"title\": \"Gmail inline menu.\",\n \"componentName\": \"CdkMenuInlineExample\",\n \"files\": [\n \"cdk-menu-inline-example.ts\",\n \"cdk-menu-inline-example.html\",\n \"cdk-menu-inline-example.css\"\n ],\n \"selector\": \"cdk-menu-inline-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-inline-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-menubar\": {\n \"packagePath\": \"cdk/menu/cdk-menu-menubar\",\n \"title\": \"Google Docs Menu Bar.\",\n \"componentName\": \"CdkMenuMenubarExample\",\n \"files\": [\n \"cdk-menu-menubar-example.ts\",\n \"cdk-menu-menubar-example.html\",\n \"cdk-menu-menubar-example.css\"\n ],\n \"selector\": \"cdk-menu-menubar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-menubar-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-nested-context\": {\n \"packagePath\": \"cdk/menu/cdk-menu-nested-context\",\n \"title\": \"Nested context menus.\",\n \"componentName\": \"CdkMenuNestedContextExample\",\n \"files\": [\n \"cdk-menu-nested-context-example.ts\",\n \"cdk-menu-nested-context-example.html\",\n \"cdk-menu-nested-context-example.css\"\n ],\n \"selector\": \"cdk-menu-nested-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-nested-context-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-standalone-menu\": {\n \"packagePath\": \"cdk/menu/cdk-menu-standalone-menu\",\n \"title\": \"Menu with Standalone Trigger.\",\n \"componentName\": \"CdkMenuStandaloneMenuExample\",\n \"files\": [\n \"cdk-menu-standalone-menu-example.ts\",\n \"cdk-menu-standalone-menu-example.html\",\n \"cdk-menu-standalone-menu-example.css\"\n ],\n \"selector\": \"cdk-menu-standalone-menu-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-standalone-menu-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-menu-standalone-stateful-menu\": {\n \"packagePath\": \"cdk/menu/cdk-menu-standalone-stateful-menu\",\n \"title\": \"Stateful Menu with Standalone Trigger.\",\n \"componentName\": \"CdkMenuStandaloneStatefulMenuExample\",\n \"files\": [\n \"cdk-menu-standalone-stateful-menu-example.ts\",\n \"cdk-menu-standalone-stateful-menu-example.html\",\n \"cdk-menu-standalone-stateful-menu-example.css\"\n ],\n \"selector\": \"cdk-menu-standalone-stateful-menu-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-menu-standalone-stateful-menu-example.ts\",\n \"importPath\": \"cdk/menu\"\n },\n \"cdk-overlay-basic\": {\n \"packagePath\": \"cdk/overlay/cdk-overlay-basic\",\n \"title\": \"Overlay basic example\",\n \"componentName\": \"CdkOverlayBasicExample\",\n \"files\": [\n \"cdk-overlay-basic-example.ts\",\n \"./cdk-overlay-basic-example.html\",\n \"./cdk-overlay-basic-example.css\"\n ],\n \"selector\": \"cdk-overlay-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-overlay-basic-example.ts\",\n \"importPath\": \"cdk/overlay\"\n },\n \"cdk-platform-overview\": {\n \"packagePath\": \"cdk/platform/cdk-platform-overview\",\n \"title\": \"Platform overview\",\n \"componentName\": \"CdkPlatformOverviewExample\",\n \"files\": [\n \"cdk-platform-overview-example.ts\",\n \"cdk-platform-overview-example.html\"\n ],\n \"selector\": \"cdk-platform-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-platform-overview-example.ts\",\n \"importPath\": \"cdk/platform\"\n },\n \"cdk-portal-overview\": {\n \"packagePath\": \"cdk/portal/cdk-portal-overview\",\n \"title\": \"Portal overview\",\n \"componentName\": \"CdkPortalOverviewExample\",\n \"files\": [\n \"cdk-portal-overview-example.ts\",\n \"cdk-portal-overview-example.html\",\n \"cdk-portal-overview-example.css\"\n ],\n \"selector\": \"cdk-portal-overview-example\",\n \"additionalComponents\": [\n \"ComponentPortalExample\"\n ],\n \"primaryFile\": \"cdk-portal-overview-example.ts\",\n \"importPath\": \"cdk/portal\"\n },\n \"cdk-virtual-scroll-append-only\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-append-only\",\n \"title\": \"Virtual scroll with view recycling disabled.\",\n \"componentName\": \"CdkVirtualScrollAppendOnlyExample\",\n \"files\": [\n \"cdk-virtual-scroll-append-only-example.ts\",\n \"cdk-virtual-scroll-append-only-example.html\",\n \"cdk-virtual-scroll-append-only-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-append-only-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-append-only-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-context\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-context\",\n \"title\": \"Virtual scroll context variables\",\n \"componentName\": \"CdkVirtualScrollContextExample\",\n \"files\": [\n \"cdk-virtual-scroll-context-example.ts\",\n \"cdk-virtual-scroll-context-example.html\",\n \"cdk-virtual-scroll-context-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-context-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-custom-strategy\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-custom-strategy\",\n \"title\": \"Virtual scroll with a custom strategy\",\n \"componentName\": \"CdkVirtualScrollCustomStrategyExample\",\n \"files\": [\n \"cdk-virtual-scroll-custom-strategy-example.ts\",\n \"cdk-virtual-scroll-custom-strategy-example.html\",\n \"cdk-virtual-scroll-custom-strategy-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-custom-strategy-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-custom-strategy-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-data-source\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-data-source\",\n \"title\": \"Virtual scroll with a custom data source\",\n \"componentName\": \"CdkVirtualScrollDataSourceExample\",\n \"files\": [\n \"cdk-virtual-scroll-data-source-example.ts\",\n \"cdk-virtual-scroll-data-source-example.html\",\n \"cdk-virtual-scroll-data-source-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-data-source-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-data-source-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-dl\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-dl\",\n \"title\": \"Virtual scrolling `
    `\",\n \"componentName\": \"CdkVirtualScrollDlExample\",\n \"files\": [\n \"cdk-virtual-scroll-dl-example.ts\",\n \"cdk-virtual-scroll-dl-example.html\",\n \"cdk-virtual-scroll-dl-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-dl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-dl-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-fixed-buffer\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-fixed-buffer\",\n \"title\": \"Fixed size virtual scroll with custom buffer parameters\",\n \"componentName\": \"CdkVirtualScrollFixedBufferExample\",\n \"files\": [\n \"cdk-virtual-scroll-fixed-buffer-example.ts\",\n \"cdk-virtual-scroll-fixed-buffer-example.html\",\n \"cdk-virtual-scroll-fixed-buffer-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-fixed-buffer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-fixed-buffer-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-horizontal\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-horizontal\",\n \"title\": \"Horizontal virtual scroll\",\n \"componentName\": \"CdkVirtualScrollHorizontalExample\",\n \"files\": [\n \"cdk-virtual-scroll-horizontal-example.ts\",\n \"cdk-virtual-scroll-horizontal-example.html\",\n \"cdk-virtual-scroll-horizontal-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-horizontal-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-horizontal-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-overview\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-overview\",\n \"title\": \"Basic virtual scroll\",\n \"componentName\": \"CdkVirtualScrollOverviewExample\",\n \"files\": [\n \"cdk-virtual-scroll-overview-example.ts\",\n \"cdk-virtual-scroll-overview-example.html\",\n \"cdk-virtual-scroll-overview-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-overview-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-parent-scrolling\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-parent-scrolling\",\n \"title\": \"Virtual scrolling viewport parent element\",\n \"componentName\": \"CdkVirtualScrollParentScrollingExample\",\n \"files\": [\n \"cdk-virtual-scroll-parent-scrolling-example.ts\",\n \"cdk-virtual-scroll-parent-scrolling-example.html\",\n \"cdk-virtual-scroll-parent-scrolling-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-parent-scrolling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-parent-scrolling-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-template-cache\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-template-cache\",\n \"title\": \"Virtual scroll with no template caching\",\n \"componentName\": \"CdkVirtualScrollTemplateCacheExample\",\n \"files\": [\n \"cdk-virtual-scroll-template-cache-example.ts\",\n \"cdk-virtual-scroll-template-cache-example.html\",\n \"cdk-virtual-scroll-template-cache-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-template-cache-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-template-cache-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-virtual-scroll-window-scrolling\": {\n \"packagePath\": \"cdk/scrolling/cdk-virtual-scroll-window-scrolling\",\n \"title\": \"Virtual scrolling window\",\n \"componentName\": \"CdkVirtualScrollWindowScrollingExample\",\n \"files\": [\n \"cdk-virtual-scroll-window-scrolling-example.ts\",\n \"cdk-virtual-scroll-window-scrolling-example.html\",\n \"cdk-virtual-scroll-window-scrolling-example.css\"\n ],\n \"selector\": \"cdk-virtual-scroll-window-scrolling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-virtual-scroll-window-scrolling-example.ts\",\n \"importPath\": \"cdk/scrolling\"\n },\n \"cdk-custom-stepper-without-form\": {\n \"packagePath\": \"cdk/stepper/cdk-custom-stepper-without-form\",\n \"title\": \"A custom CDK stepper without a form\",\n \"componentName\": \"CdkCustomStepperWithoutFormExample\",\n \"files\": [\n \"cdk-custom-stepper-without-form-example.ts\",\n \"./cdk-custom-stepper-without-form-example.html\",\n \"./cdk-custom-stepper-without-form-example.css\",\n \"./example-custom-stepper.html\",\n \"./example-custom-stepper.css\"\n ],\n \"selector\": \"cdk-custom-stepper-without-form-example\",\n \"additionalComponents\": [\n \"CustomStepper\"\n ],\n \"primaryFile\": \"cdk-custom-stepper-without-form-example.ts\",\n \"importPath\": \"cdk/stepper\"\n },\n \"cdk-linear-stepper-with-form\": {\n \"packagePath\": \"cdk/stepper/cdk-linear-stepper-with-form\",\n \"title\": \"A custom CDK linear stepper with forms\",\n \"componentName\": \"CdkLinearStepperWithFormExample\",\n \"files\": [\n \"cdk-linear-stepper-with-form-example.ts\",\n \"./cdk-linear-stepper-with-form-example.html\",\n \"./cdk-linear-stepper-with-form-example.css\",\n \"./example-custom-linear-stepper.html\",\n \"./example-custom-linear-stepper.css\"\n ],\n \"selector\": \"cdk-linear-stepper-with-form-example\",\n \"additionalComponents\": [\n \"CustomLinearStepper\"\n ],\n \"primaryFile\": \"cdk-linear-stepper-with-form-example.ts\",\n \"importPath\": \"cdk/stepper\"\n },\n \"cdk-table-basic\": {\n \"packagePath\": \"cdk/table/cdk-table-basic\",\n \"title\": \"Basic CDK data-table\",\n \"componentName\": \"CdkTableBasicExample\",\n \"files\": [\n \"cdk-table-basic-example.ts\",\n \"cdk-table-basic-example.html\",\n \"cdk-table-basic-example.css\"\n ],\n \"selector\": \"cdk-table-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-basic-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-fixed-layout\": {\n \"packagePath\": \"cdk/table/cdk-table-fixed-layout\",\n \"title\": \"CDK table with a fixed layout.\",\n \"componentName\": \"CdkTableFixedLayoutExample\",\n \"files\": [\n \"cdk-table-fixed-layout-example.ts\",\n \"cdk-table-fixed-layout-example.html\",\n \"cdk-table-fixed-layout-example.css\"\n ],\n \"selector\": \"cdk-table-fixed-layout-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-fixed-layout-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-flex-basic\": {\n \"packagePath\": \"cdk/table/cdk-table-flex-basic\",\n \"title\": \"Basic use of `` (uses display flex)\",\n \"componentName\": \"CdkTableFlexBasicExample\",\n \"files\": [\n \"cdk-table-flex-basic-example.ts\",\n \"cdk-table-flex-basic-example.html\",\n \"cdk-table-flex-basic-example.css\"\n ],\n \"selector\": \"cdk-table-flex-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-flex-basic-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"cdk-table-recycle-rows\": {\n \"packagePath\": \"cdk/table/cdk-table-recycle-rows\",\n \"title\": \"Table that uses the recycle view repeater strategy.\",\n \"componentName\": \"CdkTableRecycleRowsExample\",\n \"files\": [\n \"cdk-table-recycle-rows-example.ts\",\n \"cdk-table-recycle-rows-example.html\",\n \"cdk-table-recycle-rows-example.css\"\n ],\n \"selector\": \"cdk-table-recycle-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-table-recycle-rows-example.ts\",\n \"importPath\": \"cdk/table\"\n },\n \"text-field-autofill-directive\": {\n \"packagePath\": \"cdk/text-field/text-field-autofill-directive\",\n \"title\": \"Monitoring autofill state with cdkAutofill\",\n \"componentName\": \"TextFieldAutofillDirectiveExample\",\n \"files\": [\n \"text-field-autofill-directive-example.ts\",\n \"./text-field-autofill-directive-example.html\",\n \"./text-field-autofill-directive-example.css\"\n ],\n \"selector\": \"text-field-autofill-directive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autofill-directive-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"text-field-autofill-monitor\": {\n \"packagePath\": \"cdk/text-field/text-field-autofill-monitor\",\n \"title\": \"Monitoring autofill state with AutofillMonitor\",\n \"componentName\": \"TextFieldAutofillMonitorExample\",\n \"files\": [\n \"text-field-autofill-monitor-example.ts\",\n \"./text-field-autofill-monitor-example.html\",\n \"./text-field-autofill-monitor-example.css\"\n ],\n \"selector\": \"text-field-autofill-monitor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autofill-monitor-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"text-field-autosize-textarea\": {\n \"packagePath\": \"cdk/text-field/text-field-autosize-textarea\",\n \"title\": \"Auto-resizing textarea\",\n \"componentName\": \"TextFieldAutosizeTextareaExample\",\n \"files\": [\n \"text-field-autosize-textarea-example.ts\",\n \"./text-field-autosize-textarea-example.html\",\n \"./text-field-autosize-textarea-example.css\"\n ],\n \"selector\": \"text-field-autosize-textarea-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"text-field-autosize-textarea-example.ts\",\n \"importPath\": \"cdk/text-field\"\n },\n \"cdk-tree-complex\": {\n \"packagePath\": \"cdk/tree/cdk-tree-complex\",\n \"title\": \"Complex example making use of the redux pattern.\",\n \"componentName\": \"CdkTreeComplexExample\",\n \"files\": [\n \"cdk-tree-complex-example.ts\",\n \"cdk-tree-complex-example.html\",\n \"cdk-tree-complex-example.css\"\n ],\n \"selector\": \"cdk-tree-complex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-complex-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-custom-key-manager\": {\n \"packagePath\": \"cdk/tree/cdk-tree-custom-key-manager\",\n \"title\": \"Tree with vim keyboard commands.\",\n \"componentName\": \"CdkTreeCustomKeyManagerExample\",\n \"files\": [\n \"cdk-tree-custom-key-manager-example.ts\",\n \"cdk-tree-custom-key-manager-example.html\",\n \"cdk-tree-custom-key-manager-example.css\"\n ],\n \"selector\": \"cdk-tree-custom-key-manager-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-custom-key-manager-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat-children-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat-children-accessor\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatChildrenAccessorExample\",\n \"files\": [\n \"cdk-tree-flat-children-accessor-example.ts\",\n \"cdk-tree-flat-children-accessor-example.html\",\n \"cdk-tree-flat-children-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-children-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-children-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat-level-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat-level-accessor\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatLevelAccessorExample\",\n \"files\": [\n \"cdk-tree-flat-level-accessor-example.ts\",\n \"cdk-tree-flat-level-accessor-example.html\",\n \"cdk-tree-flat-level-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-level-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-level-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-flat\": {\n \"packagePath\": \"cdk/tree/cdk-tree-flat\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"CdkTreeFlatExample\",\n \"files\": [\n \"cdk-tree-flat-example.ts\",\n \"cdk-tree-flat-example.html\",\n \"cdk-tree-flat-example.css\"\n ],\n \"selector\": \"cdk-tree-flat-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-flat-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested-children-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested-children-accessor\",\n \"title\": \"Tree with nested nodes using childAccessor\",\n \"componentName\": \"CdkTreeNestedChildrenAccessorExample\",\n \"files\": [\n \"cdk-tree-nested-children-accessor-example.ts\",\n \"cdk-tree-nested-children-accessor-example.html\",\n \"cdk-tree-nested-children-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-children-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-children-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested-level-accessor\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested-level-accessor\",\n \"title\": \"Tree with nested nodes and level accessor\",\n \"componentName\": \"CdkTreeNestedLevelAccessorExample\",\n \"files\": [\n \"cdk-tree-nested-level-accessor-example.ts\",\n \"cdk-tree-nested-level-accessor-example.html\",\n \"cdk-tree-nested-level-accessor-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-level-accessor-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-level-accessor-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"cdk-tree-nested\": {\n \"packagePath\": \"cdk/tree/cdk-tree-nested\",\n \"title\": \"Tree with nested nodes\",\n \"componentName\": \"CdkTreeNestedExample\",\n \"files\": [\n \"cdk-tree-nested-example.ts\",\n \"cdk-tree-nested-example.html\",\n \"cdk-tree-nested-example.css\"\n ],\n \"selector\": \"cdk-tree-nested-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"cdk-tree-nested-example.ts\",\n \"importPath\": \"cdk/tree\"\n },\n \"default-enabled-column-resize-flex\": {\n \"packagePath\": \"material-experimental/column-resize/default-enabled-column-resize-flex\",\n \"title\": \"Default-enabled column resize with a flex-based mat-table.\",\n \"componentName\": \"DefaultEnabledColumnResizeFlexExample\",\n \"files\": [\n \"default-enabled-column-resize-flex-example.ts\",\n \"default-enabled-column-resize-flex-example.html\",\n \"default-enabled-column-resize-flex-example.css\"\n ],\n \"selector\": \"default-enabled-column-resize-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"default-enabled-column-resize-flex-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"default-enabled-column-resize\": {\n \"packagePath\": \"material-experimental/column-resize/default-enabled-column-resize\",\n \"title\": \"Default-enabled column resize with a table-based mat-table.\",\n \"componentName\": \"DefaultEnabledColumnResizeExample\",\n \"files\": [\n \"default-enabled-column-resize-example.ts\",\n \"default-enabled-column-resize-example.html\",\n \"default-enabled-column-resize-example.css\"\n ],\n \"selector\": \"default-enabled-column-resize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"default-enabled-column-resize-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"opt-in-column-resize\": {\n \"packagePath\": \"material-experimental/column-resize/opt-in-column-resize\",\n \"title\": \"Opt-in column resize with a table-based mat-table.\",\n \"componentName\": \"OptInColumnResizeExample\",\n \"files\": [\n \"opt-in-column-resize-example.ts\",\n \"opt-in-column-resize-example.html\",\n \"opt-in-column-resize-example.css\"\n ],\n \"selector\": \"opt-in-column-resize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"opt-in-column-resize-example.ts\",\n \"importPath\": \"material-experimental/column-resize\"\n },\n \"popover-edit-cell-span-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-cell-span-mat-table\",\n \"title\": \"Material Popover Edit spanning multiple columns on a Material data-table\",\n \"componentName\": \"PopoverEditCellSpanMatTableExample\",\n \"files\": [\n \"popover-edit-cell-span-mat-table-example.ts\",\n \"popover-edit-cell-span-mat-table-example.html\",\n \"popover-edit-cell-span-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-cell-span-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-cell-span-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-mat-table-flex\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-mat-table-flex\",\n \"title\": \"Material Popover Edit on a flex Material data-table\",\n \"componentName\": \"PopoverEditMatTableFlexExample\",\n \"files\": [\n \"popover-edit-mat-table-flex-example.ts\",\n \"popover-edit-mat-table-flex-example.html\",\n \"popover-edit-mat-table-flex-example.css\"\n ],\n \"selector\": \"popover-edit-mat-table-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-mat-table-flex-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-mat-table\",\n \"title\": \"Material Popover Edit on a Material data-table\",\n \"componentName\": \"PopoverEditMatTableExample\",\n \"files\": [\n \"popover-edit-mat-table-example.ts\",\n \"popover-edit-mat-table-example.html\",\n \"popover-edit-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"popover-edit-tab-out-mat-table\": {\n \"packagePath\": \"material-experimental/popover-edit/popover-edit-tab-out-mat-table\",\n \"title\": \"Material Popover Edit with spreadsheet-like configuration on a Material data-table\",\n \"componentName\": \"PopoverEditTabOutMatTableExample\",\n \"files\": [\n \"popover-edit-tab-out-mat-table-example.ts\",\n \"popover-edit-tab-out-mat-table-example.html\",\n \"popover-edit-tab-out-mat-table-example.css\"\n ],\n \"selector\": \"popover-edit-tab-out-mat-table-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"popover-edit-tab-out-mat-table-example.ts\",\n \"importPath\": \"material-experimental/popover-edit\"\n },\n \"mat-selection-column\": {\n \"packagePath\": \"material-experimental/selection/mat-selection-column\",\n \"title\": \"Table that uses `matSelectionColumn` which allows users to select rows.\",\n \"componentName\": \"MatSelectionColumnExample\",\n \"files\": [\n \"mat-selection-column-example.ts\",\n \"mat-selection-column-example.html\",\n \"mat-selection-column-example.css\"\n ],\n \"selector\": \"mat-selection-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"mat-selection-column-example.ts\",\n \"importPath\": \"material-experimental/selection\"\n },\n \"mat-selection-list\": {\n \"packagePath\": \"material-experimental/selection/mat-selection-list\",\n \"title\": \"Mat Selection on a simple list.\",\n \"componentName\": \"MatSelectionListExample\",\n \"files\": [\n \"mat-selection-list-example.ts\",\n \"mat-selection-list-example.html\"\n ],\n \"selector\": \"mat-selection-list-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"mat-selection-list-example.ts\",\n \"importPath\": \"material-experimental/selection\"\n },\n \"autocomplete-auto-active-first-option\": {\n \"packagePath\": \"material/autocomplete/autocomplete-auto-active-first-option\",\n \"title\": \"Highlight the first autocomplete option\",\n \"componentName\": \"AutocompleteAutoActiveFirstOptionExample\",\n \"files\": [\n \"autocomplete-auto-active-first-option-example.ts\",\n \"autocomplete-auto-active-first-option-example.html\",\n \"autocomplete-auto-active-first-option-example.css\"\n ],\n \"selector\": \"autocomplete-auto-active-first-option-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-auto-active-first-option-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-display\": {\n \"packagePath\": \"material/autocomplete/autocomplete-display\",\n \"title\": \"Display value autocomplete\",\n \"componentName\": \"AutocompleteDisplayExample\",\n \"files\": [\n \"autocomplete-display-example.ts\",\n \"autocomplete-display-example.html\",\n \"autocomplete-display-example.css\"\n ],\n \"selector\": \"autocomplete-display-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-display-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-filter\": {\n \"packagePath\": \"material/autocomplete/autocomplete-filter\",\n \"title\": \"Filter autocomplete\",\n \"componentName\": \"AutocompleteFilterExample\",\n \"files\": [\n \"autocomplete-filter-example.ts\",\n \"autocomplete-filter-example.html\",\n \"autocomplete-filter-example.css\"\n ],\n \"selector\": \"autocomplete-filter-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-filter-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-harness\": {\n \"packagePath\": \"material/autocomplete/autocomplete-harness\",\n \"title\": \"Testing with MatAutocompleteHarness\",\n \"componentName\": \"AutocompleteHarnessExample\",\n \"files\": [\n \"autocomplete-harness-example.ts\",\n \"autocomplete-harness-example.html\",\n \"autocomplete-harness-example.spec.ts\"\n ],\n \"selector\": \"autocomplete-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-harness-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-optgroup\": {\n \"packagePath\": \"material/autocomplete/autocomplete-optgroup\",\n \"title\": \"Option groups autocomplete\",\n \"componentName\": \"AutocompleteOptgroupExample\",\n \"files\": [\n \"autocomplete-optgroup-example.ts\",\n \"autocomplete-optgroup-example.html\"\n ],\n \"selector\": \"autocomplete-optgroup-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-optgroup-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-overview\": {\n \"packagePath\": \"material/autocomplete/autocomplete-overview\",\n \"title\": \"Autocomplete overview\",\n \"componentName\": \"AutocompleteOverviewExample\",\n \"files\": [\n \"autocomplete-overview-example.ts\",\n \"autocomplete-overview-example.html\",\n \"autocomplete-overview-example.css\"\n ],\n \"selector\": \"autocomplete-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-overview-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-plain-input\": {\n \"packagePath\": \"material/autocomplete/autocomplete-plain-input\",\n \"title\": \"Plain input autocomplete\",\n \"componentName\": \"AutocompletePlainInputExample\",\n \"files\": [\n \"autocomplete-plain-input-example.ts\",\n \"autocomplete-plain-input-example.html\",\n \"autocomplete-plain-input-example.css\"\n ],\n \"selector\": \"autocomplete-plain-input-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-plain-input-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-require-selection\": {\n \"packagePath\": \"material/autocomplete/autocomplete-require-selection\",\n \"title\": \"Require an autocomplete option to be selected\",\n \"componentName\": \"AutocompleteRequireSelectionExample\",\n \"files\": [\n \"autocomplete-require-selection-example.ts\",\n \"autocomplete-require-selection-example.html\",\n \"autocomplete-require-selection-example.css\"\n ],\n \"selector\": \"autocomplete-require-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-require-selection-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"autocomplete-simple\": {\n \"packagePath\": \"material/autocomplete/autocomplete-simple\",\n \"title\": \"Simple autocomplete\",\n \"componentName\": \"AutocompleteSimpleExample\",\n \"files\": [\n \"autocomplete-simple-example.ts\",\n \"autocomplete-simple-example.html\",\n \"autocomplete-simple-example.css\"\n ],\n \"selector\": \"autocomplete-simple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"autocomplete-simple-example.ts\",\n \"importPath\": \"material/autocomplete\"\n },\n \"badge-harness\": {\n \"packagePath\": \"material/badge/badge-harness\",\n \"title\": \"Testing with MatBadgeHarness\",\n \"componentName\": \"BadgeHarnessExample\",\n \"files\": [\n \"badge-harness-example.ts\",\n \"badge-harness-example.html\",\n \"badge-harness-example.spec.ts\"\n ],\n \"selector\": \"badge-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"badge-harness-example.ts\",\n \"importPath\": \"material/badge\"\n },\n \"badge-overview\": {\n \"packagePath\": \"material/badge/badge-overview\",\n \"title\": \"Badge overview\",\n \"componentName\": \"BadgeOverviewExample\",\n \"files\": [\n \"badge-overview-example.ts\",\n \"badge-overview-example.html\",\n \"badge-overview-example.css\"\n ],\n \"selector\": \"badge-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"badge-overview-example.ts\",\n \"importPath\": \"material/badge\"\n },\n \"bottom-sheet-harness\": {\n \"packagePath\": \"material/bottom-sheet/bottom-sheet-harness\",\n \"title\": \"Testing with MatBottomSheetHarness\",\n \"componentName\": \"BottomSheetHarnessExample\",\n \"files\": [\n \"bottom-sheet-harness-example.ts\",\n \"bottom-sheet-harness-example.html\",\n \"bottom-sheet-harness-example.spec.ts\"\n ],\n \"selector\": \"bottom-sheet-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"bottom-sheet-harness-example.ts\",\n \"importPath\": \"material/bottom-sheet\"\n },\n \"bottom-sheet-overview\": {\n \"packagePath\": \"material/bottom-sheet/bottom-sheet-overview\",\n \"title\": \"Bottom Sheet Overview\",\n \"componentName\": \"BottomSheetOverviewExample\",\n \"files\": [\n \"bottom-sheet-overview-example.ts\",\n \"bottom-sheet-overview-example.html\",\n \"bottom-sheet-overview-example-sheet.html\"\n ],\n \"selector\": \"bottom-sheet-overview-example\",\n \"additionalComponents\": [\n \"BottomSheetOverviewExampleSheet\"\n ],\n \"primaryFile\": \"bottom-sheet-overview-example.ts\",\n \"importPath\": \"material/bottom-sheet\"\n },\n \"button-toggle-appearance\": {\n \"packagePath\": \"material/button-toggle/button-toggle-appearance\",\n \"title\": \"Button toggle appearance\",\n \"componentName\": \"ButtonToggleAppearanceExample\",\n \"files\": [\n \"button-toggle-appearance-example.ts\",\n \"button-toggle-appearance-example.html\",\n \"button-toggle-appearance-example.css\"\n ],\n \"selector\": \"button-toggle-appearance-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-appearance-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-forms\": {\n \"packagePath\": \"material/button-toggle/button-toggle-forms\",\n \"title\": \"Button-toggles with forms\",\n \"componentName\": \"ButtonToggleFormsExample\",\n \"files\": [\n \"button-toggle-forms-example.ts\",\n \"button-toggle-forms-example.html\"\n ],\n \"selector\": \"button-toggle-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-forms-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-harness\": {\n \"packagePath\": \"material/button-toggle/button-toggle-harness\",\n \"title\": \"Testing with MatButtonToggleHarness\",\n \"componentName\": \"ButtonToggleHarnessExample\",\n \"files\": [\n \"button-toggle-harness-example.ts\",\n \"button-toggle-harness-example.html\",\n \"button-toggle-harness-example.spec.ts\"\n ],\n \"selector\": \"button-toggle-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-harness-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-mode\": {\n \"packagePath\": \"material/button-toggle/button-toggle-mode\",\n \"title\": \"Button toggle selection mode\",\n \"componentName\": \"ButtonToggleModeExample\",\n \"files\": [\n \"button-toggle-mode-example.ts\",\n \"button-toggle-mode-example.html\"\n ],\n \"selector\": \"button-toggle-mode-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-mode-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-toggle-overview\": {\n \"packagePath\": \"material/button-toggle/button-toggle-overview\",\n \"title\": \"Basic button-toggles\",\n \"componentName\": \"ButtonToggleOverviewExample\",\n \"files\": [\n \"button-toggle-overview-example.ts\",\n \"button-toggle-overview-example.html\"\n ],\n \"selector\": \"button-toggle-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-toggle-overview-example.ts\",\n \"importPath\": \"material/button-toggle\"\n },\n \"button-disabled-interactive\": {\n \"packagePath\": \"material/button/button-disabled-interactive\",\n \"title\": \"Interactive disabled buttons\",\n \"componentName\": \"ButtonDisabledInteractiveExample\",\n \"files\": [\n \"button-disabled-interactive-example.ts\",\n \"button-disabled-interactive-example.html\",\n \"button-disabled-interactive-example.css\"\n ],\n \"selector\": \"button-disabled-interactive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-disabled-interactive-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"button-harness\": {\n \"packagePath\": \"material/button/button-harness\",\n \"title\": \"Testing with MatButtonHarness\",\n \"componentName\": \"ButtonHarnessExample\",\n \"files\": [\n \"button-harness-example.ts\",\n \"button-harness-example.html\",\n \"button-harness-example.spec.ts\"\n ],\n \"selector\": \"button-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-harness-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"button-overview\": {\n \"packagePath\": \"material/button/button-overview\",\n \"title\": \"Button overview\",\n \"componentName\": \"ButtonOverviewExample\",\n \"files\": [\n \"button-overview-example.ts\",\n \"button-overview-example.html\",\n \"button-overview-example.css\"\n ],\n \"selector\": \"button-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"button-overview-example.ts\",\n \"importPath\": \"material/button\"\n },\n \"card-actions\": {\n \"packagePath\": \"material/card/card-actions\",\n \"title\": \"Card with actions alignment option\",\n \"componentName\": \"CardActionsExample\",\n \"files\": [\n \"card-actions-example.ts\",\n \"card-actions-example.html\"\n ],\n \"selector\": \"card-actions-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-actions-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-footer\": {\n \"packagePath\": \"material/card/card-footer\",\n \"title\": \"Card with footer\",\n \"componentName\": \"CardFooterExample\",\n \"files\": [\n \"card-footer-example.ts\",\n \"card-footer-example.html\",\n \"card-footer-example.css\"\n ],\n \"selector\": \"card-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-footer-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-harness\": {\n \"packagePath\": \"material/card/card-harness\",\n \"title\": \"Testing with MatCardHarness\",\n \"componentName\": \"CardHarnessExample\",\n \"files\": [\n \"card-harness-example.ts\",\n \"card-harness-example.html\",\n \"card-harness-example.spec.ts\"\n ],\n \"selector\": \"card-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-harness-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-media-size\": {\n \"packagePath\": \"material/card/card-media-size\",\n \"title\": \"Card with media size\",\n \"componentName\": \"CardMediaSizeExample\",\n \"files\": [\n \"card-media-size-example.ts\",\n \"card-media-size-example.html\",\n \"card-media-size-example.css\"\n ],\n \"selector\": \"card-media-size-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-media-size-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"card-overview\": {\n \"packagePath\": \"material/card/card-overview\",\n \"title\": \"Card overview\",\n \"componentName\": \"CardOverviewExample\",\n \"files\": [\n \"card-overview-example.ts\",\n \"card-overview-example.html\",\n \"card-overview-example.css\"\n ],\n \"selector\": \"card-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"card-overview-example.ts\",\n \"importPath\": \"material/card\"\n },\n \"checkbox-configurable\": {\n \"packagePath\": \"material/checkbox/checkbox-configurable\",\n \"title\": \"Configurable checkbox\",\n \"componentName\": \"CheckboxConfigurableExample\",\n \"files\": [\n \"checkbox-configurable-example.ts\",\n \"checkbox-configurable-example.html\",\n \"checkbox-configurable-example.css\"\n ],\n \"selector\": \"checkbox-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-configurable-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-harness\": {\n \"packagePath\": \"material/checkbox/checkbox-harness\",\n \"title\": \"Testing with MatCheckboxHarness\",\n \"componentName\": \"CheckboxHarnessExample\",\n \"files\": [\n \"checkbox-harness-example.ts\",\n \"checkbox-harness-example.html\",\n \"checkbox-harness-example.spec.ts\"\n ],\n \"selector\": \"checkbox-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-harness-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-overview\": {\n \"packagePath\": \"material/checkbox/checkbox-overview\",\n \"title\": \"Basic checkboxes\",\n \"componentName\": \"CheckboxOverviewExample\",\n \"files\": [\n \"checkbox-overview-example.ts\",\n \"checkbox-overview-example.html\",\n \"checkbox-overview-example.css\"\n ],\n \"selector\": \"checkbox-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-overview-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"checkbox-reactive-forms\": {\n \"packagePath\": \"material/checkbox/checkbox-reactive-forms\",\n \"title\": \"Checkboxes with reactive forms\",\n \"componentName\": \"CheckboxReactiveFormsExample\",\n \"files\": [\n \"checkbox-reactive-forms-example.ts\",\n \"checkbox-reactive-forms-example.html\",\n \"checkbox-reactive-forms-example.css\"\n ],\n \"selector\": \"checkbox-reactive-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"checkbox-reactive-forms-example.ts\",\n \"importPath\": \"material/checkbox\"\n },\n \"chips-autocomplete\": {\n \"packagePath\": \"material/chips/chips-autocomplete\",\n \"title\": \"Chips Autocomplete\",\n \"componentName\": \"ChipsAutocompleteExample\",\n \"files\": [\n \"chips-autocomplete-example.ts\",\n \"chips-autocomplete-example.html\",\n \"chips-autocomplete-example.css\"\n ],\n \"selector\": \"chips-autocomplete-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-autocomplete-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-avatar\": {\n \"packagePath\": \"material/chips/chips-avatar\",\n \"title\": \"Chips avatar\",\n \"componentName\": \"ChipsAvatarExample\",\n \"files\": [\n \"chips-avatar-example.ts\",\n \"chips-avatar-example.html\",\n \"chips-avatar-example.css\"\n ],\n \"selector\": \"chips-avatar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-avatar-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-drag-drop\": {\n \"packagePath\": \"material/chips/chips-drag-drop\",\n \"title\": \"Chips Drag and Drop\",\n \"componentName\": \"ChipsDragDropExample\",\n \"files\": [\n \"chips-drag-drop-example.ts\",\n \"chips-drag-drop-example.html\",\n \"chips-drag-drop-example.css\"\n ],\n \"selector\": \"chips-drag-drop-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-drag-drop-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-form-control\": {\n \"packagePath\": \"material/chips/chips-form-control\",\n \"title\": \"Chips with form control\",\n \"componentName\": \"ChipsFormControlExample\",\n \"files\": [\n \"chips-form-control-example.ts\",\n \"chips-form-control-example.html\",\n \"chips-form-control-example.css\"\n ],\n \"selector\": \"chips-form-control-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-form-control-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-harness\": {\n \"packagePath\": \"material/chips/chips-harness\",\n \"title\": \"Testing with MatChipsHarness\",\n \"componentName\": \"ChipsHarnessExample\",\n \"files\": [\n \"chips-harness-example.ts\",\n \"chips-harness-example.html\",\n \"chips-harness-example.spec.ts\"\n ],\n \"selector\": \"chips-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-harness-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-input\": {\n \"packagePath\": \"material/chips/chips-input\",\n \"title\": \"Chips with input\",\n \"componentName\": \"ChipsInputExample\",\n \"files\": [\n \"chips-input-example.ts\",\n \"chips-input-example.html\",\n \"chips-input-example.css\"\n ],\n \"selector\": \"chips-input-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-input-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-overview\": {\n \"packagePath\": \"material/chips/chips-overview\",\n \"title\": \"Basic chips\",\n \"componentName\": \"ChipsOverviewExample\",\n \"files\": [\n \"chips-overview-example.ts\",\n \"chips-overview-example.html\"\n ],\n \"selector\": \"chips-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-overview-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-reactive-form\": {\n \"packagePath\": \"material/chips/chips-reactive-form\",\n \"title\": \"Chips in reactive forms\",\n \"componentName\": \"ChipsReactiveFormExample\",\n \"files\": [\n \"chips-reactive-form-example.ts\",\n \"chips-reactive-form-example.html\",\n \"chips-reactive-form-example.css\"\n ],\n \"selector\": \"chips-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-reactive-form-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-stacked\": {\n \"packagePath\": \"material/chips/chips-stacked\",\n \"title\": \"Stacked chips\",\n \"componentName\": \"ChipsStackedExample\",\n \"files\": [\n \"chips-stacked-example.ts\",\n \"chips-stacked-example.html\",\n \"chips-stacked-example.css\"\n ],\n \"selector\": \"chips-stacked-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-stacked-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"chips-template-form\": {\n \"packagePath\": \"material/chips/chips-template-form\",\n \"title\": \"Chips in template-driven forms\",\n \"componentName\": \"ChipsTemplateFormExample\",\n \"files\": [\n \"chips-template-form-example.ts\",\n \"chips-template-form-example.html\",\n \"chips-template-form-example.css\"\n ],\n \"selector\": \"chips-template-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"chips-template-form-example.ts\",\n \"importPath\": \"material/chips\"\n },\n \"elevation-overview\": {\n \"packagePath\": \"material/core/elevation-overview\",\n \"title\": \"Elevation CSS classes\",\n \"componentName\": \"ElevationOverviewExample\",\n \"files\": [\n \"elevation-overview-example.ts\",\n \"elevation-overview-example.html\",\n \"elevation-overview-example.css\"\n ],\n \"selector\": \"elevation-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"elevation-overview-example.ts\",\n \"importPath\": \"material/core\"\n },\n \"ripple-overview\": {\n \"packagePath\": \"material/core/ripple-overview\",\n \"title\": \"MatRipple basic usage\",\n \"componentName\": \"RippleOverviewExample\",\n \"files\": [\n \"ripple-overview-example.ts\",\n \"ripple-overview-example.html\",\n \"ripple-overview-example.css\"\n ],\n \"selector\": \"ripple-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"ripple-overview-example.ts\",\n \"importPath\": \"material/core\"\n },\n \"date-range-picker-comparison\": {\n \"packagePath\": \"material/datepicker/date-range-picker-comparison\",\n \"title\": \"Date range picker comparison ranges\",\n \"componentName\": \"DateRangePickerComparisonExample\",\n \"files\": [\n \"date-range-picker-comparison-example.ts\",\n \"date-range-picker-comparison-example.html\",\n \"date-range-picker-comparison-example.css\"\n ],\n \"selector\": \"date-range-picker-comparison-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-comparison-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-forms\": {\n \"packagePath\": \"material/datepicker/date-range-picker-forms\",\n \"title\": \"Date range picker forms integration\",\n \"componentName\": \"DateRangePickerFormsExample\",\n \"files\": [\n \"date-range-picker-forms-example.ts\",\n \"date-range-picker-forms-example.html\"\n ],\n \"selector\": \"date-range-picker-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-forms-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-overview\": {\n \"packagePath\": \"material/datepicker/date-range-picker-overview\",\n \"title\": \"Basic date range picker\",\n \"componentName\": \"DateRangePickerOverviewExample\",\n \"files\": [\n \"date-range-picker-overview-example.ts\",\n \"date-range-picker-overview-example.html\"\n ],\n \"selector\": \"date-range-picker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-overview-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"date-range-picker-selection-strategy\": {\n \"packagePath\": \"material/datepicker/date-range-picker-selection-strategy\",\n \"title\": \"Date range picker with a custom selection strategy\",\n \"componentName\": \"DateRangePickerSelectionStrategyExample\",\n \"files\": [\n \"date-range-picker-selection-strategy-example.ts\",\n \"date-range-picker-selection-strategy-example.html\"\n ],\n \"selector\": \"date-range-picker-selection-strategy-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"date-range-picker-selection-strategy-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-actions\": {\n \"packagePath\": \"material/datepicker/datepicker-actions\",\n \"title\": \"Datepicker action buttons\",\n \"componentName\": \"DatepickerActionsExample\",\n \"files\": [\n \"datepicker-actions-example.ts\",\n \"datepicker-actions-example.html\",\n \"datepicker-actions-example.css\"\n ],\n \"selector\": \"datepicker-actions-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-actions-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-api\": {\n \"packagePath\": \"material/datepicker/datepicker-api\",\n \"title\": \"Datepicker open method\",\n \"componentName\": \"DatepickerApiExample\",\n \"files\": [\n \"datepicker-api-example.ts\",\n \"datepicker-api-example.html\",\n \"datepicker-api-example.css\"\n ],\n \"selector\": \"datepicker-api-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-api-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-custom-header\": {\n \"packagePath\": \"material/datepicker/datepicker-custom-header\",\n \"title\": \"Datepicker with custom calendar header\",\n \"componentName\": \"DatepickerCustomHeaderExample\",\n \"files\": [\n \"datepicker-custom-header-example.ts\",\n \"datepicker-custom-header-example.html\"\n ],\n \"selector\": \"datepicker-custom-header-example\",\n \"additionalComponents\": [\n \"ExampleHeader\"\n ],\n \"primaryFile\": \"datepicker-custom-header-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-custom-icon\": {\n \"packagePath\": \"material/datepicker/datepicker-custom-icon\",\n \"title\": \"Datepicker with custom icon\",\n \"componentName\": \"DatepickerCustomIconExample\",\n \"files\": [\n \"datepicker-custom-icon-example.ts\",\n \"datepicker-custom-icon-example.html\"\n ],\n \"selector\": \"datepicker-custom-icon-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-custom-icon-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-date-class\": {\n \"packagePath\": \"material/datepicker/datepicker-date-class\",\n \"title\": \"Datepicker with custom date classes\",\n \"componentName\": \"DatepickerDateClassExample\",\n \"files\": [\n \"datepicker-date-class-example.ts\",\n \"datepicker-date-class-example.html\",\n \"datepicker-date-class-example.css\"\n ],\n \"selector\": \"datepicker-date-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-date-class-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-dialog\": {\n \"packagePath\": \"material/datepicker/datepicker-dialog\",\n \"title\": \"Datepicker inside a MatDialog\",\n \"componentName\": \"DatepickerDialogExample\",\n \"files\": [\n \"datepicker-dialog-example.ts\",\n \"datepicker-dialog-example.html\",\n \"datepicker-dialog-example-dialog.html\"\n ],\n \"selector\": \"datepicker-dialog-example\",\n \"additionalComponents\": [\n \"DatepickerDialogExampleDialog\"\n ],\n \"primaryFile\": \"datepicker-dialog-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-disabled\": {\n \"packagePath\": \"material/datepicker/datepicker-disabled\",\n \"title\": \"Disabled datepicker\",\n \"componentName\": \"DatepickerDisabledExample\",\n \"files\": [\n \"datepicker-disabled-example.ts\",\n \"datepicker-disabled-example.html\"\n ],\n \"selector\": \"datepicker-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-disabled-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-events\": {\n \"packagePath\": \"material/datepicker/datepicker-events\",\n \"title\": \"Datepicker input and change events\",\n \"componentName\": \"DatepickerEventsExample\",\n \"files\": [\n \"datepicker-events-example.ts\",\n \"datepicker-events-example.html\",\n \"datepicker-events-example.css\"\n ],\n \"selector\": \"datepicker-events-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-events-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-filter\": {\n \"packagePath\": \"material/datepicker/datepicker-filter\",\n \"title\": \"Datepicker with filter validation\",\n \"componentName\": \"DatepickerFilterExample\",\n \"files\": [\n \"datepicker-filter-example.ts\",\n \"datepicker-filter-example.html\"\n ],\n \"selector\": \"datepicker-filter-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-filter-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-formats\": {\n \"packagePath\": \"material/datepicker/datepicker-formats\",\n \"title\": \"Datepicker with custom formats\",\n \"componentName\": \"DatepickerFormatsExample\",\n \"files\": [\n \"datepicker-formats-example.ts\",\n \"datepicker-formats-example.html\"\n ],\n \"selector\": \"datepicker-formats-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-formats-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-harness\": {\n \"packagePath\": \"material/datepicker/datepicker-harness\",\n \"title\": \"Testing with MatDatepickerInputHarness\",\n \"componentName\": \"DatepickerHarnessExample\",\n \"files\": [\n \"datepicker-harness-example.ts\",\n \"datepicker-harness-example.html\",\n \"datepicker-harness-example.spec.ts\"\n ],\n \"selector\": \"datepicker-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-harness-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-inline-calendar\": {\n \"packagePath\": \"material/datepicker/datepicker-inline-calendar\",\n \"title\": \"Datepicker inline calendar example\",\n \"componentName\": \"DatepickerInlineCalendarExample\",\n \"files\": [\n \"datepicker-inline-calendar-example.ts\",\n \"datepicker-inline-calendar-example.html\",\n \"datepicker-inline-calendar-example.css\"\n ],\n \"selector\": \"datepicker-inline-calendar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-inline-calendar-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-locale\": {\n \"packagePath\": \"material/datepicker/datepicker-locale\",\n \"title\": \"Datepicker with different locale\",\n \"componentName\": \"DatepickerLocaleExample\",\n \"files\": [\n \"datepicker-locale-example.ts\",\n \"datepicker-locale-example.html\",\n \"datepicker-locale-example.css\"\n ],\n \"selector\": \"datepicker-locale-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-locale-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-min-max\": {\n \"packagePath\": \"material/datepicker/datepicker-min-max\",\n \"title\": \"Datepicker with min & max validation\",\n \"componentName\": \"DatepickerMinMaxExample\",\n \"files\": [\n \"datepicker-min-max-example.ts\",\n \"datepicker-min-max-example.html\"\n ],\n \"selector\": \"datepicker-min-max-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-min-max-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-moment\": {\n \"packagePath\": \"material/datepicker/datepicker-moment\",\n \"title\": \"Datepicker that uses Moment.js dates\",\n \"componentName\": \"DatepickerMomentExample\",\n \"files\": [\n \"datepicker-moment-example.ts\",\n \"datepicker-moment-example.html\"\n ],\n \"selector\": \"datepicker-moment-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-moment-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-overview\": {\n \"packagePath\": \"material/datepicker/datepicker-overview\",\n \"title\": \"Basic datepicker\",\n \"componentName\": \"DatepickerOverviewExample\",\n \"files\": [\n \"datepicker-overview-example.ts\",\n \"datepicker-overview-example.html\"\n ],\n \"selector\": \"datepicker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-overview-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-start-view\": {\n \"packagePath\": \"material/datepicker/datepicker-start-view\",\n \"title\": \"Datepicker start date\",\n \"componentName\": \"DatepickerStartViewExample\",\n \"files\": [\n \"datepicker-start-view-example.ts\",\n \"datepicker-start-view-example.html\"\n ],\n \"selector\": \"datepicker-start-view-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-start-view-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-touch\": {\n \"packagePath\": \"material/datepicker/datepicker-touch\",\n \"title\": \"Datepicker touch UI\",\n \"componentName\": \"DatepickerTouchExample\",\n \"files\": [\n \"datepicker-touch-example.ts\",\n \"datepicker-touch-example.html\"\n ],\n \"selector\": \"datepicker-touch-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-touch-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-value\": {\n \"packagePath\": \"material/datepicker/datepicker-value\",\n \"title\": \"Datepicker selected value\",\n \"componentName\": \"DatepickerValueExample\",\n \"files\": [\n \"datepicker-value-example.ts\",\n \"datepicker-value-example.html\",\n \"datepicker-value-example.css\"\n ],\n \"selector\": \"datepicker-value-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-value-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"datepicker-views-selection\": {\n \"packagePath\": \"material/datepicker/datepicker-views-selection\",\n \"title\": \"Datepicker emulating a Year and month picker\",\n \"componentName\": \"DatepickerViewsSelectionExample\",\n \"files\": [\n \"datepicker-views-selection-example.ts\",\n \"datepicker-views-selection-example.html\",\n \"datepicker-views-selection-example.css\"\n ],\n \"selector\": \"datepicker-views-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"datepicker-views-selection-example.ts\",\n \"importPath\": \"material/datepicker\"\n },\n \"dialog-animations\": {\n \"packagePath\": \"material/dialog/dialog-animations\",\n \"title\": \"Dialog Animations\",\n \"componentName\": \"DialogAnimationsExample\",\n \"files\": [\n \"dialog-animations-example.ts\",\n \"dialog-animations-example.html\",\n \"dialog-animations-example.css\",\n \"dialog-animations-example-dialog.html\"\n ],\n \"selector\": \"dialog-animations-example\",\n \"additionalComponents\": [\n \"DialogAnimationsExampleDialog\"\n ],\n \"primaryFile\": \"dialog-animations-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-content\": {\n \"packagePath\": \"material/dialog/dialog-content\",\n \"title\": \"Dialog with header, scrollable content and actions\",\n \"componentName\": \"DialogContentExample\",\n \"files\": [\n \"dialog-content-example.ts\",\n \"dialog-content-example.html\",\n \"dialog-content-example-dialog.html\"\n ],\n \"selector\": \"dialog-content-example\",\n \"additionalComponents\": [\n \"DialogContentExampleDialog\"\n ],\n \"primaryFile\": \"dialog-content-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-data\": {\n \"packagePath\": \"material/dialog/dialog-data\",\n \"title\": \"Injecting data when opening a dialog\",\n \"componentName\": \"DialogDataExample\",\n \"files\": [\n \"dialog-data-example.ts\",\n \"dialog-data-example.html\",\n \"dialog-data-example-dialog.html\"\n ],\n \"selector\": \"dialog-data-example\",\n \"additionalComponents\": [\n \"DialogDataExampleDialog\"\n ],\n \"primaryFile\": \"dialog-data-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-elements\": {\n \"packagePath\": \"material/dialog/dialog-elements\",\n \"title\": \"Dialog elements\",\n \"componentName\": \"DialogElementsExample\",\n \"files\": [\n \"dialog-elements-example.ts\",\n \"dialog-elements-example.html\",\n \"dialog-elements-example-dialog.html\"\n ],\n \"selector\": \"dialog-elements-example\",\n \"additionalComponents\": [\n \"DialogElementsExampleDialog\"\n ],\n \"primaryFile\": \"dialog-elements-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-from-menu\": {\n \"packagePath\": \"material/dialog/dialog-from-menu\",\n \"title\": \"Dialog launched from a menu\",\n \"componentName\": \"DialogFromMenuExample\",\n \"files\": [\n \"dialog-from-menu-example.ts\",\n \"dialog-from-menu-example.html\",\n \"dialog-from-menu-example-dialog.html\"\n ],\n \"selector\": \"dialog-from-menu-example\",\n \"additionalComponents\": [\n \"DialogFromMenuExampleDialog\"\n ],\n \"primaryFile\": \"dialog-from-menu-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-harness\": {\n \"packagePath\": \"material/dialog/dialog-harness\",\n \"title\": \"Testing with MatDialogHarness\",\n \"componentName\": \"DialogHarnessExample\",\n \"files\": [\n \"dialog-harness-example.ts\",\n \"dialog-harness-example.html\",\n \"dialog-harness-example.spec.ts\"\n ],\n \"selector\": \"dialog-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"dialog-harness-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"dialog-overview\": {\n \"packagePath\": \"material/dialog/dialog-overview\",\n \"title\": \"Dialog Overview\",\n \"componentName\": \"DialogOverviewExample\",\n \"files\": [\n \"dialog-overview-example.ts\",\n \"dialog-overview-example.html\",\n \"dialog-overview-example-dialog.html\"\n ],\n \"selector\": \"dialog-overview-example\",\n \"additionalComponents\": [\n \"DialogOverviewExampleDialog\"\n ],\n \"primaryFile\": \"dialog-overview-example.ts\",\n \"importPath\": \"material/dialog\"\n },\n \"divider-harness\": {\n \"packagePath\": \"material/divider/divider-harness\",\n \"title\": \"Testing with MatDividerHarness\",\n \"componentName\": \"DividerHarnessExample\",\n \"files\": [\n \"divider-harness-example.ts\",\n \"divider-harness-example.html\",\n \"divider-harness-example.spec.ts\"\n ],\n \"selector\": \"divider-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"divider-harness-example.ts\",\n \"importPath\": \"material/divider\"\n },\n \"divider-overview\": {\n \"packagePath\": \"material/divider/divider-overview\",\n \"title\": \"Basic divider\",\n \"componentName\": \"DividerOverviewExample\",\n \"files\": [\n \"divider-overview-example.ts\",\n \"divider-overview-example.html\"\n ],\n \"selector\": \"divider-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"divider-overview-example.ts\",\n \"importPath\": \"material/divider\"\n },\n \"expansion-expand-collapse-all\": {\n \"packagePath\": \"material/expansion/expansion-expand-collapse-all\",\n \"title\": \"Accordion with expand/collapse all toggles\",\n \"componentName\": \"ExpansionExpandCollapseAllExample\",\n \"files\": [\n \"expansion-expand-collapse-all-example.ts\",\n \"expansion-expand-collapse-all-example.html\",\n \"expansion-expand-collapse-all-example.css\"\n ],\n \"selector\": \"expansion-expand-collapse-all-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-expand-collapse-all-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-harness\": {\n \"packagePath\": \"material/expansion/expansion-harness\",\n \"title\": \"Testing with MatExpansionPanelHarness and MatAccordionHarness\",\n \"componentName\": \"ExpansionHarnessExample\",\n \"files\": [\n \"expansion-harness-example.ts\",\n \"expansion-harness-example.html\",\n \"expansion-harness-example.spec.ts\"\n ],\n \"selector\": \"expansion-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-harness-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-overview\": {\n \"packagePath\": \"material/expansion/expansion-overview\",\n \"title\": \"Basic expansion panel\",\n \"componentName\": \"ExpansionOverviewExample\",\n \"files\": [\n \"expansion-overview-example.ts\",\n \"expansion-overview-example.html\"\n ],\n \"selector\": \"expansion-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-overview-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"expansion-steps\": {\n \"packagePath\": \"material/expansion/expansion-steps\",\n \"title\": \"Expansion panel as accordion\",\n \"componentName\": \"ExpansionStepsExample\",\n \"files\": [\n \"expansion-steps-example.ts\",\n \"expansion-steps-example.html\",\n \"expansion-steps-example.css\"\n ],\n \"selector\": \"expansion-steps-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"expansion-steps-example.ts\",\n \"importPath\": \"material/expansion\"\n },\n \"form-field-appearance\": {\n \"packagePath\": \"material/form-field/form-field-appearance\",\n \"title\": \"Form field appearance variants\",\n \"componentName\": \"FormFieldAppearanceExample\",\n \"files\": [\n \"form-field-appearance-example.ts\",\n \"form-field-appearance-example.html\"\n ],\n \"selector\": \"form-field-appearance-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-appearance-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-custom-control\": {\n \"packagePath\": \"material/form-field/form-field-custom-control\",\n \"title\": \"Form field with custom telephone number input control.\",\n \"componentName\": \"FormFieldCustomControlExample\",\n \"files\": [\n \"form-field-custom-control-example.ts\",\n \"form-field-custom-control-example.html\",\n \"example-tel-input-example.html\",\n \"example-tel-input-example.css\"\n ],\n \"selector\": \"form-field-custom-control-example\",\n \"additionalComponents\": [\n \"MyTelInput\"\n ],\n \"primaryFile\": \"form-field-custom-control-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-error\": {\n \"packagePath\": \"material/form-field/form-field-error\",\n \"title\": \"Form field with error messages\",\n \"componentName\": \"FormFieldErrorExample\",\n \"files\": [\n \"form-field-error-example.ts\",\n \"form-field-error-example.html\",\n \"form-field-error-example.css\"\n ],\n \"selector\": \"form-field-error-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-error-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-harness\": {\n \"packagePath\": \"material/form-field/form-field-harness\",\n \"title\": \"Testing with MatFormFieldHarness\",\n \"componentName\": \"FormFieldHarnessExample\",\n \"files\": [\n \"form-field-harness-example.ts\",\n \"form-field-harness-example.html\",\n \"form-field-harness-example.spec.ts\"\n ],\n \"selector\": \"form-field-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-harness-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-hint\": {\n \"packagePath\": \"material/form-field/form-field-hint\",\n \"title\": \"Form field with hints\",\n \"componentName\": \"FormFieldHintExample\",\n \"files\": [\n \"form-field-hint-example.ts\",\n \"form-field-hint-example.html\",\n \"form-field-hint-example.css\"\n ],\n \"selector\": \"form-field-hint-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-hint-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-label\": {\n \"packagePath\": \"material/form-field/form-field-label\",\n \"title\": \"Form field with label\",\n \"componentName\": \"FormFieldLabelExample\",\n \"files\": [\n \"form-field-label-example.ts\",\n \"form-field-label-example.html\",\n \"form-field-label-example.css\"\n ],\n \"selector\": \"form-field-label-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-label-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-overview\": {\n \"packagePath\": \"material/form-field/form-field-overview\",\n \"title\": \"Simple form field\",\n \"componentName\": \"FormFieldOverviewExample\",\n \"files\": [\n \"form-field-overview-example.ts\",\n \"form-field-overview-example.html\",\n \"form-field-overview-example.css\"\n ],\n \"selector\": \"form-field-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-overview-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"form-field-prefix-suffix\": {\n \"packagePath\": \"material/form-field/form-field-prefix-suffix\",\n \"title\": \"Form field with prefix & suffix\",\n \"componentName\": \"FormFieldPrefixSuffixExample\",\n \"files\": [\n \"form-field-prefix-suffix-example.ts\",\n \"form-field-prefix-suffix-example.html\",\n \"form-field-prefix-suffix-example.css\"\n ],\n \"selector\": \"form-field-prefix-suffix-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"form-field-prefix-suffix-example.ts\",\n \"importPath\": \"material/form-field\"\n },\n \"grid-list-dynamic\": {\n \"packagePath\": \"material/grid-list/grid-list-dynamic\",\n \"title\": \"Dynamic grid-list\",\n \"componentName\": \"GridListDynamicExample\",\n \"files\": [\n \"grid-list-dynamic-example.ts\",\n \"grid-list-dynamic-example.html\"\n ],\n \"selector\": \"grid-list-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-dynamic-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"grid-list-harness\": {\n \"packagePath\": \"material/grid-list/grid-list-harness\",\n \"title\": \"Testing with MatGridListHarness\",\n \"componentName\": \"GridListHarnessExample\",\n \"files\": [\n \"grid-list-harness-example.ts\",\n \"grid-list-harness-example.html\",\n \"grid-list-harness-example.spec.ts\"\n ],\n \"selector\": \"grid-list-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-harness-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"grid-list-overview\": {\n \"packagePath\": \"material/grid-list/grid-list-overview\",\n \"title\": \"Basic grid-list\",\n \"componentName\": \"GridListOverviewExample\",\n \"files\": [\n \"grid-list-overview-example.ts\",\n \"grid-list-overview-example.html\",\n \"grid-list-overview-example.css\"\n ],\n \"selector\": \"grid-list-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"grid-list-overview-example.ts\",\n \"importPath\": \"material/grid-list\"\n },\n \"icon-harness\": {\n \"packagePath\": \"material/icon/icon-harness\",\n \"title\": \"Testing with MatIconHarness\",\n \"componentName\": \"IconHarnessExample\",\n \"files\": [\n \"icon-harness-example.ts\",\n \"icon-harness-example.html\",\n \"icon-harness-example.spec.ts\"\n ],\n \"selector\": \"icon-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-harness-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"icon-overview\": {\n \"packagePath\": \"material/icon/icon-overview\",\n \"title\": \"Basic icons\",\n \"componentName\": \"IconOverviewExample\",\n \"files\": [\n \"icon-overview-example.ts\",\n \"icon-overview-example.html\"\n ],\n \"selector\": \"icon-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-overview-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"icon-svg\": {\n \"packagePath\": \"material/icon/icon-svg\",\n \"title\": \"SVG icons\",\n \"componentName\": \"IconSvgExample\",\n \"files\": [\n \"icon-svg-example.ts\",\n \"icon-svg-example.html\"\n ],\n \"selector\": \"icon-svg-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"icon-svg-example.ts\",\n \"importPath\": \"material/icon\"\n },\n \"input-clearable\": {\n \"packagePath\": \"material/input/input-clearable\",\n \"title\": \"Input with a clear button\",\n \"componentName\": \"InputClearableExample\",\n \"files\": [\n \"input-clearable-example.ts\",\n \"./input-clearable-example.html\",\n \"./input-clearable-example.css\"\n ],\n \"selector\": \"input-clearable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-clearable-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-error-state-matcher\": {\n \"packagePath\": \"material/input/input-error-state-matcher\",\n \"title\": \"Input with a custom ErrorStateMatcher\",\n \"componentName\": \"InputErrorStateMatcherExample\",\n \"files\": [\n \"input-error-state-matcher-example.ts\",\n \"./input-error-state-matcher-example.html\",\n \"./input-error-state-matcher-example.css\"\n ],\n \"selector\": \"input-error-state-matcher-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-error-state-matcher-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-errors\": {\n \"packagePath\": \"material/input/input-errors\",\n \"title\": \"Input with error messages\",\n \"componentName\": \"InputErrorsExample\",\n \"files\": [\n \"input-errors-example.ts\",\n \"input-errors-example.html\",\n \"input-errors-example.css\"\n ],\n \"selector\": \"input-errors-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-errors-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-form\": {\n \"packagePath\": \"material/input/input-form\",\n \"title\": \"Inputs in a form\",\n \"componentName\": \"InputFormExample\",\n \"files\": [\n \"input-form-example.ts\",\n \"input-form-example.html\",\n \"input-form-example.css\"\n ],\n \"selector\": \"input-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-form-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-harness\": {\n \"packagePath\": \"material/input/input-harness\",\n \"title\": \"Testing with MatInputHarness\",\n \"componentName\": \"InputHarnessExample\",\n \"files\": [\n \"input-harness-example.ts\",\n \"input-harness-example.html\",\n \"input-harness-example.spec.ts\"\n ],\n \"selector\": \"input-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-harness-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-hint\": {\n \"packagePath\": \"material/input/input-hint\",\n \"title\": \"Input with hints\",\n \"componentName\": \"InputHintExample\",\n \"files\": [\n \"input-hint-example.ts\",\n \"input-hint-example.html\",\n \"input-hint-example.css\"\n ],\n \"selector\": \"input-hint-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-hint-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-overview\": {\n \"packagePath\": \"material/input/input-overview\",\n \"title\": \"Basic Inputs\",\n \"componentName\": \"InputOverviewExample\",\n \"files\": [\n \"input-overview-example.ts\",\n \"input-overview-example.html\",\n \"input-overview-example.css\"\n ],\n \"selector\": \"input-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-overview-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"input-prefix-suffix\": {\n \"packagePath\": \"material/input/input-prefix-suffix\",\n \"title\": \"Inputs with prefixes and suffixes\",\n \"componentName\": \"InputPrefixSuffixExample\",\n \"files\": [\n \"input-prefix-suffix-example.ts\",\n \"input-prefix-suffix-example.html\",\n \"input-prefix-suffix-example.css\"\n ],\n \"selector\": \"input-prefix-suffix-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"input-prefix-suffix-example.ts\",\n \"importPath\": \"material/input\"\n },\n \"list-harness\": {\n \"packagePath\": \"material/list/list-harness\",\n \"title\": \"Testing with MatListHarness\",\n \"componentName\": \"ListHarnessExample\",\n \"files\": [\n \"list-harness-example.ts\",\n \"list-harness-example.html\",\n \"list-harness-example.spec.ts\"\n ],\n \"selector\": \"list-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-harness-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-overview\": {\n \"packagePath\": \"material/list/list-overview\",\n \"title\": \"Basic list\",\n \"componentName\": \"ListOverviewExample\",\n \"files\": [\n \"list-overview-example.ts\",\n \"list-overview-example.html\"\n ],\n \"selector\": \"list-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-overview-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-sections\": {\n \"packagePath\": \"material/list/list-sections\",\n \"title\": \"List with sections\",\n \"componentName\": \"ListSectionsExample\",\n \"files\": [\n \"list-sections-example.ts\",\n \"list-sections-example.html\",\n \"list-sections-example.css\"\n ],\n \"selector\": \"list-sections-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-sections-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-selection\": {\n \"packagePath\": \"material/list/list-selection\",\n \"title\": \"List with selection\",\n \"componentName\": \"ListSelectionExample\",\n \"files\": [\n \"list-selection-example.ts\",\n \"list-selection-example.html\"\n ],\n \"selector\": \"list-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-selection-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-single-selection-reactive-form\": {\n \"packagePath\": \"material/list/list-single-selection-reactive-form\",\n \"title\": \"List with single selection using Reactive forms\",\n \"componentName\": \"ListSingleSelectionReactiveFormExample\",\n \"files\": [\n \"list-single-selection-reactive-form-example.ts\",\n \"list-single-selection-form-example.html\"\n ],\n \"selector\": \"list-single-selection-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-single-selection-reactive-form-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-single-selection\": {\n \"packagePath\": \"material/list/list-single-selection\",\n \"title\": \"List with single selection using Reactive Forms\",\n \"componentName\": \"ListSingleSelectionExample\",\n \"files\": [\n \"list-single-selection-example.ts\",\n \"list-single-selection-example.html\"\n ],\n \"selector\": \"list-single-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-single-selection-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"list-variants\": {\n \"packagePath\": \"material/list/list-variants\",\n \"title\": \"List variants\",\n \"componentName\": \"ListVariantsExample\",\n \"files\": [\n \"list-variants-example.ts\",\n \"list-variants-example.html\",\n \"./list-variants-example.css\"\n ],\n \"selector\": \"list-variants-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"list-variants-example.ts\",\n \"importPath\": \"material/list\"\n },\n \"menu-harness\": {\n \"packagePath\": \"material/menu/menu-harness\",\n \"title\": \"Testing with MatMenuHarness\",\n \"componentName\": \"MenuHarnessExample\",\n \"files\": [\n \"menu-harness-example.ts\",\n \"menu-harness-example.html\",\n \"menu-harness-example.spec.ts\"\n ],\n \"selector\": \"menu-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-harness-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-icons\": {\n \"packagePath\": \"material/menu/menu-icons\",\n \"title\": \"Menu with icons\",\n \"componentName\": \"MenuIconsExample\",\n \"files\": [\n \"menu-icons-example.ts\",\n \"menu-icons-example.html\"\n ],\n \"selector\": \"menu-icons-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-icons-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-nested\": {\n \"packagePath\": \"material/menu/menu-nested\",\n \"title\": \"Nested menu\",\n \"componentName\": \"MenuNestedExample\",\n \"files\": [\n \"menu-nested-example.ts\",\n \"menu-nested-example.html\"\n ],\n \"selector\": \"menu-nested-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-nested-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-overview\": {\n \"packagePath\": \"material/menu/menu-overview\",\n \"title\": \"Basic menu\",\n \"componentName\": \"MenuOverviewExample\",\n \"files\": [\n \"menu-overview-example.ts\",\n \"menu-overview-example.html\"\n ],\n \"selector\": \"menu-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-overview-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"menu-position\": {\n \"packagePath\": \"material/menu/menu-position\",\n \"title\": \"Menu positioning\",\n \"componentName\": \"MenuPositionExample\",\n \"files\": [\n \"menu-position-example.ts\",\n \"menu-position-example.html\"\n ],\n \"selector\": \"menu-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"menu-position-example.ts\",\n \"importPath\": \"material/menu\"\n },\n \"paginator-configurable\": {\n \"packagePath\": \"material/paginator/paginator-configurable\",\n \"title\": \"Configurable paginator\",\n \"componentName\": \"PaginatorConfigurableExample\",\n \"files\": [\n \"paginator-configurable-example.ts\",\n \"paginator-configurable-example.html\",\n \"paginator-configurable-example.css\"\n ],\n \"selector\": \"paginator-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-configurable-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-harness\": {\n \"packagePath\": \"material/paginator/paginator-harness\",\n \"title\": \"Testing with MatPaginatorHarness\",\n \"componentName\": \"PaginatorHarnessExample\",\n \"files\": [\n \"paginator-harness-example.ts\",\n \"paginator-harness-example.html\",\n \"paginator-harness-example.spec.ts\"\n ],\n \"selector\": \"paginator-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-harness-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-intl\": {\n \"packagePath\": \"material/paginator/paginator-intl\",\n \"title\": \"Paginator internationalization\",\n \"componentName\": \"PaginatorIntlExample\",\n \"files\": [\n \"paginator-intl-example.ts\",\n \"paginator-intl-example.html\"\n ],\n \"selector\": \"paginator-intl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-intl-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"paginator-overview\": {\n \"packagePath\": \"material/paginator/paginator-overview\",\n \"title\": \"Paginator\",\n \"componentName\": \"PaginatorOverviewExample\",\n \"files\": [\n \"paginator-overview-example.ts\",\n \"paginator-overview-example.html\"\n ],\n \"selector\": \"paginator-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"paginator-overview-example.ts\",\n \"importPath\": \"material/paginator\"\n },\n \"progress-bar-buffer\": {\n \"packagePath\": \"material/progress-bar/progress-bar-buffer\",\n \"title\": \"Buffer progress-bar\",\n \"componentName\": \"ProgressBarBufferExample\",\n \"files\": [\n \"progress-bar-buffer-example.ts\",\n \"progress-bar-buffer-example.html\"\n ],\n \"selector\": \"progress-bar-buffer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-buffer-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-configurable\": {\n \"packagePath\": \"material/progress-bar/progress-bar-configurable\",\n \"title\": \"Configurable progress-bar\",\n \"componentName\": \"ProgressBarConfigurableExample\",\n \"files\": [\n \"progress-bar-configurable-example.ts\",\n \"progress-bar-configurable-example.html\",\n \"progress-bar-configurable-example.css\"\n ],\n \"selector\": \"progress-bar-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-configurable-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-determinate\": {\n \"packagePath\": \"material/progress-bar/progress-bar-determinate\",\n \"title\": \"Determinate progress-bar\",\n \"componentName\": \"ProgressBarDeterminateExample\",\n \"files\": [\n \"progress-bar-determinate-example.ts\",\n \"progress-bar-determinate-example.html\"\n ],\n \"selector\": \"progress-bar-determinate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-determinate-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-harness\": {\n \"packagePath\": \"material/progress-bar/progress-bar-harness\",\n \"title\": \"Testing with MatProgressBarHarness\",\n \"componentName\": \"ProgressBarHarnessExample\",\n \"files\": [\n \"progress-bar-harness-example.ts\",\n \"progress-bar-harness-example.html\",\n \"progress-bar-harness-example.spec.ts\"\n ],\n \"selector\": \"progress-bar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-harness-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-indeterminate\": {\n \"packagePath\": \"material/progress-bar/progress-bar-indeterminate\",\n \"title\": \"Indeterminate progress-bar\",\n \"componentName\": \"ProgressBarIndeterminateExample\",\n \"files\": [\n \"progress-bar-indeterminate-example.ts\",\n \"progress-bar-indeterminate-example.html\"\n ],\n \"selector\": \"progress-bar-indeterminate-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-indeterminate-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-bar-query\": {\n \"packagePath\": \"material/progress-bar/progress-bar-query\",\n \"title\": \"Query progress-bar\",\n \"componentName\": \"ProgressBarQueryExample\",\n \"files\": [\n \"progress-bar-query-example.ts\",\n \"progress-bar-query-example.html\"\n ],\n \"selector\": \"progress-bar-query-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-bar-query-example.ts\",\n \"importPath\": \"material/progress-bar\"\n },\n \"progress-spinner-configurable\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-configurable\",\n \"title\": \"Configurable progress spinner\",\n \"componentName\": \"ProgressSpinnerConfigurableExample\",\n \"files\": [\n \"progress-spinner-configurable-example.ts\",\n \"progress-spinner-configurable-example.html\",\n \"progress-spinner-configurable-example.css\"\n ],\n \"selector\": \"progress-spinner-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-configurable-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"progress-spinner-harness\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-harness\",\n \"title\": \"Testing with MatProgressSpinnerHarness\",\n \"componentName\": \"ProgressSpinnerHarnessExample\",\n \"files\": [\n \"progress-spinner-harness-example.ts\",\n \"progress-spinner-harness-example.html\",\n \"progress-spinner-harness-example.spec.ts\"\n ],\n \"selector\": \"progress-spinner-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-harness-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"progress-spinner-overview\": {\n \"packagePath\": \"material/progress-spinner/progress-spinner-overview\",\n \"title\": \"Basic progress-spinner\",\n \"componentName\": \"ProgressSpinnerOverviewExample\",\n \"files\": [\n \"progress-spinner-overview-example.ts\",\n \"progress-spinner-overview-example.html\"\n ],\n \"selector\": \"progress-spinner-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"progress-spinner-overview-example.ts\",\n \"importPath\": \"material/progress-spinner\"\n },\n \"radio-harness\": {\n \"packagePath\": \"material/radio/radio-harness\",\n \"title\": \"Testing with MatRadioHarness\",\n \"componentName\": \"RadioHarnessExample\",\n \"files\": [\n \"radio-harness-example.ts\",\n \"radio-harness-example.html\",\n \"radio-harness-example.spec.ts\"\n ],\n \"selector\": \"radio-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-harness-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"radio-ng-model\": {\n \"packagePath\": \"material/radio/radio-ng-model\",\n \"title\": \"Radios with ngModel\",\n \"componentName\": \"RadioNgModelExample\",\n \"files\": [\n \"radio-ng-model-example.ts\",\n \"radio-ng-model-example.html\",\n \"radio-ng-model-example.css\"\n ],\n \"selector\": \"radio-ng-model-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-ng-model-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"radio-overview\": {\n \"packagePath\": \"material/radio/radio-overview\",\n \"title\": \"Basic radios\",\n \"componentName\": \"RadioOverviewExample\",\n \"files\": [\n \"radio-overview-example.ts\",\n \"radio-overview-example.html\",\n \"radio-overview-example.css\"\n ],\n \"selector\": \"radio-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"radio-overview-example.ts\",\n \"importPath\": \"material/radio\"\n },\n \"select-custom-trigger\": {\n \"packagePath\": \"material/select/select-custom-trigger\",\n \"title\": \"Select with custom trigger text\",\n \"componentName\": \"SelectCustomTriggerExample\",\n \"files\": [\n \"select-custom-trigger-example.ts\",\n \"select-custom-trigger-example.html\",\n \"select-custom-trigger-example.css\"\n ],\n \"selector\": \"select-custom-trigger-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-custom-trigger-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-disabled\": {\n \"packagePath\": \"material/select/select-disabled\",\n \"title\": \"Disabled select\",\n \"componentName\": \"SelectDisabledExample\",\n \"files\": [\n \"select-disabled-example.ts\",\n \"select-disabled-example.html\"\n ],\n \"selector\": \"select-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-disabled-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-error-state-matcher\": {\n \"packagePath\": \"material/select/select-error-state-matcher\",\n \"title\": \"Select with a custom ErrorStateMatcher\",\n \"componentName\": \"SelectErrorStateMatcherExample\",\n \"files\": [\n \"select-error-state-matcher-example.ts\",\n \"select-error-state-matcher-example.html\"\n ],\n \"selector\": \"select-error-state-matcher-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-error-state-matcher-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-form\": {\n \"packagePath\": \"material/select/select-form\",\n \"title\": \"Select in a form\",\n \"componentName\": \"SelectFormExample\",\n \"files\": [\n \"select-form-example.ts\",\n \"select-form-example.html\"\n ],\n \"selector\": \"select-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-form-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-harness\": {\n \"packagePath\": \"material/select/select-harness\",\n \"title\": \"Testing with MatSelectHarness\",\n \"componentName\": \"SelectHarnessExample\",\n \"files\": [\n \"select-harness-example.ts\",\n \"select-harness-example.html\",\n \"select-harness-example.spec.ts\"\n ],\n \"selector\": \"select-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-harness-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-hint-error\": {\n \"packagePath\": \"material/select/select-hint-error\",\n \"title\": \"Select with form field features\",\n \"componentName\": \"SelectHintErrorExample\",\n \"files\": [\n \"select-hint-error-example.ts\",\n \"select-hint-error-example.html\"\n ],\n \"selector\": \"select-hint-error-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-hint-error-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-initial-value\": {\n \"packagePath\": \"material/select/select-initial-value\",\n \"title\": \"Basic select with initial value and no form\",\n \"componentName\": \"SelectInitialValueExample\",\n \"files\": [\n \"select-initial-value-example.ts\",\n \"select-initial-value-example.html\"\n ],\n \"selector\": \"select-initial-value-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-initial-value-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-multiple\": {\n \"packagePath\": \"material/select/select-multiple\",\n \"title\": \"Select with multiple selection\",\n \"componentName\": \"SelectMultipleExample\",\n \"files\": [\n \"select-multiple-example.ts\",\n \"select-multiple-example.html\"\n ],\n \"selector\": \"select-multiple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-multiple-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-no-ripple\": {\n \"packagePath\": \"material/select/select-no-ripple\",\n \"title\": \"Select with no option ripple\",\n \"componentName\": \"SelectNoRippleExample\",\n \"files\": [\n \"select-no-ripple-example.ts\",\n \"select-no-ripple-example.html\"\n ],\n \"selector\": \"select-no-ripple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-no-ripple-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-optgroup\": {\n \"packagePath\": \"material/select/select-optgroup\",\n \"title\": \"Select with option groups\",\n \"componentName\": \"SelectOptgroupExample\",\n \"files\": [\n \"select-optgroup-example.ts\",\n \"select-optgroup-example.html\"\n ],\n \"selector\": \"select-optgroup-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-optgroup-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-overview\": {\n \"packagePath\": \"material/select/select-overview\",\n \"title\": \"Basic select\",\n \"componentName\": \"SelectOverviewExample\",\n \"files\": [\n \"select-overview-example.ts\",\n \"select-overview-example.html\"\n ],\n \"selector\": \"select-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-overview-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-panel-class\": {\n \"packagePath\": \"material/select/select-panel-class\",\n \"title\": \"Select with custom panel styling\",\n \"componentName\": \"SelectPanelClassExample\",\n \"files\": [\n \"select-panel-class-example.ts\",\n \"select-panel-class-example.html\",\n \"select-panel-class-example.css\"\n ],\n \"selector\": \"select-panel-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-panel-class-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-reactive-form\": {\n \"packagePath\": \"material/select/select-reactive-form\",\n \"title\": \"Select in a reactive form\",\n \"componentName\": \"SelectReactiveFormExample\",\n \"files\": [\n \"select-reactive-form-example.ts\",\n \"select-reactive-form-example.html\"\n ],\n \"selector\": \"select-reactive-form-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-reactive-form-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-reset\": {\n \"packagePath\": \"material/select/select-reset\",\n \"title\": \"Select with reset option\",\n \"componentName\": \"SelectResetExample\",\n \"files\": [\n \"select-reset-example.ts\",\n \"select-reset-example.html\"\n ],\n \"selector\": \"select-reset-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-reset-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-selectable-null\": {\n \"packagePath\": \"material/select/select-selectable-null\",\n \"title\": \"Select with selectable null options\",\n \"componentName\": \"SelectSelectableNullExample\",\n \"files\": [\n \"select-selectable-null-example.ts\",\n \"select-selectable-null-example.html\"\n ],\n \"selector\": \"select-selectable-null-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-selectable-null-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"select-value-binding\": {\n \"packagePath\": \"material/select/select-value-binding\",\n \"title\": \"Select with 2-way value binding\",\n \"componentName\": \"SelectValueBindingExample\",\n \"files\": [\n \"select-value-binding-example.ts\",\n \"select-value-binding-example.html\"\n ],\n \"selector\": \"select-value-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"select-value-binding-example.ts\",\n \"importPath\": \"material/select\"\n },\n \"sidenav-autosize\": {\n \"packagePath\": \"material/sidenav/sidenav-autosize\",\n \"title\": \"Autosize sidenav\",\n \"componentName\": \"SidenavAutosizeExample\",\n \"files\": [\n \"sidenav-autosize-example.ts\",\n \"sidenav-autosize-example.html\",\n \"sidenav-autosize-example.css\"\n ],\n \"selector\": \"sidenav-autosize-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-autosize-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-backdrop\": {\n \"packagePath\": \"material/sidenav/sidenav-backdrop\",\n \"title\": \"Drawer with explicit backdrop setting\",\n \"componentName\": \"SidenavBackdropExample\",\n \"files\": [\n \"sidenav-backdrop-example.ts\",\n \"sidenav-backdrop-example.html\",\n \"sidenav-backdrop-example.css\"\n ],\n \"selector\": \"sidenav-backdrop-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-backdrop-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-configurable-focus-trap\": {\n \"packagePath\": \"material/sidenav/sidenav-configurable-focus-trap\",\n \"title\": \"Sidenav using injected ConfigurableFocusTrap\",\n \"componentName\": \"SidenavConfigurableFocusTrapExample\",\n \"files\": [\n \"sidenav-configurable-focus-trap-example.ts\",\n \"sidenav-configurable-focus-trap-example.html\",\n \"sidenav-configurable-focus-trap-example.css\"\n ],\n \"selector\": \"sidenav-configurable-focus-trap-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-configurable-focus-trap-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-disable-close\": {\n \"packagePath\": \"material/sidenav/sidenav-disable-close\",\n \"title\": \"Sidenav with custom escape and backdrop click behavior\",\n \"componentName\": \"SidenavDisableCloseExample\",\n \"files\": [\n \"sidenav-disable-close-example.ts\",\n \"sidenav-disable-close-example.html\",\n \"sidenav-disable-close-example.css\"\n ],\n \"selector\": \"sidenav-disable-close-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-disable-close-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-drawer-overview\": {\n \"packagePath\": \"material/sidenav/sidenav-drawer-overview\",\n \"title\": \"Basic drawer\",\n \"componentName\": \"SidenavDrawerOverviewExample\",\n \"files\": [\n \"sidenav-drawer-overview-example.ts\",\n \"sidenav-drawer-overview-example.html\",\n \"sidenav-drawer-overview-example.css\"\n ],\n \"selector\": \"sidenav-drawer-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-drawer-overview-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-fixed\": {\n \"packagePath\": \"material/sidenav/sidenav-fixed\",\n \"title\": \"Fixed sidenav\",\n \"componentName\": \"SidenavFixedExample\",\n \"files\": [\n \"sidenav-fixed-example.ts\",\n \"sidenav-fixed-example.html\",\n \"sidenav-fixed-example.css\"\n ],\n \"selector\": \"sidenav-fixed-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-fixed-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-harness\": {\n \"packagePath\": \"material/sidenav/sidenav-harness\",\n \"title\": \"Testing with MatSidenavHarness\",\n \"componentName\": \"SidenavHarnessExample\",\n \"files\": [\n \"sidenav-harness-example.ts\",\n \"sidenav-harness-example.html\",\n \"sidenav-harness-example.spec.ts\"\n ],\n \"selector\": \"sidenav-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-harness-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-mode\": {\n \"packagePath\": \"material/sidenav/sidenav-mode\",\n \"title\": \"Sidenav with configurable mode\",\n \"componentName\": \"SidenavModeExample\",\n \"files\": [\n \"sidenav-mode-example.ts\",\n \"sidenav-mode-example.html\",\n \"sidenav-mode-example.css\"\n ],\n \"selector\": \"sidenav-mode-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-mode-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-open-close\": {\n \"packagePath\": \"material/sidenav/sidenav-open-close\",\n \"title\": \"Sidenav open & close behavior\",\n \"componentName\": \"SidenavOpenCloseExample\",\n \"files\": [\n \"sidenav-open-close-example.ts\",\n \"sidenav-open-close-example.html\",\n \"sidenav-open-close-example.css\"\n ],\n \"selector\": \"sidenav-open-close-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-open-close-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-overview\": {\n \"packagePath\": \"material/sidenav/sidenav-overview\",\n \"title\": \"Basic sidenav\",\n \"componentName\": \"SidenavOverviewExample\",\n \"files\": [\n \"sidenav-overview-example.ts\",\n \"sidenav-overview-example.html\",\n \"sidenav-overview-example.css\"\n ],\n \"selector\": \"sidenav-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-overview-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-position\": {\n \"packagePath\": \"material/sidenav/sidenav-position\",\n \"title\": \"Implicit main content with two sidenavs\",\n \"componentName\": \"SidenavPositionExample\",\n \"files\": [\n \"sidenav-position-example.ts\",\n \"sidenav-position-example.html\",\n \"sidenav-position-example.css\"\n ],\n \"selector\": \"sidenav-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-position-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"sidenav-responsive\": {\n \"packagePath\": \"material/sidenav/sidenav-responsive\",\n \"title\": \"Responsive sidenav\",\n \"componentName\": \"SidenavResponsiveExample\",\n \"files\": [\n \"sidenav-responsive-example.ts\",\n \"sidenav-responsive-example.html\",\n \"sidenav-responsive-example.css\"\n ],\n \"selector\": \"sidenav-responsive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sidenav-responsive-example.ts\",\n \"importPath\": \"material/sidenav\"\n },\n \"slide-toggle-configurable\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-configurable\",\n \"title\": \"Configurable slide-toggle\",\n \"componentName\": \"SlideToggleConfigurableExample\",\n \"files\": [\n \"slide-toggle-configurable-example.ts\",\n \"slide-toggle-configurable-example.html\",\n \"slide-toggle-configurable-example.css\"\n ],\n \"selector\": \"slide-toggle-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-configurable-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-forms\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-forms\",\n \"title\": \"Slide-toggle with forms\",\n \"componentName\": \"SlideToggleFormsExample\",\n \"files\": [\n \"slide-toggle-forms-example.ts\",\n \"./slide-toggle-forms-example.html\",\n \"./slide-toggle-forms-example.css\"\n ],\n \"selector\": \"slide-toggle-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-forms-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-harness\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-harness\",\n \"title\": \"Testing with MatSlideToggleHarness\",\n \"componentName\": \"SlideToggleHarnessExample\",\n \"files\": [\n \"slide-toggle-harness-example.ts\",\n \"slide-toggle-harness-example.html\",\n \"slide-toggle-harness-example.spec.ts\"\n ],\n \"selector\": \"slide-toggle-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-harness-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slide-toggle-overview\": {\n \"packagePath\": \"material/slide-toggle/slide-toggle-overview\",\n \"title\": \"Basic slide-toggles\",\n \"componentName\": \"SlideToggleOverviewExample\",\n \"files\": [\n \"slide-toggle-overview-example.ts\",\n \"slide-toggle-overview-example.html\"\n ],\n \"selector\": \"slide-toggle-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slide-toggle-overview-example.ts\",\n \"importPath\": \"material/slide-toggle\"\n },\n \"slider-configurable\": {\n \"packagePath\": \"material/slider/slider-configurable\",\n \"title\": \"Configurable slider\",\n \"componentName\": \"SliderConfigurableExample\",\n \"files\": [\n \"slider-configurable-example.ts\",\n \"slider-configurable-example.html\",\n \"slider-configurable-example.css\"\n ],\n \"selector\": \"slider-configurable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-configurable-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-formatting\": {\n \"packagePath\": \"material/slider/slider-formatting\",\n \"title\": \"Slider with custom thumb label formatting.\",\n \"componentName\": \"SliderFormattingExample\",\n \"files\": [\n \"slider-formatting-example.ts\",\n \"slider-formatting-example.html\",\n \"slider-formatting-example.css\"\n ],\n \"selector\": \"slider-formatting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-formatting-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-harness\": {\n \"packagePath\": \"material/slider/slider-harness\",\n \"title\": \"Testing with MatSliderHarness\",\n \"componentName\": \"SliderHarnessExample\",\n \"files\": [\n \"slider-harness-example.ts\",\n \"slider-harness-example.html\",\n \"slider-harness-example.spec.ts\"\n ],\n \"selector\": \"slider-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-harness-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-overview\": {\n \"packagePath\": \"material/slider/slider-overview\",\n \"title\": \"Basic slider\",\n \"componentName\": \"SliderOverviewExample\",\n \"files\": [\n \"slider-overview-example.ts\",\n \"slider-overview-example.html\",\n \"slider-overview-example.css\"\n ],\n \"selector\": \"slider-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-overview-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"slider-range\": {\n \"packagePath\": \"material/slider/slider-range\",\n \"title\": \"Range slider\",\n \"componentName\": \"SliderRangeExample\",\n \"files\": [\n \"slider-range-example.ts\",\n \"slider-range-example.html\",\n \"slider-range-example.css\"\n ],\n \"selector\": \"slider-range-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"slider-range-example.ts\",\n \"importPath\": \"material/slider\"\n },\n \"snack-bar-annotated-component\": {\n \"packagePath\": \"material/snack-bar/snack-bar-annotated-component\",\n \"title\": \"Snack-bar with an annotated custom component\",\n \"componentName\": \"SnackBarAnnotatedComponentExample\",\n \"files\": [\n \"snack-bar-annotated-component-example.ts\",\n \"snack-bar-annotated-component-example.html\",\n \"snack-bar-annotated-component-example.css\",\n \"snack-bar-annotated-component-example-snack.html\"\n ],\n \"selector\": \"snack-bar-annotated-component-example\",\n \"additionalComponents\": [\n \"PizzaPartyAnnotatedComponent\"\n ],\n \"primaryFile\": \"snack-bar-annotated-component-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-component\": {\n \"packagePath\": \"material/snack-bar/snack-bar-component\",\n \"title\": \"Snack-bar with a custom component\",\n \"componentName\": \"SnackBarComponentExample\",\n \"files\": [\n \"snack-bar-component-example.ts\",\n \"snack-bar-component-example.html\",\n \"snack-bar-component-example.css\",\n \"snack-bar-component-example-snack.html\"\n ],\n \"selector\": \"snack-bar-component-example\",\n \"additionalComponents\": [\n \"PizzaPartyComponent\"\n ],\n \"primaryFile\": \"snack-bar-component-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-harness\": {\n \"packagePath\": \"material/snack-bar/snack-bar-harness\",\n \"title\": \"Testing with MatSnackBarHarness\",\n \"componentName\": \"SnackBarHarnessExample\",\n \"files\": [\n \"snack-bar-harness-example.ts\",\n \"snack-bar-harness-example.html\",\n \"snack-bar-harness-example.spec.ts\"\n ],\n \"selector\": \"snack-bar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-harness-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-overview\": {\n \"packagePath\": \"material/snack-bar/snack-bar-overview\",\n \"title\": \"Basic snack-bar\",\n \"componentName\": \"SnackBarOverviewExample\",\n \"files\": [\n \"snack-bar-overview-example.ts\",\n \"snack-bar-overview-example.html\",\n \"snack-bar-overview-example.css\"\n ],\n \"selector\": \"snack-bar-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-overview-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"snack-bar-position\": {\n \"packagePath\": \"material/snack-bar/snack-bar-position\",\n \"title\": \"Snack-bar with configurable position\",\n \"componentName\": \"SnackBarPositionExample\",\n \"files\": [\n \"snack-bar-position-example.ts\",\n \"snack-bar-position-example.html\",\n \"snack-bar-position-example.css\"\n ],\n \"selector\": \"snack-bar-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"snack-bar-position-example.ts\",\n \"importPath\": \"material/snack-bar\"\n },\n \"sort-harness\": {\n \"packagePath\": \"material/sort/sort-harness\",\n \"title\": \"Testing with MatSortHarness\",\n \"componentName\": \"SortHarnessExample\",\n \"files\": [\n \"sort-harness-example.ts\",\n \"sort-harness-example.html\",\n \"sort-harness-example.spec.ts\"\n ],\n \"selector\": \"sort-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sort-harness-example.ts\",\n \"importPath\": \"material/sort\"\n },\n \"sort-overview\": {\n \"packagePath\": \"material/sort/sort-overview\",\n \"title\": \"Sorting overview\",\n \"componentName\": \"SortOverviewExample\",\n \"files\": [\n \"sort-overview-example.ts\",\n \"sort-overview-example.html\",\n \"sort-overview-example.css\"\n ],\n \"selector\": \"sort-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"sort-overview-example.ts\",\n \"importPath\": \"material/sort\"\n },\n \"stepper-animations\": {\n \"packagePath\": \"material/stepper/stepper-animations\",\n \"title\": \"Stepper animations\",\n \"componentName\": \"StepperAnimationsExample\",\n \"files\": [\n \"stepper-animations-example.ts\",\n \"stepper-animations-example.html\",\n \"stepper-animations-example.css\"\n ],\n \"selector\": \"stepper-animations-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-animations-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-editable\": {\n \"packagePath\": \"material/stepper/stepper-editable\",\n \"title\": \"Stepper with editable steps\",\n \"componentName\": \"StepperEditableExample\",\n \"files\": [\n \"stepper-editable-example.ts\",\n \"stepper-editable-example.html\",\n \"stepper-editable-example.css\"\n ],\n \"selector\": \"stepper-editable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-editable-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-errors\": {\n \"packagePath\": \"material/stepper/stepper-errors\",\n \"title\": \"Stepper that displays errors in the steps\",\n \"componentName\": \"StepperErrorsExample\",\n \"files\": [\n \"stepper-errors-example.ts\",\n \"stepper-errors-example.html\",\n \"stepper-errors-example.css\"\n ],\n \"selector\": \"stepper-errors-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-errors-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-harness\": {\n \"packagePath\": \"material/stepper/stepper-harness\",\n \"title\": \"Testing with MatStepperHarness\",\n \"componentName\": \"StepperHarnessExample\",\n \"files\": [\n \"stepper-harness-example.ts\",\n \"stepper-harness-example.html\",\n \"stepper-harness-example.spec.ts\"\n ],\n \"selector\": \"stepper-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-harness-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-header-position\": {\n \"packagePath\": \"material/stepper/stepper-header-position\",\n \"title\": \"Stepper header position\",\n \"componentName\": \"StepperHeaderPositionExample\",\n \"files\": [\n \"stepper-header-position-example.ts\",\n \"stepper-header-position-example.html\"\n ],\n \"selector\": \"stepper-header-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-header-position-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-intl\": {\n \"packagePath\": \"material/stepper/stepper-intl\",\n \"title\": \"Stepper that uses the MatStepperIntl service\",\n \"componentName\": \"StepperIntlExample\",\n \"files\": [\n \"stepper-intl-example.ts\",\n \"stepper-intl-example.html\",\n \"stepper-intl-example.css\"\n ],\n \"selector\": \"stepper-intl-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-intl-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-label-position-bottom\": {\n \"packagePath\": \"material/stepper/stepper-label-position-bottom\",\n \"title\": \"Stepper label bottom position\",\n \"componentName\": \"StepperLabelPositionBottomExample\",\n \"files\": [\n \"stepper-label-position-bottom-example.ts\",\n \"stepper-label-position-bottom-example.html\",\n \"stepper-label-position-bottom-example.css\"\n ],\n \"selector\": \"stepper-label-position-bottom-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-label-position-bottom-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-lazy-content\": {\n \"packagePath\": \"material/stepper/stepper-lazy-content\",\n \"title\": \"Stepper lazy content rendering\",\n \"componentName\": \"StepperLazyContentExample\",\n \"files\": [\n \"stepper-lazy-content-example.ts\",\n \"stepper-lazy-content-example.html\"\n ],\n \"selector\": \"stepper-lazy-content-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-lazy-content-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-optional\": {\n \"packagePath\": \"material/stepper/stepper-optional\",\n \"title\": \"Stepper with optional steps\",\n \"componentName\": \"StepperOptionalExample\",\n \"files\": [\n \"stepper-optional-example.ts\",\n \"stepper-optional-example.html\",\n \"stepper-optional-example.css\"\n ],\n \"selector\": \"stepper-optional-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-optional-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-overview\": {\n \"packagePath\": \"material/stepper/stepper-overview\",\n \"title\": \"Stepper overview\",\n \"componentName\": \"StepperOverviewExample\",\n \"files\": [\n \"stepper-overview-example.ts\",\n \"stepper-overview-example.html\",\n \"stepper-overview-example.css\"\n ],\n \"selector\": \"stepper-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-overview-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-responsive\": {\n \"packagePath\": \"material/stepper/stepper-responsive\",\n \"title\": \"Stepper responsive\",\n \"componentName\": \"StepperResponsiveExample\",\n \"files\": [\n \"stepper-responsive-example.ts\",\n \"stepper-responsive-example.html\",\n \"stepper-responsive-example.css\"\n ],\n \"selector\": \"stepper-responsive-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-responsive-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-states\": {\n \"packagePath\": \"material/stepper/stepper-states\",\n \"title\": \"Stepper with customized states\",\n \"componentName\": \"StepperStatesExample\",\n \"files\": [\n \"stepper-states-example.ts\",\n \"stepper-states-example.html\",\n \"stepper-states-example.css\"\n ],\n \"selector\": \"stepper-states-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-states-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"stepper-vertical\": {\n \"packagePath\": \"material/stepper/stepper-vertical\",\n \"title\": \"Stepper vertical\",\n \"componentName\": \"StepperVerticalExample\",\n \"files\": [\n \"stepper-vertical-example.ts\",\n \"stepper-vertical-example.html\",\n \"stepper-vertical-example.css\"\n ],\n \"selector\": \"stepper-vertical-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"stepper-vertical-example.ts\",\n \"importPath\": \"material/stepper\"\n },\n \"table-basic\": {\n \"packagePath\": \"material/table/table-basic\",\n \"title\": \"Basic use of `
    `\",\n \"componentName\": \"TableBasicExample\",\n \"files\": [\n \"table-basic-example.ts\",\n \"table-basic-example.html\",\n \"table-basic-example.css\"\n ],\n \"selector\": \"table-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-basic-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-column-styling\": {\n \"packagePath\": \"material/table/table-column-styling\",\n \"title\": \"Styling columns using their auto-generated column names\",\n \"componentName\": \"TableColumnStylingExample\",\n \"files\": [\n \"table-column-styling-example.ts\",\n \"table-column-styling-example.html\",\n \"table-column-styling-example.css\"\n ],\n \"selector\": \"table-column-styling-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-column-styling-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-array-data\": {\n \"packagePath\": \"material/table/table-dynamic-array-data\",\n \"title\": \"Adding and removing data when using an array-based datasource.\",\n \"componentName\": \"TableDynamicArrayDataExample\",\n \"files\": [\n \"table-dynamic-array-data-example.ts\",\n \"table-dynamic-array-data-example.html\",\n \"table-dynamic-array-data-example.css\"\n ],\n \"selector\": \"table-dynamic-array-data-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-array-data-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-columns\": {\n \"packagePath\": \"material/table/table-dynamic-columns\",\n \"title\": \"Table dynamically changing the columns displayed\",\n \"componentName\": \"TableDynamicColumnsExample\",\n \"files\": [\n \"table-dynamic-columns-example.ts\",\n \"table-dynamic-columns-example.html\",\n \"table-dynamic-columns-example.css\"\n ],\n \"selector\": \"table-dynamic-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-dynamic-observable-data\": {\n \"packagePath\": \"material/table/table-dynamic-observable-data\",\n \"title\": \"Adding and removing data when using an observable-based datasource.\",\n \"componentName\": \"TableDynamicObservableDataExample\",\n \"files\": [\n \"table-dynamic-observable-data-example.ts\",\n \"table-dynamic-observable-data-example.html\",\n \"table-dynamic-observable-data-example.css\"\n ],\n \"selector\": \"table-dynamic-observable-data-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-dynamic-observable-data-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-expandable-rows\": {\n \"packagePath\": \"material/table/table-expandable-rows\",\n \"title\": \"Table with expandable rows\",\n \"componentName\": \"TableExpandableRowsExample\",\n \"files\": [\n \"table-expandable-rows-example.ts\",\n \"table-expandable-rows-example.html\",\n \"table-expandable-rows-example.css\"\n ],\n \"selector\": \"table-expandable-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-expandable-rows-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-filtering\": {\n \"packagePath\": \"material/table/table-filtering\",\n \"title\": \"Table with filtering\",\n \"componentName\": \"TableFilteringExample\",\n \"files\": [\n \"table-filtering-example.ts\",\n \"table-filtering-example.html\",\n \"table-filtering-example.css\"\n ],\n \"selector\": \"table-filtering-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-filtering-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-flex-basic\": {\n \"packagePath\": \"material/table/table-flex-basic\",\n \"title\": \"Basic use of `` (uses display flex)\",\n \"componentName\": \"TableFlexBasicExample\",\n \"files\": [\n \"table-flex-basic-example.ts\",\n \"table-flex-basic-example.html\",\n \"table-flex-basic-example.css\"\n ],\n \"selector\": \"table-flex-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-flex-basic-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-flex-large-row\": {\n \"packagePath\": \"material/table/table-flex-large-row\",\n \"title\": \"Flex table where one column's cells has a greater height than others.\",\n \"componentName\": \"TableFlexLargeRowExample\",\n \"files\": [\n \"table-flex-large-row-example.ts\",\n \"table-flex-large-row-example.html\",\n \"table-flex-large-row-example.css\"\n ],\n \"selector\": \"table-flex-large-row-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-flex-large-row-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-footer-row\": {\n \"packagePath\": \"material/table/table-footer-row\",\n \"title\": \"Footer row table\",\n \"componentName\": \"TableFooterRowExample\",\n \"files\": [\n \"table-footer-row-example.ts\",\n \"table-footer-row-example.html\",\n \"table-footer-row-example.css\"\n ],\n \"selector\": \"table-footer-row-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-footer-row-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-generated-columns\": {\n \"packagePath\": \"material/table/table-generated-columns\",\n \"title\": \"Table with columns defined using a for loop instead of statically written in the template.\",\n \"componentName\": \"TableGeneratedColumnsExample\",\n \"files\": [\n \"table-generated-columns-example.ts\",\n \"table-generated-columns-example.html\",\n \"table-generated-columns-example.css\"\n ],\n \"selector\": \"table-generated-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-generated-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-harness\": {\n \"packagePath\": \"material/table/table-harness\",\n \"title\": \"Testing with MatTableHarness\",\n \"componentName\": \"TableHarnessExample\",\n \"files\": [\n \"table-harness-example.ts\",\n \"table-harness-example.html\",\n \"table-harness-example.spec.ts\"\n ],\n \"selector\": \"table-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-harness-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-http\": {\n \"packagePath\": \"material/table/table-http\",\n \"title\": \"Table retrieving data through HTTP\",\n \"componentName\": \"TableHttpExample\",\n \"files\": [\n \"table-http-example.ts\",\n \"table-http-example.html\",\n \"table-http-example.css\"\n ],\n \"selector\": \"table-http-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-http-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-multiple-header-footer\": {\n \"packagePath\": \"material/table/table-multiple-header-footer\",\n \"title\": \"Table with multiple header and footer rows\",\n \"componentName\": \"TableMultipleHeaderFooterExample\",\n \"files\": [\n \"table-multiple-header-footer-example.ts\",\n \"table-multiple-header-footer-example.html\",\n \"table-multiple-header-footer-example.css\"\n ],\n \"selector\": \"table-multiple-header-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-multiple-header-footer-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-multiple-row-template\": {\n \"packagePath\": \"material/table/table-multiple-row-template\",\n \"title\": \"Table with multiple row template\",\n \"componentName\": \"TableMultipleRowTemplateExample\",\n \"files\": [\n \"table-multiple-row-template-example.ts\",\n \"table-multiple-row-template-example.html\",\n \"table-multiple-row-template-example.css\"\n ],\n \"selector\": \"table-multiple-row-template-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-multiple-row-template-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-overview\": {\n \"packagePath\": \"material/table/table-overview\",\n \"title\": \"Data table with sorting, pagination, and filtering.\",\n \"componentName\": \"TableOverviewExample\",\n \"files\": [\n \"table-overview-example.ts\",\n \"table-overview-example.html\",\n \"table-overview-example.css\"\n ],\n \"selector\": \"table-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-overview-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-pagination\": {\n \"packagePath\": \"material/table/table-pagination\",\n \"title\": \"Table with pagination\",\n \"componentName\": \"TablePaginationExample\",\n \"files\": [\n \"table-pagination-example.ts\",\n \"table-pagination-example.html\",\n \"table-pagination-example.css\"\n ],\n \"selector\": \"table-pagination-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-pagination-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-recycle-rows\": {\n \"packagePath\": \"material/table/table-recycle-rows\",\n \"title\": \"Table that uses the recycle view repeater strategy.\",\n \"componentName\": \"TableRecycleRowsExample\",\n \"files\": [\n \"table-recycle-rows-example.ts\",\n \"table-recycle-rows-example.html\",\n \"table-recycle-rows-example.css\"\n ],\n \"selector\": \"table-recycle-rows-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-recycle-rows-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-reorderable\": {\n \"packagePath\": \"material/table/table-reorderable\",\n \"title\": \"Table with re-orderable columns\",\n \"componentName\": \"TableReorderableExample\",\n \"files\": [\n \"table-reorderable-example.ts\",\n \"./table-reorderable-example.html\",\n \"./table-reorderable-example.css\"\n ],\n \"selector\": \"table-reorderable-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-reorderable-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-row-binding\": {\n \"packagePath\": \"material/table/table-row-binding\",\n \"title\": \"Binding event handlers and properties to the table rows.\",\n \"componentName\": \"TableRowBindingExample\",\n \"files\": [\n \"table-row-binding-example.ts\",\n \"table-row-binding-example.html\",\n \"table-row-binding-example.css\"\n ],\n \"selector\": \"table-row-binding-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-row-binding-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-row-context\": {\n \"packagePath\": \"material/table/table-row-context\",\n \"title\": \"Table showing each row context properties.\",\n \"componentName\": \"TableRowContextExample\",\n \"files\": [\n \"table-row-context-example.ts\",\n \"table-row-context-example.html\",\n \"table-row-context-example.css\"\n ],\n \"selector\": \"table-row-context-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-row-context-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-selection\": {\n \"packagePath\": \"material/table/table-selection\",\n \"title\": \"Table with selection\",\n \"componentName\": \"TableSelectionExample\",\n \"files\": [\n \"table-selection-example.ts\",\n \"table-selection-example.html\",\n \"table-selection-example.css\"\n ],\n \"selector\": \"table-selection-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-selection-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sorting\": {\n \"packagePath\": \"material/table/table-sorting\",\n \"title\": \"Table with sorting\",\n \"componentName\": \"TableSortingExample\",\n \"files\": [\n \"table-sorting-example.ts\",\n \"table-sorting-example.html\",\n \"table-sorting-example.css\"\n ],\n \"selector\": \"table-sorting-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sorting-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-columns\": {\n \"packagePath\": \"material/table/table-sticky-columns\",\n \"title\": \"Table with sticky columns\",\n \"componentName\": \"TableStickyColumnsExample\",\n \"files\": [\n \"table-sticky-columns-example.ts\",\n \"table-sticky-columns-example.html\",\n \"table-sticky-columns-example.css\"\n ],\n \"selector\": \"table-sticky-columns-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-columns-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-complex-flex\": {\n \"packagePath\": \"material/table/table-sticky-complex-flex\",\n \"title\": \"Flex-layout tables with toggle-able sticky headers, footers, and columns\",\n \"componentName\": \"TableStickyComplexFlexExample\",\n \"files\": [\n \"table-sticky-complex-flex-example.ts\",\n \"table-sticky-complex-flex-example.html\",\n \"table-sticky-complex-flex-example.css\"\n ],\n \"selector\": \"table-sticky-complex-flex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-complex-flex-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-complex\": {\n \"packagePath\": \"material/table/table-sticky-complex\",\n \"title\": \"Tables with toggle-able sticky headers, footers, and columns\",\n \"componentName\": \"TableStickyComplexExample\",\n \"files\": [\n \"table-sticky-complex-example.ts\",\n \"table-sticky-complex-example.html\",\n \"table-sticky-complex-example.css\"\n ],\n \"selector\": \"table-sticky-complex-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-complex-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-footer\": {\n \"packagePath\": \"material/table/table-sticky-footer\",\n \"title\": \"Table with a sticky footer\",\n \"componentName\": \"TableStickyFooterExample\",\n \"files\": [\n \"table-sticky-footer-example.ts\",\n \"table-sticky-footer-example.html\",\n \"table-sticky-footer-example.css\"\n ],\n \"selector\": \"table-sticky-footer-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-footer-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-sticky-header\": {\n \"packagePath\": \"material/table/table-sticky-header\",\n \"title\": \"Table with sticky header\",\n \"componentName\": \"TableStickyHeaderExample\",\n \"files\": [\n \"table-sticky-header-example.ts\",\n \"table-sticky-header-example.html\",\n \"table-sticky-header-example.css\"\n ],\n \"selector\": \"table-sticky-header-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-sticky-header-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-text-column-advanced\": {\n \"packagePath\": \"material/table/table-text-column-advanced\",\n \"title\": \"Use of 'mat-text-column' with various configurations of the interface.\",\n \"componentName\": \"TableTextColumnAdvancedExample\",\n \"files\": [\n \"table-text-column-advanced-example.ts\",\n \"table-text-column-advanced-example.html\",\n \"table-text-column-advanced-example.css\"\n ],\n \"selector\": \"table-text-column-advanced-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-text-column-advanced-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-text-column\": {\n \"packagePath\": \"material/table/table-text-column\",\n \"title\": \"Use of `mat-text-column` which can be used for simple columns that only need to display\\na text value for the header and cells.\",\n \"componentName\": \"TableTextColumnExample\",\n \"files\": [\n \"table-text-column-example.ts\",\n \"table-text-column-example.html\",\n \"table-text-column-example.css\"\n ],\n \"selector\": \"table-text-column-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-text-column-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-with-ripples\": {\n \"packagePath\": \"material/table/table-with-ripples\",\n \"title\": \"Tables with Material Design ripples.\",\n \"componentName\": \"TableWithRipplesExample\",\n \"files\": [\n \"table-with-ripples-example.ts\",\n \"table-with-ripples-example.html\"\n ],\n \"selector\": \"table-with-ripples-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"table-with-ripples-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"table-wrapped\": {\n \"packagePath\": \"material/table/table-wrapped\",\n \"title\": \"Table example that shows how to wrap a table component for definition and behavior reuse.\",\n \"componentName\": \"TableWrappedExample\",\n \"files\": [\n \"table-wrapped-example.ts\",\n \"table-wrapped-example.html\",\n \"table-wrapped-example.css\",\n \"wrapper-table.html\"\n ],\n \"selector\": \"table-wrapped-example\",\n \"additionalComponents\": [\n \"WrapperTable\"\n ],\n \"primaryFile\": \"table-wrapped-example.ts\",\n \"importPath\": \"material/table\"\n },\n \"tab-group-align\": {\n \"packagePath\": \"material/tabs/tab-group-align\",\n \"title\": \"Tab group with aligned labels\",\n \"componentName\": \"TabGroupAlignExample\",\n \"files\": [\n \"tab-group-align-example.ts\",\n \"tab-group-align-example.html\",\n \"tab-group-align-example.css\"\n ],\n \"selector\": \"tab-group-align-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-align-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-animations\": {\n \"packagePath\": \"material/tabs/tab-group-animations\",\n \"title\": \"Tab group animations\",\n \"componentName\": \"TabGroupAnimationsExample\",\n \"files\": [\n \"tab-group-animations-example.ts\",\n \"tab-group-animations-example.html\",\n \"tab-group-animations-example.css\"\n ],\n \"selector\": \"tab-group-animations-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-animations-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-async\": {\n \"packagePath\": \"material/tabs/tab-group-async\",\n \"title\": \"Tab group with asynchronously loading tab contents\",\n \"componentName\": \"TabGroupAsyncExample\",\n \"files\": [\n \"tab-group-async-example.ts\",\n \"tab-group-async-example.html\"\n ],\n \"selector\": \"tab-group-async-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-async-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-basic\": {\n \"packagePath\": \"material/tabs/tab-group-basic\",\n \"title\": \"Basic use of the tab group\",\n \"componentName\": \"TabGroupBasicExample\",\n \"files\": [\n \"tab-group-basic-example.ts\",\n \"tab-group-basic-example.html\"\n ],\n \"selector\": \"tab-group-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-basic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-custom-label\": {\n \"packagePath\": \"material/tabs/tab-group-custom-label\",\n \"title\": \"Using tabs with a custom label template\",\n \"componentName\": \"TabGroupCustomLabelExample\",\n \"files\": [\n \"tab-group-custom-label-example.ts\",\n \"tab-group-custom-label-example.html\",\n \"tab-group-custom-label-example.css\"\n ],\n \"selector\": \"tab-group-custom-label-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-custom-label-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-dynamic-height\": {\n \"packagePath\": \"material/tabs/tab-group-dynamic-height\",\n \"title\": \"Tab group with dynamic height based on tab contents\",\n \"componentName\": \"TabGroupDynamicHeightExample\",\n \"files\": [\n \"tab-group-dynamic-height-example.ts\",\n \"tab-group-dynamic-height-example.html\",\n \"tab-group-dynamic-height-example.css\"\n ],\n \"selector\": \"tab-group-dynamic-height-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-dynamic-height-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-dynamic\": {\n \"packagePath\": \"material/tabs/tab-group-dynamic\",\n \"title\": \"Tab group with dynamically changing tabs\",\n \"componentName\": \"TabGroupDynamicExample\",\n \"files\": [\n \"tab-group-dynamic-example.ts\",\n \"tab-group-dynamic-example.html\",\n \"tab-group-dynamic-example.css\"\n ],\n \"selector\": \"tab-group-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-dynamic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-harness\": {\n \"packagePath\": \"material/tabs/tab-group-harness\",\n \"title\": \"Testing with MatTabGroupHarness\",\n \"componentName\": \"TabGroupHarnessExample\",\n \"files\": [\n \"tab-group-harness-example.ts\",\n \"tab-group-harness-example.html\",\n \"tab-group-harness-example.spec.ts\"\n ],\n \"selector\": \"tab-group-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-harness-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-header-below\": {\n \"packagePath\": \"material/tabs/tab-group-header-below\",\n \"title\": \"Tab group with headers below the content\",\n \"componentName\": \"TabGroupHeaderBelowExample\",\n \"files\": [\n \"tab-group-header-below-example.ts\",\n \"tab-group-header-below-example.html\"\n ],\n \"selector\": \"tab-group-header-below-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-header-below-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-ink-bar\": {\n \"packagePath\": \"material/tabs/tab-group-ink-bar\",\n \"title\": \"Tab group with ink bar fit to content\",\n \"componentName\": \"TabGroupInkBarExample\",\n \"files\": [\n \"tab-group-ink-bar-example.ts\",\n \"tab-group-ink-bar-example.html\"\n ],\n \"selector\": \"tab-group-ink-bar-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-ink-bar-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-lazy-loaded\": {\n \"packagePath\": \"material/tabs/tab-group-lazy-loaded\",\n \"title\": \"Tab group where the tab content is loaded lazily (when activated)\",\n \"componentName\": \"TabGroupLazyLoadedExample\",\n \"files\": [\n \"tab-group-lazy-loaded-example.ts\",\n \"tab-group-lazy-loaded-example.html\"\n ],\n \"selector\": \"tab-group-lazy-loaded-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-lazy-loaded-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-paginated\": {\n \"packagePath\": \"material/tabs/tab-group-paginated\",\n \"title\": \"Tab group with paginated tabs\",\n \"componentName\": \"TabGroupPaginatedExample\",\n \"files\": [\n \"tab-group-paginated-example.ts\",\n \"tab-group-paginated-example.html\"\n ],\n \"selector\": \"tab-group-paginated-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-paginated-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-preserve-content\": {\n \"packagePath\": \"material/tabs/tab-group-preserve-content\",\n \"title\": \"Tab group that keeps its content inside the DOM when it's off-screen.\",\n \"componentName\": \"TabGroupPreserveContentExample\",\n \"files\": [\n \"tab-group-preserve-content-example.ts\",\n \"tab-group-preserve-content-example.html\"\n ],\n \"selector\": \"tab-group-preserve-content-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-preserve-content-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-group-stretched\": {\n \"packagePath\": \"material/tabs/tab-group-stretched\",\n \"title\": \"Tab group with stretched labels\",\n \"componentName\": \"TabGroupStretchedExample\",\n \"files\": [\n \"tab-group-stretched-example.ts\",\n \"tab-group-stretched-example.html\",\n \"tab-group-stretched-example.css\"\n ],\n \"selector\": \"tab-group-stretched-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-group-stretched-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"tab-nav-bar-basic\": {\n \"packagePath\": \"material/tabs/tab-nav-bar-basic\",\n \"title\": \"Basic use of the tab nav bar\",\n \"componentName\": \"TabNavBarBasicExample\",\n \"files\": [\n \"tab-nav-bar-basic-example.ts\",\n \"tab-nav-bar-basic-example.html\",\n \"tab-nav-bar-basic-example.css\"\n ],\n \"selector\": \"tab-nav-bar-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tab-nav-bar-basic-example.ts\",\n \"importPath\": \"material/tabs\"\n },\n \"timepicker-custom-icon\": {\n \"packagePath\": \"material/timepicker/timepicker-custom-icon\",\n \"title\": \"Timepicker with custom toggle icon\",\n \"componentName\": \"TimepickerCustomIconExample\",\n \"files\": [\n \"timepicker-custom-icon-example.ts\",\n \"timepicker-custom-icon-example.html\"\n ],\n \"selector\": \"timepicker-custom-icon-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-custom-icon-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-datepicker-integration\": {\n \"packagePath\": \"material/timepicker/timepicker-datepicker-integration\",\n \"title\": \"Timepicker integration with datepicker\",\n \"componentName\": \"TimepickerDatepickerIntegrationExample\",\n \"files\": [\n \"timepicker-datepicker-integration-example.ts\",\n \"timepicker-datepicker-integration-example.html\",\n \"./timepicker-datepicker-integration-example.css\"\n ],\n \"selector\": \"timepicker-datepicker-integration-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-datepicker-integration-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-forms\": {\n \"packagePath\": \"material/timepicker/timepicker-forms\",\n \"title\": \"Timepicker forms integration\",\n \"componentName\": \"TimepickerFormsExample\",\n \"files\": [\n \"timepicker-forms-example.ts\",\n \"timepicker-forms-example.html\"\n ],\n \"selector\": \"timepicker-forms-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-forms-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-harness\": {\n \"packagePath\": \"material/timepicker/timepicker-harness\",\n \"title\": \"Testing with MatTimepickerInputHarness\",\n \"componentName\": \"TimepickerHarnessExample\",\n \"files\": [\n \"timepicker-harness-example.ts\",\n \"timepicker-harness-example.html\",\n \"timepicker-harness-example.spec.ts\"\n ],\n \"selector\": \"timepicker-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-harness-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-locale\": {\n \"packagePath\": \"material/timepicker/timepicker-locale\",\n \"title\": \"Timepicker with different locale\",\n \"componentName\": \"TimepickerLocaleExample\",\n \"files\": [\n \"timepicker-locale-example.ts\",\n \"timepicker-locale-example.html\"\n ],\n \"selector\": \"timepicker-locale-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-locale-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-options\": {\n \"packagePath\": \"material/timepicker/timepicker-options\",\n \"title\": \"Timepicker options customization\",\n \"componentName\": \"TimepickerOptionsExample\",\n \"files\": [\n \"timepicker-options-example.ts\",\n \"timepicker-options-example.html\"\n ],\n \"selector\": \"timepicker-options-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-options-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-overview\": {\n \"packagePath\": \"material/timepicker/timepicker-overview\",\n \"title\": \"Basic timepicker\",\n \"componentName\": \"TimepickerOverviewExample\",\n \"files\": [\n \"timepicker-overview-example.ts\",\n \"timepicker-overview-example.html\"\n ],\n \"selector\": \"timepicker-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-overview-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"timepicker-validation\": {\n \"packagePath\": \"material/timepicker/timepicker-validation\",\n \"title\": \"Timepicker validation\",\n \"componentName\": \"TimepickerValidationExample\",\n \"files\": [\n \"timepicker-validation-example.ts\",\n \"timepicker-validation-example.html\",\n \"./timepicker-validation-example.css\"\n ],\n \"selector\": \"timepicker-validation-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"timepicker-validation-example.ts\",\n \"importPath\": \"material/timepicker\"\n },\n \"toolbar-basic\": {\n \"packagePath\": \"material/toolbar/toolbar-basic\",\n \"title\": \"Basic toolbar\",\n \"componentName\": \"ToolbarBasicExample\",\n \"files\": [\n \"toolbar-basic-example.ts\",\n \"toolbar-basic-example.html\",\n \"toolbar-basic-example.css\"\n ],\n \"selector\": \"toolbar-basic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-basic-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-harness\": {\n \"packagePath\": \"material/toolbar/toolbar-harness\",\n \"title\": \"Testing with MatToolbarHarness\",\n \"componentName\": \"ToolbarHarnessExample\",\n \"files\": [\n \"toolbar-harness-example.ts\",\n \"toolbar-harness-example.html\",\n \"toolbar-harness-example.spec.ts\"\n ],\n \"selector\": \"toolbar-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-harness-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-multirow\": {\n \"packagePath\": \"material/toolbar/toolbar-multirow\",\n \"title\": \"Multi-row toolbar\",\n \"componentName\": \"ToolbarMultirowExample\",\n \"files\": [\n \"toolbar-multirow-example.ts\",\n \"toolbar-multirow-example.html\",\n \"toolbar-multirow-example.css\"\n ],\n \"selector\": \"toolbar-multirow-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-multirow-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-overview\": {\n \"packagePath\": \"material/toolbar/toolbar-overview\",\n \"title\": \"Toolbar overview\",\n \"componentName\": \"ToolbarOverviewExample\",\n \"files\": [\n \"toolbar-overview-example.ts\",\n \"toolbar-overview-example.html\",\n \"toolbar-overview-example.css\"\n ],\n \"selector\": \"toolbar-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-overview-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"toolbar-simple\": {\n \"packagePath\": \"material/toolbar/toolbar-simple\",\n \"title\": \"Toolbar with just text\",\n \"componentName\": \"ToolbarSimpleExample\",\n \"files\": [\n \"toolbar-simple-example.ts\",\n \"toolbar-simple-example.html\"\n ],\n \"selector\": \"toolbar-simple-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"toolbar-simple-example.ts\",\n \"importPath\": \"material/toolbar\"\n },\n \"tooltip-auto-hide\": {\n \"packagePath\": \"material/tooltip/tooltip-auto-hide\",\n \"title\": \"Tooltip that demonstrates auto-hiding when it clips out of its scrolling container.\",\n \"componentName\": \"TooltipAutoHideExample\",\n \"files\": [\n \"tooltip-auto-hide-example.ts\",\n \"tooltip-auto-hide-example.html\",\n \"tooltip-auto-hide-example.css\"\n ],\n \"selector\": \"tooltip-auto-hide-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-auto-hide-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-custom-class\": {\n \"packagePath\": \"material/tooltip/tooltip-custom-class\",\n \"title\": \"Tooltip that can have a custom class applied.\",\n \"componentName\": \"TooltipCustomClassExample\",\n \"files\": [\n \"tooltip-custom-class-example.ts\",\n \"tooltip-custom-class-example.html\",\n \"tooltip-custom-class-example.css\"\n ],\n \"selector\": \"tooltip-custom-class-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-custom-class-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-delay\": {\n \"packagePath\": \"material/tooltip/tooltip-delay\",\n \"title\": \"Tooltip with a show and hide delay\",\n \"componentName\": \"TooltipDelayExample\",\n \"files\": [\n \"tooltip-delay-example.ts\",\n \"tooltip-delay-example.html\",\n \"tooltip-delay-example.css\"\n ],\n \"selector\": \"tooltip-delay-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-delay-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-disabled\": {\n \"packagePath\": \"material/tooltip/tooltip-disabled\",\n \"title\": \"Tooltip that can be disabled\",\n \"componentName\": \"TooltipDisabledExample\",\n \"files\": [\n \"tooltip-disabled-example.ts\",\n \"tooltip-disabled-example.html\",\n \"tooltip-disabled-example.css\"\n ],\n \"selector\": \"tooltip-disabled-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-disabled-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-harness\": {\n \"packagePath\": \"material/tooltip/tooltip-harness\",\n \"title\": \"Testing with MatTooltipHarness\",\n \"componentName\": \"TooltipHarnessExample\",\n \"files\": [\n \"tooltip-harness-example.ts\",\n \"tooltip-harness-example.html\",\n \"tooltip-harness-example.spec.ts\"\n ],\n \"selector\": \"tooltip-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-harness-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-manual\": {\n \"packagePath\": \"material/tooltip/tooltip-manual\",\n \"title\": \"Tooltip that can be manually shown/hidden.\",\n \"componentName\": \"TooltipManualExample\",\n \"files\": [\n \"tooltip-manual-example.ts\",\n \"tooltip-manual-example.html\",\n \"tooltip-manual-example.css\"\n ],\n \"selector\": \"tooltip-manual-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-manual-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-message\": {\n \"packagePath\": \"material/tooltip/tooltip-message\",\n \"title\": \"Tooltip with a changing message\",\n \"componentName\": \"TooltipMessageExample\",\n \"files\": [\n \"tooltip-message-example.ts\",\n \"tooltip-message-example.html\",\n \"tooltip-message-example.css\"\n ],\n \"selector\": \"tooltip-message-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-message-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-modified-defaults\": {\n \"packagePath\": \"material/tooltip/tooltip-modified-defaults\",\n \"title\": \"Tooltip with a show and hide delay\",\n \"componentName\": \"TooltipModifiedDefaultsExample\",\n \"files\": [\n \"tooltip-modified-defaults-example.ts\",\n \"tooltip-modified-defaults-example.html\"\n ],\n \"selector\": \"tooltip-modified-defaults-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-modified-defaults-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-overview\": {\n \"packagePath\": \"material/tooltip/tooltip-overview\",\n \"title\": \"Basic tooltip\",\n \"componentName\": \"TooltipOverviewExample\",\n \"files\": [\n \"tooltip-overview-example.ts\",\n \"tooltip-overview-example.html\"\n ],\n \"selector\": \"tooltip-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-overview-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-position-at-origin\": {\n \"packagePath\": \"material/tooltip/tooltip-position-at-origin\",\n \"title\": \"Basic tooltip\",\n \"componentName\": \"TooltipPositionAtOriginExample\",\n \"files\": [\n \"tooltip-position-at-origin-example.ts\",\n \"tooltip-position-at-origin-example.html\",\n \"tooltip-position-at-origin-example.css\"\n ],\n \"selector\": \"tooltip-position-at-origin-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-position-at-origin-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tooltip-position\": {\n \"packagePath\": \"material/tooltip/tooltip-position\",\n \"title\": \"Tooltip with a custom position\",\n \"componentName\": \"TooltipPositionExample\",\n \"files\": [\n \"tooltip-position-example.ts\",\n \"tooltip-position-example.html\",\n \"tooltip-position-example.css\"\n ],\n \"selector\": \"tooltip-position-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tooltip-position-example.ts\",\n \"importPath\": \"material/tooltip\"\n },\n \"tree-dynamic\": {\n \"packagePath\": \"material/tree/tree-dynamic\",\n \"title\": \"Tree with dynamic data\",\n \"componentName\": \"TreeDynamicExample\",\n \"files\": [\n \"tree-dynamic-example.ts\",\n \"tree-dynamic-example.html\",\n \"tree-dynamic-example.css\"\n ],\n \"selector\": \"tree-dynamic-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-dynamic-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-flat-child-accessor-overview\": {\n \"packagePath\": \"material/tree/tree-flat-child-accessor-overview\",\n \"title\": \"Tree with flat nodes (childrenAccessor)\",\n \"componentName\": \"TreeFlatChildAccessorOverviewExample\",\n \"files\": [\n \"tree-flat-child-accessor-overview-example.ts\",\n \"tree-flat-child-accessor-overview-example.html\"\n ],\n \"selector\": \"tree-flat-child-accessor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-flat-child-accessor-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-flat-overview\": {\n \"packagePath\": \"material/tree/tree-flat-overview\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"TreeFlatOverviewExample\",\n \"files\": [\n \"tree-flat-overview-example.ts\",\n \"tree-flat-overview-example.html\"\n ],\n \"selector\": \"tree-flat-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-flat-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-harness\": {\n \"packagePath\": \"material/tree/tree-harness\",\n \"title\": \"Testing with MatTreeHarness\",\n \"componentName\": \"TreeHarnessExample\",\n \"files\": [\n \"tree-harness-example.ts\",\n \"tree-harness-example.html\",\n \"tree-harness-example.spec.ts\"\n ],\n \"selector\": \"tree-harness-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-harness-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-legacy-keyboard-interface\": {\n \"packagePath\": \"material/tree/tree-legacy-keyboard-interface\",\n \"title\": \"Tree with flat nodes\",\n \"componentName\": \"TreeLegacyKeyboardInterfaceExample\",\n \"files\": [\n \"tree-legacy-keyboard-interface-example.ts\",\n \"tree-legacy-keyboard-interface-example.html\",\n \"tree-legacy-keyboard-interface-example.css\"\n ],\n \"selector\": \"tree-legacy-keyboard-interface-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-legacy-keyboard-interface-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-loadmore\": {\n \"packagePath\": \"material/tree/tree-loadmore\",\n \"title\": \"Tree with partially loaded data\",\n \"componentName\": \"TreeLoadmoreExample\",\n \"files\": [\n \"tree-loadmore-example.ts\",\n \"tree-loadmore-example.html\",\n \"tree-loadmore-example.css\"\n ],\n \"selector\": \"tree-loadmore-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-loadmore-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-nested-child-accessor-overview\": {\n \"packagePath\": \"material/tree/tree-nested-child-accessor-overview\",\n \"title\": \"Tree with nested nodes (childrenAccessor)\",\n \"componentName\": \"TreeNestedChildAccessorOverviewExample\",\n \"files\": [\n \"tree-nested-child-accessor-overview-example.ts\",\n \"tree-nested-child-accessor-overview-example.html\",\n \"tree-nested-child-accessor-overview-example.css\"\n ],\n \"selector\": \"tree-nested-child-accessor-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-nested-child-accessor-overview-example.ts\",\n \"importPath\": \"material/tree\"\n },\n \"tree-nested-overview\": {\n \"packagePath\": \"material/tree/tree-nested-overview\",\n \"title\": \"Tree with nested nodes\",\n \"componentName\": \"TreeNestedOverviewExample\",\n \"files\": [\n \"tree-nested-overview-example.ts\",\n \"tree-nested-overview-example.html\",\n \"tree-nested-overview-example.css\"\n ],\n \"selector\": \"tree-nested-overview-example\",\n \"additionalComponents\": [],\n \"primaryFile\": \"tree-nested-overview-example.ts\",\n \"importPath\": \"material/tree\"\n }\n};\nexport async function loadExample(id: string): Promise {\n switch (id) {\n case 'cdk-popover-edit-cdk-table-flex':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-cdk-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-cell-span-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-tab-out-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-popover-edit-vanilla-table':\nreturn import('@angular/components-examples/cdk-experimental/popover-edit');\n case 'cdk-selection-column':\nreturn import('@angular/components-examples/cdk-experimental/selection');\n case 'cdk-selection-list':\nreturn import('@angular/components-examples/cdk-experimental/selection');\n case 'focus-monitor-directives':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'focus-monitor-focus-via':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'focus-monitor-overview':\nreturn import('@angular/components-examples/cdk/a11y');\n case 'cdk-accordion-overview':\nreturn import('@angular/components-examples/cdk/accordion');\n case 'cdk-clipboard-overview':\nreturn import('@angular/components-examples/cdk/clipboard');\n case 'cdk-dialog-data':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-dialog-overview':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-dialog-styling':\nreturn import('@angular/components-examples/cdk/dialog');\n case 'cdk-drag-drop-axis-lock':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-boundary':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-connected-sorting-group':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-connected-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-custom-placeholder':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-custom-preview':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-delay':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-disabled-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-disabled':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-enter-predicate':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-free-drag-position':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-handle':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-horizontal-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-mixed-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-overview':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-root-element':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-sort-predicate':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-sorting':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-table':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'cdk-drag-drop-tabs':\nreturn import('@angular/components-examples/cdk/drag-drop');\n case 'breakpoint-observer-overview':\nreturn import('@angular/components-examples/cdk/layout');\n case 'cdk-listbox-activedescendant':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-compare-with':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-custom-navigation':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-custom-typeahead':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-disabled':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-forms-validation':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-horizontal':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-multiple':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-overview':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-reactive-forms':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-template-forms':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-listbox-value-binding':\nreturn import('@angular/components-examples/cdk/listbox');\n case 'cdk-menu-context':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-inline':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-menubar':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-nested-context':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-standalone-menu':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-menu-standalone-stateful-menu':\nreturn import('@angular/components-examples/cdk/menu');\n case 'cdk-overlay-basic':\nreturn import('@angular/components-examples/cdk/overlay');\n case 'cdk-platform-overview':\nreturn import('@angular/components-examples/cdk/platform');\n case 'cdk-portal-overview':\nreturn import('@angular/components-examples/cdk/portal');\n case 'cdk-virtual-scroll-append-only':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-context':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-custom-strategy':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-data-source':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-dl':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-fixed-buffer':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-horizontal':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-overview':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-parent-scrolling':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-template-cache':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-virtual-scroll-window-scrolling':\nreturn import('@angular/components-examples/cdk/scrolling');\n case 'cdk-custom-stepper-without-form':\nreturn import('@angular/components-examples/cdk/stepper');\n case 'cdk-linear-stepper-with-form':\nreturn import('@angular/components-examples/cdk/stepper');\n case 'cdk-table-basic':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-fixed-layout':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-flex-basic':\nreturn import('@angular/components-examples/cdk/table');\n case 'cdk-table-recycle-rows':\nreturn import('@angular/components-examples/cdk/table');\n case 'text-field-autofill-directive':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'text-field-autofill-monitor':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'text-field-autosize-textarea':\nreturn import('@angular/components-examples/cdk/text-field');\n case 'cdk-tree-complex':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-custom-key-manager':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat-children-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat-level-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-flat':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested-children-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested-level-accessor':\nreturn import('@angular/components-examples/cdk/tree');\n case 'cdk-tree-nested':\nreturn import('@angular/components-examples/cdk/tree');\n case 'default-enabled-column-resize-flex':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'default-enabled-column-resize':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'opt-in-column-resize':\nreturn import('@angular/components-examples/material-experimental/column-resize');\n case 'popover-edit-cell-span-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-mat-table-flex':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'popover-edit-tab-out-mat-table':\nreturn import('@angular/components-examples/material-experimental/popover-edit');\n case 'mat-selection-column':\nreturn import('@angular/components-examples/material-experimental/selection');\n case 'mat-selection-list':\nreturn import('@angular/components-examples/material-experimental/selection');\n case 'autocomplete-auto-active-first-option':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-display':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-filter':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-harness':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-optgroup':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-overview':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-plain-input':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-require-selection':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'autocomplete-simple':\nreturn import('@angular/components-examples/material/autocomplete');\n case 'badge-harness':\nreturn import('@angular/components-examples/material/badge');\n case 'badge-overview':\nreturn import('@angular/components-examples/material/badge');\n case 'bottom-sheet-harness':\nreturn import('@angular/components-examples/material/bottom-sheet');\n case 'bottom-sheet-overview':\nreturn import('@angular/components-examples/material/bottom-sheet');\n case 'button-toggle-appearance':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-forms':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-harness':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-mode':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-toggle-overview':\nreturn import('@angular/components-examples/material/button-toggle');\n case 'button-disabled-interactive':\nreturn import('@angular/components-examples/material/button');\n case 'button-harness':\nreturn import('@angular/components-examples/material/button');\n case 'button-overview':\nreturn import('@angular/components-examples/material/button');\n case 'card-actions':\nreturn import('@angular/components-examples/material/card');\n case 'card-footer':\nreturn import('@angular/components-examples/material/card');\n case 'card-harness':\nreturn import('@angular/components-examples/material/card');\n case 'card-media-size':\nreturn import('@angular/components-examples/material/card');\n case 'card-overview':\nreturn import('@angular/components-examples/material/card');\n case 'checkbox-configurable':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-harness':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-overview':\nreturn import('@angular/components-examples/material/checkbox');\n case 'checkbox-reactive-forms':\nreturn import('@angular/components-examples/material/checkbox');\n case 'chips-autocomplete':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-avatar':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-drag-drop':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-form-control':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-harness':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-input':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-overview':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-reactive-form':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-stacked':\nreturn import('@angular/components-examples/material/chips');\n case 'chips-template-form':\nreturn import('@angular/components-examples/material/chips');\n case 'elevation-overview':\nreturn import('@angular/components-examples/material/core');\n case 'ripple-overview':\nreturn import('@angular/components-examples/material/core');\n case 'date-range-picker-comparison':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-forms':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-overview':\nreturn import('@angular/components-examples/material/datepicker');\n case 'date-range-picker-selection-strategy':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-actions':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-api':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-custom-header':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-custom-icon':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-date-class':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-dialog':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-disabled':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-events':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-filter':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-formats':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-harness':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-inline-calendar':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-locale':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-min-max':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-moment':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-overview':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-start-view':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-touch':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-value':\nreturn import('@angular/components-examples/material/datepicker');\n case 'datepicker-views-selection':\nreturn import('@angular/components-examples/material/datepicker');\n case 'dialog-animations':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-content':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-data':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-elements':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-from-menu':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-harness':\nreturn import('@angular/components-examples/material/dialog');\n case 'dialog-overview':\nreturn import('@angular/components-examples/material/dialog');\n case 'divider-harness':\nreturn import('@angular/components-examples/material/divider');\n case 'divider-overview':\nreturn import('@angular/components-examples/material/divider');\n case 'expansion-expand-collapse-all':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-harness':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-overview':\nreturn import('@angular/components-examples/material/expansion');\n case 'expansion-steps':\nreturn import('@angular/components-examples/material/expansion');\n case 'form-field-appearance':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-custom-control':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-error':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-harness':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-hint':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-label':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-overview':\nreturn import('@angular/components-examples/material/form-field');\n case 'form-field-prefix-suffix':\nreturn import('@angular/components-examples/material/form-field');\n case 'grid-list-dynamic':\nreturn import('@angular/components-examples/material/grid-list');\n case 'grid-list-harness':\nreturn import('@angular/components-examples/material/grid-list');\n case 'grid-list-overview':\nreturn import('@angular/components-examples/material/grid-list');\n case 'icon-harness':\nreturn import('@angular/components-examples/material/icon');\n case 'icon-overview':\nreturn import('@angular/components-examples/material/icon');\n case 'icon-svg':\nreturn import('@angular/components-examples/material/icon');\n case 'input-clearable':\nreturn import('@angular/components-examples/material/input');\n case 'input-error-state-matcher':\nreturn import('@angular/components-examples/material/input');\n case 'input-errors':\nreturn import('@angular/components-examples/material/input');\n case 'input-form':\nreturn import('@angular/components-examples/material/input');\n case 'input-harness':\nreturn import('@angular/components-examples/material/input');\n case 'input-hint':\nreturn import('@angular/components-examples/material/input');\n case 'input-overview':\nreturn import('@angular/components-examples/material/input');\n case 'input-prefix-suffix':\nreturn import('@angular/components-examples/material/input');\n case 'list-harness':\nreturn import('@angular/components-examples/material/list');\n case 'list-overview':\nreturn import('@angular/components-examples/material/list');\n case 'list-sections':\nreturn import('@angular/components-examples/material/list');\n case 'list-selection':\nreturn import('@angular/components-examples/material/list');\n case 'list-single-selection-reactive-form':\nreturn import('@angular/components-examples/material/list');\n case 'list-single-selection':\nreturn import('@angular/components-examples/material/list');\n case 'list-variants':\nreturn import('@angular/components-examples/material/list');\n case 'menu-harness':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-icons':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-nested':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-overview':\nreturn import('@angular/components-examples/material/menu');\n case 'menu-position':\nreturn import('@angular/components-examples/material/menu');\n case 'paginator-configurable':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-harness':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-intl':\nreturn import('@angular/components-examples/material/paginator');\n case 'paginator-overview':\nreturn import('@angular/components-examples/material/paginator');\n case 'progress-bar-buffer':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-configurable':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-determinate':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-harness':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-indeterminate':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-bar-query':\nreturn import('@angular/components-examples/material/progress-bar');\n case 'progress-spinner-configurable':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'progress-spinner-harness':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'progress-spinner-overview':\nreturn import('@angular/components-examples/material/progress-spinner');\n case 'radio-harness':\nreturn import('@angular/components-examples/material/radio');\n case 'radio-ng-model':\nreturn import('@angular/components-examples/material/radio');\n case 'radio-overview':\nreturn import('@angular/components-examples/material/radio');\n case 'select-custom-trigger':\nreturn import('@angular/components-examples/material/select');\n case 'select-disabled':\nreturn import('@angular/components-examples/material/select');\n case 'select-error-state-matcher':\nreturn import('@angular/components-examples/material/select');\n case 'select-form':\nreturn import('@angular/components-examples/material/select');\n case 'select-harness':\nreturn import('@angular/components-examples/material/select');\n case 'select-hint-error':\nreturn import('@angular/components-examples/material/select');\n case 'select-initial-value':\nreturn import('@angular/components-examples/material/select');\n case 'select-multiple':\nreturn import('@angular/components-examples/material/select');\n case 'select-no-ripple':\nreturn import('@angular/components-examples/material/select');\n case 'select-optgroup':\nreturn import('@angular/components-examples/material/select');\n case 'select-overview':\nreturn import('@angular/components-examples/material/select');\n case 'select-panel-class':\nreturn import('@angular/components-examples/material/select');\n case 'select-reactive-form':\nreturn import('@angular/components-examples/material/select');\n case 'select-reset':\nreturn import('@angular/components-examples/material/select');\n case 'select-selectable-null':\nreturn import('@angular/components-examples/material/select');\n case 'select-value-binding':\nreturn import('@angular/components-examples/material/select');\n case 'sidenav-autosize':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-backdrop':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-configurable-focus-trap':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-disable-close':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-drawer-overview':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-fixed':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-harness':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-mode':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-open-close':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-overview':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-position':\nreturn import('@angular/components-examples/material/sidenav');\n case 'sidenav-responsive':\nreturn import('@angular/components-examples/material/sidenav');\n case 'slide-toggle-configurable':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-forms':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-harness':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slide-toggle-overview':\nreturn import('@angular/components-examples/material/slide-toggle');\n case 'slider-configurable':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-formatting':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-harness':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-overview':\nreturn import('@angular/components-examples/material/slider');\n case 'slider-range':\nreturn import('@angular/components-examples/material/slider');\n case 'snack-bar-annotated-component':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-component':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-harness':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-overview':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'snack-bar-position':\nreturn import('@angular/components-examples/material/snack-bar');\n case 'sort-harness':\nreturn import('@angular/components-examples/material/sort');\n case 'sort-overview':\nreturn import('@angular/components-examples/material/sort');\n case 'stepper-animations':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-editable':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-errors':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-harness':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-header-position':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-intl':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-label-position-bottom':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-lazy-content':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-optional':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-overview':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-responsive':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-states':\nreturn import('@angular/components-examples/material/stepper');\n case 'stepper-vertical':\nreturn import('@angular/components-examples/material/stepper');\n case 'table-basic':\nreturn import('@angular/components-examples/material/table');\n case 'table-column-styling':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-array-data':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-dynamic-observable-data':\nreturn import('@angular/components-examples/material/table');\n case 'table-expandable-rows':\nreturn import('@angular/components-examples/material/table');\n case 'table-filtering':\nreturn import('@angular/components-examples/material/table');\n case 'table-flex-basic':\nreturn import('@angular/components-examples/material/table');\n case 'table-flex-large-row':\nreturn import('@angular/components-examples/material/table');\n case 'table-footer-row':\nreturn import('@angular/components-examples/material/table');\n case 'table-generated-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-harness':\nreturn import('@angular/components-examples/material/table');\n case 'table-http':\nreturn import('@angular/components-examples/material/table');\n case 'table-multiple-header-footer':\nreturn import('@angular/components-examples/material/table');\n case 'table-multiple-row-template':\nreturn import('@angular/components-examples/material/table');\n case 'table-overview':\nreturn import('@angular/components-examples/material/table');\n case 'table-pagination':\nreturn import('@angular/components-examples/material/table');\n case 'table-recycle-rows':\nreturn import('@angular/components-examples/material/table');\n case 'table-reorderable':\nreturn import('@angular/components-examples/material/table');\n case 'table-row-binding':\nreturn import('@angular/components-examples/material/table');\n case 'table-row-context':\nreturn import('@angular/components-examples/material/table');\n case 'table-selection':\nreturn import('@angular/components-examples/material/table');\n case 'table-sorting':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-columns':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-complex-flex':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-complex':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-footer':\nreturn import('@angular/components-examples/material/table');\n case 'table-sticky-header':\nreturn import('@angular/components-examples/material/table');\n case 'table-text-column-advanced':\nreturn import('@angular/components-examples/material/table');\n case 'table-text-column':\nreturn import('@angular/components-examples/material/table');\n case 'table-with-ripples':\nreturn import('@angular/components-examples/material/table');\n case 'table-wrapped':\nreturn import('@angular/components-examples/material/table');\n case 'tab-group-align':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-animations':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-async':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-basic':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-custom-label':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-dynamic-height':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-dynamic':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-harness':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-header-below':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-ink-bar':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-lazy-loaded':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-paginated':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-preserve-content':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-group-stretched':\nreturn import('@angular/components-examples/material/tabs');\n case 'tab-nav-bar-basic':\nreturn import('@angular/components-examples/material/tabs');\n case 'timepicker-custom-icon':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-datepicker-integration':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-forms':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-harness':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-locale':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-options':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-overview':\nreturn import('@angular/components-examples/material/timepicker');\n case 'timepicker-validation':\nreturn import('@angular/components-examples/material/timepicker');\n case 'toolbar-basic':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-harness':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-multirow':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-overview':\nreturn import('@angular/components-examples/material/toolbar');\n case 'toolbar-simple':\nreturn import('@angular/components-examples/material/toolbar');\n case 'tooltip-auto-hide':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-custom-class':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-delay':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-disabled':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-harness':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-manual':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-message':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-modified-defaults':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-overview':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-position-at-origin':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tooltip-position':\nreturn import('@angular/components-examples/material/tooltip');\n case 'tree-dynamic':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-flat-child-accessor-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-flat-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-harness':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-legacy-keyboard-interface':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-loadmore':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-nested-child-accessor-overview':\nreturn import('@angular/components-examples/material/tree');\n case 'tree-nested-overview':\nreturn import('@angular/components-examples/material/tree');\n default:\nreturn undefined;\n }\n}","// The example-module file will be auto-generated. As soon as the\n// examples are being compiled, the module file will be generated.\nimport {EXAMPLE_COMPONENTS} from './example-module';\n\n/**\n * Example data with information about component name, selector, files used in\n * example, and path to examples.\n */\nexport class ExampleData {\n /** Description of the example. */\n description: string;\n\n /** List of files that are part of this example. */\n exampleFiles: string[];\n\n /** Selector name of the example component. */\n selectorName: string;\n\n /** Name of the file that contains the example component. */\n indexFilename: string;\n\n /** Names of the components being used in this example. */\n componentNames: string[];\n\n constructor(example: string) {\n if (!example || !EXAMPLE_COMPONENTS.hasOwnProperty(example)) {\n return;\n }\n\n const {componentName, files, selector, primaryFile, additionalComponents, title} =\n EXAMPLE_COMPONENTS[example];\n const exampleName = example.replace(/(?:^\\w|\\b\\w)/g, letter => letter.toUpperCase());\n\n this.exampleFiles = files;\n this.selectorName = selector;\n this.indexFilename = primaryFile;\n this.description = title || exampleName.replace(/[\\-]+/g, ' ') + ' Example';\n this.componentNames = [componentName, ...additionalComponents];\n }\n}\n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material-experimental/column-resize.mjs b/fesm2022/material-experimental/column-resize.mjs index c563b7952d..8b0caeaebb 100755 --- a/fesm2022/material-experimental/column-resize.mjs +++ b/fesm2022/material-experimental/column-resize.mjs @@ -1,6 +1,6 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; -import * as i2 from '@angular/material/table'; +import * as i1$1 from '@angular/material/table'; import { MatTableModule } from '@angular/material/table'; import * as i1 from '@angular/material-experimental/column-resize'; import { MatDefaultEnabledColumnResizeModule, MatColumnResizeModule } from '@angular/material-experimental/column-resize'; @@ -33,10 +33,10 @@ const ELEMENT_DATA$2 = [ class DefaultEnabledColumnResizeExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$2; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DefaultEnabledColumnResizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DefaultEnabledColumnResizeExample, isStandalone: true, selector: "default-enabled-column-resize-example", ngImport: i0, template: "
    \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatDefaultEnabledColumnResizeModule }, { kind: "directive", type: i1.MatDefaultEnabledColumnResize, selector: "table[mat-table]" }, { kind: "directive", type: i1.MatDefaultResizable, selector: "mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i2.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i2.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i2.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i2.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i2.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i2.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i2.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i2.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i2.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i2.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DefaultEnabledColumnResizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DefaultEnabledColumnResizeExample, isStandalone: true, selector: "default-enabled-column-resize-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatDefaultEnabledColumnResizeModule }, { kind: "directive", type: i1.MatDefaultEnabledColumnResize, selector: "table[mat-table]" }, { kind: "directive", type: i1.MatDefaultResizable, selector: "mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DefaultEnabledColumnResizeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DefaultEnabledColumnResizeExample, decorators: [{ type: Component, args: [{ selector: 'default-enabled-column-resize-example', imports: [MatDefaultEnabledColumnResizeModule, MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"] }] }] }); @@ -69,10 +69,10 @@ const ELEMENT_DATA$1 = [ class DefaultEnabledColumnResizeFlexExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$1; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DefaultEnabledColumnResizeFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DefaultEnabledColumnResizeFlexExample, isStandalone: true, selector: "default-enabled-column-resize-flex-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight (Not resizable) \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatDefaultEnabledColumnResizeModule }, { kind: "directive", type: i1.MatDefaultEnabledColumnResizeFlex, selector: "mat-table" }, { kind: "directive", type: i1.MatDefaultResizable, selector: "mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i2.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i2.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i2.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i2.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i2.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i2.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i2.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i2.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i2.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i2.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DefaultEnabledColumnResizeFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DefaultEnabledColumnResizeFlexExample, isStandalone: true, selector: "default-enabled-column-resize-flex-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight (Not resizable) \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatDefaultEnabledColumnResizeModule }, { kind: "directive", type: i1.MatDefaultEnabledColumnResizeFlex, selector: "mat-table" }, { kind: "directive", type: i1.MatDefaultResizable, selector: "mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DefaultEnabledColumnResizeFlexExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DefaultEnabledColumnResizeFlexExample, decorators: [{ type: Component, args: [{ selector: 'default-enabled-column-resize-flex-example', imports: [MatDefaultEnabledColumnResizeModule, MatTableModule], template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight (Not resizable) \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"] }] }] }); @@ -105,17 +105,13 @@ const ELEMENT_DATA = [ class OptInColumnResizeExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: OptInColumnResizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: OptInColumnResizeExample, isStandalone: true, selector: "opt-in-column-resize-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i2.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i2.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i2.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i2.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i2.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i2.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i2.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i2.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i2.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i2.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatColumnResizeModule }, { kind: "directive", type: i1.MatColumnResize, selector: "table[mat-table][columnResize]" }, { kind: "directive", type: i1.MatResizable, selector: "mat-header-cell[resizable], th[mat-header-cell][resizable]", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: OptInColumnResizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: OptInColumnResizeExample, isStandalone: true, selector: "opt-in-column-resize-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatColumnResizeModule }, { kind: "directive", type: i1.MatColumnResize, selector: "table[mat-table][columnResize]" }, { kind: "directive", type: i1.MatResizable, selector: "mat-header-cell[resizable], th[mat-header-cell][resizable]", inputs: ["matResizableMinWidthPx", "matResizableMaxWidthPx"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: OptInColumnResizeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: OptInColumnResizeExample, decorators: [{ type: Component, args: [{ selector: 'opt-in-column-resize-example', imports: [MatTableModule, MatColumnResizeModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [":host {\n display: block;\n overflow: auto;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { DefaultEnabledColumnResizeExample, DefaultEnabledColumnResizeFlexExample, OptInColumnResizeExample }; //# sourceMappingURL=column-resize.mjs.map diff --git a/fesm2022/material-experimental/column-resize.mjs.map b/fesm2022/material-experimental/column-resize.mjs.map index e3b59f2de4..bbb8474820 100755 --- a/fesm2022/material-experimental/column-resize.mjs.map +++ b/fesm2022/material-experimental/column-resize.mjs.map @@ -1 +1 @@ -{"version":3,"file":"column-resize.mjs","sources":["../../../../../../../src/components-examples/material-experimental/column-resize/default-enabled-column-resize/default-enabled-column-resize-example.ts","../../../../../../../src/components-examples/material-experimental/column-resize/default-enabled-column-resize/default-enabled-column-resize-example.html","../../../../../../../src/components-examples/material-experimental/column-resize/default-enabled-column-resize-flex/default-enabled-column-resize-flex-example.ts","../../../../../../../src/components-examples/material-experimental/column-resize/default-enabled-column-resize-flex/default-enabled-column-resize-flex-example.html","../../../../../../../src/components-examples/material-experimental/column-resize/opt-in-column-resize/opt-in-column-resize-example.ts","../../../../../../../src/components-examples/material-experimental/column-resize/opt-in-column-resize/opt-in-column-resize-example.html","../../../../../../../src/components-examples/material-experimental/column-resize/column-resize_public_index.ts"],"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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatDefaultEnabledColumnResizeModule} from '@angular/material-experimental/column-resize';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Default-enabled column resize with a table-based mat-table.\n */\n@Component({\n selector: 'default-enabled-column-resize-example',\n templateUrl: 'default-enabled-column-resize-example.html',\n styleUrl: 'default-enabled-column-resize-example.css',\n imports: [MatDefaultEnabledColumnResizeModule, MatTableModule],\n})\nexport class DefaultEnabledColumnResizeExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n","/**\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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatDefaultEnabledColumnResizeModule} from '@angular/material-experimental/column-resize';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Default-enabled column resize with a flex-based mat-table.\n */\n@Component({\n selector: 'default-enabled-column-resize-flex-example',\n templateUrl: 'default-enabled-column-resize-flex-example.html',\n styleUrl: 'default-enabled-column-resize-flex-example.css',\n imports: [MatDefaultEnabledColumnResizeModule, MatTableModule],\n})\nexport class DefaultEnabledColumnResizeFlexExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight (Not resizable) \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n","/**\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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatColumnResizeModule} from '@angular/material-experimental/column-resize';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Opt-in column resize with a table-based mat-table.\n */\n@Component({\n selector: 'opt-in-column-resize-example',\n templateUrl: 'opt-in-column-resize-example.html',\n styleUrl: 'opt-in-column-resize-example.css',\n imports: [MatTableModule, MatColumnResizeModule],\n})\nexport class OptInColumnResizeExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["ELEMENT_DATA","i2"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"column-resize.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/default-enabled-column-resize/default-enabled-column-resize-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/default-enabled-column-resize/default-enabled-column-resize-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/default-enabled-column-resize-flex/default-enabled-column-resize-flex-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/default-enabled-column-resize-flex/default-enabled-column-resize-flex-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/opt-in-column-resize/opt-in-column-resize-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/column-resize/opt-in-column-resize/opt-in-column-resize-example.html"],"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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatDefaultEnabledColumnResizeModule} from '@angular/material-experimental/column-resize';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Default-enabled column resize with a table-based mat-table.\n */\n@Component({\n selector: 'default-enabled-column-resize-example',\n templateUrl: 'default-enabled-column-resize-example.html',\n styleUrl: 'default-enabled-column-resize-example.css',\n imports: [MatDefaultEnabledColumnResizeModule, MatTableModule],\n})\nexport class DefaultEnabledColumnResizeExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n","/**\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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatDefaultEnabledColumnResizeModule} from '@angular/material-experimental/column-resize';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Default-enabled column resize with a flex-based mat-table.\n */\n@Component({\n selector: 'default-enabled-column-resize-flex-example',\n templateUrl: 'default-enabled-column-resize-flex-example.html',\n styleUrl: 'default-enabled-column-resize-flex-example.css',\n imports: [MatDefaultEnabledColumnResizeModule, MatTableModule],\n})\nexport class DefaultEnabledColumnResizeFlexExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight (Not resizable) \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n\n","/**\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.dev/license\n */\n\nimport {Component} from '@angular/core';\nimport {MatColumnResizeModule} from '@angular/material-experimental/column-resize';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Opt-in column resize with a table-based mat-table.\n */\n@Component({\n selector: 'opt-in-column-resize-example',\n templateUrl: 'opt-in-column-resize-example.html',\n styleUrl: 'opt-in-column-resize-example.css',\n imports: [MatTableModule, MatColumnResizeModule],\n})\nexport class OptInColumnResizeExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight (Not resizable) {{element.weight}} Symbol {{element.symbol}}
    \n"],"names":["ELEMENT_DATA","i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material-experimental/popover-edit.mjs b/fesm2022/material-experimental/popover-edit.mjs index f4c6bd05f8..a8106c3c5c 100755 --- a/fesm2022/material-experimental/popover-edit.mjs +++ b/fesm2022/material-experimental/popover-edit.mjs @@ -1,27 +1,27 @@ import * as i0 from '@angular/core'; import { Component, inject, ChangeDetectionStrategy } from '@angular/core'; import { DataSource } from '@angular/cdk/collections'; -import * as i2$1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; -import * as i8 from '@angular/material/icon'; +import * as i3$1 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i7 from '@angular/material/button'; +import * as i1$3 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i6 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i5 from '@angular/material/form-field'; +import * as i1$2 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i4 from '@angular/material-experimental/popover-edit'; import { MatPopoverEditModule } from '@angular/material-experimental/popover-edit'; -import * as i2 from '@angular/cdk-experimental/popover-edit'; +import * as i1$1 from '@angular/cdk-experimental/popover-edit'; import { CdkPopoverEditModule, FormValueContainer } from '@angular/cdk-experimental/popover-edit'; import * as i1 from '@angular/material/table'; import { MatTableModule } from '@angular/material/table'; import { BehaviorSubject } from 'rxjs'; import { MatSnackBar } from '@angular/material/snack-bar'; -import * as i10 from '@angular/material/list'; +import * as i1$4 from '@angular/material/list'; import { MatListModule } from '@angular/material/list'; -import * as i9 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; const PERSON_DATA = [ @@ -50,10 +50,10 @@ class PopoverEditCellSpanMatTableExample { person.middleName = f.value['middleName']; person.lastName = f.value['lastName']; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditCellSpanMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PopoverEditCellSpanMatTableExample, isStandalone: true, selector: "popover-edit-cell-span-mat-table-example", ngImport: i0, template: "\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n min-width: 300px;\n width: 25%;\n}\n\n.example-input-container {\n display: flex;\n justify-content: stretch;\n}\n\n.example-input-container mat-form-field {\n flex: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: CdkPopoverEditModule }, { kind: "directive", type: i2.CdkEditRevert, selector: "button[cdkEditRevert]", inputs: ["type"] }, { kind: "directive", type: i2.CdkEditClose, selector: "[cdkEditClose]" }, { kind: "directive", type: i2.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i7.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i7.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditCellSpanMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PopoverEditCellSpanMatTableExample, isStandalone: true, selector: "popover-edit-cell-span-mat-table-example", ngImport: i0, template: "\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n min-width: 300px;\n width: 25%;\n}\n\n.example-input-container {\n display: flex;\n justify-content: stretch;\n}\n\n.example-input-container mat-form-field {\n flex: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: CdkPopoverEditModule }, { kind: "directive", type: i1$1.CdkEditRevert, selector: "button[cdkEditRevert]", inputs: ["type"] }, { kind: "directive", type: i1$1.CdkEditClose, selector: "[cdkEditClose]" }, { kind: "directive", type: i1$1.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1$3.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditCellSpanMatTableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditCellSpanMatTableExample, decorators: [{ type: Component, args: [{ selector: 'popover-edit-cell-span-mat-table-example', imports: [ MatTableModule, @@ -64,7 +64,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatInputModule, MatButtonModule, MatIconModule, - ], template: "\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n min-width: 300px;\n width: 25%;\n}\n\n.example-input-container {\n display: flex;\n justify-content: stretch;\n}\n\n.example-input-container mat-form-field {\n flex: 1;\n}\n"] }] + ], template: "\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n min-width: 300px;\n width: 25%;\n}\n\n.example-input-container {\n display: flex;\n justify-content: stretch;\n}\n\n.example-input-container mat-form-field {\n flex: 1;\n}\n"] }] }] }); /** * Data source to provide what data should be rendered in the table. Note that the data source @@ -73,7 +73,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$3 extends DataSource { +let ExampleDataSource$3 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(PERSON_DATA); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -81,7 +81,7 @@ class ExampleDataSource$3 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA$2 = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -125,10 +125,10 @@ class PopoverEditMatTableFlexExample { } element.weight = f.value.weight; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditMatTableFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PopoverEditMatTableFlexExample, isStandalone: true, selector: "popover-edit-mat-table-flex-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n/*.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}*/\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditRevert, selector: "button[matEditRevert]" }, { kind: "directive", type: i4.MatEditClose, selector: "[matEditClose]" }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "directive", type: i2.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i7.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i7.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditMatTableFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PopoverEditMatTableFlexExample, isStandalone: true, selector: "popover-edit-mat-table-flex-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n/*.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}*/\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditRevert, selector: "button[matEditRevert]" }, { kind: "directive", type: i4.MatEditClose, selector: "[matEditClose]" }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "directive", type: i1$1.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1$3.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditMatTableFlexExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditMatTableFlexExample, decorators: [{ type: Component, args: [{ selector: 'popover-edit-mat-table-flex-example', imports: [ MatTableModule, @@ -138,7 +138,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatInputModule, MatButtonModule, MatIconModule, - ], template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n/*.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}*/\n"] }] + ], template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n/*.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}*/\n"] }] }] }); /** * Data source to provide what data should be rendered in the table. Note that the data source @@ -147,7 +147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$2 extends DataSource { +let ExampleDataSource$2 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(ELEMENT_DATA$2); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -155,7 +155,7 @@ class ExampleDataSource$2 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA$1 = [ { @@ -381,10 +381,10 @@ class PopoverEditMatTableExample { duration: 2000, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: PopoverEditMatTableExample, isStandalone: true, selector: "popover-edit-mat-table-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 16%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: CdkPopoverEditModule }, { kind: "directive", type: i2.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditRevert, selector: "button[matEditRevert]" }, { kind: "directive", type: i4.MatEditClose, selector: "[matEditClose]" }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i7.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i7.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i9.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i10.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i10.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: PopoverEditMatTableExample, isStandalone: true, selector: "popover-edit-mat-table-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 16%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: CdkPopoverEditModule }, { kind: "directive", type: i1$1.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEdit, selector: "[matPopoverEdit]:not([matPopoverEditTabOut])", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditRevert, selector: "button[matEditRevert]" }, { kind: "directive", type: i4.MatEditClose, selector: "[matEditClose]" }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$3.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1$3.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1$4.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1$4.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditMatTableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditMatTableExample, decorators: [{ type: Component, args: [{ selector: 'popover-edit-mat-table-example', imports: [ MatTableModule, @@ -397,7 +397,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatIconModule, MatCheckboxModule, MatListModule, - ], template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 16%;\n}\n"] }] + ], template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 16%;\n}\n"] }] }] }); /** * Data source to provide what data should be rendered in the table. Note that the data source @@ -406,7 +406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -class ExampleDataSource$1 extends DataSource { +let ExampleDataSource$1 = class ExampleDataSource extends DataSource { /** Stream of data that is provided to the table. */ data = new BehaviorSubject(ELEMENT_DATA$1); /** Connect function called by the table to retrieve one stream containing the data to render. */ @@ -414,7 +414,7 @@ class ExampleDataSource$1 extends DataSource { return this.data; } disconnect() { } -} +}; const ELEMENT_DATA = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -458,10 +458,10 @@ class PopoverEditTabOutMatTableExample { } element.weight = f.value.weight; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditTabOutMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PopoverEditTabOutMatTableExample, isStandalone: true, selector: "popover-edit-tab-out-mat-table-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name \n {{element.name}}\n\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n edit\n \n
    Weight \n {{element.weight}}\n\n \n edit\n \n Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEditTabOut, selector: "[matPopoverEdit][matPopoverEditTabOut]", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "directive", type: i2.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i6.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i8.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditTabOutMatTableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PopoverEditTabOutMatTableExample, isStandalone: true, selector: "popover-edit-tab-out-mat-table-example", ngImport: i0, template: "\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name \n {{element.name}}\n\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n edit\n \n
    Weight \n {{element.weight}}\n\n \n edit\n \n Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n\n.example-table th {\n text-align: left;\n}\n\n.example-table td,\n.example-table th {\n width: 25%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatPopoverEditModule }, { kind: "directive", type: i4.MatPopoverEditTabOut, selector: "[matPopoverEdit][matPopoverEditTabOut]", inputs: ["matPopoverEdit", "matPopoverEditContext", "matPopoverEditColspan", "matPopoverEditDisabled", "matPopoverEditAriaLabel"] }, { kind: "directive", type: i4.MatRowHoverContent, selector: "[matRowHoverContent]" }, { kind: "directive", type: i4.MatEditLens, selector: "form[matEditLens]", inputs: ["matEditLensClickOutBehavior", "matEditLensPreservedFormValue", "matEditLensIgnoreSubmitUnlessValid"], outputs: ["matEditLensPreservedFormValueChange"] }, { kind: "directive", type: i4.MatEditOpen, selector: "[matEditOpen]" }, { kind: "directive", type: i1$1.CdkEditable, selector: "table[editable], cdk-table[editable], mat-table[editable]" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PopoverEditTabOutMatTableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PopoverEditTabOutMatTableExample, decorators: [{ type: Component, args: [{ selector: 'popover-edit-tab-out-mat-table-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [ MatTableModule, @@ -489,9 +489,5 @@ class ExampleDataSource extends DataSource { disconnect() { } } -/** - * Generated bundle index. Do not edit. - */ - export { PopoverEditCellSpanMatTableExample, PopoverEditMatTableExample, PopoverEditMatTableFlexExample, PopoverEditTabOutMatTableExample }; //# sourceMappingURL=popover-edit.mjs.map diff --git a/fesm2022/material-experimental/popover-edit.mjs.map b/fesm2022/material-experimental/popover-edit.mjs.map index 7f641ae495..ad0146ca07 100755 --- a/fesm2022/material-experimental/popover-edit.mjs.map +++ b/fesm2022/material-experimental/popover-edit.mjs.map @@ -1 +1 @@ -{"version":3,"file":"popover-edit.mjs","sources":["../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example.ts","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example.html","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.ts","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.ts","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-tab-out-mat-table/popover-edit-tab-out-mat-table-example.ts","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit-tab-out-mat-table/popover-edit-tab-out-mat-table-example.html","../../../../../../../src/components-examples/material-experimental/popover-edit/popover-edit_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {CdkPopoverEditModule} from '@angular/cdk-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface Person {\n id: number;\n firstName: string;\n middleName: string;\n lastName: string;\n}\n\nconst PERSON_DATA: Person[] = [\n {id: 1, firstName: 'Terra', middleName: 'Maduin', lastName: 'Branford'},\n {id: 2, firstName: 'Locke', middleName: '', lastName: 'Cole'},\n {id: 3, firstName: 'Celes', middleName: 'Gestahl', lastName: 'Chere'},\n {id: 4, firstName: 'Edgar', middleName: 'Roni', lastName: 'Figaro'},\n {id: 5, firstName: 'Sabin', middleName: 'Rene', lastName: 'Figaro'},\n {id: 6, firstName: 'Clyde', middleName: '\"Shadow\"', lastName: 'Arrowny'},\n {id: 7, firstName: 'Setzer', middleName: '', lastName: 'Gabbiani'},\n {id: 8, firstName: 'Cid', middleName: 'Del Norte', lastName: 'Marquez'},\n {id: 9, firstName: 'Mog', middleName: '', lastName: 'McMoogle'},\n];\n\n/**\n * @title Material Popover Edit spanning multiple columns on a Material data-table\n */\n@Component({\n selector: 'popover-edit-cell-span-mat-table-example',\n styleUrl: 'popover-edit-cell-span-mat-table-example.css',\n templateUrl: 'popover-edit-cell-span-mat-table-example.html',\n imports: [\n MatTableModule,\n CdkPopoverEditModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditCellSpanMatTableExample {\n displayedColumns: string[] = ['id', 'firstName', 'middleName', 'lastName'];\n dataSource = new ExampleDataSource();\n\n readonly preservedValues = new WeakMap();\n\n onSubmit(person: Person, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n person.firstName = f.value['firstName'];\n person.middleName = f.value['middleName'];\n person.lastName = f.value['lastName'];\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(PERSON_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n","import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Material Popover Edit on a flex Material data-table\n */\n@Component({\n selector: 'popover-edit-mat-table-flex-example',\n styleUrl: 'popover-edit-mat-table-flex-example.css',\n templateUrl: 'popover-edit-mat-table-flex-example.html',\n imports: [\n MatTableModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditMatTableFlexExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n\n readonly preservedNameValues = new WeakMap();\n readonly preservedWeightValues = new WeakMap();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n","import {Component, inject} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {FormValueContainer, CdkPopoverEditModule} from '@angular/cdk-experimental/popover-edit';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatListModule} from '@angular/material/list';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport type ElementType = 'Metal' | 'Semimetal' | 'Nonmetal';\n\nexport type FantasyElement = 'Earth' | 'Water' | 'Wind' | 'Fire' | 'Light' | 'Dark';\n\nexport interface PeriodicElement {\n name: string;\n type: ElementType;\n position: number;\n weight: number;\n symbol: string;\n fantasyCounterparts: FantasyElement[];\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {\n position: 1,\n name: 'Hydrogen',\n type: 'Nonmetal',\n weight: 1.0079,\n symbol: 'H',\n fantasyCounterparts: ['Fire', 'Wind', 'Light'],\n },\n {\n position: 2,\n name: 'Helium',\n type: 'Nonmetal',\n weight: 4.0026,\n symbol: 'He',\n fantasyCounterparts: ['Wind', 'Light'],\n },\n {\n position: 3,\n name: 'Lithium',\n type: 'Metal',\n weight: 6.941,\n symbol: 'Li',\n fantasyCounterparts: [],\n },\n {\n position: 4,\n name: 'Beryllium',\n type: 'Metal',\n weight: 9.0122,\n symbol: 'Be',\n fantasyCounterparts: [],\n },\n {\n position: 5,\n name: 'Boron',\n type: 'Semimetal',\n weight: 10.811,\n symbol: 'B',\n fantasyCounterparts: [],\n },\n {\n position: 6,\n name: 'Carbon',\n type: 'Nonmetal',\n weight: 12.0107,\n symbol: 'C',\n fantasyCounterparts: ['Earth', 'Dark'],\n },\n {\n position: 7,\n name: 'Nitrogen',\n type: 'Nonmetal',\n weight: 14.0067,\n symbol: 'N',\n fantasyCounterparts: ['Wind'],\n },\n {\n position: 8,\n name: 'Oxygen',\n type: 'Nonmetal',\n weight: 15.9994,\n symbol: 'O',\n fantasyCounterparts: ['Fire', 'Water', 'Wind'],\n },\n {\n position: 9,\n name: 'Fluorine',\n type: 'Nonmetal',\n weight: 18.9984,\n symbol: 'F',\n fantasyCounterparts: [],\n },\n {\n position: 10,\n name: 'Neon',\n type: 'Nonmetal',\n weight: 20.1797,\n symbol: 'Ne',\n fantasyCounterparts: ['Light'],\n },\n {\n position: 11,\n name: 'Sodium',\n type: 'Metal',\n weight: 22.9897,\n symbol: 'Na',\n fantasyCounterparts: ['Earth', 'Water'],\n },\n {\n position: 12,\n name: 'Magnesium',\n type: 'Metal',\n weight: 24.305,\n symbol: 'Mg',\n fantasyCounterparts: [],\n },\n {\n position: 13,\n name: 'Aluminum',\n type: 'Metal',\n weight: 26.9815,\n symbol: 'Al',\n fantasyCounterparts: [],\n },\n {\n position: 14,\n name: 'Silicon',\n type: 'Semimetal',\n weight: 28.0855,\n symbol: 'Si',\n fantasyCounterparts: [],\n },\n {\n position: 15,\n name: 'Phosphorus',\n type: 'Nonmetal',\n weight: 30.9738,\n symbol: 'P',\n fantasyCounterparts: [],\n },\n {\n position: 16,\n name: 'Sulfur',\n type: 'Nonmetal',\n weight: 32.065,\n symbol: 'S',\n fantasyCounterparts: [],\n },\n {\n position: 17,\n name: 'Chlorine',\n type: 'Nonmetal',\n weight: 35.453,\n symbol: 'Cl',\n fantasyCounterparts: [],\n },\n {\n position: 18,\n name: 'Argon',\n type: 'Nonmetal',\n weight: 39.948,\n symbol: 'Ar',\n fantasyCounterparts: [],\n },\n {\n position: 19,\n name: 'Potassium',\n type: 'Metal',\n weight: 39.0983,\n symbol: 'K',\n fantasyCounterparts: [],\n },\n {\n position: 20,\n name: 'Calcium',\n type: 'Metal',\n weight: 40.078,\n symbol: 'Ca',\n fantasyCounterparts: [],\n },\n];\n\nconst TYPES: readonly ElementType[] = ['Metal', 'Semimetal', 'Nonmetal'];\nconst FANTASY_ELEMENTS: readonly FantasyElement[] = [\n 'Earth',\n 'Water',\n 'Wind',\n 'Fire',\n 'Light',\n 'Dark',\n];\n\n/**\n * @title Material Popover Edit on a Material data-table\n */\n@Component({\n selector: 'popover-edit-mat-table-example',\n styleUrl: 'popover-edit-mat-table-example.css',\n templateUrl: 'popover-edit-mat-table-example.html',\n imports: [\n MatTableModule,\n CdkPopoverEditModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n MatCheckboxModule,\n MatListModule,\n ],\n})\nexport class PopoverEditMatTableExample {\n private readonly _snackBar = inject(MatSnackBar);\n\n displayedColumns: string[] = [\n 'position',\n 'name',\n 'type',\n 'weight',\n 'symbol',\n 'fantasyCounterpart',\n ];\n dataSource = new ExampleDataSource();\n\n nameEditEnabled = true;\n\n readonly TYPES = TYPES;\n readonly FANTASY_ELEMENTS = FANTASY_ELEMENTS;\n\n readonly nameValues = new FormValueContainer();\n readonly weightValues = new FormValueContainer();\n readonly typeValues = new FormValueContainer();\n readonly fantasyValues = new FormValueContainer();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n\n onSubmitType(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.type = f.value.type[0];\n }\n\n onSubmitFantasyCounterparts(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.fantasyCounterparts = f.value.fantasyCounterparts;\n }\n\n goodJob(element: PeriodicElement) {\n this._snackBar.open(`Way to go, ${element.name}!`, undefined, {duration: 2000});\n }\n\n badJob(element: PeriodicElement) {\n this._snackBar.open(`You have failed me for the last time, #${element.position}.`, undefined, {\n duration: 2000,\n });\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Material Popover Edit with spreadsheet-like configuration on a Material data-table\n */\n@Component({\n selector: 'popover-edit-tab-out-mat-table-example',\n styleUrl: 'popover-edit-tab-out-mat-table-example.css',\n templateUrl: 'popover-edit-tab-out-mat-table-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [\n MatTableModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditTabOutMatTableExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n\n readonly preservedNameValues = new WeakMap();\n readonly preservedWeightValues = new WeakMap();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name \n {{element.name}}\n\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n edit\n \n
    Weight \n {{element.weight}}\n\n \n edit\n \n Symbol {{element.symbol}}
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["ExampleDataSource","i3","ELEMENT_DATA","i2","i4","i7"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"popover-edit.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-cell-span-mat-table/popover-edit-cell-span-mat-table-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-mat-table-flex/popover-edit-mat-table-flex-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-mat-table/popover-edit-mat-table-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-tab-out-mat-table/popover-edit-tab-out-mat-table-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/popover-edit/popover-edit-tab-out-mat-table/popover-edit-tab-out-mat-table-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {CdkPopoverEditModule} from '@angular/cdk-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\nimport {BehaviorSubject, Observable} from 'rxjs';\n\nexport interface Person {\n id: number;\n firstName: string;\n middleName: string;\n lastName: string;\n}\n\nconst PERSON_DATA: Person[] = [\n {id: 1, firstName: 'Terra', middleName: 'Maduin', lastName: 'Branford'},\n {id: 2, firstName: 'Locke', middleName: '', lastName: 'Cole'},\n {id: 3, firstName: 'Celes', middleName: 'Gestahl', lastName: 'Chere'},\n {id: 4, firstName: 'Edgar', middleName: 'Roni', lastName: 'Figaro'},\n {id: 5, firstName: 'Sabin', middleName: 'Rene', lastName: 'Figaro'},\n {id: 6, firstName: 'Clyde', middleName: '\"Shadow\"', lastName: 'Arrowny'},\n {id: 7, firstName: 'Setzer', middleName: '', lastName: 'Gabbiani'},\n {id: 8, firstName: 'Cid', middleName: 'Del Norte', lastName: 'Marquez'},\n {id: 9, firstName: 'Mog', middleName: '', lastName: 'McMoogle'},\n];\n\n/**\n * @title Material Popover Edit spanning multiple columns on a Material data-table\n */\n@Component({\n selector: 'popover-edit-cell-span-mat-table-example',\n styleUrl: 'popover-edit-cell-span-mat-table-example.css',\n templateUrl: 'popover-edit-cell-span-mat-table-example.html',\n imports: [\n MatTableModule,\n CdkPopoverEditModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditCellSpanMatTableExample {\n displayedColumns: string[] = ['id', 'firstName', 'middleName', 'lastName'];\n dataSource = new ExampleDataSource();\n\n readonly preservedValues = new WeakMap();\n\n onSubmit(person: Person, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n person.firstName = f.value['firstName'];\n person.middleName = f.value['middleName'];\n person.lastName = f.value['lastName'];\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(PERSON_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n
    \n\n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{person.id}} First Name \n {{person.firstName}}\n\n \n \n \n Middle Name \n {{person.middleName}}\n\n \n \n \n Last Name \n {{person.lastName}}\n\n \n \n \n
    \n","import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Material Popover Edit on a flex Material data-table\n */\n@Component({\n selector: 'popover-edit-mat-table-flex-example',\n styleUrl: 'popover-edit-mat-table-flex-example.css',\n templateUrl: 'popover-edit-mat-table-flex-example.html',\n imports: [\n MatTableModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditMatTableFlexExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n\n readonly preservedNameValues = new WeakMap();\n readonly preservedWeightValues = new WeakMap();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n
    \n\n \n \n Weight \n \n {{element.weight}}\n\n \n \n \n \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n
    \n","import {Component, inject} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {FormValueContainer, CdkPopoverEditModule} from '@angular/cdk-experimental/popover-edit';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatListModule} from '@angular/material/list';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport type ElementType = 'Metal' | 'Semimetal' | 'Nonmetal';\n\nexport type FantasyElement = 'Earth' | 'Water' | 'Wind' | 'Fire' | 'Light' | 'Dark';\n\nexport interface PeriodicElement {\n name: string;\n type: ElementType;\n position: number;\n weight: number;\n symbol: string;\n fantasyCounterparts: FantasyElement[];\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {\n position: 1,\n name: 'Hydrogen',\n type: 'Nonmetal',\n weight: 1.0079,\n symbol: 'H',\n fantasyCounterparts: ['Fire', 'Wind', 'Light'],\n },\n {\n position: 2,\n name: 'Helium',\n type: 'Nonmetal',\n weight: 4.0026,\n symbol: 'He',\n fantasyCounterparts: ['Wind', 'Light'],\n },\n {\n position: 3,\n name: 'Lithium',\n type: 'Metal',\n weight: 6.941,\n symbol: 'Li',\n fantasyCounterparts: [],\n },\n {\n position: 4,\n name: 'Beryllium',\n type: 'Metal',\n weight: 9.0122,\n symbol: 'Be',\n fantasyCounterparts: [],\n },\n {\n position: 5,\n name: 'Boron',\n type: 'Semimetal',\n weight: 10.811,\n symbol: 'B',\n fantasyCounterparts: [],\n },\n {\n position: 6,\n name: 'Carbon',\n type: 'Nonmetal',\n weight: 12.0107,\n symbol: 'C',\n fantasyCounterparts: ['Earth', 'Dark'],\n },\n {\n position: 7,\n name: 'Nitrogen',\n type: 'Nonmetal',\n weight: 14.0067,\n symbol: 'N',\n fantasyCounterparts: ['Wind'],\n },\n {\n position: 8,\n name: 'Oxygen',\n type: 'Nonmetal',\n weight: 15.9994,\n symbol: 'O',\n fantasyCounterparts: ['Fire', 'Water', 'Wind'],\n },\n {\n position: 9,\n name: 'Fluorine',\n type: 'Nonmetal',\n weight: 18.9984,\n symbol: 'F',\n fantasyCounterparts: [],\n },\n {\n position: 10,\n name: 'Neon',\n type: 'Nonmetal',\n weight: 20.1797,\n symbol: 'Ne',\n fantasyCounterparts: ['Light'],\n },\n {\n position: 11,\n name: 'Sodium',\n type: 'Metal',\n weight: 22.9897,\n symbol: 'Na',\n fantasyCounterparts: ['Earth', 'Water'],\n },\n {\n position: 12,\n name: 'Magnesium',\n type: 'Metal',\n weight: 24.305,\n symbol: 'Mg',\n fantasyCounterparts: [],\n },\n {\n position: 13,\n name: 'Aluminum',\n type: 'Metal',\n weight: 26.9815,\n symbol: 'Al',\n fantasyCounterparts: [],\n },\n {\n position: 14,\n name: 'Silicon',\n type: 'Semimetal',\n weight: 28.0855,\n symbol: 'Si',\n fantasyCounterparts: [],\n },\n {\n position: 15,\n name: 'Phosphorus',\n type: 'Nonmetal',\n weight: 30.9738,\n symbol: 'P',\n fantasyCounterparts: [],\n },\n {\n position: 16,\n name: 'Sulfur',\n type: 'Nonmetal',\n weight: 32.065,\n symbol: 'S',\n fantasyCounterparts: [],\n },\n {\n position: 17,\n name: 'Chlorine',\n type: 'Nonmetal',\n weight: 35.453,\n symbol: 'Cl',\n fantasyCounterparts: [],\n },\n {\n position: 18,\n name: 'Argon',\n type: 'Nonmetal',\n weight: 39.948,\n symbol: 'Ar',\n fantasyCounterparts: [],\n },\n {\n position: 19,\n name: 'Potassium',\n type: 'Metal',\n weight: 39.0983,\n symbol: 'K',\n fantasyCounterparts: [],\n },\n {\n position: 20,\n name: 'Calcium',\n type: 'Metal',\n weight: 40.078,\n symbol: 'Ca',\n fantasyCounterparts: [],\n },\n];\n\nconst TYPES: readonly ElementType[] = ['Metal', 'Semimetal', 'Nonmetal'];\nconst FANTASY_ELEMENTS: readonly FantasyElement[] = [\n 'Earth',\n 'Water',\n 'Wind',\n 'Fire',\n 'Light',\n 'Dark',\n];\n\n/**\n * @title Material Popover Edit on a Material data-table\n */\n@Component({\n selector: 'popover-edit-mat-table-example',\n styleUrl: 'popover-edit-mat-table-example.css',\n templateUrl: 'popover-edit-mat-table-example.html',\n imports: [\n MatTableModule,\n CdkPopoverEditModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n MatCheckboxModule,\n MatListModule,\n ],\n})\nexport class PopoverEditMatTableExample {\n private readonly _snackBar = inject(MatSnackBar);\n\n displayedColumns: string[] = [\n 'position',\n 'name',\n 'type',\n 'weight',\n 'symbol',\n 'fantasyCounterpart',\n ];\n dataSource = new ExampleDataSource();\n\n nameEditEnabled = true;\n\n readonly TYPES = TYPES;\n readonly FANTASY_ELEMENTS = FANTASY_ELEMENTS;\n\n readonly nameValues = new FormValueContainer();\n readonly weightValues = new FormValueContainer();\n readonly typeValues = new FormValueContainer();\n readonly fantasyValues = new FormValueContainer();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n\n onSubmitType(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.type = f.value.type[0];\n }\n\n onSubmitFantasyCounterparts(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.fantasyCounterparts = f.value.fantasyCounterparts;\n }\n\n goodJob(element: PeriodicElement) {\n this._snackBar.open(`Way to go, ${element.name}!`, undefined, {duration: 2000});\n }\n\n badJob(element: PeriodicElement) {\n this._snackBar.open(`You have failed me for the last time, #${element.position}.`, undefined, {\n duration: 2000,\n });\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n
    No. \n {{element.position}}\n\n \n \n \n \n \n \n Name\n Edit enabled\n \n {{element.name}}\n\n \n \n
    \n
    \n

    Name

    \n
    \n \n \n \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n @if (nameEditEnabled) {\n \n \n \n }\n
    Type \n {{element.type}}\n\n \n \n
    \n
    \n
    \n \n @for (type of TYPES; track type) {\n {{type}}\n }\n \n
    \n
    \n
    \n
    \n\n \n \n \n
    Weight \n {{element.weight}}\n\n \n \n \n Symbol {{element.symbol}}
    Fantasy Counterparts \n {{element.fantasyCounterparts.join(', ')}}\n\n \n \n
    \n
    \n
    \n \n @for (fantasyElement of FANTASY_ELEMENTS; track fantasyElement) {\n {{fantasyElement}}\n }\n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n\n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {NgForm, FormsModule} from '@angular/forms';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatPopoverEditModule} from '@angular/material-experimental/popover-edit';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n\n/**\n * @title Material Popover Edit with spreadsheet-like configuration on a Material data-table\n */\n@Component({\n selector: 'popover-edit-tab-out-mat-table-example',\n styleUrl: 'popover-edit-tab-out-mat-table-example.css',\n templateUrl: 'popover-edit-tab-out-mat-table-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [\n MatTableModule,\n FormsModule,\n MatPopoverEditModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n ],\n})\nexport class PopoverEditTabOutMatTableExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new ExampleDataSource();\n\n readonly preservedNameValues = new WeakMap();\n readonly preservedWeightValues = new WeakMap();\n\n onSubmitName(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.name = f.value.name;\n }\n\n onSubmitWeight(element: PeriodicElement, f: NgForm) {\n if (!f.valid) {\n return;\n }\n\n element.weight = f.value.weight;\n }\n}\n\n/**\n * Data source to provide what data should be rendered in the table. Note that the data source\n * can retrieve its data in any way. In this case, the data source is provided a reference\n * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage\n * the underlying data. Instead, it only needs to take the data and send the table exactly what\n * should be rendered.\n */\nexport class ExampleDataSource extends DataSource {\n /** Stream of data that is provided to the table. */\n data = new BehaviorSubject(ELEMENT_DATA);\n\n /** Connect function called by the table to retrieve one stream containing the data to render. */\n connect(): Observable {\n return this.data;\n }\n\n disconnect() {}\n}\n","\n \n \n
    \n
    \n
    \n \n \n \n
    \n \n
    \n
    \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name \n {{element.name}}\n\n \n \n
    \n
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n \n edit\n \n
    Weight \n {{element.weight}}\n\n \n edit\n \n Symbol {{element.symbol}}
    \n"],"names":["ExampleDataSource","i2","i5","i6","i8","ELEMENT_DATA","i3","i4","i9","i10","i7"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material-experimental/selection.mjs b/fesm2022/material-experimental/selection.mjs index d1ad01f1f3..e345550ba9 100755 --- a/fesm2022/material-experimental/selection.mjs +++ b/fesm2022/material-experimental/selection.mjs @@ -18,10 +18,10 @@ class MatSelectionColumnExample { selectionChanged(event) { this.selected = event.after.map(select => select.value.name); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MatSelectionColumnExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MatSelectionColumnExample, isStandalone: true, selector: "mat-selection-column-example", ngImport: i0, template: "Selected: {{selected}}\n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSelectionModule }, { kind: "directive", type: i2.MatSelection, selector: "[matSelection]", inputs: ["matSelectionMultiple"], outputs: ["matSelectionChange"], exportAs: ["matSelection"] }, { kind: "component", type: i2.MatSelectionColumn, selector: "mat-selection-column", inputs: ["name"] }, { kind: "directive", type: i2.MatRowSelection, selector: "[matRowSelection]", inputs: ["matRowSelectionIndex", "matRowSelectionValue"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MatSelectionColumnExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MatSelectionColumnExample, isStandalone: true, selector: "mat-selection-column-example", ngImport: i0, template: "Selected: {{selected}}\n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSelectionModule }, { kind: "directive", type: i2.MatSelection, selector: "[matSelection]", inputs: ["matSelectionMultiple"], outputs: ["matSelectionChange"], exportAs: ["matSelection"] }, { kind: "component", type: i2.MatSelectionColumn, selector: "mat-selection-column", inputs: ["name"] }, { kind: "directive", type: i2.MatRowSelection, selector: "[matRowSelection]", inputs: ["matRowSelectionIndex", "matRowSelectionValue"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MatSelectionColumnExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MatSelectionColumnExample, decorators: [{ type: Component, args: [{ selector: 'mat-selection-column-example', imports: [MatTableModule, MatSelectionModule], template: "Selected: {{selected}}\n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: [".example-table {\n width: 100%;\n}\n"] }] }] }); @@ -69,10 +69,10 @@ class MatSelectionListExample { reset() { this.data = ELEMENT_NAMES; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MatSelectionListExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: MatSelectionListExample, isStandalone: true, selector: "mat-selection-list-example", ngImport: i0, template: "

    native input

    \nSelected: {{selected1}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    mat-checkbox

    \nSelected: {{selected2}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n}\n
    \n\n

    Single select with mat-checkbox

    \nSelected: {{selected3}}\n
      \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    with trackBy

    \nSelected: {{selected4}}\n
      \n \n @for (item of data; track trackByFn(i, item); let i = $index) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatSelectionModule }, { kind: "directive", type: i2.MatSelectAll, selector: "[matSelectAll]", exportAs: ["matSelectAll"] }, { kind: "directive", type: i2.MatSelection, selector: "[matSelection]", inputs: ["matSelectionMultiple"], outputs: ["matSelectionChange"], exportAs: ["matSelection"] }, { kind: "directive", type: i2.MatSelectionToggle, selector: "[matSelectionToggle]", inputs: ["matSelectionToggleIndex", "matSelectionToggleValue"], exportAs: ["matSelectionToggle"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MatSelectionListExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: MatSelectionListExample, isStandalone: true, selector: "mat-selection-list-example", ngImport: i0, template: "

    native input

    \nSelected: {{selected1}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    mat-checkbox

    \nSelected: {{selected2}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n}\n
    \n\n

    Single select with mat-checkbox

    \nSelected: {{selected3}}\n
      \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    with trackBy

    \nSelected: {{selected4}}\n
      \n \n @for (item of data; track trackByFn(i, item); let i = $index) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatSelectionModule }, { kind: "directive", type: i2.MatSelectAll, selector: "[matSelectAll]", exportAs: ["matSelectAll"] }, { kind: "directive", type: i2.MatSelection, selector: "[matSelection]", inputs: ["matSelectionMultiple"], outputs: ["matSelectionChange"], exportAs: ["matSelection"] }, { kind: "directive", type: i2.MatSelectionToggle, selector: "[matSelectionToggle]", inputs: ["matSelectionToggleIndex", "matSelectionToggleValue"], exportAs: ["matSelectionToggle"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MatSelectionListExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MatSelectionListExample, decorators: [{ type: Component, args: [{ selector: 'mat-selection-list-example', imports: [MatSelectionModule, MatCheckboxModule, AsyncPipe], template: "

    native input

    \nSelected: {{selected1}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    mat-checkbox

    \nSelected: {{selected2}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n}\n
    \n\n

    Single select with mat-checkbox

    \nSelected: {{selected3}}\n
      \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    with trackBy

    \nSelected: {{selected4}}\n
      \n \n @for (item of data; track trackByFn(i, item); let i = $index) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n\n\n" }] }] }); @@ -121,9 +121,5 @@ const ELEMENT_SYMBOLS = [ 'Ca', ]; -/** - * Generated bundle index. Do not edit. - */ - export { MatSelectionColumnExample, MatSelectionListExample }; //# sourceMappingURL=selection.mjs.map diff --git a/fesm2022/material-experimental/selection.mjs.map b/fesm2022/material-experimental/selection.mjs.map index af8d842990..5696179521 100755 --- a/fesm2022/material-experimental/selection.mjs.map +++ b/fesm2022/material-experimental/selection.mjs.map @@ -1 +1 @@ -{"version":3,"file":"selection.mjs","sources":["../../../../../../../src/components-examples/material-experimental/selection/mat-selection-column/mat-selection-column-example.ts","../../../../../../../src/components-examples/material-experimental/selection/mat-selection-column/mat-selection-column-example.html","../../../../../../../src/components-examples/material-experimental/selection/mat-selection-list/mat-selection-list-example.ts","../../../../../../../src/components-examples/material-experimental/selection/mat-selection-list/mat-selection-list-example.html","../../../../../../../src/components-examples/material-experimental/selection/selection_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {SelectionChange, MatSelectionModule} from '@angular/material-experimental/selection';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table that uses `matSelectionColumn` which allows users to select rows.\n */\n@Component({\n selector: 'mat-selection-column-example',\n templateUrl: 'mat-selection-column-example.html',\n styleUrl: 'mat-selection-column-example.css',\n imports: [MatTableModule, MatSelectionModule],\n})\nexport class MatSelectionColumnExample {\n displayedColumns: string[] = ['select', 'position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n selected: string[] = [];\n\n selectionChanged(event: SelectionChange) {\n this.selected = event.after.map(select => select.value.name);\n }\n}\n\ninterface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","Selected: {{selected}}\n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {SelectionChange} from '@angular/cdk-experimental/selection';\nimport {Component} from '@angular/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {AsyncPipe} from '@angular/common';\nimport {MatSelectionModule} from '@angular/material-experimental/selection';\n\n/**\n * @title Mat Selection on a simple list.\n */\n@Component({\n selector: 'mat-selection-list-example',\n templateUrl: 'mat-selection-list-example.html',\n imports: [MatSelectionModule, MatCheckboxModule, AsyncPipe],\n})\nexport class MatSelectionListExample {\n data = ELEMENT_NAMES;\n selected1: string[] = [];\n selected2: string[] = [];\n selected3: string[] = [];\n selected4: string[] = [];\n\n getCurrentSelected(event: SelectionChange) {\n return event.after.map(select => select.value);\n }\n\n trackByFn(index: number, value: string) {\n return index;\n }\n\n changeElementName() {\n this.data = ELEMENT_SYMBOLS;\n }\n\n reset() {\n this.data = ELEMENT_NAMES;\n }\n}\n\nconst ELEMENT_NAMES = [\n 'Hydrogen',\n 'Helium',\n 'Lithium',\n 'Beryllium',\n 'Boron',\n 'Carbon',\n 'Nitrogen',\n 'Oxygen',\n 'Fluorine',\n 'Neon',\n 'Sodium',\n 'Magnesium',\n 'Aluminum',\n 'Silicon',\n 'Phosphorus',\n 'Sulfur',\n 'Chlorine',\n 'Argon',\n 'Potassium',\n 'Calcium',\n];\n\nconst ELEMENT_SYMBOLS = [\n 'H',\n 'He',\n 'Li',\n 'Be',\n 'B',\n 'C',\n 'N',\n 'O',\n 'F',\n 'Ne',\n 'Na',\n 'Mg',\n 'Al',\n 'Si',\n 'P',\n 'S',\n 'Cl',\n 'Ar',\n 'K',\n 'Ca',\n];\n","

    native input

    \nSelected: {{selected1}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    mat-checkbox

    \nSelected: {{selected2}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n}\n
    \n\n

    Single select with mat-checkbox

    \nSelected: {{selected3}}\n
      \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    with trackBy

    \nSelected: {{selected4}}\n
      \n \n @for (item of data; track trackByFn(i, item); let i = $index) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"selection.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/selection/mat-selection-column/mat-selection-column-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/selection/mat-selection-column/mat-selection-column-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/selection/mat-selection-list/mat-selection-list-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material-experimental/selection/mat-selection-list/mat-selection-list-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {SelectionChange, MatSelectionModule} from '@angular/material-experimental/selection';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table that uses `matSelectionColumn` which allows users to select rows.\n */\n@Component({\n selector: 'mat-selection-column-example',\n templateUrl: 'mat-selection-column-example.html',\n styleUrl: 'mat-selection-column-example.css',\n imports: [MatTableModule, MatSelectionModule],\n})\nexport class MatSelectionColumnExample {\n displayedColumns: string[] = ['select', 'position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n selected: string[] = [];\n\n selectionChanged(event: SelectionChange) {\n this.selected = event.after.map(select => select.value.name);\n }\n}\n\ninterface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","Selected: {{selected}}\n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {SelectionChange} from '@angular/cdk-experimental/selection';\nimport {Component} from '@angular/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {AsyncPipe} from '@angular/common';\nimport {MatSelectionModule} from '@angular/material-experimental/selection';\n\n/**\n * @title Mat Selection on a simple list.\n */\n@Component({\n selector: 'mat-selection-list-example',\n templateUrl: 'mat-selection-list-example.html',\n imports: [MatSelectionModule, MatCheckboxModule, AsyncPipe],\n})\nexport class MatSelectionListExample {\n data = ELEMENT_NAMES;\n selected1: string[] = [];\n selected2: string[] = [];\n selected3: string[] = [];\n selected4: string[] = [];\n\n getCurrentSelected(event: SelectionChange) {\n return event.after.map(select => select.value);\n }\n\n trackByFn(index: number, value: string) {\n return index;\n }\n\n changeElementName() {\n this.data = ELEMENT_SYMBOLS;\n }\n\n reset() {\n this.data = ELEMENT_NAMES;\n }\n}\n\nconst ELEMENT_NAMES = [\n 'Hydrogen',\n 'Helium',\n 'Lithium',\n 'Beryllium',\n 'Boron',\n 'Carbon',\n 'Nitrogen',\n 'Oxygen',\n 'Fluorine',\n 'Neon',\n 'Sodium',\n 'Magnesium',\n 'Aluminum',\n 'Silicon',\n 'Phosphorus',\n 'Sulfur',\n 'Chlorine',\n 'Argon',\n 'Potassium',\n 'Calcium',\n];\n\nconst ELEMENT_SYMBOLS = [\n 'H',\n 'He',\n 'Li',\n 'Be',\n 'B',\n 'C',\n 'N',\n 'O',\n 'F',\n 'Ne',\n 'Na',\n 'Mg',\n 'Al',\n 'Si',\n 'P',\n 'S',\n 'Cl',\n 'Ar',\n 'K',\n 'Ca',\n];\n","

    native input

    \nSelected: {{selected1}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    mat-checkbox

    \nSelected: {{selected2}}\n
      \n \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n}\n
    \n\n

    Single select with mat-checkbox

    \nSelected: {{selected3}}\n
      \n @for (item of data; track item) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n

    with trackBy

    \nSelected: {{selected4}}\n
      \n \n @for (item of data; track trackByFn(i, item); let i = $index) {\n
    • \n \n {{item}}\n
    • \n }\n
    \n\n\n\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/autocomplete.mjs b/fesm2022/material/autocomplete.mjs index a08807b62c..7b8d0d2525 100755 --- a/fesm2022/material/autocomplete.mjs +++ b/fesm2022/material/autocomplete.mjs @@ -1,17 +1,16 @@ import * as i0 from '@angular/core'; import { Component, inject, ViewChild } from '@angular/core'; -import * as i1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule, FormBuilder } from '@angular/forms'; import { startWith, map } from 'rxjs/operators'; import { AsyncPipe } from '@angular/common'; import * as i4 from '@angular/material/autocomplete'; import { MatAutocompleteModule } from '@angular/material/autocomplete'; -import * as i3 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i2 from '@angular/material/form-field'; +import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i5 from '@angular/material/core'; -import * as i6 from '@angular/material/slide-toggle'; +import * as i1$1 from '@angular/material/slide-toggle'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; /** @@ -28,10 +27,10 @@ class AutocompleteAutoActiveFirstOptionExample { const filterValue = value.toLowerCase(); return this.options.filter(option => option.toLowerCase().includes(filterValue)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteAutoActiveFirstOptionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteAutoActiveFirstOptionExample, isStandalone: true, selector: "autocomplete-auto-active-first-option-example", ngImport: i0, template: "
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteAutoActiveFirstOptionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteAutoActiveFirstOptionExample, isStandalone: true, selector: "autocomplete-auto-active-first-option-example", ngImport: i0, template: "
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteAutoActiveFirstOptionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteAutoActiveFirstOptionExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-auto-active-first-option-example', imports: [ FormsModule, @@ -63,10 +62,10 @@ class AutocompleteDisplayExample { const filterValue = name.toLowerCase(); return this.options.filter(option => option.name.toLowerCase().includes(filterValue)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteDisplayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteDisplayExample, isStandalone: true, selector: "autocomplete-display-example", ngImport: i0, template: "
    \n \n Assignee\n \n \n @for (option of filteredOptions | async; track option) {\n {{option.name}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteDisplayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteDisplayExample, isStandalone: true, selector: "autocomplete-display-example", ngImport: i0, template: "
    \n \n Assignee\n \n \n @for (option of filteredOptions | async; track option) {\n {{option.name}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteDisplayExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteDisplayExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-display-example', imports: [ FormsModule, @@ -92,10 +91,10 @@ class AutocompleteFilterExample { const filterValue = value.toLowerCase(); return this.options.filter(option => option.toLowerCase().includes(filterValue)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteFilterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteFilterExample, isStandalone: true, selector: "autocomplete-filter-example", ngImport: i0, template: "
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteFilterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteFilterExample, isStandalone: true, selector: "autocomplete-filter-example", ngImport: i0, template: "
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteFilterExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteFilterExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-filter-example', imports: [ FormsModule, @@ -227,10 +226,10 @@ class AutocompleteOptgroupExample { } return this.stateGroups; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteOptgroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteOptgroupExample, isStandalone: true, selector: "autocomplete-optgroup-example", ngImport: i0, template: "
    \n \n States Group\n \n\n \n @for (group of stateGroupOptions | async; track group) {\n \n @for (name of group.names; track name) {\n {{name}}\n }\n \n }\n \n\n \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "component", type: i5.MatOptgroup, selector: "mat-optgroup", inputs: ["label", "disabled"], exportAs: ["matOptgroup"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteOptgroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteOptgroupExample, isStandalone: true, selector: "autocomplete-optgroup-example", ngImport: i0, template: "
    \n \n States Group\n \n\n \n @for (group of stateGroupOptions | async; track group) {\n \n @for (name of group.names; track name) {\n {{name}}\n }\n \n }\n \n\n \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "component", type: i4.MatOptgroup, selector: "mat-optgroup", inputs: ["label", "disabled"], exportAs: ["matOptgroup"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteOptgroupExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteOptgroupExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-optgroup-example', imports: [ FormsModule, @@ -281,10 +280,10 @@ class AutocompleteOverviewExample { const filterValue = value.toLowerCase(); return this.states.filter(state => state.name.toLowerCase().includes(filterValue)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteOverviewExample, isStandalone: true, selector: "autocomplete-overview-example", ngImport: i0, template: "
    \n \n State\n \n \n @for (state of filteredStates | async; track state) {\n \n \"\"\n {{state.name}} |\n Population: {{state.population}}\n \n }\n \n \n\n
    \n\n \n Disable Input?\n \n\n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.example-option-img {\n vertical-align: middle;\n margin-right: 8px;\n}\n\n[dir='rtl'] .example-option-img {\n margin-right: 0;\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i6.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteOverviewExample, isStandalone: true, selector: "autocomplete-overview-example", ngImport: i0, template: "
    \n \n State\n \n \n @for (state of filteredStates | async; track state) {\n \n \"\"\n {{state.name}} |\n Population: {{state.population}}\n \n }\n \n \n\n
    \n\n \n Disable Input?\n \n\n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.example-option-img {\n vertical-align: middle;\n margin-right: 8px;\n}\n\n[dir='rtl'] .example-option-img {\n margin-right: 0;\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteOverviewExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-overview-example', imports: [ FormsModule, @@ -314,10 +313,10 @@ class AutocompletePlainInputExample { _normalizeValue(value) { return value.toLowerCase().replace(/\s/g, ''); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompletePlainInputExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompletePlainInputExample, isStandalone: true, selector: "autocomplete-plain-input-example", ngImport: i0, template: "
    \n \n \n @for (street of filteredStreets | async; track street) {\n {{street}}\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.example-input {\n max-width: 100%;\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompletePlainInputExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompletePlainInputExample, isStandalone: true, selector: "autocomplete-plain-input-example", ngImport: i0, template: "
    \n \n \n @for (street of filteredStreets | async; track street) {\n {{street}}\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.example-input {\n max-width: 100%;\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompletePlainInputExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompletePlainInputExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-plain-input-example', imports: [FormsModule, MatAutocompleteModule, ReactiveFormsModule, AsyncPipe], template: "
    \n \n \n @for (street of filteredStreets | async; track street) {\n {{street}}\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\n.example-input {\n max-width: 100%;\n width: 300px;\n}\n"] }] }] }); @@ -328,10 +327,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class AutocompleteSimpleExample { myControl = new FormControl(''); options = ['One', 'Two', 'Three']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteSimpleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteSimpleExample, isStandalone: true, selector: "autocomplete-simple-example", ngImport: i0, template: "
    \n \n Number\n\n \n\n\n \n @for (option of options; track option) {\n {{option}}\n }\n \n\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteSimpleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteSimpleExample, isStandalone: true, selector: "autocomplete-simple-example", ngImport: i0, template: "
    \n \n Number\n\n \n\n\n \n @for (option of options; track option) {\n {{option}}\n }\n \n\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteSimpleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteSimpleExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-simple-example', imports: [ FormsModule, @@ -357,10 +356,10 @@ class AutocompleteRequireSelectionExample { const filterValue = this.input.nativeElement.value.toLowerCase(); this.filteredOptions = this.options.filter(o => o.toLowerCase().includes(filterValue)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteRequireSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteRequireSelectionExample, isStandalone: true, selector: "autocomplete-require-selection-example", viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true }], ngImport: i0, template: "Control value: {{myControl.value || 'empty'}}\n\n
    \n \n Number\n \n \n @for (option of filteredOptions; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n margin-top: 16px;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteRequireSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteRequireSelectionExample, isStandalone: true, selector: "autocomplete-require-selection-example", viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true }], ngImport: i0, template: "Control value: {{myControl.value || 'empty'}}\n\n
    \n \n Number\n \n \n @for (option of filteredOptions; track option) {\n {{option}}\n }\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n margin-top: 16px;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteRequireSelectionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteRequireSelectionExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-require-selection-example', imports: [ FormsModule, @@ -391,17 +390,13 @@ class AutocompleteHarnessExample { { code: 'VA', name: 'Virginia' }, { code: 'WY', name: 'Wyoming' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: AutocompleteHarnessExample, isStandalone: true, selector: "autocomplete-harness-example", ngImport: i0, template: "\n @for (state of states; track state) {\n {{ state.name }}\n }\n\n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: AutocompleteHarnessExample, isStandalone: true, selector: "autocomplete-harness-example", ngImport: i0, template: "\n @for (state of states; track state) {\n {{ state.name }}\n }\n\n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: AutocompleteHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: AutocompleteHarnessExample, decorators: [{ type: Component, args: [{ selector: 'autocomplete-harness-example', imports: [MatAutocompleteModule], template: "\n @for (state of states; track state) {\n {{ state.name }}\n }\n\n\n\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { AutocompleteAutoActiveFirstOptionExample, AutocompleteDisplayExample, AutocompleteFilterExample, AutocompleteHarnessExample, AutocompleteOptgroupExample, AutocompleteOverviewExample, AutocompletePlainInputExample, AutocompleteRequireSelectionExample, AutocompleteSimpleExample }; //# sourceMappingURL=autocomplete.mjs.map diff --git a/fesm2022/material/autocomplete.mjs.map b/fesm2022/material/autocomplete.mjs.map index 57a19739eb..6a6057faeb 100755 --- a/fesm2022/material/autocomplete.mjs.map +++ b/fesm2022/material/autocomplete.mjs.map @@ -1 +1 @@ -{"version":3,"file":"autocomplete.mjs","sources":["../../../../../../../src/components-examples/material/autocomplete/autocomplete-auto-active-first-option/autocomplete-auto-active-first-option-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-auto-active-first-option/autocomplete-auto-active-first-option-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-display/autocomplete-display-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-display/autocomplete-display-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-filter/autocomplete-filter-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-filter/autocomplete-filter-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-optgroup/autocomplete-optgroup-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-optgroup/autocomplete-optgroup-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-overview/autocomplete-overview-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-overview/autocomplete-overview-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-plain-input/autocomplete-plain-input-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-plain-input/autocomplete-plain-input-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-simple/autocomplete-simple-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-simple/autocomplete-simple-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-require-selection/autocomplete-require-selection-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-require-selection/autocomplete-require-selection-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete-harness/autocomplete-harness-example.ts","../../../../../../../src/components-examples/material/autocomplete/autocomplete-harness/autocomplete-harness-example.html","../../../../../../../src/components-examples/material/autocomplete/autocomplete_public_index.ts"],"sourcesContent":["import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Highlight the first autocomplete option\n */\n@Component({\n selector: 'autocomplete-auto-active-first-option-example',\n templateUrl: 'autocomplete-auto-active-first-option-example.html',\n styleUrl: 'autocomplete-auto-active-first-option-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteAutoActiveFirstOptionExample implements OnInit {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = value.toLowerCase();\n\n return this.options.filter(option => option.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface User {\n name: string;\n}\n\n/**\n * @title Display value autocomplete\n */\n@Component({\n selector: 'autocomplete-display-example',\n templateUrl: 'autocomplete-display-example.html',\n styleUrl: 'autocomplete-display-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteDisplayExample implements OnInit {\n myControl = new FormControl('');\n options: User[] = [{name: 'Mary'}, {name: 'Shelley'}, {name: 'Igor'}];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => {\n const name = typeof value === 'string' ? value : value?.name;\n return name ? this._filter(name as string) : this.options.slice();\n }),\n );\n }\n\n displayFn(user: User): string {\n return user && user.name ? user.name : '';\n }\n\n private _filter(name: string): User[] {\n const filterValue = name.toLowerCase();\n\n return this.options.filter(option => option.name.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Assignee\n \n \n @for (option of filteredOptions | async; track option) {\n {{option.name}}\n }\n \n \n
    \n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Filter autocomplete\n */\n@Component({\n selector: 'autocomplete-filter-example',\n templateUrl: 'autocomplete-filter-example.html',\n styleUrl: 'autocomplete-filter-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteFilterExample implements OnInit {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = value.toLowerCase();\n\n return this.options.filter(option => option.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component, OnInit, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {startWith, map} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface StateGroup {\n letter: string;\n names: string[];\n}\n\nexport const _filter = (opt: string[], value: string): string[] => {\n const filterValue = value.toLowerCase();\n\n return opt.filter(item => item.toLowerCase().includes(filterValue));\n};\n\n/**\n * @title Option groups autocomplete\n */\n@Component({\n selector: 'autocomplete-optgroup-example',\n templateUrl: 'autocomplete-optgroup-example.html',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteOptgroupExample implements OnInit {\n private _formBuilder = inject(FormBuilder);\n\n stateForm = this._formBuilder.group({\n stateGroup: '',\n });\n\n stateGroups: StateGroup[] = [\n {\n letter: 'A',\n names: ['Alabama', 'Alaska', 'Arizona', 'Arkansas'],\n },\n {\n letter: 'C',\n names: ['California', 'Colorado', 'Connecticut'],\n },\n {\n letter: 'D',\n names: ['Delaware'],\n },\n {\n letter: 'F',\n names: ['Florida'],\n },\n {\n letter: 'G',\n names: ['Georgia'],\n },\n {\n letter: 'H',\n names: ['Hawaii'],\n },\n {\n letter: 'I',\n names: ['Idaho', 'Illinois', 'Indiana', 'Iowa'],\n },\n {\n letter: 'K',\n names: ['Kansas', 'Kentucky'],\n },\n {\n letter: 'L',\n names: ['Louisiana'],\n },\n {\n letter: 'M',\n names: [\n 'Maine',\n 'Maryland',\n 'Massachusetts',\n 'Michigan',\n 'Minnesota',\n 'Mississippi',\n 'Missouri',\n 'Montana',\n ],\n },\n {\n letter: 'N',\n names: [\n 'Nebraska',\n 'Nevada',\n 'New Hampshire',\n 'New Jersey',\n 'New Mexico',\n 'New York',\n 'North Carolina',\n 'North Dakota',\n ],\n },\n {\n letter: 'O',\n names: ['Ohio', 'Oklahoma', 'Oregon'],\n },\n {\n letter: 'P',\n names: ['Pennsylvania'],\n },\n {\n letter: 'R',\n names: ['Rhode Island'],\n },\n {\n letter: 'S',\n names: ['South Carolina', 'South Dakota'],\n },\n {\n letter: 'T',\n names: ['Tennessee', 'Texas'],\n },\n {\n letter: 'U',\n names: ['Utah'],\n },\n {\n letter: 'V',\n names: ['Vermont', 'Virginia'],\n },\n {\n letter: 'W',\n names: ['Washington', 'West Virginia', 'Wisconsin', 'Wyoming'],\n },\n ];\n\n stateGroupOptions: Observable;\n\n ngOnInit() {\n this.stateGroupOptions = this.stateForm.get('stateGroup')!.valueChanges.pipe(\n startWith(''),\n map(value => this._filterGroup(value || '')),\n );\n }\n\n private _filterGroup(value: string): StateGroup[] {\n if (value) {\n return this.stateGroups\n .map(group => ({letter: group.letter, names: _filter(group.names, value)}))\n .filter(group => group.names.length > 0);\n }\n\n return this.stateGroups;\n }\n}\n","
    \n \n States Group\n \n\n \n @for (group of stateGroupOptions | async; track group) {\n \n @for (name of group.names; track name) {\n {{name}}\n }\n \n }\n \n\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface State {\n flag: string;\n name: string;\n population: string;\n}\n\n/**\n * @title Autocomplete overview\n */\n@Component({\n selector: 'autocomplete-overview-example',\n templateUrl: 'autocomplete-overview-example.html',\n styleUrl: 'autocomplete-overview-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n MatSlideToggleModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteOverviewExample {\n stateCtrl = new FormControl('');\n filteredStates: Observable;\n\n states: State[] = [\n {\n name: 'Arkansas',\n population: '2.978M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Arkansas.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/9/9d/Flag_of_Arkansas.svg',\n },\n {\n name: 'California',\n population: '39.14M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_California.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_California.svg',\n },\n {\n name: 'Florida',\n population: '20.27M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Florida.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Florida.svg',\n },\n {\n name: 'Texas',\n population: '27.47M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Texas.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Texas.svg',\n },\n ];\n\n constructor() {\n this.filteredStates = this.stateCtrl.valueChanges.pipe(\n startWith(''),\n map(state => (state ? this._filterStates(state) : this.states.slice())),\n );\n }\n\n private _filterStates(value: string): State[] {\n const filterValue = value.toLowerCase();\n\n return this.states.filter(state => state.name.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n State\n \n \n @for (state of filteredStates | async; track state) {\n \n \"\"\n {{state.name}} |\n Population: {{state.population}}\n \n }\n \n \n\n
    \n\n \n Disable Input?\n \n\n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {startWith, map} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\n\n/**\n * @title Plain input autocomplete\n */\n@Component({\n selector: 'autocomplete-plain-input-example',\n templateUrl: 'autocomplete-plain-input-example.html',\n styleUrl: 'autocomplete-plain-input-example.css',\n imports: [FormsModule, MatAutocompleteModule, ReactiveFormsModule, AsyncPipe],\n})\nexport class AutocompletePlainInputExample implements OnInit {\n control = new FormControl('');\n streets: string[] = ['Champs-Élysées', 'Lombard Street', 'Abbey Road', 'Fifth Avenue'];\n filteredStreets: Observable;\n\n ngOnInit() {\n this.filteredStreets = this.control.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = this._normalizeValue(value);\n return this.streets.filter(street => this._normalizeValue(street).includes(filterValue));\n }\n\n private _normalizeValue(value: string): string {\n return value.toLowerCase().replace(/\\s/g, '');\n }\n}\n","
    \n \n \n @for (street of filteredStreets | async; track street) {\n {{street}}\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Simple autocomplete\n */\n@Component({\n selector: 'autocomplete-simple-example',\n templateUrl: 'autocomplete-simple-example.html',\n styleUrl: 'autocomplete-simple-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n ],\n})\nexport class AutocompleteSimpleExample {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n}\n","
    \n \n Number\n\n \n\n\n \n @for (option of options; track option) {\n {{option}}\n }\n \n\n \n
    \n","import {Component, ElementRef, ViewChild} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Require an autocomplete option to be selected\n */\n@Component({\n selector: 'autocomplete-require-selection-example',\n templateUrl: 'autocomplete-require-selection-example.html',\n styleUrl: 'autocomplete-require-selection-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n ],\n})\nexport class AutocompleteRequireSelectionExample {\n @ViewChild('input') input: ElementRef;\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three', 'Four', 'Five'];\n filteredOptions: string[];\n\n constructor() {\n this.filteredOptions = this.options.slice();\n }\n\n filter(): void {\n const filterValue = this.input.nativeElement.value.toLowerCase();\n this.filteredOptions = this.options.filter(o => o.toLowerCase().includes(filterValue));\n }\n}\n","Control value: {{myControl.value || 'empty'}}\n\n
    \n \n Number\n \n \n @for (option of filteredOptions; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\n\n/**\n * @title Testing with MatAutocompleteHarness\n */\n@Component({\n selector: 'autocomplete-harness-example',\n templateUrl: 'autocomplete-harness-example.html',\n imports: [MatAutocompleteModule],\n})\nexport class AutocompleteHarnessExample {\n states = [\n {code: 'AL', name: 'Alabama'},\n {code: 'CA', name: 'California'},\n {code: 'FL', name: 'Florida'},\n {code: 'KS', name: 'Kansas'},\n {code: 'MA', name: 'Massachusetts'},\n {code: 'NY', name: 'New York'},\n {code: 'OR', name: 'Oregon'},\n {code: 'PA', name: 'Pennsylvania'},\n {code: 'TN', name: 'Tennessee'},\n {code: 'VA', name: 'Virginia'},\n {code: 'WY', name: 'Wyoming'},\n ];\n}\n","\n @for (state of states; track state) {\n {{ state.name }}\n }\n\n\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i3","i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"autocomplete.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-auto-active-first-option/autocomplete-auto-active-first-option-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-auto-active-first-option/autocomplete-auto-active-first-option-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-display/autocomplete-display-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-display/autocomplete-display-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-filter/autocomplete-filter-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-filter/autocomplete-filter-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-optgroup/autocomplete-optgroup-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-optgroup/autocomplete-optgroup-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-overview/autocomplete-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-overview/autocomplete-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-plain-input/autocomplete-plain-input-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-plain-input/autocomplete-plain-input-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-simple/autocomplete-simple-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-simple/autocomplete-simple-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-require-selection/autocomplete-require-selection-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-require-selection/autocomplete-require-selection-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-harness/autocomplete-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/autocomplete/autocomplete-harness/autocomplete-harness-example.html"],"sourcesContent":["import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Highlight the first autocomplete option\n */\n@Component({\n selector: 'autocomplete-auto-active-first-option-example',\n templateUrl: 'autocomplete-auto-active-first-option-example.html',\n styleUrl: 'autocomplete-auto-active-first-option-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteAutoActiveFirstOptionExample implements OnInit {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = value.toLowerCase();\n\n return this.options.filter(option => option.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface User {\n name: string;\n}\n\n/**\n * @title Display value autocomplete\n */\n@Component({\n selector: 'autocomplete-display-example',\n templateUrl: 'autocomplete-display-example.html',\n styleUrl: 'autocomplete-display-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteDisplayExample implements OnInit {\n myControl = new FormControl('');\n options: User[] = [{name: 'Mary'}, {name: 'Shelley'}, {name: 'Igor'}];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => {\n const name = typeof value === 'string' ? value : value?.name;\n return name ? this._filter(name as string) : this.options.slice();\n }),\n );\n }\n\n displayFn(user: User): string {\n return user && user.name ? user.name : '';\n }\n\n private _filter(name: string): User[] {\n const filterValue = name.toLowerCase();\n\n return this.options.filter(option => option.name.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Assignee\n \n \n @for (option of filteredOptions | async; track option) {\n {{option.name}}\n }\n \n \n
    \n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Filter autocomplete\n */\n@Component({\n selector: 'autocomplete-filter-example',\n templateUrl: 'autocomplete-filter-example.html',\n styleUrl: 'autocomplete-filter-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteFilterExample implements OnInit {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n filteredOptions: Observable;\n\n ngOnInit() {\n this.filteredOptions = this.myControl.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = value.toLowerCase();\n\n return this.options.filter(option => option.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n Number\n \n \n @for (option of filteredOptions | async; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component, OnInit, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {startWith, map} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface StateGroup {\n letter: string;\n names: string[];\n}\n\nexport const _filter = (opt: string[], value: string): string[] => {\n const filterValue = value.toLowerCase();\n\n return opt.filter(item => item.toLowerCase().includes(filterValue));\n};\n\n/**\n * @title Option groups autocomplete\n */\n@Component({\n selector: 'autocomplete-optgroup-example',\n templateUrl: 'autocomplete-optgroup-example.html',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteOptgroupExample implements OnInit {\n private _formBuilder = inject(FormBuilder);\n\n stateForm = this._formBuilder.group({\n stateGroup: '',\n });\n\n stateGroups: StateGroup[] = [\n {\n letter: 'A',\n names: ['Alabama', 'Alaska', 'Arizona', 'Arkansas'],\n },\n {\n letter: 'C',\n names: ['California', 'Colorado', 'Connecticut'],\n },\n {\n letter: 'D',\n names: ['Delaware'],\n },\n {\n letter: 'F',\n names: ['Florida'],\n },\n {\n letter: 'G',\n names: ['Georgia'],\n },\n {\n letter: 'H',\n names: ['Hawaii'],\n },\n {\n letter: 'I',\n names: ['Idaho', 'Illinois', 'Indiana', 'Iowa'],\n },\n {\n letter: 'K',\n names: ['Kansas', 'Kentucky'],\n },\n {\n letter: 'L',\n names: ['Louisiana'],\n },\n {\n letter: 'M',\n names: [\n 'Maine',\n 'Maryland',\n 'Massachusetts',\n 'Michigan',\n 'Minnesota',\n 'Mississippi',\n 'Missouri',\n 'Montana',\n ],\n },\n {\n letter: 'N',\n names: [\n 'Nebraska',\n 'Nevada',\n 'New Hampshire',\n 'New Jersey',\n 'New Mexico',\n 'New York',\n 'North Carolina',\n 'North Dakota',\n ],\n },\n {\n letter: 'O',\n names: ['Ohio', 'Oklahoma', 'Oregon'],\n },\n {\n letter: 'P',\n names: ['Pennsylvania'],\n },\n {\n letter: 'R',\n names: ['Rhode Island'],\n },\n {\n letter: 'S',\n names: ['South Carolina', 'South Dakota'],\n },\n {\n letter: 'T',\n names: ['Tennessee', 'Texas'],\n },\n {\n letter: 'U',\n names: ['Utah'],\n },\n {\n letter: 'V',\n names: ['Vermont', 'Virginia'],\n },\n {\n letter: 'W',\n names: ['Washington', 'West Virginia', 'Wisconsin', 'Wyoming'],\n },\n ];\n\n stateGroupOptions: Observable;\n\n ngOnInit() {\n this.stateGroupOptions = this.stateForm.get('stateGroup')!.valueChanges.pipe(\n startWith(''),\n map(value => this._filterGroup(value || '')),\n );\n }\n\n private _filterGroup(value: string): StateGroup[] {\n if (value) {\n return this.stateGroups\n .map(group => ({letter: group.letter, names: _filter(group.names, value)}))\n .filter(group => group.names.length > 0);\n }\n\n return this.stateGroups;\n }\n}\n","
    \n \n States Group\n \n\n \n @for (group of stateGroupOptions | async; track group) {\n \n @for (name of group.names; track name) {\n {{name}}\n }\n \n }\n \n\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {map, startWith} from 'rxjs/operators';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface State {\n flag: string;\n name: string;\n population: string;\n}\n\n/**\n * @title Autocomplete overview\n */\n@Component({\n selector: 'autocomplete-overview-example',\n templateUrl: 'autocomplete-overview-example.html',\n styleUrl: 'autocomplete-overview-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n MatSlideToggleModule,\n AsyncPipe,\n ],\n})\nexport class AutocompleteOverviewExample {\n stateCtrl = new FormControl('');\n filteredStates: Observable;\n\n states: State[] = [\n {\n name: 'Arkansas',\n population: '2.978M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Arkansas.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/9/9d/Flag_of_Arkansas.svg',\n },\n {\n name: 'California',\n population: '39.14M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_California.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/0/01/Flag_of_California.svg',\n },\n {\n name: 'Florida',\n population: '20.27M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Florida.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Florida.svg',\n },\n {\n name: 'Texas',\n population: '27.47M',\n // https://commons.wikimedia.org/wiki/File:Flag_of_Texas.svg\n flag: 'https://upload.wikimedia.org/wikipedia/commons/f/f7/Flag_of_Texas.svg',\n },\n ];\n\n constructor() {\n this.filteredStates = this.stateCtrl.valueChanges.pipe(\n startWith(''),\n map(state => (state ? this._filterStates(state) : this.states.slice())),\n );\n }\n\n private _filterStates(value: string): State[] {\n const filterValue = value.toLowerCase();\n\n return this.states.filter(state => state.name.toLowerCase().includes(filterValue));\n }\n}\n","
    \n \n State\n \n \n @for (state of filteredStates | async; track state) {\n \n \"\"\n {{state.name}} |\n Population: {{state.population}}\n \n }\n \n \n\n
    \n\n \n Disable Input?\n \n\n","import {Component, OnInit} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {Observable} from 'rxjs';\nimport {startWith, map} from 'rxjs/operators';\nimport {AsyncPipe} from '@angular/common';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\n\n/**\n * @title Plain input autocomplete\n */\n@Component({\n selector: 'autocomplete-plain-input-example',\n templateUrl: 'autocomplete-plain-input-example.html',\n styleUrl: 'autocomplete-plain-input-example.css',\n imports: [FormsModule, MatAutocompleteModule, ReactiveFormsModule, AsyncPipe],\n})\nexport class AutocompletePlainInputExample implements OnInit {\n control = new FormControl('');\n streets: string[] = ['Champs-Élysées', 'Lombard Street', 'Abbey Road', 'Fifth Avenue'];\n filteredStreets: Observable;\n\n ngOnInit() {\n this.filteredStreets = this.control.valueChanges.pipe(\n startWith(''),\n map(value => this._filter(value || '')),\n );\n }\n\n private _filter(value: string): string[] {\n const filterValue = this._normalizeValue(value);\n return this.streets.filter(street => this._normalizeValue(street).includes(filterValue));\n }\n\n private _normalizeValue(value: string): string {\n return value.toLowerCase().replace(/\\s/g, '');\n }\n}\n","
    \n \n \n @for (street of filteredStreets | async; track street) {\n {{street}}\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Simple autocomplete\n */\n@Component({\n selector: 'autocomplete-simple-example',\n templateUrl: 'autocomplete-simple-example.html',\n styleUrl: 'autocomplete-simple-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n ],\n})\nexport class AutocompleteSimpleExample {\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three'];\n}\n","
    \n \n Number\n\n \n\n\n \n @for (option of options; track option) {\n {{option}}\n }\n \n\n \n
    \n","import {Component, ElementRef, ViewChild} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Require an autocomplete option to be selected\n */\n@Component({\n selector: 'autocomplete-require-selection-example',\n templateUrl: 'autocomplete-require-selection-example.html',\n styleUrl: 'autocomplete-require-selection-example.css',\n imports: [\n FormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatAutocompleteModule,\n ReactiveFormsModule,\n ],\n})\nexport class AutocompleteRequireSelectionExample {\n @ViewChild('input') input: ElementRef;\n myControl = new FormControl('');\n options: string[] = ['One', 'Two', 'Three', 'Four', 'Five'];\n filteredOptions: string[];\n\n constructor() {\n this.filteredOptions = this.options.slice();\n }\n\n filter(): void {\n const filterValue = this.input.nativeElement.value.toLowerCase();\n this.filteredOptions = this.options.filter(o => o.toLowerCase().includes(filterValue));\n }\n}\n","Control value: {{myControl.value || 'empty'}}\n\n
    \n \n Number\n \n \n @for (option of filteredOptions; track option) {\n {{option}}\n }\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatAutocompleteModule} from '@angular/material/autocomplete';\n\n/**\n * @title Testing with MatAutocompleteHarness\n */\n@Component({\n selector: 'autocomplete-harness-example',\n templateUrl: 'autocomplete-harness-example.html',\n imports: [MatAutocompleteModule],\n})\nexport class AutocompleteHarnessExample {\n states = [\n {code: 'AL', name: 'Alabama'},\n {code: 'CA', name: 'California'},\n {code: 'FL', name: 'Florida'},\n {code: 'KS', name: 'Kansas'},\n {code: 'MA', name: 'Massachusetts'},\n {code: 'NY', name: 'New York'},\n {code: 'OR', name: 'Oregon'},\n {code: 'PA', name: 'Pennsylvania'},\n {code: 'TN', name: 'Tennessee'},\n {code: 'VA', name: 'Virginia'},\n {code: 'WY', name: 'Wyoming'},\n ];\n}\n","\n @for (state of states; track state) {\n {{ state.name }}\n }\n\n\n\n\n"],"names":["i1","i2","i3"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/badge.mjs b/fesm2022/material/badge.mjs index 236d550eda..8c9a12623f 100755 --- a/fesm2022/material/badge.mjs +++ b/fesm2022/material/badge.mjs @@ -2,7 +2,7 @@ import * as i0 from '@angular/core'; import { Component, signal } from '@angular/core'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i1 from '@angular/material/badge'; import { MatBadgeModule } from '@angular/material/badge'; @@ -15,12 +15,12 @@ class BadgeOverviewExample { toggleBadgeVisibility() { this.hidden = !this.hidden; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BadgeOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BadgeOverviewExample, isStandalone: true, selector: "badge-overview-example", ngImport: i0, template: "\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n\n.demo-section + .demo-section {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatBadgeModule }, { kind: "directive", type: i1.MatBadge, selector: "[matBadge]", inputs: ["matBadgeColor", "matBadgeOverlap", "matBadgeDisabled", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BadgeOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BadgeOverviewExample, isStandalone: true, selector: "badge-overview-example", ngImport: i0, template: "\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n\n.demo-section + .demo-section {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatBadgeModule }, { kind: "directive", type: i1.MatBadge, selector: "[matBadge]", inputs: ["matBadgeColor", "matBadgeOverlap", "matBadgeDisabled", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BadgeOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BadgeOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'badge-overview-example', imports: [MatBadgeModule, MatButtonModule, MatIconModule], template: "\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n\n.demo-section + .demo-section {\n margin-top: 16px;\n}\n"] }] + args: [{ selector: 'badge-overview-example', imports: [MatBadgeModule, MatButtonModule, MatIconModule], template: "\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n\n.demo-section + .demo-section {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -30,17 +30,13 @@ class BadgeHarnessExample { simpleContent = signal('S'); overlap = signal(true); disabled = signal(true); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BadgeHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BadgeHarnessExample, isStandalone: true, selector: "badge-harness-example", ngImport: i0, template: "\n\nDisabled\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatBadgeModule }, { kind: "directive", type: i1.MatBadge, selector: "[matBadge]", inputs: ["matBadgeColor", "matBadgeOverlap", "matBadgeDisabled", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BadgeHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BadgeHarnessExample, isStandalone: true, selector: "badge-harness-example", ngImport: i0, template: "\n\nDisabled\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatBadgeModule }, { kind: "directive", type: i1.MatBadge, selector: "[matBadge]", inputs: ["matBadgeColor", "matBadgeOverlap", "matBadgeDisabled", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BadgeHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BadgeHarnessExample, decorators: [{ type: Component, - args: [{ selector: 'badge-harness-example', imports: [MatButtonModule, MatBadgeModule], template: "\n\nDisabled\n" }] + args: [{ selector: 'badge-harness-example', imports: [MatButtonModule, MatBadgeModule], template: "\n\nDisabled\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { BadgeHarnessExample, BadgeOverviewExample }; //# sourceMappingURL=badge.mjs.map diff --git a/fesm2022/material/badge.mjs.map b/fesm2022/material/badge.mjs.map index 62836307d9..738e82a8f5 100755 --- a/fesm2022/material/badge.mjs.map +++ b/fesm2022/material/badge.mjs.map @@ -1 +1 @@ -{"version":3,"file":"badge.mjs","sources":["../../../../../../../src/components-examples/material/badge/badge-overview/badge-overview-example.ts","../../../../../../../src/components-examples/material/badge/badge-overview/badge-overview-example.html","../../../../../../../src/components-examples/material/badge/badge-harness/badge-harness-example.ts","../../../../../../../src/components-examples/material/badge/badge-harness/badge-harness-example.html","../../../../../../../src/components-examples/material/badge/badge_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatBadgeModule} from '@angular/material/badge';\n\n/**\n * @title Badge overview\n */\n@Component({\n selector: 'badge-overview-example',\n templateUrl: 'badge-overview-example.html',\n styleUrl: 'badge-overview-example.css',\n imports: [MatBadgeModule, MatButtonModule, MatIconModule],\n})\nexport class BadgeOverviewExample {\n hidden = false;\n\n toggleBadgeVisibility() {\n this.hidden = !this.hidden;\n }\n}\n","\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n","import {Component, signal} from '@angular/core';\nimport {MatBadgeModule} from '@angular/material/badge';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Testing with MatBadgeHarness\n */\n@Component({\n selector: 'badge-harness-example',\n templateUrl: 'badge-harness-example.html',\n imports: [MatButtonModule, MatBadgeModule],\n})\nexport class BadgeHarnessExample {\n simpleContent = signal('S');\n overlap = signal(true);\n disabled = signal(true);\n}\n","\n\nDisabled\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"badge.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/badge/badge-overview/badge-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/badge/badge-overview/badge-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/badge/badge-harness/badge-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/badge/badge-harness/badge-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatBadgeModule} from '@angular/material/badge';\n\n/**\n * @title Badge overview\n */\n@Component({\n selector: 'badge-overview-example',\n templateUrl: 'badge-overview-example.html',\n styleUrl: 'badge-overview-example.css',\n imports: [MatBadgeModule, MatButtonModule, MatIconModule],\n})\nexport class BadgeOverviewExample {\n hidden = false;\n\n toggleBadgeVisibility() {\n this.hidden = !this.hidden;\n }\n}\n","\n
    Text with a badge
    \n\n\n\n
    Text with small badge
    \n
    Text with large badge
    \n\n\n
    \n Button with a badge on the left\n\n \n\n
    \n\n
    \n Button toggles badge visibility\n\n \n\n
    \n\n
    \n Icon with a badge\n\n home\n\n \n \n Example with a home icon with overlaid badge showing the number 15\n \n
    \n","import {Component, signal} from '@angular/core';\nimport {MatBadgeModule} from '@angular/material/badge';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Testing with MatBadgeHarness\n */\n@Component({\n selector: 'badge-harness-example',\n templateUrl: 'badge-harness-example.html',\n imports: [MatButtonModule, MatBadgeModule],\n})\nexport class BadgeHarnessExample {\n simpleContent = signal('S');\n overlap = signal(true);\n disabled = signal(true);\n}\n","\n\nDisabled\n"],"names":["i2"],"mappings":";;;;;;;;;AAKA;;AAEG;MAOU,oBAAoB,CAAA;IAC/B,MAAM,GAAG,KAAK;IAEd,qBAAqB,GAAA;AACnB,QAAA,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM;;4GAJjB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,oBAAoB,kFCdjC,03CAqCA,EAAA,MAAA,EAAA,CAAA,kJAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDzBY,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,kBAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,cAAA,EAAA,gBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,qXAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAE7C,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBANhC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,wBAAwB,WAGzB,CAAC,cAAc,EAAE,eAAe,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,03CAAA,EAAA,MAAA,EAAA,CAAA,kJAAA,CAAA,EAAA;;;AER3D;;AAEG;MAMU,mBAAmB,CAAA;AAC9B,IAAA,aAAa,GAAG,MAAM,CAAC,GAAG,CAAC;AAC3B,IAAA,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC;AACtB,IAAA,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC;4GAHZ,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,mBAAmB,ECZhC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,qUAUA,EDAY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,qXAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,kBAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,cAAA,EAAA,gBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAE9B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,uBAAuB,EAExB,OAAA,EAAA,CAAC,eAAe,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,qUAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/material/bottom-sheet.mjs b/fesm2022/material/bottom-sheet.mjs index 910c5ac60a..695b8c3867 100755 --- a/fesm2022/material/bottom-sheet.mjs +++ b/fesm2022/material/bottom-sheet.mjs @@ -1,7 +1,7 @@ import * as i0 from '@angular/core'; import { inject, Component, TemplateRef, ViewChild } from '@angular/core'; import { MatBottomSheet, MatBottomSheetModule, MatBottomSheetRef } from '@angular/material/bottom-sheet'; -import * as i2 from '@angular/material/list'; +import * as i1$1 from '@angular/material/list'; import { MatListModule } from '@angular/material/list'; import * as i1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; @@ -14,12 +14,12 @@ class BottomSheetOverviewExample { openBottomSheet() { this._bottomSheet.open(BottomSheetOverviewExampleSheet); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BottomSheetOverviewExample, isStandalone: true, selector: "bottom-sheet-overview-example", ngImport: i0, template: "

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatBottomSheetModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BottomSheetOverviewExample, isStandalone: true, selector: "bottom-sheet-overview-example", ngImport: i0, template: "

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatBottomSheetModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'bottom-sheet-overview-example', imports: [MatButtonModule, MatBottomSheetModule], template: "

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n" }] + args: [{ selector: 'bottom-sheet-overview-example', imports: [MatButtonModule, MatBottomSheetModule], template: "

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n" }] }] }); class BottomSheetOverviewExampleSheet { _bottomSheetRef = inject(MatBottomSheetRef); @@ -27,10 +27,10 @@ class BottomSheetOverviewExampleSheet { this._bottomSheetRef.dismiss(); event.preventDefault(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetOverviewExampleSheet, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BottomSheetOverviewExampleSheet, isStandalone: true, selector: "bottom-sheet-overview-example-sheet", ngImport: i0, template: "\n \n Google Keep\n Add to a note\n \n\n \n Google Docs\n Embed in a document\n \n\n \n Google Plus\n Share with your friends\n \n\n \n Google Hangouts\n Show to your coworkers\n \n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i2.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i2.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i2.MatListItemTitle, selector: "[matListItemTitle]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetOverviewExampleSheet, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BottomSheetOverviewExampleSheet, isStandalone: true, selector: "bottom-sheet-overview-example-sheet", ngImport: i0, template: "\n \n Google Keep\n Add to a note\n \n\n \n Google Docs\n Embed in a document\n \n\n \n Google Plus\n Share with your friends\n \n\n \n Google Hangouts\n Show to your coworkers\n \n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1$1.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i1$1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1$1.MatListItemTitle, selector: "[matListItemTitle]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetOverviewExampleSheet, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetOverviewExampleSheet, decorators: [{ type: Component, args: [{ selector: 'bottom-sheet-overview-example-sheet', imports: [MatListModule], template: "\n \n Google Keep\n Add to a note\n \n\n \n Google Docs\n Embed in a document\n \n\n \n Google Plus\n Share with your friends\n \n\n \n Google Hangouts\n Show to your coworkers\n \n\n" }] }] }); @@ -44,10 +44,10 @@ class BottomSheetHarnessExample { open(config) { return this.bottomSheet.open(this.template, config); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: BottomSheetHarnessExample, isStandalone: true, selector: "bottom-sheet-harness-example", viewQueries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "\n Hello from the bottom sheet!\n\n", dependencies: [{ kind: "ngmodule", type: MatBottomSheetModule }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: BottomSheetHarnessExample, isStandalone: true, selector: "bottom-sheet-harness-example", viewQueries: [{ propertyName: "template", first: true, predicate: TemplateRef, descendants: true }], ngImport: i0, template: "\n Hello from the bottom sheet!\n\n", dependencies: [{ kind: "ngmodule", type: MatBottomSheetModule }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: BottomSheetHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: BottomSheetHarnessExample, decorators: [{ type: Component, args: [{ selector: 'bottom-sheet-harness-example', imports: [MatBottomSheetModule], template: "\n Hello from the bottom sheet!\n\n" }] }], propDecorators: { template: [{ @@ -55,9 +55,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor args: [TemplateRef] }] } }); -/** - * Generated bundle index. Do not edit. - */ - export { BottomSheetHarnessExample, BottomSheetOverviewExample, BottomSheetOverviewExampleSheet }; //# sourceMappingURL=bottom-sheet.mjs.map diff --git a/fesm2022/material/bottom-sheet.mjs.map b/fesm2022/material/bottom-sheet.mjs.map index 4044124334..f0eaf3a7ea 100755 --- a/fesm2022/material/bottom-sheet.mjs.map +++ b/fesm2022/material/bottom-sheet.mjs.map @@ -1 +1 @@ -{"version":3,"file":"bottom-sheet.mjs","sources":["../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.ts","../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html","../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-sheet.html","../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.ts","../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.html","../../../../../../../src/components-examples/material/bottom-sheet/bottom-sheet_public_index.ts"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {\n MatBottomSheet,\n MatBottomSheetModule,\n MatBottomSheetRef,\n} from '@angular/material/bottom-sheet';\nimport {MatListModule} from '@angular/material/list';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Bottom Sheet Overview\n */\n@Component({\n selector: 'bottom-sheet-overview-example',\n templateUrl: 'bottom-sheet-overview-example.html',\n imports: [MatButtonModule, MatBottomSheetModule],\n})\nexport class BottomSheetOverviewExample {\n private _bottomSheet = inject(MatBottomSheet);\n\n openBottomSheet(): void {\n this._bottomSheet.open(BottomSheetOverviewExampleSheet);\n }\n}\n\n@Component({\n selector: 'bottom-sheet-overview-example-sheet',\n templateUrl: 'bottom-sheet-overview-example-sheet.html',\n imports: [MatListModule],\n})\nexport class BottomSheetOverviewExampleSheet {\n private _bottomSheetRef =\n inject>(MatBottomSheetRef);\n\n openLink(event: MouseEvent): void {\n this._bottomSheetRef.dismiss();\n event.preventDefault();\n }\n}\n","

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n","\n \n Google Keep\n Add to a note\n \n\n \n Google Docs\n Embed in a document\n \n\n \n Google Plus\n Share with your friends\n \n\n \n Google Hangouts\n Show to your coworkers\n \n\n","import {Component, TemplateRef, ViewChild, inject} from '@angular/core';\nimport {\n MatBottomSheet,\n MatBottomSheetConfig,\n MatBottomSheetModule,\n} from '@angular/material/bottom-sheet';\n\n/**\n * @title Testing with MatBottomSheetHarness\n */\n@Component({\n selector: 'bottom-sheet-harness-example',\n templateUrl: 'bottom-sheet-harness-example.html',\n imports: [MatBottomSheetModule],\n})\nexport class BottomSheetHarnessExample {\n readonly bottomSheet = inject(MatBottomSheet);\n\n @ViewChild(TemplateRef) template: TemplateRef;\n\n open(config?: MatBottomSheetConfig) {\n return this.bottomSheet.open(this.template, config);\n }\n}\n","\n Hello from the bottom sheet!\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;;;AASA;;AAEG;MAMU,0BAA0B,CAAA;AAC7B,IAAA,YAAY,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;IAE9C,eAAe,GAAA;AACb,QAAA,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,+BAA+B,CAAC,CAAC;KACzD;uGALU,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,0BAA0B,ECjBvC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,+BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,8IAGA,EDYY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,2TAAE,oBAAoB,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEpC,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBALtC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,+BAA+B,EAEhC,OAAA,EAAA,CAAC,eAAe,EAAE,oBAAoB,CAAC,EAAA,QAAA,EAAA,8IAAA,EAAA,CAAA;;MAerC,+BAA+B,CAAA;AAClC,IAAA,eAAe,GACrB,MAAM,CAAqD,iBAAiB,CAAC,CAAC;AAEhF,IAAA,QAAQ,CAAC,KAAiB,EAAA;AACxB,QAAA,IAAI,CAAC,eAAe,CAAC,OAAO,EAAE,CAAC;QAC/B,KAAK,CAAC,cAAc,EAAE,CAAC;KACxB;uGAPU,+BAA+B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA/B,+BAA+B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EE9B5C,sxBAqBA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EFOY,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,WAAA,EAAA,QAAA,EAAA,wDAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEZ,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAL3C,SAAS;+BACE,qCAAqC,EAAA,OAAA,EAEtC,CAAC,aAAa,CAAC,EAAA,QAAA,EAAA,sxBAAA,EAAA,CAAA;;;AGrB1B;;AAEG;MAMU,yBAAyB,CAAA;AAC3B,IAAA,WAAW,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AAEtB,IAAA,QAAQ,CAAmB;AAEnD,IAAA,IAAI,CAAC,MAA6B,EAAA;AAChC,QAAA,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;KACrD;uGAPU,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAzB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,EAGzB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,UAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,WAAW,EClBxB,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,iEAGA,2CDUY,oBAAoB,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEnB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBALrC,SAAS;+BACE,8BAA8B,EAAA,OAAA,EAE/B,CAAC,oBAAoB,CAAC,EAAA,QAAA,EAAA,iEAAA,EAAA,CAAA;8BAKP,QAAQ,EAAA,CAAA;sBAA/B,SAAS;uBAAC,WAAW,CAAA;;;AElBxB;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"bottom-sheet.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/bottom-sheet/bottom-sheet-overview/bottom-sheet-overview-example-sheet.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/bottom-sheet/bottom-sheet-harness/bottom-sheet-harness-example.html"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {\n MatBottomSheet,\n MatBottomSheetModule,\n MatBottomSheetRef,\n} from '@angular/material/bottom-sheet';\nimport {MatListModule} from '@angular/material/list';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Bottom Sheet Overview\n */\n@Component({\n selector: 'bottom-sheet-overview-example',\n templateUrl: 'bottom-sheet-overview-example.html',\n imports: [MatButtonModule, MatBottomSheetModule],\n})\nexport class BottomSheetOverviewExample {\n private _bottomSheet = inject(MatBottomSheet);\n\n openBottomSheet(): void {\n this._bottomSheet.open(BottomSheetOverviewExampleSheet);\n }\n}\n\n@Component({\n selector: 'bottom-sheet-overview-example-sheet',\n templateUrl: 'bottom-sheet-overview-example-sheet.html',\n imports: [MatListModule],\n})\nexport class BottomSheetOverviewExampleSheet {\n private _bottomSheetRef =\n inject>(MatBottomSheetRef);\n\n openLink(event: MouseEvent): void {\n this._bottomSheetRef.dismiss();\n event.preventDefault();\n }\n}\n","

    You have received a file called \"cat-picture.jpeg\".

    \n\n\n","\n \n Google Keep\n Add to a note\n \n\n \n Google Docs\n Embed in a document\n \n\n \n Google Plus\n Share with your friends\n \n\n \n Google Hangouts\n Show to your coworkers\n \n\n","import {Component, TemplateRef, ViewChild, inject} from '@angular/core';\nimport {\n MatBottomSheet,\n MatBottomSheetConfig,\n MatBottomSheetModule,\n} from '@angular/material/bottom-sheet';\n\n/**\n * @title Testing with MatBottomSheetHarness\n */\n@Component({\n selector: 'bottom-sheet-harness-example',\n templateUrl: 'bottom-sheet-harness-example.html',\n imports: [MatBottomSheetModule],\n})\nexport class BottomSheetHarnessExample {\n readonly bottomSheet = inject(MatBottomSheet);\n\n @ViewChild(TemplateRef) template: TemplateRef;\n\n open(config?: MatBottomSheetConfig) {\n return this.bottomSheet.open(this.template, config);\n }\n}\n","\n Hello from the bottom sheet!\n\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/button-toggle.mjs b/fesm2022/material/button-toggle.mjs index 25d3945da4..db031650b5 100755 --- a/fesm2022/material/button-toggle.mjs +++ b/fesm2022/material/button-toggle.mjs @@ -2,19 +2,19 @@ import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy, signal } from '@angular/core'; import * as i1 from '@angular/material/button-toggle'; import { MatButtonToggleModule } from '@angular/material/button-toggle'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms'; -import * as i2$1 from '@angular/material/checkbox'; +import * as i2 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; /** * @title Button toggle appearance */ class ButtonToggleAppearanceExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleAppearanceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonToggleAppearanceExample, isStandalone: true, selector: "button-toggle-appearance-example", ngImport: i0, template: "

    \n Default appearance:\n \n Bold\n Italic\n Underline\n \n

    \n\n

    \n Legacy appearance:\n \n Bold\n Italic\n Underline\n \n

    \n", styles: ["mat-button-toggle-group {\n margin-left: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleAppearanceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonToggleAppearanceExample, isStandalone: true, selector: "button-toggle-appearance-example", ngImport: i0, template: "

    \n Default appearance:\n \n Bold\n Italic\n Underline\n \n

    \n\n

    \n Legacy appearance:\n \n Bold\n Italic\n Underline\n \n

    \n", styles: ["mat-button-toggle-group {\n margin-left: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleAppearanceExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleAppearanceExample, decorators: [{ type: Component, args: [{ selector: 'button-toggle-appearance-example', imports: [MatButtonToggleModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    \n Default appearance:\n \n Bold\n Italic\n Underline\n \n

    \n\n

    \n Legacy appearance:\n \n Bold\n Italic\n Underline\n \n

    \n", styles: ["mat-button-toggle-group {\n margin-left: 12px;\n}\n"] }] }] }); @@ -23,10 +23,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic button-toggles */ class ButtonToggleOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonToggleOverviewExample, isStandalone: true, selector: "button-toggle-overview-example", ngImport: i0, template: "\n Bold\n Italic\n Underline\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonToggleOverviewExample, isStandalone: true, selector: "button-toggle-overview-example", ngImport: i0, template: "\n Bold\n Italic\n Underline\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleOverviewExample, decorators: [{ type: Component, args: [{ selector: 'button-toggle-overview-example', imports: [MatButtonToggleModule], template: "\n Bold\n Italic\n Underline\n\n" }] }] }); @@ -37,10 +37,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class ButtonToggleHarnessExample { disabled = signal(false); appearance = signal('standard'); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonToggleHarnessExample, isStandalone: true, selector: "button-toggle-harness-example", ngImport: i0, template: "\n One\n Two\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonToggleHarnessExample, isStandalone: true, selector: "button-toggle-harness-example", ngImport: i0, template: "\n One\n Two\n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleHarnessExample, decorators: [{ type: Component, args: [{ selector: 'button-toggle-harness-example', imports: [MatButtonToggleModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n One\n Two\n\n" }] }] }); @@ -51,10 +51,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class ButtonToggleFormsExample { fontStyleControl = new FormControl(''); fontStyle; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonToggleFormsExample, isStandalone: true, selector: "button-toggle-forms-example", ngImport: i0, template: "
    \n

    Button Toggle inside of a Template-driven form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyle}}

    \n
    \n\n
    \n

    Button Toggle inside of a Reactive form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyleControl.value}}

    \n
    \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonToggleFormsExample, isStandalone: true, selector: "button-toggle-forms-example", ngImport: i0, template: "
    \n

    Button Toggle inside of a Template-driven form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyle}}

    \n
    \n\n
    \n

    Button Toggle inside of a Reactive form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyleControl.value}}

    \n
    \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleFormsExample, decorators: [{ type: Component, args: [{ selector: 'button-toggle-forms-example', imports: [MatButtonToggleModule, FormsModule, ReactiveFormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Button Toggle inside of a Template-driven form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyle}}

    \n
    \n\n
    \n

    Button Toggle inside of a Reactive form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyleControl.value}}

    \n
    \n\n" }] }] }); @@ -71,17 +71,13 @@ class ButtonToggleModeExample { toggleMultipleSelectionIndicator() { this.hideMultipleSelectionIndicator.update(value => !value); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleModeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonToggleModeExample, isStandalone: true, selector: "button-toggle-mode-example", ngImport: i0, template: "
    \n \n Hide Single Selection Indicator\n \n \n Hide Multiple Selection Indicator\n \n
    \n
    \n

    Single selection

    \n \n Red\n Green\n Blue\n \n
    \n
    \n

    Multiple selection

    \n \n Flour\n Eggs\n Sugar\n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleModeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonToggleModeExample, isStandalone: true, selector: "button-toggle-mode-example", ngImport: i0, template: "
    \n \n Hide Single Selection Indicator\n \n \n Hide Multiple Selection Indicator\n \n
    \n
    \n

    Single selection

    \n \n Red\n Green\n Blue\n \n
    \n
    \n

    Multiple selection

    \n \n Flour\n Eggs\n Sugar\n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonToggleModeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonToggleModeExample, decorators: [{ type: Component, args: [{ selector: 'button-toggle-mode-example', imports: [MatButtonToggleModule, MatCheckboxModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Hide Single Selection Indicator\n \n \n Hide Multiple Selection Indicator\n \n
    \n
    \n

    Single selection

    \n \n Red\n Green\n Blue\n \n
    \n
    \n

    Multiple selection

    \n \n Flour\n Eggs\n Sugar\n \n
    \n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ButtonToggleAppearanceExample, ButtonToggleFormsExample, ButtonToggleHarnessExample, ButtonToggleModeExample, ButtonToggleOverviewExample }; //# sourceMappingURL=button-toggle.mjs.map diff --git a/fesm2022/material/button-toggle.mjs.map b/fesm2022/material/button-toggle.mjs.map index ac23cfa870..014338a2d5 100755 --- a/fesm2022/material/button-toggle.mjs.map +++ b/fesm2022/material/button-toggle.mjs.map @@ -1 +1 @@ -{"version":3,"file":"button-toggle.mjs","sources":["../../../../../../../src/components-examples/material/button-toggle/button-toggle-appearance/button-toggle-appearance-example.ts","../../../../../../../src/components-examples/material/button-toggle/button-toggle-appearance/button-toggle-appearance-example.html","../../../../../../../src/components-examples/material/button-toggle/button-toggle-overview/button-toggle-overview-example.ts","../../../../../../../src/components-examples/material/button-toggle/button-toggle-overview/button-toggle-overview-example.html","../../../../../../../src/components-examples/material/button-toggle/button-toggle-harness/button-toggle-harness-example.ts","../../../../../../../src/components-examples/material/button-toggle/button-toggle-harness/button-toggle-harness-example.html","../../../../../../../src/components-examples/material/button-toggle/button-toggle-forms/button-toggle-forms-example.ts","../../../../../../../src/components-examples/material/button-toggle/button-toggle-forms/button-toggle-forms-example.html","../../../../../../../src/components-examples/material/button-toggle/button-toggle-mode/button-toggle-mode-example.ts","../../../../../../../src/components-examples/material/button-toggle/button-toggle-mode/button-toggle-mode-example.html","../../../../../../../src/components-examples/material/button-toggle/button-toggle_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Button toggle appearance\n */\n@Component({\n selector: 'button-toggle-appearance-example',\n templateUrl: 'button-toggle-appearance-example.html',\n styleUrl: 'button-toggle-appearance-example.css',\n imports: [MatButtonToggleModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleAppearanceExample {}\n","

    \n Default appearance:\n \n Bold\n Italic\n Underline\n \n

    \n\n

    \n Legacy appearance:\n \n Bold\n Italic\n Underline\n \n

    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Basic button-toggles\n */\n@Component({\n selector: 'button-toggle-overview-example',\n templateUrl: 'button-toggle-overview-example.html',\n imports: [MatButtonToggleModule],\n})\nexport class ButtonToggleOverviewExample {}\n","\n Bold\n Italic\n Underline\n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonToggleAppearance, MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Testing with MatButtonToggleHarness\n */\n@Component({\n selector: 'button-toggle-harness-example',\n templateUrl: 'button-toggle-harness-example.html',\n imports: [MatButtonToggleModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleHarnessExample {\n disabled = signal(false);\n appearance = signal('standard');\n}\n","\n One\n Two\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Button-toggles with forms\n */\n@Component({\n selector: 'button-toggle-forms-example',\n templateUrl: 'button-toggle-forms-example.html',\n imports: [MatButtonToggleModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleFormsExample {\n fontStyleControl = new FormControl('');\n fontStyle?: string;\n}\n","
    \n

    Button Toggle inside of a Template-driven form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyle}}

    \n
    \n\n
    \n

    Button Toggle inside of a Reactive form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyleControl.value}}

    \n
    \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title Button toggle selection mode\n */\n@Component({\n selector: 'button-toggle-mode-example',\n templateUrl: 'button-toggle-mode-example.html',\n imports: [MatButtonToggleModule, MatCheckboxModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleModeExample {\n hideSingleSelectionIndicator = signal(false);\n hideMultipleSelectionIndicator = signal(false);\n\n toggleSingleSelectionIndicator() {\n this.hideSingleSelectionIndicator.update(value => !value);\n }\n\n toggleMultipleSelectionIndicator() {\n this.hideMultipleSelectionIndicator.update(value => !value);\n }\n}\n","
    \n \n Hide Single Selection Indicator\n \n \n Hide Multiple Selection Indicator\n \n
    \n
    \n

    Single selection

    \n \n Red\n Green\n Blue\n \n
    \n
    \n

    Multiple selection

    \n \n Flour\n Eggs\n Sugar\n \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"button-toggle.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-appearance/button-toggle-appearance-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-appearance/button-toggle-appearance-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-overview/button-toggle-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-overview/button-toggle-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-harness/button-toggle-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-harness/button-toggle-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-forms/button-toggle-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-forms/button-toggle-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-mode/button-toggle-mode-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button-toggle/button-toggle-mode/button-toggle-mode-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Button toggle appearance\n */\n@Component({\n selector: 'button-toggle-appearance-example',\n templateUrl: 'button-toggle-appearance-example.html',\n styleUrl: 'button-toggle-appearance-example.css',\n imports: [MatButtonToggleModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleAppearanceExample {}\n","

    \n Default appearance:\n \n Bold\n Italic\n Underline\n \n

    \n\n

    \n Legacy appearance:\n \n Bold\n Italic\n Underline\n \n

    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Basic button-toggles\n */\n@Component({\n selector: 'button-toggle-overview-example',\n templateUrl: 'button-toggle-overview-example.html',\n imports: [MatButtonToggleModule],\n})\nexport class ButtonToggleOverviewExample {}\n","\n Bold\n Italic\n Underline\n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonToggleAppearance, MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Testing with MatButtonToggleHarness\n */\n@Component({\n selector: 'button-toggle-harness-example',\n templateUrl: 'button-toggle-harness-example.html',\n imports: [MatButtonToggleModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleHarnessExample {\n disabled = signal(false);\n appearance = signal('standard');\n}\n","\n One\n Two\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\n\n/**\n * @title Button-toggles with forms\n */\n@Component({\n selector: 'button-toggle-forms-example',\n templateUrl: 'button-toggle-forms-example.html',\n imports: [MatButtonToggleModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleFormsExample {\n fontStyleControl = new FormControl('');\n fontStyle?: string;\n}\n","
    \n

    Button Toggle inside of a Template-driven form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyle}}

    \n
    \n\n
    \n

    Button Toggle inside of a Reactive form

    \n \n Bold\n Italic\n Underline\n \n

    Chosen value is {{fontStyleControl.value}}

    \n
    \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title Button toggle selection mode\n */\n@Component({\n selector: 'button-toggle-mode-example',\n templateUrl: 'button-toggle-mode-example.html',\n imports: [MatButtonToggleModule, MatCheckboxModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ButtonToggleModeExample {\n hideSingleSelectionIndicator = signal(false);\n hideMultipleSelectionIndicator = signal(false);\n\n toggleSingleSelectionIndicator() {\n this.hideSingleSelectionIndicator.update(value => !value);\n }\n\n toggleMultipleSelectionIndicator() {\n this.hideMultipleSelectionIndicator.update(value => !value);\n }\n}\n","
    \n \n Hide Single Selection Indicator\n \n \n Hide Multiple Selection Indicator\n \n
    \n
    \n

    Single selection

    \n \n Red\n Green\n Blue\n \n
    \n
    \n

    Multiple selection

    \n \n Flour\n Eggs\n Sugar\n \n
    \n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/button.mjs b/fesm2022/material/button.mjs index f456870a29..e27e0ffdb5 100755 --- a/fesm2022/material/button.mjs +++ b/fesm2022/material/button.mjs @@ -9,27 +9,27 @@ import { MatButtonModule, MatButton } from '@angular/material/button'; import { MatTooltip } from '@angular/material/tooltip'; /** - * @title Basic buttons + * @title Button overview */ class ButtonOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonOverviewExample, isStandalone: true, selector: "button-overview-example", ngImport: i0, template: "
    \n
    Basic
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Raised
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Stroked
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Flat
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    Extended Fab
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n \n
    \n
    \n
    \n", styles: ["section {\n display: table;\n}\n\n.example-label {\n display: table-cell;\n font-size: 14px;\n margin-left: 8px;\n min-width: 120px;\n}\n\n.example-button-row {\n display: table-cell;\n max-width: 600px;\n}\n\n.example-button-row .mat-mdc-button-base {\n margin: 8px 8px 8px 0;\n}\n\n.example-flex-container {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n}\n\n.example-button-container {\n display: flex;\n justify-content: center;\n width: 140px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatMiniFabButton, selector: "button[mat-mini-fab], a[mat-mini-fab]", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatFabButton, selector: "button[mat-fab], a[mat-fab]", inputs: ["extended"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i2.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonOverviewExample, isStandalone: true, selector: "button-overview-example", ngImport: i0, template: "
    \n
    Text
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Elevated
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Outlined
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Filled
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Tonal
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Floating Action Button (FAB)
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Extended FAB
    \n
    \n
    \n \n \n \n favorite\n Link\n \n
    \n
    \n
    \n", styles: ["section {\n display: flex;\n align-items: center;\n}\n\n.example-label {\n font-size: 14px;\n margin: 0 16px 0 8px;\n min-width: 120px;\n}\n\n.example-button-row {\n max-width: 600px;\n}\n\n.example-button-row .mat-mdc-button-base {\n margin: 8px 8px 8px 0;\n}\n\n.example-flex-container {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatMiniFabButton, selector: "button[mat-mini-fab], a[mat-mini-fab], button[matMiniFab], a[matMiniFab]", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "component", type: i1.MatFabButton, selector: "button[mat-fab], a[mat-fab], button[matFab], a[matFab]", inputs: ["extended"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i2.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'button-overview-example', imports: [MatButtonModule, MatDividerModule, MatIconModule], template: "
    \n
    Basic
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Raised
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Stroked
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Flat
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    Extended Fab
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n \n
    \n
    \n
    \n", styles: ["section {\n display: table;\n}\n\n.example-label {\n display: table-cell;\n font-size: 14px;\n margin-left: 8px;\n min-width: 120px;\n}\n\n.example-button-row {\n display: table-cell;\n max-width: 600px;\n}\n\n.example-button-row .mat-mdc-button-base {\n margin: 8px 8px 8px 0;\n}\n\n.example-flex-container {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n}\n\n.example-button-container {\n display: flex;\n justify-content: center;\n width: 140px;\n}\n"] }] + args: [{ selector: 'button-overview-example', imports: [MatButtonModule, MatDividerModule, MatIconModule], template: "
    \n
    Text
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Elevated
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Outlined
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Filled
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Tonal
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Floating Action Button (FAB)
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Extended FAB
    \n
    \n
    \n \n \n \n favorite\n Link\n \n
    \n
    \n
    \n", styles: ["section {\n display: flex;\n align-items: center;\n}\n\n.example-label {\n font-size: 14px;\n margin: 0 16px 0 8px;\n min-width: 120px;\n}\n\n.example-button-row {\n max-width: 600px;\n}\n\n.example-button-row .mat-mdc-button-base {\n margin: 8px 8px 8px 0;\n}\n\n.example-flex-container {\n display: flex;\n justify-content: space-between;\n flex-wrap: wrap;\n}\n"] }] }] }); /** * @title Interactive disabled buttons */ class ButtonDisabledInteractiveExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonDisabledInteractiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonDisabledInteractiveExample, isStandalone: true, selector: "button-disabled-interactive-example", ngImport: i0, template: "Disabled button allowing interactivity\n\nDefault disabled button\n", styles: ["button {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonDisabledInteractiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonDisabledInteractiveExample, isStandalone: true, selector: "button-disabled-interactive-example", ngImport: i0, template: "Disabled button allowing interactivity\n\nDefault disabled button\n", styles: ["button {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonDisabledInteractiveExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonDisabledInteractiveExample, decorators: [{ type: Component, - args: [{ selector: 'button-disabled-interactive-example', imports: [MatButton, MatTooltip], template: "Disabled button allowing interactivity\n\nDefault disabled button\n", styles: ["button {\n margin-right: 8px;\n}\n"] }] + args: [{ selector: 'button-disabled-interactive-example', imports: [MatButton, MatTooltip], template: "Disabled button allowing interactivity\n\nDefault disabled button\n", styles: ["button {\n margin-right: 8px;\n}\n"] }] }] }); /** @@ -37,17 +37,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ButtonHarnessExample { clicked = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ButtonHarnessExample, isStandalone: true, selector: "button-harness-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ButtonHarnessExample, isStandalone: true, selector: "button-harness-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ButtonHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ButtonHarnessExample, decorators: [{ type: Component, - args: [{ selector: 'button-harness-example', imports: [MatButtonModule], template: "\n" }] + args: [{ selector: 'button-harness-example', imports: [MatButtonModule], template: "\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ButtonDisabledInteractiveExample, ButtonHarnessExample, ButtonOverviewExample }; //# sourceMappingURL=button.mjs.map diff --git a/fesm2022/material/button.mjs.map b/fesm2022/material/button.mjs.map index c4b6f2ae47..3fd66f48e2 100755 --- a/fesm2022/material/button.mjs.map +++ b/fesm2022/material/button.mjs.map @@ -1 +1 @@ -{"version":3,"file":"button.mjs","sources":["../../../../../../../src/components-examples/material/button/button-overview/button-overview-example.ts","../../../../../../../src/components-examples/material/button/button-overview/button-overview-example.html","../../../../../../../src/components-examples/material/button/button-disabled-interactive/button-disabled-interactive-example.ts","../../../../../../../src/components-examples/material/button/button-disabled-interactive/button-disabled-interactive-example.html","../../../../../../../src/components-examples/material/button/button-harness/button-harness-example.ts","../../../../../../../src/components-examples/material/button/button-harness/button-harness-example.html","../../../../../../../src/components-examples/material/button/button_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic buttons\n */\n@Component({\n selector: 'button-overview-example',\n templateUrl: 'button-overview-example.html',\n styleUrl: 'button-overview-example.css',\n imports: [MatButtonModule, MatDividerModule, MatIconModule],\n})\nexport class ButtonOverviewExample {}\n","
    \n
    Basic
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Raised
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Stroked
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Flat
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    Extended Fab
    \n
    \n
    \n
    \n \n
    \n
    \n \n
    \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButton} from '@angular/material/button';\nimport {MatTooltip} from '@angular/material/tooltip';\n\n/**\n * @title Interactive disabled buttons\n */\n@Component({\n selector: 'button-disabled-interactive-example',\n templateUrl: 'button-disabled-interactive-example.html',\n styleUrl: 'button-disabled-interactive-example.css',\n imports: [MatButton, MatTooltip],\n})\nexport class ButtonDisabledInteractiveExample {}\n","Disabled button allowing interactivity\n\nDefault disabled button\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Testing with MatButtonHarness\n */\n@Component({\n selector: 'button-harness-example',\n templateUrl: 'button-harness-example.html',\n imports: [MatButtonModule],\n})\nexport class ButtonHarnessExample {\n clicked = false;\n}\n","\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"button.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-overview/button-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-overview/button-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-disabled-interactive/button-disabled-interactive-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-disabled-interactive/button-disabled-interactive-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-harness/button-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/button/button-harness/button-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Button overview\n */\n@Component({\n selector: 'button-overview-example',\n templateUrl: 'button-overview-example.html',\n styleUrl: 'button-overview-example.css',\n imports: [MatButtonModule, MatDividerModule, MatIconModule],\n})\nexport class ButtonOverviewExample {}\n","
    \n
    Text
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Elevated
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Outlined
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Filled
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Tonal
    \n
    \n \n \n Link\n
    \n
    \n\n
    \n
    Icon
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Floating Action Button (FAB)
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Mini FAB
    \n
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    Extended FAB
    \n
    \n
    \n \n \n \n favorite\n Link\n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButton} from '@angular/material/button';\nimport {MatTooltip} from '@angular/material/tooltip';\n\n/**\n * @title Interactive disabled buttons\n */\n@Component({\n selector: 'button-disabled-interactive-example',\n templateUrl: 'button-disabled-interactive-example.html',\n styleUrl: 'button-disabled-interactive-example.css',\n imports: [MatButton, MatTooltip],\n})\nexport class ButtonDisabledInteractiveExample {}\n","Disabled button allowing interactivity\n\nDefault disabled button\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Testing with MatButtonHarness\n */\n@Component({\n selector: 'button-harness-example',\n templateUrl: 'button-harness-example.html',\n imports: [MatButtonModule],\n})\nexport class ButtonHarnessExample {\n clicked = false;\n}\n","\n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/card.mjs b/fesm2022/material/card.mjs index b7266bc1b4..4f57496501 100755 --- a/fesm2022/material/card.mjs +++ b/fesm2022/material/card.mjs @@ -1,59 +1,47 @@ import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy } from '@angular/core'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; import { MatProgressBarModule } from '@angular/material/progress-bar'; -import * as i2$1 from '@angular/material/chips'; +import * as i2 from '@angular/material/chips'; import { MatChipsModule } from '@angular/material/chips'; /** - * @title Card with multiple sections - */ -class CardFancyExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardFancyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardFancyExample, isStandalone: true, selector: "card-fancy-example", ngImport: i0, template: "\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-header-image {\n background-image: url('https://material.angular.io/assets/img/examples/shiba1.jpg');\n background-size: cover;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "directive", type: i1.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardImage, selector: "[mat-card-image], [matCardImage]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); -} -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardFancyExample, decorators: [{ - type: Component, - args: [{ selector: 'card-fancy-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-header-image {\n background-image: url('https://material.angular.io/assets/img/examples/shiba1.jpg');\n background-size: cover;\n}\n"] }] - }] }); - -/** - * @title Basic cards + * @title Card overview */ class CardOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardOverviewExample, isStandalone: true, selector: "card-overview-example", ngImport: i0, template: "\n Simple card\n\n", dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CardOverviewExample, isStandalone: true, selector: "card-overview-example", ngImport: i0, template: "\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-header-image {\n background-image: url('https://material.angular.dev/assets/img/examples/shiba1.jpg');\n background-size: cover;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "directive", type: i1.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardImage, selector: "[mat-card-image], [matCardImage]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'card-overview-example', imports: [MatCardModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Simple card\n\n" }] + args: [{ selector: 'card-overview-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-header-image {\n background-image: url('https://material.angular.dev/assets/img/examples/shiba1.jpg');\n background-size: cover;\n}\n"] }] }] }); /** * @title Testing with MatCardHarness */ class CardHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardHarnessExample, isStandalone: true, selector: "card-harness-example", ngImport: i0, template: "\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "directive", type: i1.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardImage, selector: "[mat-card-image], [matCardImage]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CardHarnessExample, isStandalone: true, selector: "card-harness-example", ngImport: i0, template: "\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "directive", type: i1.MatCardAvatar, selector: "[mat-card-avatar], [matCardAvatar]" }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardImage, selector: "[mat-card-image], [matCardImage]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardHarnessExample, decorators: [{ type: Component, - args: [{ selector: 'card-harness-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n" }] + args: [{ selector: 'card-harness-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n" }] }] }); /** * @title Card with actions alignment option */ class CardActionsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardActionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardActionsExample, isStandalone: true, selector: "card-actions-example", ngImport: i0, template: "\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardActionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CardActionsExample, isStandalone: true, selector: "card-actions-example", ngImport: i0, template: "\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardActionsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardActionsExample, decorators: [{ type: Component, - args: [{ selector: 'card-actions-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n" }] + args: [{ selector: 'card-actions-example', imports: [MatCardModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n" }] }] }); /** @@ -63,12 +51,12 @@ class CardMediaSizeExample { longText = `The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally bred for hunting.`; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardMediaSizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardMediaSizeExample, isStandalone: true, selector: "card-media-size-example", ngImport: i0, template: "\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n", styles: [".example-card {\n max-width: 400px;\n margin-bottom: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardLgImage, selector: "[mat-card-lg-image], [matCardImageLarge]" }, { kind: "directive", type: i1.MatCardMdImage, selector: "[mat-card-md-image], [matCardImageMedium]" }, { kind: "directive", type: i1.MatCardSmImage, selector: "[mat-card-sm-image], [matCardImageSmall]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "component", type: i1.MatCardTitleGroup, selector: "mat-card-title-group" }, { kind: "directive", type: i1.MatCardXlImage, selector: "[mat-card-xl-image], [matCardImageXLarge]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardMediaSizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CardMediaSizeExample, isStandalone: true, selector: "card-media-size-example", ngImport: i0, template: "\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n", styles: [".example-card {\n max-width: 400px;\n margin-bottom: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardLgImage, selector: "[mat-card-lg-image], [matCardImageLarge]" }, { kind: "directive", type: i1.MatCardMdImage, selector: "[mat-card-md-image], [matCardImageMedium]" }, { kind: "directive", type: i1.MatCardSmImage, selector: "[mat-card-sm-image], [matCardImageSmall]" }, { kind: "directive", type: i1.MatCardSubtitle, selector: "mat-card-subtitle, [mat-card-subtitle], [matCardSubtitle]" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "component", type: i1.MatCardTitleGroup, selector: "mat-card-title-group" }, { kind: "directive", type: i1.MatCardXlImage, selector: "[mat-card-xl-image], [matCardImageXLarge]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardMediaSizeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardMediaSizeExample, decorators: [{ type: Component, - args: [{ selector: 'card-media-size-example', imports: [MatCardModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n", styles: [".example-card {\n max-width: 400px;\n margin-bottom: 8px;\n}\n"] }] + args: [{ selector: 'card-media-size-example', imports: [MatCardModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n", styles: [".example-card {\n max-width: 400px;\n margin-bottom: 8px;\n}\n"] }] }] }); /** @@ -78,17 +66,13 @@ class CardFooterExample { longText = `The Chihuahua is a Mexican breed of toy dog. It is named for the Mexican state of Chihuahua and is among the smallest of all dog breeds. It is usually kept as a companion animal or for showing.`; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CardFooterExample, isStandalone: true, selector: "card-footer-example", ngImport: i0, template: "\n \n Chihuahua\n \n \n

    {{longText}}

    \n
    \n \n \n charming\n graceful\n sassy\n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-card-footer {\n padding: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "directive", type: i1.MatCardFooter, selector: "mat-card-footer" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2$1.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2$1.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }, { kind: "ngmodule", type: MatProgressBarModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CardFooterExample, isStandalone: true, selector: "card-footer-example", ngImport: i0, template: "\n \n Chihuahua\n \n \n

    {{longText}}

    \n
    \n \n \n charming\n graceful\n sassy\n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-card-footer {\n padding: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "directive", type: i1.MatCardFooter, selector: "mat-card-footer" }, { kind: "component", type: i1.MatCardHeader, selector: "mat-card-header" }, { kind: "directive", type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }, { kind: "ngmodule", type: MatProgressBarModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CardFooterExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CardFooterExample, decorators: [{ type: Component, args: [{ selector: 'card-footer-example', imports: [MatCardModule, MatChipsModule, MatProgressBarModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n Chihuahua\n \n \n

    {{longText}}

    \n
    \n \n \n charming\n graceful\n sassy\n \n \n
    \n", styles: [".example-card {\n max-width: 400px;\n}\n\n.example-card-footer {\n padding: 16px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - -export { CardActionsExample, CardFancyExample, CardFooterExample, CardHarnessExample, CardMediaSizeExample, CardOverviewExample }; +export { CardActionsExample, CardFooterExample, CardHarnessExample, CardMediaSizeExample, CardOverviewExample }; //# sourceMappingURL=card.mjs.map diff --git a/fesm2022/material/card.mjs.map b/fesm2022/material/card.mjs.map index 4c2a679e63..295d06bdb7 100755 --- a/fesm2022/material/card.mjs.map +++ b/fesm2022/material/card.mjs.map @@ -1 +1 @@ -{"version":3,"file":"card.mjs","sources":["../../../../../../../src/components-examples/material/card/card-fancy/card-fancy-example.ts","../../../../../../../src/components-examples/material/card/card-fancy/card-fancy-example.html","../../../../../../../src/components-examples/material/card/card-overview/card-overview-example.ts","../../../../../../../src/components-examples/material/card/card-overview/card-overview-example.html","../../../../../../../src/components-examples/material/card/card-harness/card-harness-example.ts","../../../../../../../src/components-examples/material/card/card-harness/card-harness-example.html","../../../../../../../src/components-examples/material/card/card-actions/card-actions-example.ts","../../../../../../../src/components-examples/material/card/card-actions/card-actions-example.html","../../../../../../../src/components-examples/material/card/card-media-size/card-media-size-example.ts","../../../../../../../src/components-examples/material/card/card-media-size/card-media-size-example.html","../../../../../../../src/components-examples/material/card/card-footer/card-footer-example.ts","../../../../../../../src/components-examples/material/card/card-footer/card-footer-example.html","../../../../../../../src/components-examples/material/card/card_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card with multiple sections\n */\n@Component({\n selector: 'card-fancy-example',\n templateUrl: 'card-fancy-example.html',\n styleUrl: 'card-fancy-example.css',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardFancyExample {}\n","\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Basic cards\n */\n@Component({\n selector: 'card-overview-example',\n templateUrl: 'card-overview-example.html',\n imports: [MatCardModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardOverviewExample {}\n","\n Simple card\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Testing with MatCardHarness\n */\n@Component({\n selector: 'card-harness-example',\n templateUrl: 'card-harness-example.html',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardHarnessExample {}\n","\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card with actions alignment option\n */\n@Component({\n selector: 'card-actions-example',\n templateUrl: 'card-actions-example.html',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardActionsExample {}\n","\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card with media size\n */\n@Component({\n selector: 'card-media-size-example',\n templateUrl: 'card-media-size-example.html',\n styleUrl: 'card-media-size-example.css',\n imports: [MatCardModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardMediaSizeExample {\n longText = `The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog\n from Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was\n originally bred for hunting.`;\n}\n","\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Card with footer\n */\n@Component({\n selector: 'card-footer-example',\n templateUrl: 'card-footer-example.html',\n styleUrl: 'card-footer-example.css',\n imports: [MatCardModule, MatChipsModule, MatProgressBarModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardFooterExample {\n longText = `The Chihuahua is a Mexican breed of toy dog. It is named for the\n Mexican state of Chihuahua and is among the smallest of all dog breeds. It is\n usually kept as a companion animal or for showing.`;\n}\n","\n \n Chihuahua\n \n \n

    {{longText}}

    \n
    \n \n \n charming\n graceful\n sassy\n \n \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"card.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-overview/card-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-overview/card-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-harness/card-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-harness/card-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-actions/card-actions-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-actions/card-actions-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-media-size/card-media-size-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-media-size/card-media-size-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-footer/card-footer-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/card/card-footer/card-footer-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card overview\n */\n@Component({\n selector: 'card-overview-example',\n templateUrl: 'card-overview-example.html',\n styleUrl: 'card-overview-example.css',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardOverviewExample {}\n","\n \n
    \n Shiba Inu\n Dog Breed\n
    \n \"Photo\n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.\n A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally\n bred for hunting.\n

    \n
    \n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Testing with MatCardHarness\n */\n@Component({\n selector: 'card-harness-example',\n templateUrl: 'card-harness-example.html',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardHarnessExample {}\n","\n\n\n \n
    \n Shiba Inu\n Dog Breed\n
    \n
    \n \n

    \n The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from\n Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu\n was originally bred for hunting.\n

    \n
    \n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card with actions alignment option\n */\n@Component({\n selector: 'card-actions-example',\n templateUrl: 'card-actions-example.html',\n imports: [MatCardModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardActionsExample {}\n","\n \n Australian Shepherd\n Herding group\n \n \n \n \n\n
    \n\n \n Poodle\n Non-sporting group\n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Card with media size\n */\n@Component({\n selector: 'card-media-size-example',\n templateUrl: 'card-media-size-example.html',\n styleUrl: 'card-media-size-example.css',\n imports: [MatCardModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardMediaSizeExample {\n longText = `The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog\n from Japan. A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was\n originally bred for hunting.`;\n}\n","\n\n \n \n Shiba Inu\n Small\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Medium\n \"Image\n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Large\n \n \n \n \n {{longText}}\n \n\n\n\n \n \n Shiba Inu\n Extra large\n \n \n \n \n {{longText}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Card with footer\n */\n@Component({\n selector: 'card-footer-example',\n templateUrl: 'card-footer-example.html',\n styleUrl: 'card-footer-example.css',\n imports: [MatCardModule, MatChipsModule, MatProgressBarModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CardFooterExample {\n longText = `The Chihuahua is a Mexican breed of toy dog. It is named for the\n Mexican state of Chihuahua and is among the smallest of all dog breeds. It is\n usually kept as a companion animal or for showing.`;\n}\n","\n \n Chihuahua\n \n \n

    {{longText}}

    \n
    \n \n \n charming\n graceful\n sassy\n \n \n
    \n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/checkbox.mjs b/fesm2022/material/checkbox.mjs index b4b53358ad..b11f959113 100755 --- a/fesm2022/material/checkbox.mjs +++ b/fesm2022/material/checkbox.mjs @@ -1,12 +1,12 @@ import * as i0 from '@angular/core'; import { model, Component, ChangeDetectionStrategy, input, signal, computed, inject } from '@angular/core'; -import * as i1$2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule, FormBuilder, ReactiveFormsModule } from '@angular/forms'; import * as i1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; -import * as i1$1 from '@angular/material/checkbox'; +import * as i2 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i4 from '@angular/material/radio'; +import * as i1$1 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import { JsonPipe } from '@angular/common'; @@ -18,10 +18,10 @@ class CheckboxConfigurableExample { indeterminate = model(false); labelPosition = model('after'); disabled = model(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: CheckboxConfigurableExample, isStandalone: true, selector: "checkbox-configurable-example", inputs: { checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, labelPosition: { classPropertyName: "labelPosition", publicName: "labelPosition", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", indeterminate: "indeterminateChange", labelPosition: "labelPositionChange", disabled: "disabledChange" }, ngImport: i0, template: "\n \n

    Checkbox configuration

    \n\n
    \n Checked\n Indeterminate\n
    \n\n
    \n \n \n After\n Before\n \n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n I'm a checkbox\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i4.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i4.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: CheckboxConfigurableExample, isStandalone: true, selector: "checkbox-configurable-example", inputs: { checked: { classPropertyName: "checked", publicName: "checked", isSignal: true, isRequired: false, transformFunction: null }, indeterminate: { classPropertyName: "indeterminate", publicName: "indeterminate", isSignal: true, isRequired: false, transformFunction: null }, labelPosition: { classPropertyName: "labelPosition", publicName: "labelPosition", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { checked: "checkedChange", indeterminate: "indeterminateChange", labelPosition: "labelPositionChange", disabled: "disabledChange" }, ngImport: i0, template: "\n \n

    Checkbox configuration

    \n\n
    \n Checked\n Indeterminate\n
    \n\n
    \n \n \n After\n Before\n \n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n I'm a checkbox\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'checkbox-configurable-example', imports: [MatCardModule, MatCheckboxModule, FormsModule, MatRadioModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n

    Checkbox configuration

    \n\n
    \n Checked\n Indeterminate\n
    \n\n
    \n \n \n After\n Before\n \n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n I'm a checkbox\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n"] }] }] }); @@ -31,10 +31,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class CheckboxHarnessExample { disabled = input(true); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: CheckboxHarnessExample, isStandalone: true, selector: "checkbox-harness-example", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "\n First\n\n\n Second\n\n", dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: CheckboxHarnessExample, isStandalone: true, selector: "checkbox-harness-example", inputs: { disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "\n First\n\n\n Second\n\n", dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxHarnessExample, decorators: [{ type: Component, args: [{ selector: 'checkbox-harness-example', imports: [MatCheckboxModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n First\n\n\n Second\n\n" }] }] }); @@ -72,10 +72,10 @@ class CheckboxOverviewExample { return { ...task }; }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: CheckboxOverviewExample, isStandalone: true, selector: "checkbox-overview-example", ngImport: i0, template: "
    \n Check me!\n Disabled\n
    \n\n
    \n \n \n {{task().name}}\n \n \n \n
      \n @for (subtask of task().subtasks; track subtask; let i = $index) {\n
    • \n \n {{subtask.name}}\n \n
    • \n }\n
    \n
    \n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n\n.example-margin {\n margin: 0 12px;\n}\n\nul {\n list-style-type: none;\n margin-top: 4px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: CheckboxOverviewExample, isStandalone: true, selector: "checkbox-overview-example", ngImport: i0, template: "
    \n Check me!\n Disabled\n
    \n\n
    \n \n \n {{task().name}}\n \n \n \n
      \n @for (subtask of task().subtasks; track subtask; let i = $index) {\n
    • \n \n {{subtask.name}}\n \n
    • \n }\n
    \n
    \n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n\n.example-margin {\n margin: 0 12px;\n}\n\nul {\n list-style-type: none;\n margin-top: 4px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxOverviewExample, decorators: [{ type: Component, args: [{ selector: 'checkbox-overview-example', imports: [MatCheckboxModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n Check me!\n Disabled\n
    \n\n
    \n \n \n {{task().name}}\n \n \n \n
      \n @for (subtask of task().subtasks; track subtask; let i = $index) {\n
    • \n \n {{subtask.name}}\n \n
    • \n }\n
    \n
    \n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n\n.example-margin {\n margin: 0 12px;\n}\n\nul {\n list-style-type: none;\n margin-top: 4px;\n}\n"] }] }] }); @@ -88,17 +88,13 @@ class CheckboxReactiveFormsExample { extracheese: false, mushroom: false, }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxReactiveFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: CheckboxReactiveFormsExample, isStandalone: true, selector: "checkbox-reactive-forms-example", ngImport: i0, template: "
    \n

    Select your toppings:

    \n

    Pepperoni

    \n

    Extra Cheese

    \n

    Mushroom

    \n
    \n\n
    \n

    You chose:

    \n {{toppings.value | json}}\n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxReactiveFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: CheckboxReactiveFormsExample, isStandalone: true, selector: "checkbox-reactive-forms-example", ngImport: i0, template: "
    \n

    Select your toppings:

    \n

    Pepperoni

    \n

    Extra Cheese

    \n

    Mushroom

    \n
    \n\n
    \n

    You chose:

    \n {{toppings.value | json}}\n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: CheckboxReactiveFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: CheckboxReactiveFormsExample, decorators: [{ type: Component, args: [{ selector: 'checkbox-reactive-forms-example', imports: [FormsModule, ReactiveFormsModule, MatCheckboxModule, JsonPipe], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Select your toppings:

    \n

    Pepperoni

    \n

    Extra Cheese

    \n

    Mushroom

    \n
    \n\n
    \n

    You chose:

    \n {{toppings.value | json}}\n
    \n", styles: [".example-section {\n margin: 12px 0;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { CheckboxConfigurableExample, CheckboxHarnessExample, CheckboxOverviewExample, CheckboxReactiveFormsExample }; //# sourceMappingURL=checkbox.mjs.map diff --git a/fesm2022/material/checkbox.mjs.map b/fesm2022/material/checkbox.mjs.map index e2be5b4d65..33b4ecf87a 100755 --- a/fesm2022/material/checkbox.mjs.map +++ b/fesm2022/material/checkbox.mjs.map @@ -1 +1 @@ -{"version":3,"file":"checkbox.mjs","sources":["../../../../../../../src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.ts","../../../../../../../src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.html","../../../../../../../src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.ts","../../../../../../../src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.html","../../../../../../../src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.ts","../../../../../../../src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.html","../../../../../../../src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.ts","../../../../../../../src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.html","../../../../../../../src/components-examples/material/checkbox/checkbox_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component, model} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Configurable checkbox\n */\n@Component({\n selector: 'checkbox-configurable-example',\n templateUrl: 'checkbox-configurable-example.html',\n styleUrl: 'checkbox-configurable-example.css',\n imports: [MatCardModule, MatCheckboxModule, FormsModule, MatRadioModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxConfigurableExample {\n readonly checked = model(false);\n readonly indeterminate = model(false);\n readonly labelPosition = model<'before' | 'after'>('after');\n readonly disabled = model(false);\n}\n","\n \n

    Checkbox configuration

    \n\n
    \n Checked\n Indeterminate\n
    \n\n
    \n \n \n After\n Before\n \n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n I'm a checkbox\n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component, input} from '@angular/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title Testing with MatCheckboxHarness\n */\n@Component({\n selector: 'checkbox-harness-example',\n templateUrl: 'checkbox-harness-example.html',\n imports: [MatCheckboxModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxHarnessExample {\n readonly disabled = input(true);\n}\n","\n First\n\n\n Second\n\n","import {ChangeDetectionStrategy, Component, computed, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\nexport interface Task {\n name: string;\n completed: boolean;\n subtasks?: Task[];\n}\n\n/**\n * @title Basic checkboxes\n */\n@Component({\n selector: 'checkbox-overview-example',\n templateUrl: 'checkbox-overview-example.html',\n styleUrl: 'checkbox-overview-example.css',\n imports: [MatCheckboxModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxOverviewExample {\n readonly task = signal({\n name: 'Parent task',\n completed: false,\n subtasks: [\n {name: 'Child task 1', completed: false},\n {name: 'Child task 2', completed: false},\n {name: 'Child task 3', completed: false},\n ],\n });\n\n readonly partiallyComplete = computed(() => {\n const task = this.task();\n if (!task.subtasks) {\n return false;\n }\n return task.subtasks.some(t => t.completed) && !task.subtasks.every(t => t.completed);\n });\n\n update(completed: boolean, index?: number) {\n this.task.update(task => {\n if (index === undefined) {\n task.completed = completed;\n task.subtasks?.forEach(t => (t.completed = completed));\n } else {\n task.subtasks![index].completed = completed;\n task.completed = task.subtasks?.every(t => t.completed) ?? true;\n }\n return {...task};\n });\n }\n}\n","
    \n Check me!\n Disabled\n
    \n\n
    \n \n \n {{task().name}}\n \n \n \n
      \n @for (subtask of task().subtasks; track subtask; let i = $index) {\n
    • \n \n {{subtask.name}}\n \n
    • \n }\n
    \n
    \n
    \n","import {JsonPipe} from '@angular/common';\nimport {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/** @title Checkboxes with reactive forms */\n@Component({\n selector: 'checkbox-reactive-forms-example',\n templateUrl: 'checkbox-reactive-forms-example.html',\n styleUrl: 'checkbox-reactive-forms-example.css',\n imports: [FormsModule, ReactiveFormsModule, MatCheckboxModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxReactiveFormsExample {\n private readonly _formBuilder = inject(FormBuilder);\n\n readonly toppings = this._formBuilder.group({\n pepperoni: false,\n extracheese: false,\n mushroom: false,\n });\n}\n","
    \n

    Select your toppings:

    \n

    Pepperoni

    \n

    Extra Cheese

    \n

    Mushroom

    \n
    \n\n
    \n

    You chose:

    \n {{toppings.value | json}}\n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i3","i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"checkbox.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-configurable/checkbox-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-harness/checkbox-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-overview/checkbox-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/checkbox/checkbox-reactive-forms/checkbox-reactive-forms-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component, model} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatCardModule} from '@angular/material/card';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Configurable checkbox\n */\n@Component({\n selector: 'checkbox-configurable-example',\n templateUrl: 'checkbox-configurable-example.html',\n styleUrl: 'checkbox-configurable-example.css',\n imports: [MatCardModule, MatCheckboxModule, FormsModule, MatRadioModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxConfigurableExample {\n readonly checked = model(false);\n readonly indeterminate = model(false);\n readonly labelPosition = model<'before' | 'after'>('after');\n readonly disabled = model(false);\n}\n","\n \n

    Checkbox configuration

    \n\n
    \n Checked\n Indeterminate\n
    \n\n
    \n \n \n After\n Before\n \n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n I'm a checkbox\n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component, input} from '@angular/core';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title Testing with MatCheckboxHarness\n */\n@Component({\n selector: 'checkbox-harness-example',\n templateUrl: 'checkbox-harness-example.html',\n imports: [MatCheckboxModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxHarnessExample {\n readonly disabled = input(true);\n}\n","\n First\n\n\n Second\n\n","import {ChangeDetectionStrategy, Component, computed, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\nexport interface Task {\n name: string;\n completed: boolean;\n subtasks?: Task[];\n}\n\n/**\n * @title Basic checkboxes\n */\n@Component({\n selector: 'checkbox-overview-example',\n templateUrl: 'checkbox-overview-example.html',\n styleUrl: 'checkbox-overview-example.css',\n imports: [MatCheckboxModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxOverviewExample {\n readonly task = signal({\n name: 'Parent task',\n completed: false,\n subtasks: [\n {name: 'Child task 1', completed: false},\n {name: 'Child task 2', completed: false},\n {name: 'Child task 3', completed: false},\n ],\n });\n\n readonly partiallyComplete = computed(() => {\n const task = this.task();\n if (!task.subtasks) {\n return false;\n }\n return task.subtasks.some(t => t.completed) && !task.subtasks.every(t => t.completed);\n });\n\n update(completed: boolean, index?: number) {\n this.task.update(task => {\n if (index === undefined) {\n task.completed = completed;\n task.subtasks?.forEach(t => (t.completed = completed));\n } else {\n task.subtasks![index].completed = completed;\n task.completed = task.subtasks?.every(t => t.completed) ?? true;\n }\n return {...task};\n });\n }\n}\n","
    \n Check me!\n Disabled\n
    \n\n
    \n \n \n {{task().name}}\n \n \n \n
      \n @for (subtask of task().subtasks; track subtask; let i = $index) {\n
    • \n \n {{subtask.name}}\n \n
    • \n }\n
    \n
    \n
    \n","import {JsonPipe} from '@angular/common';\nimport {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/** @title Checkboxes with reactive forms */\n@Component({\n selector: 'checkbox-reactive-forms-example',\n templateUrl: 'checkbox-reactive-forms-example.html',\n styleUrl: 'checkbox-reactive-forms-example.css',\n imports: [FormsModule, ReactiveFormsModule, MatCheckboxModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CheckboxReactiveFormsExample {\n private readonly _formBuilder = inject(FormBuilder);\n\n readonly toppings = this._formBuilder.group({\n pepperoni: false,\n extracheese: false,\n mushroom: false,\n });\n}\n","
    \n

    Select your toppings:

    \n

    Pepperoni

    \n

    Extra Cheese

    \n

    Mushroom

    \n
    \n\n
    \n

    You chose:

    \n {{toppings.value | json}}\n
    \n"],"names":["i4","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/chips.mjs b/fesm2022/material/chips.mjs index a81ecb6823..1142220c89 100755 --- a/fesm2022/material/chips.mjs +++ b/fesm2022/material/chips.mjs @@ -2,7 +2,7 @@ import { LiveAnnouncer } from '@angular/cdk/a11y'; import { ENTER, COMMA } from '@angular/cdk/keycodes'; import * as i0 from '@angular/core'; import { model, signal, computed, inject, Component, ChangeDetectionStrategy } from '@angular/core'; -import * as i6 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormsModule, FormControl, ReactiveFormsModule } from '@angular/forms'; import * as i4 from '@angular/material/autocomplete'; import { MatAutocompleteModule } from '@angular/material/autocomplete'; @@ -12,7 +12,6 @@ import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i5 from '@angular/material/core'; import { moveItemInArray, CdkDropList, CdkDrag } from '@angular/cdk/drag-drop'; import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; @@ -57,10 +56,10 @@ class ChipsAutocompleteExample { this.currentFruit.set(''); event.option.deselect(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsAutocompleteExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsAutocompleteExample, isStandalone: true, selector: "chips-autocomplete-example", inputs: { currentFruit: { classPropertyName: "currentFruit", publicName: "currentFruit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { currentFruit: "currentFruitChange" }, ngImport: i0, template: "
    \n \n Favorite Fruits\n \n @for (fruit of fruits(); track $index) {\n \n {{fruit}}\n \n \n }\n \n \n \n @for (fruit of filteredFruits(); track fruit) {\n {{fruit}}\n }\n \n \n
    \n", styles: [".example-chip-list {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i6.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i6.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsAutocompleteExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsAutocompleteExample, isStandalone: true, selector: "chips-autocomplete-example", inputs: { currentFruit: { classPropertyName: "currentFruit", publicName: "currentFruit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { currentFruit: "currentFruitChange" }, ngImport: i0, template: "
    \n \n Favorite Fruits\n \n @for (fruit of fruits(); track $index) {\n \n {{fruit}}\n \n \n }\n \n \n \n @for (fruit of filteredFruits(); track fruit) {\n {{fruit}}\n }\n \n \n
    \n", styles: [".example-chip-list {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled", "readonly", "matChipInputDisabledInteractive"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatAutocompleteModule }, { kind: "component", type: i4.MatAutocomplete, selector: "mat-autocomplete", inputs: ["aria-label", "aria-labelledby", "displayWith", "autoActiveFirstOption", "autoSelectActiveOption", "requireSelection", "panelWidth", "disableRipple", "class", "hideSingleSelectionIndicator"], outputs: ["optionSelected", "opened", "closed", "optionActivated"], exportAs: ["matAutocomplete"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "directive", type: i4.MatAutocompleteTrigger, selector: "input[matAutocomplete], textarea[matAutocomplete]", inputs: ["matAutocomplete", "matAutocompletePosition", "matAutocompleteConnectedTo", "autocomplete", "matAutocompleteDisabled"], exportAs: ["matAutocompleteTrigger"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsAutocompleteExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsAutocompleteExample, decorators: [{ type: Component, args: [{ selector: 'chips-autocomplete-example', imports: [MatFormFieldModule, MatChipsModule, MatIconModule, MatAutocompleteModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Favorite Fruits\n \n @for (fruit of fruits(); track $index) {\n \n {{fruit}}\n \n \n }\n \n \n \n @for (fruit of filteredFruits(); track fruit) {\n {{fruit}}\n }\n \n \n
    \n", styles: [".example-chip-list {\n width: 100%;\n}\n"] }] }] }); @@ -83,10 +82,10 @@ class ChipsDragDropExample { return [...vegetables]; }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsDragDropExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsDragDropExample, isStandalone: true, selector: "chips-drag-drop-example", ngImport: i0, template: "\n @for (vegetable of vegetables(); track vegetable.name) {\n {{vegetable.name}}\n }\n\n", styles: [".example-box.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-chip .cdk-drop-list-dragging {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsDragDropExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsDragDropExample, isStandalone: true, selector: "chips-drag-drop-example", ngImport: i0, template: "\n @for (vegetable of vegetables(); track vegetable.name) {\n {{vegetable.name}}\n }\n\n", styles: [".example-box.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-chip .cdk-drop-list-dragging {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsDragDropExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsDragDropExample, decorators: [{ type: Component, args: [{ selector: 'chips-drag-drop-example', imports: [MatChipsModule, CdkDropList, CdkDrag], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n @for (vegetable of vegetables(); track vegetable.name) {\n {{vegetable.name}}\n }\n\n", styles: [".example-box.cdk-drag-animating {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.example-chip .cdk-drop-list-dragging {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n"] }] }] }); @@ -136,10 +135,10 @@ class ChipsInputExample { return fruits; }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsInputExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsInputExample, isStandalone: true, selector: "chips-input-example", ngImport: i0, template: "\n Favorite Fruits\n \n @for (fruit of fruits(); track fruit) {\n \n {{fruit.name}}\n \n \n }\n \n \n\n", styles: [".example-chip-list {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsInputExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsInputExample, isStandalone: true, selector: "chips-input-example", ngImport: i0, template: "\n Favorite Fruits\n \n @for (fruit of fruits(); track fruit) {\n \n {{fruit.name}}\n \n \n }\n \n \n\n", styles: [".example-chip-list {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled", "readonly", "matChipInputDisabledInteractive"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsInputExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsInputExample, decorators: [{ type: Component, args: [{ selector: 'chips-input-example', imports: [MatFormFieldModule, MatChipsModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Favorite Fruits\n \n @for (fruit of fruits(); track fruit) {\n \n {{fruit.name}}\n \n \n }\n \n \n\n", styles: [".example-chip-list {\n width: 100%;\n}\n"] }] }] }); @@ -148,10 +147,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic chips */ class ChipsOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ChipsOverviewExample, isStandalone: true, selector: "chips-overview-example", ngImport: i0, template: "\n One fish\n Two fish\n Three fish\n Four fish\n", dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ChipsOverviewExample, isStandalone: true, selector: "chips-overview-example", ngImport: i0, template: "\n One fish\n Two fish\n Three fish\n Four fish\n", dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsOverviewExample, decorators: [{ type: Component, args: [{ selector: 'chips-overview-example', imports: [MatChipsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n One fish\n Two fish\n Three fish\n Four fish\n" }] }] }); @@ -161,14 +160,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ChipsStackedExample { bestBoys = ['Samoyed', 'Akita Inu', 'Alaskan Malamute', 'Siberian Husky']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsStackedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsStackedExample, isStandalone: true, selector: "chips-stacked-example", ngImport: i0, template: "\n @for (dog of bestBoys; track dog) {\n {{dog}}\n }\n\n", styles: [".mat-mdc-chip-set {\n max-width: 200px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i2.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsStackedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsStackedExample, isStandalone: true, selector: "chips-stacked-example", ngImport: i0, template: "\n @for (dog of bestBoys; track dog) {\n {{dog}}\n }\n\n", styles: [".mat-mdc-chip-set {\n max-width: 200px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i2.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsStackedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsStackedExample, decorators: [{ type: Component, args: [{ selector: 'chips-stacked-example', imports: [MatChipsModule], template: "\n @for (dog of bestBoys; track dog) {\n {{dog}}\n }\n\n", styles: [".mat-mdc-chip-set {\n max-width: 200px;\n}\n"] }] }] }); +/// /** * @title Testing with MatChipsHarness */ @@ -176,10 +176,10 @@ class ChipsHarnessExample { isDisabled = signal(false); remove = jasmine.createSpy('remove spy'); add = jasmine.createSpy('add spy'); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ChipsHarnessExample, isStandalone: true, selector: "chips-harness-example", ngImport: i0, template: "\n Chip 1\n \n Chip 2\n \n \n CChip 4\n\n", dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "directive", type: i2.MatChipAvatar, selector: "mat-chip-avatar, [matChipAvatar]" }, { kind: "component", type: i2.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i2.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ChipsHarnessExample, isStandalone: true, selector: "chips-harness-example", ngImport: i0, template: "\n Chip 1\n \n Chip 2\n \n \n CChip 4\n\n", dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "directive", type: i2.MatChipAvatar, selector: "mat-chip-avatar, [matChipAvatar]" }, { kind: "component", type: i2.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i2.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsHarnessExample, decorators: [{ type: Component, args: [{ selector: 'chips-harness-example', imports: [MatChipsModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Chip 1\n \n Chip 2\n \n \n CChip 4\n\n" }] }] }); @@ -211,10 +211,10 @@ class ChipsFormControlExample { // Clear the input value event.chipInput.clear(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsFormControlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsFormControlExample, isStandalone: true, selector: "chips-form-control-example", ngImport: i0, template: "
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n", styles: [".example-form-field {\n width: 100%;\n}\n\n.example-button-container > button {\n margin: 0 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i6.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsFormControlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsFormControlExample, isStandalone: true, selector: "chips-form-control-example", ngImport: i0, template: "
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n", styles: [".example-form-field {\n width: 100%;\n}\n\n.example-button-container > button {\n margin: 0 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled", "readonly", "matChipInputDisabledInteractive"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsFormControlExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsFormControlExample, decorators: [{ type: Component, args: [{ selector: 'chips-form-control-example', imports: [ MatButtonModule, @@ -223,7 +223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor FormsModule, ReactiveFormsModule, MatIconModule, - ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n", styles: [".example-form-field {\n width: 100%;\n}\n\n.example-button-container > button {\n margin: 0 12px;\n}\n"] }] + ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n", styles: [".example-form-field {\n width: 100%;\n}\n\n.example-button-container > button {\n margin: 0 12px;\n}\n"] }] }] }); /** @@ -254,10 +254,10 @@ class ChipsReactiveFormExample { // Clear the input value event.chipInput.clear(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsReactiveFormExample, isStandalone: true, selector: "chips-reactive-form-example", ngImport: i0, template: "
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    ", styles: [".example-form-field {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsReactiveFormExample, isStandalone: true, selector: "chips-reactive-form-example", ngImport: i0, template: "
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled", "readonly", "matChipInputDisabledInteractive"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsReactiveFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsReactiveFormExample, decorators: [{ type: Component, args: [{ selector: 'chips-reactive-form-example', imports: [ MatButtonModule, @@ -265,7 +265,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatChipsModule, ReactiveFormsModule, MatIconModule, - ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    ", styles: [".example-form-field {\n width: 100%;\n}\n"] }] + ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"] }] }] }); /** @@ -295,12 +295,12 @@ class ChipsTemplateFormExample { // Clear the input value event.chipInput.clear(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsTemplateFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ChipsTemplateFormExample, isStandalone: true, selector: "chips-template-form-example", ngImport: i0, template: "
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i6.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i6.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsTemplateFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ChipsTemplateFormExample, isStandalone: true, selector: "chips-template-form-example", ngImport: i0, template: "
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChipGrid, selector: "mat-chip-grid", inputs: ["disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i2.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled", "readonly", "matChipInputDisabledInteractive"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i2.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i2.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["editable"], outputs: ["edited"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsTemplateFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsTemplateFormExample, decorators: [{ type: Component, - args: [{ selector: 'chips-template-form-example', imports: [MatButtonModule, MatFormFieldModule, MatChipsModule, FormsModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"] }] + args: [{ selector: 'chips-template-form-example', imports: [MatButtonModule, MatFormFieldModule, MatChipsModule, FormsModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n", styles: [".example-form-field {\n width: 100%;\n}\n"] }] }] }); /** @@ -308,17 +308,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @description An avatar inside a chip */ class ChipsAvatarExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsAvatarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ChipsAvatarExample, isStandalone: true, selector: "chips-avatar-example", ngImport: i0, template: "\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "directive", type: i2.MatChipAvatar, selector: "mat-chip-avatar, [matChipAvatar]" }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsAvatarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ChipsAvatarExample, isStandalone: true, selector: "chips-avatar-example", ngImport: i0, template: "\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i2.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["role", "id", "aria-label", "aria-description", "value", "color", "removable", "highlighted", "disableRipple", "disabled"], outputs: ["removed", "destroyed"], exportAs: ["matChip"] }, { kind: "directive", type: i2.MatChipAvatar, selector: "mat-chip-avatar, [matChipAvatar]" }, { kind: "component", type: i2.MatChipSet, selector: "mat-chip-set", inputs: ["disabled", "role", "tabIndex"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ChipsAvatarExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ChipsAvatarExample, decorators: [{ type: Component, - args: [{ selector: 'chips-avatar-example', imports: [MatChipsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n" }] + args: [{ selector: 'chips-avatar-example', imports: [MatChipsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ChipsAutocompleteExample, ChipsAvatarExample, ChipsDragDropExample, ChipsFormControlExample, ChipsHarnessExample, ChipsInputExample, ChipsOverviewExample, ChipsReactiveFormExample, ChipsStackedExample, ChipsTemplateFormExample }; //# sourceMappingURL=chips.mjs.map diff --git a/fesm2022/material/chips.mjs.map b/fesm2022/material/chips.mjs.map index 8f3b2a642f..0d71b3b40b 100755 --- a/fesm2022/material/chips.mjs.map +++ b/fesm2022/material/chips.mjs.map @@ -1 +1 @@ -{"version":3,"file":"chips.mjs","sources":["../../../../../../../src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.ts","../../../../../../../src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.html","../../../../../../../src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.ts","../../../../../../../src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.html","../../../../../../../src/components-examples/material/chips/chips-input/chips-input-example.ts","../../../../../../../src/components-examples/material/chips/chips-input/chips-input-example.html","../../../../../../../src/components-examples/material/chips/chips-overview/chips-overview-example.ts","../../../../../../../src/components-examples/material/chips/chips-overview/chips-overview-example.html","../../../../../../../src/components-examples/material/chips/chips-stacked/chips-stacked-example.ts","../../../../../../../src/components-examples/material/chips/chips-stacked/chips-stacked-example.html","../../../../../../../src/components-examples/material/chips/chips-harness/chips-harness-example.ts","../../../../../../../src/components-examples/material/chips/chips-harness/chips-harness-example.html","../../../../../../../src/components-examples/material/chips/chips-form-control/chips-form-control-example.ts","../../../../../../../src/components-examples/material/chips/chips-form-control/chips-form-control-example.html","../../../../../../../src/components-examples/material/chips/chips-reactive-form/chips-reactive-form-example.ts","../../../../../../../src/components-examples/material/chips/chips-reactive-form/chips-reactive-form-example.html","../../../../../../../src/components-examples/material/chips/chips-template-form/chips-template-form-example.ts","../../../../../../../src/components-examples/material/chips/chips-template-form/chips-template-form-example.html","../../../../../../../src/components-examples/material/chips/chips-avatar/chips-avatar-example.ts","../../../../../../../src/components-examples/material/chips/chips-avatar/chips-avatar-example.html","../../../../../../../src/components-examples/material/chips/chips_public_index.ts"],"sourcesContent":["import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {COMMA, ENTER} from '@angular/cdk/keycodes';\nimport {ChangeDetectionStrategy, Component, computed, inject, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatAutocompleteModule, MatAutocompleteSelectedEvent} from '@angular/material/autocomplete';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips Autocomplete\n */\n@Component({\n selector: 'chips-autocomplete-example',\n templateUrl: 'chips-autocomplete-example.html',\n styleUrl: 'chips-autocomplete-example.css',\n imports: [MatFormFieldModule, MatChipsModule, MatIconModule, MatAutocompleteModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsAutocompleteExample {\n readonly separatorKeysCodes: number[] = [ENTER, COMMA];\n readonly currentFruit = model('');\n readonly fruits = signal(['Lemon']);\n readonly allFruits: string[] = ['Apple', 'Lemon', 'Lime', 'Orange', 'Strawberry'];\n readonly filteredFruits = computed(() => {\n const currentFruit = this.currentFruit().toLowerCase();\n return currentFruit\n ? this.allFruits.filter(fruit => fruit.toLowerCase().includes(currentFruit))\n : this.allFruits.slice();\n });\n\n readonly announcer = inject(LiveAnnouncer);\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our fruit\n if (value) {\n this.fruits.update(fruits => [...fruits, value]);\n }\n\n // Clear the input value\n this.currentFruit.set('');\n }\n\n remove(fruit: string): void {\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index < 0) {\n return fruits;\n }\n\n fruits.splice(index, 1);\n this.announcer.announce(`Removed ${fruit}`);\n return [...fruits];\n });\n }\n\n selected(event: MatAutocompleteSelectedEvent): void {\n this.fruits.update(fruits => [...fruits, event.option.viewValue]);\n this.currentFruit.set('');\n event.option.deselect();\n }\n}\n","
    \n \n Favorite Fruits\n \n @for (fruit of fruits(); track $index) {\n \n {{fruit}}\n \n \n }\n \n \n \n @for (fruit of filteredFruits(); track fruit) {\n {{fruit}}\n }\n \n \n
    \n","import {CdkDrag, CdkDragDrop, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\nexport interface Vegetable {\n name: string;\n}\n\n/**\n * @title Chips Drag and Drop\n */\n@Component({\n selector: 'chips-drag-drop-example',\n templateUrl: 'chips-drag-drop-example.html',\n styleUrl: 'chips-drag-drop-example.css',\n imports: [MatChipsModule, CdkDropList, CdkDrag],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsDragDropExample {\n readonly vegetables = signal([\n {name: 'apple'},\n {name: 'banana'},\n {name: 'strawberry'},\n {name: 'orange'},\n {name: 'kiwi'},\n {name: 'cherry'},\n ]);\n\n drop(event: CdkDragDrop) {\n this.vegetables.update(vegetables => {\n moveItemInArray(vegetables, event.previousIndex, event.currentIndex);\n return [...vegetables];\n });\n }\n}\n","\n @for (vegetable of vegetables(); track vegetable.name) {\n {{vegetable.name}}\n }\n\n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {COMMA, ENTER} from '@angular/cdk/keycodes';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {MatChipEditedEvent, MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\nexport interface Fruit {\n name: string;\n}\n\n/**\n * @title Chips with input\n */\n@Component({\n selector: 'chips-input-example',\n templateUrl: 'chips-input-example.html',\n styleUrl: 'chips-input-example.css',\n imports: [MatFormFieldModule, MatChipsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsInputExample {\n readonly addOnBlur = true;\n readonly separatorKeysCodes = [ENTER, COMMA] as const;\n readonly fruits = signal([{name: 'Lemon'}, {name: 'Lime'}, {name: 'Apple'}]);\n readonly announcer = inject(LiveAnnouncer);\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our fruit\n if (value) {\n this.fruits.update(fruits => [...fruits, {name: value}]);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n\n remove(fruit: Fruit): void {\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index < 0) {\n return fruits;\n }\n\n fruits.splice(index, 1);\n this.announcer.announce(`Removed ${fruit.name}`);\n return [...fruits];\n });\n }\n\n edit(fruit: Fruit, event: MatChipEditedEvent) {\n const value = event.value.trim();\n\n // Remove fruit if it no longer has a name\n if (!value) {\n this.remove(fruit);\n return;\n }\n\n // Edit existing fruit\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index >= 0) {\n fruits[index].name = value;\n return [...fruits];\n }\n return fruits;\n });\n }\n}\n","\n Favorite Fruits\n \n @for (fruit of fruits(); track fruit) {\n \n {{fruit.name}}\n \n \n }\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Basic chips\n */\n@Component({\n selector: 'chips-overview-example',\n templateUrl: 'chips-overview-example.html',\n imports: [MatChipsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsOverviewExample {}\n","\n One fish\n Two fish\n Three fish\n Four fish\n","import {Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Stacked chips\n */\n@Component({\n selector: 'chips-stacked-example',\n templateUrl: 'chips-stacked-example.html',\n styleUrl: 'chips-stacked-example.css',\n imports: [MatChipsModule],\n})\nexport class ChipsStackedExample {\n readonly bestBoys: string[] = ['Samoyed', 'Akita Inu', 'Alaskan Malamute', 'Siberian Husky'];\n}\n","\n @for (dog of bestBoys; track dog) {\n {{dog}}\n }\n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Testing with MatChipsHarness\n */\n@Component({\n selector: 'chips-harness-example',\n templateUrl: 'chips-harness-example.html',\n imports: [MatChipsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsHarnessExample {\n isDisabled = signal(false);\n remove: () => void = jasmine.createSpy('remove spy');\n add: () => void = jasmine.createSpy('add spy');\n}\n","\n Chip 1\n \n Chip 2\n \n \n CChip 4\n\n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips with form control\n */\n@Component({\n selector: 'chips-form-control-example',\n templateUrl: 'chips-form-control-example.html',\n styleUrl: 'chips-form-control-example.css',\n imports: [\n MatButtonModule,\n MatFormFieldModule,\n MatChipsModule,\n FormsModule,\n ReactiveFormsModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsFormControlExample {\n readonly keywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n readonly formControl = new FormControl(['angular']);\n\n announcer = inject(LiveAnnouncer);\n\n removeKeyword(keyword: string) {\n this.keywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword}`);\n return [...keywords];\n });\n }\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.keywords.update(keywords => [...keywords, value]);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips in reactive forms\n */\n@Component({\n selector: 'chips-reactive-form-example',\n templateUrl: 'chips-reactive-form-example.html',\n styleUrl: 'chips-reactive-form-example.css',\n imports: [\n MatButtonModule,\n MatFormFieldModule,\n MatChipsModule,\n ReactiveFormsModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsReactiveFormExample {\n readonly reactiveKeywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n readonly formControl = new FormControl(['angular']);\n\n announcer = inject(LiveAnnouncer);\n\n removeReactiveKeyword(keyword: string) {\n this.reactiveKeywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword} from reactive form`);\n return [...keywords];\n });\n }\n\n addReactiveKeyword(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.reactiveKeywords.update(keywords => [...keywords, value]);\n this.announcer.announce(`added ${value} to reactive form`);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    ","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips in template-driven forms\n */\n@Component({\n selector: 'chips-template-form-example',\n templateUrl: 'chips-template-form-example.html',\n styleUrl: 'chips-template-form-example.css',\n imports: [MatButtonModule, MatFormFieldModule, MatChipsModule, FormsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsTemplateFormExample {\n readonly templateKeywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n\n announcer = inject(LiveAnnouncer);\n\n removeTemplateKeyword(keyword: string) {\n this.templateKeywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword} from template form`);\n return [...keywords];\n });\n }\n\n addTemplateKeyword(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.templateKeywords.update(keywords => [...keywords, value]);\n this.announcer.announce(`added ${value} to template form`);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Chips avatar\n * @description An avatar inside a chip\n */\n@Component({\n selector: 'chips-avatar-example',\n templateUrl: 'chips-avatar-example.html',\n styleUrl: 'chips-avatar-example.css',\n imports: [MatChipsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsAvatarExample {}\n","\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i4","i5"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"chips.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-autocomplete/chips-autocomplete-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-drag-drop/chips-drag-drop-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-input/chips-input-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-input/chips-input-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-overview/chips-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-overview/chips-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-stacked/chips-stacked-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-stacked/chips-stacked-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-harness/chips-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-harness/chips-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-form-control/chips-form-control-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-form-control/chips-form-control-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-reactive-form/chips-reactive-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-reactive-form/chips-reactive-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-template-form/chips-template-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-template-form/chips-template-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-avatar/chips-avatar-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/chips/chips-avatar/chips-avatar-example.html"],"sourcesContent":["import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {COMMA, ENTER} from '@angular/cdk/keycodes';\nimport {ChangeDetectionStrategy, Component, computed, inject, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatAutocompleteModule, MatAutocompleteSelectedEvent} from '@angular/material/autocomplete';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips Autocomplete\n */\n@Component({\n selector: 'chips-autocomplete-example',\n templateUrl: 'chips-autocomplete-example.html',\n styleUrl: 'chips-autocomplete-example.css',\n imports: [MatFormFieldModule, MatChipsModule, MatIconModule, MatAutocompleteModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsAutocompleteExample {\n readonly separatorKeysCodes: number[] = [ENTER, COMMA];\n readonly currentFruit = model('');\n readonly fruits = signal(['Lemon']);\n readonly allFruits: string[] = ['Apple', 'Lemon', 'Lime', 'Orange', 'Strawberry'];\n readonly filteredFruits = computed(() => {\n const currentFruit = this.currentFruit().toLowerCase();\n return currentFruit\n ? this.allFruits.filter(fruit => fruit.toLowerCase().includes(currentFruit))\n : this.allFruits.slice();\n });\n\n readonly announcer = inject(LiveAnnouncer);\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our fruit\n if (value) {\n this.fruits.update(fruits => [...fruits, value]);\n }\n\n // Clear the input value\n this.currentFruit.set('');\n }\n\n remove(fruit: string): void {\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index < 0) {\n return fruits;\n }\n\n fruits.splice(index, 1);\n this.announcer.announce(`Removed ${fruit}`);\n return [...fruits];\n });\n }\n\n selected(event: MatAutocompleteSelectedEvent): void {\n this.fruits.update(fruits => [...fruits, event.option.viewValue]);\n this.currentFruit.set('');\n event.option.deselect();\n }\n}\n","
    \n \n Favorite Fruits\n \n @for (fruit of fruits(); track $index) {\n \n {{fruit}}\n \n \n }\n \n \n \n @for (fruit of filteredFruits(); track fruit) {\n {{fruit}}\n }\n \n \n
    \n","import {CdkDrag, CdkDragDrop, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\nexport interface Vegetable {\n name: string;\n}\n\n/**\n * @title Chips Drag and Drop\n */\n@Component({\n selector: 'chips-drag-drop-example',\n templateUrl: 'chips-drag-drop-example.html',\n styleUrl: 'chips-drag-drop-example.css',\n imports: [MatChipsModule, CdkDropList, CdkDrag],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsDragDropExample {\n readonly vegetables = signal([\n {name: 'apple'},\n {name: 'banana'},\n {name: 'strawberry'},\n {name: 'orange'},\n {name: 'kiwi'},\n {name: 'cherry'},\n ]);\n\n drop(event: CdkDragDrop) {\n this.vegetables.update(vegetables => {\n moveItemInArray(vegetables, event.previousIndex, event.currentIndex);\n return [...vegetables];\n });\n }\n}\n","\n @for (vegetable of vegetables(); track vegetable.name) {\n {{vegetable.name}}\n }\n\n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {COMMA, ENTER} from '@angular/cdk/keycodes';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {MatChipEditedEvent, MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\nexport interface Fruit {\n name: string;\n}\n\n/**\n * @title Chips with input\n */\n@Component({\n selector: 'chips-input-example',\n templateUrl: 'chips-input-example.html',\n styleUrl: 'chips-input-example.css',\n imports: [MatFormFieldModule, MatChipsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsInputExample {\n readonly addOnBlur = true;\n readonly separatorKeysCodes = [ENTER, COMMA] as const;\n readonly fruits = signal([{name: 'Lemon'}, {name: 'Lime'}, {name: 'Apple'}]);\n readonly announcer = inject(LiveAnnouncer);\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our fruit\n if (value) {\n this.fruits.update(fruits => [...fruits, {name: value}]);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n\n remove(fruit: Fruit): void {\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index < 0) {\n return fruits;\n }\n\n fruits.splice(index, 1);\n this.announcer.announce(`Removed ${fruit.name}`);\n return [...fruits];\n });\n }\n\n edit(fruit: Fruit, event: MatChipEditedEvent) {\n const value = event.value.trim();\n\n // Remove fruit if it no longer has a name\n if (!value) {\n this.remove(fruit);\n return;\n }\n\n // Edit existing fruit\n this.fruits.update(fruits => {\n const index = fruits.indexOf(fruit);\n if (index >= 0) {\n fruits[index].name = value;\n return [...fruits];\n }\n return fruits;\n });\n }\n}\n","\n Favorite Fruits\n \n @for (fruit of fruits(); track fruit) {\n \n {{fruit.name}}\n \n \n }\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Basic chips\n */\n@Component({\n selector: 'chips-overview-example',\n templateUrl: 'chips-overview-example.html',\n imports: [MatChipsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsOverviewExample {}\n","\n One fish\n Two fish\n Three fish\n Four fish\n","import {Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Stacked chips\n */\n@Component({\n selector: 'chips-stacked-example',\n templateUrl: 'chips-stacked-example.html',\n styleUrl: 'chips-stacked-example.css',\n imports: [MatChipsModule],\n})\nexport class ChipsStackedExample {\n readonly bestBoys: string[] = ['Samoyed', 'Akita Inu', 'Alaskan Malamute', 'Siberian Husky'];\n}\n","\n @for (dog of bestBoys; track dog) {\n {{dog}}\n }\n\n","/// \n\nimport {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Testing with MatChipsHarness\n */\n@Component({\n selector: 'chips-harness-example',\n templateUrl: 'chips-harness-example.html',\n imports: [MatChipsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsHarnessExample {\n isDisabled = signal(false);\n remove: () => void = jasmine.createSpy('remove spy');\n add: () => void = jasmine.createSpy('add spy');\n}\n","\n Chip 1\n \n Chip 2\n \n \n CChip 4\n\n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips with form control\n */\n@Component({\n selector: 'chips-form-control-example',\n templateUrl: 'chips-form-control-example.html',\n styleUrl: 'chips-form-control-example.css',\n imports: [\n MatButtonModule,\n MatFormFieldModule,\n MatChipsModule,\n FormsModule,\n ReactiveFormsModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsFormControlExample {\n readonly keywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n readonly formControl = new FormControl(['angular']);\n\n announcer = inject(LiveAnnouncer);\n\n removeKeyword(keyword: string) {\n this.keywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword}`);\n return [...keywords];\n });\n }\n\n add(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.keywords.update(keywords => [...keywords, value]);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n \n \n
    \n

    \n Enter video keywords\n

    \n\n Video keywords\n \n @for (keyword of keywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n\n\n

    The following keywords are entered: {{formControl.value}}

    \n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips in reactive forms\n */\n@Component({\n selector: 'chips-reactive-form-example',\n templateUrl: 'chips-reactive-form-example.html',\n styleUrl: 'chips-reactive-form-example.css',\n imports: [\n MatButtonModule,\n MatFormFieldModule,\n MatChipsModule,\n ReactiveFormsModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsReactiveFormExample {\n readonly reactiveKeywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n readonly formControl = new FormControl(['angular']);\n\n announcer = inject(LiveAnnouncer);\n\n removeReactiveKeyword(keyword: string) {\n this.reactiveKeywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword} from reactive form`);\n return [...keywords];\n });\n }\n\n addReactiveKeyword(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.reactiveKeywords.update(keywords => [...keywords, value]);\n this.announcer.announce(`added ${value} to reactive form`);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n

    Chips inside of a Reactive form

    \n \n Video keywords\n \n @for (keyword of reactiveKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {ChangeDetectionStrategy, Component, inject, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatChipInputEvent, MatChipsModule} from '@angular/material/chips';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Chips in template-driven forms\n */\n@Component({\n selector: 'chips-template-form-example',\n templateUrl: 'chips-template-form-example.html',\n styleUrl: 'chips-template-form-example.css',\n imports: [MatButtonModule, MatFormFieldModule, MatChipsModule, FormsModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsTemplateFormExample {\n readonly templateKeywords = signal(['angular', 'how-to', 'tutorial', 'accessibility']);\n\n announcer = inject(LiveAnnouncer);\n\n removeTemplateKeyword(keyword: string) {\n this.templateKeywords.update(keywords => {\n const index = keywords.indexOf(keyword);\n if (index < 0) {\n return keywords;\n }\n\n keywords.splice(index, 1);\n this.announcer.announce(`removed ${keyword} from template form`);\n return [...keywords];\n });\n }\n\n addTemplateKeyword(event: MatChipInputEvent): void {\n const value = (event.value || '').trim();\n\n // Add our keyword\n if (value) {\n this.templateKeywords.update(keywords => [...keywords, value]);\n this.announcer.announce(`added ${value} to template form`);\n }\n\n // Clear the input value\n event.chipInput!.clear();\n }\n}\n","
    \n

    Chips inside of a Template-driven form

    \n \n Video keywords\n \n @for (keyword of templateKeywords(); track keyword) {\n \n {{keyword}}\n \n \n }\n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatChipsModule} from '@angular/material/chips';\n\n/**\n * @title Chips avatar\n * @description An avatar inside a chip\n */\n@Component({\n selector: 'chips-avatar-example',\n templateUrl: 'chips-avatar-example.html',\n styleUrl: 'chips-avatar-example.css',\n imports: [MatChipsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ChipsAvatarExample {}\n","\n \n \n Dog one\n \n \n \n Dog two\n \n \n \n Dog three\n \n\n"],"names":["i5","i1","i2","i3","i4"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/core.mjs b/fesm2022/material/core.mjs index 21b487a8b6..26239a912c 100755 --- a/fesm2022/material/core.mjs +++ b/fesm2022/material/core.mjs @@ -4,13 +4,13 @@ import * as i1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i5 from '@angular/material/core'; import { MatRippleModule } from '@angular/material/core'; -import * as i4 from '@angular/material/input'; +import * as i2$1 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i3 from '@angular/material/form-field'; +import * as i1$1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; -import * as i1$1 from '@angular/material/checkbox'; +import * as i2 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; /** @@ -18,12 +18,12 @@ import { MatCheckboxModule } from '@angular/material/checkbox'; */ class ElevationOverviewExample { isActive = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ElevationOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ElevationOverviewExample, isStandalone: true, selector: "elevation-overview-example", ngImport: i0, template: "
    \n Example\n
    \n\n\n", styles: [".example-container {\n padding: 16px;\n margin-bottom: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ElevationOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ElevationOverviewExample, isStandalone: true, selector: "elevation-overview-example", ngImport: i0, template: "
    \n Example\n
    \n\n\n", styles: [".example-container {\n padding: 16px;\n margin-bottom: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ElevationOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ElevationOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'elevation-overview-example', imports: [MatButtonModule], template: "
    \n Example\n
    \n\n\n", styles: [".example-container {\n padding: 16px;\n margin-bottom: 16px;\n}\n"] }] + args: [{ selector: 'elevation-overview-example', imports: [MatButtonModule], template: "
    \n Example\n
    \n\n\n", styles: [".example-container {\n padding: 16px;\n margin-bottom: 16px;\n}\n"] }] }] }); /** @@ -35,17 +35,13 @@ class RippleOverviewExample { unbounded = false; radius; color; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RippleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: RippleOverviewExample, isStandalone: true, selector: "ripple-overview-example", ngImport: i0, template: "Centered\nDisabled\nUnbounded\n\n\n Radius\n \n\n\n Color\n \n\n\n\n
    \n Click me\n
    \n", styles: [".example-ripple-container {\n cursor: pointer;\n text-align: center;\n\n width: 300px;\n height: 300px;\n line-height: 300px;\n\n user-select: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n\n -webkit-user-drag: none;\n -webkit-tap-highlight-color: transparent;\n}\n\n/** Styles to make the demo look better. */\n.example-ripple-checkbox {\n margin: 6px 12px 6px 0;\n}\n\n.example-ripple-form-field {\n margin: 0 12px 0 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i5.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RippleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: RippleOverviewExample, isStandalone: true, selector: "ripple-overview-example", ngImport: i0, template: "Centered\nDisabled\nUnbounded\n\n\n Radius\n \n\n\n Color\n \n\n\n\n
    \n Click me\n
    \n", styles: [".example-ripple-container {\n cursor: pointer;\n text-align: center;\n\n width: 300px;\n height: 300px;\n line-height: 300px;\n\n user-select: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n\n -webkit-user-drag: none;\n -webkit-tap-highlight-color: transparent;\n}\n\n/** Styles to make the demo look better. */\n.example-ripple-checkbox {\n margin: 6px 12px 6px 0;\n}\n\n.example-ripple-form-field {\n margin: 0 12px 0 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i5.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RippleOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RippleOverviewExample, decorators: [{ type: Component, args: [{ selector: 'ripple-overview-example', imports: [MatCheckboxModule, FormsModule, MatFormFieldModule, MatInputModule, MatRippleModule], template: "Centered\nDisabled\nUnbounded\n\n\n Radius\n \n\n\n Color\n \n\n\n\n
    \n Click me\n
    \n", styles: [".example-ripple-container {\n cursor: pointer;\n text-align: center;\n\n width: 300px;\n height: 300px;\n line-height: 300px;\n\n user-select: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n\n -webkit-user-drag: none;\n -webkit-tap-highlight-color: transparent;\n}\n\n/** Styles to make the demo look better. */\n.example-ripple-checkbox {\n margin: 6px 12px 6px 0;\n}\n\n.example-ripple-form-field {\n margin: 0 12px 0 0;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ElevationOverviewExample, RippleOverviewExample }; //# sourceMappingURL=core.mjs.map diff --git a/fesm2022/material/core.mjs.map b/fesm2022/material/core.mjs.map index e1a8101d72..17466f141e 100755 --- a/fesm2022/material/core.mjs.map +++ b/fesm2022/material/core.mjs.map @@ -1 +1 @@ -{"version":3,"file":"core.mjs","sources":["../../../../../../../src/components-examples/material/core/elevation-overview/elevation-overview-example.ts","../../../../../../../src/components-examples/material/core/elevation-overview/elevation-overview-example.html","../../../../../../../src/components-examples/material/core/ripple-overview/ripple-overview-example.ts","../../../../../../../src/components-examples/material/core/ripple-overview/ripple-overview-example.html","../../../../../../../src/components-examples/material/core/core_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Elevation CSS classes\n */\n@Component({\n selector: 'elevation-overview-example',\n styleUrl: 'elevation-overview-example.css',\n templateUrl: 'elevation-overview-example.html',\n imports: [MatButtonModule],\n})\nexport class ElevationOverviewExample {\n isActive = false;\n}\n","
    \n Example\n
    \n\n\n","import {Component} from '@angular/core';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title MatRipple basic usage\n */\n@Component({\n selector: 'ripple-overview-example',\n templateUrl: 'ripple-overview-example.html',\n styleUrl: 'ripple-overview-example.css',\n imports: [MatCheckboxModule, FormsModule, MatFormFieldModule, MatInputModule, MatRippleModule],\n})\nexport class RippleOverviewExample {\n centered = false;\n disabled = false;\n unbounded = false;\n\n radius: number;\n color: string;\n}\n","Centered\nDisabled\nUnbounded\n\n\n Radius\n \n\n\n Color\n \n\n\n\n
    \n Click me\n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"core.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/core/elevation-overview/elevation-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/core/elevation-overview/elevation-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/core/ripple-overview/ripple-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/core/ripple-overview/ripple-overview-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Elevation CSS classes\n */\n@Component({\n selector: 'elevation-overview-example',\n styleUrl: 'elevation-overview-example.css',\n templateUrl: 'elevation-overview-example.html',\n imports: [MatButtonModule],\n})\nexport class ElevationOverviewExample {\n isActive = false;\n}\n","
    \n Example\n
    \n\n\n","import {Component} from '@angular/core';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/**\n * @title MatRipple basic usage\n */\n@Component({\n selector: 'ripple-overview-example',\n templateUrl: 'ripple-overview-example.html',\n styleUrl: 'ripple-overview-example.css',\n imports: [MatCheckboxModule, FormsModule, MatFormFieldModule, MatInputModule, MatRippleModule],\n})\nexport class RippleOverviewExample {\n centered = false;\n disabled = false;\n unbounded = false;\n\n radius: number;\n color: string;\n}\n","Centered\nDisabled\nUnbounded\n\n\n Radius\n \n\n\n Color\n \n\n\n\n
    \n Click me\n
    \n"],"names":["i1","i2","i3","i4"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/datepicker.mjs b/fesm2022/material/datepicker.mjs index 1e19119765..951928bc5f 100755 --- a/fesm2022/material/datepicker.mjs +++ b/fesm2022/material/datepicker.mjs @@ -8,22 +8,20 @@ import { MatDatepickerModule, DateRange, MAT_DATE_RANGE_SELECTION_STRATEGY, MatC import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import { JsonPipe } from '@angular/common'; -import * as i4 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i5 from '@angular/material/icon'; +import * as i3$2 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; import { Subject } from 'rxjs'; import { startWith, takeUntil } from 'rxjs/operators'; import { provideMomentDateAdapter } from '@angular/material-moment-adapter'; import * as _rollupMoment from 'moment'; import _rollupMoment__default from 'moment'; -import * as i1$1 from '@angular/material/card'; +import * as i1$2 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; -import 'moment/locale/fr'; -import 'moment/locale/ja'; -import * as i3$2 from '@angular/material/dialog'; +import * as i3$3 from '@angular/material/dialog'; import { MatDialog, MatDialogRef, MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog'; const today = new Date(); @@ -39,10 +37,10 @@ class DateRangePickerComparisonExample { start: new FormControl(new Date(year, month, 15)), end: new FormControl(new Date(year, month, 19)), }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerComparisonExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DateRangePickerComparisonExample, isStandalone: true, selector: "date-range-picker-comparison-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n First campaign\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n\n\n Second campaign\n \n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n\n", styles: [".example-form-field {\n margin: 0 8px 16px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerComparisonExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DateRangePickerComparisonExample, isStandalone: true, selector: "date-range-picker-comparison-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n First campaign\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n\n\n Second campaign\n \n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n\n", styles: [".example-form-field {\n margin: 0 8px 16px 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerComparisonExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerComparisonExample, decorators: [{ type: Component, args: [{ selector: 'date-range-picker-comparison-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n First campaign\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n\n\n Second campaign\n \n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n\n", styles: [".example-form-field {\n margin: 0 8px 16px 0;\n}\n"] }] }] }); @@ -53,20 +51,20 @@ class DateRangePickerFormsExample { start: new FormControl(null), end: new FormControl(null), }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: DateRangePickerFormsExample, isStandalone: true, selector: "date-range-picker-forms-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n @if (range.controls.start.hasError('matStartDateInvalid')) {\n Invalid start date\n }\n @if (range.controls.end.hasError('matEndDateInvalid')) {\n Invalid end date\n }\n\n\n

    Selected range: {{range.value | json}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: DateRangePickerFormsExample, isStandalone: true, selector: "date-range-picker-forms-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n @if (range.controls.start.hasError('matStartDateInvalid')) {\n Invalid start date\n }\n @if (range.controls.end.hasError('matEndDateInvalid')) {\n Invalid end date\n }\n\n\n

    Selected range: {{range.value | json}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerFormsExample, decorators: [{ type: Component, args: [{ selector: 'date-range-picker-forms-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule, JsonPipe], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n @if (range.controls.start.hasError('matStartDateInvalid')) {\n Invalid start date\n }\n @if (range.controls.end.hasError('matEndDateInvalid')) {\n Invalid end date\n }\n\n\n

    Selected range: {{range.value | json}}

    \n" }] }] }); /** @title Basic date range picker */ class DateRangePickerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DateRangePickerOverviewExample, isStandalone: true, selector: "date-range-picker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DateRangePickerOverviewExample, isStandalone: true, selector: "date-range-picker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'date-range-picker-overview-example', imports: [MatFormFieldModule, MatDatepickerModule], providers: [provideNativeDateAdapter()], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n" }] }] }); @@ -87,16 +85,16 @@ class FiveDayRangeSelectionStrategy { } return new DateRange(null, null); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FiveDayRangeSelectionStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); - static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FiveDayRangeSelectionStrategy }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FiveDayRangeSelectionStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); + static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FiveDayRangeSelectionStrategy }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FiveDayRangeSelectionStrategy, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FiveDayRangeSelectionStrategy, decorators: [{ type: Injectable }] }); /** @title Date range picker with a custom selection strategy */ class DateRangePickerSelectionStrategyExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerSelectionStrategyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DateRangePickerSelectionStrategyExample, isStandalone: true, selector: "date-range-picker-selection-strategy-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerSelectionStrategyExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DateRangePickerSelectionStrategyExample, isStandalone: true, selector: "date-range-picker-selection-strategy-example", providers: [ { provide: MAT_DATE_RANGE_SELECTION_STRATEGY, useClass: FiveDayRangeSelectionStrategy, @@ -104,7 +102,7 @@ class DateRangePickerSelectionStrategyExample { provideNativeDateAdapter(), ], ngImport: i0, template: "\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DateRangePickerSelectionStrategyExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DateRangePickerSelectionStrategyExample, decorators: [{ type: Component, args: [{ selector: 'date-range-picker-selection-strategy-example', providers: [ { @@ -117,31 +115,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Datepicker action buttons */ class DatepickerActionsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerActionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerActionsExample, isStandalone: true, selector: "datepicker-actions-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n", styles: [".example-form-field {\n margin-right: 20px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: i3.MatDatepickerActions, selector: "mat-datepicker-actions, mat-date-range-picker-actions" }, { kind: "directive", type: i3.MatDatepickerCancel, selector: "[matDatepickerCancel], [matDateRangePickerCancel]" }, { kind: "directive", type: i3.MatDatepickerApply, selector: "[matDatepickerApply], [matDateRangePickerApply]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerActionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerActionsExample, isStandalone: true, selector: "datepicker-actions-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n", styles: [".example-form-field {\n margin-right: 20px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i3.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i3.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i3.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i3.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: i3.MatDatepickerActions, selector: "mat-datepicker-actions, mat-date-range-picker-actions" }, { kind: "directive", type: i3.MatDatepickerCancel, selector: "[matDatepickerCancel], [matDateRangePickerCancel]" }, { kind: "directive", type: i3.MatDatepickerApply, selector: "[matDatepickerApply], [matDateRangePickerApply]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerActionsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerActionsExample, decorators: [{ type: Component, - args: [{ selector: 'datepicker-actions-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n", styles: [".example-form-field {\n margin-right: 20px;\n}\n"] }] + args: [{ selector: 'datepicker-actions-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY \u2013 MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n", styles: [".example-form-field {\n margin-right: 20px;\n}\n"] }] }] }); /** @title Datepicker open method */ class DatepickerApiExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerApiExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerApiExample, isStandalone: true, selector: "datepicker-api-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerApiExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerApiExample, isStandalone: true, selector: "datepicker-api-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerApiExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerApiExample, decorators: [{ type: Component, - args: [{ selector: 'datepicker-api-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'datepicker-api-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); /** @title Datepicker with custom calendar header */ class DatepickerCustomHeaderExample { exampleHeader = ExampleHeader; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerCustomHeaderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerCustomHeaderExample, isStandalone: true, selector: "datepicker-custom-header-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Custom calendar header\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerCustomHeaderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerCustomHeaderExample, isStandalone: true, selector: "datepicker-custom-header-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Custom calendar header\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerCustomHeaderExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerCustomHeaderExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-custom-header-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Custom calendar header\n \n MM/DD/YYYY\n \n \n\n" }] }] }); @@ -175,40 +173,40 @@ class ExampleHeader { ? this._dateAdapter.addCalendarMonths(this._calendar.activeDate, 1) : this._dateAdapter.addCalendarYears(this._calendar.activeDate, 1); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExampleHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ExampleHeader, isStandalone: true, selector: "example-header", ngImport: i0, template: ` + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExampleHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ExampleHeader, isStandalone: true, selector: "example-header", ngImport: i0, template: `
    - - {{periodLabel()}} - -
    - `, isInline: true, styles: ["\n .example-header {\n display: flex;\n align-items: center;\n padding: 0.5em;\n }\n\n .example-header-label {\n flex: 1;\n height: 1em;\n font-weight: 500;\n text-align: center;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + `, isInline: true, styles: ["\n .example-header {\n display: flex;\n align-items: center;\n padding: 0.5em;\n }\n\n .example-header-label {\n flex: 1;\n height: 1em;\n font-weight: 500;\n text-align: center;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExampleHeader, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExampleHeader, decorators: [{ type: Component, args: [{ selector: 'example-header', template: `
    - - {{periodLabel()}} - -
    @@ -217,10 +215,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Datepicker with custom icon */ class DatepickerCustomIconExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerCustomIconExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerCustomIconExample, isStandalone: true, selector: "datepicker-custom-icon-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n keyboard_arrow_down\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "directive", type: i3.MatDatepickerToggleIcon, selector: "[matDatepickerToggleIcon]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerCustomIconExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerCustomIconExample, isStandalone: true, selector: "datepicker-custom-icon-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n keyboard_arrow_down\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "directive", type: i3.MatDatepickerToggleIcon, selector: "[matDatepickerToggleIcon]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerCustomIconExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerCustomIconExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-custom-icon-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n keyboard_arrow_down\n \n \n\n" }] }] }); @@ -236,20 +234,20 @@ class DatepickerDateClassExample { } return ''; }; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDateClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerDateClassExample, isStandalone: true, selector: "datepicker-date-class-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", styles: ["button.example-custom-date-class {\n background: orange;\n border-radius: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDateClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerDateClassExample, isStandalone: true, selector: "datepicker-date-class-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", styles: ["button.example-custom-date-class {\n background: orange;\n border-radius: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDateClassExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDateClassExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-date-class-example', encapsulation: ViewEncapsulation.None, providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", styles: ["button.example-custom-date-class {\n background: orange;\n border-radius: 100%;\n}\n"] }] }] }); /** @title Disabled datepicker */ class DatepickerDisabledExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerDisabledExample, isStandalone: true, selector: "datepicker-disabled-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "

    \n \n Completely disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Popup disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Input disabled\n \n MM/DD/YYYY\n \n \n \n

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerDisabledExample, isStandalone: true, selector: "datepicker-disabled-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "

    \n \n Completely disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Popup disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Input disabled\n \n MM/DD/YYYY\n \n \n \n

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDisabledExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDisabledExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-disabled-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    \n \n Completely disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Popup disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Input disabled\n \n MM/DD/YYYY\n \n \n \n

    \n" }] }] }); @@ -260,10 +258,10 @@ class DatepickerEventsExample { addEvent(type, event) { this.events.update(events => [...events, `${type}: ${event.value}`]); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerEventsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: DatepickerEventsExample, isStandalone: true, selector: "datepicker-events-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Input & change events\n \n MM/DD/YYYY\n \n \n\n\n
    \n @for (e of events(); track e) {\n
    {{e}}
    \n }\n
    \n", styles: [".example-events {\n height: 200px;\n border: 1px solid #555;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerEventsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: DatepickerEventsExample, isStandalone: true, selector: "datepicker-events-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Input & change events\n \n MM/DD/YYYY\n \n \n\n\n
    \n @for (e of events(); track e) {\n
    {{e}}
    \n }\n
    \n", styles: [".example-events {\n height: 200px;\n border: 1px solid #555;\n overflow: auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerEventsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerEventsExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-events-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Input & change events\n \n MM/DD/YYYY\n \n \n\n\n
    \n @for (e of events(); track e) {\n
    {{e}}
    \n }\n
    \n", styles: [".example-events {\n height: 200px;\n border: 1px solid #555;\n overflow: auto;\n}\n"] }] }] }); @@ -275,10 +273,10 @@ class DatepickerFilterExample { // Prevent Saturday and Sunday from being selected. return day !== 0 && day !== 6; }; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerFilterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerFilterExample, isStandalone: true, selector: "datepicker-filter-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerFilterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerFilterExample, isStandalone: true, selector: "datepicker-filter-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerFilterExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerFilterExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-filter-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n" }] }] }); @@ -300,15 +298,15 @@ const MY_FORMATS$1 = { /** @title Datepicker with custom formats */ class DatepickerFormatsExample { date = new FormControl(moment$2()); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerFormatsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerFormatsExample, isStandalone: true, selector: "datepicker-formats-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerFormatsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerFormatsExample, isStandalone: true, selector: "datepicker-formats-example", providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` // to your app config. We provide it at the component level here, due to limitations // of our example generation script. provideMomentDateAdapter(MY_FORMATS$1), ], ngImport: i0, template: "\n Verbose datepicker\n \n MMMM DD, YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerFormatsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerFormatsExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-formats-example', providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` @@ -330,10 +328,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class DatepickerHarnessExample { date = model(null); minDate = signal(null); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: DatepickerHarnessExample, isStandalone: true, selector: "datepicker-harness-example", inputs: { date: { classPropertyName: "date", publicName: "date", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { date: "dateChange" }, providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: DatepickerHarnessExample, isStandalone: true, selector: "datepicker-harness-example", inputs: { date: { classPropertyName: "date", publicName: "date", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { date: "dateChange" }, providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerHarnessExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-harness-example', providers: [provideNativeDateAdapter()], imports: [MatInputModule, MatDatepickerModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n" }] }] }); @@ -341,10 +339,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Datepicker inline calendar example */ class DatepickerInlineCalendarExample { selected = model(null); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerInlineCalendarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: DatepickerInlineCalendarExample, isStandalone: true, selector: "datepicker-inline-calendar-example", inputs: { selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selectedChange" }, providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n \n\n

    Selected date: {{selected()}}

    \n", styles: [".demo-inline-calendar-card {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1$1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatCalendar, selector: "mat-calendar", inputs: ["headerComponent", "startAt", "startView", "selected", "minDate", "maxDate", "dateFilter", "dateClass", "comparisonStart", "comparisonEnd", "startDateAccessibleName", "endDateAccessibleName"], outputs: ["selectedChange", "yearSelected", "monthSelected", "viewChanged", "_userSelection", "_userDragDrop"], exportAs: ["matCalendar"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerInlineCalendarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: DatepickerInlineCalendarExample, isStandalone: true, selector: "datepicker-inline-calendar-example", inputs: { selected: { classPropertyName: "selected", publicName: "selected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selected: "selectedChange" }, providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n \n\n

    Selected date: {{selected()}}

    \n", styles: [".demo-inline-calendar-card {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1$2.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatCalendar, selector: "mat-calendar", inputs: ["headerComponent", "startAt", "startView", "selected", "minDate", "maxDate", "dateFilter", "dateClass", "comparisonStart", "comparisonEnd", "startDateAccessibleName", "endDateAccessibleName"], outputs: ["selectedChange", "yearSelected", "monthSelected", "viewChanged", "_userSelection", "_userDragDrop"], exportAs: ["matCalendar"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerInlineCalendarExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerInlineCalendarExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-inline-calendar-example', providers: [provideNativeDateAdapter()], imports: [MatCardModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n\n

    Selected date: {{selected()}}

    \n", styles: [".demo-inline-calendar-card {\n width: 300px;\n}\n"] }] }] }); @@ -375,8 +373,8 @@ class DatepickerLocaleExample { this._intl.closeCalendarLabel = label; this._intl.changes.next(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerLocaleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerLocaleExample, isStandalone: true, selector: "datepicker-locale-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerLocaleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerLocaleExample, isStandalone: true, selector: "datepicker-locale-example", providers: [ // The locale would typically be provided on the root module of your application. We do it at // the component level here, due to limitations of our example generation script. { provide: MAT_DATE_LOCALE, useValue: 'ja-JP' }, @@ -384,9 +382,9 @@ class DatepickerLocaleExample { // to your app config. We provide it at the component level here, due to limitations // of our example generation script. provideMomentDateAdapter(), - ], ngImport: i0, template: "\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + ], ngImport: i0, template: "\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerLocaleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerLocaleExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-locale-example', providers: [ // The locale would typically be provided on the root module of your application. We do it at @@ -396,7 +394,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor // to your app config. We provide it at the component level here, due to limitations // of our example generation script. provideMomentDateAdapter(), - ], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + ], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); /** @title Datepicker with min & max validation */ @@ -405,10 +403,10 @@ class DatepickerMinMaxExample { _currentYear = new Date().getFullYear(); minDate = new Date(this._currentYear - 20, 0, 1); maxDate = new Date(this._currentYear + 1, 11, 31); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerMinMaxExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerMinMaxExample, isStandalone: true, selector: "datepicker-min-max-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerMinMaxExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerMinMaxExample, isStandalone: true, selector: "datepicker-min-max-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerMinMaxExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerMinMaxExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-min-max-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n" }] }] }); @@ -418,15 +416,15 @@ const moment$1 = _rollupMoment__default || _rollupMoment; class DatepickerMomentExample { // Datepicker takes `Moment` objects instead of `Date` objects. date = new FormControl(moment$1([2017, 0, 1])); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerMomentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerMomentExample, isStandalone: true, selector: "datepicker-moment-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerMomentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerMomentExample, isStandalone: true, selector: "datepicker-moment-example", providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` // to your app config. We provide it at the component level here, due to limitations // of our example generation script. provideMomentDateAdapter(), ], ngImport: i0, template: "\n Moment.js datepicker\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerMomentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerMomentExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-moment-example', providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` @@ -444,10 +442,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Basic datepicker */ class DatepickerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerOverviewExample, isStandalone: true, selector: "datepicker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n\n \n MM/DD/YYYY\n \n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerOverviewExample, isStandalone: true, selector: "datepicker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n\n \n MM/DD/YYYY\n \n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-overview-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n\n \n MM/DD/YYYY\n \n \n\n\n" }] }] }); @@ -455,20 +453,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Datepicker start date */ class DatepickerStartViewExample { startDate = new Date(1990, 0, 1); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerStartViewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerStartViewExample, isStandalone: true, selector: "datepicker-start-view-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerStartViewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerStartViewExample, isStandalone: true, selector: "datepicker-start-view-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerStartViewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerStartViewExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-start-view-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n" }] }] }); /** @title Datepicker touch UI */ class DatepickerTouchExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerTouchExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerTouchExample, isStandalone: true, selector: "datepicker-touch-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerTouchExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerTouchExample, isStandalone: true, selector: "datepicker-touch-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerTouchExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerTouchExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-touch-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Choose a date\n \n MM/DD/YYYY\n \n \n\n" }] }] }); @@ -477,10 +475,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class DatepickerValueExample { date = new FormControl(new Date()); serializedDate = new FormControl(new Date().toISOString()); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerValueExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerValueExample, isStandalone: true, selector: "datepicker-value-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Angular forms\n \n MM/DD/YYYY\n \n \n\n\n\n Angular forms (w/ deserialization)\n \n MM/DD/YYYY\n \n \n\n\n\n Value binding\n \n MM/DD/YYYY\n \n \n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerValueExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerValueExample, isStandalone: true, selector: "datepicker-value-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Angular forms\n \n MM/DD/YYYY\n \n \n\n\n\n Angular forms (w/ deserialization)\n \n MM/DD/YYYY\n \n \n\n\n\n Value binding\n \n MM/DD/YYYY\n \n \n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerValueExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerValueExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-value-example', providers: [provideNativeDateAdapter()], imports: [ MatFormFieldModule, @@ -515,15 +513,15 @@ class DatepickerViewsSelectionExample { this.date.setValue(ctrlValue); datepicker.close(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerViewsSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerViewsSelectionExample, isStandalone: true, selector: "datepicker-views-selection-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerViewsSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerViewsSelectionExample, isStandalone: true, selector: "datepicker-views-selection-example", providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` // to your app config. We provide it at the component level here, due to limitations // of our example generation script. provideMomentDateAdapter(MY_FORMATS), ], ngImport: i0, template: "\n Month and Year\n \n MM/YYYY\n \n \n \n\n", styles: [".example-month-picker .mat-calendar-period-button {\n pointer-events: none;\n}\n\n.example-month-picker .mat-calendar-arrow {\n display: none;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerViewsSelectionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerViewsSelectionExample, decorators: [{ type: Component, args: [{ selector: 'datepicker-views-selection-example', providers: [ // Moment can be provided globally to your app by adding `provideMomentDateAdapter` @@ -552,12 +550,12 @@ class DatepickerDialogExample { this.selectedDate.set(result); }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDialogExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: DatepickerDialogExample, isStandalone: true, selector: "datepicker-dialog-example", inputs: { selectedDate: { classPropertyName: "selectedDate", publicName: "selectedDate", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectedDate: "selectedDateChange" }, ngImport: i0, template: "

    Selected date: {{selectedDate()}}

    \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDialogExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: DatepickerDialogExample, isStandalone: true, selector: "datepicker-dialog-example", inputs: { selectedDate: { classPropertyName: "selectedDate", publicName: "selectedDate", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectedDate: "selectedDateChange" }, ngImport: i0, template: "

    Selected date: {{selectedDate()}}

    \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDialogExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDialogExample, decorators: [{ type: Component, - args: [{ selector: 'datepicker-dialog-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Selected date: {{selectedDate()}}

    \n\n" }] + args: [{ selector: 'datepicker-dialog-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Selected date: {{selectedDate()}}

    \n\n" }] }] }); class DatepickerDialogExampleDialog { dialogRef = inject((MatDialogRef)); @@ -567,13 +565,13 @@ class DatepickerDialogExampleDialog { const data = this.data; this.date.setValue(data.selectedDate); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDialogExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DatepickerDialogExampleDialog, isStandalone: true, selector: "datepicker-dialog-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDialogExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DatepickerDialogExampleDialog, isStandalone: true, selector: "datepicker-dialog-example", providers: [ provideNativeDateAdapter(), { provide: MAT_DATE_FORMATS, useValue: MAT_NATIVE_DATE_FORMATS }, - ], ngImport: i0, template: "

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i3$2.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i3$2.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i3$2.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i3$2.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + ], ngImport: i0, template: "

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i3$3.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i3$3.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i3$3.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i3$3.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DatepickerDialogExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DatepickerDialogExampleDialog, decorators: [{ type: Component, args: [{ selector: 'datepicker-dialog-example', imports: [ MatDatepickerModule, @@ -585,12 +583,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ], providers: [ provideNativeDateAdapter(), { provide: MAT_DATE_FORMATS, useValue: MAT_NATIVE_DATE_FORMATS }, - ], template: "

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n" }] + ], template: "

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n" }] }], ctorParameters: () => [] }); -/** - * Generated bundle index. Do not edit. - */ - export { DateRangePickerComparisonExample, DateRangePickerFormsExample, DateRangePickerOverviewExample, DateRangePickerSelectionStrategyExample, DatepickerActionsExample, DatepickerApiExample, DatepickerCustomHeaderExample, DatepickerCustomIconExample, DatepickerDateClassExample, DatepickerDialogExample, DatepickerDisabledExample, DatepickerEventsExample, DatepickerFilterExample, DatepickerFormatsExample, DatepickerHarnessExample, DatepickerInlineCalendarExample, DatepickerLocaleExample, DatepickerMinMaxExample, DatepickerMomentExample, DatepickerOverviewExample, DatepickerStartViewExample, DatepickerTouchExample, DatepickerValueExample, DatepickerViewsSelectionExample, ExampleHeader }; //# sourceMappingURL=datepicker.mjs.map diff --git a/fesm2022/material/datepicker.mjs.map b/fesm2022/material/datepicker.mjs.map index aabaeea484..3d03b3dc60 100755 --- a/fesm2022/material/datepicker.mjs.map +++ b/fesm2022/material/datepicker.mjs.map @@ -1 +1 @@ -{"version":3,"file":"datepicker.mjs","sources":["../../../../../../../src/components-examples/material/datepicker/date-range-picker-comparison/date-range-picker-comparison-example.ts","../../../../../../../src/components-examples/material/datepicker/date-range-picker-comparison/date-range-picker-comparison-example.html","../../../../../../../src/components-examples/material/datepicker/date-range-picker-forms/date-range-picker-forms-example.ts","../../../../../../../src/components-examples/material/datepicker/date-range-picker-forms/date-range-picker-forms-example.html","../../../../../../../src/components-examples/material/datepicker/date-range-picker-overview/date-range-picker-overview-example.ts","../../../../../../../src/components-examples/material/datepicker/date-range-picker-overview/date-range-picker-overview-example.html","../../../../../../../src/components-examples/material/datepicker/date-range-picker-selection-strategy/date-range-picker-selection-strategy-example.ts","../../../../../../../src/components-examples/material/datepicker/date-range-picker-selection-strategy/date-range-picker-selection-strategy-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-api/datepicker-api-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-api/datepicker-api-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-custom-icon/datepicker-custom-icon-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-custom-icon/datepicker-custom-icon-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-date-class/datepicker-date-class-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-date-class/datepicker-date-class-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-disabled/datepicker-disabled-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-disabled/datepicker-disabled-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-filter/datepicker-filter-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-filter/datepicker-filter-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-formats/datepicker-formats-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-formats/datepicker-formats-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-moment/datepicker-moment-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-moment/datepicker-moment-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-overview/datepicker-overview-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-overview/datepicker-overview-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-start-view/datepicker-start-view-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-start-view/datepicker-start-view-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-touch/datepicker-touch-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-touch/datepicker-touch-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-value/datepicker-value-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-value/datepicker-value-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-views-selection/datepicker-views-selection-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-views-selection/datepicker-views-selection-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example.ts","../../../../../../../src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example.html","../../../../../../../src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html","../../../../../../../src/components-examples/material/datepicker/datepicker_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nconst today = new Date();\nconst month = today.getMonth();\nconst year = today.getFullYear();\n\n/** @title Date range picker comparison ranges */\n@Component({\n selector: 'date-range-picker-comparison-example',\n templateUrl: 'date-range-picker-comparison-example.html',\n styleUrl: 'date-range-picker-comparison-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerComparisonExample {\n readonly campaignOne = new FormGroup({\n start: new FormControl(new Date(year, month, 13)),\n end: new FormControl(new Date(year, month, 16)),\n });\n readonly campaignTwo = new FormGroup({\n start: new FormControl(new Date(year, month, 15)),\n end: new FormControl(new Date(year, month, 19)),\n });\n}\n","\n First campaign\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n\n\n Second campaign\n \n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n\n","import {JsonPipe} from '@angular/common';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Date range picker forms integration */\n@Component({\n selector: 'date-range-picker-forms-example',\n templateUrl: 'date-range-picker-forms-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerFormsExample {\n readonly range = new FormGroup({\n start: new FormControl(null),\n end: new FormControl(null),\n });\n}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n @if (range.controls.start.hasError('matStartDateInvalid')) {\n Invalid start date\n }\n @if (range.controls.end.hasError('matEndDateInvalid')) {\n Invalid end date\n }\n\n\n

    Selected range: {{range.value | json}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Basic date range picker */\n@Component({\n selector: 'date-range-picker-overview-example',\n templateUrl: 'date-range-picker-overview-example.html',\n imports: [MatFormFieldModule, MatDatepickerModule],\n providers: [provideNativeDateAdapter()],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerOverviewExample {}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, Injectable, inject} from '@angular/core';\nimport {DateAdapter, provideNativeDateAdapter} from '@angular/material/core';\nimport {\n DateRange,\n MAT_DATE_RANGE_SELECTION_STRATEGY,\n MatDateRangeSelectionStrategy,\n MatDatepickerModule,\n} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n@Injectable()\nexport class FiveDayRangeSelectionStrategy implements MatDateRangeSelectionStrategy {\n private _dateAdapter = inject>(DateAdapter);\n\n selectionFinished(date: D | null): DateRange {\n return this._createFiveDayRange(date);\n }\n\n createPreview(activeDate: D | null): DateRange {\n return this._createFiveDayRange(activeDate);\n }\n\n private _createFiveDayRange(date: D | null): DateRange {\n if (date) {\n const start = this._dateAdapter.addCalendarDays(date, -2);\n const end = this._dateAdapter.addCalendarDays(date, 2);\n return new DateRange(start, end);\n }\n\n return new DateRange(null, null);\n }\n}\n\n/** @title Date range picker with a custom selection strategy */\n@Component({\n selector: 'date-range-picker-selection-strategy-example',\n templateUrl: 'date-range-picker-selection-strategy-example.html',\n providers: [\n {\n provide: MAT_DATE_RANGE_SELECTION_STRATEGY,\n useClass: FiveDayRangeSelectionStrategy,\n },\n provideNativeDateAdapter(),\n ],\n imports: [MatFormFieldModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerSelectionStrategyExample {}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Datepicker action buttons */\n@Component({\n selector: 'datepicker-actions-example',\n templateUrl: 'datepicker-actions-example.html',\n styleUrl: 'datepicker-actions-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerActionsExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker open method */\n@Component({\n selector: 'datepicker-api-example',\n templateUrl: 'datepicker-api-example.html',\n styleUrl: 'datepicker-api-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerApiExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n\n\n","import {ChangeDetectionStrategy, Component, OnDestroy, signal, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {DateAdapter, MAT_DATE_FORMATS, provideNativeDateAdapter} from '@angular/material/core';\nimport {MatCalendar, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {Subject} from 'rxjs';\nimport {startWith, takeUntil} from 'rxjs/operators';\n\n/** @title Datepicker with custom calendar header */\n@Component({\n selector: 'datepicker-custom-header-example',\n templateUrl: 'datepicker-custom-header-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerCustomHeaderExample {\n readonly exampleHeader = ExampleHeader;\n}\n\n/** Custom header component for datepicker. */\n@Component({\n selector: 'example-header',\n styles: `\n .example-header {\n display: flex;\n align-items: center;\n padding: 0.5em;\n }\n\n .example-header-label {\n flex: 1;\n height: 1em;\n font-weight: 500;\n text-align: center;\n }\n `,\n template: `\n
    \n \n \n {{periodLabel()}}\n \n \n
    \n `,\n imports: [MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExampleHeader implements OnDestroy {\n private _calendar = inject>(MatCalendar);\n private _dateAdapter = inject>(DateAdapter);\n private _dateFormats = inject(MAT_DATE_FORMATS);\n\n private _destroyed = new Subject();\n\n readonly periodLabel = signal('');\n\n constructor() {\n this._calendar.stateChanges.pipe(startWith(null), takeUntil(this._destroyed)).subscribe(() => {\n this.periodLabel.set(\n this._dateAdapter\n .format(this._calendar.activeDate, this._dateFormats.display.monthYearLabel)\n .toLocaleUpperCase(),\n );\n });\n }\n\n ngOnDestroy() {\n this._destroyed.next();\n this._destroyed.complete();\n }\n\n previousClicked(mode: 'month' | 'year') {\n this._calendar.activeDate =\n mode === 'month'\n ? this._dateAdapter.addCalendarMonths(this._calendar.activeDate, -1)\n : this._dateAdapter.addCalendarYears(this._calendar.activeDate, -1);\n }\n\n nextClicked(mode: 'month' | 'year') {\n this._calendar.activeDate =\n mode === 'month'\n ? this._dateAdapter.addCalendarMonths(this._calendar.activeDate, 1)\n : this._dateAdapter.addCalendarYears(this._calendar.activeDate, 1);\n }\n}\n","\n Custom calendar header\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with custom icon */\n@Component({\n selector: 'datepicker-custom-icon-example',\n templateUrl: 'datepicker-custom-icon-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerCustomIconExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n keyboard_arrow_down\n \n \n\n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatCalendarCellClassFunction, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with custom date classes */\n@Component({\n selector: 'datepicker-date-class-example',\n templateUrl: 'datepicker-date-class-example.html',\n styleUrl: 'datepicker-date-class-example.css',\n encapsulation: ViewEncapsulation.None,\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDateClassExample {\n dateClass: MatCalendarCellClassFunction = (cellDate, view) => {\n // Only highligh dates inside the month view.\n if (view === 'month') {\n const date = cellDate.getDate();\n\n // Highlight the 1st and 20th day of each month.\n return date === 1 || date === 20 ? 'example-custom-date-class' : '';\n }\n\n return '';\n };\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Disabled datepicker */\n@Component({\n selector: 'datepicker-disabled-example',\n templateUrl: 'datepicker-disabled-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDisabledExample {}\n","

    \n \n Completely disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Popup disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Input disabled\n \n MM/DD/YYYY\n \n \n \n

    \n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerInputEvent, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker input and change events */\n@Component({\n selector: 'datepicker-events-example',\n templateUrl: 'datepicker-events-example.html',\n styleUrl: 'datepicker-events-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerEventsExample {\n events = signal([]);\n\n addEvent(type: string, event: MatDatepickerInputEvent) {\n this.events.update(events => [...events, `${type}: ${event.value}`]);\n }\n}\n","\n Input & change events\n \n MM/DD/YYYY\n \n \n\n\n
    \n @for (e of events(); track e) {\n
    {{e}}
    \n }\n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with filter validation */\n@Component({\n selector: 'datepicker-filter-example',\n templateUrl: 'datepicker-filter-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerFilterExample {\n myFilter = (d: Date | null): boolean => {\n const day = (d || new Date()).getDay();\n // Prevent Saturday and Sunday from being selected.\n return day !== 0 && day !== 6;\n };\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment} from 'moment';\n\nconst moment = _rollupMoment || _moment;\n\n// See the Moment.js docs for the meaning of these formats:\n// https://momentjs.com/docs/#/displaying/format/\nexport const MY_FORMATS = {\n parse: {\n dateInput: 'LL',\n },\n display: {\n dateInput: 'LL',\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY',\n },\n};\n\n/** @title Datepicker with custom formats */\n@Component({\n selector: 'datepicker-formats-example',\n templateUrl: 'datepicker-formats-example.html',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(MY_FORMATS),\n ],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerFormatsExample {\n readonly date = new FormControl(moment());\n}\n","\n Verbose datepicker\n \n MMMM DD, YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Testing with MatDatepickerInputHarness\n */\n@Component({\n selector: 'datepicker-harness-example',\n templateUrl: 'datepicker-harness-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatInputModule, MatDatepickerModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerHarnessExample {\n date = model(null);\n minDate = signal(null);\n}\n","\n\n","import {ChangeDetectionStrategy, Component, model} from '@angular/core';\nimport {MatCardModule} from '@angular/material/card';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\n\n/** @title Datepicker inline calendar example */\n@Component({\n selector: 'datepicker-inline-calendar-example',\n templateUrl: 'datepicker-inline-calendar-example.html',\n styleUrl: 'datepicker-inline-calendar-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatCardModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerInlineCalendarExample {\n selected = model(null);\n}\n","\n \n\n

    Selected date: {{selected()}}

    \n","import {ChangeDetectionStrategy, Component, OnInit, computed, inject, signal} from '@angular/core';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatButtonModule} from '@angular/material/button';\nimport {DateAdapter, MAT_DATE_LOCALE} from '@angular/material/core';\nimport {MatDatepickerIntl, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport 'moment/locale/fr';\nimport 'moment/locale/ja';\n\n/** @title Datepicker with different locale */\n@Component({\n selector: 'datepicker-locale-example',\n templateUrl: 'datepicker-locale-example.html',\n styleUrl: 'datepicker-locale-example.css',\n providers: [\n // The locale would typically be provided on the root module of your application. We do it at\n // the component level here, due to limitations of our example generation script.\n {provide: MAT_DATE_LOCALE, useValue: 'ja-JP'},\n\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(),\n ],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerLocaleExample implements OnInit {\n private readonly _adapter = inject>(DateAdapter);\n private readonly _intl = inject(MatDatepickerIntl);\n private readonly _locale = signal(inject(MAT_DATE_LOCALE));\n readonly dateFormatString = computed(() => {\n if (this._locale() === 'ja-JP') {\n return 'YYYY/MM/DD';\n } else if (this._locale() === 'fr') {\n return 'DD/MM/YYYY';\n }\n return '';\n });\n\n ngOnInit() {\n this.updateCloseButtonLabel('カレンダーを閉じる');\n }\n\n french() {\n this._locale.set('fr');\n this._adapter.setLocale(this._locale());\n this.updateCloseButtonLabel('Fermer le calendrier');\n }\n\n updateCloseButtonLabel(label: string) {\n this._intl.closeCalendarLabel = label;\n this._intl.changes.next();\n }\n}\n","\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with min & max validation */\n@Component({\n selector: 'datepicker-min-max-example',\n templateUrl: 'datepicker-min-max-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerMinMaxExample {\n // Set the minimum to January 1st 20 years in the past and December 31st a year in the future.\n private readonly _currentYear = new Date().getFullYear();\n readonly minDate = new Date(this._currentYear - 20, 0, 1);\n readonly maxDate = new Date(this._currentYear + 1, 11, 31);\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment} from 'moment';\n\nconst moment = _rollupMoment || _moment;\n\n/** @title Datepicker that uses Moment.js dates */\n@Component({\n selector: 'datepicker-moment-example',\n templateUrl: 'datepicker-moment-example.html',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(),\n ],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerMomentExample {\n // Datepicker takes `Moment` objects instead of `Date` objects.\n readonly date = new FormControl(moment([2017, 0, 1]));\n}\n","\n Moment.js datepicker\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Basic datepicker */\n@Component({\n selector: 'datepicker-overview-example',\n templateUrl: 'datepicker-overview-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerOverviewExample {}\n","\n Choose a date\n\n \n MM/DD/YYYY\n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker start date */\n@Component({\n selector: 'datepicker-start-view-example',\n templateUrl: 'datepicker-start-view-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerStartViewExample {\n readonly startDate = new Date(1990, 0, 1);\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Datepicker touch UI */\n@Component({\n selector: 'datepicker-touch-example',\n templateUrl: 'datepicker-touch-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerTouchExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker selected value */\n@Component({\n selector: 'datepicker-value-example',\n templateUrl: 'datepicker-value-example.html',\n styleUrl: 'datepicker-value-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerValueExample {\n readonly date = new FormControl(new Date());\n readonly serializedDate = new FormControl(new Date().toISOString());\n}\n","\n Angular forms\n \n MM/DD/YYYY\n \n \n\n\n\n Angular forms (w/ deserialization)\n \n MM/DD/YYYY\n \n \n\n\n\n Value binding\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepicker, MatDatepickerModule} from '@angular/material/datepicker';\n\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment, Moment} from 'moment';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nconst moment = _rollupMoment || _moment;\n\n// See the Moment.js docs for the meaning of these formats:\n// https://momentjs.com/docs/#/displaying/format/\nexport const MY_FORMATS = {\n parse: {\n dateInput: 'MM/YYYY',\n },\n display: {\n dateInput: 'MM/YYYY',\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY',\n },\n};\n\n/** @title Datepicker emulating a Year and month picker */\n@Component({\n selector: 'datepicker-views-selection-example',\n templateUrl: 'datepicker-views-selection-example.html',\n styleUrl: 'datepicker-views-selection-example.css',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(MY_FORMATS),\n ],\n encapsulation: ViewEncapsulation.None,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerViewsSelectionExample {\n readonly date = new FormControl(moment());\n\n setMonthAndYear(normalizedMonthAndYear: Moment, datepicker: MatDatepicker) {\n const ctrlValue = this.date.value ?? moment();\n ctrlValue.month(normalizedMonthAndYear.month());\n ctrlValue.year(normalizedMonthAndYear.year());\n this.date.setValue(ctrlValue);\n datepicker.close();\n }\n}\n","\n Month and Year\n \n MM/YYYY\n \n \n \n\n","import {ChangeDetectionStrategy, Component, model, inject} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MAT_DATE_FORMATS,\n MAT_NATIVE_DATE_FORMATS,\n provideNativeDateAdapter,\n} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MAT_DIALOG_DATA, MatDialog, MatDialogModule, MatDialogRef} from '@angular/material/dialog';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\nexport interface DialogData {\n selectedDate: Date;\n}\n\n/** @title Datepicker inside a MatDialog */\n@Component({\n selector: 'datepicker-dialog-example',\n templateUrl: 'datepicker-dialog-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDialogExample {\n dialog = inject(MatDialog);\n\n selectedDate = model(null);\n\n openDialog() {\n const dialogRef = this.dialog.open(DatepickerDialogExampleDialog, {\n minWidth: '500px',\n data: {selectedDate: this.selectedDate()},\n });\n\n dialogRef.afterClosed().subscribe(result => {\n this.selectedDate.set(result);\n });\n }\n}\n\n@Component({\n selector: 'datepicker-dialog-example',\n templateUrl: 'datepicker-dialog-example-dialog.html',\n imports: [\n MatDatepickerModule,\n MatDialogModule,\n MatButtonModule,\n MatFormFieldModule,\n MatInputModule,\n ReactiveFormsModule,\n ],\n providers: [\n provideNativeDateAdapter(),\n {provide: MAT_DATE_FORMATS, useValue: MAT_NATIVE_DATE_FORMATS},\n ],\n})\nexport class DatepickerDialogExampleDialog {\n dialogRef = inject>(\n MatDialogRef,\n );\n data = inject(MAT_DIALOG_DATA);\n\n readonly date = new FormControl(new Date());\n\n constructor() {\n const data = this.data;\n\n this.date.setValue(data.selectedDate);\n }\n}\n","

    Selected date: {{selectedDate()}}

    \n\n","

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i3","i4","moment","_rollupMoment","_moment","MY_FORMATS","i1","i5","i6"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"datepicker.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-comparison/date-range-picker-comparison-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-comparison/date-range-picker-comparison-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-forms/date-range-picker-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-forms/date-range-picker-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-overview/date-range-picker-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-overview/date-range-picker-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-selection-strategy/date-range-picker-selection-strategy-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/date-range-picker-selection-strategy/date-range-picker-selection-strategy-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-actions/datepicker-actions-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-api/datepicker-api-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-api/datepicker-api-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-custom-header/datepicker-custom-header-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-custom-icon/datepicker-custom-icon-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-custom-icon/datepicker-custom-icon-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-date-class/datepicker-date-class-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-date-class/datepicker-date-class-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-disabled/datepicker-disabled-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-disabled/datepicker-disabled-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-events/datepicker-events-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-filter/datepicker-filter-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-filter/datepicker-filter-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-formats/datepicker-formats-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-formats/datepicker-formats-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-harness/datepicker-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-inline-calendar/datepicker-inline-calendar-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-locale/datepicker-locale-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-min-max/datepicker-min-max-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-moment/datepicker-moment-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-moment/datepicker-moment-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-overview/datepicker-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-overview/datepicker-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-start-view/datepicker-start-view-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-start-view/datepicker-start-view-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-touch/datepicker-touch-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-touch/datepicker-touch-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-value/datepicker-value-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-value/datepicker-value-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-views-selection/datepicker-views-selection-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-views-selection/datepicker-views-selection-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/datepicker/datepicker-dialog/datepicker-dialog-example-dialog.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nconst today = new Date();\nconst month = today.getMonth();\nconst year = today.getFullYear();\n\n/** @title Date range picker comparison ranges */\n@Component({\n selector: 'date-range-picker-comparison-example',\n templateUrl: 'date-range-picker-comparison-example.html',\n styleUrl: 'date-range-picker-comparison-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerComparisonExample {\n readonly campaignOne = new FormGroup({\n start: new FormControl(new Date(year, month, 13)),\n end: new FormControl(new Date(year, month, 16)),\n });\n readonly campaignTwo = new FormGroup({\n start: new FormControl(new Date(year, month, 15)),\n end: new FormControl(new Date(year, month, 19)),\n });\n}\n","\n First campaign\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n\n\n Second campaign\n \n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n\n","import {JsonPipe} from '@angular/common';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Date range picker forms integration */\n@Component({\n selector: 'date-range-picker-forms-example',\n templateUrl: 'date-range-picker-forms-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatDatepickerModule, FormsModule, ReactiveFormsModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerFormsExample {\n readonly range = new FormGroup({\n start: new FormControl(null),\n end: new FormControl(null),\n });\n}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n @if (range.controls.start.hasError('matStartDateInvalid')) {\n Invalid start date\n }\n @if (range.controls.end.hasError('matEndDateInvalid')) {\n Invalid end date\n }\n\n\n

    Selected range: {{range.value | json}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Basic date range picker */\n@Component({\n selector: 'date-range-picker-overview-example',\n templateUrl: 'date-range-picker-overview-example.html',\n imports: [MatFormFieldModule, MatDatepickerModule],\n providers: [provideNativeDateAdapter()],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerOverviewExample {}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, Injectable, inject} from '@angular/core';\nimport {DateAdapter, provideNativeDateAdapter} from '@angular/material/core';\nimport {\n DateRange,\n MAT_DATE_RANGE_SELECTION_STRATEGY,\n MatDateRangeSelectionStrategy,\n MatDatepickerModule,\n} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n@Injectable()\nexport class FiveDayRangeSelectionStrategy implements MatDateRangeSelectionStrategy {\n private _dateAdapter = inject>(DateAdapter);\n\n selectionFinished(date: D | null): DateRange {\n return this._createFiveDayRange(date);\n }\n\n createPreview(activeDate: D | null): DateRange {\n return this._createFiveDayRange(activeDate);\n }\n\n private _createFiveDayRange(date: D | null): DateRange {\n if (date) {\n const start = this._dateAdapter.addCalendarDays(date, -2);\n const end = this._dateAdapter.addCalendarDays(date, 2);\n return new DateRange(start, end);\n }\n\n return new DateRange(null, null);\n }\n}\n\n/** @title Date range picker with a custom selection strategy */\n@Component({\n selector: 'date-range-picker-selection-strategy-example',\n templateUrl: 'date-range-picker-selection-strategy-example.html',\n providers: [\n {\n provide: MAT_DATE_RANGE_SELECTION_STRATEGY,\n useClass: FiveDayRangeSelectionStrategy,\n },\n provideNativeDateAdapter(),\n ],\n imports: [MatFormFieldModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DateRangePickerSelectionStrategyExample {}\n","\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Datepicker action buttons */\n@Component({\n selector: 'datepicker-actions-example',\n templateUrl: 'datepicker-actions-example.html',\n styleUrl: 'datepicker-actions-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerActionsExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n\n\n Enter a date range\n \n \n \n \n MM/DD/YYYY – MM/DD/YYYY\n \n \n \n \n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker open method */\n@Component({\n selector: 'datepicker-api-example',\n templateUrl: 'datepicker-api-example.html',\n styleUrl: 'datepicker-api-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerApiExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n\n\n","import {ChangeDetectionStrategy, Component, OnDestroy, signal, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {DateAdapter, MAT_DATE_FORMATS, provideNativeDateAdapter} from '@angular/material/core';\nimport {MatCalendar, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {Subject} from 'rxjs';\nimport {startWith, takeUntil} from 'rxjs/operators';\n\n/** @title Datepicker with custom calendar header */\n@Component({\n selector: 'datepicker-custom-header-example',\n templateUrl: 'datepicker-custom-header-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerCustomHeaderExample {\n readonly exampleHeader = ExampleHeader;\n}\n\n/** Custom header component for datepicker. */\n@Component({\n selector: 'example-header',\n styles: `\n .example-header {\n display: flex;\n align-items: center;\n padding: 0.5em;\n }\n\n .example-header-label {\n flex: 1;\n height: 1em;\n font-weight: 500;\n text-align: center;\n }\n `,\n template: `\n
    \n \n \n {{periodLabel()}}\n \n \n
    \n `,\n imports: [MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExampleHeader implements OnDestroy {\n private _calendar = inject>(MatCalendar);\n private _dateAdapter = inject>(DateAdapter);\n private _dateFormats = inject(MAT_DATE_FORMATS);\n\n private _destroyed = new Subject();\n\n readonly periodLabel = signal('');\n\n constructor() {\n this._calendar.stateChanges.pipe(startWith(null), takeUntil(this._destroyed)).subscribe(() => {\n this.periodLabel.set(\n this._dateAdapter\n .format(this._calendar.activeDate, this._dateFormats.display.monthYearLabel)\n .toLocaleUpperCase(),\n );\n });\n }\n\n ngOnDestroy() {\n this._destroyed.next();\n this._destroyed.complete();\n }\n\n previousClicked(mode: 'month' | 'year') {\n this._calendar.activeDate =\n mode === 'month'\n ? this._dateAdapter.addCalendarMonths(this._calendar.activeDate, -1)\n : this._dateAdapter.addCalendarYears(this._calendar.activeDate, -1);\n }\n\n nextClicked(mode: 'month' | 'year') {\n this._calendar.activeDate =\n mode === 'month'\n ? this._dateAdapter.addCalendarMonths(this._calendar.activeDate, 1)\n : this._dateAdapter.addCalendarYears(this._calendar.activeDate, 1);\n }\n}\n","\n Custom calendar header\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with custom icon */\n@Component({\n selector: 'datepicker-custom-icon-example',\n templateUrl: 'datepicker-custom-icon-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerCustomIconExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n keyboard_arrow_down\n \n \n\n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatCalendarCellClassFunction, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with custom date classes */\n@Component({\n selector: 'datepicker-date-class-example',\n templateUrl: 'datepicker-date-class-example.html',\n styleUrl: 'datepicker-date-class-example.css',\n encapsulation: ViewEncapsulation.None,\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDateClassExample {\n dateClass: MatCalendarCellClassFunction = (cellDate, view) => {\n // Only highligh dates inside the month view.\n if (view === 'month') {\n const date = cellDate.getDate();\n\n // Highlight the 1st and 20th day of each month.\n return date === 1 || date === 20 ? 'example-custom-date-class' : '';\n }\n\n return '';\n };\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Disabled datepicker */\n@Component({\n selector: 'datepicker-disabled-example',\n templateUrl: 'datepicker-disabled-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDisabledExample {}\n","

    \n \n Completely disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Popup disabled\n \n MM/DD/YYYY\n \n \n \n

    \n\n

    \n \n Input disabled\n \n MM/DD/YYYY\n \n \n \n

    \n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerInputEvent, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker input and change events */\n@Component({\n selector: 'datepicker-events-example',\n templateUrl: 'datepicker-events-example.html',\n styleUrl: 'datepicker-events-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerEventsExample {\n events = signal([]);\n\n addEvent(type: string, event: MatDatepickerInputEvent) {\n this.events.update(events => [...events, `${type}: ${event.value}`]);\n }\n}\n","\n Input & change events\n \n MM/DD/YYYY\n \n \n\n\n
    \n @for (e of events(); track e) {\n
    {{e}}
    \n }\n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with filter validation */\n@Component({\n selector: 'datepicker-filter-example',\n templateUrl: 'datepicker-filter-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerFilterExample {\n myFilter = (d: Date | null): boolean => {\n const day = (d || new Date()).getDay();\n // Prevent Saturday and Sunday from being selected.\n return day !== 0 && day !== 6;\n };\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment} from 'moment';\n\nconst moment = _rollupMoment || _moment;\n\n// See the Moment.js docs for the meaning of these formats:\n// https://momentjs.com/docs/#/displaying/format/\nexport const MY_FORMATS = {\n parse: {\n dateInput: 'LL',\n },\n display: {\n dateInput: 'LL',\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY',\n },\n};\n\n/** @title Datepicker with custom formats */\n@Component({\n selector: 'datepicker-formats-example',\n templateUrl: 'datepicker-formats-example.html',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(MY_FORMATS),\n ],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerFormatsExample {\n readonly date = new FormControl(moment());\n}\n","\n Verbose datepicker\n \n MMMM DD, YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Testing with MatDatepickerInputHarness\n */\n@Component({\n selector: 'datepicker-harness-example',\n templateUrl: 'datepicker-harness-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatInputModule, MatDatepickerModule, FormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerHarnessExample {\n date = model(null);\n minDate = signal(null);\n}\n","\n\n","import {ChangeDetectionStrategy, Component, model} from '@angular/core';\nimport {MatCardModule} from '@angular/material/card';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\n\n/** @title Datepicker inline calendar example */\n@Component({\n selector: 'datepicker-inline-calendar-example',\n templateUrl: 'datepicker-inline-calendar-example.html',\n styleUrl: 'datepicker-inline-calendar-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatCardModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerInlineCalendarExample {\n selected = model(null);\n}\n","\n \n\n

    Selected date: {{selected()}}

    \n","import {ChangeDetectionStrategy, Component, OnInit, computed, inject, signal} from '@angular/core';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatButtonModule} from '@angular/material/button';\nimport {DateAdapter, MAT_DATE_LOCALE} from '@angular/material/core';\nimport {MatDatepickerIntl, MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport 'moment/locale/fr';\nimport 'moment/locale/ja';\n\n/** @title Datepicker with different locale */\n@Component({\n selector: 'datepicker-locale-example',\n templateUrl: 'datepicker-locale-example.html',\n styleUrl: 'datepicker-locale-example.css',\n providers: [\n // The locale would typically be provided on the root module of your application. We do it at\n // the component level here, due to limitations of our example generation script.\n {provide: MAT_DATE_LOCALE, useValue: 'ja-JP'},\n\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(),\n ],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerLocaleExample implements OnInit {\n private readonly _adapter = inject>(DateAdapter);\n private readonly _intl = inject(MatDatepickerIntl);\n private readonly _locale = signal(inject(MAT_DATE_LOCALE));\n readonly dateFormatString = computed(() => {\n if (this._locale() === 'ja-JP') {\n return 'YYYY/MM/DD';\n } else if (this._locale() === 'fr') {\n return 'DD/MM/YYYY';\n }\n return '';\n });\n\n ngOnInit() {\n this.updateCloseButtonLabel('カレンダーを閉じる');\n }\n\n french() {\n this._locale.set('fr');\n this._adapter.setLocale(this._locale());\n this.updateCloseButtonLabel('Fermer le calendrier');\n }\n\n updateCloseButtonLabel(label: string) {\n this._intl.closeCalendarLabel = label;\n this._intl.changes.next();\n }\n}\n","\n Different locale\n \n {{dateFormatString()}}\n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker with min & max validation */\n@Component({\n selector: 'datepicker-min-max-example',\n templateUrl: 'datepicker-min-max-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerMinMaxExample {\n // Set the minimum to January 1st 20 years in the past and December 31st a year in the future.\n private readonly _currentYear = new Date().getFullYear();\n readonly minDate = new Date(this._currentYear - 20, 0, 1);\n readonly maxDate = new Date(this._currentYear + 1, 11, 31);\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment} from 'moment';\n\nconst moment = _rollupMoment || _moment;\n\n/** @title Datepicker that uses Moment.js dates */\n@Component({\n selector: 'datepicker-moment-example',\n templateUrl: 'datepicker-moment-example.html',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(),\n ],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerMomentExample {\n // Datepicker takes `Moment` objects instead of `Date` objects.\n readonly date = new FormControl(moment([2017, 0, 1]));\n}\n","\n Moment.js datepicker\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Basic datepicker */\n@Component({\n selector: 'datepicker-overview-example',\n templateUrl: 'datepicker-overview-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerOverviewExample {}\n","\n Choose a date\n\n \n MM/DD/YYYY\n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker start date */\n@Component({\n selector: 'datepicker-start-view-example',\n templateUrl: 'datepicker-start-view-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerStartViewExample {\n readonly startDate = new Date(1990, 0, 1);\n}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Datepicker touch UI */\n@Component({\n selector: 'datepicker-touch-example',\n templateUrl: 'datepicker-touch-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatDatepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerTouchExample {}\n","\n Choose a date\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Datepicker selected value */\n@Component({\n selector: 'datepicker-value-example',\n templateUrl: 'datepicker-value-example.html',\n styleUrl: 'datepicker-value-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerValueExample {\n readonly date = new FormControl(new Date());\n readonly serializedDate = new FormControl(new Date().toISOString());\n}\n","\n Angular forms\n \n MM/DD/YYYY\n \n \n\n\n\n Angular forms (w/ deserialization)\n \n MM/DD/YYYY\n \n \n\n\n\n Value binding\n \n MM/DD/YYYY\n \n \n\n","import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {provideMomentDateAdapter} from '@angular/material-moment-adapter';\nimport {MatDatepicker, MatDatepickerModule} from '@angular/material/datepicker';\n\n// Depending on whether rollup is used, moment needs to be imported differently.\n// Since Moment.js doesn't have a default export, we normally need to import using the `* as`\n// syntax. However, rollup creates a synthetic default module and we thus need to import it using\n// the `default as` syntax.\nimport * as _moment from 'moment';\n// tslint:disable-next-line:no-duplicate-imports\nimport {default as _rollupMoment, Moment} from 'moment';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nconst moment = _rollupMoment || _moment;\n\n// See the Moment.js docs for the meaning of these formats:\n// https://momentjs.com/docs/#/displaying/format/\nexport const MY_FORMATS = {\n parse: {\n dateInput: 'MM/YYYY',\n },\n display: {\n dateInput: 'MM/YYYY',\n monthYearLabel: 'MMM YYYY',\n dateA11yLabel: 'LL',\n monthYearA11yLabel: 'MMMM YYYY',\n },\n};\n\n/** @title Datepicker emulating a Year and month picker */\n@Component({\n selector: 'datepicker-views-selection-example',\n templateUrl: 'datepicker-views-selection-example.html',\n styleUrl: 'datepicker-views-selection-example.css',\n providers: [\n // Moment can be provided globally to your app by adding `provideMomentDateAdapter`\n // to your app config. We provide it at the component level here, due to limitations\n // of our example generation script.\n provideMomentDateAdapter(MY_FORMATS),\n ],\n encapsulation: ViewEncapsulation.None,\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n FormsModule,\n ReactiveFormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerViewsSelectionExample {\n readonly date = new FormControl(moment());\n\n setMonthAndYear(normalizedMonthAndYear: Moment, datepicker: MatDatepicker) {\n const ctrlValue = this.date.value ?? moment();\n ctrlValue.month(normalizedMonthAndYear.month());\n ctrlValue.year(normalizedMonthAndYear.year());\n this.date.setValue(ctrlValue);\n datepicker.close();\n }\n}\n","\n Month and Year\n \n MM/YYYY\n \n \n \n\n","import {ChangeDetectionStrategy, Component, model, inject} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MAT_DATE_FORMATS,\n MAT_NATIVE_DATE_FORMATS,\n provideNativeDateAdapter,\n} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MAT_DIALOG_DATA, MatDialog, MatDialogModule, MatDialogRef} from '@angular/material/dialog';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\nexport interface DialogData {\n selectedDate: Date;\n}\n\n/** @title Datepicker inside a MatDialog */\n@Component({\n selector: 'datepicker-dialog-example',\n templateUrl: 'datepicker-dialog-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatepickerDialogExample {\n dialog = inject(MatDialog);\n\n selectedDate = model(null);\n\n openDialog() {\n const dialogRef = this.dialog.open(DatepickerDialogExampleDialog, {\n minWidth: '500px',\n data: {selectedDate: this.selectedDate()},\n });\n\n dialogRef.afterClosed().subscribe(result => {\n this.selectedDate.set(result);\n });\n }\n}\n\n@Component({\n selector: 'datepicker-dialog-example',\n templateUrl: 'datepicker-dialog-example-dialog.html',\n imports: [\n MatDatepickerModule,\n MatDialogModule,\n MatButtonModule,\n MatFormFieldModule,\n MatInputModule,\n ReactiveFormsModule,\n ],\n providers: [\n provideNativeDateAdapter(),\n {provide: MAT_DATE_FORMATS, useValue: MAT_NATIVE_DATE_FORMATS},\n ],\n})\nexport class DatepickerDialogExampleDialog {\n dialogRef = inject>(\n MatDialogRef,\n );\n data = inject(MAT_DIALOG_DATA);\n\n readonly date = new FormControl(new Date());\n\n constructor() {\n const data = this.data;\n\n this.date.setValue(data.selectedDate);\n }\n}\n","

    Selected date: {{selectedDate()}}

    \n\n","

    Datepicker in a Dialog

    \n\n \n Select a date\n \n \n \n \n\n\n \n \n\n"],"names":["i2","i3","i4","i5","moment","_rollupMoment","_moment","MY_FORMATS","i1","i6"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/dialog.mjs b/fesm2022/material/dialog.mjs index 54f18dd9a2..a4e22c771b 100755 --- a/fesm2022/material/dialog.mjs +++ b/fesm2022/material/dialog.mjs @@ -2,15 +2,15 @@ import * as i0 from '@angular/core'; import { inject, Component, ChangeDetectionStrategy, signal, model, viewChild, TemplateRef } from '@angular/core'; import * as i1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i2 from '@angular/material/dialog'; +import * as i3 from '@angular/material/dialog'; import { MatDialog, MatDialogModule, MAT_DIALOG_DATA, MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatDialogRef } from '@angular/material/dialog'; -import * as i3 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormsModule } from '@angular/forms'; import * as i1$1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i2$1 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i2$2 from '@angular/material/menu'; +import * as i2$1 from '@angular/material/menu'; import { MatMenuTrigger, MatMenuModule } from '@angular/material/menu'; /** @@ -24,20 +24,20 @@ class DialogContentExample { console.log(`Dialog result: ${result}`); }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogContentExample, isStandalone: true, selector: "dialog-content-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDialogModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogContentExample, isStandalone: true, selector: "dialog-content-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDialogModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogContentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogContentExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-content-example', imports: [MatButtonModule, MatDialogModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] + args: [{ selector: 'dialog-content-example', imports: [MatButtonModule, MatDialogModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] }] }); class DialogContentExampleDialog { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogContentExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogContentExampleDialog, isStandalone: true, selector: "dialog-content-example-dialog", ngImport: i0, template: "

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i2.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i2.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i2.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i2.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogContentExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogContentExampleDialog, isStandalone: true, selector: "dialog-content-example-dialog", ngImport: i0, template: "

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i3.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i3.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i3.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i3.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogContentExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogContentExampleDialog, decorators: [{ type: Component, - args: [{ selector: 'dialog-content-example-dialog', imports: [MatDialogModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n" }] + args: [{ selector: 'dialog-content-example-dialog', imports: [MatDialogModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n" }] }] }); /** @@ -52,19 +52,19 @@ class DialogDataExample { }, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogDataExample, isStandalone: true, selector: "dialog-data-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogDataExample, isStandalone: true, selector: "dialog-data-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogDataExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogDataExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-data-example', imports: [MatButtonModule], template: "\n" }] + args: [{ selector: 'dialog-data-example', imports: [MatButtonModule], template: "\n" }] }] }); class DialogDataExampleDialog { data = inject(MAT_DIALOG_DATA); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogDataExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: DialogDataExampleDialog, isStandalone: true, selector: "dialog-data-example-dialog", ngImport: i0, template: "

    Favorite Animal

    \n\n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n", dependencies: [{ kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogDataExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: DialogDataExampleDialog, isStandalone: true, selector: "dialog-data-example-dialog", ngImport: i0, template: "

    Favorite Animal

    \n\n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n", dependencies: [{ kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogDataExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogDataExampleDialog, decorators: [{ type: Component, args: [{ selector: 'dialog-data-example-dialog', imports: [MatDialogTitle, MatDialogContent], template: "

    Favorite Animal

    \n\n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n" }] }] }); @@ -77,20 +77,20 @@ class DialogElementsExample { openDialog() { this.dialog.open(DialogElementsExampleDialog); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogElementsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogElementsExample, isStandalone: true, selector: "dialog-elements-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogElementsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogElementsExample, isStandalone: true, selector: "dialog-elements-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogElementsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogElementsExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-elements-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] + args: [{ selector: 'dialog-elements-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] }] }); class DialogElementsExampleDialog { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogElementsExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogElementsExampleDialog, isStandalone: true, selector: "dialog-elements-example-dialog", ngImport: i0, template: "

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n", dependencies: [{ kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogElementsExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogElementsExampleDialog, isStandalone: true, selector: "dialog-elements-example-dialog", ngImport: i0, template: "

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n", dependencies: [{ kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogElementsExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogElementsExampleDialog, decorators: [{ type: Component, - args: [{ selector: 'dialog-elements-example-dialog', imports: [MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n" }] + args: [{ selector: 'dialog-elements-example-dialog', imports: [MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n" }] }] }); /** @@ -111,12 +111,12 @@ class DialogOverviewExample { } }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: DialogOverviewExample, isStandalone: true, selector: "dialog-overview-example", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { name: "nameChange" }, ngImport: i0, template: "
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: DialogOverviewExample, isStandalone: true, selector: "dialog-overview-example", inputs: { name: { classPropertyName: "name", publicName: "name", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { name: "nameChange" }, ngImport: i0, template: "
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-overview-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n" }] + args: [{ selector: 'dialog-overview-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n" }] }] }); class DialogOverviewExampleDialog { dialogRef = inject((MatDialogRef)); @@ -125,10 +125,10 @@ class DialogOverviewExampleDialog { onNoClick() { this.dialogRef.close(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogOverviewExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.0", type: DialogOverviewExampleDialog, isStandalone: true, selector: "dialog-overview-example-dialog", inputs: { animal: { classPropertyName: "animal", publicName: "animal", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { animal: "animalChange" }, ngImport: i0, template: "

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogOverviewExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: DialogOverviewExampleDialog, isStandalone: true, selector: "dialog-overview-example-dialog", inputs: { animal: { classPropertyName: "animal", publicName: "animal", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { animal: "animalChange" }, ngImport: i0, template: "

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogOverviewExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogOverviewExampleDialog, decorators: [{ type: Component, args: [{ selector: 'dialog-overview-example-dialog', imports: [ MatFormFieldModule, @@ -139,7 +139,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatDialogContent, MatDialogActions, MatDialogClose, - ], template: "

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n" }] + ], template: "

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n" }] }] }); /** @@ -156,20 +156,20 @@ class DialogFromMenuExample { dialogRef.afterClosed().subscribe(() => this.menuTrigger().focus()); // #enddocregion focus-restoration } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogFromMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.0", type: DialogFromMenuExample, isStandalone: true, selector: "dialog-from-menu-example", viewQueries: [{ propertyName: "menuTrigger", first: true, predicate: MatMenuTrigger, descendants: true, isSignal: true }], ngImport: i0, template: "\n\n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2$2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2$2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2$2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogFromMenuExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.0-rc.0", type: DialogFromMenuExample, isStandalone: true, selector: "dialog-from-menu-example", viewQueries: [{ propertyName: "menuTrigger", first: true, predicate: MatMenuTrigger, descendants: true, isSignal: true }], ngImport: i0, template: "\n\n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2$1.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2$1.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2$1.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogFromMenuExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogFromMenuExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-from-menu-example', imports: [MatButtonModule, MatMenuModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n \n\n" }] + args: [{ selector: 'dialog-from-menu-example', imports: [MatButtonModule, MatMenuModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n \n\n" }] }] }); class DialogFromMenuExampleDialog { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogFromMenuExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogFromMenuExampleDialog, isStandalone: true, selector: "dialog-from-menu-dialog", ngImport: i0, template: "\n This is a dialog\n\n\n \n\n", dependencies: [{ kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogFromMenuExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogFromMenuExampleDialog, isStandalone: true, selector: "dialog-from-menu-dialog", ngImport: i0, template: "\n This is a dialog\n\n\n \n\n", dependencies: [{ kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogFromMenuExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogFromMenuExampleDialog, decorators: [{ type: Component, - args: [{ selector: 'dialog-from-menu-dialog', imports: [MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n This is a dialog\n\n\n \n\n" }] + args: [{ selector: 'dialog-from-menu-dialog', imports: [MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n This is a dialog\n\n\n \n\n" }] }] }); /** @@ -181,10 +181,10 @@ class DialogHarnessExample { open(config) { return this.dialog.open(this.dialogTemplate(), config); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.0", type: DialogHarnessExample, isStandalone: true, selector: "dialog-harness-example", viewQueries: [{ propertyName: "dialogTemplate", first: true, predicate: TemplateRef, descendants: true, isSignal: true }], ngImport: i0, template: "\n Hello from the dialog!\n\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.0-rc.0", type: DialogHarnessExample, isStandalone: true, selector: "dialog-harness-example", viewQueries: [{ propertyName: "dialogTemplate", first: true, predicate: TemplateRef, descendants: true, isSignal: true }], ngImport: i0, template: "\n Hello from the dialog!\n\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogHarnessExample, decorators: [{ type: Component, args: [{ selector: 'dialog-harness-example', changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Hello from the dialog!\n\n" }] }] }); @@ -201,26 +201,22 @@ class DialogAnimationsExample { exitAnimationDuration, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogAnimationsExample, isStandalone: true, selector: "dialog-animations-example", ngImport: i0, template: "\n\n", styles: ["button {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogAnimationsExample, isStandalone: true, selector: "dialog-animations-example", ngImport: i0, template: "\n\n", styles: ["button {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogAnimationsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogAnimationsExample, decorators: [{ type: Component, - args: [{ selector: 'dialog-animations-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n", styles: ["button {\n margin-right: 8px;\n}\n"] }] + args: [{ selector: 'dialog-animations-example', imports: [MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n", styles: ["button {\n margin-right: 8px;\n}\n"] }] }] }); class DialogAnimationsExampleDialog { dialogRef = inject((MatDialogRef)); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogAnimationsExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DialogAnimationsExampleDialog, isStandalone: true, selector: "dialog-animations-example-dialog", ngImport: i0, template: "

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogAnimationsExampleDialog, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DialogAnimationsExampleDialog, isStandalone: true, selector: "dialog-animations-example-dialog", ngImport: i0, template: "

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DialogAnimationsExampleDialog, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DialogAnimationsExampleDialog, decorators: [{ type: Component, - args: [{ selector: 'dialog-animations-example-dialog', imports: [MatButtonModule, MatDialogActions, MatDialogClose, MatDialogTitle, MatDialogContent], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n" }] + args: [{ selector: 'dialog-animations-example-dialog', imports: [MatButtonModule, MatDialogActions, MatDialogClose, MatDialogTitle, MatDialogContent], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { DialogAnimationsExample, DialogAnimationsExampleDialog, DialogContentExample, DialogContentExampleDialog, DialogDataExample, DialogDataExampleDialog, DialogElementsExample, DialogElementsExampleDialog, DialogFromMenuExample, DialogFromMenuExampleDialog, DialogHarnessExample, DialogOverviewExample, DialogOverviewExampleDialog }; //# sourceMappingURL=dialog.mjs.map diff --git a/fesm2022/material/dialog.mjs.map b/fesm2022/material/dialog.mjs.map index 1d0c06998d..2a09206a3a 100755 --- a/fesm2022/material/dialog.mjs.map +++ b/fesm2022/material/dialog.mjs.map @@ -1 +1 @@ -{"version":3,"file":"dialog.mjs","sources":["../../../../../../../src/components-examples/material/dialog/dialog-content/dialog-content-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-content/dialog-content-example.html","../../../../../../../src/components-examples/material/dialog/dialog-content/dialog-content-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog-data/dialog-data-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-data/dialog-data-example.html","../../../../../../../src/components-examples/material/dialog/dialog-data/dialog-data-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog-elements/dialog-elements-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-elements/dialog-elements-example.html","../../../../../../../src/components-examples/material/dialog/dialog-elements/dialog-elements-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog-overview/dialog-overview-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-overview/dialog-overview-example.html","../../../../../../../src/components-examples/material/dialog/dialog-overview/dialog-overview-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example.html","../../../../../../../src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog-harness/dialog-harness-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-harness/dialog-harness-example.html","../../../../../../../src/components-examples/material/dialog/dialog-animations/dialog-animations-example.ts","../../../../../../../src/components-examples/material/dialog/dialog-animations/dialog-animations-example.html","../../../../../../../src/components-examples/material/dialog/dialog-animations/dialog-animations-example-dialog.html","../../../../../../../src/components-examples/material/dialog/dialog_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatDialog, MatDialogModule} from '@angular/material/dialog';\n\n/**\n * @title Dialog with header, scrollable content and actions\n */\n@Component({\n selector: 'dialog-content-example',\n templateUrl: 'dialog-content-example.html',\n imports: [MatButtonModule, MatDialogModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogContentExample {\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n const dialogRef = this.dialog.open(DialogContentExampleDialog);\n\n dialogRef.afterClosed().subscribe(result => {\n console.log(`Dialog result: ${result}`);\n });\n }\n}\n\n@Component({\n selector: 'dialog-content-example-dialog',\n templateUrl: 'dialog-content-example-dialog.html',\n imports: [MatDialogModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogContentExampleDialog {}\n","\n","

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n","import {Component, inject} from '@angular/core';\nimport {\n MatDialog,\n MAT_DIALOG_DATA,\n MatDialogTitle,\n MatDialogContent,\n} from '@angular/material/dialog';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface DialogData {\n animal: 'panda' | 'unicorn' | 'lion';\n}\n\n/**\n * @title Injecting data when opening a dialog\n */\n@Component({\n selector: 'dialog-data-example',\n templateUrl: 'dialog-data-example.html',\n imports: [MatButtonModule],\n})\nexport class DialogDataExample {\n dialog = inject(MatDialog);\n\n openDialog() {\n this.dialog.open(DialogDataExampleDialog, {\n data: {\n animal: 'panda',\n },\n });\n }\n}\n\n@Component({\n selector: 'dialog-data-example-dialog',\n templateUrl: 'dialog-data-example-dialog.html',\n imports: [MatDialogTitle, MatDialogContent],\n})\nexport class DialogDataExampleDialog {\n data = inject(MAT_DIALOG_DATA);\n}\n","\n","

    Favorite Animal

    \n\n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\n/**\n * @title Dialog elements\n */\n@Component({\n selector: 'dialog-elements-example',\n templateUrl: 'dialog-elements-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogElementsExample {\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n this.dialog.open(DialogElementsExampleDialog);\n }\n}\n\n@Component({\n selector: 'dialog-elements-example-dialog',\n templateUrl: 'dialog-elements-example-dialog.html',\n imports: [MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogElementsExampleDialog {}\n","\n","

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n","import {ChangeDetectionStrategy, Component, inject, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\nexport interface DialogData {\n animal: string;\n name: string;\n}\n\n/**\n * @title Dialog Overview\n */\n@Component({\n selector: 'dialog-overview-example',\n templateUrl: 'dialog-overview-example.html',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogOverviewExample {\n readonly animal = signal('');\n readonly name = model('');\n readonly dialog = inject(MatDialog);\n\n openDialog(): void {\n const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {\n data: {name: this.name(), animal: this.animal()},\n });\n\n dialogRef.afterClosed().subscribe(result => {\n console.log('The dialog was closed');\n if (result !== undefined) {\n this.animal.set(result);\n }\n });\n }\n}\n\n@Component({\n selector: 'dialog-overview-example-dialog',\n templateUrl: 'dialog-overview-example-dialog.html',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatButtonModule,\n MatDialogTitle,\n MatDialogContent,\n MatDialogActions,\n MatDialogClose,\n ],\n})\nexport class DialogOverviewExampleDialog {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly animal = model(this.data.animal);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n","
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n","

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n","import {ChangeDetectionStrategy, Component, inject, viewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n} from '@angular/material/dialog';\nimport {MatMenuModule, MatMenuTrigger} from '@angular/material/menu';\n/**\n * @title Dialog launched from a menu\n */\n@Component({\n selector: 'dialog-from-menu-example',\n templateUrl: 'dialog-from-menu-example.html',\n imports: [MatButtonModule, MatMenuModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogFromMenuExample {\n readonly menuTrigger = viewChild.required(MatMenuTrigger);\n\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n // #docregion focus-restoration\n const dialogRef = this.dialog.open(DialogFromMenuExampleDialog, {restoreFocus: false});\n\n // Manually restore focus to the menu trigger since the element that\n // opens the dialog won't be in the DOM any more when the dialog closes.\n dialogRef.afterClosed().subscribe(() => this.menuTrigger().focus());\n // #enddocregion focus-restoration\n }\n}\n\n@Component({\n selector: 'dialog-from-menu-dialog',\n templateUrl: 'dialog-from-menu-example-dialog.html',\n imports: [MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogFromMenuExampleDialog {}\n","\n\n \n\n","\n This is a dialog\n\n\n \n\n","import {ChangeDetectionStrategy, Component, TemplateRef, inject, viewChild} from '@angular/core';\nimport {MatDialog, MatDialogConfig} from '@angular/material/dialog';\n\n/**\n * @title Testing with MatDialogHarness\n */\n@Component({\n selector: 'dialog-harness-example',\n templateUrl: 'dialog-harness-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogHarnessExample {\n readonly dialogTemplate = viewChild.required(TemplateRef);\n\n readonly dialog = inject(MatDialog);\n\n open(config?: MatDialogConfig) {\n return this.dialog.open(this.dialogTemplate(), config);\n }\n}\n","\n Hello from the dialog!\n\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\n/**\n * @title Dialog Animations\n */\n@Component({\n selector: 'dialog-animations-example',\n styleUrl: 'dialog-animations-example.css',\n templateUrl: 'dialog-animations-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogAnimationsExample {\n readonly dialog = inject(MatDialog);\n\n openDialog(enterAnimationDuration: string, exitAnimationDuration: string): void {\n this.dialog.open(DialogAnimationsExampleDialog, {\n width: '250px',\n enterAnimationDuration,\n exitAnimationDuration,\n });\n }\n}\n\n@Component({\n selector: 'dialog-animations-example-dialog',\n templateUrl: 'dialog-animations-example-dialog.html',\n imports: [MatButtonModule, MatDialogActions, MatDialogClose, MatDialogTitle, MatDialogContent],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogAnimationsExampleDialog {\n readonly dialogRef = inject(MatDialogRef);\n}\n","\n\n","

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i4","i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"dialog.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-content/dialog-content-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-content/dialog-content-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-content/dialog-content-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-data/dialog-data-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-data/dialog-data-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-data/dialog-data-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-elements/dialog-elements-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-elements/dialog-elements-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-elements/dialog-elements-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-overview/dialog-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-overview/dialog-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-overview/dialog-overview-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-from-menu/dialog-from-menu-example-dialog.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-harness/dialog-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-harness/dialog-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-animations/dialog-animations-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-animations/dialog-animations-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/dialog/dialog-animations/dialog-animations-example-dialog.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatDialog, MatDialogModule} from '@angular/material/dialog';\n\n/**\n * @title Dialog with header, scrollable content and actions\n */\n@Component({\n selector: 'dialog-content-example',\n templateUrl: 'dialog-content-example.html',\n imports: [MatButtonModule, MatDialogModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogContentExample {\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n const dialogRef = this.dialog.open(DialogContentExampleDialog);\n\n dialogRef.afterClosed().subscribe(result => {\n console.log(`Dialog result: ${result}`);\n });\n }\n}\n\n@Component({\n selector: 'dialog-content-example-dialog',\n templateUrl: 'dialog-content-example-dialog.html',\n imports: [MatDialogModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogContentExampleDialog {}\n","\n","

    Install Angular

    \n\n

    Develop across all platforms

    \n

    Learn one way to build applications with Angular and reuse your code and abilities to build\n apps for any deployment target. For web, mobile web, native mobile and native desktop.

    \n\n

    Speed & Performance

    \n

    Achieve the maximum speed possible on the Web Platform today, and take it further, via Web\n Workers and server-side rendering. Angular puts you in control over scalability. Meet huge\n data requirements by building data models on RxJS, Immutable.js or another push-model.

    \n\n

    Incredible tooling

    \n

    Build features quickly with simple, declarative templates. Extend the template language with\n your own components and use a wide array of existing components. Get immediate Angular-specific\n help and feedback with nearly every IDE and editor. All this comes together so you can focus\n on building amazing apps rather than trying to make the code work.

    \n\n

    Loved by millions

    \n

    From prototype through global deployment, Angular delivers the productivity and scalable\n infrastructure that supports Google's largest applications.

    \n\n

    What is Angular?

    \n\n

    Angular is a platform that makes it easy to build applications with the web. Angular\n combines declarative templates, dependency injection, end to end tooling, and integrated\n best practices to solve development challenges. Angular empowers developers to build\n applications that live on the web, mobile, or the desktop

    \n\n

    Architecture overview

    \n\n

    Angular is a platform and framework for building client applications in HTML and TypeScript.\n Angular is itself written in TypeScript. It implements core and optional functionality as a\n set of TypeScript libraries that you import into your apps.

    \n\n

    The basic building blocks of an Angular application are NgModules, which provide a compilation\n context for components. NgModules collect related code into functional sets; an Angular app is\n defined by a set of NgModules. An app always has at least a root module that enables\n bootstrapping, and typically has many more feature modules.

    \n\n

    Components define views, which are sets of screen elements that Angular can choose among and\n modify according to your program logic and data. Every app has at least a root component.

    \n\n

    Components use services, which provide specific functionality not directly related to views.\n Service providers can be injected into components as dependencies, making your code modular,\n reusable, and efficient.

    \n\n

    Both components and services are simply classes, with decorators that mark their type and\n provide metadata that tells Angular how to use them.

    \n\n

    The metadata for a component class associates it with a template that defines a view. A\n template combines ordinary HTML with Angular directives and binding markup that allow Angular\n to modify the HTML before rendering it for display.

    \n\n

    The metadata for a service class provides the information Angular needs to make it available\n to components through Dependency Injection (DI).

    \n\n

    An app's components typically define many views, arranged hierarchically. Angular provides\n the Router service to help you define navigation paths among views. The router provides\n sophisticated in-browser navigational capabilities.

    \n
    \n\n \n \n\n","import {Component, inject} from '@angular/core';\nimport {\n MatDialog,\n MAT_DIALOG_DATA,\n MatDialogTitle,\n MatDialogContent,\n} from '@angular/material/dialog';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface DialogData {\n animal: 'panda' | 'unicorn' | 'lion';\n}\n\n/**\n * @title Injecting data when opening a dialog\n */\n@Component({\n selector: 'dialog-data-example',\n templateUrl: 'dialog-data-example.html',\n imports: [MatButtonModule],\n})\nexport class DialogDataExample {\n dialog = inject(MatDialog);\n\n openDialog() {\n this.dialog.open(DialogDataExampleDialog, {\n data: {\n animal: 'panda',\n },\n });\n }\n}\n\n@Component({\n selector: 'dialog-data-example-dialog',\n templateUrl: 'dialog-data-example-dialog.html',\n imports: [MatDialogTitle, MatDialogContent],\n})\nexport class DialogDataExampleDialog {\n data = inject(MAT_DIALOG_DATA);\n}\n","\n","

    Favorite Animal

    \n\n My favorite animal is:\n
      \n
    • \n @if (data.animal === 'panda') {\n \n } Panda\n
    • \n
    • \n @if (data.animal === 'unicorn') {\n \n } Unicorn\n
    • \n
    • \n @if (data.animal === 'lion') {\n \n } Lion\n
    • \n
    \n
    \n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\n/**\n * @title Dialog elements\n */\n@Component({\n selector: 'dialog-elements-example',\n templateUrl: 'dialog-elements-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogElementsExample {\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n this.dialog.open(DialogElementsExampleDialog);\n }\n}\n\n@Component({\n selector: 'dialog-elements-example-dialog',\n templateUrl: 'dialog-elements-example-dialog.html',\n imports: [MatDialogTitle, MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogElementsExampleDialog {}\n","\n","

    Dialog with elements

    \nThis dialog showcases the title, close, content and actions elements.\n\n \n\n","import {ChangeDetectionStrategy, Component, inject, model, signal} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MAT_DIALOG_DATA,\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\nexport interface DialogData {\n animal: string;\n name: string;\n}\n\n/**\n * @title Dialog Overview\n */\n@Component({\n selector: 'dialog-overview-example',\n templateUrl: 'dialog-overview-example.html',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogOverviewExample {\n readonly animal = signal('');\n readonly name = model('');\n readonly dialog = inject(MatDialog);\n\n openDialog(): void {\n const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {\n data: {name: this.name(), animal: this.animal()},\n });\n\n dialogRef.afterClosed().subscribe(result => {\n console.log('The dialog was closed');\n if (result !== undefined) {\n this.animal.set(result);\n }\n });\n }\n}\n\n@Component({\n selector: 'dialog-overview-example-dialog',\n templateUrl: 'dialog-overview-example-dialog.html',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatButtonModule,\n MatDialogTitle,\n MatDialogContent,\n MatDialogActions,\n MatDialogClose,\n ],\n})\nexport class DialogOverviewExampleDialog {\n readonly dialogRef = inject(MatDialogRef);\n readonly data = inject(MAT_DIALOG_DATA);\n readonly animal = model(this.data.animal);\n\n onNoClick(): void {\n this.dialogRef.close();\n }\n}\n","
      \n
    1. \n \n What's your name?\n \n \n
    2. \n
    3. \n \n
    4. \n @if (animal()) {\n
    5. \n You chose: {{animal()}}\n
    6. \n }\n
    \n","

    Hi {{data.name}}

    \n\n

    What's your favorite animal?

    \n \n Favorite Animal\n \n \n
    \n\n \n \n\n","import {ChangeDetectionStrategy, Component, inject, viewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n} from '@angular/material/dialog';\nimport {MatMenuModule, MatMenuTrigger} from '@angular/material/menu';\n/**\n * @title Dialog launched from a menu\n */\n@Component({\n selector: 'dialog-from-menu-example',\n templateUrl: 'dialog-from-menu-example.html',\n imports: [MatButtonModule, MatMenuModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogFromMenuExample {\n readonly menuTrigger = viewChild.required(MatMenuTrigger);\n\n readonly dialog = inject(MatDialog);\n\n openDialog() {\n // #docregion focus-restoration\n const dialogRef = this.dialog.open(DialogFromMenuExampleDialog, {restoreFocus: false});\n\n // Manually restore focus to the menu trigger since the element that\n // opens the dialog won't be in the DOM any more when the dialog closes.\n dialogRef.afterClosed().subscribe(() => this.menuTrigger().focus());\n // #enddocregion focus-restoration\n }\n}\n\n@Component({\n selector: 'dialog-from-menu-dialog',\n templateUrl: 'dialog-from-menu-example-dialog.html',\n imports: [MatDialogContent, MatDialogActions, MatDialogClose, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogFromMenuExampleDialog {}\n","\n\n \n\n","\n This is a dialog\n\n\n \n\n","import {ChangeDetectionStrategy, Component, TemplateRef, inject, viewChild} from '@angular/core';\nimport {MatDialog, MatDialogConfig} from '@angular/material/dialog';\n\n/**\n * @title Testing with MatDialogHarness\n */\n@Component({\n selector: 'dialog-harness-example',\n templateUrl: 'dialog-harness-example.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogHarnessExample {\n readonly dialogTemplate = viewChild.required(TemplateRef);\n\n readonly dialog = inject(MatDialog);\n\n open(config?: MatDialogConfig) {\n return this.dialog.open(this.dialogTemplate(), config);\n }\n}\n","\n Hello from the dialog!\n\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatDialog,\n MatDialogActions,\n MatDialogClose,\n MatDialogContent,\n MatDialogRef,\n MatDialogTitle,\n} from '@angular/material/dialog';\n\n/**\n * @title Dialog Animations\n */\n@Component({\n selector: 'dialog-animations-example',\n styleUrl: 'dialog-animations-example.css',\n templateUrl: 'dialog-animations-example.html',\n imports: [MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogAnimationsExample {\n readonly dialog = inject(MatDialog);\n\n openDialog(enterAnimationDuration: string, exitAnimationDuration: string): void {\n this.dialog.open(DialogAnimationsExampleDialog, {\n width: '250px',\n enterAnimationDuration,\n exitAnimationDuration,\n });\n }\n}\n\n@Component({\n selector: 'dialog-animations-example-dialog',\n templateUrl: 'dialog-animations-example-dialog.html',\n imports: [MatButtonModule, MatDialogActions, MatDialogClose, MatDialogTitle, MatDialogContent],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DialogAnimationsExampleDialog {\n readonly dialogRef = inject(MatDialogRef);\n}\n","\n\n","

    Delete file

    \n\n Would you like to delete cat.jpeg?\n\n\n \n \n\n"],"names":["i3","i4","i1","i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/divider.mjs b/fesm2022/material/divider.mjs index e03647e910..ada4b0031b 100755 --- a/fesm2022/material/divider.mjs +++ b/fesm2022/material/divider.mjs @@ -1,6 +1,5 @@ import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy } from '@angular/core'; -import * as i2 from '@angular/material/divider'; import { MatDividerModule } from '@angular/material/divider'; import * as i1 from '@angular/material/list'; import { MatListModule } from '@angular/material/list'; @@ -9,10 +8,10 @@ import { MatListModule } from '@angular/material/list'; * @title Basic divider */ class DividerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DividerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DividerOverviewExample, isStandalone: true, selector: "divider-overview-example", ngImport: i0, template: "\n Item 1\n \n Item 2\n \n Item 3\n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "component", type: i2.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "ngmodule", type: MatDividerModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DividerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DividerOverviewExample, isStandalone: true, selector: "divider-overview-example", ngImport: i0, template: "\n Item 1\n \n Item 2\n \n Item 3\n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "component", type: i1.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "ngmodule", type: MatDividerModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DividerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DividerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'divider-overview-example', imports: [MatListModule, MatDividerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Item 1\n \n Item 2\n \n Item 3\n\n" }] }] }); @@ -21,17 +20,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatDividerHarness */ class DividerHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DividerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: DividerHarnessExample, isStandalone: true, selector: "divider-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i2.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DividerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: DividerHarnessExample, isStandalone: true, selector: "divider-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatDividerModule }, { kind: "component", type: i1.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DividerHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DividerHarnessExample, decorators: [{ type: Component, args: [{ selector: 'divider-harness-example', imports: [MatDividerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { DividerHarnessExample, DividerOverviewExample }; //# sourceMappingURL=divider.mjs.map diff --git a/fesm2022/material/divider.mjs.map b/fesm2022/material/divider.mjs.map index 2e3e36d8d1..cadbf86a28 100755 --- a/fesm2022/material/divider.mjs.map +++ b/fesm2022/material/divider.mjs.map @@ -1 +1 @@ -{"version":3,"file":"divider.mjs","sources":["../../../../../../../src/components-examples/material/divider/divider-overview/divider-overview-example.ts","../../../../../../../src/components-examples/material/divider/divider-overview/divider-overview-example.html","../../../../../../../src/components-examples/material/divider/divider-harness/divider-harness-example.ts","../../../../../../../src/components-examples/material/divider/divider-harness/divider-harness-example.html","../../../../../../../src/components-examples/material/divider/divider_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Basic divider\n */\n@Component({\n selector: 'divider-overview-example',\n templateUrl: 'divider-overview-example.html',\n imports: [MatListModule, MatDividerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DividerOverviewExample {}\n","\n Item 1\n \n Item 2\n \n Item 3\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\n\n/**\n * @title Testing with MatDividerHarness\n */\n@Component({\n selector: 'divider-harness-example',\n templateUrl: 'divider-harness-example.html',\n imports: [MatDividerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DividerHarnessExample {}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":";;;;;;;AAIA;;AAEG;MAOU,sBAAsB,CAAA;uGAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,ECbnC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,oNAOA,EDGY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,aAAa,2XAAE,gBAAgB,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;;2FAG9B,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAE3B,CAAC,aAAa,EAAE,gBAAgB,CAAC,EAAA,eAAA,EACzB,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,oNAAA,EAAA,CAAA;;;AERjD;;AAEG;MAOU,qBAAqB,CAAA;uGAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZlC,2EAEA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDOY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,OAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA,CAAA;;2FAGf,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,yBAAyB,WAE1B,CAAC,gBAAgB,CAAC,EACV,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,2EAAA,EAAA,CAAA;;;AEVjD;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"divider.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/divider/divider-overview/divider-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/divider/divider-overview/divider-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/divider/divider-harness/divider-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/divider/divider-harness/divider-harness-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Basic divider\n */\n@Component({\n selector: 'divider-overview-example',\n templateUrl: 'divider-overview-example.html',\n imports: [MatListModule, MatDividerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DividerOverviewExample {}\n","\n Item 1\n \n Item 2\n \n Item 3\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\n\n/**\n * @title Testing with MatDividerHarness\n */\n@Component({\n selector: 'divider-harness-example',\n templateUrl: 'divider-harness-example.html',\n imports: [MatDividerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DividerHarnessExample {}\n","\n\n"],"names":[],"mappings":";;;;;;AAIA;;AAEG;MAOU,sBAAsB,CAAA;4GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,sBAAsB,ECbnC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,oNAOA,EDGY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,aAAa,2XAAE,gBAAgB,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;gGAG9B,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAE3B,CAAC,aAAa,EAAE,gBAAgB,CAAC,EAAA,eAAA,EACzB,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,oNAAA,EAAA;;;AERjD;;AAEG;MAOU,qBAAqB,CAAA;4GAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZlC,2EAEA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDOY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,OAAA,CAAA,EAAA,CAAA,EAAA,eAAA,EAAA,EAAA,CAAA,uBAAA,CAAA,MAAA,EAAA,CAAA;;gGAGf,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,yBAAyB,WAE1B,CAAC,gBAAgB,CAAC,EACV,eAAA,EAAA,uBAAuB,CAAC,MAAM,EAAA,QAAA,EAAA,2EAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/material/expansion.mjs b/fesm2022/material/expansion.mjs index b6c87089bb..4bca489c89 100755 --- a/fesm2022/material/expansion.mjs +++ b/fesm2022/material/expansion.mjs @@ -3,15 +3,15 @@ import { viewChild, Component, ChangeDetectionStrategy, signal } from '@angular/ import * as i1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import { provideNativeDateAdapter } from '@angular/material/core'; -import * as i6 from '@angular/material/datepicker'; +import * as i3$1 from '@angular/material/datepicker'; import { MatDatepickerModule } from '@angular/material/datepicker'; import * as i1$1 from '@angular/material/expansion'; import { MatAccordion, MatExpansionModule } from '@angular/material/expansion'; -import * as i4 from '@angular/material/form-field'; +import * as i1$2 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i5 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; /** @@ -19,10 +19,10 @@ import { MatInputModule } from '@angular/material/input'; */ class ExpansionExpandCollapseAllExample { accordion = viewChild.required(MatAccordion); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionExpandCollapseAllExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.0", type: ExpansionExpandCollapseAllExample, isStandalone: true, selector: "expansion-expand-collapse-all-example", providers: [provideNativeDateAdapter()], viewQueries: [{ propertyName: "accordion", first: true, predicate: MatAccordion, descendants: true, isSignal: true }], ngImport: i0, template: "
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n", styles: [".example-action-buttons {\n padding-bottom: 20px;\n}\n\n.example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionExpandCollapseAllExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.0-rc.0", type: ExpansionExpandCollapseAllExample, isStandalone: true, selector: "expansion-expand-collapse-all-example", providers: [provideNativeDateAdapter()], viewQueries: [{ propertyName: "accordion", first: true, predicate: MatAccordion, descendants: true, isSignal: true }], ngImport: i0, template: "
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n", styles: [".example-action-buttons {\n padding-bottom: 20px;\n}\n\n.example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3$1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3$1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionExpandCollapseAllExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionExpandCollapseAllExample, decorators: [{ type: Component, args: [{ selector: 'expansion-expand-collapse-all-example', providers: [provideNativeDateAdapter()], imports: [ MatButtonModule, @@ -31,7 +31,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatDatepickerModule, - ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n", styles: [".example-action-buttons {\n padding-bottom: 20px;\n}\n\n.example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"] }] + ], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n", styles: [".example-action-buttons {\n padding-bottom: 20px;\n}\n\n.example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"] }] }] }); /** @@ -39,10 +39,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ExpansionOverviewExample { panelOpenState = signal(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ExpansionOverviewExample, isStandalone: true, selector: "expansion-overview-example", ngImport: i0, template: "\n \n \n \n \n \n This is the expansion title \n This is a summary of the content \n \n

    This is the primary content of the panel.

    \n
    \n \n \n \n Self aware panel \n \n Currently I am {{panelOpenState() ? 'open' : 'closed'}}\n \n \n

    I'm visible because I am open

    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ExpansionOverviewExample, isStandalone: true, selector: "expansion-overview-example", ngImport: i0, template: "\n \n \n \n \n \n This is the expansion title \n This is a summary of the content \n \n

    This is the primary content of the panel.

    \n
    \n \n \n \n Self aware panel \n \n Currently I am {{panelOpenState() ? 'open' : 'closed'}}\n \n \n

    I'm visible because I am open

    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionOverviewExample, decorators: [{ type: Component, args: [{ selector: 'expansion-overview-example', imports: [MatExpansionModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n \n This is the expansion title \n This is a summary of the content \n \n

    This is the primary content of the panel.

    \n
    \n \n \n \n Self aware panel \n \n Currently I am {{panelOpenState() ? 'open' : 'closed'}}\n \n \n

    I'm visible because I am open

    \n
    \n
    \n" }] }] }); @@ -61,10 +61,10 @@ class ExpansionStepsExample { prevStep() { this.step.update(i => i - 1); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionStepsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ExpansionStepsExample, isStandalone: true, selector: "expansion-steps-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n", styles: [".example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "directive", type: i1$1.MatExpansionPanelActionRow, selector: "mat-action-row" }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i6.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i6.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionStepsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ExpansionStepsExample, isStandalone: true, selector: "expansion-steps-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n", styles: [".example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "directive", type: i1$1.MatExpansionPanelActionRow, selector: "mat-action-row" }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "directive", type: i1$1.MatExpansionPanelDescription, selector: "mat-panel-description" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3$1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3$1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionStepsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionStepsExample, decorators: [{ type: Component, args: [{ selector: 'expansion-steps-example', providers: [provideNativeDateAdapter()], imports: [ MatExpansionModule, @@ -73,24 +73,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatInputModule, MatButtonModule, MatDatepickerModule, - ], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n", styles: [".example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"] }] + ], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n", styles: [".example-headers-align .mat-expansion-panel-header-description {\n justify-content: space-between;\n align-items: center;\n}\n\n.example-headers-align .mat-mdc-form-field + .mat-mdc-form-field {\n margin-left: 8px;\n}\n"] }] }] }); /** * @title Testing with MatExpansionPanelHarness and MatAccordionHarness */ class ExpansionHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ExpansionHarnessExample, isStandalone: true, selector: "expansion-harness-example", ngImport: i0, template: "\n \n \n \n Welcome\n \n \n

    I am the content!

    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ExpansionHarnessExample, isStandalone: true, selector: "expansion-harness-example", ngImport: i0, template: "\n \n \n \n Welcome\n \n \n

    I am the content!

    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatExpansionModule }, { kind: "directive", type: i1$1.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i1$1.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "component", type: i1$1.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i1$1.MatExpansionPanelTitle, selector: "mat-panel-title" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ExpansionHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ExpansionHarnessExample, decorators: [{ type: Component, args: [{ selector: 'expansion-harness-example', imports: [MatExpansionModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n Welcome\n \n \n

    I am the content!

    \n
    \n
    \n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ExpansionExpandCollapseAllExample, ExpansionHarnessExample, ExpansionOverviewExample, ExpansionStepsExample }; //# sourceMappingURL=expansion.mjs.map diff --git a/fesm2022/material/expansion.mjs.map b/fesm2022/material/expansion.mjs.map index 5fec5a9866..0f91e3335e 100755 --- a/fesm2022/material/expansion.mjs.map +++ b/fesm2022/material/expansion.mjs.map @@ -1 +1 @@ -{"version":3,"file":"expansion.mjs","sources":["../../../../../../../src/components-examples/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.ts","../../../../../../../src/components-examples/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html","../../../../../../../src/components-examples/material/expansion/expansion-overview/expansion-overview-example.ts","../../../../../../../src/components-examples/material/expansion/expansion-overview/expansion-overview-example.html","../../../../../../../src/components-examples/material/expansion/expansion-steps/expansion-steps-example.ts","../../../../../../../src/components-examples/material/expansion/expansion-steps/expansion-steps-example.html","../../../../../../../src/components-examples/material/expansion/expansion-harness/expansion-harness-example.ts","../../../../../../../src/components-examples/material/expansion/expansion-harness/expansion-harness-example.html","../../../../../../../src/components-examples/material/expansion/expansion_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component, viewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatAccordion, MatExpansionModule} from '@angular/material/expansion';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Accordion with expand/collapse all toggles\n */\n@Component({\n selector: 'expansion-expand-collapse-all-example',\n templateUrl: 'expansion-expand-collapse-all-example.html',\n styleUrl: 'expansion-expand-collapse-all-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatButtonModule,\n MatExpansionModule,\n MatIconModule,\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionExpandCollapseAllExample {\n accordion = viewChild.required(MatAccordion);\n}\n","
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatExpansionModule} from '@angular/material/expansion';\n\n/**\n * @title Basic expansion panel\n */\n@Component({\n selector: 'expansion-overview-example',\n templateUrl: 'expansion-overview-example.html',\n imports: [MatExpansionModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionOverviewExample {\n readonly panelOpenState = signal(false);\n}\n","\n \n \n \n \n \n This is the expansion title \n This is a summary of the content \n \n

    This is the primary content of the panel.

    \n
    \n \n \n \n Self aware panel \n \n Currently I am {{panelOpenState() ? 'open' : 'closed'}}\n \n \n

    I'm visible because I am open

    \n
    \n
    \n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatExpansionModule} from '@angular/material/expansion';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Expansion panel as accordion\n */\n@Component({\n selector: 'expansion-steps-example',\n templateUrl: 'expansion-steps-example.html',\n styleUrl: 'expansion-steps-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatExpansionModule,\n MatIconModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatDatepickerModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionStepsExample {\n step = signal(0);\n\n setStep(index: number) {\n this.step.set(index);\n }\n\n nextStep() {\n this.step.update(i => i + 1);\n }\n\n prevStep() {\n this.step.update(i => i - 1);\n }\n}\n","\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatExpansionModule} from '@angular/material/expansion';\n\n/**\n * @title Testing with MatExpansionPanelHarness and MatAccordionHarness\n */\n@Component({\n selector: 'expansion-harness-example',\n templateUrl: 'expansion-harness-example.html',\n imports: [MatExpansionModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionHarnessExample {}\n","\n \n \n \n Welcome\n \n \n

    I am the content!

    \n
    \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i3","i4"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"expansion.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-expand-collapse-all/expansion-expand-collapse-all-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-overview/expansion-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-overview/expansion-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-steps/expansion-steps-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-steps/expansion-steps-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-harness/expansion-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/expansion/expansion-harness/expansion-harness-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component, viewChild} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatAccordion, MatExpansionModule} from '@angular/material/expansion';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Accordion with expand/collapse all toggles\n */\n@Component({\n selector: 'expansion-expand-collapse-all-example',\n templateUrl: 'expansion-expand-collapse-all-example.html',\n styleUrl: 'expansion-expand-collapse-all-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatButtonModule,\n MatExpansionModule,\n MatIconModule,\n MatFormFieldModule,\n MatInputModule,\n MatDatepickerModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionExpandCollapseAllExample {\n accordion = viewChild.required(MatAccordion);\n}\n","
    \n \n \n
    \n\n\n \n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatExpansionModule} from '@angular/material/expansion';\n\n/**\n * @title Basic expansion panel\n */\n@Component({\n selector: 'expansion-overview-example',\n templateUrl: 'expansion-overview-example.html',\n imports: [MatExpansionModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionOverviewExample {\n readonly panelOpenState = signal(false);\n}\n","\n \n \n \n \n \n This is the expansion title \n This is a summary of the content \n \n

    This is the primary content of the panel.

    \n
    \n \n \n \n Self aware panel \n \n Currently I am {{panelOpenState() ? 'open' : 'closed'}}\n \n \n

    I'm visible because I am open

    \n
    \n
    \n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\nimport {MatExpansionModule} from '@angular/material/expansion';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Expansion panel as accordion\n */\n@Component({\n selector: 'expansion-steps-example',\n templateUrl: 'expansion-steps-example.html',\n styleUrl: 'expansion-steps-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatExpansionModule,\n MatIconModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatDatepickerModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionStepsExample {\n step = signal(0);\n\n setStep(index: number) {\n this.step.set(index);\n }\n\n nextStep() {\n this.step.update(i => i + 1);\n }\n\n prevStep() {\n this.step.update(i => i - 1);\n }\n}\n","\n \n \n Personal data \n \n Type your name and age\n account_circle\n \n \n\n \n First name\n \n \n\n \n Age\n \n \n \n \n \n \n \n \n\n \n \n Destination \n \n Type the country name\n map\n \n \n\n \n Country\n \n \n\n \n \n \n \n \n\n \n \n Day of the trip \n \n Inform the date you wish to travel\n date_range\n \n \n\n \n Date\n \n \n \n\n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatExpansionModule} from '@angular/material/expansion';\n\n/**\n * @title Testing with MatExpansionPanelHarness and MatAccordionHarness\n */\n@Component({\n selector: 'expansion-harness-example',\n templateUrl: 'expansion-harness-example.html',\n imports: [MatExpansionModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ExpansionHarnessExample {}\n","\n \n \n \n Welcome\n \n \n

    I am the content!

    \n
    \n
    \n"],"names":["i4","i6","i1","i3"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/form-field.mjs b/fesm2022/material/form-field.mjs index 4e85308c1d..59f201c41b 100755 --- a/fesm2022/material/form-field.mjs +++ b/fesm2022/material/form-field.mjs @@ -9,26 +9,25 @@ import { MatInputModule } from '@angular/material/input'; import { FocusMonitor } from '@angular/cdk/a11y'; import { AsyncPipe, JsonPipe } from '@angular/common'; import { takeUntilDestroyed, toSignal } from '@angular/core/rxjs-interop'; -import * as i1$1 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormGroup, FormControl, FormsModule, ReactiveFormsModule, NgControl, FormBuilder, Validators } from '@angular/forms'; import { Subject, merge } from 'rxjs'; -import * as i3$1 from '@angular/material/select'; +import * as i2$1 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; -import * as i4 from '@angular/material/core'; -import * as i2$1 from '@angular/material/checkbox'; +import * as i2$2 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i3$2 from '@angular/material/radio'; +import * as i1$1 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import { map } from 'rxjs/operators'; -import * as i3$3 from '@angular/material/button'; +import * as i1$2 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; /** @title Form field appearance variants */ class FormFieldAppearanceExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldAppearanceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldAppearanceExample, isStandalone: true, selector: "form-field-appearance-example", ngImport: i0, template: "

    \n \n Fill form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n

    \n \n Outline form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldAppearanceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldAppearanceExample, isStandalone: true, selector: "form-field-appearance-example", ngImport: i0, template: "

    \n \n Fill form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n

    \n \n Outline form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldAppearanceExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldAppearanceExample, decorators: [{ type: Component, args: [{ selector: 'form-field-appearance-example', imports: [MatFormFieldModule, MatInputModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    \n \n Fill form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n

    \n \n Outline form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n" }] }] }); @@ -38,10 +37,10 @@ class FormFieldCustomControlExample { form = new FormGroup({ tel: new FormControl(null), }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldCustomControlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldCustomControlExample, isStandalone: true, selector: "form-field-custom-control-example", ngImport: i0, template: "
    \n \n Phone number\n \n phone\n Include area code\n \n

    Entered value: {{form.valueChanges | async | json}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: i0.forwardRef(() => FormsModule) }, { kind: "directive", type: i0.forwardRef(() => i1$1.NgControlStatus), selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i0.forwardRef(() => i1$1.NgControlStatusGroup), selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i0.forwardRef(() => i1$1.RequiredValidator), selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: i0.forwardRef(() => ReactiveFormsModule) }, { kind: "directive", type: i0.forwardRef(() => i1$1.FormGroupDirective), selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i0.forwardRef(() => i1$1.FormControlName), selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatFormFieldModule) }, { kind: "component", type: i0.forwardRef(() => i1.MatFormField), selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatLabel), selector: "mat-label" }, { kind: "directive", type: i0.forwardRef(() => i1.MatHint), selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatSuffix), selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i0.forwardRef(() => MyTelInput), selector: "example-tel-input", inputs: ["aria-describedby", "placeholder", "required", "disabled", "value"], outputs: ["valueChange"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatIconModule) }, { kind: "component", type: i0.forwardRef(() => i3.MatIcon), selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i0.forwardRef(() => AsyncPipe), name: "async" }, { kind: "pipe", type: i0.forwardRef(() => JsonPipe), name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldCustomControlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldCustomControlExample, isStandalone: true, selector: "form-field-custom-control-example", ngImport: i0, template: "
    \n \n Phone number\n \n phone\n Include area code\n \n

    Entered value: {{form.valueChanges | async | json}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: i0.forwardRef(() => FormsModule) }, { kind: "directive", type: i0.forwardRef(() => i3$1.NgControlStatus), selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i0.forwardRef(() => i3$1.NgControlStatusGroup), selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i0.forwardRef(() => i3$1.RequiredValidator), selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: i0.forwardRef(() => ReactiveFormsModule) }, { kind: "directive", type: i0.forwardRef(() => i3$1.FormGroupDirective), selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i0.forwardRef(() => i3$1.FormControlName), selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatFormFieldModule) }, { kind: "component", type: i0.forwardRef(() => i1.MatFormField), selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatLabel), selector: "mat-label" }, { kind: "directive", type: i0.forwardRef(() => i1.MatHint), selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i0.forwardRef(() => i1.MatSuffix), selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "component", type: i0.forwardRef(() => MyTelInput), selector: "example-tel-input", inputs: ["aria-describedby", "placeholder", "required", "disabled", "value"], outputs: ["valueChange"] }, { kind: "ngmodule", type: i0.forwardRef(() => MatIconModule) }, { kind: "component", type: i0.forwardRef(() => i3.MatIcon), selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i0.forwardRef(() => AsyncPipe), name: "async" }, { kind: "pipe", type: i0.forwardRef(() => JsonPipe), name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldCustomControlExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldCustomControlExample, decorators: [{ type: Component, args: [{ selector: 'form-field-custom-control-example', imports: [ FormsModule, @@ -235,10 +234,10 @@ class MyTelInput { } this._value.set(tel); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MyTelInput, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "19.2.0", type: MyTelInput, isStandalone: true, selector: "example-tel-input", inputs: { _userAriaDescribedBy: { classPropertyName: "_userAriaDescribedBy", publicName: "aria-describedby", isSignal: true, isRequired: false, transformFunction: null }, _placeholder: { classPropertyName: "_placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, _required: { classPropertyName: "_required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, _disabledByInput: { classPropertyName: "_disabledByInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, _value: { classPropertyName: "_value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { _value: "valueChange" }, host: { properties: { "class.example-floating": "shouldLabelFloat", "id": "id" } }, providers: [{ provide: MatFormFieldControl, useExisting: MyTelInput }], viewQueries: [{ propertyName: "areaInput", first: true, predicate: ["area"], descendants: true, isSignal: true }, { propertyName: "exchangeInput", first: true, predicate: ["exchange"], descendants: true, isSignal: true }, { propertyName: "subscriberInput", first: true, predicate: ["subscriber"], descendants: true, isSignal: true }], ngImport: i0, template: "\n \n \n \n \n \n\n", styles: [".example-tel-input-container {\n display: flex;\n}\n\n.example-tel-input-element {\n border: none;\n background: none;\n padding: 0;\n outline: none;\n font: inherit;\n text-align: center;\n color: currentcolor;\n}\n\n.example-tel-input-spacer {\n opacity: 0;\n transition: opacity 200ms;\n}\n\n:host.example-floating .example-tel-input-spacer {\n opacity: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MyTelInput, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.0.0-rc.0", type: MyTelInput, isStandalone: true, selector: "example-tel-input", inputs: { _userAriaDescribedBy: { classPropertyName: "_userAriaDescribedBy", publicName: "aria-describedby", isSignal: true, isRequired: false, transformFunction: null }, _placeholder: { classPropertyName: "_placeholder", publicName: "placeholder", isSignal: true, isRequired: false, transformFunction: null }, _required: { classPropertyName: "_required", publicName: "required", isSignal: true, isRequired: false, transformFunction: null }, _disabledByInput: { classPropertyName: "_disabledByInput", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, _value: { classPropertyName: "_value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { _value: "valueChange" }, host: { properties: { "class.example-floating": "shouldLabelFloat", "id": "id" } }, providers: [{ provide: MatFormFieldControl, useExisting: MyTelInput }], viewQueries: [{ propertyName: "areaInput", first: true, predicate: ["area"], descendants: true, isSignal: true }, { propertyName: "exchangeInput", first: true, predicate: ["exchange"], descendants: true, isSignal: true }, { propertyName: "subscriberInput", first: true, predicate: ["subscriber"], descendants: true, isSignal: true }], ngImport: i0, template: "\n \n \n \n \n \n\n", styles: [".example-tel-input-container {\n display: flex;\n}\n\n.example-tel-input-element {\n border: none;\n background: none;\n padding: 0;\n outline: none;\n font: inherit;\n text-align: center;\n color: currentcolor;\n}\n\n.example-tel-input-spacer {\n opacity: 0;\n transition: opacity 200ms;\n}\n\n:host.example-floating .example-tel-input-spacer {\n opacity: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MyTelInput, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MyTelInput, decorators: [{ type: Component, args: [{ selector: 'example-tel-input', providers: [{ provide: MatFormFieldControl, useExisting: MyTelInput }], host: { '[class.example-floating]': 'shouldLabelFloat', @@ -266,10 +265,10 @@ class FormFieldErrorExample { this.errorMessage.set(''); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldErrorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: FormFieldErrorExample, isStandalone: true, selector: "form-field-error-example", ngImport: i0, template: "
    \n \n Enter your email\n \n @if (email.invalid) {\n {{errorMessage()}}\n }\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldErrorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: FormFieldErrorExample, isStandalone: true, selector: "form-field-error-example", ngImport: i0, template: "
    \n \n Enter your email\n \n @if (email.invalid) {\n {{errorMessage()}}\n }\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldErrorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldErrorExample, decorators: [{ type: Component, args: [{ selector: 'form-field-error-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Enter your email\n \n @if (email.invalid) {\n {{errorMessage()}}\n }\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"] }] }], ctorParameters: () => [] }); @@ -279,10 +278,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class FormFieldHarnessExample { requiredControl = new FormControl('Initial value', [Validators.required]); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldHarnessExample, isStandalone: true, selector: "form-field-harness-example", ngImport: i0, template: "\n Custom control harness\n \n\n Error\n Hint\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldHarnessExample, isStandalone: true, selector: "form-field-harness-example", ngImport: i0, template: "\n Custom control harness\n \n\n Error\n Hint\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldHarnessExample, decorators: [{ type: Component, args: [{ selector: 'form-field-harness-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Custom control harness\n \n\n Error\n Hint\n\n" }] }] }); @@ -293,10 +292,10 @@ class FormFieldHintExample { onInput(event) { this.value.set(event.target.value); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldHintExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldHintExample, isStandalone: true, selector: "form-field-hint-example", ngImport: i0, template: "
    \n \n Enter some input\n \n {{value().length}}/10\n \n\n \n Select me\n \n Option\n \n Here's the dropdown arrow ^\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldHintExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldHintExample, isStandalone: true, selector: "form-field-hint-example", ngImport: i0, template: "
    \n \n Enter some input\n \n {{value().length}}/10\n \n\n \n Select me\n \n Option\n \n Here's the dropdown arrow ^\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldHintExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldHintExample, decorators: [{ type: Component, args: [{ selector: 'form-field-hint-example', imports: [MatFormFieldModule, MatInputModule, MatSelectModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Enter some input\n \n {{value().length}}/10\n \n\n \n Select me\n \n Option\n \n Here's the dropdown arrow ^\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n"] }] }] }); @@ -311,10 +310,10 @@ class FormFieldLabelExample { }); hideRequired = toSignal(this.hideRequiredControl.valueChanges); floatLabel = toSignal(this.floatLabelControl.valueChanges.pipe(map(v => v || 'auto')), { initialValue: 'auto' }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldLabelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldLabelExample, isStandalone: true, selector: "form-field-label-example", ngImport: i0, template: "
    \n
    \n Hide required marker\n
    \n \n \n Auto\n Always\n \n
    \n\n
    \n \n \n \n\n \n Both a label and a placeholder\n \n \n\n \n \n -- None --\n Option\n \n favorite Fancy label\n \n
    \n
    \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-container mat-form-field {\n width: 220px;\n}\n\n.example-container form {\n margin-bottom: 20px;\n}\n\n.example-container form > * {\n margin: 12px 0;\n}\n\n.example-container .mat-radio-button {\n margin: 0 12px;\n}\n\n.example-form-fields {\n display: flex;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i3$2.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i3$2.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldLabelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldLabelExample, isStandalone: true, selector: "form-field-label-example", ngImport: i0, template: "
    \n
    \n Hide required marker\n
    \n \n \n Auto\n Always\n \n
    \n\n
    \n \n \n \n\n \n Both a label and a placeholder\n \n \n\n \n \n -- None --\n Option\n \n favorite Fancy label\n \n
    \n
    \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-container mat-form-field {\n width: 220px;\n}\n\n.example-container form {\n margin-bottom: 20px;\n}\n\n.example-container form > * {\n margin: 12px 0;\n}\n\n.example-container .mat-radio-button {\n margin: 0 12px;\n}\n\n.example-form-fields {\n display: flex;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldLabelExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldLabelExample, decorators: [{ type: Component, args: [{ selector: 'form-field-label-example', imports: [ FormsModule, @@ -330,10 +329,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Simple form field */ class FormFieldOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldOverviewExample, isStandalone: true, selector: "form-field-overview-example", ngImport: i0, template: "\n Input\n \n\n\n Select\n \n First option\n Second option\n \n\n\n Textarea\n \n\n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldOverviewExample, isStandalone: true, selector: "form-field-overview-example", ngImport: i0, template: "\n Input\n \n\n\n Select\n \n First option\n Second option\n \n\n\n Textarea\n \n\n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldOverviewExample, decorators: [{ type: Component, args: [{ selector: 'form-field-overview-example', imports: [MatFormFieldModule, MatInputModule, MatSelectModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Input\n \n\n\n Select\n \n First option\n Second option\n \n\n\n Textarea\n \n\n", styles: [":host {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"] }] }] }); @@ -345,17 +344,13 @@ class FormFieldPrefixSuffixExample { this.hide.set(!this.hide()); event.stopPropagation(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldPrefixSuffixExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: FormFieldPrefixSuffixExample, isStandalone: true, selector: "form-field-prefix-suffix-example", ngImport: i0, template: "
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-right-align {\n text-align: right;\n}\n\ninput.example-right-align::-webkit-outer-spin-button,\ninput.example-right-align::-webkit-inner-spin-button {\n display: none;\n}\n\ninput.example-right-align {\n -moz-appearance: textfield;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$3.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldPrefixSuffixExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: FormFieldPrefixSuffixExample, isStandalone: true, selector: "form-field-prefix-suffix-example", ngImport: i0, template: "
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-right-align {\n text-align: right;\n}\n\ninput.example-right-align::-webkit-outer-spin-button,\ninput.example-right-align::-webkit-inner-spin-button {\n display: none;\n}\n\ninput.example-right-align {\n -moz-appearance: textfield;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: FormFieldPrefixSuffixExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: FormFieldPrefixSuffixExample, decorators: [{ type: Component, - args: [{ selector: 'form-field-prefix-suffix-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-right-align {\n text-align: right;\n}\n\ninput.example-right-align::-webkit-outer-spin-button,\ninput.example-right-align::-webkit-inner-spin-button {\n display: none;\n}\n\ninput.example-right-align {\n -moz-appearance: textfield;\n}\n"] }] + args: [{ selector: 'form-field-prefix-suffix-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n", styles: [".example-container mat-form-field + mat-form-field {\n margin-left: 8px;\n}\n\n.example-right-align {\n text-align: right;\n}\n\ninput.example-right-align::-webkit-outer-spin-button,\ninput.example-right-align::-webkit-inner-spin-button {\n display: none;\n}\n\ninput.example-right-align {\n -moz-appearance: textfield;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { FormFieldAppearanceExample, FormFieldCustomControlExample, FormFieldErrorExample, FormFieldHarnessExample, FormFieldHintExample, FormFieldLabelExample, FormFieldOverviewExample, FormFieldPrefixSuffixExample, MyTelInput }; //# sourceMappingURL=form-field.mjs.map diff --git a/fesm2022/material/form-field.mjs.map b/fesm2022/material/form-field.mjs.map index badcb4280f..dc47deeb44 100755 --- a/fesm2022/material/form-field.mjs.map +++ b/fesm2022/material/form-field.mjs.map @@ -1 +1 @@ -{"version":3,"file":"form-field.mjs","sources":["../../../../../../../src/components-examples/material/form-field/form-field-appearance/form-field-appearance-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-appearance/form-field-appearance-example.html","../../../../../../../src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.html","../../../../../../../src/components-examples/material/form-field/form-field-custom-control/example-tel-input-example.html","../../../../../../../src/components-examples/material/form-field/form-field-error/form-field-error-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-error/form-field-error-example.html","../../../../../../../src/components-examples/material/form-field/form-field-harness/form-field-harness-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-harness/form-field-harness-example.html","../../../../../../../src/components-examples/material/form-field/form-field-hint/form-field-hint-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-hint/form-field-hint-example.html","../../../../../../../src/components-examples/material/form-field/form-field-label/form-field-label-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-label/form-field-label-example.html","../../../../../../../src/components-examples/material/form-field/form-field-overview/form-field-overview-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-overview/form-field-overview-example.html","../../../../../../../src/components-examples/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.ts","../../../../../../../src/components-examples/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html","../../../../../../../src/components-examples/material/form-field/form-field_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Form field appearance variants */\n@Component({\n selector: 'form-field-appearance-example',\n templateUrl: 'form-field-appearance-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldAppearanceExample {}\n","

    \n \n Fill form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n

    \n \n Outline form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n","import {FocusMonitor} from '@angular/cdk/a11y';\nimport {AsyncPipe, JsonPipe} from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n ElementRef,\n OnDestroy,\n booleanAttribute,\n computed,\n effect,\n forwardRef,\n inject,\n input,\n model,\n signal,\n untracked,\n viewChild,\n} from '@angular/core';\nimport {takeUntilDestroyed} from '@angular/core/rxjs-interop';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormBuilder,\n FormControl,\n FormGroup,\n FormsModule,\n NgControl,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport {\n MAT_FORM_FIELD,\n MatFormFieldControl,\n MatFormFieldModule,\n} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {Subject} from 'rxjs';\n\n/** @title Form field with custom telephone number input control. */\n@Component({\n selector: 'form-field-custom-control-example',\n templateUrl: 'form-field-custom-control-example.html',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n forwardRef(() => MyTelInput),\n MatIconModule,\n AsyncPipe,\n JsonPipe,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldCustomControlExample {\n readonly form = new FormGroup({\n tel: new FormControl(null),\n });\n}\n\n/** Data structure for holding telephone number. */\nexport class MyTel {\n constructor(\n public area: string,\n public exchange: string,\n public subscriber: string,\n ) {}\n}\n\n/** Custom `MatFormFieldControl` for telephone number input. */\n@Component({\n selector: 'example-tel-input',\n templateUrl: 'example-tel-input-example.html',\n styleUrl: 'example-tel-input-example.css',\n providers: [{provide: MatFormFieldControl, useExisting: MyTelInput}],\n host: {\n '[class.example-floating]': 'shouldLabelFloat',\n '[id]': 'id',\n },\n imports: [FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MyTelInput implements ControlValueAccessor, MatFormFieldControl, OnDestroy {\n static nextId = 0;\n readonly areaInput = viewChild.required('area');\n readonly exchangeInput = viewChild.required('exchange');\n readonly subscriberInput = viewChild.required('subscriber');\n ngControl = inject(NgControl, {optional: true, self: true});\n readonly parts: FormGroup<{\n area: FormControl;\n exchange: FormControl;\n subscriber: FormControl;\n }>;\n readonly stateChanges = new Subject();\n readonly touched = signal(false);\n readonly controlType = 'example-tel-input';\n readonly id = `example-tel-input-${MyTelInput.nextId++}`;\n readonly _userAriaDescribedBy = input('', {alias: 'aria-describedby'});\n readonly _placeholder = input('', {alias: 'placeholder'});\n readonly _required = input(false, {\n alias: 'required',\n transform: booleanAttribute,\n });\n readonly _disabledByInput = input(false, {\n alias: 'disabled',\n transform: booleanAttribute,\n });\n readonly _value = model(null, {alias: 'value'});\n onChange = (_: any) => {};\n onTouched = () => {};\n\n protected readonly _formField = inject(MAT_FORM_FIELD, {\n optional: true,\n });\n\n private readonly _focused = signal(false);\n private readonly _disabledByCva = signal(false);\n private readonly _disabled = computed(() => this._disabledByInput() || this._disabledByCva());\n private readonly _focusMonitor = inject(FocusMonitor);\n private readonly _elementRef = inject>(ElementRef);\n\n get focused(): boolean {\n return this._focused();\n }\n\n get empty() {\n const {\n value: {area, exchange, subscriber},\n } = this.parts;\n\n return !area && !exchange && !subscriber;\n }\n\n get shouldLabelFloat() {\n return this.focused || !this.empty;\n }\n\n get userAriaDescribedBy() {\n return this._userAriaDescribedBy();\n }\n\n get placeholder(): string {\n return this._placeholder();\n }\n\n get required(): boolean {\n return this._required();\n }\n\n get disabled(): boolean {\n return this._disabled();\n }\n\n get value(): MyTel | null {\n return this._value();\n }\n\n get errorState(): boolean {\n return this.parts.invalid && this.touched();\n }\n constructor() {\n if (this.ngControl != null) {\n this.ngControl.valueAccessor = this;\n }\n\n this.parts = inject(FormBuilder).group({\n area: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(3)]],\n exchange: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(3)]],\n subscriber: ['', [Validators.required, Validators.minLength(4), Validators.maxLength(4)]],\n });\n\n effect(() => {\n // Read signals to trigger effect.\n this._placeholder();\n this._required();\n this._disabled();\n this._focused();\n // Propagate state changes.\n untracked(() => this.stateChanges.next());\n });\n\n effect(() => {\n if (this._disabled()) {\n untracked(() => this.parts.disable());\n } else {\n untracked(() => this.parts.enable());\n }\n });\n\n effect(() => {\n const value = this._value() || new MyTel('', '', '');\n untracked(() => this.parts.setValue(value));\n });\n\n this.parts.statusChanges.pipe(takeUntilDestroyed()).subscribe(() => {\n this.stateChanges.next();\n });\n\n this.parts.valueChanges.pipe(takeUntilDestroyed()).subscribe(value => {\n const tel = this.parts.valid\n ? new MyTel(\n this.parts.value.area || '',\n this.parts.value.exchange || '',\n this.parts.value.subscriber || '',\n )\n : null;\n this._updateValue(tel);\n });\n }\n\n ngOnDestroy() {\n this.stateChanges.complete();\n this._focusMonitor.stopMonitoring(this._elementRef);\n }\n\n onFocusIn() {\n if (!this._focused()) {\n this._focused.set(true);\n }\n }\n\n onFocusOut(event: FocusEvent) {\n if (!this._elementRef.nativeElement.contains(event.relatedTarget as Element)) {\n this.touched.set(true);\n this._focused.set(false);\n this.onTouched();\n }\n }\n\n autoFocusNext(control: AbstractControl, nextElement?: HTMLInputElement): void {\n if (!control.errors && nextElement) {\n this._focusMonitor.focusVia(nextElement, 'program');\n }\n }\n\n autoFocusPrev(control: AbstractControl, prevElement: HTMLInputElement): void {\n if (control.value.length < 1) {\n this._focusMonitor.focusVia(prevElement, 'program');\n }\n }\n\n setDescribedByIds(ids: string[]) {\n const controlElement = this._elementRef.nativeElement.querySelector(\n '.example-tel-input-container',\n )!;\n controlElement.setAttribute('aria-describedby', ids.join(' '));\n }\n\n onContainerClick() {\n if (this.parts.controls.subscriber.valid) {\n this._focusMonitor.focusVia(this.subscriberInput(), 'program');\n } else if (this.parts.controls.exchange.valid) {\n this._focusMonitor.focusVia(this.subscriberInput(), 'program');\n } else if (this.parts.controls.area.valid) {\n this._focusMonitor.focusVia(this.exchangeInput(), 'program');\n } else {\n this._focusMonitor.focusVia(this.areaInput(), 'program');\n }\n }\n\n writeValue(tel: MyTel | null): void {\n this._updateValue(tel);\n }\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this._disabledByCva.set(isDisabled);\n }\n\n _handleInput(control: AbstractControl, nextElement?: HTMLInputElement): void {\n this.autoFocusNext(control, nextElement);\n this.onChange(this.value);\n }\n\n private _updateValue(tel: MyTel | null) {\n const current = this._value();\n if (\n tel === current ||\n (tel?.area === current?.area &&\n tel?.exchange === current?.exchange &&\n tel?.subscriber === current?.subscriber)\n ) {\n return;\n }\n this._value.set(tel);\n }\n}\n","
    \n \n Phone number\n \n phone\n Include area code\n \n

    Entered value: {{form.valueChanges | async | json}}

    \n
    \n","\n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {takeUntilDestroyed} from '@angular/core/rxjs-interop';\nimport {FormControl, FormsModule, ReactiveFormsModule, Validators} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {merge} from 'rxjs';\n\n/** @title Form field with error messages */\n@Component({\n selector: 'form-field-error-example',\n templateUrl: 'form-field-error-example.html',\n styleUrl: 'form-field-error-example.css',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldErrorExample {\n readonly email = new FormControl('', [Validators.required, Validators.email]);\n\n errorMessage = signal('');\n\n constructor() {\n merge(this.email.statusChanges, this.email.valueChanges)\n .pipe(takeUntilDestroyed())\n .subscribe(() => this.updateErrorMessage());\n }\n\n updateErrorMessage() {\n if (this.email.hasError('required')) {\n this.errorMessage.set('You must enter a value');\n } else if (this.email.hasError('email')) {\n this.errorMessage.set('Not a valid email');\n } else {\n this.errorMessage.set('');\n }\n }\n}\n","
    \n \n Enter your email\n \n @if (email.invalid) {\n {{errorMessage()}}\n }\n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule, Validators} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Testing with MatFormFieldHarness\n */\n@Component({\n selector: 'form-field-harness-example',\n templateUrl: 'form-field-harness-example.html',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldHarnessExample {\n readonly requiredControl = new FormControl('Initial value', [Validators.required]);\n}\n","\n Custom control harness\n \n\n Error\n Hint\n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\n\n/** @title Form field with hints */\n@Component({\n selector: 'form-field-hint-example',\n templateUrl: 'form-field-hint-example.html',\n styleUrl: 'form-field-hint-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatSelectModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldHintExample {\n protected readonly value = signal('');\n\n protected onInput(event: Event) {\n this.value.set((event.target as HTMLInputElement).value);\n }\n}\n","
    \n \n Enter some input\n \n {{value().length}}/10\n \n\n \n Select me\n \n Option\n \n Here's the dropdown arrow ^\n \n
    \n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {toSignal} from '@angular/core/rxjs-interop';\nimport {FormBuilder, FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FloatLabelType, MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatSelectModule} from '@angular/material/select';\nimport {map} from 'rxjs/operators';\n\n/** @title Form field with label */\n@Component({\n selector: 'form-field-label-example',\n templateUrl: 'form-field-label-example.html',\n styleUrl: 'form-field-label-example.css',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatCheckboxModule,\n MatRadioModule,\n MatFormFieldModule,\n MatInputModule,\n MatSelectModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldLabelExample {\n readonly hideRequiredControl = new FormControl(false);\n readonly floatLabelControl = new FormControl('auto' as FloatLabelType);\n readonly options = inject(FormBuilder).group({\n hideRequired: this.hideRequiredControl,\n floatLabel: this.floatLabelControl,\n });\n protected readonly hideRequired = toSignal(this.hideRequiredControl.valueChanges);\n protected readonly floatLabel = toSignal(\n this.floatLabelControl.valueChanges.pipe(map(v => v || 'auto')),\n {initialValue: 'auto'},\n );\n}\n","
    \n
    \n Hide required marker\n
    \n \n \n Auto\n Always\n \n
    \n\n
    \n \n \n \n\n \n Both a label and a placeholder\n \n \n\n \n \n -- None --\n Option\n \n favorite Fancy label\n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Simple form field */\n@Component({\n selector: 'form-field-overview-example',\n templateUrl: 'form-field-overview-example.html',\n styleUrl: 'form-field-overview-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatSelectModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldOverviewExample {}\n","\n Input\n \n\n\n Select\n \n First option\n Second option\n \n\n\n Textarea\n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Form field with prefix & suffix */\n@Component({\n selector: 'form-field-prefix-suffix-example',\n templateUrl: 'form-field-prefix-suffix-example.html',\n styleUrl: 'form-field-prefix-suffix-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldPrefixSuffixExample {\n hide = signal(true);\n clickEvent(event: MouseEvent) {\n this.hide.set(!this.hide());\n event.stopPropagation();\n }\n}\n","
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i4","i5","i8"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"form-field.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-appearance/form-field-appearance-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-appearance/form-field-appearance-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-custom-control/example-tel-input-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-error/form-field-error-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-error/form-field-error-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-harness/form-field-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-harness/form-field-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-hint/form-field-hint-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-hint/form-field-hint-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-label/form-field-label-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-label/form-field-label-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-overview/form-field-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-overview/form-field-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/form-field/form-field-prefix-suffix/form-field-prefix-suffix-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Form field appearance variants */\n@Component({\n selector: 'form-field-appearance-example',\n templateUrl: 'form-field-appearance-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldAppearanceExample {}\n","

    \n \n Fill form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n

    \n \n Outline form field\n \n sentiment_very_satisfied\n Hint\n \n

    \n","import {FocusMonitor} from '@angular/cdk/a11y';\nimport {AsyncPipe, JsonPipe} from '@angular/common';\nimport {\n ChangeDetectionStrategy,\n Component,\n ElementRef,\n OnDestroy,\n booleanAttribute,\n computed,\n effect,\n forwardRef,\n inject,\n input,\n model,\n signal,\n untracked,\n viewChild,\n} from '@angular/core';\nimport {takeUntilDestroyed} from '@angular/core/rxjs-interop';\nimport {\n AbstractControl,\n ControlValueAccessor,\n FormBuilder,\n FormControl,\n FormGroup,\n FormsModule,\n NgControl,\n ReactiveFormsModule,\n Validators,\n} from '@angular/forms';\nimport {\n MAT_FORM_FIELD,\n MatFormFieldControl,\n MatFormFieldModule,\n} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {Subject} from 'rxjs';\n\n/** @title Form field with custom telephone number input control. */\n@Component({\n selector: 'form-field-custom-control-example',\n templateUrl: 'form-field-custom-control-example.html',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n forwardRef(() => MyTelInput),\n MatIconModule,\n AsyncPipe,\n JsonPipe,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldCustomControlExample {\n readonly form = new FormGroup({\n tel: new FormControl(null),\n });\n}\n\n/** Data structure for holding telephone number. */\nexport class MyTel {\n constructor(\n public area: string,\n public exchange: string,\n public subscriber: string,\n ) {}\n}\n\n/** Custom `MatFormFieldControl` for telephone number input. */\n@Component({\n selector: 'example-tel-input',\n templateUrl: 'example-tel-input-example.html',\n styleUrl: 'example-tel-input-example.css',\n providers: [{provide: MatFormFieldControl, useExisting: MyTelInput}],\n host: {\n '[class.example-floating]': 'shouldLabelFloat',\n '[id]': 'id',\n },\n imports: [FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class MyTelInput implements ControlValueAccessor, MatFormFieldControl, OnDestroy {\n static nextId = 0;\n readonly areaInput = viewChild.required('area');\n readonly exchangeInput = viewChild.required('exchange');\n readonly subscriberInput = viewChild.required('subscriber');\n ngControl = inject(NgControl, {optional: true, self: true});\n readonly parts: FormGroup<{\n area: FormControl;\n exchange: FormControl;\n subscriber: FormControl;\n }>;\n readonly stateChanges = new Subject();\n readonly touched = signal(false);\n readonly controlType = 'example-tel-input';\n readonly id = `example-tel-input-${MyTelInput.nextId++}`;\n readonly _userAriaDescribedBy = input('', {alias: 'aria-describedby'});\n readonly _placeholder = input('', {alias: 'placeholder'});\n readonly _required = input(false, {\n alias: 'required',\n transform: booleanAttribute,\n });\n readonly _disabledByInput = input(false, {\n alias: 'disabled',\n transform: booleanAttribute,\n });\n readonly _value = model(null, {alias: 'value'});\n onChange = (_: any) => {};\n onTouched = () => {};\n\n protected readonly _formField = inject(MAT_FORM_FIELD, {\n optional: true,\n });\n\n private readonly _focused = signal(false);\n private readonly _disabledByCva = signal(false);\n private readonly _disabled = computed(() => this._disabledByInput() || this._disabledByCva());\n private readonly _focusMonitor = inject(FocusMonitor);\n private readonly _elementRef = inject>(ElementRef);\n\n get focused(): boolean {\n return this._focused();\n }\n\n get empty() {\n const {\n value: {area, exchange, subscriber},\n } = this.parts;\n\n return !area && !exchange && !subscriber;\n }\n\n get shouldLabelFloat() {\n return this.focused || !this.empty;\n }\n\n get userAriaDescribedBy() {\n return this._userAriaDescribedBy();\n }\n\n get placeholder(): string {\n return this._placeholder();\n }\n\n get required(): boolean {\n return this._required();\n }\n\n get disabled(): boolean {\n return this._disabled();\n }\n\n get value(): MyTel | null {\n return this._value();\n }\n\n get errorState(): boolean {\n return this.parts.invalid && this.touched();\n }\n constructor() {\n if (this.ngControl != null) {\n this.ngControl.valueAccessor = this;\n }\n\n this.parts = inject(FormBuilder).group({\n area: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(3)]],\n exchange: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(3)]],\n subscriber: ['', [Validators.required, Validators.minLength(4), Validators.maxLength(4)]],\n });\n\n effect(() => {\n // Read signals to trigger effect.\n this._placeholder();\n this._required();\n this._disabled();\n this._focused();\n // Propagate state changes.\n untracked(() => this.stateChanges.next());\n });\n\n effect(() => {\n if (this._disabled()) {\n untracked(() => this.parts.disable());\n } else {\n untracked(() => this.parts.enable());\n }\n });\n\n effect(() => {\n const value = this._value() || new MyTel('', '', '');\n untracked(() => this.parts.setValue(value));\n });\n\n this.parts.statusChanges.pipe(takeUntilDestroyed()).subscribe(() => {\n this.stateChanges.next();\n });\n\n this.parts.valueChanges.pipe(takeUntilDestroyed()).subscribe(value => {\n const tel = this.parts.valid\n ? new MyTel(\n this.parts.value.area || '',\n this.parts.value.exchange || '',\n this.parts.value.subscriber || '',\n )\n : null;\n this._updateValue(tel);\n });\n }\n\n ngOnDestroy() {\n this.stateChanges.complete();\n this._focusMonitor.stopMonitoring(this._elementRef);\n }\n\n onFocusIn() {\n if (!this._focused()) {\n this._focused.set(true);\n }\n }\n\n onFocusOut(event: FocusEvent) {\n if (!this._elementRef.nativeElement.contains(event.relatedTarget as Element)) {\n this.touched.set(true);\n this._focused.set(false);\n this.onTouched();\n }\n }\n\n autoFocusNext(control: AbstractControl, nextElement?: HTMLInputElement): void {\n if (!control.errors && nextElement) {\n this._focusMonitor.focusVia(nextElement, 'program');\n }\n }\n\n autoFocusPrev(control: AbstractControl, prevElement: HTMLInputElement): void {\n if (control.value.length < 1) {\n this._focusMonitor.focusVia(prevElement, 'program');\n }\n }\n\n setDescribedByIds(ids: string[]) {\n const controlElement = this._elementRef.nativeElement.querySelector(\n '.example-tel-input-container',\n )!;\n controlElement.setAttribute('aria-describedby', ids.join(' '));\n }\n\n onContainerClick() {\n if (this.parts.controls.subscriber.valid) {\n this._focusMonitor.focusVia(this.subscriberInput(), 'program');\n } else if (this.parts.controls.exchange.valid) {\n this._focusMonitor.focusVia(this.subscriberInput(), 'program');\n } else if (this.parts.controls.area.valid) {\n this._focusMonitor.focusVia(this.exchangeInput(), 'program');\n } else {\n this._focusMonitor.focusVia(this.areaInput(), 'program');\n }\n }\n\n writeValue(tel: MyTel | null): void {\n this._updateValue(tel);\n }\n\n registerOnChange(fn: any): void {\n this.onChange = fn;\n }\n\n registerOnTouched(fn: any): void {\n this.onTouched = fn;\n }\n\n setDisabledState(isDisabled: boolean): void {\n this._disabledByCva.set(isDisabled);\n }\n\n _handleInput(control: AbstractControl, nextElement?: HTMLInputElement): void {\n this.autoFocusNext(control, nextElement);\n this.onChange(this.value);\n }\n\n private _updateValue(tel: MyTel | null) {\n const current = this._value();\n if (\n tel === current ||\n (tel?.area === current?.area &&\n tel?.exchange === current?.exchange &&\n tel?.subscriber === current?.subscriber)\n ) {\n return;\n }\n this._value.set(tel);\n }\n}\n","
    \n \n Phone number\n \n phone\n Include area code\n \n

    Entered value: {{form.valueChanges | async | json}}

    \n
    \n","\n \n \n \n \n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {takeUntilDestroyed} from '@angular/core/rxjs-interop';\nimport {FormControl, FormsModule, ReactiveFormsModule, Validators} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {merge} from 'rxjs';\n\n/** @title Form field with error messages */\n@Component({\n selector: 'form-field-error-example',\n templateUrl: 'form-field-error-example.html',\n styleUrl: 'form-field-error-example.css',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldErrorExample {\n readonly email = new FormControl('', [Validators.required, Validators.email]);\n\n errorMessage = signal('');\n\n constructor() {\n merge(this.email.statusChanges, this.email.valueChanges)\n .pipe(takeUntilDestroyed())\n .subscribe(() => this.updateErrorMessage());\n }\n\n updateErrorMessage() {\n if (this.email.hasError('required')) {\n this.errorMessage.set('You must enter a value');\n } else if (this.email.hasError('email')) {\n this.errorMessage.set('Not a valid email');\n } else {\n this.errorMessage.set('');\n }\n }\n}\n","
    \n \n Enter your email\n \n @if (email.invalid) {\n {{errorMessage()}}\n }\n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule, Validators} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\n\n/**\n * @title Testing with MatFormFieldHarness\n */\n@Component({\n selector: 'form-field-harness-example',\n templateUrl: 'form-field-harness-example.html',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldHarnessExample {\n readonly requiredControl = new FormControl('Initial value', [Validators.required]);\n}\n","\n Custom control harness\n \n\n Error\n Hint\n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\n\n/** @title Form field with hints */\n@Component({\n selector: 'form-field-hint-example',\n templateUrl: 'form-field-hint-example.html',\n styleUrl: 'form-field-hint-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatSelectModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldHintExample {\n protected readonly value = signal('');\n\n protected onInput(event: Event) {\n this.value.set((event.target as HTMLInputElement).value);\n }\n}\n","
    \n \n Enter some input\n \n {{value().length}}/10\n \n\n \n Select me\n \n Option\n \n Here's the dropdown arrow ^\n \n
    \n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {toSignal} from '@angular/core/rxjs-interop';\nimport {FormBuilder, FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FloatLabelType, MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatSelectModule} from '@angular/material/select';\nimport {map} from 'rxjs/operators';\n\n/** @title Form field with label */\n@Component({\n selector: 'form-field-label-example',\n templateUrl: 'form-field-label-example.html',\n styleUrl: 'form-field-label-example.css',\n imports: [\n FormsModule,\n ReactiveFormsModule,\n MatCheckboxModule,\n MatRadioModule,\n MatFormFieldModule,\n MatInputModule,\n MatSelectModule,\n MatIconModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldLabelExample {\n readonly hideRequiredControl = new FormControl(false);\n readonly floatLabelControl = new FormControl('auto' as FloatLabelType);\n readonly options = inject(FormBuilder).group({\n hideRequired: this.hideRequiredControl,\n floatLabel: this.floatLabelControl,\n });\n protected readonly hideRequired = toSignal(this.hideRequiredControl.valueChanges);\n protected readonly floatLabel = toSignal(\n this.floatLabelControl.valueChanges.pipe(map(v => v || 'auto')),\n {initialValue: 'auto'},\n );\n}\n","
    \n
    \n Hide required marker\n
    \n \n \n Auto\n Always\n \n
    \n\n
    \n \n \n \n\n \n Both a label and a placeholder\n \n \n\n \n \n -- None --\n Option\n \n favorite Fancy label\n \n
    \n
    \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Simple form field */\n@Component({\n selector: 'form-field-overview-example',\n templateUrl: 'form-field-overview-example.html',\n styleUrl: 'form-field-overview-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatSelectModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldOverviewExample {}\n","\n Input\n \n\n\n Select\n \n First option\n Second option\n \n\n\n Textarea\n \n\n","import {ChangeDetectionStrategy, Component, signal} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Form field with prefix & suffix */\n@Component({\n selector: 'form-field-prefix-suffix-example',\n templateUrl: 'form-field-prefix-suffix-example.html',\n styleUrl: 'form-field-prefix-suffix-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FormFieldPrefixSuffixExample {\n hide = signal(true);\n clickEvent(event: MouseEvent) {\n this.hide.set(!this.hide());\n event.stopPropagation();\n }\n}\n","
    \n \n Enter your password\n \n \n {{hide() ? 'visibility_off' : 'visibility'}}\n \n \n\n \n Amount\n \n \n .00\n \n
    \n"],"names":["i1","i2","i3","i4","i5","i7"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/grid-list.mjs b/fesm2022/material/grid-list.mjs index 3f6341da4a..abf0e5c664 100755 --- a/fesm2022/material/grid-list.mjs +++ b/fesm2022/material/grid-list.mjs @@ -13,10 +13,10 @@ class GridListDynamicExample { { text: 'Three', cols: 1, rows: 1, color: 'lightpink' }, { text: 'Four', cols: 2, rows: 1, color: '#DDBDF1' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: GridListDynamicExample, isStandalone: true, selector: "grid-list-dynamic-example", ngImport: i0, template: "\n @for (tile of tiles; track tile) {\n {{tile.text}}\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: GridListDynamicExample, isStandalone: true, selector: "grid-list-dynamic-example", ngImport: i0, template: "\n @for (tile of tiles; track tile) {\n {{tile.text}}\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListDynamicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListDynamicExample, decorators: [{ type: Component, args: [{ selector: 'grid-list-dynamic-example', imports: [MatGridListModule], template: "\n @for (tile of tiles; track tile) {\n {{tile.text}}\n }\n\n" }] }] }); @@ -25,10 +25,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic grid-list */ class GridListOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: GridListOverviewExample, isStandalone: true, selector: "grid-list-overview-example", ngImport: i0, template: "\n 1\n 2\n 3\n 4\n\n", styles: ["mat-grid-tile {\n background: lightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: GridListOverviewExample, isStandalone: true, selector: "grid-list-overview-example", ngImport: i0, template: "\n 1\n 2\n 3\n 4\n\n", styles: ["mat-grid-tile {\n background: lightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListOverviewExample, decorators: [{ type: Component, args: [{ selector: 'grid-list-overview-example', imports: [MatGridListModule], template: "\n 1\n 2\n 3\n 4\n\n", styles: ["mat-grid-tile {\n background: lightblue;\n}\n"] }] }] }); @@ -37,17 +37,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatGridListHarness */ class GridListHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: GridListHarnessExample, isStandalone: true, selector: "grid-list-harness-example", ngImport: i0, template: "\n Tile 1 (no header, no footer)\n \n Tile 2\n \n \n Tile 3\n Tile 3 footer\n \n \n Tile 4\n \n\n", dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }, { kind: "component", type: i1.MatGridTileText, selector: "mat-grid-tile-header, mat-grid-tile-footer" }, { kind: "directive", type: i1.MatGridTileHeaderCssMatStyler, selector: "mat-grid-tile-header" }, { kind: "directive", type: i1.MatGridTileFooterCssMatStyler, selector: "mat-grid-tile-footer" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: GridListHarnessExample, isStandalone: true, selector: "grid-list-harness-example", ngImport: i0, template: "\n Tile 1 (no header, no footer)\n \n Tile 2\n \n \n Tile 3\n Tile 3 footer\n \n \n Tile 4\n \n\n", dependencies: [{ kind: "ngmodule", type: MatGridListModule }, { kind: "component", type: i1.MatGridList, selector: "mat-grid-list", inputs: ["cols", "gutterSize", "rowHeight"], exportAs: ["matGridList"] }, { kind: "component", type: i1.MatGridTile, selector: "mat-grid-tile", inputs: ["rowspan", "colspan"], exportAs: ["matGridTile"] }, { kind: "component", type: i1.MatGridTileText, selector: "mat-grid-tile-header, mat-grid-tile-footer" }, { kind: "directive", type: i1.MatGridTileHeaderCssMatStyler, selector: "mat-grid-tile-header" }, { kind: "directive", type: i1.MatGridTileFooterCssMatStyler, selector: "mat-grid-tile-footer" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: GridListHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: GridListHarnessExample, decorators: [{ type: Component, args: [{ selector: 'grid-list-harness-example', imports: [MatGridListModule], template: "\n Tile 1 (no header, no footer)\n \n Tile 2\n \n \n Tile 3\n Tile 3 footer\n \n \n Tile 4\n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { GridListDynamicExample, GridListHarnessExample, GridListOverviewExample }; //# sourceMappingURL=grid-list.mjs.map diff --git a/fesm2022/material/grid-list.mjs.map b/fesm2022/material/grid-list.mjs.map index 8edd9536d4..95a478b3fb 100755 --- a/fesm2022/material/grid-list.mjs.map +++ b/fesm2022/material/grid-list.mjs.map @@ -1 +1 @@ -{"version":3,"file":"grid-list.mjs","sources":["../../../../../../../src/components-examples/material/grid-list/grid-list-dynamic/grid-list-dynamic-example.ts","../../../../../../../src/components-examples/material/grid-list/grid-list-dynamic/grid-list-dynamic-example.html","../../../../../../../src/components-examples/material/grid-list/grid-list-overview/grid-list-overview-example.ts","../../../../../../../src/components-examples/material/grid-list/grid-list-overview/grid-list-overview-example.html","../../../../../../../src/components-examples/material/grid-list/grid-list-harness/grid-list-harness-example.ts","../../../../../../../src/components-examples/material/grid-list/grid-list-harness/grid-list-harness-example.html","../../../../../../../src/components-examples/material/grid-list/grid-list_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\nexport interface Tile {\n color: string;\n cols: number;\n rows: number;\n text: string;\n}\n\n/**\n * @title Dynamic grid-list\n */\n@Component({\n selector: 'grid-list-dynamic-example',\n templateUrl: 'grid-list-dynamic-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListDynamicExample {\n tiles: Tile[] = [\n {text: 'One', cols: 3, rows: 1, color: 'lightblue'},\n {text: 'Two', cols: 1, rows: 2, color: 'lightgreen'},\n {text: 'Three', cols: 1, rows: 1, color: 'lightpink'},\n {text: 'Four', cols: 2, rows: 1, color: '#DDBDF1'},\n ];\n}\n","\n @for (tile of tiles; track tile) {\n {{tile.text}}\n }\n\n","import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\n/**\n * @title Basic grid-list\n */\n@Component({\n selector: 'grid-list-overview-example',\n styleUrl: 'grid-list-overview-example.css',\n templateUrl: 'grid-list-overview-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListOverviewExample {}\n","\n 1\n 2\n 3\n 4\n\n","import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\n/**\n * @title Testing with MatGridListHarness\n */\n@Component({\n selector: 'grid-list-harness-example',\n templateUrl: 'grid-list-harness-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListHarnessExample {}\n","\n Tile 1 (no header, no footer)\n \n Tile 2\n \n \n Tile 3\n Tile 3 footer\n \n \n Tile 4\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"grid-list.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-dynamic/grid-list-dynamic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-dynamic/grid-list-dynamic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-overview/grid-list-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-overview/grid-list-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-harness/grid-list-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/grid-list/grid-list-harness/grid-list-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\nexport interface Tile {\n color: string;\n cols: number;\n rows: number;\n text: string;\n}\n\n/**\n * @title Dynamic grid-list\n */\n@Component({\n selector: 'grid-list-dynamic-example',\n templateUrl: 'grid-list-dynamic-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListDynamicExample {\n tiles: Tile[] = [\n {text: 'One', cols: 3, rows: 1, color: 'lightblue'},\n {text: 'Two', cols: 1, rows: 2, color: 'lightgreen'},\n {text: 'Three', cols: 1, rows: 1, color: 'lightpink'},\n {text: 'Four', cols: 2, rows: 1, color: '#DDBDF1'},\n ];\n}\n","\n @for (tile of tiles; track tile) {\n {{tile.text}}\n }\n\n","import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\n/**\n * @title Basic grid-list\n */\n@Component({\n selector: 'grid-list-overview-example',\n styleUrl: 'grid-list-overview-example.css',\n templateUrl: 'grid-list-overview-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListOverviewExample {}\n","\n 1\n 2\n 3\n 4\n\n","import {Component} from '@angular/core';\nimport {MatGridListModule} from '@angular/material/grid-list';\n\n/**\n * @title Testing with MatGridListHarness\n */\n@Component({\n selector: 'grid-list-harness-example',\n templateUrl: 'grid-list-harness-example.html',\n imports: [MatGridListModule],\n})\nexport class GridListHarnessExample {}\n","\n Tile 1 (no header, no footer)\n \n Tile 2\n \n \n Tile 3\n Tile 3 footer\n \n \n Tile 4\n \n\n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/icon.mjs b/fesm2022/material/icon.mjs index 4797d58dc3..d366d330a2 100755 --- a/fesm2022/material/icon.mjs +++ b/fesm2022/material/icon.mjs @@ -1,6 +1,6 @@ import * as i0 from '@angular/core'; import { Component, ChangeDetectionStrategy, inject } from '@angular/core'; -import * as i1 from '@angular/material/icon'; +import * as i3 from '@angular/material/icon'; import { MatIconModule, MatIconRegistry } from '@angular/material/icon'; import { DomSanitizer } from '@angular/platform-browser'; @@ -8,10 +8,10 @@ import { DomSanitizer } from '@angular/platform-browser'; * @title Basic icons */ class IconOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: IconOverviewExample, isStandalone: true, selector: "icon-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: IconOverviewExample, isStandalone: true, selector: "icon-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconOverviewExample, decorators: [{ type: Component, args: [{ selector: 'icon-overview-example', imports: [MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] }] }); @@ -36,10 +36,10 @@ class IconSvgExample { // `iconRegistry.addSvgIcon('thumbs-up', sanitizer.bypassSecurityTrustResourceUrl('icon.svg'));` iconRegistry.addSvgIconLiteral('thumbs-up', sanitizer.bypassSecurityTrustHtml(THUMBUP_ICON)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconSvgExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: IconSvgExample, isStandalone: true, selector: "icon-svg-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconSvgExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: IconSvgExample, isStandalone: true, selector: "icon-svg-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconSvgExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconSvgExample, decorators: [{ type: Component, args: [{ selector: 'icon-svg-example', imports: [MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n" }] }], ctorParameters: () => [] }); @@ -48,17 +48,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatIconHarness */ class IconHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: IconHarnessExample, isStandalone: true, selector: "icon-harness-example", ngImport: i0, template: "\n\nligature_icon\n\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: IconHarnessExample, isStandalone: true, selector: "icon-harness-example", ngImport: i0, template: "\n\nligature_icon\n\n", dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: IconHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: IconHarnessExample, decorators: [{ type: Component, args: [{ selector: 'icon-harness-example', imports: [MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\nligature_icon\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { IconHarnessExample, IconOverviewExample, IconSvgExample }; //# sourceMappingURL=icon.mjs.map diff --git a/fesm2022/material/icon.mjs.map b/fesm2022/material/icon.mjs.map index a0234985c4..6289d47493 100755 --- a/fesm2022/material/icon.mjs.map +++ b/fesm2022/material/icon.mjs.map @@ -1 +1 @@ -{"version":3,"file":"icon.mjs","sources":["../../../../../../../src/components-examples/material/icon/icon-overview/icon-overview-example.ts","../../../../../../../src/components-examples/material/icon/icon-overview/icon-overview-example.html","../../../../../../../src/components-examples/material/icon/icon-svg/icon-svg-example.ts","../../../../../../../src/components-examples/material/icon/icon-svg/icon-svg-example.html","../../../../../../../src/components-examples/material/icon/icon-harness/icon-harness-example.ts","../../../../../../../src/components-examples/material/icon/icon-harness/icon-harness-example.html","../../../../../../../src/components-examples/material/icon/icon_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Basic icons\n */\n@Component({\n selector: 'icon-overview-example',\n templateUrl: 'icon-overview-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconOverviewExample {}\n","\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {DomSanitizer} from '@angular/platform-browser';\nimport {MatIconRegistry, MatIconModule} from '@angular/material/icon';\n\nconst THUMBUP_ICON =\n `\n \n \n \n \n`;\n\n/**\n * @title SVG icons\n */\n@Component({\n selector: 'icon-svg-example',\n templateUrl: 'icon-svg-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconSvgExample {\n constructor() {\n const iconRegistry = inject(MatIconRegistry);\n const sanitizer = inject(DomSanitizer);\n\n // Note that we provide the icon here as a string literal here due to a limitation in\n // Stackblitz. If you want to provide the icon from a URL, you can use:\n // `iconRegistry.addSvgIcon('thumbs-up', sanitizer.bypassSecurityTrustResourceUrl('icon.svg'));`\n iconRegistry.addSvgIconLiteral('thumbs-up', sanitizer.bypassSecurityTrustHtml(THUMBUP_ICON));\n }\n}\n","\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Testing with MatIconHarness\n */\n@Component({\n selector: 'icon-harness-example',\n templateUrl: 'icon-harness-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconHarnessExample {}\n","\n\nligature_icon\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"icon.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-overview/icon-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-overview/icon-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-svg/icon-svg-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-svg/icon-svg-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-harness/icon-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/icon/icon-harness/icon-harness-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Basic icons\n */\n@Component({\n selector: 'icon-overview-example',\n templateUrl: 'icon-overview-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconOverviewExample {}\n","\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {DomSanitizer} from '@angular/platform-browser';\nimport {MatIconRegistry, MatIconModule} from '@angular/material/icon';\n\nconst THUMBUP_ICON =\n `\n \n \n \n \n`;\n\n/**\n * @title SVG icons\n */\n@Component({\n selector: 'icon-svg-example',\n templateUrl: 'icon-svg-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconSvgExample {\n constructor() {\n const iconRegistry = inject(MatIconRegistry);\n const sanitizer = inject(DomSanitizer);\n\n // Note that we provide the icon here as a string literal here due to a limitation in\n // Stackblitz. If you want to provide the icon from a URL, you can use:\n // `iconRegistry.addSvgIcon('thumbs-up', sanitizer.bypassSecurityTrustResourceUrl('icon.svg'));`\n iconRegistry.addSvgIconLiteral('thumbs-up', sanitizer.bypassSecurityTrustHtml(THUMBUP_ICON));\n }\n}\n","\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\n\n/**\n * @title Testing with MatIconHarness\n */\n@Component({\n selector: 'icon-harness-example',\n templateUrl: 'icon-harness-example.html',\n imports: [MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class IconHarnessExample {}\n","\n\nligature_icon\n\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/input.mjs b/fesm2022/material/input.mjs index 78570d558d..c4a7eac750 100755 --- a/fesm2022/material/input.mjs +++ b/fesm2022/material/input.mjs @@ -1,14 +1,14 @@ import * as i0 from '@angular/core'; import { Component, signal } from '@angular/core'; -import * as i5 from '@angular/material/icon'; +import * as i3$1 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i4 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule, FormControl, Validators, ReactiveFormsModule } from '@angular/forms'; -import * as i3 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i2 from '@angular/material/form-field'; +import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; /** @@ -16,12 +16,12 @@ import { MatFormFieldModule } from '@angular/material/form-field'; */ class InputClearableExample { value = 'Clear me'; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputClearableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: InputClearableExample, isStandalone: true, selector: "input-clearable-example", ngImport: i0, template: "\n Clearable input\n \n @if (value) {\n \n }\n\n", styles: [".example-form-field {\n width: 200px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputClearableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: InputClearableExample, isStandalone: true, selector: "input-clearable-example", ngImport: i0, template: "\n Clearable input\n \n @if (value) {\n \n }\n\n", styles: [".example-form-field {\n width: 200px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputClearableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputClearableExample, decorators: [{ type: Component, - args: [{ selector: 'input-clearable-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule, MatIconModule], template: "\n Clearable input\n \n @if (value) {\n \n }\n\n", styles: [".example-form-field {\n width: 200px;\n}\n"] }] + args: [{ selector: 'input-clearable-example', imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule, MatIconModule], template: "\n Clearable input\n \n @if (value) {\n \n }\n\n", styles: [".example-form-field {\n width: 200px;\n}\n"] }] }] }); /** Error when invalid control is dirty, touched, or submitted. */ @@ -35,10 +35,10 @@ class MyErrorStateMatcher { class InputErrorStateMatcherExample { emailFormControl = new FormControl('', [Validators.required, Validators.email]); matcher = new MyErrorStateMatcher(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputErrorStateMatcherExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: InputErrorStateMatcherExample, isStandalone: true, selector: "input-error-state-matcher-example", ngImport: i0, template: "
    \n \n Email\n \n Errors appear instantly!\n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i2.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputErrorStateMatcherExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: InputErrorStateMatcherExample, isStandalone: true, selector: "input-error-state-matcher-example", ngImport: i0, template: "
    \n \n Email\n \n Errors appear instantly!\n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputErrorStateMatcherExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputErrorStateMatcherExample, decorators: [{ type: Component, args: [{ selector: 'input-error-state-matcher-example', imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule], template: "
    \n \n Email\n \n Errors appear instantly!\n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"] }] }] }); @@ -48,10 +48,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class InputErrorsExample { emailFormControl = new FormControl('', [Validators.required, Validators.email]); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputErrorsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: InputErrorsExample, isStandalone: true, selector: "input-errors-example", ngImport: i0, template: "
    \n \n Email\n \n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputErrorsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: InputErrorsExample, isStandalone: true, selector: "input-errors-example", ngImport: i0, template: "
    \n \n Email\n \n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputErrorsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputErrorsExample, decorators: [{ type: Component, args: [{ selector: 'input-errors-example', imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule], template: "
    \n \n Email\n \n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"] }] }] }); @@ -60,10 +60,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Inputs in a form */ class InputFormExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: InputFormExample, isStandalone: true, selector: "input-form-example", ngImport: i0, template: "
    \n \n Company (disabled)\n \n \n\n \n \n \n
    \n First name\n \n \n Long Last Name That Will Be Truncated\n \n
    \n\n

    \n \n Address\n \n \n \n Address 2\n \n \n

    \n\n \n \n \n \n
    \n City\n \n \n State\n \n \n Postal Code\n \n {{postalCode.value.length}} / 5\n
    \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\ntd {\n padding-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: InputFormExample, isStandalone: true, selector: "input-form-example", ngImport: i0, template: "
    \n \n Company (disabled)\n \n \n\n \n \n \n
    \n First name\n \n \n Long Last Name That Will Be Truncated\n \n
    \n\n

    \n \n Address\n \n \n \n Address 2\n \n \n

    \n\n \n \n \n \n
    \n City\n \n \n State\n \n \n Postal Code\n \n {{postalCode.value.length}} / 5\n
    \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\ntd {\n padding-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputFormExample, decorators: [{ type: Component, args: [{ selector: 'input-form-example', imports: [FormsModule, MatFormFieldModule, MatInputModule], template: "
    \n \n Company (disabled)\n \n \n\n \n \n \n
    \n First name\n \n \n Long Last Name That Will Be Truncated\n \n
    \n\n

    \n \n Address\n \n \n \n Address 2\n \n \n

    \n\n \n \n \n \n
    \n City\n \n \n State\n \n \n Postal Code\n \n {{postalCode.value.length}} / 5\n
    \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n\ntd {\n padding-right: 8px;\n}\n"] }] }] }); @@ -72,10 +72,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Input with hints */ class InputHintExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputHintExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: InputHintExample, isStandalone: true, selector: "input-hint-example", ngImport: i0, template: "
    \n \n Message\n \n Don't disclose personal info \n {{message.value.length}} / 256\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputHintExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: InputHintExample, isStandalone: true, selector: "input-hint-example", ngImport: i0, template: "
    \n \n Message\n \n Don't disclose personal info \n {{message.value.length}} / 256\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputHintExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputHintExample, decorators: [{ type: Component, args: [{ selector: 'input-hint-example', imports: [FormsModule, MatFormFieldModule, MatInputModule], template: "
    \n \n Message\n \n Don't disclose personal info \n {{message.value.length}} / 256\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"] }] }] }); @@ -84,10 +84,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic Inputs */ class InputOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: InputOverviewExample, isStandalone: true, selector: "input-overview-example", ngImport: i0, template: "
    \n \n Favorite food\n \n \n\n \n Leave a comment\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: InputOverviewExample, isStandalone: true, selector: "input-overview-example", ngImport: i0, template: "
    \n \n Favorite food\n \n \n\n \n Leave a comment\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputOverviewExample, decorators: [{ type: Component, args: [{ selector: 'input-overview-example', imports: [FormsModule, MatFormFieldModule, MatInputModule], template: "
    \n \n Favorite food\n \n \n\n \n Leave a comment\n \n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"] }] }] }); @@ -96,10 +96,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Inputs with prefixes and suffixes */ class InputPrefixSuffixExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputPrefixSuffixExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: InputPrefixSuffixExample, isStandalone: true, selector: "input-prefix-suffix-example", ngImport: i0, template: "
    \n \n Telephone\n +1  \n \n mode_edit\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i2.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputPrefixSuffixExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: InputPrefixSuffixExample, isStandalone: true, selector: "input-prefix-suffix-example", ngImport: i0, template: "
    \n \n Telephone\n +1  \n \n mode_edit\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputPrefixSuffixExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputPrefixSuffixExample, decorators: [{ type: Component, args: [{ selector: 'input-prefix-suffix-example', imports: [FormsModule, MatFormFieldModule, MatInputModule, MatIconModule], template: "
    \n \n Telephone\n +1  \n \n mode_edit\n \n
    \n", styles: [".example-form {\n min-width: 150px;\n max-width: 500px;\n width: 100%;\n}\n\n.example-full-width {\n width: 100%;\n}\n"] }] }] }); @@ -110,17 +110,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class InputHarnessExample { inputType = signal('number'); disabled = signal(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: InputHarnessExample, isStandalone: true, selector: "input-harness-example", ngImport: i0, template: "\n Favorite food\n \n\n\n\n \n\n\n\n Leave a comment\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: InputHarnessExample, isStandalone: true, selector: "input-harness-example", ngImport: i0, template: "\n Favorite food\n \n\n\n\n \n\n\n\n Leave a comment\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: InputHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: InputHarnessExample, decorators: [{ type: Component, args: [{ selector: 'input-harness-example', imports: [MatFormFieldModule, MatInputModule], template: "\n Favorite food\n \n\n\n\n \n\n\n\n Leave a comment\n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { InputClearableExample, InputErrorStateMatcherExample, InputErrorsExample, InputFormExample, InputHarnessExample, InputHintExample, InputOverviewExample, InputPrefixSuffixExample }; //# sourceMappingURL=input.mjs.map diff --git a/fesm2022/material/input.mjs.map b/fesm2022/material/input.mjs.map index 6bee913593..99cefe8578 100755 --- a/fesm2022/material/input.mjs.map +++ b/fesm2022/material/input.mjs.map @@ -1 +1 @@ -{"version":3,"file":"input.mjs","sources":["../../../../../../../src/components-examples/material/input/input-clearable/input-clearable-example.ts","../../../../../../../src/components-examples/material/input/input-clearable/input-clearable-example.html","../../../../../../../src/components-examples/material/input/input-error-state-matcher/input-error-state-matcher-example.ts","../../../../../../../src/components-examples/material/input/input-error-state-matcher/input-error-state-matcher-example.html","../../../../../../../src/components-examples/material/input/input-errors/input-errors-example.ts","../../../../../../../src/components-examples/material/input/input-errors/input-errors-example.html","../../../../../../../src/components-examples/material/input/input-form/input-form-example.ts","../../../../../../../src/components-examples/material/input/input-form/input-form-example.html","../../../../../../../src/components-examples/material/input/input-hint/input-hint-example.ts","../../../../../../../src/components-examples/material/input/input-hint/input-hint-example.html","../../../../../../../src/components-examples/material/input/input-overview/input-overview-example.ts","../../../../../../../src/components-examples/material/input/input-overview/input-overview-example.html","../../../../../../../src/components-examples/material/input/input-prefix-suffix/input-prefix-suffix-example.ts","../../../../../../../src/components-examples/material/input/input-prefix-suffix/input-prefix-suffix-example.html","../../../../../../../src/components-examples/material/input/input-harness/input-harness-example.ts","../../../../../../../src/components-examples/material/input/input-harness/input-harness-example.html","../../../../../../../src/components-examples/material/input/input_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Input with a clear button\n */\n@Component({\n selector: 'input-clearable-example',\n templateUrl: './input-clearable-example.html',\n styleUrl: './input-clearable-example.css',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule, MatIconModule],\n})\nexport class InputClearableExample {\n value = 'Clear me';\n}\n","\n Clearable input\n \n @if (value) {\n \n }\n\n","import {Component} from '@angular/core';\nimport {\n FormControl,\n FormGroupDirective,\n NgForm,\n Validators,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport {ErrorStateMatcher} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** Error when invalid control is dirty, touched, or submitted. */\nexport class MyErrorStateMatcher implements ErrorStateMatcher {\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n/** @title Input with a custom ErrorStateMatcher */\n@Component({\n selector: 'input-error-state-matcher-example',\n templateUrl: './input-error-state-matcher-example.html',\n styleUrl: './input-error-state-matcher-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule],\n})\nexport class InputErrorStateMatcherExample {\n emailFormControl = new FormControl('', [Validators.required, Validators.email]);\n\n matcher = new MyErrorStateMatcher();\n}\n","
    \n \n Email\n \n Errors appear instantly!\n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Input with error messages\n */\n@Component({\n selector: 'input-errors-example',\n templateUrl: 'input-errors-example.html',\n styleUrl: 'input-errors-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule],\n})\nexport class InputErrorsExample {\n emailFormControl = new FormControl('', [Validators.required, Validators.email]);\n}\n","
    \n \n Email\n \n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Inputs in a form\n */\n@Component({\n selector: 'input-form-example',\n templateUrl: 'input-form-example.html',\n styleUrl: 'input-form-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputFormExample {}\n","
    \n \n Company (disabled)\n \n \n\n \n \n \n
    \n First name\n \n \n Long Last Name That Will Be Truncated\n \n
    \n\n

    \n \n Address\n \n \n \n Address 2\n \n \n

    \n\n \n \n \n \n
    \n City\n \n \n State\n \n \n Postal Code\n \n {{postalCode.value.length}} / 5\n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Input with hints\n */\n@Component({\n selector: 'input-hint-example',\n templateUrl: 'input-hint-example.html',\n styleUrl: 'input-hint-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputHintExample {}\n","
    \n \n Message\n \n Don't disclose personal info \n {{message.value.length}} / 256\n \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Basic Inputs\n */\n@Component({\n selector: 'input-overview-example',\n styleUrl: 'input-overview-example.css',\n templateUrl: 'input-overview-example.html',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputOverviewExample {}\n","
    \n \n Favorite food\n \n \n\n \n Leave a comment\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Inputs with prefixes and suffixes\n */\n@Component({\n selector: 'input-prefix-suffix-example',\n templateUrl: 'input-prefix-suffix-example.html',\n styleUrl: 'input-prefix-suffix-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, MatIconModule],\n})\nexport class InputPrefixSuffixExample {}\n","
    \n \n Telephone\n +1  \n \n mode_edit\n \n
    \n","import {Component, signal} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Testing with MatInputHarness\n */\n@Component({\n selector: 'input-harness-example',\n templateUrl: 'input-harness-example.html',\n imports: [MatFormFieldModule, MatInputModule],\n})\nexport class InputHarnessExample {\n inputType = signal('number');\n disabled = signal(false);\n}\n","\n Favorite food\n \n\n\n\n \n\n\n\n Leave a comment\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i4"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"input.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-clearable/input-clearable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-clearable/input-clearable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-error-state-matcher/input-error-state-matcher-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-error-state-matcher/input-error-state-matcher-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-errors/input-errors-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-errors/input-errors-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-form/input-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-form/input-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-hint/input-hint-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-hint/input-hint-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-overview/input-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-overview/input-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-prefix-suffix/input-prefix-suffix-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-prefix-suffix/input-prefix-suffix-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-harness/input-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/input/input-harness/input-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Input with a clear button\n */\n@Component({\n selector: 'input-clearable-example',\n templateUrl: './input-clearable-example.html',\n styleUrl: './input-clearable-example.css',\n imports: [MatFormFieldModule, MatInputModule, FormsModule, MatButtonModule, MatIconModule],\n})\nexport class InputClearableExample {\n value = 'Clear me';\n}\n","\n Clearable input\n \n @if (value) {\n \n }\n\n","import {Component} from '@angular/core';\nimport {\n FormControl,\n FormGroupDirective,\n NgForm,\n Validators,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport {ErrorStateMatcher} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** Error when invalid control is dirty, touched, or submitted. */\nexport class MyErrorStateMatcher implements ErrorStateMatcher {\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n/** @title Input with a custom ErrorStateMatcher */\n@Component({\n selector: 'input-error-state-matcher-example',\n templateUrl: './input-error-state-matcher-example.html',\n styleUrl: './input-error-state-matcher-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule],\n})\nexport class InputErrorStateMatcherExample {\n emailFormControl = new FormControl('', [Validators.required, Validators.email]);\n\n matcher = new MyErrorStateMatcher();\n}\n","
    \n \n Email\n \n Errors appear instantly!\n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Input with error messages\n */\n@Component({\n selector: 'input-errors-example',\n templateUrl: 'input-errors-example.html',\n styleUrl: 'input-errors-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, ReactiveFormsModule],\n})\nexport class InputErrorsExample {\n emailFormControl = new FormControl('', [Validators.required, Validators.email]);\n}\n","
    \n \n Email\n \n @if (emailFormControl.hasError('email') && !emailFormControl.hasError('required')) {\n Please enter a valid email address\n }\n @if (emailFormControl.hasError('required')) {\n Email is required\n }\n \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Inputs in a form\n */\n@Component({\n selector: 'input-form-example',\n templateUrl: 'input-form-example.html',\n styleUrl: 'input-form-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputFormExample {}\n","
    \n \n Company (disabled)\n \n \n\n \n \n \n
    \n First name\n \n \n Long Last Name That Will Be Truncated\n \n
    \n\n

    \n \n Address\n \n \n \n Address 2\n \n \n

    \n\n \n \n \n \n
    \n City\n \n \n State\n \n \n Postal Code\n \n {{postalCode.value.length}} / 5\n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Input with hints\n */\n@Component({\n selector: 'input-hint-example',\n templateUrl: 'input-hint-example.html',\n styleUrl: 'input-hint-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputHintExample {}\n","
    \n \n Message\n \n Don't disclose personal info \n {{message.value.length}} / 256\n \n
    \n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Basic Inputs\n */\n@Component({\n selector: 'input-overview-example',\n styleUrl: 'input-overview-example.css',\n templateUrl: 'input-overview-example.html',\n imports: [FormsModule, MatFormFieldModule, MatInputModule],\n})\nexport class InputOverviewExample {}\n","
    \n \n Favorite food\n \n \n\n \n Leave a comment\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\n/**\n * @title Inputs with prefixes and suffixes\n */\n@Component({\n selector: 'input-prefix-suffix-example',\n templateUrl: 'input-prefix-suffix-example.html',\n styleUrl: 'input-prefix-suffix-example.css',\n imports: [FormsModule, MatFormFieldModule, MatInputModule, MatIconModule],\n})\nexport class InputPrefixSuffixExample {}\n","
    \n \n Telephone\n +1  \n \n mode_edit\n \n
    \n","import {Component, signal} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Testing with MatInputHarness\n */\n@Component({\n selector: 'input-harness-example',\n templateUrl: 'input-harness-example.html',\n imports: [MatFormFieldModule, MatInputModule],\n})\nexport class InputHarnessExample {\n inputType = signal('number');\n disabled = signal(false);\n}\n","\n Favorite food\n \n\n\n\n \n\n\n\n Leave a comment\n \n\n"],"names":["i4","i5","i2","i3","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/list.mjs b/fesm2022/material/list.mjs index 21d59aa607..77e36375a6 100755 --- a/fesm2022/material/list.mjs +++ b/fesm2022/material/list.mjs @@ -2,22 +2,21 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; import * as i1 from '@angular/material/list'; import { MatListModule } from '@angular/material/list'; -import * as i2 from '@angular/material/divider'; import { MatDividerModule } from '@angular/material/divider'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; import { DatePipe } from '@angular/common'; -import * as i2$1 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormControl, FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms'; /** * @title Basic list */ class ListOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ListOverviewExample, isStandalone: true, selector: "list-overview-example", ngImport: i0, template: "\n Item 1\n Item 2\n Item 3\n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ListOverviewExample, isStandalone: true, selector: "list-overview-example", ngImport: i0, template: "\n Item 1\n Item 2\n Item 3\n\n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListOverviewExample, decorators: [{ type: Component, args: [{ selector: 'list-overview-example', imports: [MatListModule], template: "\n Item 1\n Item 2\n Item 3\n\n" }] }] }); @@ -50,10 +49,10 @@ class ListSectionsExample { updated: new Date('1/18/16'), }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSectionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ListSectionsExample, isStandalone: true, selector: "list-sections-example", ngImport: i0, template: "\n
    Folders
    \n @for (folder of folders; track folder) {\n \n folder\n
    {{folder.name}}
    \n
    {{folder.updated | date}}
    \n
    \n }\n \n
    Notes
    \n @for (note of notes; track note) {\n \n note\n
    {{note.name}}
    \n
    {{note.updated | date}}
    \n
    \n }\n
    \n", styles: [".mat-mdc-list-item-icon {\n color: rgba(0, 0, 0, 0.54);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListSubheaderCssMatStyler, selector: "[mat-subheader], [matSubheader]" }, { kind: "component", type: i2.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "pipe", type: DatePipe, name: "date" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSectionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ListSectionsExample, isStandalone: true, selector: "list-sections-example", ngImport: i0, template: "\n
    Folders
    \n @for (folder of folders; track folder) {\n \n folder\n
    {{folder.name}}
    \n
    {{folder.updated | date}}
    \n
    \n }\n \n
    Notes
    \n @for (note of notes; track note) {\n \n note\n
    {{note.name}}
    \n
    {{note.updated | date}}
    \n
    \n }\n
    \n", styles: [".mat-mdc-list-item-icon {\n color: rgba(0, 0, 0, 0.54);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListSubheaderCssMatStyler, selector: "[mat-subheader], [matSubheader]" }, { kind: "component", type: i1.MatDivider, selector: "mat-divider", inputs: ["vertical", "inset"] }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatDividerModule }, { kind: "pipe", type: DatePipe, name: "date" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSectionsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSectionsExample, decorators: [{ type: Component, args: [{ selector: 'list-sections-example', imports: [MatListModule, MatIconModule, MatDividerModule, DatePipe], template: "\n
    Folders
    \n @for (folder of folders; track folder) {\n \n folder\n
    {{folder.name}}
    \n
    {{folder.updated | date}}
    \n
    \n }\n \n
    Notes
    \n @for (note of notes; track note) {\n \n note\n
    {{note.name}}
    \n
    {{note.updated | date}}
    \n
    \n }\n
    \n", styles: [".mat-mdc-list-item-icon {\n color: rgba(0, 0, 0, 0.54);\n}\n"] }] }] }); @@ -63,10 +62,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ListSelectionExample { typesOfShoes = ['Boots', 'Clogs', 'Loafers', 'Moccasins', 'Sneakers']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ListSelectionExample, isStandalone: true, selector: "list-selection-example", ngImport: i0, template: "\n @for (shoe of typesOfShoes; track shoe) {\n {{shoe}}\n }\n\n\n

    \n Options selected: {{shoes.selectedOptions.selected.length}}\n

    \n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ListSelectionExample, isStandalone: true, selector: "list-selection-example", ngImport: i0, template: "\n @for (shoe of typesOfShoes; track shoe) {\n {{shoe}}\n }\n\n\n

    \n Options selected: {{shoes.selectedOptions.selected.length}}\n

    \n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSelectionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSelectionExample, decorators: [{ type: Component, args: [{ selector: 'list-selection-example', imports: [MatListModule], template: "\n @for (shoe of typesOfShoes; track shoe) {\n {{shoe}}\n }\n\n\n

    \n Options selected: {{shoes.selectedOptions.selected.length}}\n

    \n" }] }] }); @@ -89,10 +88,10 @@ class ListSingleSelectionExample { clothes: this.shoesControl, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSingleSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ListSingleSelectionExample, isStandalone: true, selector: "list-single-selection-example", ngImport: i0, template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i2$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSingleSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ListSingleSelectionExample, isStandalone: true, selector: "list-single-selection-example", ngImport: i0, template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSingleSelectionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSingleSelectionExample, decorators: [{ type: Component, args: [{ selector: 'list-single-selection-example', imports: [MatListModule, FormsModule, ReactiveFormsModule], template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    " }] }], ctorParameters: () => [] }); @@ -115,10 +114,10 @@ class ListSingleSelectionReactiveFormExample { clothes: this.shoesControl, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSingleSelectionReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ListSingleSelectionReactiveFormExample, isStandalone: true, selector: "list-single-selection-reactive-form-example", ngImport: i0, template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i2$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSingleSelectionReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ListSingleSelectionReactiveFormExample, isStandalone: true, selector: "list-single-selection-reactive-form-example", ngImport: i0, template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i1.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListSingleSelectionReactiveFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListSingleSelectionReactiveFormExample, decorators: [{ type: Component, args: [{ selector: 'list-single-selection-reactive-form-example', imports: [MatListModule, FormsModule, ReactiveFormsModule], template: "
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    " }] }], ctorParameters: () => [] }); @@ -127,10 +126,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatListHarness */ class ListHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ListHarnessExample, isStandalone: true, selector: "list-harness-example", ngImport: i0, template: "\n \n
    Item
    \n
    1
    \n
    icon
    \n
    Avatar
    \n
    \n
    Section 1
    \n \n Item 2\n \n \n
    Section 2
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemAvatar, selector: "[matListItemAvatar]" }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListSubheaderCssMatStyler, selector: "[mat-subheader], [matSubheader]" }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ListHarnessExample, isStandalone: true, selector: "list-harness-example", ngImport: i0, template: "\n \n
    Item
    \n
    1
    \n
    icon
    \n
    Avatar
    \n
    \n
    Section 1
    \n \n Item 2\n \n \n
    Section 2
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemAvatar, selector: "[matListItemAvatar]" }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListSubheaderCssMatStyler, selector: "[mat-subheader], [matSubheader]" }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListHarnessExample, decorators: [{ type: Component, args: [{ selector: 'list-harness-example', imports: [MatListModule], template: "\n \n
    Item
    \n
    1
    \n
    icon
    \n
    Avatar
    \n
    \n
    Section 1
    \n \n Item 2\n \n \n
    Section 2
    \n
    \n" }] }] }); @@ -139,17 +138,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title List variants */ class ListVariantsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListVariantsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ListVariantsExample, isStandalone: true, selector: "list-variants-example", ngImport: i0, template: "

    Single line lists

    \n\n \n This is the title\n \n Also the title\n\n\n

    Two line lists

    \n\n \n Title\n Second line\n \n \n Title\n Second line\n \n \n Title\n Second line\n \n\n\n

    Three line lists

    \n\n \n Title\n Second line\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n\n\n

    Three line list with secondary text wrapping

    \n\n \n Title\n \n Secondary line that will wrap because the list lines is explicitly set to 3 lines. Text\n inside of a `matListItemTitle` or `matListItemLine` will never wrap.\n \n \n \n Title\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\n non proident, sunt in culpa qui officia deserunt mollit anim id est\n \n\n", styles: [".example-list-wrapping {\n max-width: 500px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListVariantsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ListVariantsExample, isStandalone: true, selector: "list-variants-example", ngImport: i0, template: "

    Single line lists

    \n\n \n This is the title\n \n Also the title\n\n\n

    Two line lists

    \n\n \n Title\n Second line\n \n \n Title\n Second line\n \n \n Title\n Second line\n \n\n\n

    Three line lists

    \n\n \n Title\n Second line\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n\n\n

    Three line list with secondary text wrapping

    \n\n \n Title\n \n Secondary line that will wrap because the list lines is explicitly set to 3 lines. Text\n inside of a `matListItemTitle` or `matListItemLine` will never wrap.\n \n \n \n Title\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\n non proident, sunt in culpa qui officia deserunt mollit anim id est\n \n\n", styles: [".example-list-wrapping {\n max-width: 500px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatList, selector: "mat-list", exportAs: ["matList"] }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemLine, selector: "[matListItemLine]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ListVariantsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ListVariantsExample, decorators: [{ type: Component, args: [{ selector: 'list-variants-example', imports: [MatListModule], template: "

    Single line lists

    \n\n \n This is the title\n \n Also the title\n\n\n

    Two line lists

    \n\n \n Title\n Second line\n \n \n Title\n Second line\n \n \n Title\n Second line\n \n\n\n

    Three line lists

    \n\n \n Title\n Second line\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n\n\n

    Three line list with secondary text wrapping

    \n\n \n Title\n \n Secondary line that will wrap because the list lines is explicitly set to 3 lines. Text\n inside of a `matListItemTitle` or `matListItemLine` will never wrap.\n \n \n \n Title\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\n non proident, sunt in culpa qui officia deserunt mollit anim id est\n \n\n", styles: [".example-list-wrapping {\n max-width: 500px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ListHarnessExample, ListOverviewExample, ListSectionsExample, ListSelectionExample, ListSingleSelectionExample, ListSingleSelectionReactiveFormExample, ListVariantsExample }; //# sourceMappingURL=list.mjs.map diff --git a/fesm2022/material/list.mjs.map b/fesm2022/material/list.mjs.map index 42b0e59074..8305e16f5f 100755 --- a/fesm2022/material/list.mjs.map +++ b/fesm2022/material/list.mjs.map @@ -1 +1 @@ -{"version":3,"file":"list.mjs","sources":["../../../../../../../src/components-examples/material/list/list-overview/list-overview-example.ts","../../../../../../../src/components-examples/material/list/list-overview/list-overview-example.html","../../../../../../../src/components-examples/material/list/list-sections/list-sections-example.ts","../../../../../../../src/components-examples/material/list/list-sections/list-sections-example.html","../../../../../../../src/components-examples/material/list/list-selection/list-selection-example.ts","../../../../../../../src/components-examples/material/list/list-selection/list-selection-example.html","../../../../../../../src/components-examples/material/list/list-single-selection/list-single-selection-example.ts","../../../../../../../src/components-examples/material/list/list-single-selection/list-single-selection-example.html","../../../../../../../src/components-examples/material/list/list-single-selection-reactive-form/list-single-selection-reactive-form-example.ts","../../../../../../../src/components-examples/material/list/list-single-selection-reactive-form/list-single-selection-form-example.html","../../../../../../../src/components-examples/material/list/list-harness/list-harness-example.ts","../../../../../../../src/components-examples/material/list/list-harness/list-harness-example.html","../../../../../../../src/components-examples/material/list/list-variants/list-variants-example.ts","../../../../../../../src/components-examples/material/list/list-variants/list-variants-example.html","../../../../../../../src/components-examples/material/list/list_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Basic list\n */\n@Component({\n selector: 'list-overview-example',\n templateUrl: 'list-overview-example.html',\n imports: [MatListModule],\n})\nexport class ListOverviewExample {}\n","\n Item 1\n Item 2\n Item 3\n\n","import {Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatIconModule} from '@angular/material/icon';\nimport {DatePipe} from '@angular/common';\nimport {MatListModule} from '@angular/material/list';\n\nexport interface Section {\n name: string;\n updated: Date;\n}\n\n/**\n * @title List with sections\n */\n@Component({\n selector: 'list-sections-example',\n styleUrl: 'list-sections-example.css',\n templateUrl: 'list-sections-example.html',\n imports: [MatListModule, MatIconModule, MatDividerModule, DatePipe],\n})\nexport class ListSectionsExample {\n folders: Section[] = [\n {\n name: 'Photos',\n updated: new Date('1/1/16'),\n },\n {\n name: 'Recipes',\n updated: new Date('1/17/16'),\n },\n {\n name: 'Work',\n updated: new Date('1/28/16'),\n },\n ];\n notes: Section[] = [\n {\n name: 'Vacation Itinerary',\n updated: new Date('2/20/16'),\n },\n {\n name: 'Kitchen Remodel',\n updated: new Date('1/18/16'),\n },\n ];\n}\n","\n
    Folders
    \n @for (folder of folders; track folder) {\n \n folder\n
    {{folder.name}}
    \n
    {{folder.updated | date}}
    \n
    \n }\n \n
    Notes
    \n @for (note of notes; track note) {\n \n note\n
    {{note.name}}
    \n
    {{note.updated | date}}
    \n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title List with selection\n */\n@Component({\n selector: 'list-selection-example',\n templateUrl: 'list-selection-example.html',\n imports: [MatListModule],\n})\nexport class ListSelectionExample {\n typesOfShoes: string[] = ['Boots', 'Clogs', 'Loafers', 'Moccasins', 'Sneakers'];\n}\n","\n @for (shoe of typesOfShoes; track shoe) {\n {{shoe}}\n }\n\n\n

    \n Options selected: {{shoes.selectedOptions.selected.length}}\n

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatListModule} from '@angular/material/list';\ninterface Shoes {\n value: string;\n name: string;\n}\n/**\n * @title List with single selection using Reactive Forms\n */\n@Component({\n selector: 'list-single-selection-example',\n templateUrl: 'list-single-selection-example.html',\n imports: [MatListModule, FormsModule, ReactiveFormsModule],\n})\nexport class ListSingleSelectionExample {\n form: FormGroup;\n shoes: Shoes[] = [\n {value: 'boots', name: 'Boots'},\n {value: 'clogs', name: 'Clogs'},\n {value: 'loafers', name: 'Loafers'},\n {value: 'moccasins', name: 'Moccasins'},\n {value: 'sneakers', name: 'Sneakers'},\n ];\n shoesControl = new FormControl();\n\n constructor() {\n this.form = new FormGroup({\n clothes: this.shoesControl,\n });\n }\n}\n","
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatListModule} from '@angular/material/list';\n\ninterface Shoes {\n value: string;\n name: string;\n}\n/**\n * @title List with single selection using Reactive forms\n */\n@Component({\n selector: 'list-single-selection-reactive-form-example',\n templateUrl: 'list-single-selection-form-example.html',\n imports: [MatListModule, FormsModule, ReactiveFormsModule],\n})\nexport class ListSingleSelectionReactiveFormExample {\n form: FormGroup;\n shoes: Shoes[] = [\n {value: 'boots', name: 'Boots'},\n {value: 'clogs', name: 'Clogs'},\n {value: 'loafers', name: 'Loafers'},\n {value: 'moccasins', name: 'Moccasins'},\n {value: 'sneakers', name: 'Sneakers'},\n ];\n shoesControl = new FormControl();\n\n constructor() {\n this.form = new FormGroup({\n clothes: this.shoesControl,\n });\n }\n}\n","
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Testing with MatListHarness\n */\n@Component({\n selector: 'list-harness-example',\n templateUrl: 'list-harness-example.html',\n imports: [MatListModule],\n})\nexport class ListHarnessExample {}\n","\n \n
    Item
    \n
    1
    \n
    icon
    \n
    Avatar
    \n
    \n
    Section 1
    \n \n Item 2\n \n \n
    Section 2
    \n
    \n","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title List variants\n */\n@Component({\n selector: 'list-variants-example',\n templateUrl: 'list-variants-example.html',\n styleUrl: './list-variants-example.css',\n imports: [MatListModule],\n})\nexport class ListVariantsExample {}\n","

    Single line lists

    \n\n \n This is the title\n \n Also the title\n\n\n

    Two line lists

    \n\n \n Title\n Second line\n \n \n Title\n Second line\n \n \n Title\n Second line\n \n\n\n

    Three line lists

    \n\n \n Title\n Second line\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n\n\n

    Three line list with secondary text wrapping

    \n\n \n Title\n \n Secondary line that will wrap because the list lines is explicitly set to 3 lines. Text\n inside of a `matListItemTitle` or `matListItemLine` will never wrap.\n \n \n \n Title\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\n non proident, sunt in culpa qui officia deserunt mollit anim id est\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"list.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-overview/list-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-overview/list-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-sections/list-sections-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-sections/list-sections-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-selection/list-selection-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-selection/list-selection-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-single-selection/list-single-selection-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-single-selection/list-single-selection-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-single-selection-reactive-form/list-single-selection-reactive-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-single-selection-reactive-form/list-single-selection-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-harness/list-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-harness/list-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-variants/list-variants-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/list/list-variants/list-variants-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Basic list\n */\n@Component({\n selector: 'list-overview-example',\n templateUrl: 'list-overview-example.html',\n imports: [MatListModule],\n})\nexport class ListOverviewExample {}\n","\n Item 1\n Item 2\n Item 3\n\n","import {Component} from '@angular/core';\nimport {MatDividerModule} from '@angular/material/divider';\nimport {MatIconModule} from '@angular/material/icon';\nimport {DatePipe} from '@angular/common';\nimport {MatListModule} from '@angular/material/list';\n\nexport interface Section {\n name: string;\n updated: Date;\n}\n\n/**\n * @title List with sections\n */\n@Component({\n selector: 'list-sections-example',\n styleUrl: 'list-sections-example.css',\n templateUrl: 'list-sections-example.html',\n imports: [MatListModule, MatIconModule, MatDividerModule, DatePipe],\n})\nexport class ListSectionsExample {\n folders: Section[] = [\n {\n name: 'Photos',\n updated: new Date('1/1/16'),\n },\n {\n name: 'Recipes',\n updated: new Date('1/17/16'),\n },\n {\n name: 'Work',\n updated: new Date('1/28/16'),\n },\n ];\n notes: Section[] = [\n {\n name: 'Vacation Itinerary',\n updated: new Date('2/20/16'),\n },\n {\n name: 'Kitchen Remodel',\n updated: new Date('1/18/16'),\n },\n ];\n}\n","\n
    Folders
    \n @for (folder of folders; track folder) {\n \n folder\n
    {{folder.name}}
    \n
    {{folder.updated | date}}
    \n
    \n }\n \n
    Notes
    \n @for (note of notes; track note) {\n \n note\n
    {{note.name}}
    \n
    {{note.updated | date}}
    \n
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title List with selection\n */\n@Component({\n selector: 'list-selection-example',\n templateUrl: 'list-selection-example.html',\n imports: [MatListModule],\n})\nexport class ListSelectionExample {\n typesOfShoes: string[] = ['Boots', 'Clogs', 'Loafers', 'Moccasins', 'Sneakers'];\n}\n","\n @for (shoe of typesOfShoes; track shoe) {\n {{shoe}}\n }\n\n\n

    \n Options selected: {{shoes.selectedOptions.selected.length}}\n

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatListModule} from '@angular/material/list';\ninterface Shoes {\n value: string;\n name: string;\n}\n/**\n * @title List with single selection using Reactive Forms\n */\n@Component({\n selector: 'list-single-selection-example',\n templateUrl: 'list-single-selection-example.html',\n imports: [MatListModule, FormsModule, ReactiveFormsModule],\n})\nexport class ListSingleSelectionExample {\n form: FormGroup;\n shoes: Shoes[] = [\n {value: 'boots', name: 'Boots'},\n {value: 'clogs', name: 'Clogs'},\n {value: 'loafers', name: 'Loafers'},\n {value: 'moccasins', name: 'Moccasins'},\n {value: 'sneakers', name: 'Sneakers'},\n ];\n shoesControl = new FormControl();\n\n constructor() {\n this.form = new FormGroup({\n clothes: this.shoesControl,\n });\n }\n}\n","
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatListModule} from '@angular/material/list';\n\ninterface Shoes {\n value: string;\n name: string;\n}\n/**\n * @title List with single selection using Reactive forms\n */\n@Component({\n selector: 'list-single-selection-reactive-form-example',\n templateUrl: 'list-single-selection-form-example.html',\n imports: [MatListModule, FormsModule, ReactiveFormsModule],\n})\nexport class ListSingleSelectionReactiveFormExample {\n form: FormGroup;\n shoes: Shoes[] = [\n {value: 'boots', name: 'Boots'},\n {value: 'clogs', name: 'Clogs'},\n {value: 'loafers', name: 'Loafers'},\n {value: 'moccasins', name: 'Moccasins'},\n {value: 'sneakers', name: 'Sneakers'},\n ];\n shoesControl = new FormControl();\n\n constructor() {\n this.form = new FormGroup({\n clothes: this.shoesControl,\n });\n }\n}\n","
    \n \n @for (shoe of shoes; track shoe) {\n {{shoe.name}}\n }\n \n

    \n Option selected: {{shoesControl.value ? shoesControl.value[0] : 'None'}} \n

    \n
    ","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title Testing with MatListHarness\n */\n@Component({\n selector: 'list-harness-example',\n templateUrl: 'list-harness-example.html',\n imports: [MatListModule],\n})\nexport class ListHarnessExample {}\n","\n \n
    Item
    \n
    1
    \n
    icon
    \n
    Avatar
    \n
    \n
    Section 1
    \n \n Item 2\n \n \n
    Section 2
    \n
    \n","import {Component} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\n\n/**\n * @title List variants\n */\n@Component({\n selector: 'list-variants-example',\n templateUrl: 'list-variants-example.html',\n styleUrl: './list-variants-example.css',\n imports: [MatListModule],\n})\nexport class ListVariantsExample {}\n","

    Single line lists

    \n\n \n This is the title\n \n Also the title\n\n\n

    Two line lists

    \n\n \n Title\n Second line\n \n \n Title\n Second line\n \n \n Title\n Second line\n \n\n\n

    Three line lists

    \n\n \n Title\n Second line\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n \n Title\n Second line. This line will truncate.\n Third line\n \n\n\n

    Three line list with secondary text wrapping

    \n\n \n Title\n \n Secondary line that will wrap because the list lines is explicitly set to 3 lines. Text\n inside of a `matListItemTitle` or `matListItemLine` will never wrap.\n \n \n \n Title\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\n non proident, sunt in culpa qui officia deserunt mollit anim id est\n \n\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/menu.mjs b/fesm2022/material/menu.mjs index 761f1c503d..874537a93d 100755 --- a/fesm2022/material/menu.mjs +++ b/fesm2022/material/menu.mjs @@ -11,65 +11,61 @@ import { MatButtonModule } from '@angular/material/button'; * @title Menu with icons */ class MenuIconsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuIconsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MenuIconsExample, isStandalone: true, selector: "menu-icons-example", ngImport: i0, template: "\n\n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuIconsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MenuIconsExample, isStandalone: true, selector: "menu-icons-example", ngImport: i0, template: "\n\n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuIconsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuIconsExample, decorators: [{ type: Component, - args: [{ selector: 'menu-icons-example', imports: [MatButtonModule, MatMenuModule, MatIconModule], template: "\n\n \n \n \n\n" }] + args: [{ selector: 'menu-icons-example', imports: [MatButtonModule, MatMenuModule, MatIconModule], template: "\n\n \n \n \n\n" }] }] }); /** * @title Basic menu */ class MenuOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MenuOverviewExample, isStandalone: true, selector: "menu-overview-example", ngImport: i0, template: "\n\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MenuOverviewExample, isStandalone: true, selector: "menu-overview-example", ngImport: i0, template: "\n\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'menu-overview-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n\n \n \n\n" }] + args: [{ selector: 'menu-overview-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n\n \n \n\n" }] }] }); /** * @title Menu positioning */ class MenuPositionExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MenuPositionExample, isStandalone: true, selector: "menu-position-example", ngImport: i0, template: "\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MenuPositionExample, isStandalone: true, selector: "menu-position-example", ngImport: i0, template: "\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuPositionExample, decorators: [{ type: Component, - args: [{ selector: 'menu-position-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n" }] + args: [{ selector: 'menu-position-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n" }] }] }); /** * @title Nested menu */ class MenuNestedExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuNestedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MenuNestedExample, isStandalone: true, selector: "menu-nested-example", ngImport: i0, template: "\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuNestedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MenuNestedExample, isStandalone: true, selector: "menu-nested-example", ngImport: i0, template: "\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuNestedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuNestedExample, decorators: [{ type: Component, - args: [{ selector: 'menu-nested-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n" }] + args: [{ selector: 'menu-nested-example', imports: [MatButtonModule, MatMenuModule], template: "\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n" }] }] }); /** * @title Testing with MatMenuHarness */ class MenuHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: MenuHarnessExample, isStandalone: true, selector: "menu-harness-example", ngImport: i0, template: "\n\n\n\n Profile\n Account\n\n", dependencies: [{ kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: MenuHarnessExample, isStandalone: true, selector: "menu-harness-example", ngImport: i0, template: "\n\n\n\n Profile\n Account\n\n", dependencies: [{ kind: "ngmodule", type: MatMenuModule }, { kind: "component", type: i2.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MenuHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MenuHarnessExample, decorators: [{ type: Component, args: [{ selector: 'menu-harness-example', imports: [MatMenuModule], template: "\n\n\n\n Profile\n Account\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { MenuHarnessExample, MenuIconsExample, MenuNestedExample, MenuOverviewExample, MenuPositionExample }; //# sourceMappingURL=menu.mjs.map diff --git a/fesm2022/material/menu.mjs.map b/fesm2022/material/menu.mjs.map index 8458c557b6..a5fa490752 100755 --- a/fesm2022/material/menu.mjs.map +++ b/fesm2022/material/menu.mjs.map @@ -1 +1 @@ -{"version":3,"file":"menu.mjs","sources":["../../../../../../../src/components-examples/material/menu/menu-icons/menu-icons-example.ts","../../../../../../../src/components-examples/material/menu/menu-icons/menu-icons-example.html","../../../../../../../src/components-examples/material/menu/menu-overview/menu-overview-example.ts","../../../../../../../src/components-examples/material/menu/menu-overview/menu-overview-example.html","../../../../../../../src/components-examples/material/menu/menu-position/menu-position-example.ts","../../../../../../../src/components-examples/material/menu/menu-position/menu-position-example.html","../../../../../../../src/components-examples/material/menu/menu-nested/menu-nested-example.ts","../../../../../../../src/components-examples/material/menu/menu-nested/menu-nested-example.html","../../../../../../../src/components-examples/material/menu/menu-harness/menu-harness-example.ts","../../../../../../../src/components-examples/material/menu/menu-harness/menu-harness-example.html","../../../../../../../src/components-examples/material/menu/menu_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Menu with icons\n */\n@Component({\n selector: 'menu-icons-example',\n templateUrl: 'menu-icons-example.html',\n imports: [MatButtonModule, MatMenuModule, MatIconModule],\n})\nexport class MenuIconsExample {}\n","\n\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic menu\n */\n@Component({\n selector: 'menu-overview-example',\n templateUrl: 'menu-overview-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuOverviewExample {}\n","\n\n\n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Menu positioning\n */\n@Component({\n selector: 'menu-position-example',\n templateUrl: 'menu-position-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuPositionExample {}\n","\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Nested menu\n */\n@Component({\n selector: 'menu-nested-example',\n templateUrl: 'menu-nested-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuNestedExample {}\n","\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\n\n/**\n * @title Testing with MatMenuHarness\n */\n@Component({\n selector: 'menu-harness-example',\n templateUrl: 'menu-harness-example.html',\n imports: [MatMenuModule],\n})\nexport class MenuHarnessExample {}\n","\n\n\n\n Profile\n Account\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"menu.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-icons/menu-icons-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-icons/menu-icons-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-overview/menu-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-overview/menu-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-position/menu-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-position/menu-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-nested/menu-nested-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-nested/menu-nested-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-harness/menu-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/menu/menu-harness/menu-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Menu with icons\n */\n@Component({\n selector: 'menu-icons-example',\n templateUrl: 'menu-icons-example.html',\n imports: [MatButtonModule, MatMenuModule, MatIconModule],\n})\nexport class MenuIconsExample {}\n","\n\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic menu\n */\n@Component({\n selector: 'menu-overview-example',\n templateUrl: 'menu-overview-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuOverviewExample {}\n","\n\n\n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Menu positioning\n */\n@Component({\n selector: 'menu-position-example',\n templateUrl: 'menu-position-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuPositionExample {}\n","\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n \n \n\n\n\n\n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Nested menu\n */\n@Component({\n selector: 'menu-nested-example',\n templateUrl: 'menu-nested-example.html',\n imports: [MatButtonModule, MatMenuModule],\n})\nexport class MenuNestedExample {}\n","\n\n\n \n \n\n\n\n \n \n \n \n \n\n\n\n\n \n \n \n \n \n \n \n\n\n\n \n \n \n \n \n\n\n\n \n \n \n \n\n\n\n \n \n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatMenuModule} from '@angular/material/menu';\n\n/**\n * @title Testing with MatMenuHarness\n */\n@Component({\n selector: 'menu-harness-example',\n templateUrl: 'menu-harness-example.html',\n imports: [MatMenuModule],\n})\nexport class MenuHarnessExample {}\n","\n\n\n\n Profile\n Account\n\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/paginator.mjs b/fesm2022/material/paginator.mjs index b17606d996..4c23e7ef09 100755 --- a/fesm2022/material/paginator.mjs +++ b/fesm2022/material/paginator.mjs @@ -1,9 +1,9 @@ import * as i0 from '@angular/core'; import { Component, Injectable } from '@angular/core'; -import * as i1$1 from '@angular/material/paginator'; +import * as i1$2 from '@angular/material/paginator'; import { MatPaginatorModule, MatPaginatorIntl } from '@angular/material/paginator'; import { JsonPipe } from '@angular/common'; -import * as i4 from '@angular/material/slide-toggle'; +import * as i1$1 from '@angular/material/slide-toggle'; import { MatSlideToggleModule } from '@angular/material/slide-toggle'; import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; @@ -37,10 +37,10 @@ class PaginatorConfigurableExample { this.pageSizeOptions = setPageSizeOptionsInput.split(',').map(str => +str); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PaginatorConfigurableExample, isStandalone: true, selector: "paginator-configurable-example", ngImport: i0, template: "
    \n \n Length\n \n \n\n \n Page Size\n \n \n\n \n Page Index\n \n \n\n \n Page Size Options\n \n \n\n
    \n Hide page size\n Show multiple page size options\n Show first/last buttons\n Disabled\n
    \n
    \n\n\n\n\n
    \n
    Output event: {{(pageEvent | json) || 'No events dispatched yet'}}
    \n
    getNumberOfPages: {{paginator.getNumberOfPages()}}
    \n
    \n", styles: [".demo-toggles {\n display: flex;\n flex-direction: column;\n}\n\n.demo-toggles * {\n margin-bottom: 16px;\n}\n\n.demo-options {\n display: flex;\n flex-direction: column;\n width: 600px;\n}\n\n.demo-data * {\n margin: 16px 0;\n}\n\n.demo-paginator {\n width: 600px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i4.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$1.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PaginatorConfigurableExample, isStandalone: true, selector: "paginator-configurable-example", ngImport: i0, template: "
    \n \n Length\n \n \n\n \n Page Size\n \n \n\n \n Page Index\n \n \n\n \n Page Size Options\n \n \n\n
    \n Hide page size\n Show multiple page size options\n Show first/last buttons\n Disabled\n
    \n
    \n\n\n\n\n
    \n
    Output event: {{(pageEvent | json) || 'No events dispatched yet'}}
    \n
    getNumberOfPages: {{paginator.getNumberOfPages()}}
    \n
    \n", styles: [".demo-toggles {\n display: flex;\n flex-direction: column;\n}\n\n.demo-toggles * {\n margin-bottom: 16px;\n}\n\n.demo-options {\n display: flex;\n flex-direction: column;\n width: 600px;\n}\n\n.demo-data * {\n margin: 16px 0;\n}\n\n.demo-paginator {\n width: 600px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$2.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "pipe", type: JsonPipe, name: "json" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'paginator-configurable-example', imports: [ MatFormFieldModule, @@ -56,10 +56,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Paginator */ class PaginatorOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PaginatorOverviewExample, isStandalone: true, selector: "paginator-overview-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$1.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PaginatorOverviewExample, isStandalone: true, selector: "paginator-overview-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$2.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorOverviewExample, decorators: [{ type: Component, args: [{ selector: 'paginator-overview-example', imports: [MatPaginatorModule], template: "\n\n" }] }] }); @@ -78,10 +78,10 @@ class PaginatorHarnessExample { this.pageSize = event.pageSize; this.pageIndex = event.pageIndex; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PaginatorHarnessExample, isStandalone: true, selector: "paginator-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$1.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PaginatorHarnessExample, isStandalone: true, selector: "paginator-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$2.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorHarnessExample, decorators: [{ type: Component, args: [{ selector: 'paginator-harness-example', imports: [MatPaginatorModule], template: "\n\n" }] }] }); @@ -104,27 +104,23 @@ class MyCustomPaginatorIntl { const amountPages = Math.ceil(length / pageSize); return $localize `Page ${page + 1} of ${amountPages}`; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MyCustomPaginatorIntl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); - static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MyCustomPaginatorIntl }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MyCustomPaginatorIntl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); + static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MyCustomPaginatorIntl }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: MyCustomPaginatorIntl, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: MyCustomPaginatorIntl, decorators: [{ type: Injectable }] }); /** * @title Paginator internationalization */ class PaginatorIntlExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorIntlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PaginatorIntlExample, isStandalone: true, selector: "paginator-intl-example", providers: [{ provide: MatPaginatorIntl, useClass: MyCustomPaginatorIntl }], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$1.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorIntlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PaginatorIntlExample, isStandalone: true, selector: "paginator-intl-example", providers: [{ provide: MatPaginatorIntl, useClass: MyCustomPaginatorIntl }], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$2.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PaginatorIntlExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PaginatorIntlExample, decorators: [{ type: Component, args: [{ selector: 'paginator-intl-example', imports: [MatPaginatorModule], providers: [{ provide: MatPaginatorIntl, useClass: MyCustomPaginatorIntl }], template: "\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { PaginatorConfigurableExample, PaginatorHarnessExample, PaginatorIntlExample, PaginatorOverviewExample }; //# sourceMappingURL=paginator.mjs.map diff --git a/fesm2022/material/paginator.mjs.map b/fesm2022/material/paginator.mjs.map index e459cbac33..a21b98ada7 100755 --- a/fesm2022/material/paginator.mjs.map +++ b/fesm2022/material/paginator.mjs.map @@ -1 +1 @@ -{"version":3,"file":"paginator.mjs","sources":["../../../../../../../src/components-examples/material/paginator/paginator-configurable/paginator-configurable-example.ts","../../../../../../../src/components-examples/material/paginator/paginator-configurable/paginator-configurable-example.html","../../../../../../../src/components-examples/material/paginator/paginator-overview/paginator-overview-example.ts","../../../../../../../src/components-examples/material/paginator/paginator-overview/paginator-overview-example.html","../../../../../../../src/components-examples/material/paginator/paginator-harness/paginator-harness-example.ts","../../../../../../../src/components-examples/material/paginator/paginator-harness/paginator-harness-example.html","../../../../../../../src/components-examples/material/paginator/paginator-intl/paginator-intl-example.ts","../../../../../../../src/components-examples/material/paginator/paginator-intl/paginator-intl-example.html","../../../../../../../src/components-examples/material/paginator/paginator_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {PageEvent, MatPaginatorModule} from '@angular/material/paginator';\nimport {JsonPipe} from '@angular/common';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Configurable paginator\n */\n@Component({\n selector: 'paginator-configurable-example',\n templateUrl: 'paginator-configurable-example.html',\n styleUrl: 'paginator-configurable-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatSlideToggleModule,\n MatPaginatorModule,\n JsonPipe,\n ],\n})\nexport class PaginatorConfigurableExample {\n length = 50;\n pageSize = 10;\n pageIndex = 0;\n pageSizeOptions = [5, 10, 25];\n\n hidePageSize = false;\n showPageSizeOptions = true;\n showFirstLastButtons = true;\n disabled = false;\n\n pageEvent: PageEvent;\n\n handlePageEvent(e: PageEvent) {\n this.pageEvent = e;\n this.length = e.length;\n this.pageSize = e.pageSize;\n this.pageIndex = e.pageIndex;\n }\n\n setPageSizeOptions(setPageSizeOptionsInput: string) {\n if (setPageSizeOptionsInput) {\n this.pageSizeOptions = setPageSizeOptionsInput.split(',').map(str => +str);\n }\n }\n}\n","
    \n \n Length\n \n \n\n \n Page Size\n \n \n\n \n Page Index\n \n \n\n \n Page Size Options\n \n \n\n
    \n Hide page size\n Show multiple page size options\n Show first/last buttons\n Disabled\n
    \n
    \n\n\n\n\n
    \n
    Output event: {{(pageEvent | json) || 'No events dispatched yet'}}
    \n
    getNumberOfPages: {{paginator.getNumberOfPages()}}
    \n
    \n","import {Component} from '@angular/core';\nimport {MatPaginatorModule} from '@angular/material/paginator';\n\n/**\n * @title Paginator\n */\n@Component({\n selector: 'paginator-overview-example',\n templateUrl: 'paginator-overview-example.html',\n imports: [MatPaginatorModule],\n})\nexport class PaginatorOverviewExample {}\n","\n\n","import {Component} from '@angular/core';\nimport {PageEvent, MatPaginatorModule} from '@angular/material/paginator';\n\n/**\n * @title Testing with MatPaginatorHarness\n */\n@Component({\n selector: 'paginator-harness-example',\n templateUrl: 'paginator-harness-example.html',\n imports: [MatPaginatorModule],\n})\nexport class PaginatorHarnessExample {\n length = 500;\n pageSize = 10;\n pageIndex = 0;\n pageSizeOptions = [5, 10, 25];\n showFirstLastButtons = true;\n\n handlePageEvent(event: PageEvent) {\n this.length = event.length;\n this.pageSize = event.pageSize;\n this.pageIndex = event.pageIndex;\n }\n}\n","\n\n","import {Component, Injectable} from '@angular/core';\nimport {MatPaginatorIntl, MatPaginatorModule} from '@angular/material/paginator';\nimport {Subject} from 'rxjs';\n\n@Injectable()\nexport class MyCustomPaginatorIntl implements MatPaginatorIntl {\n changes = new Subject();\n\n // For internationalization, the `$localize` function from\n // the `@angular/localize` package can be used.\n firstPageLabel = $localize`First page`;\n itemsPerPageLabel = $localize`Items per page:`;\n lastPageLabel = $localize`Last page`;\n\n // You can set labels to an arbitrary string too, or dynamically compute\n // it through other third-party internationalization libraries.\n nextPageLabel = 'Next page';\n previousPageLabel = 'Previous page';\n\n getRangeLabel(page: number, pageSize: number, length: number): string {\n if (length === 0) {\n return $localize`Page 1 of 1`;\n }\n const amountPages = Math.ceil(length / pageSize);\n return $localize`Page ${page + 1} of ${amountPages}`;\n }\n}\n\n/**\n * @title Paginator internationalization\n */\n@Component({\n selector: 'paginator-intl-example',\n templateUrl: 'paginator-intl-example.html',\n imports: [MatPaginatorModule],\n providers: [{provide: MatPaginatorIntl, useClass: MyCustomPaginatorIntl}],\n})\nexport class PaginatorIntlExample {}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"paginator.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-configurable/paginator-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-configurable/paginator-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-overview/paginator-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-overview/paginator-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-harness/paginator-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-harness/paginator-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-intl/paginator-intl-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/paginator/paginator-intl/paginator-intl-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {PageEvent, MatPaginatorModule} from '@angular/material/paginator';\nimport {JsonPipe} from '@angular/common';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Configurable paginator\n */\n@Component({\n selector: 'paginator-configurable-example',\n templateUrl: 'paginator-configurable-example.html',\n styleUrl: 'paginator-configurable-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatSlideToggleModule,\n MatPaginatorModule,\n JsonPipe,\n ],\n})\nexport class PaginatorConfigurableExample {\n length = 50;\n pageSize = 10;\n pageIndex = 0;\n pageSizeOptions = [5, 10, 25];\n\n hidePageSize = false;\n showPageSizeOptions = true;\n showFirstLastButtons = true;\n disabled = false;\n\n pageEvent: PageEvent;\n\n handlePageEvent(e: PageEvent) {\n this.pageEvent = e;\n this.length = e.length;\n this.pageSize = e.pageSize;\n this.pageIndex = e.pageIndex;\n }\n\n setPageSizeOptions(setPageSizeOptionsInput: string) {\n if (setPageSizeOptionsInput) {\n this.pageSizeOptions = setPageSizeOptionsInput.split(',').map(str => +str);\n }\n }\n}\n","
    \n \n Length\n \n \n\n \n Page Size\n \n \n\n \n Page Index\n \n \n\n \n Page Size Options\n \n \n\n
    \n Hide page size\n Show multiple page size options\n Show first/last buttons\n Disabled\n
    \n
    \n\n\n\n\n
    \n
    Output event: {{(pageEvent | json) || 'No events dispatched yet'}}
    \n
    getNumberOfPages: {{paginator.getNumberOfPages()}}
    \n
    \n","import {Component} from '@angular/core';\nimport {MatPaginatorModule} from '@angular/material/paginator';\n\n/**\n * @title Paginator\n */\n@Component({\n selector: 'paginator-overview-example',\n templateUrl: 'paginator-overview-example.html',\n imports: [MatPaginatorModule],\n})\nexport class PaginatorOverviewExample {}\n","\n\n","import {Component} from '@angular/core';\nimport {PageEvent, MatPaginatorModule} from '@angular/material/paginator';\n\n/**\n * @title Testing with MatPaginatorHarness\n */\n@Component({\n selector: 'paginator-harness-example',\n templateUrl: 'paginator-harness-example.html',\n imports: [MatPaginatorModule],\n})\nexport class PaginatorHarnessExample {\n length = 500;\n pageSize = 10;\n pageIndex = 0;\n pageSizeOptions = [5, 10, 25];\n showFirstLastButtons = true;\n\n handlePageEvent(event: PageEvent) {\n this.length = event.length;\n this.pageSize = event.pageSize;\n this.pageIndex = event.pageIndex;\n }\n}\n","\n\n","import {Component, Injectable} from '@angular/core';\nimport {MatPaginatorIntl, MatPaginatorModule} from '@angular/material/paginator';\nimport {Subject} from 'rxjs';\n\nimport '@angular/localize/init';\n\n@Injectable()\nexport class MyCustomPaginatorIntl implements MatPaginatorIntl {\n changes = new Subject();\n\n // For internationalization, the `$localize` function from\n // the `@angular/localize` package can be used.\n firstPageLabel = $localize`First page`;\n itemsPerPageLabel = $localize`Items per page:`;\n lastPageLabel = $localize`Last page`;\n\n // You can set labels to an arbitrary string too, or dynamically compute\n // it through other third-party internationalization libraries.\n nextPageLabel = 'Next page';\n previousPageLabel = 'Previous page';\n\n getRangeLabel(page: number, pageSize: number, length: number): string {\n if (length === 0) {\n return $localize`Page 1 of 1`;\n }\n const amountPages = Math.ceil(length / pageSize);\n return $localize`Page ${page + 1} of ${amountPages}`;\n }\n}\n\n/**\n * @title Paginator internationalization\n */\n@Component({\n selector: 'paginator-intl-example',\n templateUrl: 'paginator-intl-example.html',\n imports: [MatPaginatorModule],\n providers: [{provide: MatPaginatorIntl, useClass: MyCustomPaginatorIntl}],\n})\nexport class PaginatorIntlExample {}\n","\n\n"],"names":["i4","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/progress-bar.mjs b/fesm2022/material/progress-bar.mjs index edfd5f4cab..4eb559877d 100755 --- a/fesm2022/material/progress-bar.mjs +++ b/fesm2022/material/progress-bar.mjs @@ -2,11 +2,11 @@ import * as i0 from '@angular/core'; import { Component, signal } from '@angular/core'; import * as i1 from '@angular/material/progress-bar'; import { MatProgressBarModule } from '@angular/material/progress-bar'; -import * as i4 from '@angular/material/slider'; +import * as i1$3 from '@angular/material/slider'; import { MatSliderModule } from '@angular/material/slider'; import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; -import * as i2 from '@angular/material/radio'; +import * as i1$2 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import * as i1$1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; @@ -15,10 +15,10 @@ import { MatCardModule } from '@angular/material/card'; * @title Buffer progress-bar */ class ProgressBarBufferExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarBufferExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressBarBufferExample, isStandalone: true, selector: "progress-bar-buffer-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarBufferExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressBarBufferExample, isStandalone: true, selector: "progress-bar-buffer-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarBufferExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarBufferExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-buffer-example', imports: [MatProgressBarModule], template: "\n" }] }] }); @@ -30,10 +30,10 @@ class ProgressBarConfigurableExample { mode = 'determinate'; value = 50; bufferValue = 75; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ProgressBarConfigurableExample, isStandalone: true, selector: "progress-bar-configurable-example", ngImport: i0, template: "\n \n

    Progress bar configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n Buffer\n \n \n Query\n \n \n
    \n\n @if (mode === 'determinate' || mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n @if (mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1$1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1$1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i2.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i2.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i4.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i4.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }, { kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ProgressBarConfigurableExample, isStandalone: true, selector: "progress-bar-configurable-example", ngImport: i0, template: "\n \n

    Progress bar configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n Buffer\n \n \n Query\n \n \n
    \n\n @if (mode === 'determinate' || mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n @if (mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1$1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1$1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$2.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$2.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$3.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$3.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }, { kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-configurable-example', imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressBarModule], template: "\n \n

    Progress bar configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n Buffer\n \n \n Query\n \n \n
    \n\n @if (mode === 'determinate' || mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n @if (mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"] }] }] }); @@ -42,10 +42,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Determinate progress-bar */ class ProgressBarDeterminateExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarDeterminateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressBarDeterminateExample, isStandalone: true, selector: "progress-bar-determinate-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarDeterminateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressBarDeterminateExample, isStandalone: true, selector: "progress-bar-determinate-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarDeterminateExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarDeterminateExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-determinate-example', imports: [MatProgressBarModule], template: "\n" }] }] }); @@ -54,10 +54,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Indeterminate progress-bar */ class ProgressBarIndeterminateExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarIndeterminateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressBarIndeterminateExample, isStandalone: true, selector: "progress-bar-indeterminate-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarIndeterminateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressBarIndeterminateExample, isStandalone: true, selector: "progress-bar-indeterminate-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarIndeterminateExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarIndeterminateExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-indeterminate-example', imports: [MatProgressBarModule], template: "\n" }] }] }); @@ -66,10 +66,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Query progress-bar */ class ProgressBarQueryExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarQueryExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressBarQueryExample, isStandalone: true, selector: "progress-bar-query-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarQueryExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressBarQueryExample, isStandalone: true, selector: "progress-bar-query-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarQueryExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarQueryExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-query-example', imports: [MatProgressBarModule], template: "\n" }] }] }); @@ -79,17 +79,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ProgressBarHarnessExample { value = signal(undefined); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressBarHarnessExample, isStandalone: true, selector: "progress-bar-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressBarHarnessExample, isStandalone: true, selector: "progress-bar-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressBarHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressBarHarnessExample, decorators: [{ type: Component, args: [{ selector: 'progress-bar-harness-example', imports: [MatProgressBarModule], template: "\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ProgressBarBufferExample, ProgressBarConfigurableExample, ProgressBarDeterminateExample, ProgressBarHarnessExample, ProgressBarIndeterminateExample, ProgressBarQueryExample }; //# sourceMappingURL=progress-bar.mjs.map diff --git a/fesm2022/material/progress-bar.mjs.map b/fesm2022/material/progress-bar.mjs.map index ae3ef7aaf3..7130777df5 100755 --- a/fesm2022/material/progress-bar.mjs.map +++ b/fesm2022/material/progress-bar.mjs.map @@ -1 +1 @@ -{"version":3,"file":"progress-bar.mjs","sources":["../../../../../../../src/components-examples/material/progress-bar/progress-bar-buffer/progress-bar-buffer-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-buffer/progress-bar-buffer-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar-configurable/progress-bar-configurable-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-configurable/progress-bar-configurable-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar-determinate/progress-bar-determinate-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-determinate/progress-bar-determinate-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar-indeterminate/progress-bar-indeterminate-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-indeterminate/progress-bar-indeterminate-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar-query/progress-bar-query-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-query/progress-bar-query-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar-harness/progress-bar-harness-example.ts","../../../../../../../src/components-examples/material/progress-bar/progress-bar-harness/progress-bar-harness-example.html","../../../../../../../src/components-examples/material/progress-bar/progress-bar_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Buffer progress-bar\n */\n@Component({\n selector: 'progress-bar-buffer-example',\n templateUrl: 'progress-bar-buffer-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarBufferExample {}\n","\n","import {Component} from '@angular/core';\nimport {ProgressBarMode, MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable progress-bar\n */\n@Component({\n selector: 'progress-bar-configurable-example',\n templateUrl: 'progress-bar-configurable-example.html',\n styleUrl: 'progress-bar-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressBarModule],\n})\nexport class ProgressBarConfigurableExample {\n mode: ProgressBarMode = 'determinate';\n value = 50;\n bufferValue = 75;\n}\n","\n \n

    Progress bar configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n Buffer\n \n \n Query\n \n \n
    \n\n @if (mode === 'determinate' || mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n @if (mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Determinate progress-bar\n */\n@Component({\n selector: 'progress-bar-determinate-example',\n templateUrl: 'progress-bar-determinate-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarDeterminateExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Indeterminate progress-bar\n */\n@Component({\n selector: 'progress-bar-indeterminate-example',\n templateUrl: 'progress-bar-indeterminate-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarIndeterminateExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Query progress-bar\n */\n@Component({\n selector: 'progress-bar-query-example',\n templateUrl: 'progress-bar-query-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarQueryExample {}\n","\n","import {Component, signal} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Testing with MatProgressBarHarness\n */\n@Component({\n selector: 'progress-bar-harness-example',\n templateUrl: 'progress-bar-harness-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarHarnessExample {\n value = signal(undefined);\n}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i5"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"progress-bar.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-buffer/progress-bar-buffer-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-buffer/progress-bar-buffer-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-configurable/progress-bar-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-configurable/progress-bar-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-determinate/progress-bar-determinate-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-determinate/progress-bar-determinate-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-indeterminate/progress-bar-indeterminate-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-indeterminate/progress-bar-indeterminate-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-query/progress-bar-query-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-query/progress-bar-query-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-harness/progress-bar-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-bar/progress-bar-harness/progress-bar-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Buffer progress-bar\n */\n@Component({\n selector: 'progress-bar-buffer-example',\n templateUrl: 'progress-bar-buffer-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarBufferExample {}\n","\n","import {Component} from '@angular/core';\nimport {ProgressBarMode, MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable progress-bar\n */\n@Component({\n selector: 'progress-bar-configurable-example',\n templateUrl: 'progress-bar-configurable-example.html',\n styleUrl: 'progress-bar-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressBarModule],\n})\nexport class ProgressBarConfigurableExample {\n mode: ProgressBarMode = 'determinate';\n value = 50;\n bufferValue = 75;\n}\n","\n \n

    Progress bar configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n Buffer\n \n \n Query\n \n \n
    \n\n @if (mode === 'determinate' || mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n @if (mode === 'buffer') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Determinate progress-bar\n */\n@Component({\n selector: 'progress-bar-determinate-example',\n templateUrl: 'progress-bar-determinate-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarDeterminateExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Indeterminate progress-bar\n */\n@Component({\n selector: 'progress-bar-indeterminate-example',\n templateUrl: 'progress-bar-indeterminate-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarIndeterminateExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Query progress-bar\n */\n@Component({\n selector: 'progress-bar-query-example',\n templateUrl: 'progress-bar-query-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarQueryExample {}\n","\n","import {Component, signal} from '@angular/core';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\n\n/**\n * @title Testing with MatProgressBarHarness\n */\n@Component({\n selector: 'progress-bar-harness-example',\n templateUrl: 'progress-bar-harness-example.html',\n imports: [MatProgressBarModule],\n})\nexport class ProgressBarHarnessExample {\n value = signal(undefined);\n}\n","\n\n"],"names":["i1","i2","i4","i5"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/progress-spinner.mjs b/fesm2022/material/progress-spinner.mjs index 8e7f816bf4..d3bb4ef84a 100755 --- a/fesm2022/material/progress-spinner.mjs +++ b/fesm2022/material/progress-spinner.mjs @@ -1,12 +1,12 @@ import * as i0 from '@angular/core'; import { Component, signal } from '@angular/core'; -import * as i1$1 from '@angular/material/progress-spinner'; +import * as i1$3 from '@angular/material/progress-spinner'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; -import * as i4 from '@angular/material/slider'; +import * as i1$2 from '@angular/material/slider'; import { MatSliderModule } from '@angular/material/slider'; import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; -import * as i2 from '@angular/material/radio'; +import * as i1$1 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import * as i1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; @@ -17,10 +17,10 @@ import { MatCardModule } from '@angular/material/card'; class ProgressSpinnerConfigurableExample { mode = 'determinate'; value = 50; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: ProgressSpinnerConfigurableExample, isStandalone: true, selector: "progress-spinner-configurable-example", ngImport: i0, template: "\n \n

    Progress spinner configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n
    \n\n @if (mode === 'determinate') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n \n \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i2.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i2.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i4.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i4.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: ProgressSpinnerConfigurableExample, isStandalone: true, selector: "progress-spinner-configurable-example", ngImport: i0, template: "\n \n

    Progress spinner configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n
    \n\n @if (mode === 'determinate') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n \n \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }, { kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'progress-spinner-configurable-example', imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressSpinnerModule], template: "\n \n

    Progress spinner configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n
    \n\n @if (mode === 'determinate') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n \n \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 0 10px;\n}\n\n.example-card {\n margin-bottom: 10px;\n}\n"] }] }] }); @@ -29,10 +29,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic progress-spinner */ class ProgressSpinnerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressSpinnerOverviewExample, isStandalone: true, selector: "progress-spinner-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressSpinnerOverviewExample, isStandalone: true, selector: "progress-spinner-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'progress-spinner-overview-example', imports: [MatProgressSpinnerModule], template: "\n" }] }] }); @@ -42,17 +42,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class ProgressSpinnerHarnessExample { value = signal(0); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ProgressSpinnerHarnessExample, isStandalone: true, selector: "progress-spinner-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$1.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ProgressSpinnerHarnessExample, isStandalone: true, selector: "progress-spinner-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ProgressSpinnerHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ProgressSpinnerHarnessExample, decorators: [{ type: Component, args: [{ selector: 'progress-spinner-harness-example', imports: [MatProgressSpinnerModule], template: "\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ProgressSpinnerConfigurableExample, ProgressSpinnerHarnessExample, ProgressSpinnerOverviewExample }; //# sourceMappingURL=progress-spinner.mjs.map diff --git a/fesm2022/material/progress-spinner.mjs.map b/fesm2022/material/progress-spinner.mjs.map index ac28170071..6891569d6e 100755 --- a/fesm2022/material/progress-spinner.mjs.map +++ b/fesm2022/material/progress-spinner.mjs.map @@ -1 +1 @@ -{"version":3,"file":"progress-spinner.mjs","sources":["../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-configurable/progress-spinner-configurable-example.ts","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-configurable/progress-spinner-configurable-example.html","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-overview/progress-spinner-overview-example.ts","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-overview/progress-spinner-overview-example.html","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-harness/progress-spinner-harness-example.ts","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner-harness/progress-spinner-harness-example.html","../../../../../../../src/components-examples/material/progress-spinner/progress-spinner_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {ProgressSpinnerMode, MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable progress spinner\n */\n@Component({\n selector: 'progress-spinner-configurable-example',\n templateUrl: 'progress-spinner-configurable-example.html',\n styleUrl: 'progress-spinner-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerConfigurableExample {\n mode: ProgressSpinnerMode = 'determinate';\n value = 50;\n}\n","\n \n

    Progress spinner configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n
    \n\n @if (mode === 'determinate') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\n\n/**\n * @title Basic progress-spinner\n */\n@Component({\n selector: 'progress-spinner-overview-example',\n templateUrl: 'progress-spinner-overview-example.html',\n imports: [MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerOverviewExample {}\n","\n","import {Component, signal} from '@angular/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\n\n/**\n * @title Testing with MatProgressSpinnerHarness\n */\n@Component({\n selector: 'progress-spinner-harness-example',\n templateUrl: 'progress-spinner-harness-example.html',\n imports: [MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerHarnessExample {\n value = signal(0);\n}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i5","i1"],"mappings":";;;;;;;;;;;;;AAOA;;AAEG;MAOU,kCAAkC,CAAA;IAC7C,IAAI,GAAwB,aAAa,CAAC;IAC1C,KAAK,GAAG,EAAE,CAAC;uGAFA,kCAAkC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAlC,kCAAkC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChB/C,uqCAsCA,EAAA,MAAA,EAAA,CAAA,4OAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDxBY,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,eAAA,EAAA,OAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,CAAA,EAAA,QAAA,EAAA,CAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,CAAA,IAAA,EAAA,MAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,SAAA,EAAA,OAAA,EAAA,eAAA,EAAA,UAAA,EAAA,UAAA,EAAA,OAAA,EAAA,qBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,CAAA,EAAA,QAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,8FAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,SAAA,EAAA,gBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,UAAA,EAAA,eAAA,EAAA,KAAA,EAAA,OAAA,EAAA,eAAA,EAAA,KAAA,EAAA,MAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,OAAA,EAAA,CAAA,aAAA,EAAA,WAAA,EAAA,SAAA,CAAA,EAAA,QAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,wBAAwB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,UAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEpF,kCAAkC,EAAA,UAAA,EAAA,CAAA;kBAN9C,SAAS;+BACE,uCAAuC,EAAA,OAAA,EAGxC,CAAC,aAAa,EAAE,cAAc,EAAE,WAAW,EAAE,eAAe,EAAE,wBAAwB,CAAC,EAAA,QAAA,EAAA,uqCAAA,EAAA,MAAA,EAAA,CAAA,4OAAA,CAAA,EAAA,CAAA;;;AEXlG;;AAEG;MAMU,8BAA8B,CAAA;uGAA9B,8BAA8B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA9B,8BAA8B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECX3C,+BACA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDQY,wBAAwB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,UAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEvB,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAL1C,SAAS;+BACE,mCAAmC,EAAA,OAAA,EAEpC,CAAC,wBAAwB,CAAC,EAAA,QAAA,EAAA,+BAAA,EAAA,CAAA;;;AENrC;;AAEG;MAMU,6BAA6B,CAAA;AACxC,IAAA,KAAK,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;uGADP,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA7B,6BAA6B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,kCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECX1C,uHAEA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDOY,wBAAwB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,UAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEvB,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBALzC,SAAS;+BACE,kCAAkC,EAAA,OAAA,EAEnC,CAAC,wBAAwB,CAAC,EAAA,QAAA,EAAA,uHAAA,EAAA,CAAA;;;AETrC;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"progress-spinner.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-configurable/progress-spinner-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-configurable/progress-spinner-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-overview/progress-spinner-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-overview/progress-spinner-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-harness/progress-spinner-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/progress-spinner/progress-spinner-harness/progress-spinner-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {ProgressSpinnerMode, MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable progress spinner\n */\n@Component({\n selector: 'progress-spinner-configurable-example',\n templateUrl: 'progress-spinner-configurable-example.html',\n styleUrl: 'progress-spinner-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatSliderModule, MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerConfigurableExample {\n mode: ProgressSpinnerMode = 'determinate';\n value = 50;\n}\n","\n \n

    Progress spinner configuration

    \n\n
    \n \n \n \n Determinate\n \n \n Indeterminate\n \n \n
    \n\n @if (mode === 'determinate') {\n
    \n \n \n \n \n
    \n }\n
    \n
    \n\n\n \n

    Result

    \n\n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\n\n/**\n * @title Basic progress-spinner\n */\n@Component({\n selector: 'progress-spinner-overview-example',\n templateUrl: 'progress-spinner-overview-example.html',\n imports: [MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerOverviewExample {}\n","\n","import {Component, signal} from '@angular/core';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\n\n/**\n * @title Testing with MatProgressSpinnerHarness\n */\n@Component({\n selector: 'progress-spinner-harness-example',\n templateUrl: 'progress-spinner-harness-example.html',\n imports: [MatProgressSpinnerModule],\n})\nexport class ProgressSpinnerHarnessExample {\n value = signal(0);\n}\n","\n\n"],"names":["i2","i4","i5","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/radio.mjs b/fesm2022/material/radio.mjs index e6a417753e..d8593f9e94 100755 --- a/fesm2022/material/radio.mjs +++ b/fesm2022/material/radio.mjs @@ -1,6 +1,6 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; import * as i1 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; @@ -11,10 +11,10 @@ import { MatRadioModule } from '@angular/material/radio'; class RadioNgModelExample { favoriteSeason; seasons = ['Winter', 'Spring', 'Summer', 'Autumn']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioNgModelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: RadioNgModelExample, isStandalone: true, selector: "radio-ng-model-example", ngImport: i0, template: "\n\n @for (season of seasons; track season) {\n {{season}}\n }\n\n
    Your favorite season is: {{favoriteSeason}}
    \n", styles: [".example-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n align-items: flex-start;\n}\n\n.example-radio-button {\n margin: 5px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioNgModelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: RadioNgModelExample, isStandalone: true, selector: "radio-ng-model-example", ngImport: i0, template: "\n\n @for (season of seasons; track season) {\n {{season}}\n }\n\n
    Your favorite season is: {{favoriteSeason}}
    \n", styles: [".example-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n align-items: flex-start;\n}\n\n.example-radio-button {\n margin: 5px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioNgModelExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioNgModelExample, decorators: [{ type: Component, args: [{ selector: 'radio-ng-model-example', imports: [MatRadioModule, FormsModule], template: "\n\n @for (season of seasons; track season) {\n {{season}}\n }\n\n
    Your favorite season is: {{favoriteSeason}}
    \n", styles: [".example-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n align-items: flex-start;\n}\n\n.example-radio-button {\n margin: 5px;\n}\n"] }] }] }); @@ -23,10 +23,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic radios */ class RadioOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: RadioOverviewExample, isStandalone: true, selector: "radio-overview-example", ngImport: i0, template: "\n Option 1\n Option 2\n\n", styles: [".mat-mdc-radio-button ~ .mat-mdc-radio-button {\n margin-left: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: RadioOverviewExample, isStandalone: true, selector: "radio-overview-example", ngImport: i0, template: "\n Option 1\n Option 2\n\n", styles: [".mat-mdc-radio-button ~ .mat-mdc-radio-button {\n margin-left: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioOverviewExample, decorators: [{ type: Component, args: [{ selector: 'radio-overview-example', imports: [MatRadioModule], template: "\n Option 1\n Option 2\n\n", styles: [".mat-mdc-radio-button ~ .mat-mdc-radio-button {\n margin-left: 16px;\n}\n"] }] }] }); @@ -35,17 +35,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatRadioHarness */ class RadioHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: RadioHarnessExample, isStandalone: true, selector: "radio-harness-example", ngImport: i0, template: "\n Chocolate\n Vanilla\n Strawberry\n\n", dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: RadioHarnessExample, isStandalone: true, selector: "radio-harness-example", ngImport: i0, template: "\n Chocolate\n Vanilla\n Strawberry\n\n", dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: RadioHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: RadioHarnessExample, decorators: [{ type: Component, args: [{ selector: 'radio-harness-example', imports: [MatRadioModule], template: "\n Chocolate\n Vanilla\n Strawberry\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { RadioHarnessExample, RadioNgModelExample, RadioOverviewExample }; //# sourceMappingURL=radio.mjs.map diff --git a/fesm2022/material/radio.mjs.map b/fesm2022/material/radio.mjs.map index 258c35d6e7..1d8f99460b 100755 --- a/fesm2022/material/radio.mjs.map +++ b/fesm2022/material/radio.mjs.map @@ -1 +1 @@ -{"version":3,"file":"radio.mjs","sources":["../../../../../../../src/components-examples/material/radio/radio-ng-model/radio-ng-model-example.ts","../../../../../../../src/components-examples/material/radio/radio-ng-model/radio-ng-model-example.html","../../../../../../../src/components-examples/material/radio/radio-overview/radio-overview-example.ts","../../../../../../../src/components-examples/material/radio/radio-overview/radio-overview-example.html","../../../../../../../src/components-examples/material/radio/radio-harness/radio-harness-example.ts","../../../../../../../src/components-examples/material/radio/radio-harness/radio-harness-example.html","../../../../../../../src/components-examples/material/radio/radio_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Radios with ngModel\n */\n@Component({\n selector: 'radio-ng-model-example',\n templateUrl: 'radio-ng-model-example.html',\n styleUrl: 'radio-ng-model-example.css',\n imports: [MatRadioModule, FormsModule],\n})\nexport class RadioNgModelExample {\n favoriteSeason: string;\n seasons: string[] = ['Winter', 'Spring', 'Summer', 'Autumn'];\n}\n","\n\n @for (season of seasons; track season) {\n {{season}}\n }\n\n
    Your favorite season is: {{favoriteSeason}}
    \n","import {Component} from '@angular/core';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Basic radios\n */\n@Component({\n selector: 'radio-overview-example',\n templateUrl: 'radio-overview-example.html',\n styleUrl: 'radio-overview-example.css',\n imports: [MatRadioModule],\n})\nexport class RadioOverviewExample {}\n","\n Option 1\n Option 2\n\n","import {Component} from '@angular/core';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Testing with MatRadioHarness\n */\n@Component({\n selector: 'radio-harness-example',\n templateUrl: 'radio-harness-example.html',\n imports: [MatRadioModule],\n})\nexport class RadioHarnessExample {}\n","\n Chocolate\n Vanilla\n Strawberry\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"radio.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-ng-model/radio-ng-model-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-ng-model/radio-ng-model-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-overview/radio-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-overview/radio-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-harness/radio-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/radio/radio-harness/radio-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Radios with ngModel\n */\n@Component({\n selector: 'radio-ng-model-example',\n templateUrl: 'radio-ng-model-example.html',\n styleUrl: 'radio-ng-model-example.css',\n imports: [MatRadioModule, FormsModule],\n})\nexport class RadioNgModelExample {\n favoriteSeason: string;\n seasons: string[] = ['Winter', 'Spring', 'Summer', 'Autumn'];\n}\n","\n\n @for (season of seasons; track season) {\n {{season}}\n }\n\n
    Your favorite season is: {{favoriteSeason}}
    \n","import {Component} from '@angular/core';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Basic radios\n */\n@Component({\n selector: 'radio-overview-example',\n templateUrl: 'radio-overview-example.html',\n styleUrl: 'radio-overview-example.css',\n imports: [MatRadioModule],\n})\nexport class RadioOverviewExample {}\n","\n Option 1\n Option 2\n\n","import {Component} from '@angular/core';\nimport {MatRadioModule} from '@angular/material/radio';\n\n/**\n * @title Testing with MatRadioHarness\n */\n@Component({\n selector: 'radio-harness-example',\n templateUrl: 'radio-harness-example.html',\n imports: [MatRadioModule],\n})\nexport class RadioHarnessExample {}\n","\n Chocolate\n Vanilla\n Strawberry\n\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/select.mjs b/fesm2022/material/select.mjs index 119c2ae442..8d344e5926 100755 --- a/fesm2022/material/select.mjs +++ b/fesm2022/material/select.mjs @@ -1,25 +1,24 @@ import * as i0 from '@angular/core'; import { Component, ViewEncapsulation } from '@angular/core'; -import * as i4 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule, Validators, FormGroup } from '@angular/forms'; import * as i2 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i3 from '@angular/material/core'; -import * as i5 from '@angular/material/input'; +import * as i2$2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i1$1 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; /** @title Select with custom trigger text */ class SelectCustomTriggerExample { toppings = new FormControl(''); toppingList = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectCustomTriggerExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectCustomTriggerExample, isStandalone: true, selector: "select-custom-trigger-example", ngImport: i0, template: "\n Toppings\n \n \n {{toppings.value?.[0] || ''}}\n @if ((toppings.value?.length || 0) > 1) {\n \n (+{{(toppings.value?.length || 0) - 1}} {{toppings.value?.length === 2 ? 'other' : 'others'}})\n \n }\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n}\n \n\n", styles: [".example-additional-selection {\n opacity: 0.75;\n font-size: 0.75em;\n line-height: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i2.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectCustomTriggerExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectCustomTriggerExample, isStandalone: true, selector: "select-custom-trigger-example", ngImport: i0, template: "\n Toppings\n \n \n {{toppings.value?.[0] || ''}}\n @if ((toppings.value?.length || 0) > 1) {\n \n (+{{(toppings.value?.length || 0) - 1}} {{toppings.value?.length === 2 ? 'other' : 'others'}})\n \n }\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n}\n \n\n", styles: [".example-additional-selection {\n opacity: 0.75;\n font-size: 0.75em;\n line-height: 1;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "directive", type: i2.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectCustomTriggerExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectCustomTriggerExample, decorators: [{ type: Component, args: [{ selector: 'select-custom-trigger-example', imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule], template: "\n Toppings\n \n \n {{toppings.value?.[0] || ''}}\n @if ((toppings.value?.length || 0) > 1) {\n \n (+{{(toppings.value?.length || 0) - 1}} {{toppings.value?.length === 2 ? 'other' : 'others'}})\n \n }\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n}\n \n\n", styles: [".example-additional-selection {\n opacity: 0.75;\n font-size: 0.75em;\n line-height: 1;\n}\n"] }] }] }); @@ -27,10 +26,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Disabled select */ class SelectDisabledExample { disableSelect = new FormControl(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SelectDisabledExample, isStandalone: true, selector: "select-disabled-example", ngImport: i0, template: "

    \n Disable select\n

    \n\n

    mat-select

    \n\n Choose an option\n \n Option 1\n Option 2 (disabled)\n Option 3\n \n\n\n

    native html select

    \n\n Choose an option\n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i1$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SelectDisabledExample, isStandalone: true, selector: "select-disabled-example", ngImport: i0, template: "

    \n Disable select\n

    \n\n

    mat-select

    \n\n Choose an option\n \n Option 1\n Option 2 (disabled)\n Option 3\n \n\n\n

    native html select

    \n\n Choose an option\n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectDisabledExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectDisabledExample, decorators: [{ type: Component, args: [{ selector: 'select-disabled-example', imports: [ MatCheckboxModule, @@ -58,10 +57,10 @@ class SelectErrorStateMatcherExample { Validators.pattern('valid'), ]); matcher = new MyErrorStateMatcher(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectErrorStateMatcherExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectErrorStateMatcherExample, isStandalone: true, selector: "select-error-state-matcher-example", ngImport: i0, template: "

    mat-select

    \n\n Choose one\n \n Clear\n Valid option\n Invalid option\n \n Errors appear instantly!\n @if (selected.hasError('required')) {\n You must make a selection\n }\n @if (selected.hasError('pattern') && !selected.hasError('required')) {\n Your selection is invalid\n }\n\n\n

    native html select

    \n\n Choose one\n \n @if (nativeSelectFormControl.hasError('required')) {\n You must make a selection\n }\n @if (nativeSelectFormControl.hasError('pattern') && !nativeSelectFormControl.hasError('required')) {\n Your selection is invalid\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectErrorStateMatcherExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectErrorStateMatcherExample, isStandalone: true, selector: "select-error-state-matcher-example", ngImport: i0, template: "

    mat-select

    \n\n Choose one\n \n Clear\n Valid option\n Invalid option\n \n Errors appear instantly!\n @if (selected.hasError('required')) {\n You must make a selection\n }\n @if (selected.hasError('pattern') && !selected.hasError('required')) {\n Your selection is invalid\n }\n\n\n

    native html select

    \n\n Choose one\n \n @if (nativeSelectFormControl.hasError('required')) {\n You must make a selection\n }\n @if (nativeSelectFormControl.hasError('pattern') && !nativeSelectFormControl.hasError('required')) {\n Your selection is invalid\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectErrorStateMatcherExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectErrorStateMatcherExample, decorators: [{ type: Component, args: [{ selector: 'select-error-state-matcher-example', imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule], template: "

    mat-select

    \n\n Choose one\n \n Clear\n Valid option\n Invalid option\n \n Errors appear instantly!\n @if (selected.hasError('required')) {\n You must make a selection\n }\n @if (selected.hasError('pattern') && !selected.hasError('required')) {\n Your selection is invalid\n }\n\n\n

    native html select

    \n\n Choose one\n \n @if (nativeSelectFormControl.hasError('required')) {\n You must make a selection\n }\n @if (nativeSelectFormControl.hasError('pattern') && !nativeSelectFormControl.hasError('required')) {\n Your selection is invalid\n }\n\n" }] }] }); @@ -82,10 +81,10 @@ class SelectFormExample { { value: 'saab', viewValue: 'Saab' }, { value: 'mercedes', viewValue: 'Mercedes' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectFormExample, isStandalone: true, selector: "select-form-example", ngImport: i0, template: "
    \n

    mat-select

    \n \n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected food: {{selectedValue}}

    \n

    native html select

    \n \n Favorite car\n \n \n

    Selected car: {{selectedCar}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i4.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectFormExample, isStandalone: true, selector: "select-form-example", ngImport: i0, template: "
    \n

    mat-select

    \n \n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected food: {{selectedValue}}

    \n

    native html select

    \n \n Favorite car\n \n \n

    Selected car: {{selectedCar}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectFormExample, decorators: [{ type: Component, args: [{ selector: 'select-form-example', imports: [FormsModule, MatFormFieldModule, MatSelectModule, MatInputModule], template: "
    \n

    mat-select

    \n \n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected food: {{selectedValue}}

    \n

    native html select

    \n \n Favorite car\n \n \n

    Selected car: {{selectedCar}}

    \n
    \n" }] }] }); @@ -100,10 +99,10 @@ class SelectHintErrorExample { { name: 'Cow', sound: 'Moo!' }, { name: 'Fox', sound: 'Wa-pa-pa-pa-pa-pa-pow!' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectHintErrorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectHintErrorExample, isStandalone: true, selector: "select-hint-error-example", ngImport: i0, template: "

    mat select

    \n\n Favorite animal\n \n --\n @for (animal of animals; track animal) {\n {{animal.name}}\n }\n \n @if (animalControl.hasError('required')) {\n Please choose an animal\n }\n {{animalControl.value?.sound}}\n\n\n

    native html select

    \n\n Select your car (required)\n \n @if (selectFormControl.hasError('required')) {\n This field is required\n }\n You can pick up your favorite car here\n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectHintErrorExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectHintErrorExample, isStandalone: true, selector: "select-hint-error-example", ngImport: i0, template: "

    mat select

    \n\n Favorite animal\n \n --\n @for (animal of animals; track animal) {\n {{animal.name}}\n }\n \n @if (animalControl.hasError('required')) {\n Please choose an animal\n }\n {{animalControl.value?.sound}}\n\n\n

    native html select

    \n\n Select your car (required)\n \n @if (selectFormControl.hasError('required')) {\n This field is required\n }\n You can pick up your favorite car here\n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectHintErrorExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectHintErrorExample, decorators: [{ type: Component, args: [{ selector: 'select-hint-error-example', imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule], template: "

    mat select

    \n\n Favorite animal\n \n --\n @for (animal of animals; track animal) {\n {{animal.name}}\n }\n \n @if (animalControl.hasError('required')) {\n Please choose an animal\n }\n {{animalControl.value?.sound}}\n\n\n

    native html select

    \n\n Select your car (required)\n \n @if (selectFormControl.hasError('required')) {\n This field is required\n }\n You can pick up your favorite car here\n\n\n" }] }] }); @@ -112,20 +111,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class SelectMultipleExample { toppings = new FormControl(''); toppingList = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectMultipleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectMultipleExample, isStandalone: true, selector: "select-multiple-example", ngImport: i0, template: "\n Toppings\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectMultipleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectMultipleExample, isStandalone: true, selector: "select-multiple-example", ngImport: i0, template: "\n Toppings\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectMultipleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectMultipleExample, decorators: [{ type: Component, args: [{ selector: 'select-multiple-example', imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule], template: "\n Toppings\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n }\n \n\n" }] }] }); /** @title Select with no option ripple */ class SelectNoRippleExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectNoRippleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SelectNoRippleExample, isStandalone: true, selector: "select-no-ripple-example", ngImport: i0, template: "\n Select an option\n \n Option 1\n Option 2\n Option 3\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectNoRippleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SelectNoRippleExample, isStandalone: true, selector: "select-no-ripple-example", ngImport: i0, template: "\n Select an option\n \n Option 1\n Option 2\n Option 3\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectNoRippleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectNoRippleExample, decorators: [{ type: Component, args: [{ selector: 'select-no-ripple-example', imports: [MatFormFieldModule, MatSelectModule], template: "\n Select an option\n \n Option 1\n Option 2\n Option 3\n \n\n" }] }] }); @@ -167,10 +166,10 @@ class SelectOptgroupExample { ], }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectOptgroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectOptgroupExample, isStandalone: true, selector: "select-optgroup-example", ngImport: i0, template: "

    mat-select

    \n\n Pokemon\n \n -- None --\n @for (group of pokemonGroups; track group) {\n \n @for (pokemon of group.pokemon; track pokemon) {\n {{pokemon.viewValue}}\n }\n \n }\n \n\n\n

    native html select

    \n\n Cars\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "component", type: i3.MatOptgroup, selector: "mat-optgroup", inputs: ["label", "disabled"], exportAs: ["matOptgroup"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectOptgroupExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectOptgroupExample, isStandalone: true, selector: "select-optgroup-example", ngImport: i0, template: "

    mat-select

    \n\n Pokemon\n \n -- None --\n @for (group of pokemonGroups; track group) {\n \n @for (pokemon of group.pokemon; track pokemon) {\n {{pokemon.viewValue}}\n }\n \n }\n \n\n\n

    native html select

    \n\n Cars\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "component", type: i2.MatOptgroup, selector: "mat-optgroup", inputs: ["label", "disabled"], exportAs: ["matOptgroup"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectOptgroupExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectOptgroupExample, decorators: [{ type: Component, args: [{ selector: 'select-optgroup-example', imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule], template: "

    mat-select

    \n\n Pokemon\n \n -- None --\n @for (group of pokemonGroups; track group) {\n \n @for (pokemon of group.pokemon; track pokemon) {\n {{pokemon.viewValue}}\n }\n \n }\n \n\n\n

    native html select

    \n\n Cars\n \n\n" }] }] }); @@ -184,10 +183,10 @@ class SelectOverviewExample { { value: 'pizza-1', viewValue: 'Pizza' }, { value: 'tacos-2', viewValue: 'Tacos' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectOverviewExample, isStandalone: true, selector: "select-overview-example", ngImport: i0, template: "

    Basic mat-select

    \n\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n\n

    Basic native select

    \n\n Cars\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectOverviewExample, isStandalone: true, selector: "select-overview-example", ngImport: i0, template: "

    Basic mat-select

    \n\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n\n

    Basic native select

    \n\n Cars\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectOverviewExample, decorators: [{ type: Component, args: [{ selector: 'select-overview-example', imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule], template: "

    Basic mat-select

    \n\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n\n

    Basic native select

    \n\n Cars\n \n\n" }] }] }); @@ -197,10 +196,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class SelectPanelClassExample { panelColor = new FormControl('red'); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectPanelClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SelectPanelClassExample, isStandalone: true, selector: "select-panel-class-example", ngImport: i0, template: "\n Panel color\n \n Red\n Green\n Blue\n \n\n", styles: [".example-panel-red.mat-mdc-select-panel {\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-panel-green.mat-mdc-select-panel {\n background: rgba(0, 255, 0, 0.5);\n}\n\n.example-panel-blue.mat-mdc-select-panel {\n background: rgba(0, 0, 255, 0.5);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], encapsulation: i0.ViewEncapsulation.None }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectPanelClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SelectPanelClassExample, isStandalone: true, selector: "select-panel-class-example", ngImport: i0, template: "\n Panel color\n \n Red\n Green\n Blue\n \n\n", styles: [".example-panel-red.mat-mdc-select-panel {\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-panel-green.mat-mdc-select-panel {\n background: rgba(0, 255, 0, 0.5);\n}\n\n.example-panel-blue.mat-mdc-select-panel {\n background: rgba(0, 0, 255, 0.5);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectPanelClassExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectPanelClassExample, decorators: [{ type: Component, args: [{ selector: 'select-panel-class-example', encapsulation: ViewEncapsulation.None, imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule], template: "\n Panel color\n \n Red\n Green\n Blue\n \n\n", styles: [".example-panel-red.mat-mdc-select-panel {\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-panel-green.mat-mdc-select-panel {\n background: rgba(0, 255, 0, 0.5);\n}\n\n.example-panel-blue.mat-mdc-select-panel {\n background: rgba(0, 0, 255, 0.5);\n}\n"] }] }] }); @@ -259,10 +258,10 @@ class SelectResetExample { 'Wisconsin', 'Wyoming', ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectResetExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectResetExample, isStandalone: true, selector: "select-reset-example", ngImport: i0, template: "

    mat-select

    \n\n State\n \n None\n @for (state of states; track state) {\n {{state}}\n }\n \n\n\n

    native html select

    \n\n Select your car\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectResetExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectResetExample, isStandalone: true, selector: "select-reset-example", ngImport: i0, template: "

    mat-select

    \n\n State\n \n None\n @for (state of states; track state) {\n {{state}}\n }\n \n\n\n

    native html select

    \n\n Select your car\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectResetExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectResetExample, decorators: [{ type: Component, args: [{ selector: 'select-reset-example', imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule], template: "

    mat-select

    \n\n State\n \n None\n @for (state of states; track state) {\n {{state}}\n }\n \n\n\n

    native html select

    \n\n Select your car\n \n\n" }] }] }); @@ -270,10 +269,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Select with 2-way value binding */ class SelectValueBindingExample { selected = 'option2'; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectValueBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SelectValueBindingExample, isStandalone: true, selector: "select-value-binding-example", ngImport: i0, template: "\n Select an option\n \n None\n Option 1\n Option 2\n Option 3\n \n\n\n

    You selected: {{selected}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectValueBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SelectValueBindingExample, isStandalone: true, selector: "select-value-binding-example", ngImport: i0, template: "\n Select an option\n \n None\n Option 1\n Option 2\n Option 3\n \n\n\n

    You selected: {{selected}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectValueBindingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectValueBindingExample, decorators: [{ type: Component, args: [{ selector: 'select-value-binding-example', imports: [MatFormFieldModule, MatSelectModule], template: "\n Select an option\n \n None\n Option 1\n Option 2\n Option 3\n \n\n\n

    You selected: {{selected}}

    \n" }] }] }); @@ -298,10 +297,10 @@ class SelectReactiveFormExample { food: this.foodControl, car: this.carControl, }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectReactiveFormExample, isStandalone: true, selector: "select-reactive-form-example", ngImport: i0, template: "
    \n

    mat-select

    \n \n Favorite Food\n \n None\n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected: {{foodControl.value}}

    \n

    Native select

    \n \n Favorite Car\n \n \n

    Selected: {{carControl.value}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectReactiveFormExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectReactiveFormExample, isStandalone: true, selector: "select-reactive-form-example", ngImport: i0, template: "
    \n

    mat-select

    \n \n Favorite Food\n \n None\n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected: {{foodControl.value}}

    \n

    Native select

    \n \n Favorite Car\n \n \n

    Selected: {{carControl.value}}

    \n
    \n", dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectReactiveFormExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectReactiveFormExample, decorators: [{ type: Component, args: [{ selector: 'select-reactive-form-example', imports: [FormsModule, ReactiveFormsModule, MatFormFieldModule, MatSelectModule, MatInputModule], template: "
    \n

    mat-select

    \n \n Favorite Food\n \n None\n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected: {{foodControl.value}}

    \n

    Native select

    \n \n Favorite Car\n \n \n

    Selected: {{carControl.value}}

    \n
    \n" }] }] }); @@ -325,10 +324,10 @@ class SelectInitialValueExample { selectCar(event) { this.selectedCar = event.target.value; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectInitialValueExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectInitialValueExample, isStandalone: true, selector: "select-initial-value-example", ngImport: i0, template: "

    Basic mat-select with initial value

    \n\n Favorite Food\n \n \n @for (option of foods; track option) {\n {{ option.viewValue }}\n }\n \n\n

    You selected: {{selectedFood}}

    \n\n

    Basic native select with initial value

    \n\n Favorite Car\n \n\n

    You selected: {{selectedCar}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i4.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectInitialValueExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectInitialValueExample, isStandalone: true, selector: "select-initial-value-example", ngImport: i0, template: "

    Basic mat-select with initial value

    \n\n Favorite Food\n \n \n @for (option of foods; track option) {\n {{ option.viewValue }}\n }\n \n\n

    You selected: {{selectedFood}}

    \n\n

    Basic native select with initial value

    \n\n Favorite Car\n \n\n

    You selected: {{selectedCar}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i3.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectInitialValueExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectInitialValueExample, decorators: [{ type: Component, args: [{ selector: 'select-initial-value-example', imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule], template: "

    Basic mat-select with initial value

    \n\n Favorite Food\n \n \n @for (option of foods; track option) {\n {{ option.viewValue }}\n }\n \n\n

    You selected: {{selectedFood}}

    \n\n

    Basic native select with initial value

    \n\n Favorite Car\n \n\n

    You selected: {{selectedCar}}

    \n" }] }] }); @@ -342,10 +341,10 @@ class SelectSelectableNullExample { { label: 'Two', value: 2 }, { label: 'Three', value: 3 }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectSelectableNullExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectSelectableNullExample, isStandalone: true, selector: "select-selectable-null-example", ngImport: i0, template: "

    mat-select allowing selection of nullable options

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n\n

    mat-select with default configuration

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectSelectableNullExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectSelectableNullExample, isStandalone: true, selector: "select-selectable-null-example", ngImport: i0, template: "

    mat-select allowing selection of nullable options

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n\n

    mat-select with default configuration

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectSelectableNullExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectSelectableNullExample, decorators: [{ type: Component, args: [{ selector: 'select-selectable-null-example', imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule], template: "

    mat-select allowing selection of nullable options

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n\n

    mat-select with default configuration

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n" }] }] }); @@ -359,17 +358,13 @@ class SelectHarnessExample { { value: 'pizza-1', viewValue: 'Pizza' }, { value: 'tacos-2', viewValue: 'Tacos' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SelectHarnessExample, isStandalone: true, selector: "select-harness-example", ngImport: i0, template: "\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SelectHarnessExample, isStandalone: true, selector: "select-harness-example", ngImport: i0, template: "\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SelectHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SelectHarnessExample, decorators: [{ type: Component, args: [{ selector: 'select-harness-example', imports: [MatFormFieldModule, MatSelectModule], template: "\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { SelectCustomTriggerExample, SelectDisabledExample, SelectErrorStateMatcherExample, SelectFormExample, SelectHarnessExample, SelectHintErrorExample, SelectInitialValueExample, SelectMultipleExample, SelectNoRippleExample, SelectOptgroupExample, SelectOverviewExample, SelectPanelClassExample, SelectReactiveFormExample, SelectResetExample, SelectSelectableNullExample, SelectValueBindingExample }; //# sourceMappingURL=select.mjs.map diff --git a/fesm2022/material/select.mjs.map b/fesm2022/material/select.mjs.map index e3e05503e4..8395116f8a 100755 --- a/fesm2022/material/select.mjs.map +++ b/fesm2022/material/select.mjs.map @@ -1 +1 @@ -{"version":3,"file":"select.mjs","sources":["../../../../../../../src/components-examples/material/select/select-custom-trigger/select-custom-trigger-example.ts","../../../../../../../src/components-examples/material/select/select-custom-trigger/select-custom-trigger-example.html","../../../../../../../src/components-examples/material/select/select-disabled/select-disabled-example.ts","../../../../../../../src/components-examples/material/select/select-disabled/select-disabled-example.html","../../../../../../../src/components-examples/material/select/select-error-state-matcher/select-error-state-matcher-example.ts","../../../../../../../src/components-examples/material/select/select-error-state-matcher/select-error-state-matcher-example.html","../../../../../../../src/components-examples/material/select/select-form/select-form-example.ts","../../../../../../../src/components-examples/material/select/select-form/select-form-example.html","../../../../../../../src/components-examples/material/select/select-hint-error/select-hint-error-example.ts","../../../../../../../src/components-examples/material/select/select-hint-error/select-hint-error-example.html","../../../../../../../src/components-examples/material/select/select-multiple/select-multiple-example.ts","../../../../../../../src/components-examples/material/select/select-multiple/select-multiple-example.html","../../../../../../../src/components-examples/material/select/select-no-ripple/select-no-ripple-example.ts","../../../../../../../src/components-examples/material/select/select-no-ripple/select-no-ripple-example.html","../../../../../../../src/components-examples/material/select/select-optgroup/select-optgroup-example.ts","../../../../../../../src/components-examples/material/select/select-optgroup/select-optgroup-example.html","../../../../../../../src/components-examples/material/select/select-overview/select-overview-example.ts","../../../../../../../src/components-examples/material/select/select-overview/select-overview-example.html","../../../../../../../src/components-examples/material/select/select-panel-class/select-panel-class-example.ts","../../../../../../../src/components-examples/material/select/select-panel-class/select-panel-class-example.html","../../../../../../../src/components-examples/material/select/select-reset/select-reset-example.ts","../../../../../../../src/components-examples/material/select/select-reset/select-reset-example.html","../../../../../../../src/components-examples/material/select/select-value-binding/select-value-binding-example.ts","../../../../../../../src/components-examples/material/select/select-value-binding/select-value-binding-example.html","../../../../../../../src/components-examples/material/select/select-reactive-form/select-reactive-form-example.ts","../../../../../../../src/components-examples/material/select/select-reactive-form/select-reactive-form-example.html","../../../../../../../src/components-examples/material/select/select-initial-value/select-initial-value-example.ts","../../../../../../../src/components-examples/material/select/select-initial-value/select-initial-value-example.html","../../../../../../../src/components-examples/material/select/select-selectable-null/select-selectable-null-example.ts","../../../../../../../src/components-examples/material/select/select-selectable-null/select-selectable-null-example.html","../../../../../../../src/components-examples/material/select/select-harness/select-harness-example.ts","../../../../../../../src/components-examples/material/select/select-harness/select-harness-example.html","../../../../../../../src/components-examples/material/select/select_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with custom trigger text */\n@Component({\n selector: 'select-custom-trigger-example',\n templateUrl: 'select-custom-trigger-example.html',\n styleUrl: 'select-custom-trigger-example.css',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectCustomTriggerExample {\n toppings = new FormControl('');\n\n toppingList: string[] = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato'];\n}\n","\n Toppings\n \n \n {{toppings.value?.[0] || ''}}\n @if ((toppings.value?.length || 0) > 1) {\n \n (+{{(toppings.value?.length || 0) - 1}} {{toppings.value?.length === 2 ? 'other' : 'others'}})\n \n }\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n}\n \n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/** @title Disabled select */\n@Component({\n selector: 'select-disabled-example',\n templateUrl: 'select-disabled-example.html',\n imports: [\n MatCheckboxModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatSelectModule,\n MatInputModule,\n ],\n})\nexport class SelectDisabledExample {\n disableSelect = new FormControl(false);\n}\n","

    \n Disable select\n

    \n\n

    mat-select

    \n\n Choose an option\n \n Option 1\n Option 2 (disabled)\n Option 3\n \n\n\n

    native html select

    \n\n Choose an option\n \n\n\n","import {Component} from '@angular/core';\nimport {\n FormControl,\n FormGroupDirective,\n NgForm,\n Validators,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport {ErrorStateMatcher} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** Error when invalid control is dirty, touched, or submitted. */\nexport class MyErrorStateMatcher implements ErrorStateMatcher {\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n/** @title Select with a custom ErrorStateMatcher */\n@Component({\n selector: 'select-error-state-matcher-example',\n templateUrl: 'select-error-state-matcher-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectErrorStateMatcherExample {\n selected = new FormControl('valid', [Validators.required, Validators.pattern('valid')]);\n\n selectFormControl = new FormControl('valid', [Validators.required, Validators.pattern('valid')]);\n\n nativeSelectFormControl = new FormControl('valid', [\n Validators.required,\n Validators.pattern('valid'),\n ]);\n\n matcher = new MyErrorStateMatcher();\n}\n","

    mat-select

    \n\n Choose one\n \n Clear\n Valid option\n Invalid option\n \n Errors appear instantly!\n @if (selected.hasError('required')) {\n You must make a selection\n }\n @if (selected.hasError('pattern') && !selected.hasError('required')) {\n Your selection is invalid\n }\n\n\n

    native html select

    \n\n Choose one\n \n @if (nativeSelectFormControl.hasError('required')) {\n You must make a selection\n }\n @if (nativeSelectFormControl.hasError('pattern') && !nativeSelectFormControl.hasError('required')) {\n Your selection is invalid\n }\n\n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Select in a form\n */\n@Component({\n selector: 'select-form-example',\n templateUrl: 'select-form-example.html',\n imports: [FormsModule, MatFormFieldModule, MatSelectModule, MatInputModule],\n})\nexport class SelectFormExample {\n selectedValue: string;\n selectedCar: string;\n\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n\n cars: Car[] = [\n {value: 'volvo', viewValue: 'Volvo'},\n {value: 'saab', viewValue: 'Saab'},\n {value: 'mercedes', viewValue: 'Mercedes'},\n ];\n}\n","
    \n

    mat-select

    \n \n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected food: {{selectedValue}}

    \n

    native html select

    \n \n Favorite car\n \n \n

    Selected car: {{selectedCar}}

    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Animal {\n name: string;\n sound: string;\n}\n\n/** @title Select with form field features */\n@Component({\n selector: 'select-hint-error-example',\n templateUrl: 'select-hint-error-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectHintErrorExample {\n animalControl = new FormControl(null, Validators.required);\n selectFormControl = new FormControl('', Validators.required);\n animals: Animal[] = [\n {name: 'Dog', sound: 'Woof!'},\n {name: 'Cat', sound: 'Meow!'},\n {name: 'Cow', sound: 'Moo!'},\n {name: 'Fox', sound: 'Wa-pa-pa-pa-pa-pa-pow!'},\n ];\n}\n","

    mat select

    \n\n Favorite animal\n \n --\n @for (animal of animals; track animal) {\n {{animal.name}}\n }\n \n @if (animalControl.hasError('required')) {\n Please choose an animal\n }\n {{animalControl.value?.sound}}\n\n\n

    native html select

    \n\n Select your car (required)\n \n @if (selectFormControl.hasError('required')) {\n This field is required\n }\n You can pick up your favorite car here\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with multiple selection */\n@Component({\n selector: 'select-multiple-example',\n templateUrl: 'select-multiple-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectMultipleExample {\n toppings = new FormControl('');\n toppingList: string[] = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato'];\n}\n","\n Toppings\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n }\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with no option ripple */\n@Component({\n selector: 'select-no-ripple-example',\n templateUrl: 'select-no-ripple-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectNoRippleExample {}\n","\n Select an option\n \n Option 1\n Option 2\n Option 3\n \n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Pokemon {\n value: string;\n viewValue: string;\n}\n\ninterface PokemonGroup {\n disabled?: boolean;\n name: string;\n pokemon: Pokemon[];\n}\n\n/** @title Select with option groups */\n@Component({\n selector: 'select-optgroup-example',\n templateUrl: 'select-optgroup-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectOptgroupExample {\n pokemonControl = new FormControl('');\n pokemonGroups: PokemonGroup[] = [\n {\n name: 'Grass',\n pokemon: [\n {value: 'bulbasaur-0', viewValue: 'Bulbasaur'},\n {value: 'oddish-1', viewValue: 'Oddish'},\n {value: 'bellsprout-2', viewValue: 'Bellsprout'},\n ],\n },\n {\n name: 'Water',\n pokemon: [\n {value: 'squirtle-3', viewValue: 'Squirtle'},\n {value: 'psyduck-4', viewValue: 'Psyduck'},\n {value: 'horsea-5', viewValue: 'Horsea'},\n ],\n },\n {\n name: 'Fire',\n disabled: true,\n pokemon: [\n {value: 'charmander-6', viewValue: 'Charmander'},\n {value: 'vulpix-7', viewValue: 'Vulpix'},\n {value: 'flareon-8', viewValue: 'Flareon'},\n ],\n },\n {\n name: 'Psychic',\n pokemon: [\n {value: 'mew-9', viewValue: 'Mew'},\n {value: 'mewtwo-10', viewValue: 'Mewtwo'},\n ],\n },\n ];\n}\n","

    mat-select

    \n\n Pokemon\n \n -- None --\n @for (group of pokemonGroups; track group) {\n \n @for (pokemon of group.pokemon; track pokemon) {\n {{pokemon.viewValue}}\n }\n \n }\n \n\n\n

    native html select

    \n\n Cars\n \n\n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Basic select\n */\n@Component({\n selector: 'select-overview-example',\n templateUrl: 'select-overview-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectOverviewExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n}\n","

    Basic mat-select

    \n\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n\n

    Basic native select

    \n\n Cars\n \n\n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Select with custom panel styling\n */\n@Component({\n selector: 'select-panel-class-example',\n templateUrl: 'select-panel-class-example.html',\n styleUrl: 'select-panel-class-example.css',\n // Encapsulation has to be disabled in order for the\n // component style to apply to the select panel.\n encapsulation: ViewEncapsulation.None,\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectPanelClassExample {\n panelColor = new FormControl('red');\n}\n","\n Panel color\n \n Red\n Green\n Blue\n \n\n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with reset option */\n@Component({\n selector: 'select-reset-example',\n templateUrl: 'select-reset-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectResetExample {\n states: string[] = [\n 'Alabama',\n 'Alaska',\n 'Arizona',\n 'Arkansas',\n 'California',\n 'Colorado',\n 'Connecticut',\n 'Delaware',\n 'Florida',\n 'Georgia',\n 'Hawaii',\n 'Idaho',\n 'Illinois',\n 'Indiana',\n 'Iowa',\n 'Kansas',\n 'Kentucky',\n 'Louisiana',\n 'Maine',\n 'Maryland',\n 'Massachusetts',\n 'Michigan',\n 'Minnesota',\n 'Mississippi',\n 'Missouri',\n 'Montana',\n 'Nebraska',\n 'Nevada',\n 'New Hampshire',\n 'New Jersey',\n 'New Mexico',\n 'New York',\n 'North Carolina',\n 'North Dakota',\n 'Ohio',\n 'Oklahoma',\n 'Oregon',\n 'Pennsylvania',\n 'Rhode Island',\n 'South Carolina',\n 'South Dakota',\n 'Tennessee',\n 'Texas',\n 'Utah',\n 'Vermont',\n 'Virginia',\n 'Washington',\n 'West Virginia',\n 'Wisconsin',\n 'Wyoming',\n ];\n}\n","

    mat-select

    \n\n State\n \n None\n @for (state of states; track state) {\n {{state}}\n }\n \n\n\n

    native html select

    \n\n Select your car\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with 2-way value binding */\n@Component({\n selector: 'select-value-binding-example',\n templateUrl: 'select-value-binding-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectValueBindingExample {\n selected = 'option2';\n}\n","\n Select an option\n \n None\n Option 1\n Option 2\n Option 3\n \n\n\n

    You selected: {{selected}}

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Select in a reactive form\n */\n@Component({\n selector: 'select-reactive-form-example',\n templateUrl: 'select-reactive-form-example.html',\n imports: [FormsModule, ReactiveFormsModule, MatFormFieldModule, MatSelectModule, MatInputModule],\n})\nexport class SelectReactiveFormExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n cars: Car[] = [\n {value: 'volvo', viewValue: 'Volvo'},\n {value: 'saab', viewValue: 'Saab'},\n {value: 'mercedes', viewValue: 'Mercedes'},\n ];\n foodControl = new FormControl(this.foods[2].value);\n carControl = new FormControl(this.cars[1].value);\n form = new FormGroup({\n food: this.foodControl,\n car: this.carControl,\n });\n}\n","
    \n

    mat-select

    \n \n Favorite Food\n \n None\n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected: {{foodControl.value}}

    \n

    Native select

    \n \n Favorite Car\n \n \n

    Selected: {{carControl.value}}

    \n
    \n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Basic select with initial value and no form\n */\n@Component({\n selector: 'select-initial-value-example',\n templateUrl: 'select-initial-value-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectInitialValueExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n cars: Car[] = [\n {value: 'ford', viewValue: 'Ford'},\n {value: 'chevrolet', viewValue: 'Chevrolet'},\n {value: 'dodge', viewValue: 'Dodge'},\n ];\n selectedFood = this.foods[2].value;\n selectedCar = this.cars[0].value;\n\n selectCar(event: Event) {\n this.selectedCar = (event.target as HTMLSelectElement).value;\n }\n}\n","

    Basic mat-select with initial value

    \n\n Favorite Food\n \n \n @for (option of foods; track option) {\n {{ option.viewValue }}\n }\n \n\n

    You selected: {{selectedFood}}

    \n\n

    Basic native select with initial value

    \n\n Favorite Car\n \n\n

    You selected: {{selectedCar}}

    \n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with selectable null options */\n@Component({\n selector: 'select-selectable-null-example',\n templateUrl: 'select-selectable-null-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectSelectableNullExample {\n value: number | null = null;\n options = [\n {label: 'None', value: null},\n {label: 'One', value: 1},\n {label: 'Two', value: 2},\n {label: 'Three', value: 3},\n ];\n}\n","

    mat-select allowing selection of nullable options

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n\n

    mat-select with default configuration

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Testing with MatSelectHarness\n */\n@Component({\n selector: 'select-harness-example',\n templateUrl: 'select-harness-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectHarnessExample {\n foods = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n}\n","\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i6","i4","i5"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"select.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-custom-trigger/select-custom-trigger-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-custom-trigger/select-custom-trigger-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-disabled/select-disabled-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-disabled/select-disabled-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-error-state-matcher/select-error-state-matcher-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-error-state-matcher/select-error-state-matcher-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-form/select-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-form/select-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-hint-error/select-hint-error-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-hint-error/select-hint-error-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-multiple/select-multiple-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-multiple/select-multiple-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-no-ripple/select-no-ripple-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-no-ripple/select-no-ripple-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-optgroup/select-optgroup-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-optgroup/select-optgroup-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-overview/select-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-overview/select-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-panel-class/select-panel-class-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-panel-class/select-panel-class-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-reset/select-reset-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-reset/select-reset-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-value-binding/select-value-binding-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-value-binding/select-value-binding-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-reactive-form/select-reactive-form-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-reactive-form/select-reactive-form-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-initial-value/select-initial-value-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-initial-value/select-initial-value-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-selectable-null/select-selectable-null-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-selectable-null/select-selectable-null-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-harness/select-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/select/select-harness/select-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with custom trigger text */\n@Component({\n selector: 'select-custom-trigger-example',\n templateUrl: 'select-custom-trigger-example.html',\n styleUrl: 'select-custom-trigger-example.css',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectCustomTriggerExample {\n toppings = new FormControl('');\n\n toppingList: string[] = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato'];\n}\n","\n Toppings\n \n \n {{toppings.value?.[0] || ''}}\n @if ((toppings.value?.length || 0) > 1) {\n \n (+{{(toppings.value?.length || 0) - 1}} {{toppings.value?.length === 2 ? 'other' : 'others'}})\n \n }\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n}\n \n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\n/** @title Disabled select */\n@Component({\n selector: 'select-disabled-example',\n templateUrl: 'select-disabled-example.html',\n imports: [\n MatCheckboxModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatSelectModule,\n MatInputModule,\n ],\n})\nexport class SelectDisabledExample {\n disableSelect = new FormControl(false);\n}\n","

    \n Disable select\n

    \n\n

    mat-select

    \n\n Choose an option\n \n Option 1\n Option 2 (disabled)\n Option 3\n \n\n\n

    native html select

    \n\n Choose an option\n \n\n\n","import {Component} from '@angular/core';\nimport {\n FormControl,\n FormGroupDirective,\n NgForm,\n Validators,\n FormsModule,\n ReactiveFormsModule,\n} from '@angular/forms';\nimport {ErrorStateMatcher} from '@angular/material/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** Error when invalid control is dirty, touched, or submitted. */\nexport class MyErrorStateMatcher implements ErrorStateMatcher {\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n/** @title Select with a custom ErrorStateMatcher */\n@Component({\n selector: 'select-error-state-matcher-example',\n templateUrl: 'select-error-state-matcher-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectErrorStateMatcherExample {\n selected = new FormControl('valid', [Validators.required, Validators.pattern('valid')]);\n\n selectFormControl = new FormControl('valid', [Validators.required, Validators.pattern('valid')]);\n\n nativeSelectFormControl = new FormControl('valid', [\n Validators.required,\n Validators.pattern('valid'),\n ]);\n\n matcher = new MyErrorStateMatcher();\n}\n","

    mat-select

    \n\n Choose one\n \n Clear\n Valid option\n Invalid option\n \n Errors appear instantly!\n @if (selected.hasError('required')) {\n You must make a selection\n }\n @if (selected.hasError('pattern') && !selected.hasError('required')) {\n Your selection is invalid\n }\n\n\n

    native html select

    \n\n Choose one\n \n @if (nativeSelectFormControl.hasError('required')) {\n You must make a selection\n }\n @if (nativeSelectFormControl.hasError('pattern') && !nativeSelectFormControl.hasError('required')) {\n Your selection is invalid\n }\n\n","import {Component} from '@angular/core';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {FormsModule} from '@angular/forms';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Select in a form\n */\n@Component({\n selector: 'select-form-example',\n templateUrl: 'select-form-example.html',\n imports: [FormsModule, MatFormFieldModule, MatSelectModule, MatInputModule],\n})\nexport class SelectFormExample {\n selectedValue: string;\n selectedCar: string;\n\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n\n cars: Car[] = [\n {value: 'volvo', viewValue: 'Volvo'},\n {value: 'saab', viewValue: 'Saab'},\n {value: 'mercedes', viewValue: 'Mercedes'},\n ];\n}\n","
    \n

    mat-select

    \n \n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected food: {{selectedValue}}

    \n

    native html select

    \n \n Favorite car\n \n \n

    Selected car: {{selectedCar}}

    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Animal {\n name: string;\n sound: string;\n}\n\n/** @title Select with form field features */\n@Component({\n selector: 'select-hint-error-example',\n templateUrl: 'select-hint-error-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectHintErrorExample {\n animalControl = new FormControl(null, Validators.required);\n selectFormControl = new FormControl('', Validators.required);\n animals: Animal[] = [\n {name: 'Dog', sound: 'Woof!'},\n {name: 'Cat', sound: 'Meow!'},\n {name: 'Cow', sound: 'Moo!'},\n {name: 'Fox', sound: 'Wa-pa-pa-pa-pa-pa-pow!'},\n ];\n}\n","

    mat select

    \n\n Favorite animal\n \n --\n @for (animal of animals; track animal) {\n {{animal.name}}\n }\n \n @if (animalControl.hasError('required')) {\n Please choose an animal\n }\n {{animalControl.value?.sound}}\n\n\n

    native html select

    \n\n Select your car (required)\n \n @if (selectFormControl.hasError('required')) {\n This field is required\n }\n You can pick up your favorite car here\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with multiple selection */\n@Component({\n selector: 'select-multiple-example',\n templateUrl: 'select-multiple-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectMultipleExample {\n toppings = new FormControl('');\n toppingList: string[] = ['Extra cheese', 'Mushroom', 'Onion', 'Pepperoni', 'Sausage', 'Tomato'];\n}\n","\n Toppings\n \n @for (topping of toppingList; track topping) {\n {{topping}}\n }\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with no option ripple */\n@Component({\n selector: 'select-no-ripple-example',\n templateUrl: 'select-no-ripple-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectNoRippleExample {}\n","\n Select an option\n \n Option 1\n Option 2\n Option 3\n \n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Pokemon {\n value: string;\n viewValue: string;\n}\n\ninterface PokemonGroup {\n disabled?: boolean;\n name: string;\n pokemon: Pokemon[];\n}\n\n/** @title Select with option groups */\n@Component({\n selector: 'select-optgroup-example',\n templateUrl: 'select-optgroup-example.html',\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule, MatInputModule],\n})\nexport class SelectOptgroupExample {\n pokemonControl = new FormControl('');\n pokemonGroups: PokemonGroup[] = [\n {\n name: 'Grass',\n pokemon: [\n {value: 'bulbasaur-0', viewValue: 'Bulbasaur'},\n {value: 'oddish-1', viewValue: 'Oddish'},\n {value: 'bellsprout-2', viewValue: 'Bellsprout'},\n ],\n },\n {\n name: 'Water',\n pokemon: [\n {value: 'squirtle-3', viewValue: 'Squirtle'},\n {value: 'psyduck-4', viewValue: 'Psyduck'},\n {value: 'horsea-5', viewValue: 'Horsea'},\n ],\n },\n {\n name: 'Fire',\n disabled: true,\n pokemon: [\n {value: 'charmander-6', viewValue: 'Charmander'},\n {value: 'vulpix-7', viewValue: 'Vulpix'},\n {value: 'flareon-8', viewValue: 'Flareon'},\n ],\n },\n {\n name: 'Psychic',\n pokemon: [\n {value: 'mew-9', viewValue: 'Mew'},\n {value: 'mewtwo-10', viewValue: 'Mewtwo'},\n ],\n },\n ];\n}\n","

    mat-select

    \n\n Pokemon\n \n -- None --\n @for (group of pokemonGroups; track group) {\n \n @for (pokemon of group.pokemon; track pokemon) {\n {{pokemon.viewValue}}\n }\n \n }\n \n\n\n

    native html select

    \n\n Cars\n \n\n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Basic select\n */\n@Component({\n selector: 'select-overview-example',\n templateUrl: 'select-overview-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectOverviewExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n}\n","

    Basic mat-select

    \n\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n\n

    Basic native select

    \n\n Cars\n \n\n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Select with custom panel styling\n */\n@Component({\n selector: 'select-panel-class-example',\n templateUrl: 'select-panel-class-example.html',\n styleUrl: 'select-panel-class-example.css',\n // Encapsulation has to be disabled in order for the\n // component style to apply to the select panel.\n encapsulation: ViewEncapsulation.None,\n imports: [MatFormFieldModule, MatSelectModule, FormsModule, ReactiveFormsModule],\n})\nexport class SelectPanelClassExample {\n panelColor = new FormControl('red');\n}\n","\n Panel color\n \n Red\n Green\n Blue\n \n\n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with reset option */\n@Component({\n selector: 'select-reset-example',\n templateUrl: 'select-reset-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectResetExample {\n states: string[] = [\n 'Alabama',\n 'Alaska',\n 'Arizona',\n 'Arkansas',\n 'California',\n 'Colorado',\n 'Connecticut',\n 'Delaware',\n 'Florida',\n 'Georgia',\n 'Hawaii',\n 'Idaho',\n 'Illinois',\n 'Indiana',\n 'Iowa',\n 'Kansas',\n 'Kentucky',\n 'Louisiana',\n 'Maine',\n 'Maryland',\n 'Massachusetts',\n 'Michigan',\n 'Minnesota',\n 'Mississippi',\n 'Missouri',\n 'Montana',\n 'Nebraska',\n 'Nevada',\n 'New Hampshire',\n 'New Jersey',\n 'New Mexico',\n 'New York',\n 'North Carolina',\n 'North Dakota',\n 'Ohio',\n 'Oklahoma',\n 'Oregon',\n 'Pennsylvania',\n 'Rhode Island',\n 'South Carolina',\n 'South Dakota',\n 'Tennessee',\n 'Texas',\n 'Utah',\n 'Vermont',\n 'Virginia',\n 'Washington',\n 'West Virginia',\n 'Wisconsin',\n 'Wyoming',\n ];\n}\n","

    mat-select

    \n\n State\n \n None\n @for (state of states; track state) {\n {{state}}\n }\n \n\n\n

    native html select

    \n\n Select your car\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with 2-way value binding */\n@Component({\n selector: 'select-value-binding-example',\n templateUrl: 'select-value-binding-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectValueBindingExample {\n selected = 'option2';\n}\n","\n Select an option\n \n None\n Option 1\n Option 2\n Option 3\n \n\n\n

    You selected: {{selected}}

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Select in a reactive form\n */\n@Component({\n selector: 'select-reactive-form-example',\n templateUrl: 'select-reactive-form-example.html',\n imports: [FormsModule, ReactiveFormsModule, MatFormFieldModule, MatSelectModule, MatInputModule],\n})\nexport class SelectReactiveFormExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n cars: Car[] = [\n {value: 'volvo', viewValue: 'Volvo'},\n {value: 'saab', viewValue: 'Saab'},\n {value: 'mercedes', viewValue: 'Mercedes'},\n ];\n foodControl = new FormControl(this.foods[2].value);\n carControl = new FormControl(this.cars[1].value);\n form = new FormGroup({\n food: this.foodControl,\n car: this.carControl,\n });\n}\n","
    \n

    mat-select

    \n \n Favorite Food\n \n None\n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n \n

    Selected: {{foodControl.value}}

    \n

    Native select

    \n \n Favorite Car\n \n \n

    Selected: {{carControl.value}}

    \n
    \n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\ninterface Food {\n value: string;\n viewValue: string;\n}\n\ninterface Car {\n value: string;\n viewValue: string;\n}\n\n/**\n * @title Basic select with initial value and no form\n */\n@Component({\n selector: 'select-initial-value-example',\n templateUrl: 'select-initial-value-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectInitialValueExample {\n foods: Food[] = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n cars: Car[] = [\n {value: 'ford', viewValue: 'Ford'},\n {value: 'chevrolet', viewValue: 'Chevrolet'},\n {value: 'dodge', viewValue: 'Dodge'},\n ];\n selectedFood = this.foods[2].value;\n selectedCar = this.cars[0].value;\n\n selectCar(event: Event) {\n this.selectedCar = (event.target as HTMLSelectElement).value;\n }\n}\n","

    Basic mat-select with initial value

    \n\n Favorite Food\n \n \n @for (option of foods; track option) {\n {{ option.viewValue }}\n }\n \n\n

    You selected: {{selectedFood}}

    \n\n

    Basic native select with initial value

    \n\n Favorite Car\n \n\n

    You selected: {{selectedCar}}

    \n","import {Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/** @title Select with selectable null options */\n@Component({\n selector: 'select-selectable-null-example',\n templateUrl: 'select-selectable-null-example.html',\n imports: [MatFormFieldModule, MatSelectModule, MatInputModule, FormsModule],\n})\nexport class SelectSelectableNullExample {\n value: number | null = null;\n options = [\n {label: 'None', value: null},\n {label: 'One', value: 1},\n {label: 'Two', value: 2},\n {label: 'Three', value: 3},\n ];\n}\n","

    mat-select allowing selection of nullable options

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n\n

    mat-select with default configuration

    \n\n State\n \n @for (option of options; track option) {\n {{option.label}}\n }\n \n\n","import {Component} from '@angular/core';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Testing with MatSelectHarness\n */\n@Component({\n selector: 'select-harness-example',\n templateUrl: 'select-harness-example.html',\n imports: [MatFormFieldModule, MatSelectModule],\n})\nexport class SelectHarnessExample {\n foods = [\n {value: 'steak-0', viewValue: 'Steak'},\n {value: 'pizza-1', viewValue: 'Pizza'},\n {value: 'tacos-2', viewValue: 'Tacos'},\n ];\n}\n","\n Favorite food\n \n @for (food of foods; track food) {\n {{food.viewValue}}\n }\n \n\n"],"names":["i1","i2","i3","i5","i4"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/sidenav.mjs b/fesm2022/material/sidenav.mjs index 6179ad3150..fbb9801ae2 100755 --- a/fesm2022/material/sidenav.mjs +++ b/fesm2022/material/sidenav.mjs @@ -1,29 +1,28 @@ import * as i0 from '@angular/core'; import { Component, ViewChild, inject, signal } from '@angular/core'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i1 from '@angular/material/sidenav'; import { MatSidenavModule } from '@angular/material/sidenav'; -import * as i3 from '@angular/material/select'; +import * as i2 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; -import * as i2$1 from '@angular/material/form-field'; +import * as i1$2 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i4 from '@angular/material/core'; -import * as i3$1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormBuilder, FormsModule, ReactiveFormsModule, FormControl } from '@angular/forms'; -import * as i4$1 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i1$1 from '@angular/material/toolbar'; +import * as i1$3 from '@angular/material/toolbar'; import { MatToolbarModule } from '@angular/material/toolbar'; -import * as i7 from '@angular/material/input'; +import * as i2$2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i3$2 from '@angular/material/radio'; +import * as i1$4 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import { FocusTrapFactory, ConfigurableFocusTrapFactory } from '@angular/cdk/a11y'; import { MediaMatcher } from '@angular/cdk/layout'; -import * as i5 from '@angular/material/list'; +import * as i1$5 from '@angular/material/list'; import { MatListModule } from '@angular/material/list'; -import * as i3$3 from '@angular/material/icon'; +import * as i3$1 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; /** @@ -31,22 +30,22 @@ import { MatIconModule } from '@angular/material/icon'; */ class SidenavAutosizeExample { showFiller = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavAutosizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavAutosizeExample, isStandalone: true, selector: "sidenav-autosize-example", ngImport: i0, template: "\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n", styles: [".example-container {\n width: 500px;\n height: 300px;\n border: 1px solid rgba(0, 0, 0, 0.5);\n}\n\n.example-sidenav-content {\n display: flex;\n height: 100%;\n align-items: center;\n justify-content: center;\n}\n\n.example-sidenav {\n padding: 20px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavAutosizeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavAutosizeExample, isStandalone: true, selector: "sidenav-autosize-example", ngImport: i0, template: "\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n", styles: [".example-container {\n width: 500px;\n height: 300px;\n border: 1px solid rgba(0, 0, 0, 0.5);\n}\n\n.example-sidenav-content {\n display: flex;\n height: 100%;\n align-items: center;\n justify-content: center;\n}\n\n.example-sidenav {\n padding: 20px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavAutosizeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavAutosizeExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-autosize-example', imports: [MatSidenavModule, MatButtonModule], template: "\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n", styles: [".example-container {\n width: 500px;\n height: 300px;\n border: 1px solid rgba(0, 0, 0, 0.5);\n}\n\n.example-sidenav-content {\n display: flex;\n height: 100%;\n align-items: center;\n justify-content: center;\n}\n\n.example-sidenav {\n padding: 20px;\n}\n"] }] + args: [{ selector: 'sidenav-autosize-example', imports: [MatSidenavModule, MatButtonModule], template: "\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n", styles: [".example-container {\n width: 500px;\n height: 300px;\n border: 1px solid rgba(0, 0, 0, 0.5);\n}\n\n.example-sidenav-content {\n display: flex;\n height: 100%;\n align-items: center;\n justify-content: center;\n}\n\n.example-sidenav {\n padding: 20px;\n}\n"] }] }] }); /** @title Drawer with explicit backdrop setting */ class SidenavBackdropExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavBackdropExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SidenavBackdropExample, isStandalone: true, selector: "sidenav-backdrop-example", ngImport: i0, template: "\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n", styles: [".example-container {\n width: 400px;\n height: 200px;\n margin: 12px;\n border: 1px solid #555;\n}\n\nmat-drawer-content {\n padding: 12px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavBackdropExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SidenavBackdropExample, isStandalone: true, selector: "sidenav-backdrop-example", ngImport: i0, template: "\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n", styles: [".example-container {\n width: 400px;\n height: 200px;\n margin: 12px;\n border: 1px solid #555;\n}\n\nmat-drawer-content {\n padding: 12px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavBackdropExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavBackdropExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-backdrop-example', imports: [MatSidenavModule, MatFormFieldModule, MatSelectModule, MatButtonModule], template: "\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n", styles: [".example-container {\n width: 400px;\n height: 200px;\n margin: 12px;\n border: 1px solid #555;\n}\n\nmat-drawer-content {\n padding: 12px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"] }] + args: [{ selector: 'sidenav-backdrop-example', imports: [MatSidenavModule, MatFormFieldModule, MatSelectModule, MatButtonModule], template: "\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n", styles: [".example-container {\n width: 400px;\n height: 200px;\n margin: 12px;\n border: 1px solid #555;\n}\n\nmat-drawer-content {\n padding: 12px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n}\n"] }] }] }); /** @title Sidenav with custom escape and backdrop click behavior */ @@ -58,12 +57,12 @@ class SidenavDisableCloseExample { this.sidenav.close(); } shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavDisableCloseExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavDisableCloseExample, isStandalone: true, selector: "sidenav-disable-close-example", viewQueries: [{ propertyName: "sidenav", first: true, predicate: ["sidenav"], descendants: true }], ngImport: i0, template: "@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavDisableCloseExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavDisableCloseExample, isStandalone: true, selector: "sidenav-disable-close-example", viewQueries: [{ propertyName: "sidenav", first: true, predicate: ["sidenav"], descendants: true }], ngImport: i0, template: "@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavDisableCloseExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavDisableCloseExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-disable-close-example', imports: [MatSidenavModule, MatButtonModule], template: "@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"] }] + args: [{ selector: 'sidenav-disable-close-example', imports: [MatSidenavModule, MatButtonModule], template: "@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"] }] }], propDecorators: { sidenav: [{ type: ViewChild, args: ['sidenav'] @@ -71,10 +70,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Basic drawer */ class SidenavDrawerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavDrawerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SidenavDrawerOverviewExample, isStandalone: true, selector: "sidenav-drawer-overview-example", ngImport: i0, template: "\n Drawer content\n Main content\n\n", styles: [".example-container {\n width: auto;\n height: 200px;\n margin: 10px;\n border: 1px solid #555;\n /* The background property is added to clearly distinguish the borders between drawer and main\n content */\n background: #eee;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavDrawerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SidenavDrawerOverviewExample, isStandalone: true, selector: "sidenav-drawer-overview-example", ngImport: i0, template: "\n Drawer content\n Main content\n\n", styles: [".example-container {\n width: auto;\n height: 200px;\n margin: 10px;\n border: 1px solid #555;\n /* The background property is added to clearly distinguish the borders between drawer and main\n content */\n background: #eee;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavDrawerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavDrawerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'sidenav-drawer-overview-example', imports: [MatSidenavModule], template: "\n Drawer content\n Main content\n\n", styles: [".example-container {\n width: auto;\n height: 200px;\n margin: 10px;\n border: 1px solid #555;\n /* The background property is added to clearly distinguish the borders between drawer and main\n content */\n background: #eee;\n}\n"] }] }] }); @@ -88,10 +87,10 @@ class SidenavFixedExample { top: 0, }); shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavFixedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavFixedExample, isStandalone: true, selector: "sidenav-fixed-example", ngImport: i0, template: "@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 60px;\n bottom: 60px;\n left: 0;\n right: 0;\n}\n\n.example-sidenav {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 200px;\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-header {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.example-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1$1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i4$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i7.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavFixedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavFixedExample, isStandalone: true, selector: "sidenav-fixed-example", ngImport: i0, template: "@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 60px;\n bottom: 60px;\n left: 0;\n right: 0;\n}\n\n.example-sidenav {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 200px;\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-header {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.example-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1$3.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavFixedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavFixedExample, decorators: [{ type: Component, args: [{ selector: 'sidenav-fixed-example', imports: [ MatToolbarModule, @@ -102,7 +101,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatButtonModule, MatInputModule, - ], template: "@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 60px;\n bottom: 60px;\n left: 0;\n right: 0;\n}\n\n.example-sidenav {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 200px;\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-header {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.example-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"] }] + ], template: "@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 60px;\n bottom: 60px;\n left: 0;\n right: 0;\n}\n\n.example-sidenav {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 200px;\n background: rgba(255, 0, 0, 0.5);\n}\n\n.example-header {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n}\n\n.example-footer {\n position: fixed;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"] }] }] }); /** @title Sidenav using injected ConfigurableFocusTrap */ @@ -111,12 +110,12 @@ class SidenavConfigurableFocusTrapExample { hasBackdrop = new FormControl(null); position = new FormControl('start'); shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavConfigurableFocusTrapExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavConfigurableFocusTrapExample, isStandalone: true, selector: "sidenav-configurable-focus-trap-example", providers: [{ provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory }], ngImport: i0, template: "@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-radio-group {\n display: block;\n border: 1px solid #555;\n margin: 20px;\n padding: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i3$2.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i3$2.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavConfigurableFocusTrapExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavConfigurableFocusTrapExample, isStandalone: true, selector: "sidenav-configurable-focus-trap-example", providers: [{ provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory }], ngImport: i0, template: "@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-radio-group {\n display: block;\n border: 1px solid #555;\n margin: 20px;\n padding: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$4.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$4.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavConfigurableFocusTrapExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavConfigurableFocusTrapExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-configurable-focus-trap-example', imports: [MatSidenavModule, MatButtonModule, MatRadioModule, FormsModule, ReactiveFormsModule], providers: [{ provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory }], template: "@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-radio-group {\n display: block;\n border: 1px solid #555;\n margin: 20px;\n padding: 10px;\n}\n"] }] + args: [{ selector: 'sidenav-configurable-focus-trap-example', imports: [MatSidenavModule, MatButtonModule, MatRadioModule, FormsModule, ReactiveFormsModule], providers: [{ provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory }], template: "@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-radio-group {\n display: block;\n border: 1px solid #555;\n margin: 20px;\n padding: 10px;\n}\n"] }] }] }); /** @title Sidenav open & close behavior */ @@ -124,21 +123,21 @@ class SidenavOpenCloseExample { events = []; opened; shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavOpenCloseExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavOpenCloseExample, isStandalone: true, selector: "sidenav-open-close-example", ngImport: i0, template: "@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-events {\n width: 300px;\n height: 200px;\n overflow: auto;\n border: 1px solid #555;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i4$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavOpenCloseExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavOpenCloseExample, isStandalone: true, selector: "sidenav-open-close-example", ngImport: i0, template: "@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-events {\n width: 300px;\n height: 200px;\n overflow: auto;\n border: 1px solid #555;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavOpenCloseExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavOpenCloseExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-open-close-example', imports: [MatSidenavModule, MatCheckboxModule, FormsModule, MatButtonModule], template: "@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-events {\n width: 300px;\n height: 200px;\n overflow: auto;\n border: 1px solid #555;\n}\n"] }] + args: [{ selector: 'sidenav-open-close-example', imports: [MatSidenavModule, MatCheckboxModule, FormsModule, MatButtonModule], template: "@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-events {\n width: 300px;\n height: 200px;\n overflow: auto;\n border: 1px solid #555;\n}\n"] }] }] }); /** @title Basic sidenav */ class SidenavOverviewExample { shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavOverviewExample, isStandalone: true, selector: "sidenav-overview-example", ngImport: i0, template: "@if (shouldRun) {\n \n Sidenav content\n Main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background: #eee;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavOverviewExample, isStandalone: true, selector: "sidenav-overview-example", ngImport: i0, template: "@if (shouldRun) {\n \n Sidenav content\n Main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background: #eee;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavOverviewExample, decorators: [{ type: Component, args: [{ selector: 'sidenav-overview-example', imports: [MatSidenavModule], template: "@if (shouldRun) {\n \n Sidenav content\n Main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n background: #eee;\n}\n"] }] }] }); @@ -146,10 +145,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Implicit main content with two sidenavs */ class SidenavPositionExample { shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavPositionExample, isStandalone: true, selector: "sidenav-position-example", ngImport: i0, template: "@if (shouldRun) {\n \n Start content\n End content\n Implicit main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavPositionExample, isStandalone: true, selector: "sidenav-position-example", ngImport: i0, template: "@if (shouldRun) {\n \n Start content\n End content\n Implicit main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavPositionExample, decorators: [{ type: Component, args: [{ selector: 'sidenav-position-example', imports: [MatSidenavModule], template: "@if (shouldRun) {\n \n Start content\n End content\n Implicit main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n"] }] }] }); @@ -176,29 +175,25 @@ class SidenavResponsiveExample { this._mobileQuery.removeEventListener('change', this._mobileQueryListener); } shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavResponsiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SidenavResponsiveExample, isStandalone: true, selector: "sidenav-responsive-example", ngImport: i0, template: "@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-is-mobile .example-toolbar {\n position: fixed;\n /* Make sure the toolbar will stay on top of the content as it scrolls past. */\n z-index: 2;\n}\n\nh1.example-app-name {\n margin-left: 8px;\n}\n\n.example-sidenav-container {\n /* When the sidenav is not fixed, stretch the sidenav container to fill the available space. This\n causes `` to act as our scrolling element for desktop layouts. */\n flex: 1;\n}\n\n.example-is-mobile .example-sidenav-container {\n /* When the sidenav is fixed, don't constrain the height of the sidenav container. This allows the\n `` to be our scrolling element for mobile layouts. */\n flex: 1 0 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1$1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i5.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i5.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavResponsiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SidenavResponsiveExample, isStandalone: true, selector: "sidenav-responsive-example", ngImport: i0, template: "@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-is-mobile .example-toolbar {\n position: fixed;\n /* Make sure the toolbar will stay on top of the content as it scrolls past. */\n z-index: 2;\n}\n\nh1.example-app-name {\n margin-left: 8px;\n}\n\n.example-sidenav-container {\n /* When the sidenav is not fixed, stretch the sidenav container to fill the available space. This\n causes `` to act as our scrolling element for desktop layouts. */\n flex: 1;\n}\n\n.example-is-mobile .example-sidenav-container {\n /* When the sidenav is fixed, don't constrain the height of the sidenav container. This allows the\n `` to be our scrolling element for mobile layouts. */\n flex: 1 0 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1$3.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatSidenav, selector: "mat-sidenav", inputs: ["fixedInViewport", "fixedTopGap", "fixedBottomGap"], exportAs: ["matSidenav"] }, { kind: "component", type: i1.MatSidenavContainer, selector: "mat-sidenav-container", exportAs: ["matSidenavContainer"] }, { kind: "component", type: i1.MatSidenavContent, selector: "mat-sidenav-content" }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1$5.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i1$5.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavResponsiveExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavResponsiveExample, decorators: [{ type: Component, - args: [{ selector: 'sidenav-responsive-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule], template: "@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-is-mobile .example-toolbar {\n position: fixed;\n /* Make sure the toolbar will stay on top of the content as it scrolls past. */\n z-index: 2;\n}\n\nh1.example-app-name {\n margin-left: 8px;\n}\n\n.example-sidenav-container {\n /* When the sidenav is not fixed, stretch the sidenav container to fill the available space. This\n causes `` to act as our scrolling element for desktop layouts. */\n flex: 1;\n}\n\n.example-is-mobile .example-sidenav-container {\n /* When the sidenav is fixed, don't constrain the height of the sidenav container. This allows the\n `` to be our scrolling element for mobile layouts. */\n flex: 1 0 auto;\n}\n"] }] + args: [{ selector: 'sidenav-responsive-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule], template: "@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n", styles: [".example-container {\n display: flex;\n flex-direction: column;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n}\n\n.example-is-mobile .example-toolbar {\n position: fixed;\n /* Make sure the toolbar will stay on top of the content as it scrolls past. */\n z-index: 2;\n}\n\nh1.example-app-name {\n margin-left: 8px;\n}\n\n.example-sidenav-container {\n /* When the sidenav is not fixed, stretch the sidenav container to fill the available space. This\n causes `` to act as our scrolling element for desktop layouts. */\n flex: 1;\n}\n\n.example-is-mobile .example-sidenav-container {\n /* When the sidenav is fixed, don't constrain the height of the sidenav container. This allows the\n `` to be our scrolling element for mobile layouts. */\n flex: 1 0 auto;\n}\n"] }] }], ctorParameters: () => [] }); /** * @title Testing with MatSidenavHarness */ class SidenavHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SidenavHarnessExample, isStandalone: true, selector: "sidenav-harness-example", ngImport: i0, template: "\n Hello from the drawer\n Hello from the content\n\n", dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SidenavHarnessExample, isStandalone: true, selector: "sidenav-harness-example", ngImport: i0, template: "\n Hello from the drawer\n Hello from the content\n\n", dependencies: [{ kind: "ngmodule", type: MatSidenavModule }, { kind: "component", type: i1.MatDrawer, selector: "mat-drawer", inputs: ["position", "mode", "disableClose", "autoFocus", "opened"], outputs: ["openedChange", "opened", "openedStart", "closed", "closedStart", "positionChanged"], exportAs: ["matDrawer"] }, { kind: "component", type: i1.MatDrawerContainer, selector: "mat-drawer-container", inputs: ["autosize", "hasBackdrop"], outputs: ["backdropClick"], exportAs: ["matDrawerContainer"] }, { kind: "component", type: i1.MatDrawerContent, selector: "mat-drawer-content" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SidenavHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SidenavHarnessExample, decorators: [{ type: Component, args: [{ selector: 'sidenav-harness-example', imports: [MatSidenavModule], template: "\n Hello from the drawer\n Hello from the content\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { SidenavAutosizeExample, SidenavBackdropExample, SidenavConfigurableFocusTrapExample, SidenavDisableCloseExample, SidenavDrawerOverviewExample, SidenavFixedExample, SidenavHarnessExample, SidenavOpenCloseExample, SidenavOverviewExample, SidenavPositionExample, SidenavResponsiveExample }; //# sourceMappingURL=sidenav.mjs.map diff --git a/fesm2022/material/sidenav.mjs.map b/fesm2022/material/sidenav.mjs.map index 71cbe0ff3c..6e04099e4a 100755 --- a/fesm2022/material/sidenav.mjs.map +++ b/fesm2022/material/sidenav.mjs.map @@ -1 +1 @@ -{"version":3,"file":"sidenav.mjs","sources":["../../../../../../../src/components-examples/material/sidenav/sidenav-autosize/sidenav-autosize-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-autosize/sidenav-autosize-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-drawer-overview/sidenav-drawer-overview-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-drawer-overview/sidenav-drawer-overview-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-fixed/sidenav-fixed-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-fixed/sidenav-fixed-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-open-close/sidenav-open-close-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-open-close/sidenav-open-close-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-overview/sidenav-overview-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-overview/sidenav-overview-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-position/sidenav-position-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-position/sidenav-position-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-responsive/sidenav-responsive-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-responsive/sidenav-responsive-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav-harness/sidenav-harness-example.ts","../../../../../../../src/components-examples/material/sidenav/sidenav-harness/sidenav-harness-example.html","../../../../../../../src/components-examples/material/sidenav/sidenav_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/**\n * @title Autosize sidenav\n */\n@Component({\n selector: 'sidenav-autosize-example',\n templateUrl: 'sidenav-autosize-example.html',\n styleUrl: 'sidenav-autosize-example.css',\n imports: [MatSidenavModule, MatButtonModule],\n})\nexport class SidenavAutosizeExample {\n showFiller = false;\n}\n","\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Drawer with explicit backdrop setting */\n@Component({\n selector: 'sidenav-backdrop-example',\n templateUrl: 'sidenav-backdrop-example.html',\n styleUrl: 'sidenav-backdrop-example.css',\n imports: [MatSidenavModule, MatFormFieldModule, MatSelectModule, MatButtonModule],\n})\nexport class SidenavBackdropExample {}\n","\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n","import {Component, ViewChild} from '@angular/core';\nimport {MatSidenav, MatSidenavModule} from '@angular/material/sidenav';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** @title Sidenav with custom escape and backdrop click behavior */\n@Component({\n selector: 'sidenav-disable-close-example',\n templateUrl: 'sidenav-disable-close-example.html',\n styleUrl: 'sidenav-disable-close-example.css',\n imports: [MatSidenavModule, MatButtonModule],\n})\nexport class SidenavDisableCloseExample {\n @ViewChild('sidenav') sidenav: MatSidenav;\n\n reason = '';\n\n close(reason: string) {\n this.reason = reason;\n this.sidenav.close();\n }\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Basic drawer */\n@Component({\n selector: 'sidenav-drawer-overview-example',\n templateUrl: 'sidenav-drawer-overview-example.html',\n styleUrl: 'sidenav-drawer-overview-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavDrawerOverviewExample {}\n","\n Drawer content\n Main content\n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatToolbarModule} from '@angular/material/toolbar';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Fixed sidenav */\n@Component({\n selector: 'sidenav-fixed-example',\n templateUrl: 'sidenav-fixed-example.html',\n styleUrl: 'sidenav-fixed-example.css',\n imports: [\n MatToolbarModule,\n MatSidenavModule,\n FormsModule,\n ReactiveFormsModule,\n MatCheckboxModule,\n MatFormFieldModule,\n MatButtonModule,\n MatInputModule,\n ],\n})\nexport class SidenavFixedExample {\n private _formBuilder = inject(FormBuilder);\n\n options = this._formBuilder.group({\n bottom: 0,\n fixed: false,\n top: 0,\n });\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatDrawerMode, MatSidenavModule} from '@angular/material/sidenav';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatButtonModule} from '@angular/material/button';\nimport {ConfigurableFocusTrapFactory, FocusTrapFactory} from '@angular/cdk/a11y';\n\n/** @title Sidenav using injected ConfigurableFocusTrap */\n@Component({\n selector: 'sidenav-configurable-focus-trap-example',\n templateUrl: 'sidenav-configurable-focus-trap-example.html',\n styleUrl: 'sidenav-configurable-focus-trap-example.css',\n imports: [MatSidenavModule, MatButtonModule, MatRadioModule, FormsModule, ReactiveFormsModule],\n providers: [{provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory}],\n})\nexport class SidenavConfigurableFocusTrapExample {\n mode = new FormControl('over' as MatDrawerMode);\n hasBackdrop = new FormControl(null as null | boolean);\n position = new FormControl('start' as 'start' | 'end');\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Sidenav open & close behavior */\n@Component({\n selector: 'sidenav-open-close-example',\n templateUrl: 'sidenav-open-close-example.html',\n styleUrl: 'sidenav-open-close-example.css',\n imports: [MatSidenavModule, MatCheckboxModule, FormsModule, MatButtonModule],\n})\nexport class SidenavOpenCloseExample {\n events: string[] = [];\n opened: boolean;\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Basic sidenav */\n@Component({\n selector: 'sidenav-overview-example',\n templateUrl: 'sidenav-overview-example.html',\n styleUrl: 'sidenav-overview-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavOverviewExample {\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n Sidenav content\n Main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Implicit main content with two sidenavs */\n@Component({\n selector: 'sidenav-position-example',\n templateUrl: 'sidenav-position-example.html',\n styleUrl: 'sidenav-position-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavPositionExample {\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n Start content\n End content\n Implicit main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {MediaMatcher} from '@angular/cdk/layout';\nimport {Component, OnDestroy, inject, signal} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/** @title Responsive sidenav */\n@Component({\n selector: 'sidenav-responsive-example',\n templateUrl: 'sidenav-responsive-example.html',\n styleUrl: 'sidenav-responsive-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule],\n})\nexport class SidenavResponsiveExample implements OnDestroy {\n protected readonly fillerNav = Array.from({length: 50}, (_, i) => `Nav Item ${i + 1}`);\n\n protected readonly fillerContent = Array.from(\n {length: 50},\n () =>\n `Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat\n cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`,\n );\n\n protected readonly isMobile = signal(true);\n\n private readonly _mobileQuery: MediaQueryList;\n private readonly _mobileQueryListener: () => void;\n\n constructor() {\n const media = inject(MediaMatcher);\n\n this._mobileQuery = media.matchMedia('(max-width: 600px)');\n this.isMobile.set(this._mobileQuery.matches);\n this._mobileQueryListener = () => this.isMobile.set(this._mobileQuery.matches);\n this._mobileQuery.addEventListener('change', this._mobileQueryListener);\n }\n\n ngOnDestroy(): void {\n this._mobileQuery.removeEventListener('change', this._mobileQueryListener);\n }\n\n protected readonly shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(\n window.location.host,\n );\n}\n","@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/**\n * @title Testing with MatSidenavHarness\n */\n@Component({\n selector: 'sidenav-harness-example',\n templateUrl: 'sidenav-harness-example.html',\n imports: [MatSidenavModule],\n})\nexport class SidenavHarnessExample {}\n","\n Hello from the drawer\n Hello from the content\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i5","i1","i3","i4"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sidenav.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-autosize/sidenav-autosize-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-autosize/sidenav-autosize-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-backdrop/sidenav-backdrop-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-disable-close/sidenav-disable-close-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-drawer-overview/sidenav-drawer-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-drawer-overview/sidenav-drawer-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-fixed/sidenav-fixed-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-fixed/sidenav-fixed-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-configurable-focus-trap/sidenav-configurable-focus-trap-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-open-close/sidenav-open-close-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-open-close/sidenav-open-close-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-overview/sidenav-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-overview/sidenav-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-position/sidenav-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-position/sidenav-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-responsive/sidenav-responsive-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-responsive/sidenav-responsive-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-harness/sidenav-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sidenav/sidenav-harness/sidenav-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/**\n * @title Autosize sidenav\n */\n@Component({\n selector: 'sidenav-autosize-example',\n templateUrl: 'sidenav-autosize-example.html',\n styleUrl: 'sidenav-autosize-example.css',\n imports: [MatSidenavModule, MatButtonModule],\n})\nexport class SidenavAutosizeExample {\n showFiller = false;\n}\n","\n \n

    Auto-resizing sidenav

    \n @if (showFiller) {\n

    Lorem, ipsum dolor sit amet consectetur.

    \n }\n \n
    \n\n
    \n \n
    \n\n
    \n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Drawer with explicit backdrop setting */\n@Component({\n selector: 'sidenav-backdrop-example',\n templateUrl: 'sidenav-backdrop-example.html',\n styleUrl: 'sidenav-backdrop-example.css',\n imports: [MatSidenavModule, MatFormFieldModule, MatSelectModule, MatButtonModule],\n})\nexport class SidenavBackdropExample {}\n","\n I'm a drawer\n \n \n Sidenav mode\n \n Side\n Over\n Push\n \n \n \n Has backdrop\n \n Unset\n True\n False\n \n \n \n \n\n","import {Component, ViewChild} from '@angular/core';\nimport {MatSidenav, MatSidenavModule} from '@angular/material/sidenav';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** @title Sidenav with custom escape and backdrop click behavior */\n@Component({\n selector: 'sidenav-disable-close-example',\n templateUrl: 'sidenav-disable-close-example.html',\n styleUrl: 'sidenav-disable-close-example.css',\n imports: [MatSidenavModule, MatButtonModule],\n})\nexport class SidenavDisableCloseExample {\n @ViewChild('sidenav') sidenav: MatSidenav;\n\n reason = '';\n\n close(reason: string) {\n this.reason = reason;\n this.sidenav.close();\n }\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n

    \n
    \n\n \n

    \n

    Closed due to: {{reason}}

    \n
    \n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Basic drawer */\n@Component({\n selector: 'sidenav-drawer-overview-example',\n templateUrl: 'sidenav-drawer-overview-example.html',\n styleUrl: 'sidenav-drawer-overview-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavDrawerOverviewExample {}\n","\n Drawer content\n Main content\n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatToolbarModule} from '@angular/material/toolbar';\nimport {MatInputModule} from '@angular/material/input';\n\n/** @title Fixed sidenav */\n@Component({\n selector: 'sidenav-fixed-example',\n templateUrl: 'sidenav-fixed-example.html',\n styleUrl: 'sidenav-fixed-example.css',\n imports: [\n MatToolbarModule,\n MatSidenavModule,\n FormsModule,\n ReactiveFormsModule,\n MatCheckboxModule,\n MatFormFieldModule,\n MatButtonModule,\n MatInputModule,\n ],\n})\nexport class SidenavFixedExample {\n private _formBuilder = inject(FormBuilder);\n\n options = this._formBuilder.group({\n bottom: 0,\n fixed: false,\n top: 0,\n });\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n Header\n\n \n \n {{options.value.fixed ? 'Fixed' : 'Non-fixed'}} Sidenav\n \n\n \n

    Fixed

    \n

    \n Top gap\n \n

    \n

    \n Bottom gap\n \n

    \n

    \n
    \n
    \n\n Footer\n} @else {\n
    Please open on StackBlitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatDrawerMode, MatSidenavModule} from '@angular/material/sidenav';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatButtonModule} from '@angular/material/button';\nimport {ConfigurableFocusTrapFactory, FocusTrapFactory} from '@angular/cdk/a11y';\n\n/** @title Sidenav using injected ConfigurableFocusTrap */\n@Component({\n selector: 'sidenav-configurable-focus-trap-example',\n templateUrl: 'sidenav-configurable-focus-trap-example.html',\n styleUrl: 'sidenav-configurable-focus-trap-example.css',\n imports: [MatSidenavModule, MatButtonModule, MatRadioModule, FormsModule, ReactiveFormsModule],\n providers: [{provide: FocusTrapFactory, useClass: ConfigurableFocusTrapFactory}],\n})\nexport class SidenavConfigurableFocusTrapExample {\n mode = new FormControl('over' as MatDrawerMode);\n hasBackdrop = new FormControl(null as null | boolean);\n position = new FormControl('start' as 'start' | 'end');\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n

    \n

    \n \n

    \n
    \n\n \n

    \n

    \n \n \n Over\n Side\n Push\n \n \n \n Default\n true\n false\n \n \n \n Start\n End\n \n

    \n

    \n \n

    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {FormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Sidenav open & close behavior */\n@Component({\n selector: 'sidenav-open-close-example',\n templateUrl: 'sidenav-open-close-example.html',\n styleUrl: 'sidenav-open-close-example.css',\n imports: [MatSidenavModule, MatCheckboxModule, FormsModule, MatButtonModule],\n})\nexport class SidenavOpenCloseExample {\n events: string[] = [];\n opened: boolean;\n\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n \n Sidenav content\n \n\n \n

    sidenav.opened

    \n

    \n

    Events:

    \n
    \n @for (e of events; track e) {\n
    {{e}}
    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Basic sidenav */\n@Component({\n selector: 'sidenav-overview-example',\n templateUrl: 'sidenav-overview-example.html',\n styleUrl: 'sidenav-overview-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavOverviewExample {\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n Sidenav content\n Main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/** @title Implicit main content with two sidenavs */\n@Component({\n selector: 'sidenav-position-example',\n templateUrl: 'sidenav-position-example.html',\n styleUrl: 'sidenav-position-example.css',\n imports: [MatSidenavModule],\n})\nexport class SidenavPositionExample {\n shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(window.location.host);\n}\n","@if (shouldRun) {\n \n Start content\n End content\n Implicit main content\n \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {MediaMatcher} from '@angular/cdk/layout';\nimport {Component, OnDestroy, inject, signal} from '@angular/core';\nimport {MatListModule} from '@angular/material/list';\nimport {MatSidenavModule} from '@angular/material/sidenav';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/** @title Responsive sidenav */\n@Component({\n selector: 'sidenav-responsive-example',\n templateUrl: 'sidenav-responsive-example.html',\n styleUrl: 'sidenav-responsive-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule],\n})\nexport class SidenavResponsiveExample implements OnDestroy {\n protected readonly fillerNav = Array.from({length: 50}, (_, i) => `Nav Item ${i + 1}`);\n\n protected readonly fillerContent = Array.from(\n {length: 50},\n () =>\n `Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut\n labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco\n laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in\n voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat\n cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`,\n );\n\n protected readonly isMobile = signal(true);\n\n private readonly _mobileQuery: MediaQueryList;\n private readonly _mobileQueryListener: () => void;\n\n constructor() {\n const media = inject(MediaMatcher);\n\n this._mobileQuery = media.matchMedia('(max-width: 600px)');\n this.isMobile.set(this._mobileQuery.matches);\n this._mobileQueryListener = () => this.isMobile.set(this._mobileQuery.matches);\n this._mobileQuery.addEventListener('change', this._mobileQueryListener);\n }\n\n ngOnDestroy(): void {\n this._mobileQuery.removeEventListener('change', this._mobileQueryListener);\n }\n\n protected readonly shouldRun = /(^|.)(stackblitz|webcontainer).(io|com)$/.test(\n window.location.host,\n );\n}\n","@if (shouldRun) {\n
    \n \n \n

    Responsive App

    \n
    \n\n \n \n \n @for (nav of fillerNav; track nav) {\n {{nav}}\n }\n \n \n\n \n @for (content of fillerContent; track content) {\n

    {{content}}

    \n }\n
    \n
    \n
    \n} @else {\n
    Please open on Stackblitz to see result
    \n}\n","import {Component} from '@angular/core';\nimport {MatSidenavModule} from '@angular/material/sidenav';\n\n/**\n * @title Testing with MatSidenavHarness\n */\n@Component({\n selector: 'sidenav-harness-example',\n templateUrl: 'sidenav-harness-example.html',\n imports: [MatSidenavModule],\n})\nexport class SidenavHarnessExample {}\n","\n Hello from the drawer\n Hello from the content\n\n"],"names":["i2","i3","i4","i1","i5","i7"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA;;AAEG;MAOU,sBAAsB,CAAA;IACjC,UAAU,GAAG,KAAK;4GADP,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,sBAAsB,ECbnC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,qjBAkBA,EDPY,MAAA,EAAA,CAAA,0QAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,gBAAgB,wdAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,iOAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEhC,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,0BAA0B,EAG3B,OAAA,EAAA,CAAC,gBAAgB,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,qjBAAA,EAAA,MAAA,EAAA,CAAA,0QAAA,CAAA,EAAA;;;AEL9C;MAOa,sBAAsB,CAAA;4GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECbnC,k6BAsBA,EDXY,MAAA,EAAA,CAAA,gOAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,gBAAgB,0iBAAE,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,YAAA,EAAA,UAAA,EAAA,eAAA,EAAA,UAAA,EAAA,8BAAA,EAAA,aAAA,EAAA,UAAA,EAAA,UAAA,EAAA,wBAAA,EAAA,aAAA,EAAA,OAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,2BAAA,EAAA,gBAAA,EAAA,IAAA,EAAA,YAAA,EAAA,0BAAA,CAAA,EAAA,OAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,IAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,iOAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAErE,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAG3B,CAAC,gBAAgB,EAAE,kBAAkB,EAAE,eAAe,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,k6BAAA,EAAA,MAAA,EAAA,CAAA,gOAAA,CAAA,EAAA;;;AEPnF;MAOa,0BAA0B,CAAA;AACf,IAAA,OAAO;IAE7B,MAAM,GAAG,EAAE;AAEX,IAAA,KAAK,CAAC,MAAc,EAAA;AAClB,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM;AACpB,QAAA,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE;;IAGtB,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GAVtE,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,0BAA0B,ECXvC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,+BAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,SAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,SAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,wjBAeA,EDNY,MAAA,EAAA,CAAA,oGAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,gBAAgB,0YAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAF,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,iOAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEhC,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBANtC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,+BAA+B,EAGhC,OAAA,EAAA,CAAC,gBAAgB,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,wjBAAA,EAAA,MAAA,EAAA,CAAA,oGAAA,CAAA,EAAA;8BAGtB,OAAO,EAAA,CAAA;sBAA5B,SAAS;uBAAC,SAAS;;;AETtB;MAOa,4BAA4B,CAAA;4GAA5B,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAA5B,4BAA4B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECVzC,wMAIA,EAAA,MAAA,EAAA,CAAA,iPAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDIY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,MAAA,EAAA,cAAA,EAAA,WAAA,EAAA,QAAA,CAAA,EAAA,OAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,aAAA,EAAA,QAAA,EAAA,aAAA,EAAA,iBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,aAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,CAAA,EAAA,CAAA;;gGAEf,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBANxC,SAAS;+BACE,iCAAiC,EAAA,OAAA,EAGlC,CAAC,gBAAgB,CAAC,EAAA,QAAA,EAAA,wMAAA,EAAA,MAAA,EAAA,CAAA,iPAAA,CAAA,EAAA;;;AEC7B;MAgBa,mBAAmB,CAAA;AACtB,IAAA,YAAY,GAAG,MAAM,CAAC,WAAW,CAAC;AAE1C,IAAA,OAAO,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC;AAChC,QAAA,MAAM,EAAE,CAAC;AACT,QAAA,KAAK,EAAE,KAAK;AACZ,QAAA,GAAG,EAAE,CAAC;AACP,KAAA,CAAC;IAEF,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GATtE,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,aAAA,EAAA,IAAA,EAAA,mBAAmB,iFCzBhC,ypCA4BA,EAAA,MAAA,EAAA,CAAA,kaAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDbI,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAG,IAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAChB,gBAAgB,EAChB,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAH,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,aAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,iBAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,WAAW,EACX,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,iGAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,0FAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,mBAAmB,+UACnB,iBAAiB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,WAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,eAAA,EAAA,eAAA,EAAA,WAAA,EAAA,IAAA,EAAA,UAAA,EAAA,eAAA,EAAA,MAAA,EAAA,OAAA,EAAA,eAAA,EAAA,UAAA,EAAA,OAAA,EAAA,qBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,eAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EACjB,kBAAkB,EAClB,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,qXACf,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,QAAA,EAAA,QAAA,EAAA,yHAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,IAAA,EAAA,aAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,mBAAA,EAAA,kBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAGL,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAf/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,uBAAuB,EAGxB,OAAA,EAAA;wBACP,gBAAgB;wBAChB,gBAAgB;wBAChB,WAAW;wBACX,mBAAmB;wBACnB,iBAAiB;wBACjB,kBAAkB;wBAClB,eAAe;wBACf,cAAc;AACf,qBAAA,EAAA,QAAA,EAAA,ypCAAA,EAAA,MAAA,EAAA,CAAA,kaAAA,CAAA,EAAA;;;AEhBH;MAQa,mCAAmC,CAAA;AAC9C,IAAA,IAAI,GAAG,IAAI,WAAW,CAAC,MAAuB,CAAC;AAC/C,IAAA,WAAW,GAAG,IAAI,WAAW,CAAC,IAAsB,CAAC;AACrD,IAAA,QAAQ,GAAG,IAAI,WAAW,CAAC,OAA0B,CAAC;IAEtD,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GALtE,mCAAmC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAnC,mCAAmC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yCAAA,EAAA,SAAA,EAFnC,CAAC,EAAC,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,4BAA4B,EAAC,CAAC,ECblF,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,0qDAuCA,ED3BY,MAAA,EAAA,CAAA,kNAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,gBAAgB,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,aAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,qXAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAJ,IAAA,CAAA,aAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,eAAA,EAAA,OAAA,EAAA,UAAA,EAAA,UAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,CAAA,EAAA,QAAA,EAAA,CAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,cAAA,EAAA,QAAA,EAAA,kBAAA,EAAA,MAAA,EAAA,CAAA,IAAA,EAAA,MAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,eAAA,EAAA,UAAA,EAAA,SAAA,EAAA,OAAA,EAAA,eAAA,EAAA,UAAA,EAAA,UAAA,EAAA,OAAA,EAAA,qBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,CAAA,EAAA,QAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,mBAAmB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,aAAA,EAAA,UAAA,EAAA,SAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAGlF,mCAAmC,EAAA,UAAA,EAAA,CAAA;kBAP/C,SAAS;+BACE,yCAAyC,EAAA,OAAA,EAG1C,CAAC,gBAAgB,EAAE,eAAe,EAAE,cAAc,EAAE,WAAW,EAAE,mBAAmB,CAAC,EACnF,SAAA,EAAA,CAAC,EAAC,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,4BAA4B,EAAC,CAAC,EAAA,QAAA,EAAA,0qDAAA,EAAA,MAAA,EAAA,CAAA,kNAAA,CAAA,EAAA;;;AEPlF;MAOa,uBAAuB,CAAA;IAClC,MAAM,GAAa,EAAE;AACrB,IAAA,MAAM;IAEN,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GAJtE,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECbpC,wuBAsBA,EDXY,MAAA,EAAA,CAAA,6MAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,gBAAgB,0YAAE,iBAAiB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAF,IAAA,CAAA,WAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,eAAA,EAAA,eAAA,EAAA,WAAA,EAAA,IAAA,EAAA,UAAA,EAAA,eAAA,EAAA,MAAA,EAAA,OAAA,EAAA,eAAA,EAAA,UAAA,EAAA,OAAA,EAAA,qBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,eAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,SAAA,EAAA,gBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,iOAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEhE,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;+BACE,4BAA4B,EAAA,OAAA,EAG7B,CAAC,gBAAgB,EAAE,iBAAiB,EAAE,WAAW,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,wuBAAA,EAAA,MAAA,EAAA,CAAA,6MAAA,CAAA,EAAA;;;AER9E;MAOa,sBAAsB,CAAA;IACjC,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GADtE,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECVnC,8SAQA,EAAA,MAAA,EAAA,CAAA,yHAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDAY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,aAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,iBAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,CAAA,EAAA,CAAA;;gGAEf,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAG3B,CAAC,gBAAgB,CAAC,EAAA,QAAA,EAAA,8SAAA,EAAA,MAAA,EAAA,CAAA,yHAAA,CAAA,EAAA;;;AEL7B;MAOa,sBAAsB,CAAA;IACjC,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;4GADtE,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECVnC,4VASA,EAAA,MAAA,EAAA,CAAA,oGAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDDY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,aAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEf,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAG3B,CAAC,gBAAgB,CAAC,EAAA,QAAA,EAAA,4VAAA,EAAA,MAAA,EAAA,CAAA,oGAAA,CAAA,EAAA;;;AEA7B;MAOa,wBAAwB,CAAA;IAChB,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,EAAC,MAAM,EAAE,EAAE,EAAC,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,CAAA,SAAA,EAAY,CAAC,GAAG,CAAC,CAAE,CAAA,CAAC;AAEnE,IAAA,aAAa,GAAG,KAAK,CAAC,IAAI,CAC3C,EAAC,MAAM,EAAE,EAAE,EAAC,EACZ,MACE,CAAA;;;;AAIwF,6FAAA,CAAA,CAC3F;AAEkB,IAAA,QAAQ,GAAG,MAAM,CAAC,IAAI,CAAC;AAEzB,IAAA,YAAY;AACZ,IAAA,oBAAoB;AAErC,IAAA,WAAA,GAAA;AACE,QAAA,MAAM,KAAK,GAAG,MAAM,CAAC,YAAY,CAAC;QAElC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC,UAAU,CAAC,oBAAoB,CAAC;QAC1D,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC;AAC5C,QAAA,IAAI,CAAC,oBAAoB,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,OAAO,CAAC;QAC9E,IAAI,CAAC,YAAY,CAAC,gBAAgB,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,CAAC;;IAGzE,WAAW,GAAA;QACT,IAAI,CAAC,YAAY,CAAC,mBAAmB,CAAC,QAAQ,EAAE,IAAI,CAAC,oBAAoB,CAAC;;IAGzD,SAAS,GAAG,0CAA0C,CAAC,IAAI,CAC5E,MAAM,CAAC,QAAQ,CAAC,IAAI,CACrB;4GAjCU,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECfrC,2/BA4BA,EAAA,MAAA,EAAA,CAAA,s0BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDfY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAH,IAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sFAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,aAAA,EAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,iBAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,WAAA,EAAA,QAAA,EAAA,wDAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;gGAEhF,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,4BAA4B,EAAA,OAAA,EAG7B,CAAC,gBAAgB,EAAE,eAAe,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,2/BAAA,EAAA,MAAA,EAAA,CAAA,s0BAAA,CAAA,EAAA;;;AEV9F;;AAEG;MAMU,qBAAqB,CAAA;4GAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;gGAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECXlC,sLAIA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDKY,gBAAgB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,MAAA,EAAA,cAAA,EAAA,WAAA,EAAA,QAAA,CAAA,EAAA,OAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,aAAA,EAAA,QAAA,EAAA,aAAA,EAAA,iBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,aAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,CAAA,EAAA,CAAA;;gGAEf,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,SAAS;+BACE,yBAAyB,EAAA,OAAA,EAE1B,CAAC,gBAAgB,CAAC,EAAA,QAAA,EAAA,sLAAA,EAAA;;;;;"} \ No newline at end of file diff --git a/fesm2022/material/slide-toggle.mjs b/fesm2022/material/slide-toggle.mjs index c752b0f9c5..20597fc20d 100755 --- a/fesm2022/material/slide-toggle.mjs +++ b/fesm2022/material/slide-toggle.mjs @@ -1,15 +1,15 @@ import * as i0 from '@angular/core'; import { Component, inject } from '@angular/core'; import * as i1$1 from '@angular/material/slide-toggle'; -import { MatSlideToggleModule, _MatSlideToggleRequiredValidatorModule } from '@angular/material/slide-toggle'; -import * as i3 from '@angular/material/checkbox'; +import { MatSlideToggleModule } from '@angular/material/slide-toggle'; +import * as i2 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule, FormBuilder, Validators, ReactiveFormsModule, FormControl } from '@angular/forms'; import { MatRadioModule } from '@angular/material/radio'; import * as i1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; -import * as i3$1 from '@angular/material/button'; +import * as i1$2 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; /** @@ -18,10 +18,10 @@ import { MatButtonModule } from '@angular/material/button'; class SlideToggleConfigurableExample { checked = false; disabled = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SlideToggleConfigurableExample, isStandalone: true, selector: "slide-toggle-configurable-example", ngImport: i0, template: "\n \n

    Slide toggle configuration

    \n\n
    \n Checked\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n Slide me!\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i3.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SlideToggleConfigurableExample, isStandalone: true, selector: "slide-toggle-configurable-example", ngImport: i0, template: "\n \n

    Slide toggle configuration

    \n\n
    \n Checked\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n Slide me!\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 10px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatRadioModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'slide-toggle-configurable-example', imports: [MatCardModule, MatRadioModule, FormsModule, MatCheckboxModule, MatSlideToggleModule], template: "\n \n

    Slide toggle configuration

    \n\n
    \n Checked\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n Slide me!\n \n
    \n
    \n
    \n", styles: [".example-h2 {\n margin: 10px;\n}\n\n.example-section {\n display: flex;\n align-content: center;\n align-items: center;\n height: 60px;\n}\n\n.example-margin {\n margin: 10px;\n}\n"] }] }] }); @@ -39,28 +39,22 @@ class SlideToggleFormsExample { alertFormValues(formGroup) { alert(JSON.stringify(formGroup.value, null, 2)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SlideToggleFormsExample, isStandalone: true, selector: "slide-toggle-forms-example", ngImport: i0, template: "

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n", styles: [".example-form mat-slide-toggle {\n margin: 8px 0;\n display: block;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: _MatSlideToggleRequiredValidatorModule }, { kind: "directive", type: i1$1.MatSlideToggleRequiredValidator, selector: "mat-slide-toggle[required][formControlName], mat-slide-toggle[required][formControl], mat-slide-toggle[required][ngModel]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SlideToggleFormsExample, isStandalone: true, selector: "slide-toggle-forms-example", ngImport: i0, template: "

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n", styles: [".example-form mat-slide-toggle {\n margin: 8px 0;\n display: block;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleFormsExample, decorators: [{ type: Component, - args: [{ selector: 'slide-toggle-forms-example', imports: [ - MatSlideToggleModule, - FormsModule, - _MatSlideToggleRequiredValidatorModule, - MatButtonModule, - ReactiveFormsModule, - ], template: "

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n", styles: [".example-form mat-slide-toggle {\n margin: 8px 0;\n display: block;\n}\n"] }] + args: [{ selector: 'slide-toggle-forms-example', imports: [MatSlideToggleModule, FormsModule, MatButtonModule, ReactiveFormsModule], template: "

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n", styles: [".example-form mat-slide-toggle {\n margin: 8px 0;\n display: block;\n}\n"] }] }] }); /** * @title Basic slide-toggles */ class SlideToggleOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SlideToggleOverviewExample, isStandalone: true, selector: "slide-toggle-overview-example", ngImport: i0, template: "

    Slide me!

    \n

    ...and slide me too!

    \n", dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SlideToggleOverviewExample, isStandalone: true, selector: "slide-toggle-overview-example", ngImport: i0, template: "

    Slide me!

    \n

    ...and slide me too!

    \n", dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleOverviewExample, decorators: [{ type: Component, args: [{ selector: 'slide-toggle-overview-example', imports: [MatSlideToggleModule], template: "

    Slide me!

    \n

    ...and slide me too!

    \n" }] }] }); @@ -71,17 +65,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class SlideToggleHarnessExample { disabled = true; ctrl = new FormControl(true); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SlideToggleHarnessExample, isStandalone: true, selector: "slide-toggle-harness-example", ngImport: i0, template: "\n First\n\n\n Second\n\n", dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SlideToggleHarnessExample, isStandalone: true, selector: "slide-toggle-harness-example", ngImport: i0, template: "\n First\n\n\n Second\n\n", dependencies: [{ kind: "ngmodule", type: MatSlideToggleModule }, { kind: "component", type: i1$1.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["name", "id", "labelPosition", "aria-label", "aria-labelledby", "aria-describedby", "required", "color", "disabled", "disableRipple", "tabIndex", "checked", "hideIcon", "disabledInteractive"], outputs: ["change", "toggleChange"], exportAs: ["matSlideToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SlideToggleHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SlideToggleHarnessExample, decorators: [{ type: Component, args: [{ selector: 'slide-toggle-harness-example', imports: [MatSlideToggleModule, FormsModule, ReactiveFormsModule], template: "\n First\n\n\n Second\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { SlideToggleConfigurableExample, SlideToggleFormsExample, SlideToggleHarnessExample, SlideToggleOverviewExample }; //# sourceMappingURL=slide-toggle.mjs.map diff --git a/fesm2022/material/slide-toggle.mjs.map b/fesm2022/material/slide-toggle.mjs.map index 14c21c4e78..efcf3c171a 100755 --- a/fesm2022/material/slide-toggle.mjs.map +++ b/fesm2022/material/slide-toggle.mjs.map @@ -1 +1 @@ -{"version":3,"file":"slide-toggle.mjs","sources":["../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-configurable/slide-toggle-configurable-example.ts","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-configurable/slide-toggle-configurable-example.html","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-overview/slide-toggle-overview-example.ts","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-overview/slide-toggle-overview-example.html","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-harness/slide-toggle-harness-example.ts","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle-harness/slide-toggle-harness-example.html","../../../../../../../src/components-examples/material/slide-toggle/slide-toggle_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable slide-toggle\n */\n@Component({\n selector: 'slide-toggle-configurable-example',\n templateUrl: 'slide-toggle-configurable-example.html',\n styleUrl: 'slide-toggle-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatCheckboxModule, MatSlideToggleModule],\n})\nexport class SlideToggleConfigurableExample {\n checked = false;\n disabled = false;\n}\n","\n \n

    Slide toggle configuration

    \n\n
    \n Checked\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n Slide me!\n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {\n MatSlideToggleModule,\n _MatSlideToggleRequiredValidatorModule,\n} from '@angular/material/slide-toggle';\n\n/**\n * @title Slide-toggle with forms\n */\n@Component({\n selector: 'slide-toggle-forms-example',\n templateUrl: './slide-toggle-forms-example.html',\n styleUrl: './slide-toggle-forms-example.css',\n imports: [\n MatSlideToggleModule,\n FormsModule,\n _MatSlideToggleRequiredValidatorModule,\n MatButtonModule,\n ReactiveFormsModule,\n ],\n})\nexport class SlideToggleFormsExample {\n private _formBuilder = inject(FormBuilder);\n\n isChecked = true;\n formGroup = this._formBuilder.group({\n enableWifi: '',\n acceptTerms: ['', Validators.requiredTrue],\n });\n\n alertFormValues(formGroup: FormGroup) {\n alert(JSON.stringify(formGroup.value, null, 2));\n }\n}\n","

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n","import {Component} from '@angular/core';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\n\n/**\n * @title Basic slide-toggles\n */\n@Component({\n selector: 'slide-toggle-overview-example',\n templateUrl: 'slide-toggle-overview-example.html',\n imports: [MatSlideToggleModule],\n})\nexport class SlideToggleOverviewExample {}\n","

    Slide me!

    \n

    ...and slide me too!

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\n\n/**\n * @title Testing with MatSlideToggleHarness\n */\n@Component({\n selector: 'slide-toggle-harness-example',\n templateUrl: 'slide-toggle-harness-example.html',\n imports: [MatSlideToggleModule, FormsModule, ReactiveFormsModule],\n})\nexport class SlideToggleHarnessExample {\n disabled = true;\n ctrl = new FormControl(true);\n}\n","\n First\n\n\n Second\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i4","i1","i3"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"slide-toggle.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-configurable/slide-toggle-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-configurable/slide-toggle-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-forms/slide-toggle-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-overview/slide-toggle-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-overview/slide-toggle-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-harness/slide-toggle-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slide-toggle/slide-toggle-harness/slide-toggle-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FormsModule} from '@angular/forms';\nimport {MatRadioModule} from '@angular/material/radio';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable slide-toggle\n */\n@Component({\n selector: 'slide-toggle-configurable-example',\n templateUrl: 'slide-toggle-configurable-example.html',\n styleUrl: 'slide-toggle-configurable-example.css',\n imports: [MatCardModule, MatRadioModule, FormsModule, MatCheckboxModule, MatSlideToggleModule],\n})\nexport class SlideToggleConfigurableExample {\n checked = false;\n disabled = false;\n}\n","\n \n

    Slide toggle configuration

    \n\n
    \n Checked\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n Slide me!\n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, FormGroup, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\n\n/**\n * @title Slide-toggle with forms\n */\n@Component({\n selector: 'slide-toggle-forms-example',\n templateUrl: './slide-toggle-forms-example.html',\n styleUrl: './slide-toggle-forms-example.css',\n imports: [MatSlideToggleModule, FormsModule, MatButtonModule, ReactiveFormsModule],\n})\nexport class SlideToggleFormsExample {\n private _formBuilder = inject(FormBuilder);\n\n isChecked = true;\n formGroup = this._formBuilder.group({\n enableWifi: '',\n acceptTerms: ['', Validators.requiredTrue],\n });\n\n alertFormValues(formGroup: FormGroup) {\n alert(JSON.stringify(formGroup.value, null, 2));\n }\n}\n","

    Slide Toggle using a simple NgModel.

    \n\nSlide Toggle Checked: {{isChecked}}\n\n

    Slide Toggle inside of a Template-driven form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n \n
    \n\n

    Slide Toggle inside of a Reactive form

    \n\n
    \n\n Enable Wifi\n Accept Terms of Service\n\n

    Form Group Status: {{formGroup.status}}

    \n\n \n
    \n","import {Component} from '@angular/core';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\n\n/**\n * @title Basic slide-toggles\n */\n@Component({\n selector: 'slide-toggle-overview-example',\n templateUrl: 'slide-toggle-overview-example.html',\n imports: [MatSlideToggleModule],\n})\nexport class SlideToggleOverviewExample {}\n","

    Slide me!

    \n

    ...and slide me too!

    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatSlideToggleModule} from '@angular/material/slide-toggle';\n\n/**\n * @title Testing with MatSlideToggleHarness\n */\n@Component({\n selector: 'slide-toggle-harness-example',\n templateUrl: 'slide-toggle-harness-example.html',\n imports: [MatSlideToggleModule, FormsModule, ReactiveFormsModule],\n})\nexport class SlideToggleHarnessExample {\n disabled = true;\n ctrl = new FormControl(true);\n}\n","\n First\n\n\n Second\n\n"],"names":["i2","i3","i4","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/slider.mjs b/fesm2022/material/slider.mjs index 586a6de7c0..ad845eb8dd 100755 --- a/fesm2022/material/slider.mjs +++ b/fesm2022/material/slider.mjs @@ -1,14 +1,14 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; -import * as i1$1 from '@angular/material/slider'; +import * as i1$2 from '@angular/material/slider'; import { MatSliderModule } from '@angular/material/slider'; -import * as i5 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i4 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; -import * as i3 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i2 from '@angular/material/form-field'; +import * as i1$1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i1 from '@angular/material/card'; import { MatCardModule } from '@angular/material/card'; @@ -24,10 +24,10 @@ class SliderConfigurableExample { step = 1; thumbLabel = false; value = 0; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SliderConfigurableExample, isStandalone: true, selector: "slider-configurable-example", ngImport: i0, template: "\n \n

    Slider configuration

    \n\n
    \n \n Value\n \n \n \n Min value\n \n \n \n Max value\n \n \n \n Step size\n \n \n
    \n\n
    \n Show ticks\n
    \n\n
    \n Show thumb label\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n \n \n \n
    \n
    \n", styles: [".example-h2 {\n margin-left: 10px;\n margin-right: 10px;\n}\n\n.example-section {\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n align-items: center;\n}\n\n.example-margin {\n margin: 8px;\n}\n\n.example-width {\n max-width: 180px;\n width: 100%;\n}\n\n.mat-mdc-slider {\n max-width: 300px;\n width: 100%;\n}\n\n.mat-mdc-card + .mat-mdc-card {\n margin-top: 8px;\n}\n\n.example-result-card h2 {\n margin: 0 8px;\n}\n\n.example-label-container {\n display: flex;\n justify-content: space-between;\n margin: 20px 10px 0;\n max-width: 284px;\n}\n\n.example-result-card .example-value-label {\n font-weight: 600;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i5.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$1.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$1.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderConfigurableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SliderConfigurableExample, isStandalone: true, selector: "slider-configurable-example", ngImport: i0, template: "\n \n

    Slider configuration

    \n\n
    \n \n Value\n \n \n \n Min value\n \n \n \n Max value\n \n \n \n Step size\n \n \n
    \n\n
    \n Show ticks\n
    \n\n
    \n Show thumb label\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n \n \n \n
    \n
    \n", styles: [".example-h2 {\n margin-left: 10px;\n margin-right: 10px;\n}\n\n.example-section {\n display: flex;\n flex-wrap: wrap;\n align-content: center;\n align-items: center;\n}\n\n.example-margin {\n margin: 8px;\n}\n\n.example-width {\n max-width: 180px;\n width: 100%;\n}\n\n.mat-mdc-slider {\n max-width: 300px;\n width: 100%;\n}\n\n.mat-mdc-card + .mat-mdc-card {\n margin-top: 8px;\n}\n\n.example-result-card h2 {\n margin: 0 8px;\n}\n\n.example-label-container {\n display: flex;\n justify-content: space-between;\n margin: 20px 10px 0;\n max-width: 284px;\n}\n\n.example-result-card .example-value-label {\n font-weight: 600;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatCardModule }, { kind: "component", type: i1.MatCard, selector: "mat-card", inputs: ["appearance"], exportAs: ["matCard"] }, { kind: "directive", type: i1.MatCardContent, selector: "mat-card-content" }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderConfigurableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderConfigurableExample, decorators: [{ type: Component, args: [{ selector: 'slider-configurable-example', imports: [ MatCardModule, @@ -49,10 +49,10 @@ class SliderFormattingExample { } return `${value}`; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderFormattingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SliderFormattingExample, isStandalone: true, selector: "slider-formatting-example", ngImport: i0, template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$1.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$1.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderFormattingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SliderFormattingExample, isStandalone: true, selector: "slider-formatting-example", ngImport: i0, template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderFormattingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderFormattingExample, decorators: [{ type: Component, args: [{ selector: 'slider-formatting-example', imports: [MatSliderModule], template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"] }] }] }); @@ -61,10 +61,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic slider */ class SliderOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SliderOverviewExample, isStandalone: true, selector: "slider-overview-example", ngImport: i0, template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$1.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$1.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SliderOverviewExample, isStandalone: true, selector: "slider-overview-example", ngImport: i0, template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderOverviewExample, decorators: [{ type: Component, args: [{ selector: 'slider-overview-example', imports: [MatSliderModule], template: "\n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"] }] }] }); @@ -73,10 +73,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Testing with MatSliderHarness */ class SliderHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SliderHarnessExample, isStandalone: true, selector: "slider-harness-example", ngImport: i0, template: "\n \n\n", dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$1.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$1.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SliderHarnessExample, isStandalone: true, selector: "slider-harness-example", ngImport: i0, template: "\n \n\n", dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderThumb, selector: "input[matSliderThumb]", inputs: ["value"], outputs: ["valueChange", "dragStart", "dragEnd"], exportAs: ["matSliderThumb"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderHarnessExample, decorators: [{ type: Component, args: [{ selector: 'slider-harness-example', imports: [MatSliderModule], template: "\n \n\n" }] }] }); @@ -85,17 +85,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Range slider */ class SliderRangeExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderRangeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SliderRangeExample, isStandalone: true, selector: "slider-range-example", ngImport: i0, template: "\n \n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$1.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$1.MatSliderRangeThumb, selector: "input[matSliderStartThumb], input[matSliderEndThumb]", exportAs: ["matSliderRangeThumb"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderRangeExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SliderRangeExample, isStandalone: true, selector: "slider-range-example", ngImport: i0, template: "\n \n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSliderModule }, { kind: "component", type: i1$2.MatSlider, selector: "mat-slider", inputs: ["disabled", "discrete", "showTickMarks", "min", "color", "disableRipple", "max", "step", "displayWith"], exportAs: ["matSlider"] }, { kind: "directive", type: i1$2.MatSliderRangeThumb, selector: "input[matSliderStartThumb], input[matSliderEndThumb]", exportAs: ["matSliderRangeThumb"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SliderRangeExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SliderRangeExample, decorators: [{ type: Component, args: [{ selector: 'slider-range-example', imports: [MatSliderModule], template: "\n \n \n\n", styles: ["mat-slider {\n width: 300px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { SliderConfigurableExample, SliderFormattingExample, SliderHarnessExample, SliderOverviewExample, SliderRangeExample }; //# sourceMappingURL=slider.mjs.map diff --git a/fesm2022/material/slider.mjs.map b/fesm2022/material/slider.mjs.map index 89dad080ea..52995d4502 100755 --- a/fesm2022/material/slider.mjs.map +++ b/fesm2022/material/slider.mjs.map @@ -1 +1 @@ -{"version":3,"file":"slider.mjs","sources":["../../../../../../../src/components-examples/material/slider/slider-configurable/slider-configurable-example.ts","../../../../../../../src/components-examples/material/slider/slider-configurable/slider-configurable-example.html","../../../../../../../src/components-examples/material/slider/slider-formatting/slider-formatting-example.ts","../../../../../../../src/components-examples/material/slider/slider-formatting/slider-formatting-example.html","../../../../../../../src/components-examples/material/slider/slider-overview/slider-overview-example.ts","../../../../../../../src/components-examples/material/slider/slider-overview/slider-overview-example.html","../../../../../../../src/components-examples/material/slider/slider-harness/slider-harness-example.ts","../../../../../../../src/components-examples/material/slider/slider-harness/slider-harness-example.html","../../../../../../../src/components-examples/material/slider/slider-range/slider-range-example.ts","../../../../../../../src/components-examples/material/slider/slider-range/slider-range-example.html","../../../../../../../src/components-examples/material/slider/slider_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable slider\n */\n@Component({\n selector: 'slider-configurable-example',\n templateUrl: 'slider-configurable-example.html',\n styleUrl: 'slider-configurable-example.css',\n imports: [\n MatCardModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatCheckboxModule,\n MatSliderModule,\n ],\n})\nexport class SliderConfigurableExample {\n disabled = false;\n max = 100;\n min = 0;\n showTicks = false;\n step = 1;\n thumbLabel = false;\n value = 0;\n}\n","\n \n

    Slider configuration

    \n\n
    \n \n Value\n \n \n \n Min value\n \n \n \n Max value\n \n \n \n Step size\n \n \n
    \n\n
    \n Show ticks\n
    \n\n
    \n Show thumb label\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Slider with custom thumb label formatting.\n */\n@Component({\n selector: 'slider-formatting-example',\n templateUrl: 'slider-formatting-example.html',\n styleUrl: 'slider-formatting-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderFormattingExample {\n formatLabel(value: number): string {\n if (value >= 1000) {\n return Math.round(value / 1000) + 'k';\n }\n\n return `${value}`;\n }\n}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Basic slider\n */\n@Component({\n selector: 'slider-overview-example',\n templateUrl: 'slider-overview-example.html',\n styleUrl: 'slider-overview-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderOverviewExample {}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Testing with MatSliderHarness\n */\n@Component({\n selector: 'slider-harness-example',\n templateUrl: 'slider-harness-example.html',\n imports: [MatSliderModule],\n})\nexport class SliderHarnessExample {}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Range slider\n */\n@Component({\n selector: 'slider-range-example',\n templateUrl: 'slider-range-example.html',\n styleUrl: 'slider-range-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderRangeExample {}\n","\n \n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i6","i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"slider.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-configurable/slider-configurable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-configurable/slider-configurable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-formatting/slider-formatting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-formatting/slider-formatting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-overview/slider-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-overview/slider-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-harness/slider-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-harness/slider-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-range/slider-range-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/slider/slider-range/slider-range-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {FormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatCardModule} from '@angular/material/card';\n\n/**\n * @title Configurable slider\n */\n@Component({\n selector: 'slider-configurable-example',\n templateUrl: 'slider-configurable-example.html',\n styleUrl: 'slider-configurable-example.css',\n imports: [\n MatCardModule,\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n MatCheckboxModule,\n MatSliderModule,\n ],\n})\nexport class SliderConfigurableExample {\n disabled = false;\n max = 100;\n min = 0;\n showTicks = false;\n step = 1;\n thumbLabel = false;\n value = 0;\n}\n","\n \n

    Slider configuration

    \n\n
    \n \n Value\n \n \n \n Min value\n \n \n \n Max value\n \n \n \n Step size\n \n \n
    \n\n
    \n Show ticks\n
    \n\n
    \n Show thumb label\n
    \n\n
    \n Disabled\n
    \n
    \n
    \n\n\n \n

    Result

    \n\n
    \n \n \n
    \n \n \n \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Slider with custom thumb label formatting.\n */\n@Component({\n selector: 'slider-formatting-example',\n templateUrl: 'slider-formatting-example.html',\n styleUrl: 'slider-formatting-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderFormattingExample {\n formatLabel(value: number): string {\n if (value >= 1000) {\n return Math.round(value / 1000) + 'k';\n }\n\n return `${value}`;\n }\n}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Basic slider\n */\n@Component({\n selector: 'slider-overview-example',\n templateUrl: 'slider-overview-example.html',\n styleUrl: 'slider-overview-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderOverviewExample {}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Testing with MatSliderHarness\n */\n@Component({\n selector: 'slider-harness-example',\n templateUrl: 'slider-harness-example.html',\n imports: [MatSliderModule],\n})\nexport class SliderHarnessExample {}\n","\n \n\n","import {Component} from '@angular/core';\nimport {MatSliderModule} from '@angular/material/slider';\n\n/**\n * @title Range slider\n */\n@Component({\n selector: 'slider-range-example',\n templateUrl: 'slider-range-example.html',\n styleUrl: 'slider-range-example.css',\n imports: [MatSliderModule],\n})\nexport class SliderRangeExample {}\n","\n \n \n\n"],"names":["i2","i3","i4","i6","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/snack-bar.mjs b/fesm2022/material/snack-bar.mjs index 43ee4f7c57..8e25635a1f 100755 --- a/fesm2022/material/snack-bar.mjs +++ b/fesm2022/material/snack-bar.mjs @@ -1,17 +1,16 @@ import * as i0 from '@angular/core'; import { inject, Component } from '@angular/core'; import { MatSnackBar, MatSnackBarRef, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction } from '@angular/material/snack-bar'; -import * as i4 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i3 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormsModule } from '@angular/forms'; import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import * as i2$1 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; -import * as i3$1 from '@angular/material/core'; /** * @title Snack-bar with a custom component @@ -24,18 +23,18 @@ class SnackBarComponentExample { duration: this.durationInSeconds * 1000, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarComponentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SnackBarComponentExample, isStandalone: true, selector: "snack-bar-component-example", ngImport: i0, template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarComponentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SnackBarComponentExample, isStandalone: true, selector: "snack-bar-component-example", ngImport: i0, template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarComponentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarComponentExample, decorators: [{ type: Component, - args: [{ selector: 'snack-bar-component-example', imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule], template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'snack-bar-component-example', imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule], template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); class PizzaPartyComponent { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PizzaPartyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PizzaPartyComponent, isStandalone: true, selector: "snack-bar-component-example-snack", ngImport: i0, template: "\n Pizza party!!! \uD83C\uDF55\n\n", styles: ["\n .example-pizza-party {\n color: hotpink;\n }\n "] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PizzaPartyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PizzaPartyComponent, isStandalone: true, selector: "snack-bar-component-example-snack", ngImport: i0, template: "\n Pizza party!!! \uD83C\uDF55\n\n", styles: ["\n .example-pizza-party {\n color: hotpink;\n }\n "] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PizzaPartyComponent, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PizzaPartyComponent, decorators: [{ type: Component, args: [{ selector: 'snack-bar-component-example-snack', template: "\n Pizza party!!! \uD83C\uDF55\n\n", styles: ["\n .example-pizza-party {\n color: hotpink;\n }\n "] }] }] }); @@ -51,21 +50,21 @@ class SnackBarAnnotatedComponentExample { duration: this.durationInSeconds * 1000, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarAnnotatedComponentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SnackBarAnnotatedComponentExample, isStandalone: true, selector: "snack-bar-annotated-component-example", ngImport: i0, template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarAnnotatedComponentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SnackBarAnnotatedComponentExample, isStandalone: true, selector: "snack-bar-annotated-component-example", ngImport: i0, template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarAnnotatedComponentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarAnnotatedComponentExample, decorators: [{ type: Component, - args: [{ selector: 'snack-bar-annotated-component-example', imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule], template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'snack-bar-annotated-component-example', imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule], template: "\n Snack bar duration (seconds)\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); class PizzaPartyAnnotatedComponent { snackBarRef = inject(MatSnackBarRef); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PizzaPartyAnnotatedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: PizzaPartyAnnotatedComponent, isStandalone: true, selector: "snack-bar-annotated-component-example-snack", ngImport: i0, template: "\n Pizza party!!!\n\n\n \n\n\n", styles: ["\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatSnackBarLabel, selector: "[matSnackBarLabel]" }, { kind: "directive", type: MatSnackBarActions, selector: "[matSnackBarActions]" }, { kind: "directive", type: MatSnackBarAction, selector: "[matSnackBarAction]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PizzaPartyAnnotatedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: PizzaPartyAnnotatedComponent, isStandalone: true, selector: "snack-bar-annotated-component-example-snack", ngImport: i0, template: "\n Pizza party!!!\n\n\n \n\n\n", styles: ["\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: MatSnackBarLabel, selector: "[matSnackBarLabel]" }, { kind: "directive", type: MatSnackBarActions, selector: "[matSnackBarActions]" }, { kind: "directive", type: MatSnackBarAction, selector: "[matSnackBarAction]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: PizzaPartyAnnotatedComponent, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: PizzaPartyAnnotatedComponent, decorators: [{ type: Component, - args: [{ selector: 'snack-bar-annotated-component-example-snack', imports: [MatButtonModule, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction], template: "\n Pizza party!!!\n\n\n \n\n\n", styles: ["\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n "] }] + args: [{ selector: 'snack-bar-annotated-component-example-snack', imports: [MatButtonModule, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction], template: "\n Pizza party!!!\n\n\n \n\n\n", styles: ["\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n "] }] }] }); /** @@ -76,12 +75,12 @@ class SnackBarOverviewExample { openSnackBar(message, action) { this._snackBar.open(message, action); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SnackBarOverviewExample, isStandalone: true, selector: "snack-bar-overview-example", ngImport: i0, template: "\n Message\n \n\n\n\n Action\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SnackBarOverviewExample, isStandalone: true, selector: "snack-bar-overview-example", ngImport: i0, template: "\n Message\n \n\n\n\n Action\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'snack-bar-overview-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule], template: "\n Message\n \n\n\n\n Action\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'snack-bar-overview-example', imports: [MatFormFieldModule, MatInputModule, MatButtonModule], template: "\n Message\n \n\n\n\n Action\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); /** @@ -97,12 +96,12 @@ class SnackBarPositionExample { verticalPosition: this.verticalPosition, }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SnackBarPositionExample, isStandalone: true, selector: "snack-bar-position-example", ngImport: i0, template: "\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i3$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SnackBarPositionExample, isStandalone: true, selector: "snack-bar-position-example", ngImport: i0, template: "\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2$1.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2$1.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarPositionExample, decorators: [{ type: Component, - args: [{ selector: 'snack-bar-position-example', imports: [MatFormFieldModule, MatSelectModule, MatButtonModule], template: "\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] + args: [{ selector: 'snack-bar-position-example', imports: [MatFormFieldModule, MatSelectModule, MatButtonModule], template: "\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n", styles: ["mat-form-field {\n margin-right: 12px;\n}\n"] }] }] }); /** @@ -113,17 +112,13 @@ class SnackBarHarnessExample { open(message, action = '', config) { return this.snackBar.open(message, action, config); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: SnackBarHarnessExample, isStandalone: true, selector: "snack-bar-harness-example", ngImport: i0, template: "Hello from the snackbar\n" }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: SnackBarHarnessExample, isStandalone: true, selector: "snack-bar-harness-example", ngImport: i0, template: "Hello from the snackbar\n" }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SnackBarHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SnackBarHarnessExample, decorators: [{ type: Component, args: [{ selector: 'snack-bar-harness-example', template: "Hello from the snackbar\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { PizzaPartyAnnotatedComponent, PizzaPartyComponent, SnackBarAnnotatedComponentExample, SnackBarComponentExample, SnackBarHarnessExample, SnackBarOverviewExample, SnackBarPositionExample }; //# sourceMappingURL=snack-bar.mjs.map diff --git a/fesm2022/material/snack-bar.mjs.map b/fesm2022/material/snack-bar.mjs.map index b120a3274f..6a9decff32 100755 --- a/fesm2022/material/snack-bar.mjs.map +++ b/fesm2022/material/snack-bar.mjs.map @@ -1 +1 @@ -{"version":3,"file":"snack-bar.mjs","sources":["../../../../../../../src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example.ts","../../../../../../../src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example-snack.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.ts","../../../../../../../src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-overview/snack-bar-overview-example.ts","../../../../../../../src/components-examples/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-position/snack-bar-position-example.ts","../../../../../../../src/components-examples/material/snack-bar/snack-bar-position/snack-bar-position-example.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar-harness/snack-bar-harness-example.ts","../../../../../../../src/components-examples/material/snack-bar/snack-bar-harness/snack-bar-harness-example.html","../../../../../../../src/components-examples/material/snack-bar/snack-bar_public_index.ts"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {FormsModule} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with a custom component\n */\n@Component({\n selector: 'snack-bar-component-example',\n templateUrl: 'snack-bar-component-example.html',\n styleUrl: 'snack-bar-component-example.css',\n imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarComponentExample {\n private _snackBar = inject(MatSnackBar);\n\n durationInSeconds = 5;\n\n openSnackBar() {\n this._snackBar.openFromComponent(PizzaPartyComponent, {\n duration: this.durationInSeconds * 1000,\n });\n }\n}\n\n@Component({\n selector: 'snack-bar-component-example-snack',\n templateUrl: 'snack-bar-component-example-snack.html',\n styles: `\n .example-pizza-party {\n color: hotpink;\n }\n `,\n})\nexport class PizzaPartyComponent {}\n","\n Snack bar duration (seconds)\n \n\n\n\n","\n Pizza party!!! 🍕\n\n","import {Component, inject} from '@angular/core';\nimport {\n MatSnackBar,\n MatSnackBarAction,\n MatSnackBarActions,\n MatSnackBarLabel,\n MatSnackBarRef,\n} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {FormsModule} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with an annotated custom component\n */\n@Component({\n selector: 'snack-bar-annotated-component-example',\n templateUrl: 'snack-bar-annotated-component-example.html',\n styleUrl: 'snack-bar-annotated-component-example.css',\n imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarAnnotatedComponentExample {\n private _snackBar = inject(MatSnackBar);\n\n durationInSeconds = 5;\n\n openSnackBar() {\n this._snackBar.openFromComponent(PizzaPartyAnnotatedComponent, {\n duration: this.durationInSeconds * 1000,\n });\n }\n}\n\n@Component({\n selector: 'snack-bar-annotated-component-example-snack',\n templateUrl: 'snack-bar-annotated-component-example-snack.html',\n styles: `\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n `,\n imports: [MatButtonModule, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction],\n})\nexport class PizzaPartyAnnotatedComponent {\n snackBarRef = inject(MatSnackBarRef);\n}\n","\n Snack bar duration (seconds)\n \n\n\n\n","\n Pizza party!!!\n\n\n \n\n\n","import {Component, inject} from '@angular/core';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Basic snack-bar\n */\n@Component({\n selector: 'snack-bar-overview-example',\n templateUrl: 'snack-bar-overview-example.html',\n styleUrl: 'snack-bar-overview-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarOverviewExample {\n private _snackBar = inject(MatSnackBar);\n\n openSnackBar(message: string, action: string) {\n this._snackBar.open(message, action);\n }\n}\n","\n Message\n \n\n\n\n Action\n \n\n\n\n","import {Component, inject} from '@angular/core';\nimport {\n MatSnackBar,\n MatSnackBarHorizontalPosition,\n MatSnackBarVerticalPosition,\n} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with configurable position\n */\n@Component({\n selector: 'snack-bar-position-example',\n templateUrl: 'snack-bar-position-example.html',\n styleUrl: 'snack-bar-position-example.css',\n imports: [MatFormFieldModule, MatSelectModule, MatButtonModule],\n})\nexport class SnackBarPositionExample {\n private _snackBar = inject(MatSnackBar);\n\n horizontalPosition: MatSnackBarHorizontalPosition = 'start';\n verticalPosition: MatSnackBarVerticalPosition = 'bottom';\n\n openSnackBar() {\n this._snackBar.open('Cannonball!!', 'Splash', {\n horizontalPosition: this.horizontalPosition,\n verticalPosition: this.verticalPosition,\n });\n }\n}\n","\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n","import {Component, inject} from '@angular/core';\nimport {MatSnackBar, MatSnackBarConfig} from '@angular/material/snack-bar';\n\n/**\n * @title Testing with MatSnackBarHarness\n */\n@Component({\n selector: 'snack-bar-harness-example',\n templateUrl: 'snack-bar-harness-example.html',\n})\nexport class SnackBarHarnessExample {\n readonly snackBar = inject(MatSnackBar);\n\n open(message: string, action = '', config?: MatSnackBarConfig) {\n return this.snackBar.open(message, action, config);\n }\n}\n","Hello from the snackbar\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i3"],"mappings":";;;;;;;;;;;;;;;AAOA;;AAEG;MAOU,wBAAwB,CAAA;AAC3B,IAAA,SAAS,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;IAExC,iBAAiB,GAAG,CAAC,CAAC;IAEtB,YAAY,GAAA;AACV,QAAA,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,mBAAmB,EAAE;AACpD,YAAA,QAAQ,EAAE,IAAI,CAAC,iBAAiB,GAAG,IAAI;AACxC,SAAA,CAAC,CAAC;KACJ;uGATU,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChBrC,iSAQA,EDMY,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,kBAAkB,0SAAE,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,iGAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,SAAA,EAAA,gBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,yHAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,IAAA,EAAA,aAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,mBAAA,EAAA,kBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE/D,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,6BAA6B,EAAA,OAAA,EAG9B,CAAC,kBAAkB,EAAE,WAAW,EAAE,cAAc,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,iSAAA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,CAAA;;MAuBhE,mBAAmB,CAAA;uGAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,6FErChC,gFAGA,EAAA,MAAA,EAAA,CAAA,gEAAA,CAAA,EAAA,CAAA,CAAA;;2FFkCa,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAT/B,SAAS;+BACE,mCAAmC,EAAA,QAAA,EAAA,gFAAA,EAAA,MAAA,EAAA,CAAA,gEAAA,CAAA,EAAA,CAAA;;;AGhB/C;;AAEG;MAOU,iCAAiC,CAAA;AACpC,IAAA,SAAS,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;IAExC,iBAAiB,GAAG,CAAC,CAAC;IAEtB,YAAY,GAAA;AACV,QAAA,IAAI,CAAC,SAAS,CAAC,iBAAiB,CAAC,4BAA4B,EAAE;AAC7D,YAAA,QAAQ,EAAE,IAAI,CAAC,iBAAiB,GAAG,IAAI;AACxC,SAAA,CAAC,CAAC;KACJ;uGATU,iCAAiC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAjC,iCAAiC,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECtB9C,iSAQA,EDYY,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,kBAAkB,0SAAE,WAAW,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,oBAAA,EAAA,QAAA,EAAA,8MAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,mBAAA,EAAA,QAAA,EAAA,iGAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,2CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,qDAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,SAAA,EAAA,gBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,yHAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,IAAA,EAAA,aAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,mBAAA,EAAA,kBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE/D,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAN7C,SAAS;+BACE,uCAAuC,EAAA,OAAA,EAGxC,CAAC,kBAAkB,EAAE,WAAW,EAAE,cAAc,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,iSAAA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,CAAA;;MA4BhE,4BAA4B,CAAA;AACvC,IAAA,WAAW,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;uGAD1B,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA5B,4BAA4B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EEhDzC,oOAOA,EFuCY,MAAA,EAAA,CAAA,4GAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,4TAAE,gBAAgB,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAE,kBAAkB,EAAA,QAAA,EAAA,sBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAE,iBAAiB,EAAA,QAAA,EAAA,qBAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEvE,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBAdxC,SAAS;+BACE,6CAA6C,EAAA,OAAA,EAW9C,CAAC,eAAe,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,iBAAiB,CAAC,EAAA,QAAA,EAAA,oOAAA,EAAA,MAAA,EAAA,CAAA,4GAAA,CAAA,EAAA,CAAA;;;AGxCrF;;AAEG;MAOU,uBAAuB,CAAA;AAC1B,IAAA,SAAS,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;IAExC,YAAY,CAAC,OAAe,EAAE,MAAc,EAAA;QAC1C,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;KACtC;uGALU,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,sFCfpC,6VAWA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDEY,kBAAkB,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,iYAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAElD,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,4BAA4B,WAG7B,CAAC,kBAAkB,EAAE,cAAc,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,6VAAA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,CAAA;;;AEHhE;;AAEG;MAOU,uBAAuB,CAAA;AAC1B,IAAA,SAAS,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;IAExC,kBAAkB,GAAkC,OAAO,CAAC;IAC5D,gBAAgB,GAAgC,QAAQ,CAAC;IAEzD,YAAY,GAAA;QACV,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,cAAc,EAAE,QAAQ,EAAE;YAC5C,kBAAkB,EAAE,IAAI,CAAC,kBAAkB;YAC3C,gBAAgB,EAAE,IAAI,CAAC,gBAAgB;AACxC,SAAA,CAAC,CAAC;KACJ;uGAXU,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,sFCnBpC,2wBAqBA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDJY,kBAAkB,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,mtBAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEnD,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,4BAA4B,WAG7B,CAAC,kBAAkB,EAAE,eAAe,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,2wBAAA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,CAAA;;;AEdjE;;AAEG;MAKU,sBAAsB,CAAA;AACxB,IAAA,QAAQ,GAAG,MAAM,CAAC,WAAW,CAAC,CAAC;AAExC,IAAA,IAAI,CAAC,OAAe,EAAE,MAAM,GAAG,EAAE,EAAE,MAA0B,EAAA;AAC3D,QAAA,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;KACpD;uGALU,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,qFCVnC,sDACA,EAAA,CAAA,CAAA;;2FDSa,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAJlC,SAAS;+BACE,2BAA2B,EAAA,QAAA,EAAA,sDAAA,EAAA,CAAA;;;AEPvC;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"snack-bar.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-component/snack-bar-component-example-snack.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-annotated-component/snack-bar-annotated-component-example-snack.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-overview/snack-bar-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-overview/snack-bar-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-position/snack-bar-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-position/snack-bar-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-harness/snack-bar-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/snack-bar/snack-bar-harness/snack-bar-harness-example.html"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {FormsModule} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with a custom component\n */\n@Component({\n selector: 'snack-bar-component-example',\n templateUrl: 'snack-bar-component-example.html',\n styleUrl: 'snack-bar-component-example.css',\n imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarComponentExample {\n private _snackBar = inject(MatSnackBar);\n\n durationInSeconds = 5;\n\n openSnackBar() {\n this._snackBar.openFromComponent(PizzaPartyComponent, {\n duration: this.durationInSeconds * 1000,\n });\n }\n}\n\n@Component({\n selector: 'snack-bar-component-example-snack',\n templateUrl: 'snack-bar-component-example-snack.html',\n styles: `\n .example-pizza-party {\n color: hotpink;\n }\n `,\n})\nexport class PizzaPartyComponent {}\n","\n Snack bar duration (seconds)\n \n\n\n\n","\n Pizza party!!! 🍕\n\n","import {Component, inject} from '@angular/core';\nimport {\n MatSnackBar,\n MatSnackBarAction,\n MatSnackBarActions,\n MatSnackBarLabel,\n MatSnackBarRef,\n} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {FormsModule} from '@angular/forms';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with an annotated custom component\n */\n@Component({\n selector: 'snack-bar-annotated-component-example',\n templateUrl: 'snack-bar-annotated-component-example.html',\n styleUrl: 'snack-bar-annotated-component-example.css',\n imports: [MatFormFieldModule, FormsModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarAnnotatedComponentExample {\n private _snackBar = inject(MatSnackBar);\n\n durationInSeconds = 5;\n\n openSnackBar() {\n this._snackBar.openFromComponent(PizzaPartyAnnotatedComponent, {\n duration: this.durationInSeconds * 1000,\n });\n }\n}\n\n@Component({\n selector: 'snack-bar-annotated-component-example-snack',\n templateUrl: 'snack-bar-annotated-component-example-snack.html',\n styles: `\n :host {\n display: flex;\n }\n\n .example-pizza-party {\n color: hotpink;\n }\n `,\n imports: [MatButtonModule, MatSnackBarLabel, MatSnackBarActions, MatSnackBarAction],\n})\nexport class PizzaPartyAnnotatedComponent {\n snackBarRef = inject(MatSnackBarRef);\n}\n","\n Snack bar duration (seconds)\n \n\n\n\n","\n Pizza party!!!\n\n\n \n\n\n","import {Component, inject} from '@angular/core';\nimport {MatSnackBar} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Basic snack-bar\n */\n@Component({\n selector: 'snack-bar-overview-example',\n templateUrl: 'snack-bar-overview-example.html',\n styleUrl: 'snack-bar-overview-example.css',\n imports: [MatFormFieldModule, MatInputModule, MatButtonModule],\n})\nexport class SnackBarOverviewExample {\n private _snackBar = inject(MatSnackBar);\n\n openSnackBar(message: string, action: string) {\n this._snackBar.open(message, action);\n }\n}\n","\n Message\n \n\n\n\n Action\n \n\n\n\n","import {Component, inject} from '@angular/core';\nimport {\n MatSnackBar,\n MatSnackBarHorizontalPosition,\n MatSnackBarVerticalPosition,\n} from '@angular/material/snack-bar';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Snack-bar with configurable position\n */\n@Component({\n selector: 'snack-bar-position-example',\n templateUrl: 'snack-bar-position-example.html',\n styleUrl: 'snack-bar-position-example.css',\n imports: [MatFormFieldModule, MatSelectModule, MatButtonModule],\n})\nexport class SnackBarPositionExample {\n private _snackBar = inject(MatSnackBar);\n\n horizontalPosition: MatSnackBarHorizontalPosition = 'start';\n verticalPosition: MatSnackBarVerticalPosition = 'bottom';\n\n openSnackBar() {\n this._snackBar.open('Cannonball!!', 'Splash', {\n horizontalPosition: this.horizontalPosition,\n verticalPosition: this.verticalPosition,\n });\n }\n}\n","\n Horizontal position\n \n Start\n Center\n End\n Left\n Right\n \n\n\n Vertical position\n \n Top\n Bottom\n \n\n\n\n","import {Component, inject} from '@angular/core';\nimport {MatSnackBar, MatSnackBarConfig} from '@angular/material/snack-bar';\n\n/**\n * @title Testing with MatSnackBarHarness\n */\n@Component({\n selector: 'snack-bar-harness-example',\n templateUrl: 'snack-bar-harness-example.html',\n})\nexport class SnackBarHarnessExample {\n readonly snackBar = inject(MatSnackBar);\n\n open(message: string, action = '', config?: MatSnackBarConfig) {\n return this.snackBar.open(message, action, config);\n }\n}\n","Hello from the snackbar\n"],"names":["i2","i3","i4"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/sort.mjs b/fesm2022/material/sort.mjs index ac324d3d0a..a80e85df0f 100755 --- a/fesm2022/material/sort.mjs +++ b/fesm2022/material/sort.mjs @@ -42,10 +42,10 @@ class SortOverviewExample { } }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SortOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SortOverviewExample, isStandalone: true, selector: "sort-overview-example", ngImport: i0, template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    Dessert (100g)CaloriesFat (g)Carbs (g)Protein (g)
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n", styles: [".mat-sort-header-container {\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SortOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SortOverviewExample, isStandalone: true, selector: "sort-overview-example", ngImport: i0, template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    Dessert (100g)CaloriesFat (g)Carbs (g)Protein (g)
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n", styles: [".mat-sort-header-container {\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SortOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SortOverviewExample, decorators: [{ type: Component, args: [{ selector: 'sort-overview-example', imports: [MatSortModule], template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    Dessert (100g)CaloriesFat (g)Carbs (g)Protein (g)
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n", styles: [".mat-sort-header-container {\n align-items: center;\n}\n"] }] }], ctorParameters: () => [] }); @@ -79,17 +79,13 @@ class SortHarnessExample { }); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SortHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: SortHarnessExample, isStandalone: true, selector: "sort-harness-example", ngImport: i0, template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    DessertCaloriesFatCarbsProtein
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n", dependencies: [{ kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SortHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: SortHarnessExample, isStandalone: true, selector: "sort-harness-example", ngImport: i0, template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    DessertCaloriesFatCarbsProtein
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n", dependencies: [{ kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: SortHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: SortHarnessExample, decorators: [{ type: Component, args: [{ selector: 'sort-harness-example', imports: [MatSortModule], template: "\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    DessertCaloriesFatCarbsProtein
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { SortHarnessExample, SortOverviewExample }; //# sourceMappingURL=sort.mjs.map diff --git a/fesm2022/material/sort.mjs.map b/fesm2022/material/sort.mjs.map index 09e11ad403..9d047507ad 100755 --- a/fesm2022/material/sort.mjs.map +++ b/fesm2022/material/sort.mjs.map @@ -1 +1 @@ -{"version":3,"file":"sort.mjs","sources":["../../../../../../../src/components-examples/material/sort/sort-overview/sort-overview-example.ts","../../../../../../../src/components-examples/material/sort/sort-overview/sort-overview-example.html","../../../../../../../src/components-examples/material/sort/sort-harness/sort-harness-example.ts","../../../../../../../src/components-examples/material/sort/sort-harness/sort-harness-example.html","../../../../../../../src/components-examples/material/sort/sort_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {Sort, MatSortModule} from '@angular/material/sort';\n\nexport interface Dessert {\n calories: number;\n carbs: number;\n fat: number;\n name: string;\n protein: number;\n}\n\n/**\n * @title Sorting overview\n */\n@Component({\n selector: 'sort-overview-example',\n templateUrl: 'sort-overview-example.html',\n styleUrl: 'sort-overview-example.css',\n imports: [MatSortModule],\n})\nexport class SortOverviewExample {\n desserts: Dessert[] = [\n {name: 'Frozen yogurt', calories: 159, fat: 6, carbs: 24, protein: 4},\n {name: 'Ice cream sandwich', calories: 237, fat: 9, carbs: 37, protein: 4},\n {name: 'Eclair', calories: 262, fat: 16, carbs: 24, protein: 6},\n {name: 'Cupcake', calories: 305, fat: 4, carbs: 67, protein: 4},\n {name: 'Gingerbread', calories: 356, fat: 16, carbs: 49, protein: 4},\n ];\n\n sortedData: Dessert[];\n\n constructor() {\n this.sortedData = this.desserts.slice();\n }\n\n sortData(sort: Sort) {\n const data = this.desserts.slice();\n if (!sort.active || sort.direction === '') {\n this.sortedData = data;\n return;\n }\n\n this.sortedData = data.sort((a, b) => {\n const isAsc = sort.direction === 'asc';\n switch (sort.active) {\n case 'name':\n return compare(a.name, b.name, isAsc);\n case 'calories':\n return compare(a.calories, b.calories, isAsc);\n case 'fat':\n return compare(a.fat, b.fat, isAsc);\n case 'carbs':\n return compare(a.carbs, b.carbs, isAsc);\n case 'protein':\n return compare(a.protein, b.protein, isAsc);\n default:\n return 0;\n }\n });\n }\n}\n\nfunction compare(a: number | string, b: number | string, isAsc: boolean) {\n return (a < b ? -1 : 1) * (isAsc ? 1 : -1);\n}\n","\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    Dessert (100g)CaloriesFat (g)Carbs (g)Protein (g)
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n","import {Component, signal} from '@angular/core';\nimport {Sort, MatSortModule} from '@angular/material/sort';\n\n/**\n * @title Testing with MatSortHarness\n */\n@Component({\n selector: 'sort-harness-example',\n templateUrl: 'sort-harness-example.html',\n imports: [MatSortModule],\n})\nexport class SortHarnessExample {\n disableThirdHeader = signal(false);\n desserts = [\n {name: 'Frozen yogurt', calories: 159, fat: 6, carbs: 24, protein: 4},\n {name: 'Ice cream sandwich', calories: 237, fat: 9, carbs: 37, protein: 4},\n {name: 'Eclair', calories: 262, fat: 16, carbs: 24, protein: 6},\n {name: 'Cupcake', calories: 305, fat: 4, carbs: 67, protein: 4},\n {name: 'Gingerbread', calories: 356, fat: 16, carbs: 49, protein: 4},\n ];\n\n sortedData = this.desserts.slice();\n\n sortData(sort: Sort) {\n const data = this.desserts.slice();\n\n if (!sort.active || sort.direction === '') {\n this.sortedData = data;\n } else {\n this.sortedData = data.sort((a, b) => {\n const aValue = (a as any)[sort.active];\n const bValue = (b as any)[sort.active];\n return (aValue < bValue ? -1 : 1) * (sort.direction === 'asc' ? 1 : -1);\n });\n }\n }\n}\n","\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    DessertCaloriesFatCarbsProtein
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"sort.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sort/sort-overview/sort-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sort/sort-overview/sort-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sort/sort-harness/sort-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/sort/sort-harness/sort-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {Sort, MatSortModule} from '@angular/material/sort';\n\nexport interface Dessert {\n calories: number;\n carbs: number;\n fat: number;\n name: string;\n protein: number;\n}\n\n/**\n * @title Sorting overview\n */\n@Component({\n selector: 'sort-overview-example',\n templateUrl: 'sort-overview-example.html',\n styleUrl: 'sort-overview-example.css',\n imports: [MatSortModule],\n})\nexport class SortOverviewExample {\n desserts: Dessert[] = [\n {name: 'Frozen yogurt', calories: 159, fat: 6, carbs: 24, protein: 4},\n {name: 'Ice cream sandwich', calories: 237, fat: 9, carbs: 37, protein: 4},\n {name: 'Eclair', calories: 262, fat: 16, carbs: 24, protein: 6},\n {name: 'Cupcake', calories: 305, fat: 4, carbs: 67, protein: 4},\n {name: 'Gingerbread', calories: 356, fat: 16, carbs: 49, protein: 4},\n ];\n\n sortedData: Dessert[];\n\n constructor() {\n this.sortedData = this.desserts.slice();\n }\n\n sortData(sort: Sort) {\n const data = this.desserts.slice();\n if (!sort.active || sort.direction === '') {\n this.sortedData = data;\n return;\n }\n\n this.sortedData = data.sort((a, b) => {\n const isAsc = sort.direction === 'asc';\n switch (sort.active) {\n case 'name':\n return compare(a.name, b.name, isAsc);\n case 'calories':\n return compare(a.calories, b.calories, isAsc);\n case 'fat':\n return compare(a.fat, b.fat, isAsc);\n case 'carbs':\n return compare(a.carbs, b.carbs, isAsc);\n case 'protein':\n return compare(a.protein, b.protein, isAsc);\n default:\n return 0;\n }\n });\n }\n}\n\nfunction compare(a: number | string, b: number | string, isAsc: boolean) {\n return (a < b ? -1 : 1) * (isAsc ? 1 : -1);\n}\n","\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    Dessert (100g)CaloriesFat (g)Carbs (g)Protein (g)
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n","import {Component, signal} from '@angular/core';\nimport {Sort, MatSortModule} from '@angular/material/sort';\n\n/**\n * @title Testing with MatSortHarness\n */\n@Component({\n selector: 'sort-harness-example',\n templateUrl: 'sort-harness-example.html',\n imports: [MatSortModule],\n})\nexport class SortHarnessExample {\n disableThirdHeader = signal(false);\n desserts = [\n {name: 'Frozen yogurt', calories: 159, fat: 6, carbs: 24, protein: 4},\n {name: 'Ice cream sandwich', calories: 237, fat: 9, carbs: 37, protein: 4},\n {name: 'Eclair', calories: 262, fat: 16, carbs: 24, protein: 6},\n {name: 'Cupcake', calories: 305, fat: 4, carbs: 67, protein: 4},\n {name: 'Gingerbread', calories: 356, fat: 16, carbs: 49, protein: 4},\n ];\n\n sortedData = this.desserts.slice();\n\n sortData(sort: Sort) {\n const data = this.desserts.slice();\n\n if (!sort.active || sort.direction === '') {\n this.sortedData = data;\n } else {\n this.sortedData = data.sort((a, b) => {\n const aValue = (a as any)[sort.active];\n const bValue = (b as any)[sort.active];\n return (aValue < bValue ? -1 : 1) * (sort.direction === 'asc' ? 1 : -1);\n });\n }\n }\n}\n","\n \n \n \n \n \n \n \n\n @for (dessert of sortedData; track dessert) {\n \n \n \n \n \n \n \n }\n
    DessertCaloriesFatCarbsProtein
    {{dessert.name}}{{dessert.calories}}{{dessert.fat}}{{dessert.carbs}}{{dessert.protein}}
    \n"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/stepper.mjs b/fesm2022/material/stepper.mjs index 1bd4906cd4..c747b2d088 100755 --- a/fesm2022/material/stepper.mjs +++ b/fesm2022/material/stepper.mjs @@ -1,19 +1,19 @@ import * as i0 from '@angular/core'; import { inject, Component, Injectable } from '@angular/core'; -import * as i2 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormBuilder, Validators, FormsModule, ReactiveFormsModule } from '@angular/forms'; -import * as i4$1 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i4 from '@angular/material/form-field'; +import * as i1$2 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i1 from '@angular/material/stepper'; +import * as i1$1 from '@angular/material/stepper'; import { MatStepperModule, MatStepperIntl } from '@angular/material/stepper'; -import * as i5 from '@angular/material/button'; +import * as i1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import { STEPPER_GLOBAL_OPTIONS } from '@angular/cdk/stepper'; -import * as i6 from '@angular/material/icon'; +import * as i3$1 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i1$1 from '@angular/material/radio'; +import * as i1$3 from '@angular/material/radio'; import { MatRadioModule } from '@angular/material/radio'; import { BreakpointObserver } from '@angular/cdk/layout'; import { map } from 'rxjs/operators'; @@ -31,10 +31,10 @@ class StepperEditableExample { secondCtrl: ['', Validators.required], }); isEditable = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperEditableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperEditableExample, isStandalone: true, selector: "stepper-editable-example", ngImport: i0, template: "\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperEditableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperEditableExample, isStandalone: true, selector: "stepper-editable-example", ngImport: i0, template: "\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperEditableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperEditableExample, decorators: [{ type: Component, args: [{ selector: 'stepper-editable-example', imports: [ MatButtonModule, @@ -43,7 +43,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatFormFieldModule, MatInputModule, - ], template: "\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -57,15 +57,15 @@ class StepperErrorsExample { secondFormGroup = this._formBuilder.group({ secondCtrl: ['', Validators.required], }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperErrorsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperErrorsExample, isStandalone: true, selector: "stepper-errors-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperErrorsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperErrorsExample, isStandalone: true, selector: "stepper-errors-example", providers: [ { provide: STEPPER_GLOBAL_OPTIONS, useValue: { showError: true }, }, - ], ngImport: i0, template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + ], ngImport: i0, template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperErrorsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperErrorsExample, decorators: [{ type: Component, args: [{ selector: 'stepper-errors-example', providers: [ { @@ -79,7 +79,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatButtonModule, - ], template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -93,10 +93,10 @@ class StepperLabelPositionBottomExample { secondFormGroup = this._formBuilder.group({ secondCtrl: ['', Validators.required], }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperLabelPositionBottomExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperLabelPositionBottomExample, isStandalone: true, selector: "stepper-label-position-bottom-example", ngImport: i0, template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperLabelPositionBottomExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperLabelPositionBottomExample, isStandalone: true, selector: "stepper-label-position-bottom-example", ngImport: i0, template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperLabelPositionBottomExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperLabelPositionBottomExample, decorators: [{ type: Component, args: [{ selector: 'stepper-label-position-bottom-example', imports: [ MatStepperModule, @@ -105,7 +105,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatButtonModule, - ], template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -120,10 +120,10 @@ class StepperOptionalExample { secondCtrl: '', }); isOptional = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperOptionalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperOptionalExample, isStandalone: true, selector: "stepper-optional-example", ngImport: i0, template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperOptionalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperOptionalExample, isStandalone: true, selector: "stepper-optional-example", ngImport: i0, template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperOptionalExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperOptionalExample, decorators: [{ type: Component, args: [{ selector: 'stepper-optional-example', imports: [ MatButtonModule, @@ -132,7 +132,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatFormFieldModule, MatInputModule, - ], template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -147,10 +147,10 @@ class StepperOverviewExample { secondCtrl: ['', Validators.required], }); isLinear = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperOverviewExample, isStandalone: true, selector: "stepper-overview-example", ngImport: i0, template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperOverviewExample, isStandalone: true, selector: "stepper-overview-example", ngImport: i0, template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperOverviewExample, decorators: [{ type: Component, args: [{ selector: 'stepper-overview-example', imports: [ MatButtonModule, @@ -159,7 +159,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatFormFieldModule, MatInputModule, - ], template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -173,15 +173,15 @@ class StepperStatesExample { secondFormGroup = this._formBuilder.group({ secondCtrl: ['', Validators.required], }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperStatesExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperStatesExample, isStandalone: true, selector: "stepper-states-example", providers: [ + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperStatesExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperStatesExample, isStandalone: true, selector: "stepper-states-example", providers: [ { provide: STEPPER_GLOBAL_OPTIONS, useValue: { displayDefaultIndicatorType: false }, }, - ], ngImport: i0, template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "directive", type: i1.MatStepperIcon, selector: "ng-template[matStepperIcon]", inputs: ["matStepperIcon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i6.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + ], ngImport: i0, template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "directive", type: i1$1.MatStepperIcon, selector: "ng-template[matStepperIcon]", inputs: ["matStepperIcon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperStatesExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperStatesExample, decorators: [{ type: Component, args: [{ selector: 'stepper-states-example', providers: [ { @@ -196,7 +196,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatInputModule, MatButtonModule, MatIconModule, - ], template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n", styles: [".mat-stepper-horizontal {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -211,10 +211,10 @@ class StepperVerticalExample { secondCtrl: ['', Validators.required], }); isLinear = false; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperVerticalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperVerticalExample, isStandalone: true, selector: "stepper-vertical-example", ngImport: i0, template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-vertical {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperVerticalExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperVerticalExample, isStandalone: true, selector: "stepper-vertical-example", ngImport: i0, template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-vertical {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperVerticalExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperVerticalExample, decorators: [{ type: Component, args: [{ selector: 'stepper-vertical-example', imports: [ MatButtonModule, @@ -223,17 +223,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatFormFieldModule, MatInputModule, - ], template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-vertical {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".mat-stepper-vertical {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }] }); /** * @title Testing with MatStepperHarness */ class StepperHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperHarnessExample, isStandalone: true, selector: "stepper-harness-example", ngImport: i0, template: "\n \n One\n \n \n \n Two\n \n \n \n \n Three\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperHarnessExample, isStandalone: true, selector: "stepper-harness-example", ngImport: i0, template: "\n \n One\n \n \n \n Two\n \n \n \n \n Three\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperHarnessExample, decorators: [{ type: Component, args: [{ selector: 'stepper-harness-example', imports: [MatStepperModule], template: "\n \n One\n \n \n \n Two\n \n \n \n \n Three\n \n \n\n" }] }] }); @@ -241,10 +241,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class StepperIntl extends MatStepperIntl { // the default optional label text, if unspecified is "Optional" optionalLabel = 'Optional Label'; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperIntl, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); - static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperIntl }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperIntl, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); + static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperIntl }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperIntl, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperIntl, decorators: [{ type: Injectable }] }); /** @@ -267,10 +267,10 @@ class StepperIntlExample { // Notifies the MatStepperIntl service that a change has been made this._matStepperIntl.changes.next(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperIntlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: StepperIntlExample, isStandalone: true, selector: "stepper-intl-example", providers: [{ provide: MatStepperIntl, useClass: StepperIntl }], ngImport: i0, template: "\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".demo-stepper {\n margin-top: 8px;\n}\n\n.demo-form-field {\n margin-top: 16px;\n}\n\n.demo-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n}\n\n.demo-radio-button {\n margin: 5px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$1.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$1.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperIntlExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: StepperIntlExample, isStandalone: true, selector: "stepper-intl-example", providers: [{ provide: MatStepperIntl, useClass: StepperIntl }], ngImport: i0, template: "\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".demo-stepper {\n margin-top: 8px;\n}\n\n.demo-form-field {\n margin-top: 16px;\n}\n\n.demo-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n}\n\n.demo-radio-button {\n margin: 5px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatRadioModule }, { kind: "directive", type: i1$3.MatRadioGroup, selector: "mat-radio-group", inputs: ["color", "name", "labelPosition", "value", "selected", "disabled", "required", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioGroup"] }, { kind: "component", type: i1$3.MatRadioButton, selector: "mat-radio-button", inputs: ["id", "name", "aria-label", "aria-labelledby", "aria-describedby", "disableRipple", "tabIndex", "checked", "value", "labelPosition", "disabled", "required", "color", "disabledInteractive"], outputs: ["change"], exportAs: ["matRadioButton"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperIntlExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperIntlExample, decorators: [{ type: Component, args: [{ selector: 'stepper-intl-example', providers: [{ provide: MatStepperIntl, useClass: StepperIntl }], imports: [ MatRadioModule, @@ -280,19 +280,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatButtonModule, - ], template: "\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".demo-stepper {\n margin-top: 8px;\n}\n\n.demo-form-field {\n margin-top: 16px;\n}\n\n.demo-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n}\n\n.demo-radio-button {\n margin: 5px;\n}\n"] }] + ], template: "\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n", styles: [".demo-stepper {\n margin-top: 8px;\n}\n\n.demo-form-field {\n margin-top: 16px;\n}\n\n.demo-radio-group {\n display: flex;\n flex-direction: column;\n margin: 15px 0;\n}\n\n.demo-radio-button {\n margin: 5px;\n}\n"] }] }] }); /** * @title Stepper lazy content rendering */ class StepperLazyContentExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperLazyContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperLazyContentExample, isStandalone: true, selector: "stepper-lazy-content-example", ngImport: i0, template: "\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "directive", type: i1.MatStepContent, selector: "ng-template[matStepContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperLazyContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperLazyContentExample, isStandalone: true, selector: "stepper-lazy-content-example", ngImport: i0, template: "\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "directive", type: i1$1.MatStepContent, selector: "ng-template[matStepContent]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperLazyContentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperLazyContentExample, decorators: [{ type: Component, - args: [{ selector: 'stepper-lazy-content-example', imports: [MatStepperModule, MatButtonModule], template: "\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n" }] + args: [{ selector: 'stepper-lazy-content-example', imports: [MatStepperModule, MatButtonModule], template: "\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n" }] }] }); /** @@ -316,10 +316,10 @@ class StepperResponsiveExample { .observe('(min-width: 800px)') .pipe(map(({ matches }) => (matches ? 'horizontal' : 'vertical'))); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperResponsiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: StepperResponsiveExample, isStandalone: true, selector: "stepper-responsive-example", ngImport: i0, template: "@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n", styles: [".example-stepper {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperResponsiveExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: StepperResponsiveExample, isStandalone: true, selector: "stepper-responsive-example", ngImport: i0, template: "@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n", styles: [".example-stepper {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperResponsiveExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperResponsiveExample, decorators: [{ type: Component, args: [{ selector: 'stepper-responsive-example', imports: [ MatStepperModule, @@ -329,7 +329,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatInputModule, MatButtonModule, AsyncPipe, - ], template: "@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n", styles: [".example-stepper {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] + ], template: "@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n", styles: [".example-stepper {\n margin-top: 8px;\n}\n\n.mat-mdc-form-field {\n margin-top: 16px;\n}\n"] }] }], ctorParameters: () => [] }); /** @@ -343,10 +343,10 @@ class StepperHeaderPositionExample { secondFormGroup = this._formBuilder.group({ secondCtrl: ['', Validators.required], }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperHeaderPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperHeaderPositionExample, isStandalone: true, selector: "stepper-header-position-example", ngImport: i0, template: "\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperHeaderPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperHeaderPositionExample, isStandalone: true, selector: "stepper-header-position-example", ngImport: i0, template: "\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperHeaderPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperHeaderPositionExample, decorators: [{ type: Component, args: [{ selector: 'stepper-header-position-example', imports: [ MatStepperModule, @@ -355,7 +355,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatButtonModule, - ], template: "\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n" }] + ], template: "\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n" }] }] }); /** @@ -365,10 +365,10 @@ class StepperAnimationsExample { _formBuilder = inject(FormBuilder); firstFormGroup = this._formBuilder.group({ firstCtrl: [''] }); secondFormGroup = this._formBuilder.group({ secondCtrl: [''] }); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: StepperAnimationsExample, isStandalone: true, selector: "stepper-animations-example", ngImport: i0, template: "
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-input-wrapper {\n margin-bottom: 16px;\n}\n\nlabel {\n margin-right: 4px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i4$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: StepperAnimationsExample, isStandalone: true, selector: "stepper-animations-example", ngImport: i0, template: "
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-input-wrapper {\n margin-bottom: 16px;\n}\n\nlabel {\n margin-right: 4px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatStepperModule }, { kind: "component", type: i1$1.MatStep, selector: "mat-step", inputs: ["color"], exportAs: ["matStep"] }, { kind: "directive", type: i1$1.MatStepLabel, selector: "[matStepLabel]" }, { kind: "component", type: i1$1.MatStepper, selector: "mat-stepper, mat-vertical-stepper, mat-horizontal-stepper, [matStepper]", inputs: ["disableRipple", "color", "labelPosition", "headerPosition", "animationDuration"], outputs: ["animationDone"], exportAs: ["matStepper", "matVerticalStepper", "matHorizontalStepper"] }, { kind: "directive", type: i1$1.MatStepperNext, selector: "button[matStepperNext]" }, { kind: "directive", type: i1$1.MatStepperPrevious, selector: "button[matStepperPrevious]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: StepperAnimationsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: StepperAnimationsExample, decorators: [{ type: Component, args: [{ selector: 'stepper-animations-example', imports: [ MatStepperModule, @@ -377,12 +377,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatFormFieldModule, MatInputModule, MatButtonModule, - ], template: "
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-input-wrapper {\n margin-bottom: 16px;\n}\n\nlabel {\n margin-right: 4px;\n}\n"] }] + ], template: "
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n", styles: [".example-input-wrapper {\n margin-bottom: 16px;\n}\n\nlabel {\n margin-right: 4px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { StepperAnimationsExample, StepperEditableExample, StepperErrorsExample, StepperHarnessExample, StepperHeaderPositionExample, StepperIntlExample, StepperLabelPositionBottomExample, StepperLazyContentExample, StepperOptionalExample, StepperOverviewExample, StepperResponsiveExample, StepperStatesExample, StepperVerticalExample }; //# sourceMappingURL=stepper.mjs.map diff --git a/fesm2022/material/stepper.mjs.map b/fesm2022/material/stepper.mjs.map index 19655f22f0..f97da7953f 100755 --- a/fesm2022/material/stepper.mjs.map +++ b/fesm2022/material/stepper.mjs.map @@ -1 +1 @@ -{"version":3,"file":"stepper.mjs","sources":["../../../../../../../src/components-examples/material/stepper/stepper-editable/stepper-editable-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-editable/stepper-editable-example.html","../../../../../../../src/components-examples/material/stepper/stepper-errors/stepper-errors-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-errors/stepper-errors-example.html","../../../../../../../src/components-examples/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html","../../../../../../../src/components-examples/material/stepper/stepper-optional/stepper-optional-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-optional/stepper-optional-example.html","../../../../../../../src/components-examples/material/stepper/stepper-overview/stepper-overview-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-overview/stepper-overview-example.html","../../../../../../../src/components-examples/material/stepper/stepper-states/stepper-states-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-states/stepper-states-example.html","../../../../../../../src/components-examples/material/stepper/stepper-vertical/stepper-vertical-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-vertical/stepper-vertical-example.html","../../../../../../../src/components-examples/material/stepper/stepper-harness/stepper-harness-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-harness/stepper-harness-example.html","../../../../../../../src/components-examples/material/stepper/stepper-intl/stepper-intl-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-intl/stepper-intl-example.html","../../../../../../../src/components-examples/material/stepper/stepper-lazy-content/stepper-lazy-content-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html","../../../../../../../src/components-examples/material/stepper/stepper-responsive/stepper-responsive-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-responsive/stepper-responsive-example.html","../../../../../../../src/components-examples/material/stepper/stepper-header-position/stepper-header-position-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-header-position/stepper-header-position-example.html","../../../../../../../src/components-examples/material/stepper/stepper-animations/stepper-animations-example.ts","../../../../../../../src/components-examples/material/stepper/stepper-animations/stepper-animations-example.html","../../../../../../../src/components-examples/material/stepper/stepper_public_index.ts"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper with editable steps\n */\n@Component({\n selector: 'stepper-editable-example',\n templateUrl: 'stepper-editable-example.html',\n styleUrl: 'stepper-editable-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperEditableExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isEditable = false;\n}\n","\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {STEPPER_GLOBAL_OPTIONS} from '@angular/cdk/stepper';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper that displays errors in the steps\n */\n@Component({\n selector: 'stepper-errors-example',\n templateUrl: 'stepper-errors-example.html',\n styleUrl: 'stepper-errors-example.css',\n providers: [\n {\n provide: STEPPER_GLOBAL_OPTIONS,\n useValue: {showError: true},\n },\n ],\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperErrorsExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper label bottom position\n */\n@Component({\n selector: 'stepper-label-position-bottom-example',\n templateUrl: 'stepper-label-position-bottom-example.html',\n styleUrl: 'stepper-label-position-bottom-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperLabelPositionBottomExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper with optional steps\n */\n@Component({\n selector: 'stepper-optional-example',\n templateUrl: 'stepper-optional-example.html',\n styleUrl: 'stepper-optional-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperOptionalExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: '',\n });\n isOptional = false;\n}\n","\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper overview\n */\n@Component({\n selector: 'stepper-overview-example',\n templateUrl: 'stepper-overview-example.html',\n styleUrl: 'stepper-overview-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperOverviewExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isLinear = false;\n}\n","\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {STEPPER_GLOBAL_OPTIONS} from '@angular/cdk/stepper';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper with customized states\n */\n@Component({\n selector: 'stepper-states-example',\n templateUrl: 'stepper-states-example.html',\n styleUrl: 'stepper-states-example.css',\n providers: [\n {\n provide: STEPPER_GLOBAL_OPTIONS,\n useValue: {displayDefaultIndicatorType: false},\n },\n ],\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class StepperStatesExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper vertical\n */\n@Component({\n selector: 'stepper-vertical-example',\n templateUrl: 'stepper-vertical-example.html',\n styleUrl: 'stepper-vertical-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperVerticalExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isLinear = false;\n}\n","\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Testing with MatStepperHarness\n */\n@Component({\n selector: 'stepper-harness-example',\n templateUrl: 'stepper-harness-example.html',\n imports: [MatStepperModule],\n})\nexport class StepperHarnessExample {}\n","\n \n One\n \n \n \n Two\n \n \n \n \n Three\n \n \n\n","import {Component, Injectable, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatStepperIntl, MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatRadioModule} from '@angular/material/radio';\n\n@Injectable()\nexport class StepperIntl extends MatStepperIntl {\n // the default optional label text, if unspecified is \"Optional\"\n override optionalLabel = 'Optional Label';\n}\n\n/**\n * @title Stepper that uses the MatStepperIntl service\n */\n@Component({\n selector: 'stepper-intl-example',\n templateUrl: 'stepper-intl-example.html',\n styleUrl: 'stepper-intl-example.css',\n providers: [{provide: MatStepperIntl, useClass: StepperIntl}],\n imports: [\n MatRadioModule,\n FormsModule,\n MatStepperModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperIntlExample {\n private _formBuilder = inject(FormBuilder);\n private _matStepperIntl = inject(MatStepperIntl);\n\n optionalLabelText: string;\n optionalLabelTextChoices: string[] = ['Option 1', 'Option 2', 'Option 3'];\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n\n updateOptionalLabel() {\n this._matStepperIntl.optionalLabel = this.optionalLabelText;\n // Required for the optional label text to be updated\n // Notifies the MatStepperIntl service that a change has been made\n this._matStepperIntl.changes.next();\n }\n}\n","\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper lazy content rendering\n */\n@Component({\n selector: 'stepper-lazy-content-example',\n templateUrl: 'stepper-lazy-content-example.html',\n imports: [MatStepperModule, MatButtonModule],\n})\nexport class StepperLazyContentExample {}\n","\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {BreakpointObserver} from '@angular/cdk/layout';\nimport {StepperOrientation, MatStepperModule} from '@angular/material/stepper';\nimport {Observable} from 'rxjs';\nimport {map} from 'rxjs/operators';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {AsyncPipe} from '@angular/common';\n\n/**\n * @title Stepper responsive\n */\n@Component({\n selector: 'stepper-responsive-example',\n templateUrl: 'stepper-responsive-example.html',\n styleUrl: 'stepper-responsive-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n AsyncPipe,\n ],\n})\nexport class StepperResponsiveExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n thirdFormGroup = this._formBuilder.group({\n thirdCtrl: ['', Validators.required],\n });\n stepperOrientation: Observable;\n\n constructor() {\n const breakpointObserver = inject(BreakpointObserver);\n\n this.stepperOrientation = breakpointObserver\n .observe('(min-width: 800px)')\n .pipe(map(({matches}) => (matches ? 'horizontal' : 'vertical')));\n }\n}\n","@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper header position\n */\n@Component({\n selector: 'stepper-header-position-example',\n templateUrl: 'stepper-header-position-example.html',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperHeaderPositionExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n","/**\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.dev/license\n */\n\nimport {Component, inject} from '@angular/core';\nimport {FormBuilder, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper animations\n */\n@Component({\n selector: 'stepper-animations-example',\n templateUrl: 'stepper-animations-example.html',\n styleUrl: 'stepper-animations-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperAnimationsExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup: FormGroup = this._formBuilder.group({firstCtrl: ['']});\n secondFormGroup: FormGroup = this._formBuilder.group({secondCtrl: ['']});\n}\n","
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","i2","i3","i5","i4","i6"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"stepper.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-editable/stepper-editable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-editable/stepper-editable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-errors/stepper-errors-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-errors/stepper-errors-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-label-position-bottom/stepper-label-position-bottom-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-optional/stepper-optional-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-optional/stepper-optional-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-overview/stepper-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-overview/stepper-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-states/stepper-states-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-states/stepper-states-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-vertical/stepper-vertical-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-vertical/stepper-vertical-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-harness/stepper-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-harness/stepper-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-intl/stepper-intl-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-intl/stepper-intl-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-lazy-content/stepper-lazy-content-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-lazy-content/stepper-lazy-content-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-responsive/stepper-responsive-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-responsive/stepper-responsive-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-header-position/stepper-header-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-header-position/stepper-header-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-animations/stepper-animations-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/stepper/stepper-animations/stepper-animations-example.html"],"sourcesContent":["import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper with editable steps\n */\n@Component({\n selector: 'stepper-editable-example',\n templateUrl: 'stepper-editable-example.html',\n styleUrl: 'stepper-editable-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperEditableExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isEditable = false;\n}\n","\n\n\n\n \n\n
    \n\n Fill out your name\n\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {STEPPER_GLOBAL_OPTIONS} from '@angular/cdk/stepper';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper that displays errors in the steps\n */\n@Component({\n selector: 'stepper-errors-example',\n templateUrl: 'stepper-errors-example.html',\n styleUrl: 'stepper-errors-example.css',\n providers: [\n {\n provide: STEPPER_GLOBAL_OPTIONS,\n useValue: {showError: true},\n },\n ],\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperErrorsExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n

    Go to a different step to see the error state

    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n

    Go to a different step to see the error state

    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper label bottom position\n */\n@Component({\n selector: 'stepper-label-position-bottom-example',\n templateUrl: 'stepper-label-position-bottom-example.html',\n styleUrl: 'stepper-label-position-bottom-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperLabelPositionBottomExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n\n \n \n\n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper with optional steps\n */\n@Component({\n selector: 'stepper-optional-example',\n templateUrl: 'stepper-optional-example.html',\n styleUrl: 'stepper-optional-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperOptionalExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: '',\n });\n isOptional = false;\n}\n","\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper overview\n */\n@Component({\n selector: 'stepper-overview-example',\n templateUrl: 'stepper-overview-example.html',\n styleUrl: 'stepper-overview-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperOverviewExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isLinear = false;\n}\n","\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {STEPPER_GLOBAL_OPTIONS} from '@angular/cdk/stepper';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper with customized states\n */\n@Component({\n selector: 'stepper-states-example',\n templateUrl: 'stepper-states-example.html',\n styleUrl: 'stepper-states-example.css',\n providers: [\n {\n provide: STEPPER_GLOBAL_OPTIONS,\n useValue: {displayDefaultIndicatorType: false},\n },\n ],\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n ],\n})\nexport class StepperStatesExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n\n\n\n\n \n

    Put down your phones.

    \n
    \n \n
    \n
    \n\n \n

    Socialize with each other.

    \n
    \n \n \n
    \n
    \n \n

    You're welcome.

    \n
    \n\n \n\n \n call_end\n \n \n forum\n \n
    \n\n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Stepper vertical\n */\n@Component({\n selector: 'stepper-vertical-example',\n templateUrl: 'stepper-vertical-example.html',\n styleUrl: 'stepper-vertical-example.css',\n imports: [\n MatButtonModule,\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n ],\n})\nexport class StepperVerticalExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n isLinear = false;\n}\n","\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Testing with MatStepperHarness\n */\n@Component({\n selector: 'stepper-harness-example',\n templateUrl: 'stepper-harness-example.html',\n imports: [MatStepperModule],\n})\nexport class StepperHarnessExample {}\n","\n \n One\n \n \n \n Two\n \n \n \n \n Three\n \n \n\n","import {Component, Injectable, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatStepperIntl, MatStepperModule} from '@angular/material/stepper';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatRadioModule} from '@angular/material/radio';\n\n@Injectable()\nexport class StepperIntl extends MatStepperIntl {\n // the default optional label text, if unspecified is \"Optional\"\n override optionalLabel = 'Optional Label';\n}\n\n/**\n * @title Stepper that uses the MatStepperIntl service\n */\n@Component({\n selector: 'stepper-intl-example',\n templateUrl: 'stepper-intl-example.html',\n styleUrl: 'stepper-intl-example.css',\n providers: [{provide: MatStepperIntl, useClass: StepperIntl}],\n imports: [\n MatRadioModule,\n FormsModule,\n MatStepperModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperIntlExample {\n private _formBuilder = inject(FormBuilder);\n private _matStepperIntl = inject(MatStepperIntl);\n\n optionalLabelText: string;\n optionalLabelTextChoices: string[] = ['Option 1', 'Option 2', 'Option 3'];\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n\n updateOptionalLabel() {\n this._matStepperIntl.optionalLabel = this.optionalLabelText;\n // Required for the optional label text to be updated\n // Notifies the MatStepperIntl service that a change has been made\n this._matStepperIntl.changes.next();\n }\n}\n","\n\n @for (optionalLabelTextChoice of optionalLabelTextChoices; track optionalLabelTextChoice) {\n {{optionalLabelTextChoice}}\n }\n\n\n \n
    \n Fill out your name\n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n \n \n Done\n

    You are now done.

    \n
    \n \n \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper lazy content rendering\n */\n@Component({\n selector: 'stepper-lazy-content-example',\n templateUrl: 'stepper-lazy-content-example.html',\n imports: [MatStepperModule, MatButtonModule],\n})\nexport class StepperLazyContentExample {}\n","\n \n Step 1\n \n

    This content was rendered lazily

    \n \n
    \n
    \n \n Step 2\n \n

    This content was also rendered lazily

    \n \n \n
    \n
    \n \n Step 3\n

    This content was rendered eagerly

    \n \n
    \n
    \n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {BreakpointObserver} from '@angular/cdk/layout';\nimport {StepperOrientation, MatStepperModule} from '@angular/material/stepper';\nimport {Observable} from 'rxjs';\nimport {map} from 'rxjs/operators';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {AsyncPipe} from '@angular/common';\n\n/**\n * @title Stepper responsive\n */\n@Component({\n selector: 'stepper-responsive-example',\n templateUrl: 'stepper-responsive-example.html',\n styleUrl: 'stepper-responsive-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n AsyncPipe,\n ],\n})\nexport class StepperResponsiveExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n thirdFormGroup = this._formBuilder.group({\n thirdCtrl: ['', Validators.required],\n });\n stepperOrientation: Observable;\n\n constructor() {\n const breakpointObserver = inject(BreakpointObserver);\n\n this.stepperOrientation = breakpointObserver\n .observe('(min-width: 800px)')\n .pipe(map(({matches}) => (matches ? 'horizontal' : 'vertical')));\n }\n}\n","@switch (stepperOrientation | async) {\n @case ('horizontal') {\n
    Make your screen smaller to see a vertical stepper
    \n }\n @case ('vertical') {\n
    Make your screen larger to see a horizontal stepper
    \n }\n}\n\n\n \n
    \n \n Name\n \n \n
    \n \n
    \n
    \n
    \n \n
    \n \n Address\n \n \n
    \n \n \n
    \n
    \n
    \n \n
    \n \n Phone number\n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n

    You are now done.

    \n
    \n \n
    \n
    \n\n","import {Component, inject} from '@angular/core';\nimport {FormBuilder, Validators, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper header position\n */\n@Component({\n selector: 'stepper-header-position-example',\n templateUrl: 'stepper-header-position-example.html',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperHeaderPositionExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup = this._formBuilder.group({\n firstCtrl: ['', Validators.required],\n });\n secondFormGroup = this._formBuilder.group({\n secondCtrl: ['', Validators.required],\n });\n}\n","\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n","/**\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.dev/license\n */\n\nimport {Component, inject} from '@angular/core';\nimport {FormBuilder, FormGroup, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {MatStepperModule} from '@angular/material/stepper';\n\n/**\n * @title Stepper animations\n */\n@Component({\n selector: 'stepper-animations-example',\n templateUrl: 'stepper-animations-example.html',\n styleUrl: 'stepper-animations-example.css',\n imports: [\n MatStepperModule,\n FormsModule,\n ReactiveFormsModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n ],\n})\nexport class StepperAnimationsExample {\n private _formBuilder = inject(FormBuilder);\n\n firstFormGroup: FormGroup = this._formBuilder.group({firstCtrl: ['']});\n secondFormGroup: FormGroup = this._formBuilder.group({secondCtrl: ['']});\n}\n","
    \n \n \n
    \n\n\n \n
    \n Fill out your name\n \n \n \n
    \n \n
    \n
    \n
    \n \n
    \n Fill out your address\n \n \n \n
    \n \n \n
    \n
    \n
    \n \n Done\n You are now done.\n
    \n \n \n
    \n
    \n
    \n"],"names":["i2","i5","i1","i3","i4","i6"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/table.mjs b/fesm2022/material/table.mjs index beba87b649..dcfc7267fe 100755 --- a/fesm2022/material/table.mjs +++ b/fesm2022/material/table.mjs @@ -12,22 +12,22 @@ import * as i1$2 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import { CurrencyPipe, DatePipe, DecimalPipe } from '@angular/common'; import { HttpClient } from '@angular/common/http'; -import * as i4 from '@angular/material/paginator'; +import * as i1$5 from '@angular/material/paginator'; import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator'; -import * as i2$1 from '@angular/material/sort'; +import * as i1$4 from '@angular/material/sort'; import { MatSort, MatSortModule } from '@angular/material/sort'; import { merge, of, ReplaySubject } from 'rxjs'; import { startWith, switchMap, catchError, map } from 'rxjs/operators'; import * as i1$3 from '@angular/material/progress-spinner'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { SelectionModel, DataSource } from '@angular/cdk/collections'; -import * as i2$2 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; import { LiveAnnouncer } from '@angular/cdk/a11y'; -import * as i2$3 from '@angular/material/button-toggle'; +import * as i1$6 from '@angular/material/button-toggle'; import { MatButtonToggleModule } from '@angular/material/button-toggle'; import { moveItemInArray, CdkDropList, CdkDrag } from '@angular/cdk/drag-drop'; -import * as i2$4 from '@angular/material/core'; +import * as i5 from '@angular/material/core'; import { MatRippleModule } from '@angular/material/core'; const ELEMENT_DATA$o = [ @@ -48,10 +48,10 @@ const ELEMENT_DATA$o = [ class TableFlexBasicExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$o; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFlexBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableFlexBasicExample, isStandalone: true, selector: "table-flex-basic-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFlexBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableFlexBasicExample, isStandalone: true, selector: "table-flex-basic-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFlexBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFlexBasicExample, decorators: [{ type: Component, args: [{ selector: 'table-flex-basic-example', imports: [MatTableModule], template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -74,10 +74,10 @@ const ELEMENT_DATA$n = [ class TableBasicExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$n; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableBasicExample, isStandalone: true, selector: "table-basic-example", ngImport: i0, template: "\n\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableBasicExample, isStandalone: true, selector: "table-basic-example", ngImport: i0, template: "\n\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableBasicExample, decorators: [{ type: Component, args: [{ selector: 'table-basic-example', imports: [MatTableModule], template: "\n\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -121,12 +121,12 @@ class TableDynamicColumnsExample { this.columnsToDisplay[randomIndex] = temp; } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableDynamicColumnsExample, isStandalone: true, selector: "table-dynamic-columns-example", ngImport: i0, template: "\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 16px 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableDynamicColumnsExample, isStandalone: true, selector: "table-dynamic-columns-example", ngImport: i0, template: "\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 16px 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicColumnsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicColumnsExample, decorators: [{ type: Component, - args: [{ selector: 'table-dynamic-columns-example', imports: [MatButtonModule, MatTableModule], template: "\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 16px 8px;\n}\n"] }] + args: [{ selector: 'table-dynamic-columns-example', imports: [MatButtonModule, MatTableModule], template: "\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n", styles: ["table {\n width: 100%;\n}\n\nbutton {\n margin: 16px 8px;\n}\n"] }] }] }); /** @@ -145,12 +145,12 @@ class TableExpandableRowsExample { toggle(element) { this.expandedElement = this.isExpanded(element) ? null : element; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableExpandableRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableExpandableRowsExample, isStandalone: true, selector: "table-expandable-rows-example", ngImport: i0, template: "\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.example-detail-row {\n height: 0;\n}\n\ntr.example-element-row {\n cursor: pointer;\n}\n\ntr.example-element-row:not(.example-expanded-row):hover {\n background: whitesmoke;\n}\n\ntr.example-element-row:not(.example-expanded-row):active {\n background: #efefef;\n}\n\n.example-element-row td {\n border-bottom-width: 0;\n}\n\n.example-element-detail-wrapper {\n overflow: hidden;\n display: grid;\n grid-template-rows: 0fr;\n grid-template-columns: 100%;\n transition: grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-element-detail-wrapper-expanded {\n grid-template-rows: 1fr;\n}\n\n.example-element-detail {\n display: flex;\n min-height: 0;\n}\n\n.example-element-diagram {\n min-width: 80px;\n border: 2px solid black;\n padding: 8px;\n font-weight: lighter;\n margin: 8px 0;\n height: 104px;\n}\n\n.example-element-symbol {\n font-weight: bold;\n font-size: 40px;\n line-height: normal;\n}\n\n.example-element-description {\n padding: 16px;\n}\n\n.example-element-description-attribution {\n opacity: 0.5;\n}\n\n.example-toggle-button {\n transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-toggle-button-expanded {\n transform: rotate(180deg);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableExpandableRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableExpandableRowsExample, isStandalone: true, selector: "table-expandable-rows-example", ngImport: i0, template: "\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.example-detail-row {\n height: 0;\n}\n\ntr.example-element-row {\n cursor: pointer;\n}\n\ntr.example-element-row:not(.example-expanded-row):hover {\n background: whitesmoke;\n}\n\ntr.example-element-row:not(.example-expanded-row):active {\n background: #efefef;\n}\n\n.example-element-row td {\n border-bottom-width: 0;\n}\n\n.example-element-detail-wrapper {\n overflow: hidden;\n display: grid;\n grid-template-rows: 0fr;\n grid-template-columns: 100%;\n transition: grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-element-detail-wrapper-expanded {\n grid-template-rows: 1fr;\n}\n\n.example-element-detail {\n display: flex;\n min-height: 0;\n}\n\n.example-element-diagram {\n min-width: 80px;\n border: 2px solid black;\n padding: 8px;\n font-weight: lighter;\n margin: 8px 0;\n height: 104px;\n}\n\n.example-element-symbol {\n font-weight: bold;\n font-size: 40px;\n line-height: normal;\n}\n\n.example-element-description {\n padding: 16px;\n}\n\n.example-element-description-attribution {\n opacity: 0.5;\n}\n\n.example-toggle-button {\n transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-toggle-button-expanded {\n transform: rotate(180deg);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableExpandableRowsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableExpandableRowsExample, decorators: [{ type: Component, - args: [{ selector: 'table-expandable-rows-example', imports: [MatTableModule, MatButtonModule, MatIconModule], template: "\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.example-detail-row {\n height: 0;\n}\n\ntr.example-element-row {\n cursor: pointer;\n}\n\ntr.example-element-row:not(.example-expanded-row):hover {\n background: whitesmoke;\n}\n\ntr.example-element-row:not(.example-expanded-row):active {\n background: #efefef;\n}\n\n.example-element-row td {\n border-bottom-width: 0;\n}\n\n.example-element-detail-wrapper {\n overflow: hidden;\n display: grid;\n grid-template-rows: 0fr;\n grid-template-columns: 100%;\n transition: grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-element-detail-wrapper-expanded {\n grid-template-rows: 1fr;\n}\n\n.example-element-detail {\n display: flex;\n min-height: 0;\n}\n\n.example-element-diagram {\n min-width: 80px;\n border: 2px solid black;\n padding: 8px;\n font-weight: lighter;\n margin: 8px 0;\n height: 104px;\n}\n\n.example-element-symbol {\n font-weight: bold;\n font-size: 40px;\n line-height: normal;\n}\n\n.example-element-description {\n padding: 16px;\n}\n\n.example-element-description-attribution {\n opacity: 0.5;\n}\n\n.example-toggle-button {\n transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-toggle-button-expanded {\n transform: rotate(180deg);\n}\n"] }] + args: [{ selector: 'table-expandable-rows-example', imports: [MatTableModule, MatButtonModule, MatIconModule], template: "\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.example-detail-row {\n height: 0;\n}\n\ntr.example-element-row {\n cursor: pointer;\n}\n\ntr.example-element-row:not(.example-expanded-row):hover {\n background: whitesmoke;\n}\n\ntr.example-element-row:not(.example-expanded-row):active {\n background: #efefef;\n}\n\n.example-element-row td {\n border-bottom-width: 0;\n}\n\n.example-element-detail-wrapper {\n overflow: hidden;\n display: grid;\n grid-template-rows: 0fr;\n grid-template-columns: 100%;\n transition: grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-element-detail-wrapper-expanded {\n grid-template-rows: 1fr;\n}\n\n.example-element-detail {\n display: flex;\n min-height: 0;\n}\n\n.example-element-diagram {\n min-width: 80px;\n border: 2px solid black;\n padding: 8px;\n font-weight: lighter;\n margin: 8px 0;\n height: 104px;\n}\n\n.example-element-symbol {\n font-weight: bold;\n font-size: 40px;\n line-height: normal;\n}\n\n.example-element-description {\n padding: 16px;\n}\n\n.example-element-description-attribution {\n opacity: 0.5;\n}\n\n.example-toggle-button {\n transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n.example-toggle-button-expanded {\n transform: rotate(180deg);\n}\n"] }] }] }); const ELEMENT_DATA$l = [ { @@ -265,10 +265,10 @@ class TableFilteringExample { const filterValue = event.target.value; this.dataSource.filter = filterValue.trim().toLowerCase(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFilteringExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableFilteringExample, isStandalone: true, selector: "table-filtering-example", ngImport: i0, template: "\n Filter\n \n\n\n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    No data matching the filter \"{{input.value}}\"
    \n", styles: ["/* Structure */\ntable {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i1.MatNoDataRow, selector: "ng-template[matNoDataRow]" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFilteringExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableFilteringExample, isStandalone: true, selector: "table-filtering-example", ngImport: i0, template: "\n Filter\n \n\n\n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    No data matching the filter \"{{input.value}}\"
    \n", styles: ["/* Structure */\ntable {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i1.MatNoDataRow, selector: "ng-template[matNoDataRow]" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFilteringExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFilteringExample, decorators: [{ type: Component, args: [{ selector: 'table-filtering-example', imports: [MatFormFieldModule, MatInputModule, MatTableModule], template: "\n Filter\n \n\n\n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    No data matching the filter \"{{input.value}}\"
    \n", styles: ["/* Structure */\ntable {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n"] }] }] }); @@ -290,10 +290,10 @@ class TableFooterRowExample { getTotalCost() { return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFooterRowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableFooterRowExample, isStandalone: true, selector: "table-footer-row-example", ngImport: i0, template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row td {\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFooterRowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableFooterRowExample, isStandalone: true, selector: "table-footer-row-example", ngImport: i0, template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row td {\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFooterRowExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFooterRowExample, decorators: [{ type: Component, args: [{ selector: 'table-footer-row-example', imports: [MatTableModule, CurrencyPipe], template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n", styles: ["table {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row td {\n font-weight: bold;\n}\n"] }] }] }); @@ -334,10 +334,10 @@ class TableHttpExample { })) .subscribe(data => (this.data = data)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableHttpExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableHttpExample, isStandalone: true, selector: "table-http-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "
    \n @if (isLoadingResults || isRateLimitReached) {\n
    \n @if (isLoadingResults) {\n \n }\n @if (isRateLimitReached) {\n
    \n GitHub's API rate limit has been reached. It will be reset in one minute.\n
    \n }\n
    \n }\n\n
    \n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    #{{row.number}}Title{{row.title}}State{{row.state}}\n Created\n {{row.created_at | date}}
    \n
    \n\n \n
    \n", styles: ["/* Structure */\n.example-container {\n position: relative;\n}\n\n.example-table-container {\n position: relative;\n min-height: 200px;\n max-height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\n.example-loading-shade {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 56px;\n right: 0;\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.example-rate-limit-reached {\n max-width: 360px;\n text-align: center;\n}\n\n/* Column Widths */\n.mat-column-number,\n.mat-column-state {\n width: 64px;\n}\n\n.mat-column-created {\n width: 124px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i2$1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i2$1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i4.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "pipe", type: DatePipe, name: "date" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableHttpExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableHttpExample, isStandalone: true, selector: "table-http-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "
    \n @if (isLoadingResults || isRateLimitReached) {\n
    \n @if (isLoadingResults) {\n \n }\n @if (isRateLimitReached) {\n
    \n GitHub's API rate limit has been reached. It will be reset in one minute.\n
    \n }\n
    \n }\n\n
    \n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    #{{row.number}}Title{{row.title}}State{{row.state}}\n Created\n {{row.created_at | date}}
    \n
    \n\n \n
    \n", styles: ["/* Structure */\n.example-container {\n position: relative;\n}\n\n.example-table-container {\n position: relative;\n min-height: 200px;\n max-height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\n.example-loading-shade {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 56px;\n right: 0;\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.example-rate-limit-reached {\n max-width: 360px;\n text-align: center;\n}\n\n/* Column Widths */\n.mat-column-number,\n.mat-column-state {\n width: 64px;\n}\n\n.mat-column-created {\n width: 124px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatProgressSpinnerModule }, { kind: "component", type: i1$3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1$4.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1$4.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$5.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }, { kind: "pipe", type: DatePipe, name: "date" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableHttpExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableHttpExample, decorators: [{ type: Component, args: [{ selector: 'table-http-example', imports: [MatProgressSpinnerModule, MatTableModule, MatSortModule, MatPaginatorModule, DatePipe], template: "
    \n @if (isLoadingResults || isRateLimitReached) {\n
    \n @if (isLoadingResults) {\n \n }\n @if (isRateLimitReached) {\n
    \n GitHub's API rate limit has been reached. It will be reset in one minute.\n
    \n }\n
    \n }\n\n
    \n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    #{{row.number}}Title{{row.title}}State{{row.state}}\n Created\n {{row.created_at | date}}
    \n
    \n\n \n
    \n", styles: ["/* Structure */\n.example-container {\n position: relative;\n}\n\n.example-table-container {\n position: relative;\n min-height: 200px;\n max-height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\n.example-loading-shade {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 56px;\n right: 0;\n background: rgba(0, 0, 0, 0.15);\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.example-rate-limit-reached {\n max-width: 360px;\n text-align: center;\n}\n\n/* Column Widths */\n.mat-column-number,\n.mat-column-state {\n width: 64px;\n}\n\n.mat-column-created {\n width: 124px;\n}\n"] }] }], propDecorators: { paginator: [{ @@ -377,10 +377,10 @@ class TableMultipleHeaderFooterExample { getTotalCost() { return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableMultipleHeaderFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableMultipleHeaderFooterExample, isStandalone: true, selector: "table-multiple-header-footer-example", ngImport: i0, template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n\n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}} Name of the item purchased Cost of the item in USD \n Please note that the cost of items displayed are completely and totally made up.\n
    \n", styles: ["table {\n width: 100%;\n}\n\n.example-first-header-row th {\n border-bottom: none;\n}\n\n.example-second-header-row {\n font-style: italic;\n}\n\n.example-first-footer-row {\n font-weight: bold;\n}\n\n.example-second-footer-row td {\n font-style: italic;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableMultipleHeaderFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableMultipleHeaderFooterExample, isStandalone: true, selector: "table-multiple-header-footer-example", ngImport: i0, template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n\n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}} Name of the item purchased Cost of the item in USD \n Please note that the cost of items displayed are completely and totally made up.\n
    \n", styles: ["table {\n width: 100%;\n}\n\n.example-first-header-row th {\n border-bottom: none;\n}\n\n.example-second-header-row {\n font-style: italic;\n}\n\n.example-first-footer-row {\n font-weight: bold;\n}\n\n.example-second-footer-row td {\n font-style: italic;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableMultipleHeaderFooterExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableMultipleHeaderFooterExample, decorators: [{ type: Component, args: [{ selector: 'table-multiple-header-footer-example', imports: [MatTableModule, CurrencyPipe], template: "\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n\n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}} Name of the item purchased Cost of the item in USD \n Please note that the cost of items displayed are completely and totally made up.\n
    \n", styles: ["table {\n width: 100%;\n}\n\n.example-first-header-row th {\n border-bottom: none;\n}\n\n.example-second-header-row {\n font-style: italic;\n}\n\n.example-first-footer-row {\n font-weight: bold;\n}\n\n.example-second-footer-row td {\n font-style: italic;\n}\n"] }] }] }); @@ -391,10 +391,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class TableMultipleRowTemplateExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = new MatTableDataSource(ELEMENT_DATA$j); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableMultipleRowTemplateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableMultipleRowTemplateExample, isStandalone: true, selector: "table-multiple-row-template-example", ngImport: i0, template: "
    \n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}\n Secondary row for the element {{element.name}}\n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableMultipleRowTemplateExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableMultipleRowTemplateExample, isStandalone: true, selector: "table-multiple-row-template-example", ngImport: i0, template: "
    \n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}\n Secondary row for the element {{element.name}}\n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableMultipleRowTemplateExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableMultipleRowTemplateExample, decorators: [{ type: Component, args: [{ selector: 'table-multiple-row-template-example', imports: [MatTableModule], template: "
    \n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}\n Secondary row for the element {{element.name}}\n
    \n
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -478,10 +478,10 @@ class TableOverviewExample { this.dataSource.paginator.firstPage(); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableOverviewExample, isStandalone: true, selector: "table-overview-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "\n Filter\n \n\n\n
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    ID {{row.id}} Progress {{row.progress}}% Name {{row.name}} Fruit {{row.fruit}}
    No data matching the filter \"{{input.value}}\"
    \n\n \n
    \n\n", styles: ["table {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n\ntd, th {\n width: 25%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i1.MatNoDataRow, selector: "ng-template[matNoDataRow]" }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i2$1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i2$1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i4.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableOverviewExample, isStandalone: true, selector: "table-overview-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }, { propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "\n Filter\n \n\n\n
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    ID {{row.id}} Progress {{row.progress}}% Name {{row.name}} Fruit {{row.fruit}}
    No data matching the filter \"{{input.value}}\"
    \n\n \n
    \n\n", styles: ["table {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n\ntd, th {\n width: 25%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$2.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: i1.MatNoDataRow, selector: "ng-template[matNoDataRow]" }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1$4.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1$4.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$5.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableOverviewExample, decorators: [{ type: Component, args: [{ selector: 'table-overview-example', imports: [MatFormFieldModule, MatInputModule, MatTableModule, MatSortModule, MatPaginatorModule], template: "\n Filter\n \n\n\n
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    ID {{row.id}} Progress {{row.progress}}% Name {{row.name}} Fruit {{row.fruit}}
    No data matching the filter \"{{input.value}}\"
    \n\n \n
    \n\n", styles: ["table {\n width: 100%;\n}\n\n.mat-mdc-form-field {\n font-size: 14px;\n width: 100%;\n}\n\ntd, th {\n width: 25%;\n}\n"] }] }], ctorParameters: () => [], propDecorators: { paginator: [{ @@ -515,10 +515,10 @@ class TablePaginationExample { ngAfterViewInit() { this.dataSource.paginator = this.paginator; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TablePaginationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TablePaginationExample, isStandalone: true, selector: "table-pagination-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }], ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i4.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TablePaginationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TablePaginationExample, isStandalone: true, selector: "table-pagination-example", viewQueries: [{ propertyName: "paginator", first: true, predicate: MatPaginator, descendants: true }], ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatPaginatorModule }, { kind: "component", type: i1$5.MatPaginator, selector: "mat-paginator", inputs: ["color", "pageIndex", "length", "pageSize", "pageSizeOptions", "hidePageSize", "showFirstLastButtons", "selectConfig", "disabled"], outputs: ["page"], exportAs: ["matPaginator"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TablePaginationExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TablePaginationExample, decorators: [{ type: Component, args: [{ selector: 'table-pagination-example', imports: [MatTableModule, MatPaginatorModule], template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }], propDecorators: { paginator: [{ @@ -554,10 +554,10 @@ const ELEMENT_DATA$i = [ class TableRowContextExample { displayedColumns = ['$implicit', 'index', 'count', 'first', 'last', 'even', 'odd']; data = ['one', 'two', 'three', 'four', 'five']; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRowContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableRowContextExample, isStandalone: true, selector: "table-row-context-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    $implicit {{data}} index {{index}} count {{count}} first {{first}} last {{last}} even {{even}} odd {{odd}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRowContextExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableRowContextExample, isStandalone: true, selector: "table-row-context-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    $implicit {{data}} index {{index}} count {{count}} first {{first}} last {{last}} even {{even}} odd {{odd}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRowContextExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRowContextExample, decorators: [{ type: Component, args: [{ selector: 'table-row-context-example', imports: [MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    $implicit {{data}} index {{index}} count {{count}} first {{first}} last {{last}} even {{even}} odd {{odd}}
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -602,10 +602,10 @@ class TableSelectionExample { } return `${this.selection.isSelected(row) ? 'deselect' : 'select'} row ${row.position + 1}`; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableSelectionExample, isStandalone: true, selector: "table-selection-example", ngImport: i0, template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    \n \n \n \n \n \n No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableSelectionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableSelectionExample, isStandalone: true, selector: "table-selection-example", ngImport: i0, template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    \n \n \n \n \n \n No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableSelectionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableSelectionExample, decorators: [{ type: Component, args: [{ selector: 'table-selection-example', imports: [MatTableModule, MatCheckboxModule], template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    \n \n \n \n \n \n No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -646,10 +646,10 @@ class TableSortingExample { this._liveAnnouncer.announce('Sorting cleared'); } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableSortingExample, isStandalone: true, selector: "table-sorting-example", viewQueries: [{ propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    \n No.\n {{element.position}} \n Name\n {{element.name}} \n Weight\n {{element.weight}} \n Symbol\n {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth.mat-sort-header-sorted {\n color: black;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i2$1.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i2$1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableSortingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableSortingExample, isStandalone: true, selector: "table-sorting-example", viewQueries: [{ propertyName: "sort", first: true, predicate: MatSort, descendants: true }], ngImport: i0, template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    \n No.\n {{element.position}} \n Name\n {{element.name}} \n Weight\n {{element.weight}} \n Symbol\n {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth.mat-sort-header-sorted {\n color: black;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i1$4.MatSort, selector: "[matSort]", inputs: ["matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear", "matSortDisabled"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i1$4.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableSortingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableSortingExample, decorators: [{ type: Component, args: [{ selector: 'table-sorting-example', imports: [MatTableModule, MatSortModule], template: "\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    \n No.\n {{element.position}} \n Name\n {{element.name}} \n Weight\n {{element.weight}} \n Symbol\n {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n\nth.mat-sort-header-sorted {\n color: black;\n}\n"] }] }], propDecorators: { sort: [{ @@ -672,10 +672,10 @@ class TableStickyColumnsExample { 'star', ]; dataSource = ELEMENT_DATA$f; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableStickyColumnsExample, isStandalone: true, selector: "table-sticky-columns-example", ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    Name {{element.name}} No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}  \n more_vert\n
    \n
    \n", styles: [".example-container {\n height: 400px;\n width: 550px;\n max-width: 100%;\n overflow: auto;\n}\n\ntable {\n width: 800px;\n}\n\ntd.mat-column-star {\n width: 20px;\n padding-right: 8px;\n}\n\nth.mat-column-position, td.mat-column-position {\n padding-left: 8px;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 1px solid #e0e0e0;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 1px solid #e0e0e0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableStickyColumnsExample, isStandalone: true, selector: "table-sticky-columns-example", ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    Name {{element.name}} No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}  \n more_vert\n
    \n
    \n", styles: [".example-container {\n height: 400px;\n width: 550px;\n max-width: 100%;\n overflow: auto;\n}\n\ntable {\n width: 800px;\n}\n\ntd.mat-column-star {\n width: 20px;\n padding-right: 8px;\n}\n\nth.mat-column-position, td.mat-column-position {\n padding-left: 8px;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 1px solid #e0e0e0;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 1px solid #e0e0e0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyColumnsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyColumnsExample, decorators: [{ type: Component, args: [{ selector: 'table-sticky-columns-example', imports: [MatTableModule, MatIconModule], template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    Name {{element.name}} No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}  \n more_vert\n
    \n
    \n", styles: [".example-container {\n height: 400px;\n width: 550px;\n max-width: 100%;\n overflow: auto;\n}\n\ntable {\n width: 800px;\n}\n\ntd.mat-column-star {\n width: 20px;\n padding-right: 8px;\n}\n\nth.mat-column-position, td.mat-column-position {\n padding-left: 8px;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 1px solid #e0e0e0;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 1px solid #e0e0e0;\n}\n"] }] }] }); @@ -712,12 +712,12 @@ class TableStickyComplexFlexExample { isSticky(buttonToggleGroup, id) { return (buttonToggleGroup.value || []).indexOf(id) !== -1; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyComplexFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableStickyComplexFlexExample, isStandalone: true, selector: "table-sticky-complex-flex-example", ngImport: i0, template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-header-row, .mat-mdc-footer-row, .mat-mdc-row {\n min-width: 1920px; /* 24 columns, 80px each */\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i2$3.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i2$3.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyComplexFlexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableStickyComplexFlexExample, isStandalone: true, selector: "table-sticky-complex-flex-example", ngImport: i0, template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-header-row, .mat-mdc-footer-row, .mat-mdc-row {\n min-width: 1920px; /* 24 columns, 80px each */\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1$6.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1$6.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyComplexFlexExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyComplexFlexExample, decorators: [{ type: Component, - args: [{ selector: 'table-sticky-complex-flex-example', imports: [MatButtonModule, MatButtonToggleModule, MatTableModule], template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-header-row, .mat-mdc-footer-row, .mat-mdc-row {\n min-width: 1920px; /* 24 columns, 80px each */\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"] }] + args: [{ selector: 'table-sticky-complex-flex-example', imports: [MatButtonModule, MatButtonToggleModule, MatTableModule], template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-header-row, .mat-mdc-footer-row, .mat-mdc-row {\n min-width: 1920px; /* 24 columns, 80px each */\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"] }] }], ctorParameters: () => [] }); const ELEMENT_DATA$e = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -752,12 +752,12 @@ class TableStickyComplexExample { isSticky(buttonToggleGroup, id) { return (buttonToggleGroup.value || []).indexOf(id) !== -1; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyComplexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableStickyComplexExample, isStandalone: true, selector: "table-sticky-complex-example", ngImport: i0, template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i2$3.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i2$3.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyComplexExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableStickyComplexExample, isStandalone: true, selector: "table-sticky-complex-example", ngImport: i0, template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatButtonToggleModule }, { kind: "directive", type: i1$6.MatButtonToggleGroup, selector: "mat-button-toggle-group", inputs: ["appearance", "name", "vertical", "value", "multiple", "disabled", "disabledInteractive", "hideSingleSelectionIndicator", "hideMultipleSelectionIndicator"], outputs: ["valueChange", "change"], exportAs: ["matButtonToggleGroup"] }, { kind: "component", type: i1$6.MatButtonToggle, selector: "mat-button-toggle", inputs: ["aria-label", "aria-labelledby", "id", "name", "value", "tabIndex", "disableRipple", "appearance", "checked", "disabled", "disabledInteractive"], outputs: ["change"], exportAs: ["matButtonToggle"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyComplexExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyComplexExample, decorators: [{ type: Component, - args: [{ selector: 'table-sticky-complex-example', imports: [MatButtonModule, MatButtonToggleModule, MatTableModule], template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"] }] + args: [{ selector: 'table-sticky-complex-example', imports: [MatButtonModule, MatButtonToggleModule, MatTableModule], template: "
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\n.mat-mdc-table-sticky {\n background: #59abfd;\n opacity: 1;\n}\n\n.example-sticky-toggle-group {\n margin: 8px;\n}\n\n.mat-column-filler {\n padding: 0 8px;\n font-size: 10px;\n text-align: center;\n}\n\n.mat-mdc-header-cell, .mat-mdc-footer-cell, .mat-mdc-cell {\n min-width: 80px;\n box-sizing: border-box;\n}\n\n.mat-mdc-table-sticky-border-elem-top {\n border-bottom: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-right {\n border-left: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-bottom {\n border-top: 2px solid midnightblue;\n}\n\n.mat-mdc-table-sticky-border-elem-left {\n border-right: 2px solid midnightblue;\n}\n"] }] }], ctorParameters: () => [] }); const ELEMENT_DATA$d = [ { position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, @@ -789,10 +789,10 @@ class TableStickyFooterExample { getTotalCost() { return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableStickyFooterExample, isStandalone: true, selector: "table-sticky-footer-example", ngImport: i0, template: "
    \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n
    \n", styles: [".example-container {\n height: 270px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row {\n font-weight: bold;\n}\n\n.mat-mdc-table-sticky {\n border-top: 1px solid #e0e0e0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyFooterExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableStickyFooterExample, isStandalone: true, selector: "table-sticky-footer-example", ngImport: i0, template: "
    \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n
    \n", styles: [".example-container {\n height: 270px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row {\n font-weight: bold;\n}\n\n.mat-mdc-table-sticky {\n border-top: 1px solid #e0e0e0;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "pipe", type: CurrencyPipe, name: "currency" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyFooterExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyFooterExample, decorators: [{ type: Component, args: [{ selector: 'table-sticky-footer-example', imports: [MatTableModule, CurrencyPipe], template: "
    \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n
    \n", styles: [".example-container {\n height: 270px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n\ntr.mat-mdc-footer-row {\n font-weight: bold;\n}\n\n.mat-mdc-table-sticky {\n border-top: 1px solid #e0e0e0;\n}\n"] }] }] }); @@ -803,10 +803,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class TableStickyHeaderExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$c; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyHeaderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableStickyHeaderExample, isStandalone: true, selector: "table-sticky-header-example", ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyHeaderExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableStickyHeaderExample, isStandalone: true, selector: "table-sticky-header-example", ngImport: i0, template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableStickyHeaderExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableStickyHeaderExample, decorators: [{ type: Component, args: [{ selector: 'table-sticky-header-example', imports: [MatTableModule], template: "
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n
    \n", styles: [".example-container {\n height: 400px;\n overflow: auto;\n}\n\ntable {\n width: 100%;\n}\n"] }] }] }); @@ -848,10 +848,10 @@ class TableTextColumnAdvancedExample { const result = this.decimalPipe.transform(data.weight, '1.0-2'); return result === null ? '' : result; }; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableTextColumnAdvancedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableTextColumnAdvancedExample, isStandalone: true, selector: "table-text-column-advanced-example", ngImport: i0, template: "\n \n\n \n \n\n \n \n\n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatTextColumn, selector: "mat-text-column" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableTextColumnAdvancedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableTextColumnAdvancedExample, isStandalone: true, selector: "table-text-column-advanced-example", ngImport: i0, template: "\n \n\n \n \n\n \n \n\n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatTextColumn, selector: "mat-text-column" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableTextColumnAdvancedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableTextColumnAdvancedExample, decorators: [{ type: Component, args: [{ selector: 'table-text-column-advanced-example', imports: [MatTableModule], template: "\n \n\n \n \n\n \n \n\n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -875,10 +875,10 @@ const ELEMENT_DATA$a = [ class TableTextColumnExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$a; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableTextColumnExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableTextColumnExample, isStandalone: true, selector: "table-text-column-example", ngImport: i0, template: "\n \n \n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatTextColumn, selector: "mat-text-column" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableTextColumnExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableTextColumnExample, isStandalone: true, selector: "table-text-column-example", ngImport: i0, template: "\n \n \n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatTextColumn, selector: "mat-text-column" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableTextColumnExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableTextColumnExample, decorators: [{ type: Component, args: [{ selector: 'table-text-column-example', imports: [MatTableModule], template: "\n \n \n \n \n\n \n \n
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -911,12 +911,12 @@ class TableWrappedExample { addData() { this.dataSource.data = ELEMENT_DATA$9; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableWrappedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableWrappedExample, isStandalone: true, selector: "table-wrapped-example", viewQueries: [{ propertyName: "sort", first: true, predicate: ["sort"], descendants: true }], ngImport: i0, template: "
    \n \n \n
    \n\n\n \n \n
    Name {{element.name}}
    No data
    Name {{element.name}}
    No data
    Name {{element.name}}
    No data
    Name {{element.name}}
    No data
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n
    No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["\n table {\n width: 100%;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "ngmodule", type: MatSortModule }, { kind: "component", type: i2$1.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: WrapperTable, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.0.0-rc.0", type: WrapperTable, isStandalone: true, selector: "wrapper-table", inputs: { columns: { classPropertyName: "columns", publicName: "columns", isSignal: true, isRequired: true, transformFunction: null }, dataSource: { classPropertyName: "dataSource", publicName: "dataSource", isSignal: true, isRequired: true, transformFunction: null } }, queries: [{ propertyName: "noDataRow", first: true, predicate: MatNoDataRow, descendants: true }, { propertyName: "headerRowDefs", predicate: MatHeaderRowDef }, { propertyName: "rowDefs", predicate: MatRowDef }, { propertyName: "columnDefs", predicate: MatColumnDef }], viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true, static: true }], ngImport: i0, template: "\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n
    No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["\n table {\n width: 100%;\n }\n "], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "ngmodule", type: MatSortModule }, { kind: "component", type: i1$4.MatSortHeader, selector: "[mat-sort-header]", inputs: ["mat-sort-header", "arrowPosition", "start", "disabled", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: WrapperTable, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: WrapperTable, decorators: [{ type: Component, args: [{ selector: 'wrapper-table', imports: [MatTableModule, MatSortModule], template: "\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n
    No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["\n table {\n width: 100%;\n }\n "] }] }], propDecorators: { headerRowDefs: [{ @@ -971,10 +971,10 @@ class TableReorderableExample { drop(event) { moveItemInArray(this.columns, event.previousIndex, event.currentIndex); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableReorderableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableReorderableExample, isStandalone: true, selector: "table-reorderable-example", ngImport: i0, template: "\n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableReorderableExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableReorderableExample, isStandalone: true, selector: "table-reorderable-example", ngImport: i0, template: "\n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer", "cdkDragScale"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableReorderableExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableReorderableExample, decorators: [{ type: Component, args: [{ selector: 'table-reorderable-example', imports: [MatTableModule, CdkDropList, CdkDrag], template: "\n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n", styles: ["table {\n width: 100%;\n}\n"] }] }] }); @@ -1009,10 +1009,10 @@ const ELEMENT_DATA$7 = [ class TableRecycleRowsExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$7; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRecycleRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableRecycleRowsExample, isStandalone: true, selector: "table-recycle-rows-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".example-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatRecycleRows, selector: "mat-table[recycleRows], table[mat-table][recycleRows]" }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRecycleRowsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableRecycleRowsExample, isStandalone: true, selector: "table-recycle-rows-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".example-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatRecycleRows, selector: "mat-table[recycleRows], table[mat-table][recycleRows]" }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRecycleRowsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRecycleRowsExample, decorators: [{ type: Component, args: [{ selector: 'table-recycle-rows-example', imports: [MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".example-table {\n width: 100%;\n}\n"] }] }] }); @@ -1034,10 +1034,10 @@ class TableHarnessExample { { position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F' }, { position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne' }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableHarnessExample, isStandalone: true, selector: "table-harness-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    No.{{element.position}}Number of the elementName{{element.name}}Name of the elementWeight{{element.weight}}Weight of the elementSymbol{{element.symbol}}Symbol of the element
    \n", dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableHarnessExample, isStandalone: true, selector: "table-harness-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    No.{{element.position}}Number of the elementName{{element.name}}Name of the elementWeight{{element.weight}}Weight of the elementSymbol{{element.symbol}}Symbol of the element
    \n", dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableHarnessExample, decorators: [{ type: Component, args: [{ selector: 'table-harness-example', imports: [MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    No.{{element.position}}Number of the elementName{{element.name}}Name of the elementWeight{{element.weight}}Weight of the elementSymbol{{element.symbol}}Symbol of the element
    \n" }] }] }); @@ -1060,10 +1060,10 @@ const ELEMENT_DATA$6 = [ class TableWithRipplesExample { displayedColumns = ['name']; dataSource = ELEMENT_DATA$6; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableWithRipplesExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableWithRipplesExample, isStandalone: true, selector: "table-with-ripples-example", ngImport: i0, template: "\n \n Name \n {{element.name}} \n \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i2$4.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableWithRipplesExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableWithRipplesExample, isStandalone: true, selector: "table-with-ripples-example", ngImport: i0, template: "\n \n Name \n {{element.name}} \n \n\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i5.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableWithRipplesExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableWithRipplesExample, decorators: [{ type: Component, args: [{ selector: 'table-with-ripples-example', imports: [MatTableModule, MatRippleModule], template: "\n \n Name \n {{element.name}} \n \n\n \n \n\n" }] }] }); @@ -1086,10 +1086,10 @@ const ELEMENT_DATA$5 = [ class TableColumnStylingExample { displayedColumns = ['demo-position', 'demo-name', 'demo-weight', 'demo-symbol']; dataSource = ELEMENT_DATA$5; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableColumnStylingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableColumnStylingExample, isStandalone: true, selector: "table-column-styling-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-column-demo-position {\n width: 32px;\n border-right: 1px solid currentColor;\n padding-right: 24px;\n text-align: center;\n}\n\n.mat-column-demo-name {\n padding-left: 16px;\n font-size: 20px;\n}\n\n.mat-column-demo-weight {\n font-style: italic;\n}\n\n.mat-column-demo-symbol {\n width: 32px;\n text-align: center;\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableColumnStylingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableColumnStylingExample, isStandalone: true, selector: "table-column-styling-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-column-demo-position {\n width: 32px;\n border-right: 1px solid currentColor;\n padding-right: 24px;\n text-align: center;\n}\n\n.mat-column-demo-name {\n padding-left: 16px;\n font-size: 20px;\n}\n\n.mat-column-demo-weight {\n font-style: italic;\n}\n\n.mat-column-demo-symbol {\n width: 32px;\n text-align: center;\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableColumnStylingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableColumnStylingExample, decorators: [{ type: Component, args: [{ selector: 'table-column-styling-example', imports: [MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-column-demo-position {\n width: 32px;\n border-right: 1px solid currentColor;\n padding-right: 24px;\n text-align: center;\n}\n\n.mat-column-demo-name {\n padding-left: 16px;\n font-size: 20px;\n}\n\n.mat-column-demo-weight {\n font-style: italic;\n}\n\n.mat-column-demo-symbol {\n width: 32px;\n text-align: center;\n font-weight: bold;\n}\n"] }] }] }); @@ -1113,10 +1113,10 @@ class TableRowBindingExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA$4; clickedRows = new Set(); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRowBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableRowBindingExample, isStandalone: true, selector: "table-row-binding-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n\n
    \n

    \n Click Log\n

    \n
    \n\n@if (!clickedRows.size) {\n
    Clicked rows will be logged here
    \n}\n\n
      \n @for (clickedRow of clickedRows; track clickedRow) {\n
    • Clicked on {{clickedRow.name}}
    • \n }\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-mdc-row .mat-mdc-cell {\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n cursor: pointer;\n}\n\n.mat-mdc-row:hover .mat-mdc-cell {\n border-color: currentColor;\n}\n\n.demo-row-is-clicked {\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRowBindingExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableRowBindingExample, isStandalone: true, selector: "table-row-binding-example", ngImport: i0, template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n\n
    \n

    \n Click Log\n

    \n
    \n\n@if (!clickedRows.size) {\n
    Clicked rows will be logged here
    \n}\n\n
      \n @for (clickedRow of clickedRows; track clickedRow) {\n
    • Clicked on {{clickedRow.name}}
    • \n }\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-mdc-row .mat-mdc-cell {\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n cursor: pointer;\n}\n\n.mat-mdc-row:hover .mat-mdc-cell {\n border-color: currentColor;\n}\n\n.demo-row-is-clicked {\n font-weight: bold;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableRowBindingExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableRowBindingExample, decorators: [{ type: Component, args: [{ selector: 'table-row-binding-example', imports: [MatTableModule], template: "\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n\n
    \n

    \n Click Log\n

    \n
    \n\n@if (!clickedRows.size) {\n
    Clicked rows will be logged here
    \n}\n\n
      \n @for (clickedRow of clickedRows; track clickedRow) {\n
    • Clicked on {{clickedRow.name}}
    • \n }\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.mat-mdc-row .mat-mdc-cell {\n border-bottom: 1px solid transparent;\n border-top: 1px solid transparent;\n cursor: pointer;\n}\n\n.mat-mdc-row:hover .mat-mdc-cell {\n border-color: currentColor;\n}\n\n.demo-row-is-clicked {\n font-weight: bold;\n}\n"] }] }] }); @@ -1149,12 +1149,12 @@ class TableDynamicArrayDataExample { this.dataSource.pop(); this.table.renderRows(); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicArrayDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableDynamicArrayDataExample, isStandalone: true, selector: "table-dynamic-array-data-example", viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true }], ngImport: i0, template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicArrayDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableDynamicArrayDataExample, isStandalone: true, selector: "table-dynamic-array-data-example", viewQueries: [{ propertyName: "table", first: true, predicate: MatTable, descendants: true }], ngImport: i0, template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicArrayDataExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicArrayDataExample, decorators: [{ type: Component, - args: [{ selector: 'table-dynamic-array-data-example', imports: [MatButtonModule, MatTableModule], template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"] }] + args: [{ selector: 'table-dynamic-array-data-example', imports: [MatButtonModule, MatTableModule], template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"] }] }], propDecorators: { table: [{ type: ViewChild, args: [MatTable] @@ -1188,12 +1188,12 @@ class TableDynamicObservableDataExample { this.dataToDisplay = this.dataToDisplay.slice(0, -1); this.dataSource.setData(this.dataToDisplay); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicObservableDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableDynamicObservableDataExample, isStandalone: true, selector: "table-dynamic-observable-data-example", ngImport: i0, template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicObservableDataExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableDynamicObservableDataExample, isStandalone: true, selector: "table-dynamic-observable-data-example", ngImport: i0, template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableDynamicObservableDataExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableDynamicObservableDataExample, decorators: [{ type: Component, - args: [{ selector: 'table-dynamic-observable-data-example', imports: [MatButtonModule, MatTableModule], template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"] }] + args: [{ selector: 'table-dynamic-observable-data-example', imports: [MatButtonModule, MatTableModule], template: "
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n", styles: [".demo-table {\n width: 100%;\n}\n\n.demo-button-container {\n padding-bottom: 16px;\n}\n\n.demo-button + .demo-button {\n margin-left: 8px;\n}\n"] }] }] }); class ExampleDataSource extends DataSource { _dataStream = new ReplaySubject(); @@ -1250,10 +1250,10 @@ class TableGeneratedColumnsExample { ]; dataSource = ELEMENT_DATA$1; displayedColumns = this.columns.map(c => c.columnDef); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableGeneratedColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TableGeneratedColumnsExample, isStandalone: true, selector: "table-generated-columns-example", ngImport: i0, template: "\n @for (column of columns; track column) {\n \n \n \n \n }\n\n \n \n
    \n {{column.header}}\n \n {{column.cell(row)}}\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableGeneratedColumnsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TableGeneratedColumnsExample, isStandalone: true, selector: "table-generated-columns-example", ngImport: i0, template: "\n @for (column of columns; track column) {\n \n \n \n \n }\n\n \n \n
    \n {{column.header}}\n \n {{column.cell(row)}}\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableGeneratedColumnsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableGeneratedColumnsExample, decorators: [{ type: Component, args: [{ selector: 'table-generated-columns-example', imports: [MatTableModule], template: "\n @for (column of columns; track column) {\n \n \n \n \n }\n\n \n \n
    \n {{column.header}}\n \n {{column.cell(row)}}\n
    \n", styles: [".demo-table {\n width: 100%;\n}\n"] }] }] }); @@ -1276,17 +1276,13 @@ const ELEMENT_DATA = [ class TableFlexLargeRowExample { displayedColumns = ['position', 'name', 'weight', 'symbol']; dataSource = ELEMENT_DATA; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFlexLargeRowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TableFlexLargeRowExample, isStandalone: true, selector: "table-flex-large-row-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: [".mat-mdc-table {\n width: 100%;\n max-height: 500px;\n overflow: auto;\n}\n\n.mat-column-name {\n height: 100px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFlexLargeRowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TableFlexLargeRowExample, isStandalone: true, selector: "table-flex-large-row-example", ngImport: i0, template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: [".mat-mdc-table {\n width: 100%;\n max-height: 500px;\n overflow: auto;\n}\n\n.mat-column-name {\n height: 100px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TableFlexLargeRowExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TableFlexLargeRowExample, decorators: [{ type: Component, args: [{ selector: 'table-flex-large-row-example', imports: [MatTableModule], template: "\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n", styles: [".mat-mdc-table {\n width: 100%;\n max-height: 500px;\n overflow: auto;\n}\n\n.mat-column-name {\n height: 100px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { TableBasicExample, TableColumnStylingExample, TableDynamicArrayDataExample, TableDynamicColumnsExample, TableDynamicObservableDataExample, TableExpandableRowsExample, TableFilteringExample, TableFlexBasicExample, TableFlexLargeRowExample, TableFooterRowExample, TableGeneratedColumnsExample, TableHarnessExample, TableHttpExample, TableMultipleHeaderFooterExample, TableMultipleRowTemplateExample, TableOverviewExample, TablePaginationExample, TableRecycleRowsExample, TableReorderableExample, TableRowBindingExample, TableRowContextExample, TableSelectionExample, TableSortingExample, TableStickyColumnsExample, TableStickyComplexExample, TableStickyComplexFlexExample, TableStickyFooterExample, TableStickyHeaderExample, TableTextColumnAdvancedExample, TableTextColumnExample, TableWithRipplesExample, TableWrappedExample, WrapperTable }; //# sourceMappingURL=table.mjs.map diff --git a/fesm2022/material/table.mjs.map b/fesm2022/material/table.mjs.map index 2aaf412aa9..74eadb7523 100755 --- a/fesm2022/material/table.mjs.map +++ b/fesm2022/material/table.mjs.map @@ -1 +1 @@ -{"version":3,"file":"table.mjs","sources":["../../../../../../../src/components-examples/material/table/table-flex-basic/table-flex-basic-example.ts","../../../../../../../src/components-examples/material/table/table-flex-basic/table-flex-basic-example.html","../../../../../../../src/components-examples/material/table/table-basic/table-basic-example.ts","../../../../../../../src/components-examples/material/table/table-basic/table-basic-example.html","../../../../../../../src/components-examples/material/table/table-dynamic-columns/table-dynamic-columns-example.ts","../../../../../../../src/components-examples/material/table/table-dynamic-columns/table-dynamic-columns-example.html","../../../../../../../src/components-examples/material/table/table-expandable-rows/table-expandable-rows-example.ts","../../../../../../../src/components-examples/material/table/table-expandable-rows/table-expandable-rows-example.html","../../../../../../../src/components-examples/material/table/table-filtering/table-filtering-example.ts","../../../../../../../src/components-examples/material/table/table-filtering/table-filtering-example.html","../../../../../../../src/components-examples/material/table/table-footer-row/table-footer-row-example.ts","../../../../../../../src/components-examples/material/table/table-footer-row/table-footer-row-example.html","../../../../../../../src/components-examples/material/table/table-http/table-http-example.ts","../../../../../../../src/components-examples/material/table/table-http/table-http-example.html","../../../../../../../src/components-examples/material/table/table-multiple-header-footer/table-multiple-header-footer-example.ts","../../../../../../../src/components-examples/material/table/table-multiple-header-footer/table-multiple-header-footer-example.html","../../../../../../../src/components-examples/material/table/table-multiple-row-template/table-multiple-row-template-example.ts","../../../../../../../src/components-examples/material/table/table-multiple-row-template/table-multiple-row-template-example.html","../../../../../../../src/components-examples/material/table/table-overview/table-overview-example.ts","../../../../../../../src/components-examples/material/table/table-overview/table-overview-example.html","../../../../../../../src/components-examples/material/table/table-pagination/table-pagination-example.ts","../../../../../../../src/components-examples/material/table/table-pagination/table-pagination-example.html","../../../../../../../src/components-examples/material/table/table-row-context/table-row-context-example.ts","../../../../../../../src/components-examples/material/table/table-row-context/table-row-context-example.html","../../../../../../../src/components-examples/material/table/table-selection/table-selection-example.ts","../../../../../../../src/components-examples/material/table/table-selection/table-selection-example.html","../../../../../../../src/components-examples/material/table/table-sorting/table-sorting-example.ts","../../../../../../../src/components-examples/material/table/table-sorting/table-sorting-example.html","../../../../../../../src/components-examples/material/table/table-sticky-columns/table-sticky-columns-example.ts","../../../../../../../src/components-examples/material/table/table-sticky-columns/table-sticky-columns-example.html","../../../../../../../src/components-examples/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example.ts","../../../../../../../src/components-examples/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example.html","../../../../../../../src/components-examples/material/table/table-sticky-complex/table-sticky-complex-example.ts","../../../../../../../src/components-examples/material/table/table-sticky-complex/table-sticky-complex-example.html","../../../../../../../src/components-examples/material/table/table-sticky-footer/table-sticky-footer-example.ts","../../../../../../../src/components-examples/material/table/table-sticky-footer/table-sticky-footer-example.html","../../../../../../../src/components-examples/material/table/table-sticky-header/table-sticky-header-example.ts","../../../../../../../src/components-examples/material/table/table-sticky-header/table-sticky-header-example.html","../../../../../../../src/components-examples/material/table/table-text-column-advanced/table-text-column-advanced-example.ts","../../../../../../../src/components-examples/material/table/table-text-column-advanced/table-text-column-advanced-example.html","../../../../../../../src/components-examples/material/table/table-text-column/table-text-column-example.ts","../../../../../../../src/components-examples/material/table/table-text-column/table-text-column-example.html","../../../../../../../src/components-examples/material/table/table-wrapped/table-wrapped-example.ts","../../../../../../../src/components-examples/material/table/table-wrapped/table-wrapped-example.html","../../../../../../../src/components-examples/material/table/table-wrapped/wrapper-table.html","../../../../../../../src/components-examples/material/table/table-reorderable/table-reorderable-example.ts","../../../../../../../src/components-examples/material/table/table-reorderable/table-reorderable-example.html","../../../../../../../src/components-examples/material/table/table-recycle-rows/table-recycle-rows-example.ts","../../../../../../../src/components-examples/material/table/table-recycle-rows/table-recycle-rows-example.html","../../../../../../../src/components-examples/material/table/table-harness/table-harness-example.ts","../../../../../../../src/components-examples/material/table/table-harness/table-harness-example.html","../../../../../../../src/components-examples/material/table/table-with-ripples/table-with-ripples-example.ts","../../../../../../../src/components-examples/material/table/table-with-ripples/table-with-ripples-example.html","../../../../../../../src/components-examples/material/table/table-column-styling/table-column-styling-example.ts","../../../../../../../src/components-examples/material/table/table-column-styling/table-column-styling-example.html","../../../../../../../src/components-examples/material/table/table-row-binding/table-row-binding-example.ts","../../../../../../../src/components-examples/material/table/table-row-binding/table-row-binding-example.html","../../../../../../../src/components-examples/material/table/table-dynamic-array-data/table-dynamic-array-data-example.ts","../../../../../../../src/components-examples/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html","../../../../../../../src/components-examples/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.ts","../../../../../../../src/components-examples/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html","../../../../../../../src/components-examples/material/table/table-generated-columns/table-generated-columns-example.ts","../../../../../../../src/components-examples/material/table/table-generated-columns/table-generated-columns-example.html","../../../../../../../src/components-examples/material/table/table-flex-large-row/table-flex-large-row-example.ts","../../../../../../../src/components-examples/material/table/table-flex-large-row/table-flex-large-row-example.html","../../../../../../../src/components-examples/material/table/table_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of `` (uses display flex)\n */\n@Component({\n selector: 'table-flex-basic-example',\n styleUrl: 'table-flex-basic-example.css',\n templateUrl: 'table-flex-basic-example.html',\n imports: [MatTableModule],\n})\nexport class TableFlexBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of ``\n */\n@Component({\n selector: 'table-basic-example',\n styleUrl: 'table-basic-example.css',\n templateUrl: 'table-basic-example.html',\n imports: [MatTableModule],\n})\nexport class TableBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","
    \n\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table dynamically changing the columns displayed\n */\n@Component({\n selector: 'table-dynamic-columns-example',\n styleUrl: 'table-dynamic-columns-example.css',\n templateUrl: 'table-dynamic-columns-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicColumnsExample {\n displayedColumns: string[] = ['name', 'weight', 'symbol', 'position'];\n columnsToDisplay: string[] = this.displayedColumns.slice();\n data: PeriodicElement[] = ELEMENT_DATA;\n\n addColumn() {\n const randomColumn = Math.floor(Math.random() * this.displayedColumns.length);\n this.columnsToDisplay.push(this.displayedColumns[randomColumn]);\n }\n\n removeColumn() {\n if (this.columnsToDisplay.length) {\n this.columnsToDisplay.pop();\n }\n }\n\n shuffle() {\n let currentIndex = this.columnsToDisplay.length;\n while (0 !== currentIndex) {\n let randomIndex = Math.floor(Math.random() * currentIndex);\n currentIndex -= 1;\n\n // Swap\n let temp = this.columnsToDisplay[currentIndex];\n this.columnsToDisplay[currentIndex] = this.columnsToDisplay[randomIndex];\n this.columnsToDisplay[randomIndex] = temp;\n }\n }\n}\n","\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with expandable rows\n */\n@Component({\n selector: 'table-expandable-rows-example',\n styleUrl: 'table-expandable-rows-example.css',\n templateUrl: 'table-expandable-rows-example.html',\n imports: [MatTableModule, MatButtonModule, MatIconModule],\n})\nexport class TableExpandableRowsExample {\n dataSource = ELEMENT_DATA;\n columnsToDisplay = ['name', 'weight', 'symbol', 'position'];\n columnsToDisplayWithExpand = [...this.columnsToDisplay, 'expand'];\n expandedElement: PeriodicElement | null;\n\n /** Checks whether an element is expanded. */\n isExpanded(element: PeriodicElement) {\n return this.expandedElement === element;\n }\n\n /** Toggles the expanded state of an element. */\n toggle(element: PeriodicElement) {\n this.expandedElement = this.isExpanded(element) ? null : element;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n description: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {\n position: 1,\n name: 'Hydrogen',\n weight: 1.0079,\n symbol: 'H',\n description: `Hydrogen is a chemical element with symbol H and atomic number 1. With a standard\n atomic weight of 1.008, hydrogen is the lightest element on the periodic table.`,\n },\n {\n position: 2,\n name: 'Helium',\n weight: 4.0026,\n symbol: 'He',\n description: `Helium is a chemical element with symbol He and atomic number 2. It is a\n colorless, odorless, tasteless, non-toxic, inert, monatomic gas, the first in the noble gas\n group in the periodic table. Its boiling point is the lowest among all the elements.`,\n },\n {\n position: 3,\n name: 'Lithium',\n weight: 6.941,\n symbol: 'Li',\n description: `Lithium is a chemical element with symbol Li and atomic number 3. It is a soft,\n silvery-white alkali metal. Under standard conditions, it is the lightest metal and the\n lightest solid element.`,\n },\n {\n position: 4,\n name: 'Beryllium',\n weight: 9.0122,\n symbol: 'Be',\n description: `Beryllium is a chemical element with symbol Be and atomic number 4. It is a\n relatively rare element in the universe, usually occurring as a product of the spallation of\n larger atomic nuclei that have collided with cosmic rays.`,\n },\n {\n position: 5,\n name: 'Boron',\n weight: 10.811,\n symbol: 'B',\n description: `Boron is a chemical element with symbol B and atomic number 5. Produced entirely\n by cosmic ray spallation and supernovae and not by stellar nucleosynthesis, it is a\n low-abundance element in the Solar system and in the Earth's crust.`,\n },\n {\n position: 6,\n name: 'Carbon',\n weight: 12.0107,\n symbol: 'C',\n description: `Carbon is a chemical element with symbol C and atomic number 6. It is nonmetallic\n and tetravalent—making four electrons available to form covalent chemical bonds. It belongs\n to group 14 of the periodic table.`,\n },\n {\n position: 7,\n name: 'Nitrogen',\n weight: 14.0067,\n symbol: 'N',\n description: `Nitrogen is a chemical element with symbol N and atomic number 7. It was first\n discovered and isolated by Scottish physician Daniel Rutherford in 1772.`,\n },\n {\n position: 8,\n name: 'Oxygen',\n weight: 15.9994,\n symbol: 'O',\n description: `Oxygen is a chemical element with symbol O and atomic number 8. It is a member of\n the chalcogen group on the periodic table, a highly reactive nonmetal, and an oxidizing\n agent that readily forms oxides with most elements as well as with other compounds.`,\n },\n {\n position: 9,\n name: 'Fluorine',\n weight: 18.9984,\n symbol: 'F',\n description: `Fluorine is a chemical element with symbol F and atomic number 9. It is the\n lightest halogen and exists as a highly toxic pale yellow diatomic gas at standard\n conditions.`,\n },\n {\n position: 10,\n name: 'Neon',\n weight: 20.1797,\n symbol: 'Ne',\n description: `Neon is a chemical element with symbol Ne and atomic number 10. It is a noble gas.\n Neon is a colorless, odorless, inert monatomic gas under standard conditions, with about\n two-thirds the density of air.`,\n },\n];\n","\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with filtering\n */\n@Component({\n selector: 'table-filtering-example',\n styleUrl: 'table-filtering-example.css',\n templateUrl: 'table-filtering-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatTableModule],\n})\nexport class TableFilteringExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n }\n}\n","\n Filter\n \n\n\n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    No data matching the filter \"{{input.value}}\"
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\ninterface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Footer row table\n */\n@Component({\n selector: 'table-footer-row-example',\n styleUrl: 'table-footer-row-example.css',\n templateUrl: 'table-footer-row-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableFooterRowExample {\n displayedColumns: string[] = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n","import {HttpClient} from '@angular/common/http';\nimport {Component, ViewChild, AfterViewInit, inject} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSort, MatSortModule, SortDirection} from '@angular/material/sort';\nimport {merge, Observable, of as observableOf} from 'rxjs';\nimport {catchError, map, startWith, switchMap} from 'rxjs/operators';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {DatePipe} from '@angular/common';\n\n/**\n * @title Table retrieving data through HTTP\n */\n@Component({\n selector: 'table-http-example',\n styleUrl: 'table-http-example.css',\n templateUrl: 'table-http-example.html',\n imports: [MatProgressSpinnerModule, MatTableModule, MatSortModule, MatPaginatorModule, DatePipe],\n})\nexport class TableHttpExample implements AfterViewInit {\n private _httpClient = inject(HttpClient);\n\n displayedColumns: string[] = ['created', 'state', 'number', 'title'];\n exampleDatabase: ExampleHttpDatabase | null;\n data: GithubIssue[] = [];\n\n resultsLength = 0;\n isLoadingResults = true;\n isRateLimitReached = false;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n ngAfterViewInit() {\n this.exampleDatabase = new ExampleHttpDatabase(this._httpClient);\n\n // If the user changes the sort order, reset back to the first page.\n this.sort.sortChange.subscribe(() => (this.paginator.pageIndex = 0));\n\n merge(this.sort.sortChange, this.paginator.page)\n .pipe(\n startWith({}),\n switchMap(() => {\n this.isLoadingResults = true;\n return this.exampleDatabase!.getRepoIssues(\n this.sort.active,\n this.sort.direction,\n this.paginator.pageIndex,\n ).pipe(catchError(() => observableOf(null)));\n }),\n map(data => {\n // Flip flag to show that loading has finished.\n this.isLoadingResults = false;\n this.isRateLimitReached = data === null;\n\n if (data === null) {\n return [];\n }\n\n // Only refresh the result length if there is new data. In case of rate\n // limit errors, we do not want to reset the paginator to zero, as that\n // would prevent users from re-triggering requests.\n this.resultsLength = data.total_count;\n return data.items;\n }),\n )\n .subscribe(data => (this.data = data));\n }\n}\n\nexport interface GithubApi {\n items: GithubIssue[];\n total_count: number;\n}\n\nexport interface GithubIssue {\n created_at: string;\n number: string;\n state: string;\n title: string;\n}\n\n/** An example database that the data source uses to retrieve data for the table. */\nexport class ExampleHttpDatabase {\n constructor(private _httpClient: HttpClient) {}\n\n getRepoIssues(sort: string, order: SortDirection, page: number): Observable {\n const href = 'https://api.github.com/search/issues';\n const requestUrl = `${href}?q=repo:angular/components&sort=${sort}&order=${order}&page=${\n page + 1\n }`;\n\n return this._httpClient.get(requestUrl);\n }\n}\n","
    \n @if (isLoadingResults || isRateLimitReached) {\n
    \n @if (isLoadingResults) {\n \n }\n @if (isRateLimitReached) {\n
    \n GitHub's API rate limit has been reached. It will be reset in one minute.\n
    \n }\n
    \n }\n\n
    \n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    #{{row.number}}Title{{row.title}}State{{row.state}}\n Created\n {{row.created_at | date}}
    \n
    \n\n \n
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\ninterface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Table with multiple header and footer rows\n */\n@Component({\n selector: 'table-multiple-header-footer-example',\n styleUrl: 'table-multiple-header-footer-example.css',\n templateUrl: 'table-multiple-header-footer-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableMultipleHeaderFooterExample {\n displayedColumns: string[] = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n\n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}} Name of the item purchased Cost of the item in USD \n Please note that the cost of items displayed are completely and totally made up.\n
    \n","import {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with multiple row template\n */\n@Component({\n selector: 'table-multiple-row-template-example',\n styleUrls: ['table-multiple-row-template-example.css'],\n templateUrl: 'table-multiple-row-template-example.html',\n imports: [MatTableModule],\n})\nexport class TableMultipleRowTemplateExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","
    \n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}\n Secondary row for the element {{element.name}}\n
    \n
    \n","import {AfterViewInit, Component, ViewChild} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSort, MatSortModule} from '@angular/material/sort';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface UserData {\n id: string;\n name: string;\n progress: string;\n fruit: string;\n}\n\n/** Constants used to fill up our data base. */\nconst FRUITS: string[] = [\n 'blueberry',\n 'lychee',\n 'kiwi',\n 'mango',\n 'peach',\n 'lime',\n 'pomegranate',\n 'pineapple',\n];\nconst NAMES: string[] = [\n 'Maia',\n 'Asher',\n 'Olivia',\n 'Atticus',\n 'Amelia',\n 'Jack',\n 'Charlotte',\n 'Theodore',\n 'Isla',\n 'Oliver',\n 'Isabella',\n 'Jasper',\n 'Cora',\n 'Levi',\n 'Violet',\n 'Arthur',\n 'Mia',\n 'Thomas',\n 'Elizabeth',\n];\n\n/**\n * @title Data table with sorting, pagination, and filtering.\n */\n@Component({\n selector: 'table-overview-example',\n styleUrl: 'table-overview-example.css',\n templateUrl: 'table-overview-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatTableModule, MatSortModule, MatPaginatorModule],\n})\nexport class TableOverviewExample implements AfterViewInit {\n displayedColumns: string[] = ['id', 'name', 'progress', 'fruit'];\n dataSource: MatTableDataSource;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor() {\n // Create 100 users\n const users = Array.from({length: 100}, (_, k) => createNewUser(k + 1));\n\n // Assign the data to the data source for the table to render\n this.dataSource = new MatTableDataSource(users);\n }\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n\n if (this.dataSource.paginator) {\n this.dataSource.paginator.firstPage();\n }\n }\n}\n\n/** Builds and returns a new User. */\nfunction createNewUser(id: number): UserData {\n const name =\n NAMES[Math.round(Math.random() * (NAMES.length - 1))] +\n ' ' +\n NAMES[Math.round(Math.random() * (NAMES.length - 1))].charAt(0) +\n '.';\n\n return {\n id: id.toString(),\n name: name,\n progress: Math.round(Math.random() * 100).toString(),\n fruit: FRUITS[Math.round(Math.random() * (FRUITS.length - 1))],\n };\n}\n","\n Filter\n \n\n\n
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    ID {{row.id}} Progress {{row.progress}}% Name {{row.name}} Fruit {{row.fruit}}
    No data matching the filter \"{{input.value}}\"
    \n\n \n
    \n\n","import {AfterViewInit, Component, ViewChild} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with pagination\n */\n@Component({\n selector: 'table-pagination-example',\n styleUrl: 'table-pagination-example.css',\n templateUrl: 'table-pagination-example.html',\n imports: [MatTableModule, MatPaginatorModule],\n})\nexport class TablePaginationExample implements AfterViewInit {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table showing each row context properties.\n */\n@Component({\n selector: 'table-row-context-example',\n styleUrl: 'table-row-context-example.css',\n templateUrl: 'table-row-context-example.html',\n imports: [MatTableModule],\n})\nexport class TableRowContextExample {\n displayedColumns: string[] = ['$implicit', 'index', 'count', 'first', 'last', 'even', 'odd'];\n data: string[] = ['one', 'two', 'three', 'four', 'five'];\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    $implicit {{data}} index {{index}} count {{count}} first {{first}} last {{last}} even {{even}} odd {{odd}}
    \n","import {SelectionModel} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with selection\n */\n@Component({\n selector: 'table-selection-example',\n styleUrl: 'table-selection-example.css',\n templateUrl: 'table-selection-example.html',\n imports: [MatTableModule, MatCheckboxModule],\n})\nexport class TableSelectionExample {\n displayedColumns: string[] = ['select', 'position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n selection = new SelectionModel(true, []);\n\n /** Whether the number of selected elements matches the total number of rows. */\n isAllSelected() {\n const numSelected = this.selection.selected.length;\n const numRows = this.dataSource.data.length;\n return numSelected === numRows;\n }\n\n /** Selects all rows if they are not all selected; otherwise clear selection. */\n toggleAllRows() {\n if (this.isAllSelected()) {\n this.selection.clear();\n return;\n }\n\n this.selection.select(...this.dataSource.data);\n }\n\n /** The label for the checkbox on the passed row */\n checkboxLabel(row?: PeriodicElement): string {\n if (!row) {\n return `${this.isAllSelected() ? 'deselect' : 'select'} all`;\n }\n return `${this.selection.isSelected(row) ? 'deselect' : 'select'} row ${row.position + 1}`;\n }\n}\n","\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    \n \n \n \n \n \n No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {AfterViewInit, Component, ViewChild, inject} from '@angular/core';\nimport {MatSort, Sort, MatSortModule} from '@angular/material/sort';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n/**\n * @title Table with sorting\n */\n@Component({\n selector: 'table-sorting-example',\n styleUrl: 'table-sorting-example.css',\n templateUrl: 'table-sorting-example.html',\n imports: [MatTableModule, MatSortModule],\n})\nexport class TableSortingExample implements AfterViewInit {\n private _liveAnnouncer = inject(LiveAnnouncer);\n\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild(MatSort) sort: MatSort;\n\n ngAfterViewInit() {\n this.dataSource.sort = this.sort;\n }\n\n /** Announce the change in sort state for assistive technology. */\n announceSortChange(sortState: Sort) {\n // This example uses English messages. If your application supports\n // multiple language, you would internationalize these strings.\n // Furthermore, you can customize the message to add additional\n // details about the values being sorted.\n if (sortState.direction) {\n this._liveAnnouncer.announce(`Sorted ${sortState.direction}ending`);\n } else {\n this._liveAnnouncer.announce('Sorting cleared');\n }\n }\n}\n","\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    \n No.\n {{element.position}} \n Name\n {{element.name}} \n Weight\n {{element.weight}} \n Symbol\n {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with sticky columns\n */\n@Component({\n selector: 'table-sticky-columns-example',\n styleUrl: 'table-sticky-columns-example.css',\n templateUrl: 'table-sticky-columns-example.html',\n imports: [MatTableModule, MatIconModule],\n})\nexport class TableStickyColumnsExample {\n displayedColumns = [\n 'name',\n 'position',\n 'weight',\n 'symbol',\n 'position',\n 'weight',\n 'symbol',\n 'star',\n ];\n dataSource = ELEMENT_DATA;\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    Name {{element.name}} No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}  \n more_vert\n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleGroup, MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Flex-layout tables with toggle-able sticky headers, footers, and columns\n */\n@Component({\n selector: 'table-sticky-complex-flex-example',\n styleUrl: 'table-sticky-complex-flex-example.css',\n templateUrl: 'table-sticky-complex-flex-example.html',\n imports: [MatButtonModule, MatButtonToggleModule, MatTableModule],\n})\nexport class TableStickyComplexFlexExample {\n displayedColumns: string[] = [];\n dataSource = ELEMENT_DATA;\n\n tables = [0];\n\n constructor() {\n this.displayedColumns.length = 24;\n this.displayedColumns.fill('filler');\n\n // The first two columns should be position and name; the last two columns: weight, symbol\n this.displayedColumns[0] = 'position';\n this.displayedColumns[1] = 'name';\n this.displayedColumns[22] = 'weight';\n this.displayedColumns[23] = 'symbol';\n }\n\n /** Whether the button toggle group contains the id as an active value. */\n isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string) {\n return (buttonToggleGroup.value || []).indexOf(id) !== -1;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleGroup, MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tables with toggle-able sticky headers, footers, and columns\n */\n@Component({\n selector: 'table-sticky-complex-example',\n styleUrl: 'table-sticky-complex-example.css',\n templateUrl: 'table-sticky-complex-example.html',\n imports: [MatButtonModule, MatButtonToggleModule, MatTableModule],\n})\nexport class TableStickyComplexExample {\n displayedColumns: string[] = [];\n dataSource = ELEMENT_DATA;\n\n tables = [0];\n\n constructor() {\n this.displayedColumns.length = 24;\n this.displayedColumns.fill('filler');\n\n // The first two columns should be position and name; the last two columns: weight, symbol\n this.displayedColumns[0] = 'position';\n this.displayedColumns[1] = 'name';\n this.displayedColumns[22] = 'weight';\n this.displayedColumns[23] = 'symbol';\n }\n\n /** Whether the button toggle group contains the id as an active value. */\n isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string) {\n return (buttonToggleGroup.value || []).indexOf(id) !== -1;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Table with a sticky footer\n */\n@Component({\n selector: 'table-sticky-footer-example',\n styleUrl: 'table-sticky-footer-example.css',\n templateUrl: 'table-sticky-footer-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableStickyFooterExample {\n displayedColumns = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","
    \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with sticky header\n */\n@Component({\n selector: 'table-sticky-header-example',\n styleUrl: 'table-sticky-header-example.css',\n templateUrl: 'table-sticky-header-example.html',\n imports: [MatTableModule],\n})\nexport class TableStickyHeaderExample {\n displayedColumns = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n
    \n","import {Component} from '@angular/core';\nimport {DecimalPipe} from '@angular/common';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Use of 'mat-text-column' with various configurations of the interface.\n */\n@Component({\n selector: 'table-text-column-advanced-example',\n styleUrl: 'table-text-column-advanced-example.css',\n templateUrl: 'table-text-column-advanced-example.html',\n imports: [MatTableModule],\n})\nexport class TableTextColumnAdvancedExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n headerText: string;\n\n decimalPipe = new DecimalPipe('en-US');\n\n /** Data accessor function that transforms the weight value to have at most 2 decimal digits. */\n getWeight = (data: PeriodicElement): string => {\n const result = this.decimalPipe.transform(data.weight, '1.0-2');\n return result === null ? '' : result;\n };\n}\n","\n \n\n \n \n\n \n \n\n \n \n\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Use of `mat-text-column` which can be used for simple columns that only need to display\n * a text value for the header and cells.\n */\n@Component({\n selector: 'table-text-column-example',\n styleUrl: 'table-text-column-example.css',\n templateUrl: 'table-text-column-example.html',\n imports: [MatTableModule],\n})\nexport class TableTextColumnExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n\n \n \n
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {\n AfterContentInit,\n Component,\n ContentChildren,\n AfterViewInit,\n QueryList,\n ViewChild,\n ContentChild,\n forwardRef,\n input,\n} from '@angular/core';\nimport {MatSort, MatSortModule} from '@angular/material/sort';\nimport {\n MatColumnDef,\n MatHeaderRowDef,\n MatNoDataRow,\n MatRowDef,\n MatTable,\n MatTableDataSource,\n MatTableModule,\n} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table example that shows how to wrap a table component for definition and behavior reuse.\n */\n@Component({\n selector: 'table-wrapped-example',\n styleUrl: 'table-wrapped-example.css',\n templateUrl: 'table-wrapped-example.html',\n imports: [MatButtonModule, forwardRef(() => WrapperTable), MatSortModule, MatTableModule],\n})\nexport class TableWrappedExample implements AfterViewInit {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild('sort') sort: MatSort;\n\n ngAfterViewInit() {\n this.dataSource.sort = this.sort;\n }\n\n clearTable() {\n this.dataSource.data = [];\n }\n\n addData() {\n this.dataSource.data = ELEMENT_DATA;\n }\n}\n\n/**\n * Table component that accepts column and row definitions in its content to be registered to the\n * table.\n */\n@Component({\n selector: 'wrapper-table',\n templateUrl: 'wrapper-table.html',\n styles: `\n table {\n width: 100%;\n }\n `,\n imports: [MatTableModule, MatSortModule],\n})\nexport class WrapperTable implements AfterContentInit {\n @ContentChildren(MatHeaderRowDef) headerRowDefs: QueryList;\n @ContentChildren(MatRowDef) rowDefs: QueryList>;\n @ContentChildren(MatColumnDef) columnDefs: QueryList;\n @ContentChild(MatNoDataRow) noDataRow: MatNoDataRow;\n\n @ViewChild(MatTable, {static: true}) table: MatTable;\n\n readonly columns = input.required();\n readonly dataSource = input.required>();\n\n ngAfterContentInit() {\n this.columnDefs.forEach(columnDef => this.table.addColumnDef(columnDef));\n this.rowDefs.forEach(rowDef => this.table.addRowDef(rowDef));\n this.headerRowDefs.forEach(headerRowDef => this.table.addHeaderRowDef(headerRowDef));\n this.table.setNoDataRow(this.noDataRow);\n }\n}\n","
    \n \n \n
    \n\n\n \n \n Name \n {{element.name}} \n \n\n \n \n \n\n \n \n No data\n \n\n","\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n
    No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with re-orderable columns\n */\n@Component({\n selector: 'table-reorderable-example',\n templateUrl: './table-reorderable-example.html',\n styleUrl: './table-reorderable-example.css',\n imports: [MatTableModule, CdkDropList, CdkDrag],\n})\nexport class TableReorderableExample {\n columns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.columns, event.previousIndex, event.currentIndex);\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","\n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table that uses the recycle view repeater strategy.\n */\n@Component({\n selector: 'table-recycle-rows-example',\n styleUrl: 'table-recycle-rows-example.css',\n templateUrl: 'table-recycle-rows-example.html',\n imports: [MatTableModule],\n})\nexport class TableRecycleRowsExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Testing with MatTableHarness\n */\n\n@Component({\n selector: 'table-harness-example',\n templateUrl: 'table-harness-example.html',\n imports: [MatTableModule],\n})\nexport class TableHarnessExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n ];\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    No.{{element.position}}Number of the elementName{{element.name}}Name of the elementWeight{{element.weight}}Weight of the elementSymbol{{element.symbol}}Symbol of the element
    \n","import {Component} from '@angular/core';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatTableModule} from '@angular/material/table';\n\nconst ELEMENT_DATA = [\n {name: 'Hydrogen'},\n {name: 'Helium'},\n {name: 'Lithium'},\n {name: 'Beryllium'},\n {name: 'Boron'},\n {name: 'Carbon'},\n {name: 'Nitrogen'},\n {name: 'Oxygen'},\n {name: 'Fluorine'},\n {name: 'Neon'},\n];\n\n/**\n * @title Tables with Material Design ripples.\n */\n@Component({\n selector: 'table-with-ripples-example',\n templateUrl: 'table-with-ripples-example.html',\n imports: [MatTableModule, MatRippleModule],\n})\nexport class TableWithRipplesExample {\n displayedColumns: string[] = ['name'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n Name \n {{element.name}} \n \n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Styling columns using their auto-generated column names\n */\n@Component({\n selector: 'table-column-styling-example',\n styleUrl: 'table-column-styling-example.css',\n templateUrl: 'table-column-styling-example.html',\n imports: [MatTableModule],\n})\nexport class TableColumnStylingExample {\n displayedColumns: string[] = ['demo-position', 'demo-name', 'demo-weight', 'demo-symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Binding event handlers and properties to the table rows.\n */\n@Component({\n selector: 'table-row-binding-example',\n styleUrl: 'table-row-binding-example.css',\n templateUrl: 'table-row-binding-example.html',\n imports: [MatTableModule],\n})\nexport class TableRowBindingExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n clickedRows = new Set();\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n\n
    \n

    \n Click Log\n

    \n
    \n\n@if (!clickedRows.size) {\n
    Clicked rows will be logged here
    \n}\n\n
      \n @for (clickedRow of clickedRows; track clickedRow) {\n
    • Clicked on {{clickedRow.name}}
    • \n }\n
    \n","import {Component, ViewChild} from '@angular/core';\nimport {MatTable, MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Adding and removing data when using an array-based datasource.\n */\n@Component({\n selector: 'table-dynamic-array-data-example',\n styleUrl: 'table-dynamic-array-data-example.css',\n templateUrl: 'table-dynamic-array-data-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicArrayDataExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = [...ELEMENT_DATA];\n\n @ViewChild(MatTable) table: MatTable;\n\n addData() {\n const randomElementIndex = Math.floor(Math.random() * ELEMENT_DATA.length);\n this.dataSource.push(ELEMENT_DATA[randomElementIndex]);\n this.table.renderRows();\n }\n\n removeData() {\n this.dataSource.pop();\n this.table.renderRows();\n }\n}\n","
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {Observable, ReplaySubject} from 'rxjs';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Adding and removing data when using an observable-based datasource.\n */\n@Component({\n selector: 'table-dynamic-observable-data-example',\n styleUrl: 'table-dynamic-observable-data-example.css',\n templateUrl: 'table-dynamic-observable-data-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicObservableDataExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataToDisplay = [...ELEMENT_DATA];\n\n dataSource = new ExampleDataSource(this.dataToDisplay);\n\n addData() {\n const randomElementIndex = Math.floor(Math.random() * ELEMENT_DATA.length);\n this.dataToDisplay = [...this.dataToDisplay, ELEMENT_DATA[randomElementIndex]];\n this.dataSource.setData(this.dataToDisplay);\n }\n\n removeData() {\n this.dataToDisplay = this.dataToDisplay.slice(0, -1);\n this.dataSource.setData(this.dataToDisplay);\n }\n}\n\nclass ExampleDataSource extends DataSource {\n private _dataStream = new ReplaySubject();\n\n constructor(initialData: PeriodicElement[]) {\n super();\n this.setData(initialData);\n }\n\n connect(): Observable {\n return this._dataStream;\n }\n\n disconnect() {}\n\n setData(data: PeriodicElement[]) {\n this._dataStream.next(data);\n }\n}\n","
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with columns defined using a for loop instead of statically written in the template.\n */\n@Component({\n selector: 'table-generated-columns-example',\n styleUrl: 'table-generated-columns-example.css',\n templateUrl: 'table-generated-columns-example.html',\n imports: [MatTableModule],\n})\nexport class TableGeneratedColumnsExample {\n columns = [\n {\n columnDef: 'position',\n header: 'No.',\n cell: (element: PeriodicElement) => `${element.position}`,\n },\n {\n columnDef: 'name',\n header: 'Name',\n cell: (element: PeriodicElement) => `${element.name}`,\n },\n {\n columnDef: 'weight',\n header: 'Weight',\n cell: (element: PeriodicElement) => `${element.weight}`,\n },\n {\n columnDef: 'symbol',\n header: 'Symbol',\n cell: (element: PeriodicElement) => `${element.symbol}`,\n },\n ];\n dataSource = ELEMENT_DATA;\n displayedColumns = this.columns.map(c => c.columnDef);\n}\n","\n @for (column of columns; track column) {\n \n \n \n \n }\n\n \n \n
    \n {{column.header}}\n \n {{column.cell(row)}}\n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Flex table where one column's cells has a greater height than others.\n */\n@Component({\n selector: 'table-flex-large-row-example',\n styleUrl: 'table-flex-large-row-example.css',\n templateUrl: 'table-flex-large-row-example.html',\n imports: [MatTableModule],\n})\nexport class TableFlexLargeRowExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["ELEMENT_DATA","i2","i1","i3","observableOf","i5"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAUA,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,qBAAqB,CAAA;IAChC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAGA,cAAY,CAAC;uGAFf,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAArB,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChClC,8nCA2BY,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDGA,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;+BACE,0BAA0B,EAAA,OAAA,EAG3B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,8nCAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AEpB3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,iBAAiB,CAAA;IAC5B,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAGA,cAAY,CAAC;uGAFf,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChC9B,8tCAiCA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDHY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAN7B,SAAS;+BACE,qBAAqB,EAAA,OAAA,EAGtB,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,8tCAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AEnB3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,0BAA0B,CAAA;IACrC,gBAAgB,GAAa,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;AACtE,IAAA,gBAAgB,GAAa,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,CAAC;IAC3D,IAAI,GAAsBA,cAAY,CAAC;IAEvC,SAAS,GAAA;AACP,QAAA,MAAM,YAAY,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAC9E,QAAA,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC,CAAC;KACjE;IAED,YAAY,GAAA;AACV,QAAA,IAAI,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE;AAChC,YAAA,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,CAAC;SAC7B;KACF;IAED,OAAO,GAAA;AACL,QAAA,IAAI,YAAY,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC;AAChD,QAAA,OAAO,CAAC,KAAK,YAAY,EAAE;AACzB,YAAA,IAAI,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,YAAY,CAAC,CAAC;YAC3D,YAAY,IAAI,CAAC,CAAC;;YAGlB,IAAI,IAAI,GAAG,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;AAC/C,YAAA,IAAI,CAAC,gBAAgB,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC;AACzE,YAAA,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC;SAC3C;KACF;uGA3BU,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,0BAA0B,ECjCvC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,+BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,isBAeA,EDgBY,MAAA,EAAA,CAAA,kEAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,6TAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE9B,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBANtC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,+BAA+B,EAGhC,OAAA,EAAA,CAAC,eAAe,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,isBAAA,EAAA,MAAA,EAAA,CAAA,kEAAA,CAAA,EAAA,CAAA;;;AE1B5C;;AAEG;MAOU,0BAA0B,CAAA;IACrC,UAAU,GAAGD,cAAY,CAAC;IAC1B,gBAAgB,GAAG,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;IAC5D,0BAA0B,GAAG,CAAC,GAAG,IAAI,CAAC,gBAAgB,EAAE,QAAQ,CAAC,CAAC;AAClE,IAAA,eAAe,CAAyB;;AAGxC,IAAA,UAAU,CAAC,OAAwB,EAAA;AACjC,QAAA,OAAO,IAAI,CAAC,eAAe,KAAK,OAAO,CAAC;KACzC;;AAGD,IAAA,MAAM,CAAC,OAAwB,EAAA;AAC7B,QAAA,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,GAAG,IAAI,GAAG,OAAO,CAAC;KAClE;uGAdU,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA1B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,0BAA0B,yFCdvC,q1EAoDA,EAAA,MAAA,EAAA,CAAA,0uCAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDxCY,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,8KAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE7C,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBANtC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,+BAA+B,WAGhC,CAAC,cAAc,EAAE,eAAe,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,q1EAAA,EAAA,MAAA,EAAA,CAAA,0uCAAA,CAAA,EAAA,CAAA;;AA2B3D,MAAMA,cAAY,GAAsB;AACtC,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,UAAU;AAChB,QAAA,MAAM,EAAE,MAAM;AACd,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;AACuE,uFAAA,CAAA;AACrF,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,QAAQ;AACd,QAAA,MAAM,EAAE,MAAM;AACd,QAAA,MAAM,EAAE,IAAI;AACZ,QAAA,WAAW,EAAE,CAAA;;AAE4E,4FAAA,CAAA;AAC1F,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,SAAS;AACf,QAAA,MAAM,EAAE,KAAK;AACb,QAAA,MAAM,EAAE,IAAI;AACZ,QAAA,WAAW,EAAE,CAAA;;AAEe,+BAAA,CAAA;AAC7B,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,MAAM,EAAE,MAAM;AACd,QAAA,MAAM,EAAE,IAAI;AACZ,QAAA,WAAW,EAAE,CAAA;;AAEiD,iEAAA,CAAA;AAC/D,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,OAAO;AACb,QAAA,MAAM,EAAE,MAAM;AACd,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;;AAE2D,2EAAA,CAAA;AACzE,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,QAAQ;AACd,QAAA,MAAM,EAAE,OAAO;AACf,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;;AAE0B,0CAAA,CAAA;AACxC,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,UAAU;AAChB,QAAA,MAAM,EAAE,OAAO;AACf,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;AACgE,gFAAA,CAAA;AAC9E,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,QAAQ;AACd,QAAA,MAAM,EAAE,OAAO;AACf,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;;AAE4E,4FAAA,CAAA;AAC1F,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,CAAC;AACX,QAAA,IAAI,EAAE,UAAU;AAChB,QAAA,MAAM,EAAE,OAAO;AACf,QAAA,MAAM,EAAE,GAAG;AACX,QAAA,WAAW,EAAE,CAAA;;AAEG,mBAAA,CAAA;AACjB,KAAA;AACD,IAAA;AACE,QAAA,QAAQ,EAAE,EAAE;AACZ,QAAA,IAAI,EAAE,MAAM;AACZ,QAAA,MAAM,EAAE,OAAO;AACf,QAAA,MAAM,EAAE,IAAI;AACZ,QAAA,WAAW,EAAE,CAAA;;AAEsB,sCAAA,CAAA;AACpC,KAAA;CACF;;AEpHD,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,qBAAqB,CAAA;IAChC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAACA,cAAY,CAAC,CAAC;AAElD,IAAA,WAAW,CAAC,KAAY,EAAA;AACtB,QAAA,MAAM,WAAW,GAAI,KAAK,CAAC,MAA2B,CAAC,KAAK,CAAC;AAC7D,QAAA,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;KAC3D;uGAPU,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,mFClClC,w6CAuCA,EAAA,MAAA,EAAA,CAAA,+GAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDPY,kBAAkB,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,iYAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEjD,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,yBAAyB,WAG1B,CAAC,kBAAkB,EAAE,cAAc,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,w6CAAA,EAAA,MAAA,EAAA,CAAA,+GAAA,CAAA,EAAA,CAAA;;;AEvB/D;;AAEG;MAOU,qBAAqB,CAAA;AAChC,IAAA,gBAAgB,GAAa,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAC9C,IAAA,YAAY,GAAkB;AAC5B,QAAA,EAAC,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,EAAC;AAC7B,QAAA,EAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAC;AACxB,QAAA,EAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,EAAC;AAC5B,QAAA,EAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,EAAE,EAAC;KAC9B,CAAC;;IAGF,YAAY,GAAA;AACV,QAAA,OAAO,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC;KAClF;uGAdU,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,EClBlC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,0BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,22BAmBA,EDHY,MAAA,EAAA,CAAA,qFAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,q7CAAE,YAAY,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE3B,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,0BAA0B,EAG3B,OAAA,EAAA,CAAC,cAAc,EAAE,YAAY,CAAC,EAAA,QAAA,EAAA,22BAAA,EAAA,MAAA,EAAA,CAAA,qFAAA,CAAA,EAAA,CAAA;;;AENzC;;AAEG;MAOU,gBAAgB,CAAA;AACnB,IAAA,WAAW,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;IAEzC,gBAAgB,GAAa,CAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;AACrE,IAAA,eAAe,CAA6B;IAC5C,IAAI,GAAkB,EAAE,CAAC;IAEzB,aAAa,GAAG,CAAC,CAAC;IAClB,gBAAgB,GAAG,IAAI,CAAC;IACxB,kBAAkB,GAAG,KAAK,CAAC;AAEF,IAAA,SAAS,CAAe;AAC7B,IAAA,IAAI,CAAU;IAElC,eAAe,GAAA;QACb,IAAI,CAAC,eAAe,GAAG,IAAI,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;;QAGjE,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC;AAErE,QAAA,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;aAC7C,IAAI,CACH,SAAS,CAAC,EAAE,CAAC,EACb,SAAS,CAAC,MAAK;AACb,YAAA,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC;AAC7B,YAAA,OAAO,IAAI,CAAC,eAAgB,CAAC,aAAa,CACxC,IAAI,CAAC,IAAI,CAAC,MAAM,EAChB,IAAI,CAAC,IAAI,CAAC,SAAS,EACnB,IAAI,CAAC,SAAS,CAAC,SAAS,CACzB,CAAC,IAAI,CAAC,UAAU,CAAC,MAAMC,EAAY,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAC/C,SAAC,CAAC,EACF,GAAG,CAAC,IAAI,IAAG;;AAET,YAAA,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;AAC9B,YAAA,IAAI,CAAC,kBAAkB,GAAG,IAAI,KAAK,IAAI,CAAC;AAExC,YAAA,IAAI,IAAI,KAAK,IAAI,EAAE;AACjB,gBAAA,OAAO,EAAE,CAAC;aACX;;;;AAKD,YAAA,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,WAAW,CAAC;YACtC,OAAO,IAAI,CAAC,KAAK,CAAC;AACpB,SAAC,CAAC,CACH;AACA,aAAA,SAAS,CAAC,IAAI,KAAK,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,CAAC;KAC1C;uGAhDU,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,gBAAgB,EAWhB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,WAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,YAAY,EACZ,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,MAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,OAAO,gDC/BpB,03DAmDA,EAAA,MAAA,EAAA,CAAA,6oBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDlCY,wBAAwB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAF,IAAA,CAAA,kBAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,MAAA,EAAA,OAAA,EAAA,UAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAD,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,aAAa,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,cAAA,EAAA,kBAAA,EAAA,qBAAA,EAAA,iBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,aAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,eAAA,EAAA,OAAA,EAAA,UAAA,EAAA,uBAAA,EAAA,cAAA,CAAA,EAAA,QAAA,EAAA,CAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,kBAAkB,+RAAE,QAAQ,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEpF,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAN5B,SAAS;+BACE,oBAAoB,EAAA,OAAA,EAGrB,CAAC,wBAAwB,EAAE,cAAc,EAAE,aAAa,EAAE,kBAAkB,EAAE,QAAQ,CAAC,EAAA,QAAA,EAAA,03DAAA,EAAA,MAAA,EAAA,CAAA,6oBAAA,CAAA,EAAA,CAAA;8BAavE,SAAS,EAAA,CAAA;sBAAjC,SAAS;uBAAC,YAAY,CAAA;gBACH,IAAI,EAAA,CAAA;sBAAvB,SAAS;uBAAC,OAAO,CAAA;;AAmDpB;MACa,mBAAmB,CAAA;AACV,IAAA,WAAA,CAAA;AAApB,IAAA,WAAA,CAAoB,WAAuB,EAAA;QAAvB,IAAW,CAAA,WAAA,GAAX,WAAW,CAAY;KAAI;AAE/C,IAAA,aAAa,CAAC,IAAY,EAAE,KAAoB,EAAE,IAAY,EAAA;QAC5D,MAAM,IAAI,GAAG,sCAAsC,CAAC;AACpD,QAAA,MAAM,UAAU,GAAG,CAAG,EAAA,IAAI,CAAmC,gCAAA,EAAA,IAAI,CAAU,OAAA,EAAA,KAAK,CAC9E,MAAA,EAAA,IAAI,GAAG,CACT,EAAE,CAAC;QAEH,OAAO,IAAI,CAAC,WAAW,CAAC,GAAG,CAAY,UAAU,CAAC,CAAC;KACpD;AACF;;AErFD;;AAEG;MAOU,gCAAgC,CAAA;AAC3C,IAAA,gBAAgB,GAAa,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAC9C,IAAA,YAAY,GAAkB;AAC5B,QAAA,EAAC,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,EAAC;AAC7B,QAAA,EAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAC;AACxB,QAAA,EAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,EAAC;AAC5B,QAAA,EAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,EAAE,EAAC;KAC9B,CAAC;;IAGF,YAAY,GAAA;AACV,QAAA,OAAO,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC;KAClF;uGAdU,gCAAgC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAhC,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,gCAAgC,EClB7C,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,k4DA6CA,ED7BY,MAAA,EAAA,CAAA,0QAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,q7CAAE,YAAY,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE3B,gCAAgC,EAAA,UAAA,EAAA,CAAA;kBAN5C,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,sCAAsC,EAGvC,OAAA,EAAA,CAAC,cAAc,EAAE,YAAY,CAAC,EAAA,QAAA,EAAA,k4DAAA,EAAA,MAAA,EAAA,CAAA,0QAAA,CAAA,EAAA,CAAA;;;AEbzC;;AAEG;MAOU,+BAA+B,CAAA;IAC1C,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAAkBH,cAAY,CAAC,CAAC;uGAFxD,+BAA+B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA/B,+BAA+B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZ5C,q9CAsCA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,ED5BY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAN3C,SAAS;+BACE,qCAAqC,EAAA,OAAA,EAGtC,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,q9CAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;AAc3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAChE,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;CAC9D;;AE/BD;AACA,MAAM,MAAM,GAAa;IACvB,WAAW;IACX,QAAQ;IACR,MAAM;IACN,OAAO;IACP,OAAO;IACP,MAAM;IACN,aAAa;IACb,WAAW;CACZ,CAAC;AACF,MAAM,KAAK,GAAa;IACtB,MAAM;IACN,OAAO;IACP,QAAQ;IACR,SAAS;IACT,QAAQ;IACR,MAAM;IACN,WAAW;IACX,UAAU;IACV,MAAM;IACN,QAAQ;IACR,UAAU;IACV,QAAQ;IACR,MAAM;IACN,MAAM;IACN,QAAQ;IACR,QAAQ;IACR,KAAK;IACL,QAAQ;IACR,WAAW;CACZ,CAAC;AAEF;;AAEG;MAOU,oBAAoB,CAAA;IAC/B,gBAAgB,GAAa,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC;AACjE,IAAA,UAAU,CAA+B;AAEhB,IAAA,SAAS,CAAe;AAC7B,IAAA,IAAI,CAAU;AAElC,IAAA,WAAA,GAAA;;QAEE,MAAM,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC,EAAC,MAAM,EAAE,GAAG,EAAC,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,aAAa,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;;QAGxE,IAAI,CAAC,UAAU,GAAG,IAAI,kBAAkB,CAAC,KAAK,CAAC,CAAC;KACjD;IAED,eAAe,GAAA;QACb,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;QAC3C,IAAI,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KAClC;AAED,IAAA,WAAW,CAAC,KAAY,EAAA;AACtB,QAAA,MAAM,WAAW,GAAI,KAAK,CAAC,MAA2B,CAAC,KAAK,CAAC;AAC7D,QAAA,IAAI,CAAC,UAAU,CAAC,MAAM,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;AAE1D,QAAA,IAAI,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE;AAC7B,YAAA,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,SAAS,EAAE,CAAC;SACvC;KACF;uGA3BU,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,EAIpB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,WAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,YAAY,EACZ,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,MAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,OAAO,gDC7DpB,2nDA4CA,EAAA,MAAA,EAAA,CAAA,4HAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDUY,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,oBAAA,EAAA,OAAA,EAAA,YAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,QAAA,EAAA,QAAA,EAAA,WAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAE,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,yHAAA,EAAA,MAAA,EAAA,CAAA,UAAA,EAAA,IAAA,EAAA,aAAA,EAAA,MAAA,EAAA,UAAA,EAAA,MAAA,EAAA,mBAAA,EAAA,kBAAA,EAAA,OAAA,EAAA,UAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,aAAa,qdAAE,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,WAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,sBAAA,EAAA,cAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,MAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEpF,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBANhC,SAAS;+BACE,wBAAwB,EAAA,OAAA,EAGzB,CAAC,kBAAkB,EAAE,cAAc,EAAE,cAAc,EAAE,aAAa,EAAE,kBAAkB,CAAC,EAAA,QAAA,EAAA,2nDAAA,EAAA,MAAA,EAAA,CAAA,4HAAA,CAAA,EAAA,CAAA;wDAMvE,SAAS,EAAA,CAAA;sBAAjC,SAAS;uBAAC,YAAY,CAAA;gBACH,IAAI,EAAA,CAAA;sBAAvB,SAAS;uBAAC,OAAO,CAAA;;AAyBpB;AACA,SAAS,aAAa,CAAC,EAAU,EAAA;IAC/B,MAAM,IAAI,GACR,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;QACrD,GAAG;QACH,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AAC/D,QAAA,GAAG,CAAC;IAEN,OAAO;AACL,QAAA,EAAE,EAAE,EAAE,CAAC,QAAQ,EAAE;AACjB,QAAA,IAAI,EAAE,IAAI;AACV,QAAA,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,GAAG,CAAC,CAAC,QAAQ,EAAE;QACpD,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;KAC/D,CAAC;AACJ;;AEhGA;;AAEG;MAOU,sBAAsB,CAAA;IACjC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAAkBL,cAAY,CAAC,CAAC;AAE1C,IAAA,SAAS,CAAe;IAEjD,eAAe,GAAA;QACb,IAAI,CAAC,UAAU,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC;KAC5C;uGARU,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAtB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,+HAItB,YAAY,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECjBzB,wzCAoCA,EDzBY,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,sgCAAE,kBAAkB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,WAAA,EAAA,QAAA,EAAA,UAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,sBAAA,EAAA,cAAA,EAAA,UAAA,CAAA,EAAA,OAAA,EAAA,CAAA,MAAA,CAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEjC,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,0BAA0B,EAG3B,OAAA,EAAA,CAAC,cAAc,EAAE,kBAAkB,CAAC,EAAA,QAAA,EAAA,wzCAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;8BAMpB,SAAS,EAAA,CAAA;sBAAjC,SAAS;uBAAC,YAAY,CAAA;;AAczB,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAChE,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC/D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;CAC9D;;AEjDD;;AAEG;MAOU,sBAAsB,CAAA;AACjC,IAAA,gBAAgB,GAAa,CAAC,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,CAAC,CAAC;AAC7F,IAAA,IAAI,GAAa,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;uGAF9C,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZnC,+oDA8CA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDpCY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,2BAA2B,EAAA,OAAA,EAG5B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,+oDAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AEE3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,qBAAqB,CAAA;AAChC,IAAA,gBAAgB,GAAa,CAAC,QAAQ,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAChF,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAAkBA,cAAY,CAAC,CAAC;IACnE,SAAS,GAAG,IAAI,cAAc,CAAkB,IAAI,EAAE,EAAE,CAAC,CAAC;;IAG1D,aAAa,GAAA;QACX,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC;QACnD,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,MAAM,CAAC;QAC5C,OAAO,WAAW,KAAK,OAAO,CAAC;KAChC;;IAGD,aAAa,GAAA;AACX,QAAA,IAAI,IAAI,CAAC,aAAa,EAAE,EAAE;AACxB,YAAA,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,CAAC;YACvB,OAAO;SACR;AAED,QAAA,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;KAChD;;AAGD,IAAA,aAAa,CAAC,GAAqB,EAAA;QACjC,IAAI,CAAC,GAAG,EAAE;AACR,YAAA,OAAO,CAAG,EAAA,IAAI,CAAC,aAAa,EAAE,GAAG,UAAU,GAAG,QAAQ,MAAM,CAAC;SAC9D;QACD,OAAO,CAAA,EAAG,IAAI,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,UAAU,GAAG,QAAQ,CAAQ,KAAA,EAAA,GAAG,CAAC,QAAQ,GAAG,CAAC,CAAA,CAAE,CAAC;KAC5F;uGA5BU,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,EClClC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,u3DAiDA,EDjBY,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,sgCAAE,iBAAiB,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,WAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,eAAA,EAAA,eAAA,EAAA,WAAA,EAAA,IAAA,EAAA,UAAA,EAAA,eAAA,EAAA,MAAA,EAAA,OAAA,EAAA,eAAA,EAAA,UAAA,EAAA,OAAA,EAAA,qBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,eAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,qBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEhC,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBANjC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,yBAAyB,EAG1B,OAAA,EAAA,CAAC,cAAc,EAAE,iBAAiB,CAAC,EAAA,QAAA,EAAA,u3DAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AErB9C,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AACF;;AAEG;MAOU,mBAAmB,CAAA;AACtB,IAAA,cAAc,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;IAE/C,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAACA,cAAY,CAAC,CAAC;AAE9B,IAAA,IAAI,CAAU;IAElC,eAAe,GAAA;QACb,IAAI,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KAClC;;AAGD,IAAA,kBAAkB,CAAC,SAAe,EAAA;;;;;AAKhC,QAAA,IAAI,SAAS,CAAC,SAAS,EAAE;YACvB,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAU,OAAA,EAAA,SAAS,CAAC,SAAS,CAAQ,MAAA,CAAA,CAAC,CAAC;SACrE;aAAM;AACL,YAAA,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;SACjD;KACF;uGAvBU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,uHAMnB,OAAO,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECtCpB,s5CAsCA,EDRY,MAAA,EAAA,CAAA,iFAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,sgCAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,cAAA,EAAA,kBAAA,EAAA,qBAAA,EAAA,iBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,aAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,eAAA,EAAA,OAAA,EAAA,UAAA,EAAA,uBAAA,EAAA,cAAA,CAAA,EAAA,QAAA,EAAA,CAAA,eAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE5B,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAN/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,uBAAuB,EAGxB,OAAA,EAAA,CAAC,cAAc,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,s5CAAA,EAAA,MAAA,EAAA,CAAA,iFAAA,CAAA,EAAA,CAAA;8BAQpB,IAAI,EAAA,CAAA;sBAAvB,SAAS;uBAAC,OAAO,CAAA;;;AElCpB;;AAEG;MAOU,yBAAyB,CAAA;AACpC,IAAA,gBAAgB,GAAG;QACjB,MAAM;QACN,UAAU;QACV,QAAQ;QACR,QAAQ;QACR,UAAU;QACV,QAAQ;QACR,QAAQ;QACR,MAAM;KACP,CAAC;IACF,UAAU,GAAGD,cAAY,CAAC;uGAXf,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAzB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,ECbtC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,m9CAuCA,ED5BY,MAAA,EAAA,CAAA,ybAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,sgCAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,SAAA,EAAA,SAAA,EAAA,UAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE5B,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBANrC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,8BAA8B,EAG/B,OAAA,EAAA,CAAC,cAAc,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,m9CAAA,EAAA,MAAA,EAAA,CAAA,ybAAA,CAAA,EAAA,CAAA;;AAuB1C,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D;;AExCD;;AAEG;MAOU,6BAA6B,CAAA;IACxC,gBAAgB,GAAa,EAAE,CAAC;IAChC,UAAU,GAAGA,cAAY,CAAC;AAE1B,IAAA,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;AAEb,IAAA,WAAA,GAAA;AACE,QAAA,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,EAAE,CAAC;AAClC,QAAA,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;AAGrC,QAAA,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;AACtC,QAAA,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;AAClC,QAAA,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;AACrC,QAAA,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;KACtC;;IAGD,QAAQ,CAAC,iBAAuC,EAAE,EAAU,EAAA;AAC1D,QAAA,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;KAC3D;uGApBU,6BAA6B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA7B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,6BAA6B,6FCd1C,m7HAgFA,EAAA,MAAA,EAAA,CAAA,q1BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDpEY,eAAe,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,qBAAqB,0oBAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAErD,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBANzC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,mCAAmC,WAGpC,CAAC,eAAe,EAAE,qBAAqB,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,m7HAAA,EAAA,MAAA,EAAA,CAAA,q1BAAA,CAAA,EAAA,CAAA;;AAgCnE,MAAMH,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D;;AElDD;;AAEG;MAOU,yBAAyB,CAAA;IACpC,gBAAgB,GAAa,EAAE,CAAC;IAChC,UAAU,GAAGA,cAAY,CAAC;AAE1B,IAAA,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;AAEb,IAAA,WAAA,GAAA;AACE,QAAA,IAAI,CAAC,gBAAgB,CAAC,MAAM,GAAG,EAAE,CAAC;AAClC,QAAA,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;;AAGrC,QAAA,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,UAAU,CAAC;AACtC,QAAA,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC;AAClC,QAAA,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;AACrC,QAAA,IAAI,CAAC,gBAAgB,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC;KACtC;;IAGD,QAAQ,CAAC,iBAAuC,EAAE,EAAU,EAAA;AAC1D,QAAA,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,EAAE,EAAE,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;KAC3D;uGApBU,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAzB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,wFCdtC,4xHAgFA,EAAA,MAAA,EAAA,CAAA,ouBAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDpEY,eAAe,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAE,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,gMAAA,EAAA,QAAA,EAAA,CAAA,WAAA,EAAA,WAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,qBAAqB,0oBAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAErD,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBANrC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,8BAA8B,WAG/B,CAAC,eAAe,EAAE,qBAAqB,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,4xHAAA,EAAA,MAAA,EAAA,CAAA,ouBAAA,CAAA,EAAA,CAAA;;AAgCnE,MAAMH,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D;;AE9CD;;AAEG;MAOU,wBAAwB,CAAA;AACnC,IAAA,gBAAgB,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AACpC,IAAA,YAAY,GAAkB;AAC5B,QAAA,EAAC,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,EAAC;AAC7B,QAAA,EAAC,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC,EAAC;AACxB,QAAA,EAAC,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,CAAC,EAAC;AAC5B,QAAA,EAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,EAAE,EAAC;AAC1B,QAAA,EAAC,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,EAAE,EAAC;KAC9B,CAAC;;IAGF,YAAY,GAAA;AACV,QAAA,OAAO,IAAI,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,KAAK,KAAK,GAAG,GAAG,KAAK,EAAE,CAAC,CAAC,CAAC;KAClF;uGAdU,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAxB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,EClBrC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,m9BAqBA,EDLY,MAAA,EAAA,CAAA,kNAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,q7CAAE,YAAY,EAAA,IAAA,EAAA,UAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE3B,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,6BAA6B,EAG9B,OAAA,EAAA,CAAC,cAAc,EAAE,YAAY,CAAC,EAAA,QAAA,EAAA,m9BAAA,EAAA,MAAA,EAAA,CAAA,kNAAA,CAAA,EAAA,CAAA;;;AEbzC;;AAEG;MAOU,wBAAwB,CAAA;IACnC,gBAAgB,GAAG,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IAC5D,UAAU,GAAGA,cAAY,CAAC;uGAFf,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZrC,2rCA+BA,EAAA,MAAA,EAAA,CAAA,8FAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDrBY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,6BAA6B,EAAA,OAAA,EAG9B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,2rCAAA,EAAA,MAAA,EAAA,CAAA,8FAAA,CAAA,EAAA,CAAA;;AAc3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D;;AExBD,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,8BAA8B,CAAA;IACzC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAACA,cAAY,CAAC,CAAC;AAElD,IAAA,UAAU,CAAS;AAEnB,IAAA,WAAW,GAAG,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC;;AAGvC,IAAA,SAAS,GAAG,CAAC,IAAqB,KAAY;AAC5C,QAAA,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAChE,OAAO,MAAM,KAAK,IAAI,GAAG,EAAE,GAAG,MAAM,CAAC;AACvC,KAAC,CAAC;uGAZS,8BAA8B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA9B,8BAA8B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECjC3C,4sBAeA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDgBY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,8BAA8B,EAAA,UAAA,EAAA,CAAA;kBAN1C,SAAS;+BACE,oCAAoC,EAAA,OAAA,EAGrC,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,4sBAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AErB3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;;AAGG;MAOU,sBAAsB,CAAA;IACjC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAGA,cAAY,CAAC;uGAFf,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECjCnC,8bASA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDsBY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,2BAA2B,EAAA,OAAA,EAG5B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,8bAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;;AEA3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,mBAAmB,CAAA;IAC9B,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,IAAI,kBAAkB,CAAkBA,cAAY,CAAC,CAAC;AAEhD,IAAA,IAAI,CAAU;IAEjC,eAAe,GAAA;QACb,IAAI,CAAC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC;KAClC;IAED,UAAU,GAAA;AACR,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,GAAG,EAAE,CAAC;KAC3B;IAED,OAAO,GAAA;AACL,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,GAAGA,cAAY,CAAC;KACrC;uGAhBU,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,MAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,CAAA,MAAA,CAAA,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECrDhC,48BAsBA,ED6BY,MAAA,EAAA,CAAA,qEAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAA,eAAe,wWAmCd,YAAY,CAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,CAAA,SAAA,EAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAnCoC,aAAa,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAC,IAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,cAAA,EAAA,kBAAA,EAAA,qBAAA,EAAA,iBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAE,cAAc,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAE,EAAA,CAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,eAAA,CAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,UAAA,CAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,SAAA,CAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,aAAA,CAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,OAAA,CAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,MAAA,CAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,CAAA,MAAAA,EAAA,CAAA,YAAA,CAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE7E,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAN/B,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,uBAAuB,EAGxB,OAAA,EAAA,CAAC,eAAe,EAAE,UAAU,CAAC,MAAM,YAAY,CAAC,EAAE,aAAa,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,48BAAA,EAAA,MAAA,EAAA,CAAA,qEAAA,CAAA,EAAA,CAAA;8BAMtE,IAAI,EAAA,CAAA;sBAAtB,SAAS;uBAAC,MAAM,CAAA;;AAenB;;;AAGG;MAWU,YAAY,CAAA;AACW,IAAA,aAAa,CAA6B;AAChD,IAAA,OAAO,CAA0B;AAC9B,IAAA,UAAU,CAA0B;AACvC,IAAA,SAAS,CAAe;AAEf,IAAA,KAAK,CAAc;AAE/C,IAAA,OAAO,GAAG,KAAK,CAAC,QAAQ,EAAY,CAAC;AACrC,IAAA,UAAU,GAAG,KAAK,CAAC,QAAQ,EAAiB,CAAC;IAEtD,kBAAkB,GAAA;AAChB,QAAA,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,CAAC;AACzE,QAAA,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAC;AAC7D,QAAA,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,YAAY,IAAI,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC,CAAC;QACrF,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;KACzC;uGAhBU,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAZ,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,YAAY,EAIT,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,MAAA,EAAA,EAAA,OAAA,EAAA,EAAA,iBAAA,EAAA,SAAA,EAAA,UAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,iBAAA,EAAA,YAAA,EAAA,UAAA,EAAA,YAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,CAAA,EAAA,YAAA,EAAA,WAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAAA,YAAY,EAHT,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,eAAA,EAAA,SAAA,EAAA,eAAe,0CACf,SAAS,EAAA,EAAA,EAAA,YAAA,EAAA,YAAA,EAAA,SAAA,EACT,YAAY,EAAA,CAAA,EAAA,WAAA,EAAA,CAAA,EAAA,YAAA,EAAA,OAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAGlB,QAAQ,EE5FrB,WAAA,EAAA,IAAA,EAAA,MAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,qyBAqBA,EF+DY,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,mjBAAE,aAAa,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAF,IAAA,CAAA,aAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,eAAA,EAAA,OAAA,EAAA,UAAA,EAAA,uBAAA,EAAA,cAAA,CAAA,EAAA,QAAA,EAAA,CAAA,eAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE5B,YAAY,EAAA,UAAA,EAAA,CAAA;kBAVxB,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,eAAe,EAOhB,OAAA,EAAA,CAAC,cAAc,EAAE,aAAa,CAAC,EAAA,QAAA,EAAA,qyBAAA,EAAA,MAAA,EAAA,CAAA,8CAAA,CAAA,EAAA,CAAA;8BAGN,aAAa,EAAA,CAAA;sBAA9C,eAAe;uBAAC,eAAe,CAAA;gBACJ,OAAO,EAAA,CAAA;sBAAlC,eAAe;uBAAC,SAAS,CAAA;gBACK,UAAU,EAAA,CAAA;sBAAxC,eAAe;uBAAC,YAAY,CAAA;gBACD,SAAS,EAAA,CAAA;sBAApC,YAAY;uBAAC,YAAY,CAAA;gBAEW,KAAK,EAAA,CAAA;sBAAzC,SAAS;AAAC,gBAAA,IAAA,EAAA,CAAA,QAAQ,EAAE,EAAC,MAAM,EAAE,IAAI,EAAC,CAAA;;;AGxFrC;;AAEG;MAOU,uBAAuB,CAAA;IAClC,OAAO,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IAC7D,UAAU,GAAGD,cAAY,CAAC;AAE1B,IAAA,IAAI,CAAC,KAA4B,EAAA;AAC/B,QAAA,eAAe,CAAC,IAAI,CAAC,OAAO,EAAE,KAAK,CAAC,aAAa,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;KACxE;uGANU,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,qFCbpC,ykCA6BA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDlBY,cAAc,EAAE,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,WAAW,8fAAE,OAAO,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,aAAA,EAAA,iBAAA,EAAA,oBAAA,EAAA,iBAAA,EAAA,mBAAA,EAAA,yBAAA,EAAA,iBAAA,EAAA,0BAAA,EAAA,qBAAA,EAAA,yBAAA,EAAA,cAAA,CAAA,EAAA,OAAA,EAAA,CAAA,gBAAA,EAAA,iBAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,eAAA,EAAA,gBAAA,EAAA,cAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEnC,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,2BAA2B,WAG5B,CAAC,cAAc,EAAE,WAAW,EAAE,OAAO,CAAC,EAAA,QAAA,EAAA,ykCAAA,EAAA,MAAA,EAAA,CAAA,8BAAA,CAAA,EAAA,CAAA;;AAkBjD,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D;;AE9BD,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,uBAAuB,CAAA;IAClC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAGA,cAAY,CAAC;uGAFf,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChCpC,+lCA6BA,EAAA,MAAA,EAAA,CAAA,uCAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDCY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,uDAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBANnC,SAAS;+BACE,4BAA4B,EAAA,OAAA,EAG7B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,+lCAAA,EAAA,MAAA,EAAA,CAAA,uCAAA,CAAA,EAAA,CAAA;;;AE3B3B;;AAEG;MAOU,mBAAmB,CAAA;IAC9B,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG;AACX,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,QAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,QAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;KAC5D,CAAC;uGAbS,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAnB,mBAAmB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECZhC,wwCA6BA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDnBY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,SAAS;+BACE,uBAAuB,EAAA,OAAA,EAExB,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,wwCAAA,EAAA,CAAA;;;AEN3B,MAAMA,cAAY,GAAG;IACnB,EAAC,IAAI,EAAE,UAAU,EAAC;IAClB,EAAC,IAAI,EAAE,QAAQ,EAAC;IAChB,EAAC,IAAI,EAAE,SAAS,EAAC;IACjB,EAAC,IAAI,EAAE,WAAW,EAAC;IACnB,EAAC,IAAI,EAAE,OAAO,EAAC;IACf,EAAC,IAAI,EAAE,QAAQ,EAAC;IAChB,EAAC,IAAI,EAAE,UAAU,EAAC;IAClB,EAAC,IAAI,EAAE,QAAQ,EAAC;IAChB,EAAC,IAAI,EAAE,UAAU,EAAC;IAClB,EAAC,IAAI,EAAE,MAAM,EAAC;CACf,CAAC;AAEF;;AAEG;MAMU,uBAAuB,CAAA;AAClC,IAAA,gBAAgB,GAAa,CAAC,MAAM,CAAC,CAAC;IACtC,UAAU,GAAGA,cAAY,CAAC;uGAFf,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAvB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,ECzBpC,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,4BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,mdASA,EDcY,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,cAAc,sgCAAE,eAAe,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,SAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,MAAA,EAAA,CAAA,gBAAA,EAAA,oBAAA,EAAA,mBAAA,EAAA,iBAAA,EAAA,oBAAA,EAAA,mBAAA,EAAA,kBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE9B,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,4BAA4B,EAE7B,OAAA,EAAA,CAAC,cAAc,EAAE,eAAe,CAAC,EAAA,QAAA,EAAA,mdAAA,EAAA,CAAA;;;AEb5C,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,yBAAyB,CAAA;IACpC,gBAAgB,GAAa,CAAC,eAAe,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,CAAC,CAAC;IAC1F,UAAU,GAAGA,cAAY,CAAC;uGAFf,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAzB,yBAAyB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChCtC,omCA6BA,EAAA,MAAA,EAAA,CAAA,2YAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDCY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBANrC,SAAS;+BACE,8BAA8B,EAAA,OAAA,EAG/B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,omCAAA,EAAA,MAAA,EAAA,CAAA,2YAAA,CAAA,EAAA,CAAA;;;AEpB3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,sBAAsB,CAAA;IACjC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAGA,cAAY,CAAC;AAC1B,IAAA,WAAW,GAAG,IAAI,GAAG,EAAmB,CAAC;uGAH9B,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAtB,sBAAsB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,2BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChCnC,66CAiDA,EAAA,MAAA,EAAA,CAAA,qSAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDnBY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBANlC,SAAS;+BACE,2BAA2B,EAAA,OAAA,EAG5B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,66CAAA,EAAA,MAAA,EAAA,CAAA,qSAAA,CAAA,EAAA,CAAA;;;AEnB3B,MAAMA,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,4BAA4B,CAAA;IACvC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,UAAU,GAAG,CAAC,GAAGA,cAAY,CAAC,CAAC;AAEV,IAAA,KAAK,CAA4B;IAEtD,OAAO,GAAA;AACL,QAAA,MAAM,kBAAkB,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAGA,cAAY,CAAC,MAAM,CAAC,CAAC;QAC3E,IAAI,CAAC,UAAU,CAAC,IAAI,CAACA,cAAY,CAAC,kBAAkB,CAAC,CAAC,CAAC;AACvD,QAAA,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC;KACzB;IAED,UAAU,GAAA;AACR,QAAA,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;AACtB,QAAA,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC;KACzB;uGAfU,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAA5B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,4BAA4B,mIAI5B,QAAQ,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,ECrCrB,63CAyCA,EDVY,MAAA,EAAA,CAAA,qJAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,6TAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE9B,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBANxC,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,kCAAkC,EAGnC,OAAA,EAAA,CAAC,eAAe,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,63CAAA,EAAA,MAAA,EAAA,CAAA,qJAAA,CAAA,EAAA,CAAA;8BAMrB,KAAK,EAAA,CAAA;sBAAzB,SAAS;uBAAC,QAAQ,CAAA;;;AExBrB,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,iCAAiC,CAAA;IAC5C,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AACtE,IAAA,aAAa,GAAG,CAAC,GAAGA,cAAY,CAAC,CAAC;IAElC,UAAU,GAAG,IAAI,iBAAiB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;IAEvD,OAAO,GAAA;AACL,QAAA,MAAM,kBAAkB,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAGA,cAAY,CAAC,MAAM,CAAC,CAAC;AAC3E,QAAA,IAAI,CAAC,aAAa,GAAG,CAAC,GAAG,IAAI,CAAC,aAAa,EAAEA,cAAY,CAAC,kBAAkB,CAAC,CAAC,CAAC;QAC/E,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC7C;IAED,UAAU,GAAA;AACR,QAAA,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;QACrD,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;KAC7C;uGAfU,iCAAiC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAjC,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,iCAAiC,ECnC9C,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,uCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,g4CAyCA,EDRY,MAAA,EAAA,CAAA,qJAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EAAA,eAAe,6TAAE,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAE9B,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAN7C,SAAS;AACE,YAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,uCAAuC,EAGxC,OAAA,EAAA,CAAC,eAAe,EAAE,cAAc,CAAC,EAAA,QAAA,EAAA,g4CAAA,EAAA,MAAA,EAAA,CAAA,qJAAA,CAAA,EAAA,CAAA;;AAoB5C,MAAM,iBAAkB,SAAQ,UAA2B,CAAA;AACjD,IAAA,WAAW,GAAG,IAAI,aAAa,EAAqB,CAAC;AAE7D,IAAA,WAAA,CAAY,WAA8B,EAAA;AACxC,QAAA,KAAK,EAAE,CAAC;AACR,QAAA,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;KAC3B;IAED,OAAO,GAAA;QACL,OAAO,IAAI,CAAC,WAAW,CAAC;KACzB;AAED,IAAA,UAAU,MAAK;AAEf,IAAA,OAAO,CAAC,IAAuB,EAAA;AAC7B,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC7B;AACF;;AE5DD,MAAMD,cAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,4BAA4B,CAAA;AACvC,IAAA,OAAO,GAAG;AACR,QAAA;AACE,YAAA,SAAS,EAAE,UAAU;AACrB,YAAA,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,CAAC,OAAwB,KAAK,CAAG,EAAA,OAAO,CAAC,QAAQ,CAAE,CAAA;AAC1D,SAAA;AACD,QAAA;AACE,YAAA,SAAS,EAAE,MAAM;AACjB,YAAA,MAAM,EAAE,MAAM;YACd,IAAI,EAAE,CAAC,OAAwB,KAAK,CAAG,EAAA,OAAO,CAAC,IAAI,CAAE,CAAA;AACtD,SAAA;AACD,QAAA;AACE,YAAA,SAAS,EAAE,QAAQ;AACnB,YAAA,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,CAAC,OAAwB,KAAK,CAAG,EAAA,OAAO,CAAC,MAAM,CAAE,CAAA;AACxD,SAAA;AACD,QAAA;AACE,YAAA,SAAS,EAAE,QAAQ;AACnB,YAAA,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,CAAC,OAAwB,KAAK,CAAG,EAAA,OAAO,CAAC,MAAM,CAAE,CAAA;AACxD,SAAA;KACF,CAAC;IACF,UAAU,GAAGA,cAAY,CAAC;AAC1B,IAAA,gBAAgB,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC;uGAxB3C,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAA5B,4BAA4B,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,iCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChCzC,yhBAeA,EAAA,MAAA,EAAA,CAAA,oCAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDeY,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBANxC,SAAS;+BACE,iCAAiC,EAAA,OAAA,EAGlC,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,yhBAAA,EAAA,MAAA,EAAA,CAAA,oCAAA,CAAA,EAAA,CAAA;;;AEpB3B,MAAM,YAAY,GAAsB;AACtC,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AAC5D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,WAAW,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAC;AAC9D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAC;AACzD,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC3D,IAAA,EAAC,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAC;AAC7D,IAAA,EAAC,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAC;CAC5D,CAAC;AAEF;;AAEG;MAOU,wBAAwB,CAAA;IACnC,gBAAgB,GAAa,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACtE,UAAU,GAAG,YAAY,CAAC;uGAFf,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;2FAAxB,wBAAwB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChCrC,8nCA2BY,EAAA,MAAA,EAAA,CAAA,2HAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,UAAA,EAAA,IAAA,EDGA,cAAc,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,QAAA,EAAA,QAAA,EAAA,6BAAA,EAAA,QAAA,EAAA,CAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,mBAAA,EAAA,MAAA,EAAA,CAAA,iBAAA,EAAA,uBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,QAAA,EAAA,aAAA,EAAA,MAAA,EAAA,CAAA,kBAAA,EAAA,eAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,sCAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,YAAA,EAAA,QAAA,EAAA,oCAAA,EAAA,QAAA,EAAA,CAAA,cAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,MAAA,EAAA,QAAA,EAAA,sBAAA,EAAA,QAAA,EAAA,CAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA;;2FAEb,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBANpC,SAAS;+BACE,8BAA8B,EAAA,OAAA,EAG/B,CAAC,cAAc,CAAC,EAAA,QAAA,EAAA,8nCAAA,EAAA,MAAA,EAAA,CAAA,2HAAA,CAAA,EAAA,CAAA;;;AE9B3B;;AAEG;;;;"} \ No newline at end of file +{"version":3,"file":"table.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-flex-basic/table-flex-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-flex-basic/table-flex-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-basic/table-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-basic/table-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-columns/table-dynamic-columns-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-columns/table-dynamic-columns-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-expandable-rows/table-expandable-rows-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-expandable-rows/table-expandable-rows-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-filtering/table-filtering-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-filtering/table-filtering-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-footer-row/table-footer-row-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-footer-row/table-footer-row-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-http/table-http-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-http/table-http-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-multiple-header-footer/table-multiple-header-footer-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-multiple-header-footer/table-multiple-header-footer-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-multiple-row-template/table-multiple-row-template-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-multiple-row-template/table-multiple-row-template-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-overview/table-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-overview/table-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-pagination/table-pagination-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-pagination/table-pagination-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-row-context/table-row-context-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-row-context/table-row-context-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-selection/table-selection-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-selection/table-selection-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sorting/table-sorting-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sorting/table-sorting-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-columns/table-sticky-columns-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-columns/table-sticky-columns-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-complex-flex/table-sticky-complex-flex-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-complex/table-sticky-complex-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-complex/table-sticky-complex-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-footer/table-sticky-footer-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-footer/table-sticky-footer-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-header/table-sticky-header-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-sticky-header/table-sticky-header-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-text-column-advanced/table-text-column-advanced-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-text-column-advanced/table-text-column-advanced-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-text-column/table-text-column-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-text-column/table-text-column-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-wrapped/table-wrapped-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-wrapped/table-wrapped-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-wrapped/wrapper-table.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-reorderable/table-reorderable-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-reorderable/table-reorderable-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-recycle-rows/table-recycle-rows-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-recycle-rows/table-recycle-rows-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-harness/table-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-harness/table-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-with-ripples/table-with-ripples-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-with-ripples/table-with-ripples-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-column-styling/table-column-styling-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-column-styling/table-column-styling-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-row-binding/table-row-binding-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-row-binding/table-row-binding-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-array-data/table-dynamic-array-data-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-array-data/table-dynamic-array-data-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-dynamic-observable-data/table-dynamic-observable-data-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-generated-columns/table-generated-columns-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-generated-columns/table-generated-columns-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-flex-large-row/table-flex-large-row-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/table/table-flex-large-row/table-flex-large-row-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of `` (uses display flex)\n */\n@Component({\n selector: 'table-flex-basic-example',\n styleUrl: 'table-flex-basic-example.css',\n templateUrl: 'table-flex-basic-example.html',\n imports: [MatTableModule],\n})\nexport class TableFlexBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Basic use of ``\n */\n@Component({\n selector: 'table-basic-example',\n styleUrl: 'table-basic-example.css',\n templateUrl: 'table-basic-example.html',\n imports: [MatTableModule],\n})\nexport class TableBasicExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","
    \n\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table dynamically changing the columns displayed\n */\n@Component({\n selector: 'table-dynamic-columns-example',\n styleUrl: 'table-dynamic-columns-example.css',\n templateUrl: 'table-dynamic-columns-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicColumnsExample {\n displayedColumns: string[] = ['name', 'weight', 'symbol', 'position'];\n columnsToDisplay: string[] = this.displayedColumns.slice();\n data: PeriodicElement[] = ELEMENT_DATA;\n\n addColumn() {\n const randomColumn = Math.floor(Math.random() * this.displayedColumns.length);\n this.columnsToDisplay.push(this.displayedColumns[randomColumn]);\n }\n\n removeColumn() {\n if (this.columnsToDisplay.length) {\n this.columnsToDisplay.pop();\n }\n }\n\n shuffle() {\n let currentIndex = this.columnsToDisplay.length;\n while (0 !== currentIndex) {\n let randomIndex = Math.floor(Math.random() * currentIndex);\n currentIndex -= 1;\n\n // Swap\n let temp = this.columnsToDisplay[currentIndex];\n this.columnsToDisplay[currentIndex] = this.columnsToDisplay[randomIndex];\n this.columnsToDisplay[randomIndex] = temp;\n }\n }\n}\n","\n\n\n\n\n @for (column of displayedColumns; track column) {\n \n \n \n \n }\n\n \n \n
    {{column}} {{element[column]}}
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with expandable rows\n */\n@Component({\n selector: 'table-expandable-rows-example',\n styleUrl: 'table-expandable-rows-example.css',\n templateUrl: 'table-expandable-rows-example.html',\n imports: [MatTableModule, MatButtonModule, MatIconModule],\n})\nexport class TableExpandableRowsExample {\n dataSource = ELEMENT_DATA;\n columnsToDisplay = ['name', 'weight', 'symbol', 'position'];\n columnsToDisplayWithExpand = [...this.columnsToDisplay, 'expand'];\n expandedElement: PeriodicElement | null;\n\n /** Checks whether an element is expanded. */\n isExpanded(element: PeriodicElement) {\n return this.expandedElement === element;\n }\n\n /** Toggles the expanded state of an element. */\n toggle(element: PeriodicElement) {\n this.expandedElement = this.isExpanded(element) ? null : element;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n description: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {\n position: 1,\n name: 'Hydrogen',\n weight: 1.0079,\n symbol: 'H',\n description: `Hydrogen is a chemical element with symbol H and atomic number 1. With a standard\n atomic weight of 1.008, hydrogen is the lightest element on the periodic table.`,\n },\n {\n position: 2,\n name: 'Helium',\n weight: 4.0026,\n symbol: 'He',\n description: `Helium is a chemical element with symbol He and atomic number 2. It is a\n colorless, odorless, tasteless, non-toxic, inert, monatomic gas, the first in the noble gas\n group in the periodic table. Its boiling point is the lowest among all the elements.`,\n },\n {\n position: 3,\n name: 'Lithium',\n weight: 6.941,\n symbol: 'Li',\n description: `Lithium is a chemical element with symbol Li and atomic number 3. It is a soft,\n silvery-white alkali metal. Under standard conditions, it is the lightest metal and the\n lightest solid element.`,\n },\n {\n position: 4,\n name: 'Beryllium',\n weight: 9.0122,\n symbol: 'Be',\n description: `Beryllium is a chemical element with symbol Be and atomic number 4. It is a\n relatively rare element in the universe, usually occurring as a product of the spallation of\n larger atomic nuclei that have collided with cosmic rays.`,\n },\n {\n position: 5,\n name: 'Boron',\n weight: 10.811,\n symbol: 'B',\n description: `Boron is a chemical element with symbol B and atomic number 5. Produced entirely\n by cosmic ray spallation and supernovae and not by stellar nucleosynthesis, it is a\n low-abundance element in the Solar system and in the Earth's crust.`,\n },\n {\n position: 6,\n name: 'Carbon',\n weight: 12.0107,\n symbol: 'C',\n description: `Carbon is a chemical element with symbol C and atomic number 6. It is nonmetallic\n and tetravalent—making four electrons available to form covalent chemical bonds. It belongs\n to group 14 of the periodic table.`,\n },\n {\n position: 7,\n name: 'Nitrogen',\n weight: 14.0067,\n symbol: 'N',\n description: `Nitrogen is a chemical element with symbol N and atomic number 7. It was first\n discovered and isolated by Scottish physician Daniel Rutherford in 1772.`,\n },\n {\n position: 8,\n name: 'Oxygen',\n weight: 15.9994,\n symbol: 'O',\n description: `Oxygen is a chemical element with symbol O and atomic number 8. It is a member of\n the chalcogen group on the periodic table, a highly reactive nonmetal, and an oxidizing\n agent that readily forms oxides with most elements as well as with other compounds.`,\n },\n {\n position: 9,\n name: 'Fluorine',\n weight: 18.9984,\n symbol: 'F',\n description: `Fluorine is a chemical element with symbol F and atomic number 9. It is the\n lightest halogen and exists as a highly toxic pale yellow diatomic gas at standard\n conditions.`,\n },\n {\n position: 10,\n name: 'Neon',\n weight: 20.1797,\n symbol: 'Ne',\n description: `Neon is a chemical element with symbol Ne and atomic number 10. It is a noble gas.\n Neon is a colorless, odorless, inert monatomic gas under standard conditions, with about\n two-thirds the density of air.`,\n },\n];\n","\n @for (column of columnsToDisplay; track column) {\n \n \n \n \n }\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n
    {{column}}{{element[column]}} \n \n keyboard_arrow_down\n \n \n
    \n
    \n
    \n
    {{element.position}}
    \n
    {{element.symbol}}
    \n
    {{element.name}}
    \n
    {{element.weight}}
    \n
    \n
    \n {{element.description}}\n -- Wikipedia \n
    \n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with filtering\n */\n@Component({\n selector: 'table-filtering-example',\n styleUrl: 'table-filtering-example.css',\n templateUrl: 'table-filtering-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatTableModule],\n})\nexport class TableFilteringExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n }\n}\n","\n Filter\n \n\n\n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    No data matching the filter \"{{input.value}}\"
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\ninterface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Footer row table\n */\n@Component({\n selector: 'table-footer-row-example',\n styleUrl: 'table-footer-row-example.css',\n templateUrl: 'table-footer-row-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableFooterRowExample {\n displayedColumns: string[] = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n","import {HttpClient} from '@angular/common/http';\nimport {Component, ViewChild, AfterViewInit, inject} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSort, MatSortModule, SortDirection} from '@angular/material/sort';\nimport {merge, Observable, of as observableOf} from 'rxjs';\nimport {catchError, map, startWith, switchMap} from 'rxjs/operators';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatProgressSpinnerModule} from '@angular/material/progress-spinner';\nimport {DatePipe} from '@angular/common';\n\n/**\n * @title Table retrieving data through HTTP\n */\n@Component({\n selector: 'table-http-example',\n styleUrl: 'table-http-example.css',\n templateUrl: 'table-http-example.html',\n imports: [MatProgressSpinnerModule, MatTableModule, MatSortModule, MatPaginatorModule, DatePipe],\n})\nexport class TableHttpExample implements AfterViewInit {\n private _httpClient = inject(HttpClient);\n\n displayedColumns: string[] = ['created', 'state', 'number', 'title'];\n exampleDatabase: ExampleHttpDatabase | null;\n data: GithubIssue[] = [];\n\n resultsLength = 0;\n isLoadingResults = true;\n isRateLimitReached = false;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n ngAfterViewInit() {\n this.exampleDatabase = new ExampleHttpDatabase(this._httpClient);\n\n // If the user changes the sort order, reset back to the first page.\n this.sort.sortChange.subscribe(() => (this.paginator.pageIndex = 0));\n\n merge(this.sort.sortChange, this.paginator.page)\n .pipe(\n startWith({}),\n switchMap(() => {\n this.isLoadingResults = true;\n return this.exampleDatabase!.getRepoIssues(\n this.sort.active,\n this.sort.direction,\n this.paginator.pageIndex,\n ).pipe(catchError(() => observableOf(null)));\n }),\n map(data => {\n // Flip flag to show that loading has finished.\n this.isLoadingResults = false;\n this.isRateLimitReached = data === null;\n\n if (data === null) {\n return [];\n }\n\n // Only refresh the result length if there is new data. In case of rate\n // limit errors, we do not want to reset the paginator to zero, as that\n // would prevent users from re-triggering requests.\n this.resultsLength = data.total_count;\n return data.items;\n }),\n )\n .subscribe(data => (this.data = data));\n }\n}\n\nexport interface GithubApi {\n items: GithubIssue[];\n total_count: number;\n}\n\nexport interface GithubIssue {\n created_at: string;\n number: string;\n state: string;\n title: string;\n}\n\n/** An example database that the data source uses to retrieve data for the table. */\nexport class ExampleHttpDatabase {\n constructor(private _httpClient: HttpClient) {}\n\n getRepoIssues(sort: string, order: SortDirection, page: number): Observable {\n const href = 'https://api.github.com/search/issues';\n const requestUrl = `${href}?q=repo:angular/components&sort=${sort}&order=${order}&page=${\n page + 1\n }`;\n\n return this._httpClient.get(requestUrl);\n }\n}\n","
    \n @if (isLoadingResults || isRateLimitReached) {\n
    \n @if (isLoadingResults) {\n \n }\n @if (isRateLimitReached) {\n
    \n GitHub's API rate limit has been reached. It will be reset in one minute.\n
    \n }\n
    \n }\n\n
    \n\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    #{{row.number}}Title{{row.title}}State{{row.state}}\n Created\n {{row.created_at | date}}
    \n
    \n\n \n
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\ninterface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Table with multiple header and footer rows\n */\n@Component({\n selector: 'table-multiple-header-footer-example',\n styleUrl: 'table-multiple-header-footer-example.css',\n templateUrl: 'table-multiple-header-footer-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableMultipleHeaderFooterExample {\n displayedColumns: string[] = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \n\n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}} Name of the item purchased Cost of the item in USD \n Please note that the cost of items displayed are completely and totally made up.\n
    \n","import {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with multiple row template\n */\n@Component({\n selector: 'table-multiple-row-template-example',\n styleUrls: ['table-multiple-row-template-example.css'],\n templateUrl: 'table-multiple-row-template-example.html',\n imports: [MatTableModule],\n})\nexport class TableMultipleRowTemplateExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","
    \n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}\n Secondary row for the element {{element.name}}\n
    \n
    \n","import {AfterViewInit, Component, ViewChild} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatSort, MatSortModule} from '@angular/material/sort';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\nexport interface UserData {\n id: string;\n name: string;\n progress: string;\n fruit: string;\n}\n\n/** Constants used to fill up our data base. */\nconst FRUITS: string[] = [\n 'blueberry',\n 'lychee',\n 'kiwi',\n 'mango',\n 'peach',\n 'lime',\n 'pomegranate',\n 'pineapple',\n];\nconst NAMES: string[] = [\n 'Maia',\n 'Asher',\n 'Olivia',\n 'Atticus',\n 'Amelia',\n 'Jack',\n 'Charlotte',\n 'Theodore',\n 'Isla',\n 'Oliver',\n 'Isabella',\n 'Jasper',\n 'Cora',\n 'Levi',\n 'Violet',\n 'Arthur',\n 'Mia',\n 'Thomas',\n 'Elizabeth',\n];\n\n/**\n * @title Data table with sorting, pagination, and filtering.\n */\n@Component({\n selector: 'table-overview-example',\n styleUrl: 'table-overview-example.css',\n templateUrl: 'table-overview-example.html',\n imports: [MatFormFieldModule, MatInputModule, MatTableModule, MatSortModule, MatPaginatorModule],\n})\nexport class TableOverviewExample implements AfterViewInit {\n displayedColumns: string[] = ['id', 'name', 'progress', 'fruit'];\n dataSource: MatTableDataSource;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor() {\n // Create 100 users\n const users = Array.from({length: 100}, (_, k) => createNewUser(k + 1));\n\n // Assign the data to the data source for the table to render\n this.dataSource = new MatTableDataSource(users);\n }\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n applyFilter(event: Event) {\n const filterValue = (event.target as HTMLInputElement).value;\n this.dataSource.filter = filterValue.trim().toLowerCase();\n\n if (this.dataSource.paginator) {\n this.dataSource.paginator.firstPage();\n }\n }\n}\n\n/** Builds and returns a new User. */\nfunction createNewUser(id: number): UserData {\n const name =\n NAMES[Math.round(Math.random() * (NAMES.length - 1))] +\n ' ' +\n NAMES[Math.round(Math.random() * (NAMES.length - 1))].charAt(0) +\n '.';\n\n return {\n id: id.toString(),\n name: name,\n progress: Math.round(Math.random() * 100).toString(),\n fruit: FRUITS[Math.round(Math.random() * (FRUITS.length - 1))],\n };\n}\n","\n Filter\n \n\n\n
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n
    ID {{row.id}} Progress {{row.progress}}% Name {{row.name}} Fruit {{row.fruit}}
    No data matching the filter \"{{input.value}}\"
    \n\n \n
    \n\n","import {AfterViewInit, Component, ViewChild} from '@angular/core';\nimport {MatPaginator, MatPaginatorModule} from '@angular/material/paginator';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with pagination\n */\n@Component({\n selector: 'table-pagination-example',\n styleUrl: 'table-pagination-example.css',\n templateUrl: 'table-pagination-example.html',\n imports: [MatTableModule, MatPaginatorModule],\n})\nexport class TablePaginationExample implements AfterViewInit {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n\n ngAfterViewInit() {\n this.dataSource.paginator = this.paginator;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n {position: 11, name: 'Sodium', weight: 22.9897, symbol: 'Na'},\n {position: 12, name: 'Magnesium', weight: 24.305, symbol: 'Mg'},\n {position: 13, name: 'Aluminum', weight: 26.9815, symbol: 'Al'},\n {position: 14, name: 'Silicon', weight: 28.0855, symbol: 'Si'},\n {position: 15, name: 'Phosphorus', weight: 30.9738, symbol: 'P'},\n {position: 16, name: 'Sulfur', weight: 32.065, symbol: 'S'},\n {position: 17, name: 'Chlorine', weight: 35.453, symbol: 'Cl'},\n {position: 18, name: 'Argon', weight: 39.948, symbol: 'Ar'},\n {position: 19, name: 'Potassium', weight: 39.0983, symbol: 'K'},\n {position: 20, name: 'Calcium', weight: 40.078, symbol: 'Ca'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table showing each row context properties.\n */\n@Component({\n selector: 'table-row-context-example',\n styleUrl: 'table-row-context-example.css',\n templateUrl: 'table-row-context-example.html',\n imports: [MatTableModule],\n})\nexport class TableRowContextExample {\n displayedColumns: string[] = ['$implicit', 'index', 'count', 'first', 'last', 'even', 'odd'];\n data: string[] = ['one', 'two', 'three', 'four', 'five'];\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    $implicit {{data}} index {{index}} count {{count}} first {{first}} last {{last}} even {{even}} odd {{odd}}
    \n","import {SelectionModel} from '@angular/cdk/collections';\nimport {Component} from '@angular/core';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with selection\n */\n@Component({\n selector: 'table-selection-example',\n styleUrl: 'table-selection-example.css',\n templateUrl: 'table-selection-example.html',\n imports: [MatTableModule, MatCheckboxModule],\n})\nexport class TableSelectionExample {\n displayedColumns: string[] = ['select', 'position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n selection = new SelectionModel(true, []);\n\n /** Whether the number of selected elements matches the total number of rows. */\n isAllSelected() {\n const numSelected = this.selection.selected.length;\n const numRows = this.dataSource.data.length;\n return numSelected === numRows;\n }\n\n /** Selects all rows if they are not all selected; otherwise clear selection. */\n toggleAllRows() {\n if (this.isAllSelected()) {\n this.selection.clear();\n return;\n }\n\n this.selection.select(...this.dataSource.data);\n }\n\n /** The label for the checkbox on the passed row */\n checkboxLabel(row?: PeriodicElement): string {\n if (!row) {\n return `${this.isAllSelected() ? 'deselect' : 'select'} all`;\n }\n return `${this.selection.isSelected(row) ? 'deselect' : 'select'} row ${row.position + 1}`;\n }\n}\n","\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    \n \n \n \n \n \n No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {LiveAnnouncer} from '@angular/cdk/a11y';\nimport {AfterViewInit, Component, ViewChild, inject} from '@angular/core';\nimport {MatSort, Sort, MatSortModule} from '@angular/material/sort';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n/**\n * @title Table with sorting\n */\n@Component({\n selector: 'table-sorting-example',\n styleUrl: 'table-sorting-example.css',\n templateUrl: 'table-sorting-example.html',\n imports: [MatTableModule, MatSortModule],\n})\nexport class TableSortingExample implements AfterViewInit {\n private _liveAnnouncer = inject(LiveAnnouncer);\n\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild(MatSort) sort: MatSort;\n\n ngAfterViewInit() {\n this.dataSource.sort = this.sort;\n }\n\n /** Announce the change in sort state for assistive technology. */\n announceSortChange(sortState: Sort) {\n // This example uses English messages. If your application supports\n // multiple language, you would internationalize these strings.\n // Furthermore, you can customize the message to add additional\n // details about the values being sorted.\n if (sortState.direction) {\n this._liveAnnouncer.announce(`Sorted ${sortState.direction}ending`);\n } else {\n this._liveAnnouncer.announce('Sorting cleared');\n }\n }\n}\n","\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    \n No.\n {{element.position}} \n Name\n {{element.name}} \n Weight\n {{element.weight}} \n Symbol\n {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with sticky columns\n */\n@Component({\n selector: 'table-sticky-columns-example',\n styleUrl: 'table-sticky-columns-example.css',\n templateUrl: 'table-sticky-columns-example.html',\n imports: [MatTableModule, MatIconModule],\n})\nexport class TableStickyColumnsExample {\n displayedColumns = [\n 'name',\n 'position',\n 'weight',\n 'symbol',\n 'position',\n 'weight',\n 'symbol',\n 'star',\n ];\n dataSource = ELEMENT_DATA;\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    Name {{element.name}} No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}  \n more_vert\n
    \n
    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleGroup, MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Flex-layout tables with toggle-able sticky headers, footers, and columns\n */\n@Component({\n selector: 'table-sticky-complex-flex-example',\n styleUrl: 'table-sticky-complex-flex-example.css',\n templateUrl: 'table-sticky-complex-flex-example.html',\n imports: [MatButtonModule, MatButtonToggleModule, MatTableModule],\n})\nexport class TableStickyComplexFlexExample {\n displayedColumns: string[] = [];\n dataSource = ELEMENT_DATA;\n\n tables = [0];\n\n constructor() {\n this.displayedColumns.length = 24;\n this.displayedColumns.fill('filler');\n\n // The first two columns should be position and name; the last two columns: weight, symbol\n this.displayedColumns[0] = 'position';\n this.displayedColumns[1] = 'name';\n this.displayedColumns[22] = 'weight';\n this.displayedColumns[23] = 'symbol';\n }\n\n /** Whether the button toggle group contains the id as an active value. */\n isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string) {\n return (buttonToggleGroup.value || []).indexOf(id) !== -1;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n Position \n {{element.position}} \n Position Footer \n \n\n \n Name \n {{element.name}} \n Name Footer \n \n\n \n Weight \n {{element.weight}} \n Weight Footer \n \n\n \n Symbol \n {{element.symbol}} \n Symbol Footer \n \n\n \n Filler header cell \n Filler data cell \n Filler footer cell \n \n\n \n \n\n \n\n \n \n \n }\n
    \n","import {Component} from '@angular/core';\nimport {MatButtonToggleGroup, MatButtonToggleModule} from '@angular/material/button-toggle';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tables with toggle-able sticky headers, footers, and columns\n */\n@Component({\n selector: 'table-sticky-complex-example',\n styleUrl: 'table-sticky-complex-example.css',\n templateUrl: 'table-sticky-complex-example.html',\n imports: [MatButtonModule, MatButtonToggleModule, MatTableModule],\n})\nexport class TableStickyComplexExample {\n displayedColumns: string[] = [];\n dataSource = ELEMENT_DATA;\n\n tables = [0];\n\n constructor() {\n this.displayedColumns.length = 24;\n this.displayedColumns.fill('filler');\n\n // The first two columns should be position and name; the last two columns: weight, symbol\n this.displayedColumns[0] = 'position';\n this.displayedColumns[1] = 'name';\n this.displayedColumns[22] = 'weight';\n this.displayedColumns[23] = 'symbol';\n }\n\n /** Whether the button toggle group contains the id as an active value. */\n isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string) {\n return (buttonToggleGroup.value || []).indexOf(id) !== -1;\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n \n
    \n\n
    \n Sticky Headers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Footers:\n \n Row 1 \n Row 2 \n \n
    \n\n
    \n Sticky Columns:\n \n Position \n Name \n Weight \n Symbol \n \n
    \n\n
    \n @for (table of tables; track table) {\n \n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n\n \n\n \n \n
    Position {{element.position}} Position Footer Name {{element.name}} Name Footer Weight {{element.weight}} Weight Footer Symbol {{element.symbol}} Symbol Footer Filler header cell Filler data cell Filler footer cell
    \n }\n
    \n","import {Component} from '@angular/core';\nimport {CurrencyPipe} from '@angular/common';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface Transaction {\n item: string;\n cost: number;\n}\n\n/**\n * @title Table with a sticky footer\n */\n@Component({\n selector: 'table-sticky-footer-example',\n styleUrl: 'table-sticky-footer-example.css',\n templateUrl: 'table-sticky-footer-example.html',\n imports: [MatTableModule, CurrencyPipe],\n})\nexport class TableStickyFooterExample {\n displayedColumns = ['item', 'cost'];\n transactions: Transaction[] = [\n {item: 'Beach ball', cost: 4},\n {item: 'Towel', cost: 5},\n {item: 'Frisbee', cost: 2},\n {item: 'Sunscreen', cost: 4},\n {item: 'Cooler', cost: 25},\n {item: 'Swim suit', cost: 15},\n ];\n\n /** Gets the total cost of all transactions. */\n getTotalCost() {\n return this.transactions.map(t => t.cost).reduce((acc, value) => acc + value, 0);\n }\n}\n","
    \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n
    Item {{transaction.item}} Total Cost {{transaction.cost | currency}} {{getTotalCost() | currency}}
    \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with sticky header\n */\n@Component({\n selector: 'table-sticky-header-example',\n styleUrl: 'table-sticky-header-example.css',\n templateUrl: 'table-sticky-header-example.html',\n imports: [MatTableModule],\n})\nexport class TableStickyHeaderExample {\n displayedColumns = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","
    \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n
    \n","import {Component} from '@angular/core';\nimport {DecimalPipe} from '@angular/common';\nimport {MatTableDataSource, MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Use of 'mat-text-column' with various configurations of the interface.\n */\n@Component({\n selector: 'table-text-column-advanced-example',\n styleUrl: 'table-text-column-advanced-example.css',\n templateUrl: 'table-text-column-advanced-example.html',\n imports: [MatTableModule],\n})\nexport class TableTextColumnAdvancedExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n headerText: string;\n\n decimalPipe = new DecimalPipe('en-US');\n\n /** Data accessor function that transforms the weight value to have at most 2 decimal digits. */\n getWeight = (data: PeriodicElement): string => {\n const result = this.decimalPipe.transform(data.weight, '1.0-2');\n return result === null ? '' : result;\n };\n}\n","\n \n\n \n \n\n \n \n\n \n \n\n \n \n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Use of `mat-text-column` which can be used for simple columns that only need to display\n * a text value for the header and cells.\n */\n@Component({\n selector: 'table-text-column-example',\n styleUrl: 'table-text-column-example.css',\n templateUrl: 'table-text-column-example.html',\n imports: [MatTableModule],\n})\nexport class TableTextColumnExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n\n \n \n
    \n","import {DataSource} from '@angular/cdk/collections';\nimport {\n AfterContentInit,\n Component,\n ContentChildren,\n AfterViewInit,\n QueryList,\n ViewChild,\n ContentChild,\n forwardRef,\n input,\n} from '@angular/core';\nimport {MatSort, MatSortModule} from '@angular/material/sort';\nimport {\n MatColumnDef,\n MatHeaderRowDef,\n MatNoDataRow,\n MatRowDef,\n MatTable,\n MatTableDataSource,\n MatTableModule,\n} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table example that shows how to wrap a table component for definition and behavior reuse.\n */\n@Component({\n selector: 'table-wrapped-example',\n styleUrl: 'table-wrapped-example.css',\n templateUrl: 'table-wrapped-example.html',\n imports: [MatButtonModule, forwardRef(() => WrapperTable), MatSortModule, MatTableModule],\n})\nexport class TableWrappedExample implements AfterViewInit {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = new MatTableDataSource(ELEMENT_DATA);\n\n @ViewChild('sort') sort: MatSort;\n\n ngAfterViewInit() {\n this.dataSource.sort = this.sort;\n }\n\n clearTable() {\n this.dataSource.data = [];\n }\n\n addData() {\n this.dataSource.data = ELEMENT_DATA;\n }\n}\n\n/**\n * Table component that accepts column and row definitions in its content to be registered to the\n * table.\n */\n@Component({\n selector: 'wrapper-table',\n templateUrl: 'wrapper-table.html',\n styles: `\n table {\n width: 100%;\n }\n `,\n imports: [MatTableModule, MatSortModule],\n})\nexport class WrapperTable implements AfterContentInit {\n @ContentChildren(MatHeaderRowDef) headerRowDefs: QueryList;\n @ContentChildren(MatRowDef) rowDefs: QueryList>;\n @ContentChildren(MatColumnDef) columnDefs: QueryList;\n @ContentChild(MatNoDataRow) noDataRow: MatNoDataRow;\n\n @ViewChild(MatTable, {static: true}) table: MatTable;\n\n readonly columns = input.required();\n readonly dataSource = input.required>();\n\n ngAfterContentInit() {\n this.columnDefs.forEach(columnDef => this.table.addColumnDef(columnDef));\n this.rowDefs.forEach(rowDef => this.table.addRowDef(rowDef));\n this.headerRowDefs.forEach(headerRowDef => this.table.addHeaderRowDef(headerRowDef));\n this.table.setNoDataRow(this.noDataRow);\n }\n}\n","
    \n \n \n
    \n\n\n \n \n Name \n {{element.name}} \n \n\n \n \n \n\n \n \n No data\n \n\n","\n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n
    No. {{element.position}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {CdkDragDrop, CdkDrag, CdkDropList, moveItemInArray} from '@angular/cdk/drag-drop';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Table with re-orderable columns\n */\n@Component({\n selector: 'table-reorderable-example',\n templateUrl: './table-reorderable-example.html',\n styleUrl: './table-reorderable-example.css',\n imports: [MatTableModule, CdkDropList, CdkDrag],\n})\nexport class TableReorderableExample {\n columns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n\n drop(event: CdkDragDrop) {\n moveItemInArray(this.columns, event.previousIndex, event.currentIndex);\n }\n}\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n","\n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table that uses the recycle view repeater strategy.\n */\n@Component({\n selector: 'table-recycle-rows-example',\n styleUrl: 'table-recycle-rows-example.css',\n templateUrl: 'table-recycle-rows-example.html',\n imports: [MatTableModule],\n})\nexport class TableRecycleRowsExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\n/**\n * @title Testing with MatTableHarness\n */\n\n@Component({\n selector: 'table-harness-example',\n templateUrl: 'table-harness-example.html',\n imports: [MatTableModule],\n})\nexport class TableHarnessExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n ];\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n
    No.{{element.position}}Number of the elementName{{element.name}}Name of the elementWeight{{element.weight}}Weight of the elementSymbol{{element.symbol}}Symbol of the element
    \n","import {Component} from '@angular/core';\nimport {MatRippleModule} from '@angular/material/core';\nimport {MatTableModule} from '@angular/material/table';\n\nconst ELEMENT_DATA = [\n {name: 'Hydrogen'},\n {name: 'Helium'},\n {name: 'Lithium'},\n {name: 'Beryllium'},\n {name: 'Boron'},\n {name: 'Carbon'},\n {name: 'Nitrogen'},\n {name: 'Oxygen'},\n {name: 'Fluorine'},\n {name: 'Neon'},\n];\n\n/**\n * @title Tables with Material Design ripples.\n */\n@Component({\n selector: 'table-with-ripples-example',\n templateUrl: 'table-with-ripples-example.html',\n imports: [MatTableModule, MatRippleModule],\n})\nexport class TableWithRipplesExample {\n displayedColumns: string[] = ['name'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n Name \n {{element.name}} \n \n\n \n \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Styling columns using their auto-generated column names\n */\n@Component({\n selector: 'table-column-styling-example',\n styleUrl: 'table-column-styling-example.css',\n templateUrl: 'table-column-styling-example.html',\n imports: [MatTableModule],\n})\nexport class TableColumnStylingExample {\n displayedColumns: string[] = ['demo-position', 'demo-name', 'demo-weight', 'demo-symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No. {{element.position}} Name {{element.name}} Weight {{element.weight}} Symbol {{element.symbol}}
    \n\n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Binding event handlers and properties to the table rows.\n */\n@Component({\n selector: 'table-row-binding-example',\n styleUrl: 'table-row-binding-example.css',\n templateUrl: 'table-row-binding-example.html',\n imports: [MatTableModule],\n})\nexport class TableRowBindingExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n clickedRows = new Set();\n}\n","\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n\n
    \n

    \n Click Log\n

    \n
    \n\n@if (!clickedRows.size) {\n
    Clicked rows will be logged here
    \n}\n\n
      \n @for (clickedRow of clickedRows; track clickedRow) {\n
    • Clicked on {{clickedRow.name}}
    • \n }\n
    \n","import {Component, ViewChild} from '@angular/core';\nimport {MatTable, MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Adding and removing data when using an array-based datasource.\n */\n@Component({\n selector: 'table-dynamic-array-data-example',\n styleUrl: 'table-dynamic-array-data-example.css',\n templateUrl: 'table-dynamic-array-data-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicArrayDataExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = [...ELEMENT_DATA];\n\n @ViewChild(MatTable) table: MatTable;\n\n addData() {\n const randomElementIndex = Math.floor(Math.random() * ELEMENT_DATA.length);\n this.dataSource.push(ELEMENT_DATA[randomElementIndex]);\n this.table.renderRows();\n }\n\n removeData() {\n this.dataSource.pop();\n this.table.renderRows();\n }\n}\n","
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {DataSource} from '@angular/cdk/collections';\nimport {Observable, ReplaySubject} from 'rxjs';\nimport {MatTableModule} from '@angular/material/table';\nimport {MatButtonModule} from '@angular/material/button';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Adding and removing data when using an observable-based datasource.\n */\n@Component({\n selector: 'table-dynamic-observable-data-example',\n styleUrl: 'table-dynamic-observable-data-example.css',\n templateUrl: 'table-dynamic-observable-data-example.html',\n imports: [MatButtonModule, MatTableModule],\n})\nexport class TableDynamicObservableDataExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataToDisplay = [...ELEMENT_DATA];\n\n dataSource = new ExampleDataSource(this.dataToDisplay);\n\n addData() {\n const randomElementIndex = Math.floor(Math.random() * ELEMENT_DATA.length);\n this.dataToDisplay = [...this.dataToDisplay, ELEMENT_DATA[randomElementIndex]];\n this.dataSource.setData(this.dataToDisplay);\n }\n\n removeData() {\n this.dataToDisplay = this.dataToDisplay.slice(0, -1);\n this.dataSource.setData(this.dataToDisplay);\n }\n}\n\nclass ExampleDataSource extends DataSource {\n private _dataStream = new ReplaySubject();\n\n constructor(initialData: PeriodicElement[]) {\n super();\n this.setData(initialData);\n }\n\n connect(): Observable {\n return this._dataStream;\n }\n\n disconnect() {}\n\n setData(data: PeriodicElement[]) {\n this._dataStream.next(data);\n }\n}\n","
    \n \n \n Remove data\n \n
    \n\n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n \n \n \n\n \n \n
    No.{{element.position}}Name{{element.name}}Weight{{element.weight}}Symbol{{element.symbol}}
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Table with columns defined using a for loop instead of statically written in the template.\n */\n@Component({\n selector: 'table-generated-columns-example',\n styleUrl: 'table-generated-columns-example.css',\n templateUrl: 'table-generated-columns-example.html',\n imports: [MatTableModule],\n})\nexport class TableGeneratedColumnsExample {\n columns = [\n {\n columnDef: 'position',\n header: 'No.',\n cell: (element: PeriodicElement) => `${element.position}`,\n },\n {\n columnDef: 'name',\n header: 'Name',\n cell: (element: PeriodicElement) => `${element.name}`,\n },\n {\n columnDef: 'weight',\n header: 'Weight',\n cell: (element: PeriodicElement) => `${element.weight}`,\n },\n {\n columnDef: 'symbol',\n header: 'Symbol',\n cell: (element: PeriodicElement) => `${element.symbol}`,\n },\n ];\n dataSource = ELEMENT_DATA;\n displayedColumns = this.columns.map(c => c.columnDef);\n}\n","\n @for (column of columns; track column) {\n \n \n \n \n }\n\n \n \n
    \n {{column.header}}\n \n {{column.cell(row)}}\n
    \n","import {Component} from '@angular/core';\nimport {MatTableModule} from '@angular/material/table';\n\nexport interface PeriodicElement {\n name: string;\n position: number;\n weight: number;\n symbol: string;\n}\n\nconst ELEMENT_DATA: PeriodicElement[] = [\n {position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},\n {position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},\n {position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},\n {position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'},\n {position: 5, name: 'Boron', weight: 10.811, symbol: 'B'},\n {position: 6, name: 'Carbon', weight: 12.0107, symbol: 'C'},\n {position: 7, name: 'Nitrogen', weight: 14.0067, symbol: 'N'},\n {position: 8, name: 'Oxygen', weight: 15.9994, symbol: 'O'},\n {position: 9, name: 'Fluorine', weight: 18.9984, symbol: 'F'},\n {position: 10, name: 'Neon', weight: 20.1797, symbol: 'Ne'},\n];\n\n/**\n * @title Flex table where one column's cells has a greater height than others.\n */\n@Component({\n selector: 'table-flex-large-row-example',\n styleUrl: 'table-flex-large-row-example.css',\n templateUrl: 'table-flex-large-row-example.html',\n imports: [MatTableModule],\n})\nexport class TableFlexLargeRowExample {\n displayedColumns: string[] = ['position', 'name', 'weight', 'symbol'];\n dataSource = ELEMENT_DATA;\n}\n","\n \n \n No. \n {{element.position}} \n \n\n \n \n Name \n {{element.name}} \n \n\n \n \n Weight \n {{element.weight}} \n \n\n \n \n Symbol \n {{element.symbol}} \n \n\n \n \n"],"names":["ELEMENT_DATA","i2","i1","i3","observableOf","i5"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/tabs.mjs b/fesm2022/material/tabs.mjs index 200f3960bf..9f4616cdca 100755 --- a/fesm2022/material/tabs.mjs +++ b/fesm2022/material/tabs.mjs @@ -4,15 +4,15 @@ import * as i1 from '@angular/material/tabs'; import { MatTabsModule } from '@angular/material/tabs'; import { Observable } from 'rxjs'; import { AsyncPipe, DatePipe } from '@angular/common'; -import * as i2 from '@angular/material/icon'; +import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i3 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms'; -import * as i5 from '@angular/material/checkbox'; +import * as i2$1 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; -import * as i4 from '@angular/material/button'; +import * as i1$2 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i2$1 from '@angular/material/input'; +import * as i2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; import * as i1$1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; @@ -21,10 +21,10 @@ import { MatFormFieldModule } from '@angular/material/form-field'; * @title Tab group with aligned labels */ class TabGroupAlignExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAlignExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupAlignExample, isStandalone: true, selector: "tab-group-align-example", ngImport: i0, template: "\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAlignExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupAlignExample, isStandalone: true, selector: "tab-group-align-example", ngImport: i0, template: "\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAlignExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAlignExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-align-example', imports: [MatTabsModule], template: "\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"] }] }] }); @@ -33,10 +33,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group animations */ class TabGroupAnimationsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupAnimationsExample, isStandalone: true, selector: "tab-group-animations-example", ngImport: i0, template: "

    No animation

    \n\n\n Content 1\n Content 2\n Content 3\n\n\n

    Very slow animation

    \n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAnimationsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupAnimationsExample, isStandalone: true, selector: "tab-group-animations-example", ngImport: i0, template: "

    No animation

    \n\n\n Content 1\n Content 2\n Content 3\n\n\n

    Very slow animation

    \n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAnimationsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAnimationsExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-animations-example', imports: [MatTabsModule], template: "

    No animation

    \n\n\n Content 1\n Content 2\n Content 3\n\n\n

    Very slow animation

    \n\n\n\n Content 1\n Content 2\n Content 3\n\n", styles: [".mat-tab-group {\n margin-bottom: 48px;\n}\n"] }] }] }); @@ -57,10 +57,10 @@ class TabGroupAsyncExample { }, 1000); }); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAsyncExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TabGroupAsyncExample, isStandalone: true, selector: "tab-group-async-example", ngImport: i0, template: "@if ((asyncTabs | async) === null) {\n Loading tabs...\n}\n\n\n @for (tab of asyncTabs | async; track tab) {\n \n {{tab.label}}\n {{tab.content}}\n \n }\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAsyncExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TabGroupAsyncExample, isStandalone: true, selector: "tab-group-async-example", ngImport: i0, template: "@if ((asyncTabs | async) === null) {\n Loading tabs...\n}\n\n\n @for (tab of asyncTabs | async; track tab) {\n \n {{tab.label}}\n {{tab.content}}\n \n }\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "pipe", type: AsyncPipe, name: "async" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupAsyncExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupAsyncExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-async-example', imports: [MatTabsModule, AsyncPipe], template: "@if ((asyncTabs | async) === null) {\n Loading tabs...\n}\n\n\n @for (tab of asyncTabs | async; track tab) {\n \n {{tab.label}}\n {{tab.content}}\n \n }\n\n" }] }], ctorParameters: () => [] }); @@ -69,10 +69,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Basic use of the tab group */ class TabGroupBasicExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupBasicExample, isStandalone: true, selector: "tab-group-basic-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupBasicExample, isStandalone: true, selector: "tab-group-basic-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupBasicExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-basic-example', imports: [MatTabsModule], template: "\n Content 1 \n Content 2 \n Content 3 \n\n" }] }] }); @@ -81,10 +81,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Using tabs with a custom label template */ class TabGroupCustomLabelExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupCustomLabelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupCustomLabelExample, isStandalone: true, selector: "tab-group-custom-label-example", ngImport: i0, template: "\n \n\n \n thumb_up\n First\n \n\n Content 1\n \n\n \n \n thumb_up\n Second\n \n Content 2\n \n\n \n \n thumb_up\n Third\n \n\n Content 3\n \n\n", styles: [".example-tab-icon {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupCustomLabelExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupCustomLabelExample, isStandalone: true, selector: "tab-group-custom-label-example", ngImport: i0, template: "\n \n\n \n thumb_up\n First\n \n\n Content 1\n \n\n \n \n thumb_up\n Second\n \n Content 2\n \n\n \n \n thumb_up\n Third\n \n\n Content 3\n \n\n", styles: [".example-tab-icon {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabLabel, selector: "[mat-tab-label], [matTabLabel]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupCustomLabelExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupCustomLabelExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-custom-label-example', imports: [MatTabsModule, MatIconModule], template: "\n \n\n \n thumb_up\n First\n \n\n Content 1\n \n\n \n \n thumb_up\n Second\n \n Content 2\n \n\n \n \n thumb_up\n Third\n \n\n Content 3\n \n\n", styles: [".example-tab-icon {\n margin-right: 8px;\n}\n"] }] }] }); @@ -93,10 +93,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group with dynamic height based on tab contents */ class TabGroupDynamicHeightExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupDynamicHeightExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupDynamicHeightExample, isStandalone: true, selector: "tab-group-dynamic-height-example", ngImport: i0, template: "\n\n\n \n
    \n Small content\n
    \n
    \n \n
    \n Large content\n
    \n
    \n
    \n", styles: [".example-small-box, .example-large-box {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 16px;\n padding: 16px;\n border-radius: 8px;\n}\n\n.example-small-box {\n height: 100px;\n width: 100px;\n}\n\n.example-large-box {\n height: 300px;\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupDynamicHeightExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupDynamicHeightExample, isStandalone: true, selector: "tab-group-dynamic-height-example", ngImport: i0, template: "\n\n\n \n
    \n Small content\n
    \n
    \n \n
    \n Large content\n
    \n
    \n
    \n", styles: [".example-small-box, .example-large-box {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 16px;\n padding: 16px;\n border-radius: 8px;\n}\n\n.example-small-box {\n height: 100px;\n width: 100px;\n}\n\n.example-large-box {\n height: 300px;\n width: 300px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupDynamicHeightExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupDynamicHeightExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-dynamic-height-example', imports: [MatTabsModule], template: "\n\n\n \n
    \n Small content\n
    \n
    \n \n
    \n Large content\n
    \n
    \n
    \n", styles: [".example-small-box, .example-large-box {\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 16px;\n padding: 16px;\n border-radius: 8px;\n}\n\n.example-small-box {\n height: 100px;\n width: 100px;\n}\n\n.example-large-box {\n height: 300px;\n width: 300px;\n}\n"] }] }] }); @@ -117,10 +117,10 @@ class TabGroupDynamicExample { this.tabs.splice(index, 1); this.selected.setValue(index); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TabGroupDynamicExample, isStandalone: true, selector: "tab-group-dynamic-example", ngImport: i0, template: "\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n", styles: [".example-input-label,\n.example-add-tab-button,\n.example-delete-tab-button {\n margin: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i5.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TabGroupDynamicExample, isStandalone: true, selector: "tab-group-dynamic-example", ngImport: i0, template: "\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n", styles: [".example-input-label,\n.example-add-tab-button,\n.example-delete-tab-button {\n margin: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupDynamicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupDynamicExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-dynamic-example', imports: [ MatFormFieldModule, @@ -130,17 +130,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor MatButtonModule, MatCheckboxModule, MatTabsModule, - ], template: "\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n", styles: [".example-input-label,\n.example-add-tab-button,\n.example-delete-tab-button {\n margin: 8px;\n}\n"] }] + ], template: "\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n", styles: [".example-input-label,\n.example-add-tab-button,\n.example-delete-tab-button {\n margin: 8px;\n}\n"] }] }] }); /** * @title Testing with MatTabGroupHarness */ class TabGroupHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupHarnessExample, isStandalone: true, selector: "tab-group-harness-example", ngImport: i0, template: "\n \n Your personal information\n \n \n Privacy settings\n \n \n How to update profile picture\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupHarnessExample, isStandalone: true, selector: "tab-group-harness-example", ngImport: i0, template: "\n \n Your personal information\n \n \n Privacy settings\n \n \n How to update profile picture\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupHarnessExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-harness-example', imports: [MatTabsModule], template: "\n \n Your personal information\n \n \n Privacy settings\n \n \n How to update profile picture\n \n\n" }] }] }); @@ -149,10 +149,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group with headers below the content */ class TabGroupHeaderBelowExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupHeaderBelowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupHeaderBelowExample, isStandalone: true, selector: "tab-group-header-below-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupHeaderBelowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupHeaderBelowExample, isStandalone: true, selector: "tab-group-header-below-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupHeaderBelowExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupHeaderBelowExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-header-below-example', imports: [MatTabsModule], template: "\n Content 1 \n Content 2 \n Content 3 \n\n" }] }] }); @@ -161,10 +161,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group with ink bar fit to content */ class TabGroupInkBarExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupInkBarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupInkBarExample, isStandalone: true, selector: "tab-group-ink-bar-example", ngImport: i0, template: "\n Content 1\n Content 2\n Content 3\n Content 4\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupInkBarExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupInkBarExample, isStandalone: true, selector: "tab-group-ink-bar-example", ngImport: i0, template: "\n Content 1\n Content 2\n Content 3\n Content 4\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupInkBarExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupInkBarExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-ink-bar-example', imports: [MatTabsModule], template: "\n Content 1\n Content 2\n Content 3\n Content 4\n\n" }] }] }); @@ -180,10 +180,10 @@ class TabGroupLazyLoadedExample { } return this.tabLoadTimes[index]; } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupLazyLoadedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupLazyLoadedExample, isStandalone: true, selector: "tab-group-lazy-loaded-example", ngImport: i0, template: "\n\n \n \n Content 1 - Loaded: {{getTimeLoaded(1) | date:'medium'}}\n \n \n\n \n \n Content 2 - Loaded: {{getTimeLoaded(2) | date:'medium'}}\n \n \n \n \n Content 3 - Loaded: {{getTimeLoaded(3) | date:'medium'}}\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabContent, selector: "[matTabContent]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "pipe", type: DatePipe, name: "date" }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupLazyLoadedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupLazyLoadedExample, isStandalone: true, selector: "tab-group-lazy-loaded-example", ngImport: i0, template: "\n\n \n \n Content 1 - Loaded: {{getTimeLoaded(1) | date:'medium'}}\n \n \n\n \n \n Content 2 - Loaded: {{getTimeLoaded(2) | date:'medium'}}\n \n \n \n \n Content 3 - Loaded: {{getTimeLoaded(3) | date:'medium'}}\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "directive", type: i1.MatTabContent, selector: "[matTabContent]" }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }, { kind: "pipe", type: DatePipe, name: "date" }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupLazyLoadedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupLazyLoadedExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-lazy-loaded-example', imports: [MatTabsModule, DatePipe], template: "\n\n \n \n Content 1 - Loaded: {{getTimeLoaded(1) | date:'medium'}}\n \n \n\n \n \n Content 2 - Loaded: {{getTimeLoaded(2) | date:'medium'}}\n \n \n \n \n Content 3 - Loaded: {{getTimeLoaded(3) | date:'medium'}}\n \n \n\n" }] }] }); @@ -193,10 +193,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class TabGroupPaginatedExample { lotsOfTabs = new Array(30).fill(0).map((_, index) => `Tab ${index}`); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupPaginatedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TabGroupPaginatedExample, isStandalone: true, selector: "tab-group-paginated-example", ngImport: i0, template: "\n @for (tab of lotsOfTabs; track tab) {\n Content\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupPaginatedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TabGroupPaginatedExample, isStandalone: true, selector: "tab-group-paginated-example", ngImport: i0, template: "\n @for (tab of lotsOfTabs; track tab) {\n Content\n }\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupPaginatedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupPaginatedExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-paginated-example', imports: [MatTabsModule], template: "\n @for (tab of lotsOfTabs; track tab) {\n Content\n }\n\n" }] }] }); @@ -205,10 +205,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group that keeps its content inside the DOM when it's off-screen. */ class TabGroupPreserveContentExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupPreserveContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupPreserveContentExample, isStandalone: true, selector: "tab-group-preserve-content-example", ngImport: i0, template: "

    Start the video in the first tab and navigate to the second one to see how it keeps playing.

    \n\n\n \n \n \n Note how the video from the previous tab is still playing.\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupPreserveContentExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupPreserveContentExample, isStandalone: true, selector: "tab-group-preserve-content-example", ngImport: i0, template: "

    Start the video in the first tab and navigate to the second one to see how it keeps playing.

    \n\n\n \n \n \n Note how the video from the previous tab is still playing.\n\n", dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupPreserveContentExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupPreserveContentExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-preserve-content-example', imports: [MatTabsModule], template: "

    Start the video in the first tab and navigate to the second one to see how it keeps playing.

    \n\n\n \n \n \n Note how the video from the previous tab is still playing.\n\n" }] }] }); @@ -217,10 +217,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Tab group with stretched labels */ class TabGroupStretchedExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupStretchedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TabGroupStretchedExample, isStandalone: true, selector: "tab-group-stretched-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", styles: [".example-stretched-tabs {\n max-width: 800px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupStretchedExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TabGroupStretchedExample, isStandalone: true, selector: "tab-group-stretched-example", ngImport: i0, template: "\n Content 1 \n Content 2 \n Content 3 \n\n", styles: [".example-stretched-tabs {\n max-width: 800px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass", "id"], exportAs: ["matTab"] }, { kind: "component", type: i1.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "fitInkBarToContent", "mat-stretch-tabs", "mat-align-tabs", "dynamicHeight", "selectedIndex", "headerPosition", "animationDuration", "contentTabIndex", "disablePagination", "disableRipple", "preserveContent", "backgroundColor", "aria-label", "aria-labelledby"], outputs: ["selectedIndexChange", "focusChange", "animationDone", "selectedTabChange"], exportAs: ["matTabGroup"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabGroupStretchedExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabGroupStretchedExample, decorators: [{ type: Component, args: [{ selector: 'tab-group-stretched-example', imports: [MatTabsModule], template: "\n Content 1 \n Content 2 \n Content 3 \n\n", styles: [".example-stretched-tabs {\n max-width: 800px;\n}\n"] }] }] }); @@ -234,17 +234,13 @@ class TabNavBarBasicExample { addLink() { this.links.push(`Link ${this.links.length + 1}`); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabNavBarBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TabNavBarBasicExample, isStandalone: true, selector: "tab-nav-bar-basic-example", ngImport: i0, template: "\n\n\n\n\n\n", styles: [".example-action-button {\n margin-top: 8px;\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTabNav, selector: "[mat-tab-nav-bar]", inputs: ["fitInkBarToContent", "mat-stretch-tabs", "animationDuration", "backgroundColor", "disableRipple", "color", "tabPanel"], exportAs: ["matTabNavBar", "matTabNav"] }, { kind: "component", type: i1.MatTabNavPanel, selector: "mat-tab-nav-panel", inputs: ["id"], exportAs: ["matTabNavPanel"] }, { kind: "component", type: i1.MatTabLink, selector: "[mat-tab-link], [matTabLink]", inputs: ["active", "disabled", "disableRipple", "tabIndex", "id"], exportAs: ["matTabLink"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i4.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabNavBarBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TabNavBarBasicExample, isStandalone: true, selector: "tab-nav-bar-basic-example", ngImport: i0, template: "\n\n\n\n\n\n", styles: [".example-action-button {\n margin-top: 8px;\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTabsModule }, { kind: "component", type: i1.MatTabNav, selector: "[mat-tab-nav-bar]", inputs: ["fitInkBarToContent", "mat-stretch-tabs", "animationDuration", "backgroundColor", "disableRipple", "color", "tabPanel"], exportAs: ["matTabNavBar", "matTabNav"] }, { kind: "component", type: i1.MatTabNavPanel, selector: "mat-tab-nav-panel", inputs: ["id"], exportAs: ["matTabNavPanel"] }, { kind: "component", type: i1.MatTabLink, selector: "[mat-tab-link], [matTabLink]", inputs: ["active", "disabled", "disableRipple", "tabIndex", "id"], exportAs: ["matTabLink"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TabNavBarBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TabNavBarBasicExample, decorators: [{ type: Component, - args: [{ selector: 'tab-nav-bar-basic-example', imports: [MatTabsModule, MatButtonModule], template: "\n\n\n\n\n\n", styles: [".example-action-button {\n margin-top: 8px;\n margin-right: 8px;\n}\n"] }] + args: [{ selector: 'tab-nav-bar-basic-example', imports: [MatTabsModule, MatButtonModule], template: "\n\n\n\n\n\n", styles: [".example-action-button {\n margin-top: 8px;\n margin-right: 8px;\n}\n"] }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { TabGroupAlignExample, TabGroupAnimationsExample, TabGroupAsyncExample, TabGroupBasicExample, TabGroupCustomLabelExample, TabGroupDynamicExample, TabGroupDynamicHeightExample, TabGroupHarnessExample, TabGroupHeaderBelowExample, TabGroupInkBarExample, TabGroupLazyLoadedExample, TabGroupPaginatedExample, TabGroupPreserveContentExample, TabGroupStretchedExample, TabNavBarBasicExample }; //# sourceMappingURL=tabs.mjs.map diff --git a/fesm2022/material/tabs.mjs.map b/fesm2022/material/tabs.mjs.map index 20dfb330c3..8258a1508c 100755 --- a/fesm2022/material/tabs.mjs.map +++ b/fesm2022/material/tabs.mjs.map @@ -1 +1 @@ -{"version":3,"file":"tabs.mjs","sources":["../../../../../../../src/components-examples/material/tabs/tab-group-align/tab-group-align-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-align/tab-group-align-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-animations/tab-group-animations-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-animations/tab-group-animations-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-async/tab-group-async-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-async/tab-group-async-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-basic/tab-group-basic-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-basic/tab-group-basic-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-custom-label/tab-group-custom-label-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-custom-label/tab-group-custom-label-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-dynamic-height/tab-group-dynamic-height-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-dynamic-height/tab-group-dynamic-height-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-dynamic/tab-group-dynamic-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-dynamic/tab-group-dynamic-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-harness/tab-group-harness-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-harness/tab-group-harness-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-ink-bar/tab-group-ink-bar-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-ink-bar/tab-group-ink-bar-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-lazy-loaded/tab-group-lazy-loaded-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-lazy-loaded/tab-group-lazy-loaded-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-paginated/tab-group-paginated-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-paginated/tab-group-paginated-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-preserve-content/tab-group-preserve-content-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-preserve-content/tab-group-preserve-content-example.html","../../../../../../../src/components-examples/material/tabs/tab-group-stretched/tab-group-stretched-example.ts","../../../../../../../src/components-examples/material/tabs/tab-group-stretched/tab-group-stretched-example.html","../../../../../../../src/components-examples/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example.ts","../../../../../../../src/components-examples/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example.html","../../../../../../../src/components-examples/material/tabs/tabs_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with aligned labels\n */\n@Component({\n selector: 'tab-group-align-example',\n templateUrl: 'tab-group-align-example.html',\n styleUrl: 'tab-group-align-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupAlignExample {}\n","\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group animations\n */\n@Component({\n selector: 'tab-group-animations-example',\n templateUrl: 'tab-group-animations-example.html',\n styleUrl: 'tab-group-animations-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupAnimationsExample {}\n","

    No animation

    \n\n\n Content 1\n Content 2\n Content 3\n\n\n

    Very slow animation

    \n\n\n\n Content 1\n Content 2\n Content 3\n\n","import {Component} from '@angular/core';\nimport {Observable, Observer} from 'rxjs';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {AsyncPipe} from '@angular/common';\n\nexport interface ExampleTab {\n label: string;\n content: string;\n}\n\n/**\n * @title Tab group with asynchronously loading tab contents\n */\n@Component({\n selector: 'tab-group-async-example',\n templateUrl: 'tab-group-async-example.html',\n imports: [MatTabsModule, AsyncPipe],\n})\nexport class TabGroupAsyncExample {\n asyncTabs: Observable;\n\n constructor() {\n this.asyncTabs = new Observable((observer: Observer) => {\n setTimeout(() => {\n observer.next([\n {label: 'First', content: 'Content 1'},\n {label: 'Second', content: 'Content 2'},\n {label: 'Third', content: 'Content 3'},\n ]);\n }, 1000);\n });\n }\n}\n","@if ((asyncTabs | async) === null) {\n Loading tabs...\n}\n\n\n @for (tab of asyncTabs | async; track tab) {\n \n {{tab.label}}\n {{tab.content}}\n \n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Basic use of the tab group\n */\n@Component({\n selector: 'tab-group-basic-example',\n templateUrl: 'tab-group-basic-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupBasicExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Using tabs with a custom label template\n */\n@Component({\n selector: 'tab-group-custom-label-example',\n templateUrl: 'tab-group-custom-label-example.html',\n styleUrl: 'tab-group-custom-label-example.css',\n imports: [MatTabsModule, MatIconModule],\n})\nexport class TabGroupCustomLabelExample {}\n","\n \n\n \n thumb_up\n First\n \n\n Content 1\n \n\n \n \n thumb_up\n Second\n \n Content 2\n \n\n \n \n thumb_up\n Third\n \n\n Content 3\n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with dynamic height based on tab contents\n */\n@Component({\n selector: 'tab-group-dynamic-height-example',\n templateUrl: 'tab-group-dynamic-height-example.html',\n styleUrl: 'tab-group-dynamic-height-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupDynamicHeightExample {}\n","\n\n\n \n
    \n Small content\n
    \n
    \n \n
    \n Large content\n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tab group with dynamically changing tabs\n */\n@Component({\n selector: 'tab-group-dynamic-example',\n templateUrl: 'tab-group-dynamic-example.html',\n styleUrl: 'tab-group-dynamic-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatCheckboxModule,\n MatTabsModule,\n ],\n})\nexport class TabGroupDynamicExample {\n tabs = ['First', 'Second', 'Third'];\n selected = new FormControl(0);\n\n addTab(selectAfterAdding: boolean) {\n this.tabs.push('New');\n\n if (selectAfterAdding) {\n this.selected.setValue(this.tabs.length - 1);\n }\n }\n\n removeTab(index: number) {\n this.tabs.splice(index, 1);\n this.selected.setValue(index);\n }\n}\n","\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Testing with MatTabGroupHarness\n */\n@Component({\n selector: 'tab-group-harness-example',\n templateUrl: 'tab-group-harness-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupHarnessExample {}\n","\n \n Your personal information\n \n \n Privacy settings\n \n \n How to update profile picture\n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with headers below the content\n */\n@Component({\n selector: 'tab-group-header-below-example',\n templateUrl: 'tab-group-header-below-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupHeaderBelowExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with ink bar fit to content\n */\n@Component({\n selector: 'tab-group-ink-bar-example',\n templateUrl: 'tab-group-ink-bar-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupInkBarExample {}\n","\n Content 1\n Content 2\n Content 3\n Content 4\n\n","import {Component} from '@angular/core';\nimport {DatePipe} from '@angular/common';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group where the tab content is loaded lazily (when activated)\n */\n@Component({\n selector: 'tab-group-lazy-loaded-example',\n templateUrl: 'tab-group-lazy-loaded-example.html',\n imports: [MatTabsModule, DatePipe],\n})\nexport class TabGroupLazyLoadedExample {\n tabLoadTimes: Date[] = [];\n\n getTimeLoaded(index: number) {\n if (!this.tabLoadTimes[index]) {\n this.tabLoadTimes[index] = new Date();\n }\n\n return this.tabLoadTimes[index];\n }\n}\n","\n\n \n \n Content 1 - Loaded: {{getTimeLoaded(1) | date:'medium'}}\n \n \n\n \n \n Content 2 - Loaded: {{getTimeLoaded(2) | date:'medium'}}\n \n \n \n \n Content 3 - Loaded: {{getTimeLoaded(3) | date:'medium'}}\n \n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with paginated tabs\n */\n@Component({\n selector: 'tab-group-paginated-example',\n templateUrl: 'tab-group-paginated-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupPaginatedExample {\n lotsOfTabs = new Array(30).fill(0).map((_, index) => `Tab ${index}`);\n}\n","\n @for (tab of lotsOfTabs; track tab) {\n Content\n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group that keeps its content inside the DOM when it's off-screen.\n */\n@Component({\n selector: 'tab-group-preserve-content-example',\n templateUrl: 'tab-group-preserve-content-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupPreserveContentExample {}\n","

    Start the video in the first tab and navigate to the second one to see how it keeps playing.

    \n\n\n \n \n \n Note how the video from the previous tab is still playing.\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with stretched labels\n */\n@Component({\n selector: 'tab-group-stretched-example',\n templateUrl: 'tab-group-stretched-example.html',\n styleUrl: 'tab-group-stretched-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupStretchedExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Basic use of the tab nav bar\n */\n@Component({\n selector: 'tab-nav-bar-basic-example',\n templateUrl: 'tab-nav-bar-basic-example.html',\n styleUrl: 'tab-nav-bar-basic-example.css',\n imports: [MatTabsModule, MatButtonModule],\n})\nexport class TabNavBarBasicExample {\n links = ['First', 'Second', 'Third'];\n activeLink = this.links[0];\n\n addLink() {\n this.links.push(`Link ${this.links.length + 1}`);\n }\n}\n","\n\n\n\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2","i6"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"tabs.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-align/tab-group-align-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-align/tab-group-align-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-animations/tab-group-animations-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-animations/tab-group-animations-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-async/tab-group-async-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-async/tab-group-async-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-basic/tab-group-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-basic/tab-group-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-custom-label/tab-group-custom-label-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-custom-label/tab-group-custom-label-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-dynamic-height/tab-group-dynamic-height-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-dynamic-height/tab-group-dynamic-height-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-dynamic/tab-group-dynamic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-dynamic/tab-group-dynamic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-harness/tab-group-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-harness/tab-group-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-header-below/tab-group-header-below-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-ink-bar/tab-group-ink-bar-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-ink-bar/tab-group-ink-bar-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-lazy-loaded/tab-group-lazy-loaded-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-lazy-loaded/tab-group-lazy-loaded-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-paginated/tab-group-paginated-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-paginated/tab-group-paginated-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-preserve-content/tab-group-preserve-content-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-preserve-content/tab-group-preserve-content-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-stretched/tab-group-stretched-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-group-stretched/tab-group-stretched-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tabs/tab-nav-bar-basic/tab-nav-bar-basic-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with aligned labels\n */\n@Component({\n selector: 'tab-group-align-example',\n templateUrl: 'tab-group-align-example.html',\n styleUrl: 'tab-group-align-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupAlignExample {}\n","\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n\n\n Content 1\n Content 2\n Content 3\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group animations\n */\n@Component({\n selector: 'tab-group-animations-example',\n templateUrl: 'tab-group-animations-example.html',\n styleUrl: 'tab-group-animations-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupAnimationsExample {}\n","

    No animation

    \n\n\n Content 1\n Content 2\n Content 3\n\n\n

    Very slow animation

    \n\n\n\n Content 1\n Content 2\n Content 3\n\n","import {Component} from '@angular/core';\nimport {Observable, Observer} from 'rxjs';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {AsyncPipe} from '@angular/common';\n\nexport interface ExampleTab {\n label: string;\n content: string;\n}\n\n/**\n * @title Tab group with asynchronously loading tab contents\n */\n@Component({\n selector: 'tab-group-async-example',\n templateUrl: 'tab-group-async-example.html',\n imports: [MatTabsModule, AsyncPipe],\n})\nexport class TabGroupAsyncExample {\n asyncTabs: Observable;\n\n constructor() {\n this.asyncTabs = new Observable((observer: Observer) => {\n setTimeout(() => {\n observer.next([\n {label: 'First', content: 'Content 1'},\n {label: 'Second', content: 'Content 2'},\n {label: 'Third', content: 'Content 3'},\n ]);\n }, 1000);\n });\n }\n}\n","@if ((asyncTabs | async) === null) {\n Loading tabs...\n}\n\n\n @for (tab of asyncTabs | async; track tab) {\n \n {{tab.label}}\n {{tab.content}}\n \n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Basic use of the tab group\n */\n@Component({\n selector: 'tab-group-basic-example',\n templateUrl: 'tab-group-basic-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupBasicExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Using tabs with a custom label template\n */\n@Component({\n selector: 'tab-group-custom-label-example',\n templateUrl: 'tab-group-custom-label-example.html',\n styleUrl: 'tab-group-custom-label-example.css',\n imports: [MatTabsModule, MatIconModule],\n})\nexport class TabGroupCustomLabelExample {}\n","\n \n\n \n thumb_up\n First\n \n\n Content 1\n \n\n \n \n thumb_up\n Second\n \n Content 2\n \n\n \n \n thumb_up\n Third\n \n\n Content 3\n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with dynamic height based on tab contents\n */\n@Component({\n selector: 'tab-group-dynamic-height-example',\n templateUrl: 'tab-group-dynamic-height-example.html',\n styleUrl: 'tab-group-dynamic-height-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupDynamicHeightExample {}\n","\n\n\n \n
    \n Small content\n
    \n
    \n \n
    \n Large content\n
    \n
    \n
    \n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTabsModule} from '@angular/material/tabs';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tab group with dynamically changing tabs\n */\n@Component({\n selector: 'tab-group-dynamic-example',\n templateUrl: 'tab-group-dynamic-example.html',\n styleUrl: 'tab-group-dynamic-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatCheckboxModule,\n MatTabsModule,\n ],\n})\nexport class TabGroupDynamicExample {\n tabs = ['First', 'Second', 'Third'];\n selected = new FormControl(0);\n\n addTab(selectAfterAdding: boolean) {\n this.tabs.push('New');\n\n if (selectAfterAdding) {\n this.selected.setValue(this.tabs.length - 1);\n }\n }\n\n removeTab(index: number) {\n this.tabs.splice(index, 1);\n this.selected.setValue(index);\n }\n}\n","\n Selected tab index\n \n\n\n
    \n \n Select tab after adding \n
    \n\n\n @for (tab of tabs; track tab; let index = $index) {\n \n Contents for {{tab}} tab\n\n \n \n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Testing with MatTabGroupHarness\n */\n@Component({\n selector: 'tab-group-harness-example',\n templateUrl: 'tab-group-harness-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupHarnessExample {}\n","\n \n Your personal information\n \n \n Privacy settings\n \n \n How to update profile picture\n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with headers below the content\n */\n@Component({\n selector: 'tab-group-header-below-example',\n templateUrl: 'tab-group-header-below-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupHeaderBelowExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with ink bar fit to content\n */\n@Component({\n selector: 'tab-group-ink-bar-example',\n templateUrl: 'tab-group-ink-bar-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupInkBarExample {}\n","\n Content 1\n Content 2\n Content 3\n Content 4\n\n","import {Component} from '@angular/core';\nimport {DatePipe} from '@angular/common';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group where the tab content is loaded lazily (when activated)\n */\n@Component({\n selector: 'tab-group-lazy-loaded-example',\n templateUrl: 'tab-group-lazy-loaded-example.html',\n imports: [MatTabsModule, DatePipe],\n})\nexport class TabGroupLazyLoadedExample {\n tabLoadTimes: Date[] = [];\n\n getTimeLoaded(index: number) {\n if (!this.tabLoadTimes[index]) {\n this.tabLoadTimes[index] = new Date();\n }\n\n return this.tabLoadTimes[index];\n }\n}\n","\n\n \n \n Content 1 - Loaded: {{getTimeLoaded(1) | date:'medium'}}\n \n \n\n \n \n Content 2 - Loaded: {{getTimeLoaded(2) | date:'medium'}}\n \n \n \n \n Content 3 - Loaded: {{getTimeLoaded(3) | date:'medium'}}\n \n \n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with paginated tabs\n */\n@Component({\n selector: 'tab-group-paginated-example',\n templateUrl: 'tab-group-paginated-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupPaginatedExample {\n lotsOfTabs = new Array(30).fill(0).map((_, index) => `Tab ${index}`);\n}\n","\n @for (tab of lotsOfTabs; track tab) {\n Content\n }\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group that keeps its content inside the DOM when it's off-screen.\n */\n@Component({\n selector: 'tab-group-preserve-content-example',\n templateUrl: 'tab-group-preserve-content-example.html',\n imports: [MatTabsModule],\n})\nexport class TabGroupPreserveContentExample {}\n","

    Start the video in the first tab and navigate to the second one to see how it keeps playing.

    \n\n\n \n \n \n Note how the video from the previous tab is still playing.\n\n","import {Component} from '@angular/core';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Tab group with stretched labels\n */\n@Component({\n selector: 'tab-group-stretched-example',\n templateUrl: 'tab-group-stretched-example.html',\n styleUrl: 'tab-group-stretched-example.css',\n imports: [MatTabsModule],\n})\nexport class TabGroupStretchedExample {}\n","\n Content 1 \n Content 2 \n Content 3 \n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTabsModule} from '@angular/material/tabs';\n\n/**\n * @title Basic use of the tab nav bar\n */\n@Component({\n selector: 'tab-nav-bar-basic-example',\n templateUrl: 'tab-nav-bar-basic-example.html',\n styleUrl: 'tab-nav-bar-basic-example.css',\n imports: [MatTabsModule, MatButtonModule],\n})\nexport class TabNavBarBasicExample {\n links = ['First', 'Second', 'Third'];\n activeLink = this.links[0];\n\n addLink() {\n this.links.push(`Link ${this.links.length + 1}`);\n }\n}\n","\n\n\n\n\n\n"],"names":["i2","i3","i4","i6"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/timepicker.mjs b/fesm2022/material/timepicker.mjs index c5a0764b09..97e72af5ec 100755 --- a/fesm2022/material/timepicker.mjs +++ b/fesm2022/material/timepicker.mjs @@ -7,21 +7,21 @@ import { MatInputModule } from '@angular/material/input'; import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; import { provideNativeDateAdapter, DateAdapter } from '@angular/material/core'; -import * as i4 from '@angular/forms'; +import * as i3$1 from '@angular/forms'; import { FormControl, ReactiveFormsModule, FormsModule } from '@angular/forms'; -import * as i4$1 from '@angular/material/datepicker'; +import * as i3$2 from '@angular/material/datepicker'; import { MatDatepickerModule } from '@angular/material/datepicker'; import { JsonPipe } from '@angular/common'; import { MatIcon } from '@angular/material/icon'; -import * as i5 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; /** @title Basic timepicker */ class TimepickerOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerOverviewExample, isStandalone: true, selector: "timepicker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n\n \n \n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerOverviewExample, isStandalone: true, selector: "timepicker-overview-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n\n \n \n \n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerOverviewExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-overview-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n\n \n \n \n\n\n" }] }] }); @@ -34,10 +34,10 @@ class TimepickerFormsExample { initialValue.setHours(12, 30, 0); this.formControl = new FormControl(initialValue); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerFormsExample, isStandalone: true, selector: "timepicker-forms-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n\n

    Value: {{formControl.value}}

    \n

    Touched: {{formControl.touched}}

    \n

    Dirty: {{formControl.dirty}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerFormsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerFormsExample, isStandalone: true, selector: "timepicker-forms-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n\n

    Value: {{formControl.value}}

    \n

    Touched: {{formControl.touched}}

    \n

    Dirty: {{formControl.dirty}}

    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerFormsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerFormsExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-forms-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n \n \n \n\n\n

    Value: {{formControl.value}}

    \n

    Touched: {{formControl.touched}}

    \n

    Dirty: {{formControl.dirty}}

    \n" }] }], ctorParameters: () => [] }); @@ -45,10 +45,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Timepicker integration with datepicker */ class TimepickerDatepickerIntegrationExample { value; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerDatepickerIntegrationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerDatepickerIntegrationExample, isStandalone: true, selector: "timepicker-datepicker-integration-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Meeting date\n \n \n \n\n\n\n Meeting time\n \n \n \n\n\n

    Value: {{value}}

    \n", styles: ["mat-form-field {\n margin-right: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i4$1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i4$1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i4$1.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerDatepickerIntegrationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerDatepickerIntegrationExample, isStandalone: true, selector: "timepicker-datepicker-integration-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Meeting date\n \n \n \n\n\n\n Meeting time\n \n \n \n\n\n

    Value: {{value}}

    \n", styles: ["mat-form-field {\n margin-right: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i3$2.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i3$2.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i3$2.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerDatepickerIntegrationExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerDatepickerIntegrationExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-datepicker-integration-example', providers: [provideNativeDateAdapter()], imports: [ MatFormFieldModule, @@ -62,10 +62,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor /** @title Timepicker validation */ class TimepickerValidationExample { formControl = new FormControl(null); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerValidationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TimepickerValidationExample, isStandalone: true, selector: "timepicker-validation-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n @if (formControl.errors?.['matTimepickerParse']) {\n Value isn't a valid time\n }\n\n @if (formControl.errors?.['matTimepickerMin']) {\n Value is too early\n }\n\n @if (formControl.errors?.['matTimepickerMax']) {\n Value is too late\n }\n\n\n

    Enter a value before 12:30 PM or after 5:30 PM to see the errors

    \n

    Errors: {{formControl.errors | json}}

    \n", styles: ["mat-form-field {\n margin-bottom: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerValidationExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TimepickerValidationExample, isStandalone: true, selector: "timepicker-validation-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n @if (formControl.errors?.['matTimepickerParse']) {\n Value isn't a valid time\n }\n\n @if (formControl.errors?.['matTimepickerMin']) {\n Value is too early\n }\n\n @if (formControl.errors?.['matTimepickerMax']) {\n Value is too late\n }\n\n\n

    Enter a value before 12:30 PM or after 5:30 PM to see the errors

    \n

    Errors: {{formControl.errors | json}}

    \n", styles: ["mat-form-field {\n margin-bottom: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "pipe", type: JsonPipe, name: "json" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerValidationExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerValidationExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-validation-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule, JsonPipe], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n \n \n \n\n @if (formControl.errors?.['matTimepickerParse']) {\n Value isn't a valid time\n }\n\n @if (formControl.errors?.['matTimepickerMin']) {\n Value is too early\n }\n\n @if (formControl.errors?.['matTimepickerMax']) {\n Value is too late\n }\n\n\n

    Enter a value before 12:30 PM or after 5:30 PM to see the errors

    \n

    Errors: {{formControl.errors | json}}

    \n", styles: ["mat-form-field {\n margin-bottom: 30px;\n}\n"] }] }] }); @@ -77,20 +77,20 @@ class TimepickerOptionsExample { { label: 'Noon', value: new Date(2024, 0, 1, 12, 0, 0) }, { label: 'Evening', value: new Date(2024, 0, 1, 22, 0, 0) }, ]; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerOptionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerOptionsExample, isStandalone: true, selector: "timepicker-options-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "

    Interval examples

    \n\n
    \n \n Every 45 minutes\n \n \n \n \n
    \n\n
    \n \n Every 3.5 hours\n \n \n \n \n
    \n\n

    Custom list of options

    \n\n
    \n \n Pick a time of day\n \n \n \n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerOptionsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerOptionsExample, isStandalone: true, selector: "timepicker-options-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "

    Interval examples

    \n\n
    \n \n Every 45 minutes\n \n \n \n \n
    \n\n
    \n \n Every 3.5 hours\n \n \n \n \n
    \n\n

    Custom list of options

    \n\n
    \n \n Pick a time of day\n \n \n \n \n
    \n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerOptionsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerOptionsExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-options-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "

    Interval examples

    \n\n
    \n \n Every 45 minutes\n \n \n \n \n
    \n\n
    \n \n Every 3.5 hours\n \n \n \n \n
    \n\n

    Custom list of options

    \n\n
    \n \n Pick a time of day\n \n \n \n \n
    \n" }] }] }); /** @title Timepicker with custom toggle icon */ class TimepickerCustomIconExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerCustomIconExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerCustomIconExample, isStandalone: true, selector: "timepicker-custom-icon-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n keyboard_arrow_down\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerCustomIconExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerCustomIconExample, isStandalone: true, selector: "timepicker-custom-icon-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n keyboard_arrow_down\n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerCustomIconExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerCustomIconExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-custom-icon-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, MatIcon], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n \n \n keyboard_arrow_down\n \n \n\n" }] }] }); @@ -102,12 +102,12 @@ class TimepickerLocaleExample { switchLocale() { this._adapter.setLocale('bg-BG'); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerLocaleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerLocaleExample, isStandalone: true, selector: "timepicker-locale-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerLocaleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerLocaleExample, isStandalone: true, selector: "timepicker-locale-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n Pick a time\n \n \n \n\n\n\n", dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }, { kind: "component", type: i3.MatTimepickerToggle, selector: "mat-timepicker-toggle", inputs: ["for", "aria-label", "aria-labelledby", "disabled", "tabIndex", "disableRipple"], exportAs: ["matTimepickerToggle"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerLocaleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerLocaleExample, decorators: [{ type: Component, - args: [{ selector: 'timepicker-locale-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, FormsModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n \n \n \n\n\n\n" }] + args: [{ selector: 'timepicker-locale-example', providers: [provideNativeDateAdapter()], imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, FormsModule, MatButtonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n Pick a time\n \n \n \n\n\n\n" }] }] }); /** @@ -119,17 +119,13 @@ class TimepickerHarnessExample { const today = new Date(); this.date = signal(new Date(today.getFullYear(), today.getMonth(), today.getDate(), 11, 45)); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TimepickerHarnessExample, isStandalone: true, selector: "timepicker-harness-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TimepickerHarnessExample, isStandalone: true, selector: "timepicker-harness-example", providers: [provideNativeDateAdapter()], ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatTimepickerModule }, { kind: "component", type: i3.MatTimepicker, selector: "mat-timepicker", inputs: ["interval", "options", "disableRipple", "aria-label", "aria-labelledby"], outputs: ["selected", "opened", "closed"], exportAs: ["matTimepicker"] }, { kind: "directive", type: i3.MatTimepickerInput, selector: "input[matTimepicker]", inputs: ["value", "matTimepicker", "matTimepickerMin", "matTimepickerMax", "disabled"], outputs: ["valueChange"], exportAs: ["matTimepickerInput"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TimepickerHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TimepickerHarnessExample, decorators: [{ type: Component, args: [{ selector: 'timepicker-harness-example', providers: [provideNativeDateAdapter()], imports: [MatTimepickerModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n\n" }] }], ctorParameters: () => [] }); -/** - * Generated bundle index. Do not edit. - */ - export { TimepickerCustomIconExample, TimepickerDatepickerIntegrationExample, TimepickerFormsExample, TimepickerHarnessExample, TimepickerLocaleExample, TimepickerOptionsExample, TimepickerOverviewExample, TimepickerValidationExample }; //# sourceMappingURL=timepicker.mjs.map diff --git a/fesm2022/material/timepicker.mjs.map b/fesm2022/material/timepicker.mjs.map index fba1038e89..e215878889 100755 --- a/fesm2022/material/timepicker.mjs.map +++ b/fesm2022/material/timepicker.mjs.map @@ -1 +1 @@ -{"version":3,"file":"timepicker.mjs","sources":["../../../../../../../src/components-examples/material/timepicker/timepicker-overview/timepicker-overview-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-overview/timepicker-overview-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-forms/timepicker-forms-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-forms/timepicker-forms-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-datepicker-integration/timepicker-datepicker-integration-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-datepicker-integration/timepicker-datepicker-integration-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-validation/timepicker-validation-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-validation/timepicker-validation-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-options/timepicker-options-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-options/timepicker-options-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-custom-icon/timepicker-custom-icon-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-custom-icon/timepicker-custom-icon-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-locale/timepicker-locale-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-locale/timepicker-locale-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker-harness/timepicker-harness-example.ts","../../../../../../../src/components-examples/material/timepicker/timepicker-harness/timepicker-harness-example.html","../../../../../../../src/components-examples/material/timepicker/timepicker_public_index.ts"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Basic timepicker */\n@Component({\n selector: 'timepicker-overview-example',\n templateUrl: 'timepicker-overview-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerOverviewExample {}\n","\n Pick a time\n\n \n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker forms integration */\n@Component({\n selector: 'timepicker-forms-example',\n templateUrl: 'timepicker-forms-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerFormsExample {\n formControl: FormControl;\n\n constructor() {\n const initialValue = new Date();\n initialValue.setHours(12, 30, 0);\n this.formControl = new FormControl(initialValue);\n }\n}\n","\n Pick a time\n \n \n \n\n\n

    Value: {{formControl.value}}

    \n

    Touched: {{formControl.touched}}

    \n

    Dirty: {{formControl.dirty}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\n\n/** @title Timepicker integration with datepicker */\n@Component({\n selector: 'timepicker-datepicker-integration-example',\n templateUrl: 'timepicker-datepicker-integration-example.html',\n styleUrl: './timepicker-datepicker-integration-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatTimepickerModule,\n MatDatepickerModule,\n FormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerDatepickerIntegrationExample {\n value: Date;\n}\n","\n Meeting date\n \n \n \n\n\n\n Meeting time\n \n \n \n\n\n

    Value: {{value}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker validation */\n@Component({\n selector: 'timepicker-validation-example',\n templateUrl: 'timepicker-validation-example.html',\n styleUrl: './timepicker-validation-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerValidationExample {\n formControl = new FormControl(null);\n}\n","\n Pick a time\n \n \n \n\n @if (formControl.errors?.['matTimepickerParse']) {\n Value isn't a valid time\n }\n\n @if (formControl.errors?.['matTimepickerMin']) {\n Value is too early\n }\n\n @if (formControl.errors?.['matTimepickerMax']) {\n Value is too late\n }\n\n\n

    Enter a value before 12:30 PM or after 5:30 PM to see the errors

    \n

    Errors: {{formControl.errors | json}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule, MatTimepickerOption} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker options customization */\n@Component({\n selector: 'timepicker-options-example',\n templateUrl: 'timepicker-options-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerOptionsExample {\n customOptions: MatTimepickerOption[] = [\n {label: 'Morning', value: new Date(2024, 0, 1, 9, 0, 0)},\n {label: 'Noon', value: new Date(2024, 0, 1, 12, 0, 0)},\n {label: 'Evening', value: new Date(2024, 0, 1, 22, 0, 0)},\n ];\n}\n","

    Interval examples

    \n\n
    \n \n Every 45 minutes\n \n \n \n \n
    \n\n
    \n \n Every 3.5 hours\n \n \n \n \n
    \n\n

    Custom list of options

    \n\n
    \n \n Pick a time of day\n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatIcon} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker with custom toggle icon */\n@Component({\n selector: 'timepicker-custom-icon-example',\n templateUrl: 'timepicker-custom-icon-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, MatIcon],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerCustomIconExample {}\n","\n Pick a time\n \n \n keyboard_arrow_down\n \n \n\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {DateAdapter, provideNativeDateAdapter} from '@angular/material/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** @title Timepicker with different locale */\n@Component({\n selector: 'timepicker-locale-example',\n templateUrl: 'timepicker-locale-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, FormsModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerLocaleExample {\n private readonly _adapter = inject>(DateAdapter);\n value = new Date(2024, 0, 1, 13, 45, 0);\n\n protected switchLocale() {\n this._adapter.setLocale('bg-BG');\n }\n}\n","\n Pick a time\n \n \n \n\n\n\n","import {ChangeDetectionStrategy, Component, Signal, signal} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\n\n/**\n * @title Testing with MatTimepickerInputHarness\n */\n@Component({\n selector: 'timepicker-harness-example',\n templateUrl: 'timepicker-harness-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerHarnessExample {\n date: Signal;\n\n constructor() {\n const today = new Date();\n this.date = signal(new Date(today.getFullYear(), today.getMonth(), today.getDate(), 11, 45));\n }\n}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i5","i1"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"timepicker.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-overview/timepicker-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-overview/timepicker-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-forms/timepicker-forms-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-forms/timepicker-forms-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-datepicker-integration/timepicker-datepicker-integration-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-datepicker-integration/timepicker-datepicker-integration-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-validation/timepicker-validation-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-validation/timepicker-validation-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-options/timepicker-options-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-options/timepicker-options-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-custom-icon/timepicker-custom-icon-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-custom-icon/timepicker-custom-icon-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-locale/timepicker-locale-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-locale/timepicker-locale-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-harness/timepicker-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/timepicker/timepicker-harness/timepicker-harness-example.html"],"sourcesContent":["import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Basic timepicker */\n@Component({\n selector: 'timepicker-overview-example',\n templateUrl: 'timepicker-overview-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerOverviewExample {}\n","\n Pick a time\n\n \n \n \n\n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker forms integration */\n@Component({\n selector: 'timepicker-forms-example',\n templateUrl: 'timepicker-forms-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerFormsExample {\n formControl: FormControl;\n\n constructor() {\n const initialValue = new Date();\n initialValue.setHours(12, 30, 0);\n this.formControl = new FormControl(initialValue);\n }\n}\n","\n Pick a time\n \n \n \n\n\n

    Value: {{formControl.value}}

    \n

    Touched: {{formControl.touched}}

    \n

    Dirty: {{formControl.dirty}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatDatepickerModule} from '@angular/material/datepicker';\n\n/** @title Timepicker integration with datepicker */\n@Component({\n selector: 'timepicker-datepicker-integration-example',\n templateUrl: 'timepicker-datepicker-integration-example.html',\n styleUrl: './timepicker-datepicker-integration-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [\n MatFormFieldModule,\n MatInputModule,\n MatTimepickerModule,\n MatDatepickerModule,\n FormsModule,\n ],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerDatepickerIntegrationExample {\n value: Date;\n}\n","\n Meeting date\n \n \n \n\n\n\n Meeting time\n \n \n \n\n\n

    Value: {{value}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {JsonPipe} from '@angular/common';\nimport {FormControl, ReactiveFormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker validation */\n@Component({\n selector: 'timepicker-validation-example',\n templateUrl: 'timepicker-validation-example.html',\n styleUrl: './timepicker-validation-example.css',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, ReactiveFormsModule, JsonPipe],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerValidationExample {\n formControl = new FormControl(null);\n}\n","\n Pick a time\n \n \n \n\n @if (formControl.errors?.['matTimepickerParse']) {\n Value isn't a valid time\n }\n\n @if (formControl.errors?.['matTimepickerMin']) {\n Value is too early\n }\n\n @if (formControl.errors?.['matTimepickerMax']) {\n Value is too late\n }\n\n\n

    Enter a value before 12:30 PM or after 5:30 PM to see the errors

    \n

    Errors: {{formControl.errors | json}}

    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule, MatTimepickerOption} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker options customization */\n@Component({\n selector: 'timepicker-options-example',\n templateUrl: 'timepicker-options-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerOptionsExample {\n customOptions: MatTimepickerOption[] = [\n {label: 'Morning', value: new Date(2024, 0, 1, 9, 0, 0)},\n {label: 'Noon', value: new Date(2024, 0, 1, 12, 0, 0)},\n {label: 'Evening', value: new Date(2024, 0, 1, 22, 0, 0)},\n ];\n}\n","

    Interval examples

    \n\n
    \n \n Every 45 minutes\n \n \n \n \n
    \n\n
    \n \n Every 3.5 hours\n \n \n \n \n
    \n\n

    Custom list of options

    \n\n
    \n \n Pick a time of day\n \n \n \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatIcon} from '@angular/material/icon';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {provideNativeDateAdapter} from '@angular/material/core';\n\n/** @title Timepicker with custom toggle icon */\n@Component({\n selector: 'timepicker-custom-icon-example',\n templateUrl: 'timepicker-custom-icon-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, MatIcon],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerCustomIconExample {}\n","\n Pick a time\n \n \n keyboard_arrow_down\n \n \n\n","import {ChangeDetectionStrategy, Component, inject} from '@angular/core';\nimport {FormsModule} from '@angular/forms';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\nimport {DateAdapter, provideNativeDateAdapter} from '@angular/material/core';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** @title Timepicker with different locale */\n@Component({\n selector: 'timepicker-locale-example',\n templateUrl: 'timepicker-locale-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatFormFieldModule, MatInputModule, MatTimepickerModule, FormsModule, MatButtonModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerLocaleExample {\n private readonly _adapter = inject>(DateAdapter);\n value = new Date(2024, 0, 1, 13, 45, 0);\n\n protected switchLocale() {\n this._adapter.setLocale('bg-BG');\n }\n}\n","\n Pick a time\n \n \n \n\n\n\n","import {ChangeDetectionStrategy, Component, Signal, signal} from '@angular/core';\nimport {provideNativeDateAdapter} from '@angular/material/core';\nimport {MatTimepickerModule} from '@angular/material/timepicker';\n\n/**\n * @title Testing with MatTimepickerInputHarness\n */\n@Component({\n selector: 'timepicker-harness-example',\n templateUrl: 'timepicker-harness-example.html',\n providers: [provideNativeDateAdapter()],\n imports: [MatTimepickerModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TimepickerHarnessExample {\n date: Signal;\n\n constructor() {\n const today = new Date();\n this.date = signal(new Date(today.getFullYear(), today.getMonth(), today.getDate(), 11, 45));\n }\n}\n","\n\n"],"names":["i4","i5","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/toolbar.mjs b/fesm2022/material/toolbar.mjs index a22fdb51ce..1954cc31de 100755 --- a/fesm2022/material/toolbar.mjs +++ b/fesm2022/material/toolbar.mjs @@ -2,7 +2,7 @@ import * as i0 from '@angular/core'; import { Component } from '@angular/core'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i1 from '@angular/material/toolbar'; import { MatToolbarModule } from '@angular/material/toolbar'; @@ -11,22 +11,22 @@ import { MatToolbarModule } from '@angular/material/toolbar'; * @title Basic toolbar */ class ToolbarBasicExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ToolbarBasicExample, isStandalone: true, selector: "toolbar-basic-example", ngImport: i0, template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarBasicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ToolbarBasicExample, isStandalone: true, selector: "toolbar-basic-example", ngImport: i0, template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarBasicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarBasicExample, decorators: [{ type: Component, - args: [{ selector: 'toolbar-basic-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule], template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"] }] + args: [{ selector: 'toolbar-basic-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule], template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"] }] }] }); /** * @title Multi-row toolbar */ class ToolbarMultirowExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarMultirowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ToolbarMultirowExample, isStandalone: true, selector: "toolbar-multirow-example", ngImport: i0, template: "\n\n \n Custom Toolbar\n \n\n\n\n \n Second Line\n \n verified_user\n \n\n\n \n Third Line\n \n favorite\n delete\n \n\n", styles: [".example-icon {\n padding: 0 14px;\n}\n/* #docregion toolbar-position-content-style */\n.example-spacer {\n flex: 1 1 auto;\n}\n/* #enddocregion toolbar-position-content-style */\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i1.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarMultirowExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ToolbarMultirowExample, isStandalone: true, selector: "toolbar-multirow-example", ngImport: i0, template: "\n\n \n Custom Toolbar\n \n\n\n\n \n Second Line\n \n verified_user\n \n\n\n \n Third Line\n \n favorite\n delete\n \n\n", styles: [".example-icon {\n padding: 0 14px;\n}\n/* #docregion toolbar-position-content-style */\n.example-spacer {\n flex: 1 1 auto;\n}\n/* #enddocregion toolbar-position-content-style */\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i1.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarMultirowExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarMultirowExample, decorators: [{ type: Component, args: [{ selector: 'toolbar-multirow-example', imports: [MatToolbarModule, MatIconModule], template: "\n\n \n Custom Toolbar\n \n\n\n\n \n Second Line\n \n verified_user\n \n\n\n \n Third Line\n \n favorite\n delete\n \n\n", styles: [".example-icon {\n padding: 0 14px;\n}\n/* #docregion toolbar-position-content-style */\n.example-spacer {\n flex: 1 1 auto;\n}\n/* #enddocregion toolbar-position-content-style */\n"] }] }] }); @@ -35,10 +35,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Toolbar with just text */ class ToolbarSimpleExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarSimpleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ToolbarSimpleExample, isStandalone: true, selector: "toolbar-simple-example", ngImport: i0, template: "\n My Application\n\n", dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarSimpleExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ToolbarSimpleExample, isStandalone: true, selector: "toolbar-simple-example", ngImport: i0, template: "\n My Application\n\n", dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarSimpleExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarSimpleExample, decorators: [{ type: Component, args: [{ selector: 'toolbar-simple-example', imports: [MatToolbarModule], template: "\n My Application\n\n" }] }] }); @@ -47,29 +47,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor * @title Toolbar overview */ class ToolbarOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ToolbarOverviewExample, isStandalone: true, selector: "toolbar-overview-example", ngImport: i0, template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ToolbarOverviewExample, isStandalone: true, selector: "toolbar-overview-example", ngImport: i0, template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'toolbar-overview-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule], template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"] }] + args: [{ selector: 'toolbar-overview-example', imports: [MatToolbarModule, MatButtonModule, MatIconModule], template: "\n \n My App\n \n \n \n\n", styles: [".example-spacer {\n flex: 1 1 auto;\n}\n"] }] }] }); /** * @title Testing with MatToolbarHarness */ class ToolbarHarnessExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: ToolbarHarnessExample, isStandalone: true, selector: "toolbar-harness-example", ngImport: i0, template: "My App\n\n Row 1\n Row 2\n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i1.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: ToolbarHarnessExample, isStandalone: true, selector: "toolbar-harness-example", ngImport: i0, template: "My App\n\n Row 1\n Row 2\n \n \n \n\n", dependencies: [{ kind: "ngmodule", type: MatToolbarModule }, { kind: "component", type: i1.MatToolbar, selector: "mat-toolbar", inputs: ["color"], exportAs: ["matToolbar"] }, { kind: "directive", type: i1.MatToolbarRow, selector: "mat-toolbar-row", exportAs: ["matToolbarRow"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: ToolbarHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: ToolbarHarnessExample, decorators: [{ type: Component, - args: [{ selector: 'toolbar-harness-example', imports: [MatToolbarModule, MatButtonModule], template: "My App\n\n Row 1\n Row 2\n \n \n \n\n" }] + args: [{ selector: 'toolbar-harness-example', imports: [MatToolbarModule, MatButtonModule], template: "My App\n\n Row 1\n Row 2\n \n \n \n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { ToolbarBasicExample, ToolbarHarnessExample, ToolbarMultirowExample, ToolbarOverviewExample, ToolbarSimpleExample }; //# sourceMappingURL=toolbar.mjs.map diff --git a/fesm2022/material/toolbar.mjs.map b/fesm2022/material/toolbar.mjs.map index e32c6a6c0e..39e84afbff 100755 --- a/fesm2022/material/toolbar.mjs.map +++ b/fesm2022/material/toolbar.mjs.map @@ -1 +1 @@ -{"version":3,"file":"toolbar.mjs","sources":["../../../../../../../src/components-examples/material/toolbar/toolbar-basic/toolbar-basic-example.ts","../../../../../../../src/components-examples/material/toolbar/toolbar-basic/toolbar-basic-example.html","../../../../../../../src/components-examples/material/toolbar/toolbar-multirow/toolbar-multirow-example.ts","../../../../../../../src/components-examples/material/toolbar/toolbar-multirow/toolbar-multirow-example.html","../../../../../../../src/components-examples/material/toolbar/toolbar-simple/toolbar-simple-example.ts","../../../../../../../src/components-examples/material/toolbar/toolbar-simple/toolbar-simple-example.html","../../../../../../../src/components-examples/material/toolbar/toolbar-overview/toolbar-overview-example.ts","../../../../../../../src/components-examples/material/toolbar/toolbar-overview/toolbar-overview-example.html","../../../../../../../src/components-examples/material/toolbar/toolbar-harness/toolbar-harness-example.ts","../../../../../../../src/components-examples/material/toolbar/toolbar-harness/toolbar-harness-example.html","../../../../../../../src/components-examples/material/toolbar/toolbar_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Basic toolbar\n */\n@Component({\n selector: 'toolbar-basic-example',\n templateUrl: 'toolbar-basic-example.html',\n styleUrl: 'toolbar-basic-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule],\n})\nexport class ToolbarBasicExample {}\n","\n \n My App\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Multi-row toolbar\n */\n@Component({\n selector: 'toolbar-multirow-example',\n templateUrl: 'toolbar-multirow-example.html',\n styleUrl: 'toolbar-multirow-example.css',\n imports: [MatToolbarModule, MatIconModule],\n})\nexport class ToolbarMultirowExample {}\n","\n\n \n Custom Toolbar\n \n\n\n\n \n Second Line\n \n verified_user\n \n\n\n \n Third Line\n \n favorite\n delete\n \n\n","import {Component} from '@angular/core';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Toolbar with just text\n */\n@Component({\n selector: 'toolbar-simple-example',\n templateUrl: 'toolbar-simple-example.html',\n imports: [MatToolbarModule],\n})\nexport class ToolbarSimpleExample {}\n","\n My Application\n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Toolbar overview\n */\n@Component({\n selector: 'toolbar-overview-example',\n templateUrl: 'toolbar-overview-example.html',\n styleUrl: 'toolbar-overview-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule],\n})\nexport class ToolbarOverviewExample {}\n","\n \n My App\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Testing with MatToolbarHarness\n */\n@Component({\n selector: 'toolbar-harness-example',\n templateUrl: 'toolbar-harness-example.html',\n imports: [MatToolbarModule, MatButtonModule],\n})\nexport class ToolbarHarnessExample {}\n","My App\n\n Row 1\n Row 2\n \n \n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"toolbar.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-basic/toolbar-basic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-basic/toolbar-basic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-multirow/toolbar-multirow-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-multirow/toolbar-multirow-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-simple/toolbar-simple-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-simple/toolbar-simple-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-overview/toolbar-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-overview/toolbar-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-harness/toolbar-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/toolbar/toolbar-harness/toolbar-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Basic toolbar\n */\n@Component({\n selector: 'toolbar-basic-example',\n templateUrl: 'toolbar-basic-example.html',\n styleUrl: 'toolbar-basic-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule],\n})\nexport class ToolbarBasicExample {}\n","\n \n My App\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Multi-row toolbar\n */\n@Component({\n selector: 'toolbar-multirow-example',\n templateUrl: 'toolbar-multirow-example.html',\n styleUrl: 'toolbar-multirow-example.css',\n imports: [MatToolbarModule, MatIconModule],\n})\nexport class ToolbarMultirowExample {}\n","\n\n \n Custom Toolbar\n \n\n\n\n \n Second Line\n \n verified_user\n \n\n\n \n Third Line\n \n favorite\n delete\n \n\n","import {Component} from '@angular/core';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Toolbar with just text\n */\n@Component({\n selector: 'toolbar-simple-example',\n templateUrl: 'toolbar-simple-example.html',\n imports: [MatToolbarModule],\n})\nexport class ToolbarSimpleExample {}\n","\n My Application\n\n","import {Component} from '@angular/core';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Toolbar overview\n */\n@Component({\n selector: 'toolbar-overview-example',\n templateUrl: 'toolbar-overview-example.html',\n styleUrl: 'toolbar-overview-example.css',\n imports: [MatToolbarModule, MatButtonModule, MatIconModule],\n})\nexport class ToolbarOverviewExample {}\n","\n \n My App\n \n \n \n\n","import {Component} from '@angular/core';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatToolbarModule} from '@angular/material/toolbar';\n\n/**\n * @title Testing with MatToolbarHarness\n */\n@Component({\n selector: 'toolbar-harness-example',\n templateUrl: 'toolbar-harness-example.html',\n imports: [MatToolbarModule, MatButtonModule],\n})\nexport class ToolbarHarnessExample {}\n","My App\n\n Row 1\n Row 2\n \n \n \n\n"],"names":["i2"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/tooltip.mjs b/fesm2022/material/tooltip.mjs index 5cc1fdecf7..a93f42b752 100755 --- a/fesm2022/material/tooltip.mjs +++ b/fesm2022/material/tooltip.mjs @@ -1,21 +1,20 @@ import * as i0 from '@angular/core'; import { Component, ViewEncapsulation } from '@angular/core'; -import * as i3$1 from '@angular/forms'; +import * as i3 from '@angular/forms'; import { FormControl, FormsModule, ReactiveFormsModule } from '@angular/forms'; import * as i2$1 from '@angular/material/tooltip'; import { MatTooltipModule, MAT_TOOLTIP_DEFAULT_OPTIONS } from '@angular/material/tooltip'; -import * as i1$1 from '@angular/material/button'; +import * as i1$2 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; -import * as i2 from '@angular/cdk/scrolling'; +import * as i1$1 from '@angular/cdk/scrolling'; import { CdkScrollable } from '@angular/cdk/scrolling'; -import * as i3 from '@angular/material/select'; +import * as i2 from '@angular/material/select'; import { MatSelectModule } from '@angular/material/select'; import * as i1 from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field'; -import * as i4 from '@angular/material/core'; import * as i2$2 from '@angular/material/input'; import { MatInputModule } from '@angular/material/input'; -import * as i3$2 from '@angular/material/checkbox'; +import * as i2$3 from '@angular/material/checkbox'; import { MatCheckboxModule } from '@angular/material/checkbox'; /** @@ -24,10 +23,10 @@ import { MatCheckboxModule } from '@angular/material/checkbox'; class TooltipAutoHideExample { positionOptions = ['below', 'above', 'left', 'right']; position = new FormControl(this.positionOptions[0]); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipAutoHideExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TooltipAutoHideExample, isStandalone: true, selector: "tooltip-auto-hide-example", ngImport: i0, template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n", styles: [".example-button {\n display: block;\n margin: 80px auto 400px;\n}\n\n.example-container {\n height: 200px;\n overflow: auto;\n border: 1px solid #ccc;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "directive", type: i2.CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "component", type: i3.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipAutoHideExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TooltipAutoHideExample, isStandalone: true, selector: "tooltip-auto-hide-example", ngImport: i0, template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n", styles: [".example-button {\n display: block;\n margin: 80px auto 400px;\n}\n\n.example-container {\n height: 200px;\n overflow: auto;\n border: 1px solid #ccc;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "directive", type: i1$1.CdkScrollable, selector: "[cdk-scrollable], [cdkScrollable]" }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipAutoHideExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipAutoHideExample, decorators: [{ type: Component, args: [{ selector: 'tooltip-auto-hide-example', imports: [ MatFormFieldModule, @@ -37,19 +36,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor CdkScrollable, MatButtonModule, MatTooltipModule, - ], template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n", styles: [".example-button {\n display: block;\n margin: 80px auto 400px;\n}\n\n.example-container {\n height: 200px;\n overflow: auto;\n border: 1px solid #ccc;\n}\n"] }] + ], template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n", styles: [".example-button {\n display: block;\n margin: 80px auto 400px;\n}\n\n.example-container {\n height: 200px;\n overflow: auto;\n border: 1px solid #ccc;\n}\n"] }] }] }); /** * @title Tooltip that can have a custom class applied. */ class TooltipCustomClassExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipCustomClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipCustomClassExample, isStandalone: true, selector: "tooltip-custom-class-example", ngImport: i0, template: "\n", styles: [".example-button {\n margin-top: 16px;\n}\n\n.example-tooltip-uppercase {\n text-transform: uppercase;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], encapsulation: i0.ViewEncapsulation.None }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipCustomClassExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipCustomClassExample, isStandalone: true, selector: "tooltip-custom-class-example", ngImport: i0, template: "\n", styles: [".example-button {\n margin-top: 16px;\n}\n\n.example-tooltip-uppercase {\n text-transform: uppercase;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], encapsulation: i0.ViewEncapsulation.None }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipCustomClassExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipCustomClassExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-custom-class-example', encapsulation: ViewEncapsulation.None, imports: [MatButtonModule, MatTooltipModule], template: "\n", styles: [".example-button {\n margin-top: 16px;\n}\n\n.example-tooltip-uppercase {\n text-transform: uppercase;\n}\n"] }] + args: [{ selector: 'tooltip-custom-class-example', encapsulation: ViewEncapsulation.None, imports: [MatButtonModule, MatTooltipModule], template: "\n", styles: [".example-button {\n margin-top: 16px;\n}\n\n.example-tooltip-uppercase {\n text-transform: uppercase;\n}\n"] }] }] }); /** @@ -58,10 +57,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class TooltipDelayExample { showDelay = new FormControl(1000); hideDelay = new FormControl(2000); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipDelayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipDelayExample, isStandalone: true, selector: "tooltip-delay-example", ngImport: i0, template: "\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n", styles: [".mat-form-field + .mat-form-field,\n.mat-raised-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipDelayExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipDelayExample, isStandalone: true, selector: "tooltip-delay-example", ngImport: i0, template: "\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n", styles: [".mat-form-field + .mat-form-field,\n.mat-raised-button {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "directive", type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipDelayExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipDelayExample, decorators: [{ type: Component, args: [{ selector: 'tooltip-delay-example', imports: [ MatFormFieldModule, @@ -70,7 +69,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatButtonModule, MatTooltipModule, - ], template: "\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n", styles: [".mat-form-field + .mat-form-field,\n.mat-raised-button {\n margin-left: 8px;\n}\n"] }] + ], template: "\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n", styles: [".mat-form-field + .mat-form-field,\n.mat-raised-button {\n margin-left: 8px;\n}\n"] }] }] }); /** @@ -78,24 +77,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class TooltipDisabledExample { disabled = new FormControl(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipDisabledExample, isStandalone: true, selector: "tooltip-disabled-example", ngImport: i0, template: "\n\n\n Tooltip disabled\n\n", styles: [".example-disabled-checkbox {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i3$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipDisabledExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipDisabledExample, isStandalone: true, selector: "tooltip-disabled-example", ngImport: i0, template: "\n\n\n Tooltip disabled\n\n", styles: [".example-disabled-checkbox {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$3.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipDisabledExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipDisabledExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-disabled-example', imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule], template: "\n\n\n Tooltip disabled\n\n", styles: [".example-disabled-checkbox {\n margin-left: 8px;\n}\n"] }] + args: [{ selector: 'tooltip-disabled-example', imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule], template: "\n\n\n Tooltip disabled\n\n", styles: [".example-disabled-checkbox {\n margin-left: 8px;\n}\n"] }] }] }); /** * @title Tooltip that can be manually shown/hidden. */ class TooltipManualExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipManualExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipManualExample, isStandalone: true, selector: "tooltip-manual-example", ngImport: i0, template: "
    \n Click the following buttons to... \n \n \n \n
    \n\n", styles: [".example-action-button {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipManualExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipManualExample, isStandalone: true, selector: "tooltip-manual-example", ngImport: i0, template: "
    \n Click the following buttons to... \n \n \n \n
    \n\n\n", styles: [".example-action-button {\n margin-top: 16px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipManualExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipManualExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-manual-example', imports: [MatButtonModule, MatTooltipModule], template: "
    \n Click the following buttons to... \n \n \n \n
    \n\n", styles: [".example-action-button {\n margin-top: 16px;\n}\n"] }] + args: [{ selector: 'tooltip-manual-example', imports: [MatButtonModule, MatTooltipModule], template: "
    \n Click the following buttons to... \n \n \n \n
    \n\n\n", styles: [".example-action-button {\n margin-top: 16px;\n}\n"] }] }] }); /** @@ -103,10 +102,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class TooltipMessageExample { message = new FormControl('Info about the action'); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipMessageExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipMessageExample, isStandalone: true, selector: "tooltip-message-example", ngImport: i0, template: "\n Tooltip message\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipMessageExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipMessageExample, isStandalone: true, selector: "tooltip-message-example", ngImport: i0, template: "\n Tooltip message\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i2$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipMessageExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipMessageExample, decorators: [{ type: Component, args: [{ selector: 'tooltip-message-example', imports: [ MatFormFieldModule, @@ -115,7 +114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatButtonModule, MatTooltipModule, - ], template: "\n Tooltip message\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"] }] + ], template: "\n Tooltip message\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"] }] }] }); /** Custom options the configure the tooltip's default show/hide delays. */ @@ -128,24 +127,24 @@ const myCustomTooltipDefaults = { * @title Tooltip with a show and hide delay */ class TooltipModifiedDefaultsExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipModifiedDefaultsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipModifiedDefaultsExample, isStandalone: true, selector: "tooltip-modified-defaults-example", providers: [{ provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults }], ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipModifiedDefaultsExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipModifiedDefaultsExample, isStandalone: true, selector: "tooltip-modified-defaults-example", providers: [{ provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults }], ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipModifiedDefaultsExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipModifiedDefaultsExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-modified-defaults-example', providers: [{ provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults }], imports: [MatButtonModule, MatTooltipModule], template: "\n" }] + args: [{ selector: 'tooltip-modified-defaults-example', providers: [{ provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults }], imports: [MatButtonModule, MatTooltipModule], template: "\n" }] }] }); /** * @title Basic tooltip */ class TooltipOverviewExample { - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipOverviewExample, isStandalone: true, selector: "tooltip-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipOverviewExample, isStandalone: true, selector: "tooltip-overview-example", ngImport: i0, template: "\n", dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-overview-example', imports: [MatButtonModule, MatTooltipModule], template: "\n" }] + args: [{ selector: 'tooltip-overview-example', imports: [MatButtonModule, MatTooltipModule], template: "\n" }] }] }); /** @@ -154,10 +153,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor class TooltipPositionExample { positionOptions = ['after', 'before', 'above', 'below', 'left', 'right']; position = new FormControl(this.positionOptions[0]); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TooltipPositionExample, isStandalone: true, selector: "tooltip-position-example", ngImport: i0, template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i4.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipPositionExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TooltipPositionExample, isStandalone: true, selector: "tooltip-position-example", ngImport: i0, template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i2.MatSelect, selector: "mat-select", inputs: ["aria-describedby", "panelClass", "disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator", "placeholder", "required", "multiple", "disableOptionCentering", "compareWith", "value", "aria-label", "aria-labelledby", "errorStateMatcher", "typeaheadDebounceInterval", "sortComparator", "id", "panelWidth", "canSelectNullableOptions"], outputs: ["openedChange", "opened", "closed", "selectionChange", "valueChange"], exportAs: ["matSelect"] }, { kind: "component", type: i2.MatOption, selector: "mat-option", inputs: ["value", "id", "disabled"], outputs: ["onSelectionChange"], exportAs: ["matOption"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipPositionExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipPositionExample, decorators: [{ type: Component, args: [{ selector: 'tooltip-position-example', imports: [ MatFormFieldModule, @@ -166,7 +165,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor ReactiveFormsModule, MatButtonModule, MatTooltipModule, - ], template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"] }] + ], template: "\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n", styles: [".example-user-input {\n margin-right: 8px;\n}\n"] }] }] }); /** @@ -174,12 +173,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class TooltipPositionAtOriginExample { enabled = new FormControl(false); - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipPositionAtOriginExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipPositionAtOriginExample, isStandalone: true, selector: "tooltip-position-at-origin-example", ngImport: i0, template: "\n\n\n Position at origin enabled\n\n", styles: ["button.demo-button {\n width: 500px;\n height: 500px;\n}\n\n.example-enabled-checkbox {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i3$2.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3$1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipPositionAtOriginExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipPositionAtOriginExample, isStandalone: true, selector: "tooltip-position-at-origin-example", ngImport: i0, template: "\n\n\n Position at origin enabled\n\n", styles: ["button.demo-button {\n width: 500px;\n height: 500px;\n}\n\n.example-enabled-checkbox {\n margin-left: 8px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$2.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i2$3.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "aria-expanded", "aria-controls", "aria-owns", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "disabledInteractive", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipPositionAtOriginExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipPositionAtOriginExample, decorators: [{ type: Component, - args: [{ selector: 'tooltip-position-at-origin-example', imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule], template: "\n\n\n Position at origin enabled\n\n", styles: ["button.demo-button {\n width: 500px;\n height: 500px;\n}\n\n.example-enabled-checkbox {\n margin-left: 8px;\n}\n"] }] + args: [{ selector: 'tooltip-position-at-origin-example', imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule], template: "\n\n\n Position at origin enabled\n\n", styles: ["button.demo-button {\n width: 500px;\n height: 500px;\n}\n\n.example-enabled-checkbox {\n margin-left: 8px;\n}\n"] }] }] }); /** @@ -187,17 +186,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImpor */ class TooltipHarnessExample { message = 'Tooltip message'; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TooltipHarnessExample, isStandalone: true, selector: "tooltip-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TooltipHarnessExample, isStandalone: true, selector: "tooltip-harness-example", ngImport: i0, template: "\n\n", dependencies: [{ kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2$1.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }] }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TooltipHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TooltipHarnessExample, decorators: [{ type: Component, args: [{ selector: 'tooltip-harness-example', imports: [MatTooltipModule], template: "\n\n" }] }] }); -/** - * Generated bundle index. Do not edit. - */ - export { TooltipAutoHideExample, TooltipCustomClassExample, TooltipDelayExample, TooltipDisabledExample, TooltipHarnessExample, TooltipManualExample, TooltipMessageExample, TooltipModifiedDefaultsExample, TooltipOverviewExample, TooltipPositionAtOriginExample, TooltipPositionExample }; //# sourceMappingURL=tooltip.mjs.map diff --git a/fesm2022/material/tooltip.mjs.map b/fesm2022/material/tooltip.mjs.map index a726952588..e6a7d06649 100755 --- a/fesm2022/material/tooltip.mjs.map +++ b/fesm2022/material/tooltip.mjs.map @@ -1 +1 @@ -{"version":3,"file":"tooltip.mjs","sources":["../../../../../../../src/components-examples/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-custom-class/tooltip-custom-class-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-custom-class/tooltip-custom-class-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-delay/tooltip-delay-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-delay/tooltip-delay-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-disabled/tooltip-disabled-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-disabled/tooltip-disabled-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-manual/tooltip-manual-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-manual/tooltip-manual-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-message/tooltip-message-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-message/tooltip-message-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-overview/tooltip-overview-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-overview/tooltip-overview-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-position/tooltip-position-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-position/tooltip-position-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip-harness/tooltip-harness-example.ts","../../../../../../../src/components-examples/material/tooltip/tooltip-harness/tooltip-harness-example.html","../../../../../../../src/components-examples/material/tooltip/tooltip_public_index.ts"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {TooltipPosition, MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {CdkScrollable} from '@angular/cdk/scrolling';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip that demonstrates auto-hiding when it clips out of its scrolling container.\n */\n@Component({\n selector: 'tooltip-auto-hide-example',\n templateUrl: 'tooltip-auto-hide-example.html',\n styleUrl: 'tooltip-auto-hide-example.css',\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n FormsModule,\n ReactiveFormsModule,\n CdkScrollable,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipAutoHideExample {\n positionOptions: TooltipPosition[] = ['below', 'above', 'left', 'right'];\n position = new FormControl(this.positionOptions[0]);\n}\n","\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can have a custom class applied.\n */\n@Component({\n selector: 'tooltip-custom-class-example',\n templateUrl: 'tooltip-custom-class-example.html',\n styleUrl: 'tooltip-custom-class-example.css',\n // Need to remove view encapsulation so that the custom tooltip style defined in\n // `tooltip-custom-class-example.css` will not be scoped to this component's view.\n encapsulation: ViewEncapsulation.None,\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipCustomClassExample {}\n","\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a show and hide delay\n */\n@Component({\n selector: 'tooltip-delay-example',\n templateUrl: 'tooltip-delay-example.html',\n styleUrl: 'tooltip-delay-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipDelayExample {\n showDelay = new FormControl(1000);\n hideDelay = new FormControl(2000);\n}\n","\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can be disabled\n */\n@Component({\n selector: 'tooltip-disabled-example',\n templateUrl: 'tooltip-disabled-example.html',\n styleUrl: 'tooltip-disabled-example.css',\n imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule],\n})\nexport class TooltipDisabledExample {\n disabled = new FormControl(false);\n}\n","\n\n\n Tooltip disabled\n\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can be manually shown/hidden.\n */\n@Component({\n selector: 'tooltip-manual-example',\n templateUrl: 'tooltip-manual-example.html',\n styleUrl: 'tooltip-manual-example.css',\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipManualExample {}\n","
    \n Click the following buttons to... \n \n \n \n
    \n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a changing message\n */\n@Component({\n selector: 'tooltip-message-example',\n templateUrl: 'tooltip-message-example.html',\n styleUrl: 'tooltip-message-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipMessageExample {\n message = new FormControl('Info about the action');\n}\n","\n Tooltip message\n \n\n\n\n","import {Component} from '@angular/core';\nimport {\n MAT_TOOLTIP_DEFAULT_OPTIONS,\n MatTooltipDefaultOptions,\n MatTooltipModule,\n} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** Custom options the configure the tooltip's default show/hide delays. */\nexport const myCustomTooltipDefaults: MatTooltipDefaultOptions = {\n showDelay: 1000,\n hideDelay: 1000,\n touchendHideDelay: 1000,\n};\n\n/**\n * @title Tooltip with a show and hide delay\n */\n@Component({\n selector: 'tooltip-modified-defaults-example',\n templateUrl: 'tooltip-modified-defaults-example.html',\n providers: [{provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults}],\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipModifiedDefaultsExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic tooltip\n */\n@Component({\n selector: 'tooltip-overview-example',\n templateUrl: 'tooltip-overview-example.html',\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipOverviewExample {}\n","\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {TooltipPosition, MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a custom position\n */\n@Component({\n selector: 'tooltip-position-example',\n templateUrl: 'tooltip-position-example.html',\n styleUrl: 'tooltip-position-example.css',\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipPositionExample {\n positionOptions: TooltipPosition[] = ['after', 'before', 'above', 'below', 'left', 'right'];\n position = new FormControl(this.positionOptions[0]);\n}\n","\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic tooltip\n */\n@Component({\n selector: 'tooltip-position-at-origin-example',\n templateUrl: 'tooltip-position-at-origin-example.html',\n styleUrl: 'tooltip-position-at-origin-example.css',\n imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule],\n})\nexport class TooltipPositionAtOriginExample {\n enabled = new FormControl(false);\n}\n","\n\n\n Position at origin enabled\n\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\n\n/**\n * @title Testing with MatTooltipHarness\n */\n@Component({\n selector: 'tooltip-harness-example',\n templateUrl: 'tooltip-harness-example.html',\n imports: [MatTooltipModule],\n})\nexport class TooltipHarnessExample {\n message = 'Tooltip message';\n}\n","\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i5","i7","i2","i3","i1","i4","i6"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"tooltip.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-auto-hide/tooltip-auto-hide-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-custom-class/tooltip-custom-class-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-custom-class/tooltip-custom-class-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-delay/tooltip-delay-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-delay/tooltip-delay-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-disabled/tooltip-disabled-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-disabled/tooltip-disabled-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-manual/tooltip-manual-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-manual/tooltip-manual-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-message/tooltip-message-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-message/tooltip-message-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-modified-defaults/tooltip-modified-defaults-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-overview/tooltip-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-overview/tooltip-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-position/tooltip-position-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-position/tooltip-position-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-position-at-origin/tooltip-position-at-origin-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-harness/tooltip-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tooltip/tooltip-harness/tooltip-harness-example.html"],"sourcesContent":["import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {TooltipPosition, MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {CdkScrollable} from '@angular/cdk/scrolling';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip that demonstrates auto-hiding when it clips out of its scrolling container.\n */\n@Component({\n selector: 'tooltip-auto-hide-example',\n templateUrl: 'tooltip-auto-hide-example.html',\n styleUrl: 'tooltip-auto-hide-example.css',\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n FormsModule,\n ReactiveFormsModule,\n CdkScrollable,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipAutoHideExample {\n positionOptions: TooltipPosition[] = ['below', 'above', 'left', 'right'];\n position = new FormControl(this.positionOptions[0]);\n}\n","\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n
    \n \n
    \n","import {Component, ViewEncapsulation} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can have a custom class applied.\n */\n@Component({\n selector: 'tooltip-custom-class-example',\n templateUrl: 'tooltip-custom-class-example.html',\n styleUrl: 'tooltip-custom-class-example.css',\n // Need to remove view encapsulation so that the custom tooltip style defined in\n // `tooltip-custom-class-example.css` will not be scoped to this component's view.\n encapsulation: ViewEncapsulation.None,\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipCustomClassExample {}\n","\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a show and hide delay\n */\n@Component({\n selector: 'tooltip-delay-example',\n templateUrl: 'tooltip-delay-example.html',\n styleUrl: 'tooltip-delay-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipDelayExample {\n showDelay = new FormControl(1000);\n hideDelay = new FormControl(2000);\n}\n","\n Show delay\n \n milliseconds\n\n\n\n Hide delay\n \n milliseconds\n\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can be disabled\n */\n@Component({\n selector: 'tooltip-disabled-example',\n templateUrl: 'tooltip-disabled-example.html',\n styleUrl: 'tooltip-disabled-example.css',\n imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule],\n})\nexport class TooltipDisabledExample {\n disabled = new FormControl(false);\n}\n","\n\n\n Tooltip disabled\n\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Tooltip that can be manually shown/hidden.\n */\n@Component({\n selector: 'tooltip-manual-example',\n templateUrl: 'tooltip-manual-example.html',\n styleUrl: 'tooltip-manual-example.css',\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipManualExample {}\n","
    \n Click the following buttons to... \n \n \n \n
    \n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatInputModule} from '@angular/material/input';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a changing message\n */\n@Component({\n selector: 'tooltip-message-example',\n templateUrl: 'tooltip-message-example.html',\n styleUrl: 'tooltip-message-example.css',\n imports: [\n MatFormFieldModule,\n MatInputModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipMessageExample {\n message = new FormControl('Info about the action');\n}\n","\n Tooltip message\n \n\n\n\n","import {Component} from '@angular/core';\nimport {\n MAT_TOOLTIP_DEFAULT_OPTIONS,\n MatTooltipDefaultOptions,\n MatTooltipModule,\n} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/** Custom options the configure the tooltip's default show/hide delays. */\nexport const myCustomTooltipDefaults: MatTooltipDefaultOptions = {\n showDelay: 1000,\n hideDelay: 1000,\n touchendHideDelay: 1000,\n};\n\n/**\n * @title Tooltip with a show and hide delay\n */\n@Component({\n selector: 'tooltip-modified-defaults-example',\n templateUrl: 'tooltip-modified-defaults-example.html',\n providers: [{provide: MAT_TOOLTIP_DEFAULT_OPTIONS, useValue: myCustomTooltipDefaults}],\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipModifiedDefaultsExample {}\n","\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic tooltip\n */\n@Component({\n selector: 'tooltip-overview-example',\n templateUrl: 'tooltip-overview-example.html',\n imports: [MatButtonModule, MatTooltipModule],\n})\nexport class TooltipOverviewExample {}\n","\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {TooltipPosition, MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatSelectModule} from '@angular/material/select';\nimport {MatFormFieldModule} from '@angular/material/form-field';\n\n/**\n * @title Tooltip with a custom position\n */\n@Component({\n selector: 'tooltip-position-example',\n templateUrl: 'tooltip-position-example.html',\n styleUrl: 'tooltip-position-example.css',\n imports: [\n MatFormFieldModule,\n MatSelectModule,\n FormsModule,\n ReactiveFormsModule,\n MatButtonModule,\n MatTooltipModule,\n ],\n})\nexport class TooltipPositionExample {\n positionOptions: TooltipPosition[] = ['after', 'before', 'above', 'below', 'left', 'right'];\n position = new FormControl(this.positionOptions[0]);\n}\n","\n Tooltip position\n \n @for (positionOption of positionOptions; track positionOption) {\n {{positionOption}}\n }\n \n\n\n\n","import {Component} from '@angular/core';\nimport {FormControl, FormsModule, ReactiveFormsModule} from '@angular/forms';\nimport {MatCheckboxModule} from '@angular/material/checkbox';\nimport {MatTooltipModule} from '@angular/material/tooltip';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * @title Basic tooltip\n */\n@Component({\n selector: 'tooltip-position-at-origin-example',\n templateUrl: 'tooltip-position-at-origin-example.html',\n styleUrl: 'tooltip-position-at-origin-example.css',\n imports: [MatButtonModule, MatTooltipModule, MatCheckboxModule, FormsModule, ReactiveFormsModule],\n})\nexport class TooltipPositionAtOriginExample {\n enabled = new FormControl(false);\n}\n","\n\n\n Position at origin enabled\n\n","import {Component} from '@angular/core';\nimport {MatTooltipModule} from '@angular/material/tooltip';\n\n/**\n * @title Testing with MatTooltipHarness\n */\n@Component({\n selector: 'tooltip-harness-example',\n templateUrl: 'tooltip-harness-example.html',\n imports: [MatTooltipModule],\n})\nexport class TooltipHarnessExample {\n message = 'Tooltip message';\n}\n","\n\n"],"names":["i2","i3","i4","i6","i5","i1"],"mappings":"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"} \ No newline at end of file diff --git a/fesm2022/material/tree.mjs b/fesm2022/material/tree.mjs index ca19b78e3b..546268358a 100755 --- a/fesm2022/material/tree.mjs +++ b/fesm2022/material/tree.mjs @@ -1,13 +1,13 @@ import { FlatTreeControl, NestedTreeControl } from '@angular/cdk/tree'; import * as i0 from '@angular/core'; -import { signal, Injectable, inject, Component, ChangeDetectionStrategy } from '@angular/core'; +import { Injectable, inject, Component, ChangeDetectionStrategy, signal } from '@angular/core'; import { BehaviorSubject, merge } from 'rxjs'; import { map } from 'rxjs/operators'; -import * as i4 from '@angular/material/progress-bar'; +import * as i1$2 from '@angular/material/progress-bar'; import { MatProgressBarModule } from '@angular/material/progress-bar'; import * as i3 from '@angular/material/icon'; import { MatIconModule } from '@angular/material/icon'; -import * as i2 from '@angular/material/button'; +import * as i1$1 from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button'; import * as i1 from '@angular/material/tree'; import { MatTreeModule, MatTreeFlattener, MatTreeFlatDataSource, MatTreeNestedDataSource } from '@angular/material/tree'; @@ -50,10 +50,10 @@ class DynamicDatabase { isExpandable(node) { return this.dataMap.has(node); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DynamicDatabase, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); - static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DynamicDatabase, providedIn: 'root' }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DynamicDatabase, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); + static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DynamicDatabase, providedIn: 'root' }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: DynamicDatabase, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: DynamicDatabase, decorators: [{ type: Injectable, args: [{ providedIn: 'root' }] }] }); @@ -143,33 +143,14 @@ class TreeDynamicExample { getLevel = (node) => node.level; isExpandable = (node) => node.expandable; hasChild = (_, _nodeData) => _nodeData.expandable; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.0", type: TreeDynamicExample, isStandalone: true, selector: "tree-dynamic-example", ngImport: i0, template: "\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n", styles: [".example-tree-progress-bar {\n margin-left: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i4.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeDynamicExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.0-rc.0", type: TreeDynamicExample, isStandalone: true, selector: "tree-dynamic-example", ngImport: i0, template: "\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n", styles: [".example-tree-progress-bar {\n margin-left: 30px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatProgressBarModule }, { kind: "component", type: i1$2.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeDynamicExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeDynamicExample, decorators: [{ type: Component, - args: [{ selector: 'tree-dynamic-example', imports: [MatTreeModule, MatButtonModule, MatIconModule, MatProgressBarModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n", styles: [".example-tree-progress-bar {\n margin-left: 30px;\n}\n"] }] + args: [{ selector: 'tree-dynamic-example', imports: [MatTreeModule, MatButtonModule, MatIconModule, MatProgressBarModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n", styles: [".example-tree-progress-bar {\n margin-left: 30px;\n}\n"] }] }], ctorParameters: () => [] }); -const TREE_DATA$4 = [ - { - name: 'Fruit', - children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], - }, - { - name: 'Vegetables', - children: [ - { - name: 'Green', - children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], - }, - { - name: 'Orange', - children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], - }, - ], - }, -]; /** * @title Tree with flat nodes */ @@ -185,18 +166,17 @@ class TreeFlatOverviewExample { treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); constructor() { - this.dataSource.data = TREE_DATA$4; + this.dataSource.data = EXAMPLE_DATA$5; } hasChild = (_, node) => node.expandable; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeFlatOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeFlatOverviewExample, isStandalone: true, selector: "tree-flat-overview-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeFlatOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeFlatOverviewExample, isStandalone: true, selector: "tree-flat-overview-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeFlatOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeFlatOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'tree-flat-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] + args: [{ selector: 'tree-flat-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] }], ctorParameters: () => [] }); - -const TREE_DATA$3 = [ +const EXAMPLE_DATA$5 = [ { name: 'Fruit', children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], @@ -215,36 +195,41 @@ const TREE_DATA$3 = [ ], }, ]; + /** * @title Tree with flat nodes (childrenAccessor) */ class TreeFlatChildAccessorOverviewExample { - dataSource = TREE_DATA$3; + dataSource = EXAMPLE_DATA$4; childrenAccessor = (node) => node.children ?? []; hasChild = (_, node) => !!node.children && node.children.length > 0; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeFlatChildAccessorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeFlatChildAccessorOverviewExample, isStandalone: true, selector: "tree-flat-child-accessor-overview-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeFlatChildAccessorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeFlatChildAccessorOverviewExample, isStandalone: true, selector: "tree-flat-child-accessor-overview-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeFlatChildAccessorOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeFlatChildAccessorOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'tree-flat-child-accessor-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] + args: [{ selector: 'tree-flat-child-accessor-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] }] }); - -const FLAT_TREE_DATA = [ +const EXAMPLE_DATA$4 = [ { - name: 'Flat Group 1', - children: [{ name: 'Flat Leaf 1.1' }, { name: 'Flat Leaf 1.2' }, { name: 'Flat Leaf 1.3' }], + name: 'Fruit', + children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], }, { - name: 'Flat Group 2', + name: 'Vegetables', children: [ { - name: 'Flat Group 2.1', - children: [{ name: 'Flat Leaf 2.1.1' }, { name: 'Flat Leaf 2.1.2' }, { name: 'Flat Leaf 2.1.3' }], + name: 'Green', + children: [{ name: 'Broccoli' }, { name: 'Brussels sprouts' }], + }, + { + name: 'Orange', + children: [{ name: 'Pumpkins' }, { name: 'Carrots' }], }, ], }, ]; + /** * @title Testing with MatTreeHarness */ @@ -260,18 +245,32 @@ class TreeHarnessExample { treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); constructor() { - this.dataSource.data = FLAT_TREE_DATA; + this.dataSource.data = EXAMPLE_DATA$3; } hasChild = (_, node) => node.expandable; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeHarnessExample, isStandalone: true, selector: "tree-harness-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeHarnessExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeHarnessExample, isStandalone: true, selector: "tree-harness-example", ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n", dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeHarnessExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeHarnessExample, decorators: [{ type: Component, - args: [{ selector: 'tree-harness-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] + args: [{ selector: 'tree-harness-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n" }] }], ctorParameters: () => [] }); +const EXAMPLE_DATA$3 = [ + { + name: 'Flat Group 1', + children: [{ name: 'Flat Leaf 1.1' }, { name: 'Flat Leaf 1.2' }, { name: 'Flat Leaf 1.3' }], + }, + { + name: 'Flat Group 2', + children: [ + { + name: 'Flat Group 2.1', + children: [{ name: 'Flat Leaf 2.1.1' }, { name: 'Flat Leaf 2.1.2' }, { name: 'Flat Leaf 2.1.3' }], + }, + ], + }, +]; -const LOAD_MORE = 'LOAD_MORE'; let loadMoreId = 1; /** Nested node */ class NestedNode { @@ -358,7 +357,7 @@ class LoadmoreDatabase { .map(name => this._generateNode(name, parent.name)); if (newChildrenNumber < children.length) { // Need a new "Load More" node - nodes.push(new NestedNode(`${LOAD_MORE}-${loadMoreId++}`, false, name, true)); + nodes.push(new NestedNode(`LOAD_MORE-${loadMoreId++}`, false, name, true)); } parent.childrenChange.next(nodes); this.dataChange.next(this.dataChange.value); @@ -369,10 +368,10 @@ class LoadmoreDatabase { } return this.nodes.get(name); } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LoadmoreDatabase, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); - static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LoadmoreDatabase }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: LoadmoreDatabase, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); + static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: LoadmoreDatabase }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: LoadmoreDatabase, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: LoadmoreDatabase, decorators: [{ type: Injectable }] }); /** @@ -436,15 +435,32 @@ class TreeLoadmoreExample { } } } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeLoadmoreExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeLoadmoreExample, isStandalone: true, selector: "tree-loadmore-example", providers: [LoadmoreDatabase], ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n", styles: [".example-load-more {\n border-radius: 10px;\n padding-left: 15px;\n padding-right: 15px;\n cursor: pointer;\n}\n.example-load-more:focus {\n /*\n Display a focus state for the \"Load More\" button.\n 0.12 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.12);\n}\n.example-load-more:hover {\n /*\n Display a focus state for the \"Load More\" button.\n 0.04 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.04);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeLoadmoreExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeLoadmoreExample, isStandalone: true, selector: "tree-loadmore-example", providers: [LoadmoreDatabase], ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n", styles: [".example-load-more {\n border-radius: 10px;\n padding-left: 15px;\n padding-right: 15px;\n cursor: pointer;\n}\n.example-load-more:focus {\n /*\n Display a focus state for the \"Load More\" button.\n 0.12 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.12);\n}\n.example-load-more:hover {\n /*\n Display a focus state for the \"Load More\" button.\n 0.04 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.04);\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeLoadmoreExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeLoadmoreExample, decorators: [{ type: Component, - args: [{ selector: 'tree-loadmore-example', providers: [LoadmoreDatabase], imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n", styles: [".example-load-more {\n border-radius: 10px;\n padding-left: 15px;\n padding-right: 15px;\n cursor: pointer;\n}\n.example-load-more:focus {\n /*\n Display a focus state for the \"Load More\" button.\n 0.12 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.12);\n}\n.example-load-more:hover {\n /*\n Display a focus state for the \"Load More\" button.\n 0.04 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.04);\n}\n"] }] + args: [{ selector: 'tree-loadmore-example', providers: [LoadmoreDatabase], imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n", styles: [".example-load-more {\n border-radius: 10px;\n padding-left: 15px;\n padding-right: 15px;\n cursor: pointer;\n}\n.example-load-more:focus {\n /*\n Display a focus state for the \"Load More\" button.\n 0.12 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.12);\n}\n.example-load-more:hover {\n /*\n Display a focus state for the \"Load More\" button.\n 0.04 is a common value in Material Design\n */\n background: rgba(0, 0, 0, 0.04);\n}\n"] }] }], ctorParameters: () => [] }); -const TREE_DATA$2 = [ +/** + * @title Tree with nested nodes + */ +class TreeNestedOverviewExample { + treeControl = new NestedTreeControl(node => node.children); + dataSource = new MatTreeNestedDataSource(); + constructor() { + this.dataSource.data = EXAMPLE_DATA$2; + } + hasChild = (_, node) => !!node.children && node.children.length > 0; + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeNestedOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeNestedOverviewExample, isStandalone: true, selector: "tree-nested-overview-example", ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatNestedTreeNode, selector: "mat-nested-tree-node", inputs: ["matNestedTreeNode", "disabled", "tabIndex"], outputs: ["activation", "expandedChange"], exportAs: ["matNestedTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNodeOutlet, selector: "[matTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); +} +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeNestedOverviewExample, decorators: [{ + type: Component, + args: [{ selector: 'tree-nested-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"] }] + }], ctorParameters: () => [] }); +const EXAMPLE_DATA$2 = [ { name: 'Fruit', children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], @@ -463,25 +479,22 @@ const TREE_DATA$2 = [ ], }, ]; + /** - * @title Tree with nested nodes + * @title Tree with nested nodes (childrenAccessor) */ -class TreeNestedOverviewExample { - treeControl = new NestedTreeControl(node => node.children); - dataSource = new MatTreeNestedDataSource(); - constructor() { - this.dataSource.data = TREE_DATA$2; - } +class TreeNestedChildAccessorOverviewExample { + childrenAccessor = (node) => node.children ?? []; + dataSource = EXAMPLE_DATA$1; hasChild = (_, node) => !!node.children && node.children.length > 0; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeNestedOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeNestedOverviewExample, isStandalone: true, selector: "tree-nested-overview-example", ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatNestedTreeNode, selector: "mat-nested-tree-node", inputs: ["matNestedTreeNode", "disabled", "tabIndex"], outputs: ["activation", "expandedChange"], exportAs: ["matNestedTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNodeOutlet, selector: "[matTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeNestedChildAccessorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeNestedChildAccessorOverviewExample, isStandalone: true, selector: "tree-nested-child-accessor-overview-example", ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatNestedTreeNode, selector: "mat-nested-tree-node", inputs: ["matNestedTreeNode", "disabled", "tabIndex"], outputs: ["activation", "expandedChange"], exportAs: ["matNestedTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNodeOutlet, selector: "[matTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeNestedOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeNestedChildAccessorOverviewExample, decorators: [{ type: Component, - args: [{ selector: 'tree-nested-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"] }] - }], ctorParameters: () => [] }); - -const TREE_DATA$1 = [ + args: [{ selector: 'tree-nested-child-accessor-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"] }] + }] }); +const EXAMPLE_DATA$1 = [ { name: 'Fruit', children: [{ name: 'Apple' }, { name: 'Banana' }, { name: 'Fruit loops' }], @@ -500,22 +513,31 @@ const TREE_DATA$1 = [ ], }, ]; + /** - * @title Tree with nested nodes (childrenAccessor) + * @title Tree with flat nodes */ -class TreeNestedChildAccessorOverviewExample { - childrenAccessor = (node) => node.children ?? []; - dataSource = TREE_DATA$1; - hasChild = (_, node) => !!node.children && node.children.length > 0; - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeNestedChildAccessorOverviewExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeNestedChildAccessorOverviewExample, isStandalone: true, selector: "tree-nested-child-accessor-overview-example", ngImport: i0, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatNestedTreeNode, selector: "mat-nested-tree-node", inputs: ["matNestedTreeNode", "disabled", "tabIndex"], outputs: ["activation", "expandedChange"], exportAs: ["matNestedTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodeToggle, selector: "[matTreeNodeToggle]", inputs: ["matTreeNodeToggleRecursive"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNodeOutlet, selector: "[matTreeNodeOutlet]" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); +class TreeLegacyKeyboardInterfaceExample { + treeControl = new FlatTreeControl(node => node.level, node => node.expandable); + dataSource = new ArrayDataSource(EXAMPLE_DATA); + hasChild = (_, node) => node.expandable; + getParentNode(node) { + const nodeIndex = EXAMPLE_DATA.indexOf(node); + for (let i = nodeIndex - 1; i >= 0; i--) { + if (EXAMPLE_DATA[i].level === node.level - 1) { + return EXAMPLE_DATA[i]; + } + } + return null; + } + static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeLegacyKeyboardInterfaceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); + static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.0-rc.0", type: TreeLegacyKeyboardInterfaceExample, isStandalone: true, selector: "tree-legacy-keyboard-interface-example", providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1$1.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button], button[matIconButton], a[matIconButton]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); } -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeNestedChildAccessorOverviewExample, decorators: [{ +i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-rc.0", ngImport: i0, type: TreeLegacyKeyboardInterfaceExample, decorators: [{ type: Component, - args: [{ selector: 'tree-nested-child-accessor-overview-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n", styles: [".example-tree-invisible {\n display: none;\n}\n\n.example-tree ul,\n.example-tree li {\n margin-top: 0;\n margin-bottom: 0;\n list-style-type: none;\n}\n\n/*\n * This padding sets alignment of the nested nodes.\n */\n.example-tree .mat-nested-tree-node div[role=group] {\n padding-left: 40px;\n}\n\n/*\n * Padding for leaf nodes.\n * Leaf nodes need to have padding so as to align with other non-leaf nodes\n * under the same parent.\n */\n.example-tree div[role=group] > .mat-nested-tree-node {\n padding-left: 40px;\n}\n"] }] + args: [{ selector: 'tree-legacy-keyboard-interface-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] }] }); - -const TREE_DATA = [ +const EXAMPLE_DATA = [ { name: 'Fruit', expandable: true, @@ -572,33 +594,6 @@ const TREE_DATA = [ level: 2, }, ]; -/** - * @title Tree with flat nodes - */ -class TreeLegacyKeyboardInterfaceExample { - treeControl = new FlatTreeControl(node => node.level, node => node.expandable); - dataSource = new ArrayDataSource(TREE_DATA); - hasChild = (_, node) => node.expandable; - getParentNode(node) { - const nodeIndex = TREE_DATA.indexOf(node); - for (let i = nodeIndex - 1; i >= 0; i--) { - if (TREE_DATA[i].level === node.level - 1) { - return TREE_DATA[i]; - } - } - return null; - } - static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeLegacyKeyboardInterfaceExample, deps: [], target: i0.ɵɵFactoryTarget.Component }); - static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.0", type: TreeLegacyKeyboardInterfaceExample, isStandalone: true, selector: "tree-legacy-keyboard-interface-example", providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], ngImport: i0, template: "\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"], dependencies: [{ kind: "ngmodule", type: MatTreeModule }, { kind: "directive", type: i1.MatTreeNodeDef, selector: "[matTreeNodeDef]", inputs: ["matTreeNodeDefWhen", "matTreeNode"] }, { kind: "directive", type: i1.MatTreeNodePadding, selector: "[matTreeNodePadding]", inputs: ["matTreeNodePadding", "matTreeNodePaddingIndent"] }, { kind: "component", type: i1.MatTree, selector: "mat-tree", exportAs: ["matTree"] }, { kind: "directive", type: i1.MatTreeNode, selector: "mat-tree-node", inputs: ["tabIndex", "disabled"], outputs: ["activation", "expandedChange"], exportAs: ["matTreeNode"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button], a[mat-icon-button]", exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatIconModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); -} -i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0", ngImport: i0, type: TreeLegacyKeyboardInterfaceExample, decorators: [{ - type: Component, - args: [{ selector: 'tree-legacy-keyboard-interface-example', imports: [MatTreeModule, MatButtonModule, MatIconModule], providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER], changeDetection: ChangeDetectionStrategy.OnPush, template: "\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n", styles: [".example-tree-node {\n display: flex;\n align-items: center;\n}\n"] }] - }] }); - -/** - * Generated bundle index. Do not edit. - */ export { TreeDynamicExample, TreeFlatChildAccessorOverviewExample, TreeFlatOverviewExample, TreeHarnessExample, TreeLegacyKeyboardInterfaceExample, TreeLoadmoreExample, TreeNestedChildAccessorOverviewExample, TreeNestedOverviewExample }; //# sourceMappingURL=tree.mjs.map diff --git a/fesm2022/material/tree.mjs.map b/fesm2022/material/tree.mjs.map index 6d9dc5b6c6..f7a7549335 100755 --- a/fesm2022/material/tree.mjs.map +++ b/fesm2022/material/tree.mjs.map @@ -1 +1 @@ -{"version":3,"file":"tree.mjs","sources":["../../../../../../../src/components-examples/material/tree/tree-dynamic/tree-dynamic-example.ts","../../../../../../../src/components-examples/material/tree/tree-dynamic/tree-dynamic-example.html","../../../../../../../src/components-examples/material/tree/tree-flat-overview/tree-flat-overview-example.ts","../../../../../../../src/components-examples/material/tree/tree-flat-overview/tree-flat-overview-example.html","../../../../../../../src/components-examples/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example.ts","../../../../../../../src/components-examples/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example.html","../../../../../../../src/components-examples/material/tree/tree-harness/tree-harness-example.ts","../../../../../../../src/components-examples/material/tree/tree-harness/tree-harness-example.html","../../../../../../../src/components-examples/material/tree/tree-loadmore/tree-loadmore-example.ts","../../../../../../../src/components-examples/material/tree/tree-loadmore/tree-loadmore-example.html","../../../../../../../src/components-examples/material/tree/tree-nested-overview/tree-nested-overview-example.ts","../../../../../../../src/components-examples/material/tree/tree-nested-overview/tree-nested-overview-example.html","../../../../../../../src/components-examples/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts","../../../../../../../src/components-examples/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.html","../../../../../../../src/components-examples/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts","../../../../../../../src/components-examples/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.html","../../../../../../../src/components-examples/material/tree/tree_public_index.ts"],"sourcesContent":["import {CollectionViewer, SelectionChange, DataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, Injectable, inject, signal} from '@angular/core';\nimport {BehaviorSubject, merge, Observable} from 'rxjs';\nimport {map} from 'rxjs/operators';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTreeModule} from '@angular/material/tree';\n\n/** Flat node with expandable and level information */\nexport class DynamicFlatNode {\n constructor(\n public item: string,\n public level = 1,\n public expandable = false,\n public isLoading = signal(false),\n ) {}\n}\n\n/**\n * Database for dynamic data. When expanding a node in the tree, the data source will need to fetch\n * the descendants data from the database.\n */\n@Injectable({providedIn: 'root'})\nexport class DynamicDatabase {\n dataMap = new Map([\n ['Fruits', ['Apple', 'Orange', 'Banana']],\n ['Vegetables', ['Tomato', 'Potato', 'Onion']],\n ['Apple', ['Fuji', 'Macintosh']],\n ['Onion', ['Yellow', 'White', 'Purple']],\n ]);\n\n rootLevelNodes: string[] = ['Fruits', 'Vegetables'];\n\n /** Initial data from database */\n initialData(): DynamicFlatNode[] {\n return this.rootLevelNodes.map(name => new DynamicFlatNode(name, 0, true));\n }\n\n getChildren(node: string): string[] | undefined {\n return this.dataMap.get(node);\n }\n\n isExpandable(node: string): boolean {\n return this.dataMap.has(node);\n }\n}\n/**\n * File database, it can build a tree structured Json object from string.\n * Each node in Json object represents a file or a directory. For a file, it has filename and type.\n * For a directory, it has filename and children (a list of files or directories).\n * The input will be a json object string, and the output is a list of `FileNode` with nested\n * structure.\n */\nexport class DynamicDataSource implements DataSource {\n dataChange = new BehaviorSubject([]);\n\n get data(): DynamicFlatNode[] {\n return this.dataChange.value;\n }\n set data(value: DynamicFlatNode[]) {\n this._treeControl.dataNodes = value;\n this.dataChange.next(value);\n }\n\n constructor(\n private _treeControl: FlatTreeControl,\n private _database: DynamicDatabase,\n ) {}\n\n connect(collectionViewer: CollectionViewer): Observable {\n this._treeControl.expansionModel.changed.subscribe(change => {\n if (\n (change as SelectionChange).added ||\n (change as SelectionChange).removed\n ) {\n this.handleTreeControl(change as SelectionChange);\n }\n });\n\n return merge(collectionViewer.viewChange, this.dataChange).pipe(map(() => this.data));\n }\n\n disconnect(collectionViewer: CollectionViewer): void {}\n\n /** Handle expand/collapse behaviors */\n handleTreeControl(change: SelectionChange) {\n if (change.added) {\n change.added.forEach(node => this.toggleNode(node, true));\n }\n if (change.removed) {\n change.removed\n .slice()\n .reverse()\n .forEach(node => this.toggleNode(node, false));\n }\n }\n\n /**\n * Toggle the node, remove from display list\n */\n toggleNode(node: DynamicFlatNode, expand: boolean) {\n const children = this._database.getChildren(node.item);\n const index = this.data.indexOf(node);\n if (!children || index < 0) {\n // If no children, or cannot find the node, no op\n return;\n }\n\n node.isLoading.set(true);\n\n setTimeout(() => {\n if (expand) {\n const nodes = children.map(\n name => new DynamicFlatNode(name, node.level + 1, this._database.isExpandable(name)),\n );\n this.data.splice(index + 1, 0, ...nodes);\n } else {\n let count = 0;\n for (\n let i = index + 1;\n i < this.data.length && this.data[i].level > node.level;\n i++, count++\n ) {}\n this.data.splice(index + 1, count);\n }\n\n // notify the change\n this.dataChange.next(this.data);\n node.isLoading.set(false);\n }, 1000);\n }\n}\n\n/**\n * @title Tree with dynamic data\n */\n@Component({\n selector: 'tree-dynamic-example',\n templateUrl: 'tree-dynamic-example.html',\n styleUrl: 'tree-dynamic-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule, MatProgressBarModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeDynamicExample {\n constructor() {\n const database = inject(DynamicDatabase);\n\n this.treeControl = new FlatTreeControl(this.getLevel, this.isExpandable);\n this.dataSource = new DynamicDataSource(this.treeControl, database);\n\n this.dataSource.data = database.initialData();\n }\n\n treeControl: FlatTreeControl;\n\n dataSource: DynamicDataSource;\n\n getLevel = (node: DynamicFlatNode) => node.level;\n\n isExpandable = (node: DynamicFlatNode) => node.expandable;\n\n hasChild = (_: number, _nodeData: DynamicFlatNode) => _nodeData.expandable;\n}\n","\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n","import {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\nconst TREE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'tree-flat-overview-example',\n templateUrl: 'tree-flat-overview-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeFlatOverviewExample {\n private _transformer = (node: FoodNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n node => node.level,\n node => node.expandable,\n node => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n constructor() {\n this.dataSource.data = TREE_DATA;\n }\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\nconst TREE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n\n/**\n * @title Tree with flat nodes (childrenAccessor)\n */\n@Component({\n selector: 'tree-flat-child-accessor-overview-example',\n templateUrl: 'tree-flat-child-accessor-overview-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeFlatChildAccessorOverviewExample {\n dataSource = TREE_DATA;\n\n childrenAccessor = (node: FoodNode) => node.children ?? [];\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\ninterface Node {\n name: string;\n children?: Node[];\n}\n\nconst FLAT_TREE_DATA: Node[] = [\n {\n name: 'Flat Group 1',\n children: [{name: 'Flat Leaf 1.1'}, {name: 'Flat Leaf 1.2'}, {name: 'Flat Leaf 1.3'}],\n },\n {\n name: 'Flat Group 2',\n children: [\n {\n name: 'Flat Group 2.1',\n children: [{name: 'Flat Leaf 2.1.1'}, {name: 'Flat Leaf 2.1.2'}, {name: 'Flat Leaf 2.1.3'}],\n },\n ],\n },\n];\n\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Testing with MatTreeHarness\n */\n@Component({\n selector: 'tree-harness-example',\n templateUrl: 'tree-harness-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeHarnessExample {\n private _transformer = (node: Node, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n node => node.level,\n node => node.expandable,\n node => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n constructor() {\n this.dataSource.data = FLAT_TREE_DATA;\n }\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","/**\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.dev/license\n */\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, Injectable, inject} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {ENTER, SPACE} from '@angular/cdk/keycodes';\n\nconst LOAD_MORE = 'LOAD_MORE';\nlet loadMoreId = 1;\n\n/** Nested node */\nexport class NestedNode {\n childrenChange = new BehaviorSubject([]);\n\n get children(): NestedNode[] {\n return this.childrenChange.value;\n }\n\n constructor(\n public name: string,\n public hasChildren = false,\n public parent: string | null = null,\n public isLoadMore = false,\n ) {}\n}\n\n/** Flat node with expandable and level information */\nexport class FlatNode {\n constructor(\n public name: string,\n public level = 1,\n public expandable = false,\n public parent: string | null = null,\n public isLoadMore = false,\n ) {}\n}\n\n/** Number of nodes loaded at a time */\nconst batchSize = 3;\n\n/**\n * A database that only load part of the data initially. After user clicks on the `Load more`\n * button, more data will be loaded.\n */\n@Injectable()\nexport class LoadmoreDatabase {\n /** Map of node name to node */\n nodes = new Map();\n\n dataChange = new BehaviorSubject([]);\n\n /** Example data */\n rootNodes: string[] = ['Vegetables', 'Fruits'];\n childMap = new Map([\n ['Fruits', ['Apple', 'Orange', 'Banana']],\n ['Vegetables', ['Tomato', 'Potato', 'Onion']],\n [\n 'Apple',\n [\n 'Gala',\n 'Braeburn',\n 'Fuji',\n 'Macintosh',\n 'Golden Delicious',\n 'Red Delicious',\n 'Empire',\n 'Granny Smith',\n 'Cameo',\n 'Baldwin',\n 'Jonagold',\n ],\n ],\n ['Onion', ['Yellow', 'White', 'Purple', 'Green', 'Shallot', 'Sweet', 'Red', 'Leek']],\n ]);\n\n initialize() {\n const data = this.rootNodes.map(name => this._generateNode(name, null));\n this.dataChange.next(data);\n }\n\n /** Expand a node whose children are not loaded */\n loadChildren(name: string, onlyFirstTime = false) {\n if (!this.nodes.has(name) || !this.childMap.has(name)) {\n return;\n }\n const parent = this.nodes.get(name)!;\n const children = this.childMap.get(name)!;\n\n if (onlyFirstTime && parent.children!.length > 0) {\n return;\n }\n\n const newChildrenNumber = parent.children!.length + batchSize;\n const nodes = children\n .slice(0, newChildrenNumber)\n .map(name => this._generateNode(name, parent.name));\n if (newChildrenNumber < children.length) {\n // Need a new \"Load More\" node\n nodes.push(new NestedNode(`${LOAD_MORE}-${loadMoreId++}`, false, name, true));\n }\n\n parent.childrenChange.next(nodes);\n this.dataChange.next(this.dataChange.value);\n }\n\n private _generateNode(name: string, parent: string | null): NestedNode {\n if (!this.nodes.has(name)) {\n this.nodes.set(name, new NestedNode(name, this.childMap.has(name), parent));\n }\n\n return this.nodes.get(name)!;\n }\n}\n\n/**\n * @title Tree with partially loaded data\n */\n@Component({\n selector: 'tree-loadmore-example',\n templateUrl: 'tree-loadmore-example.html',\n styleUrl: 'tree-loadmore-example.css',\n providers: [LoadmoreDatabase],\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeLoadmoreExample {\n private _database = inject(LoadmoreDatabase);\n\n nodeMap = new Map();\n treeControl: FlatTreeControl;\n treeFlattener: MatTreeFlattener;\n // Flat tree data source\n dataSource: MatTreeFlatDataSource;\n\n constructor() {\n const _database = this._database;\n\n this.treeFlattener = new MatTreeFlattener(\n this.transformer,\n this.getLevel,\n this.isExpandable,\n this.getChildren,\n );\n\n // TODO(#27626): Remove treeControl. Adopt either levelAccessor or childrenAccessor.\n this.treeControl = new FlatTreeControl(this.getLevel, this.isExpandable);\n\n this.dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n _database.dataChange.subscribe(data => {\n this.dataSource.data = data;\n });\n\n _database.initialize();\n }\n\n getChildren = (node: NestedNode): Observable => node.childrenChange;\n\n transformer = (node: NestedNode, level: number) => {\n const existingNode = this.nodeMap.get(node.name);\n\n if (existingNode) {\n return existingNode;\n }\n\n const newNode = new FlatNode(node.name, level, node.hasChildren, node.parent, node.isLoadMore);\n this.nodeMap.set(node.name, newNode);\n return newNode;\n };\n\n getLevel = (node: FlatNode) => node.level;\n\n isExpandable = (node: FlatNode) => node.expandable;\n\n hasChild = (_: number, node: FlatNode) => node.expandable;\n\n isLoadMore = (_: number, node: FlatNode) => node.isLoadMore;\n\n loadChildren(node: FlatNode) {\n this._database.loadChildren(node.name, true);\n }\n\n /** Load more nodes when clicking on \"Load more\" node. */\n loadOnClick(event: MouseEvent, node: FlatNode) {\n this._loadSiblings(event.target as HTMLElement, node);\n }\n\n /** Load more nodes on keyboardpress when focused on \"Load more\" node */\n loadOnKeypress(event: KeyboardEvent, node: FlatNode) {\n if (event.keyCode === ENTER || event.keyCode === SPACE) {\n this._loadSiblings(event.target as HTMLElement, node);\n }\n }\n\n private _loadSiblings(nodeElement: HTMLElement, node: FlatNode) {\n if (node.parent) {\n // Store a reference to the sibling of the \"Load More\" node before it is removed from the DOM\n const previousSibling = nodeElement.previousElementSibling;\n\n // Synchronously load data.\n this._database.loadChildren(node.parent);\n\n const focusDesination = previousSibling?.nextElementSibling || previousSibling;\n\n if (focusDesination) {\n // Restore focus.\n (focusDesination as HTMLElement).focus();\n }\n }\n }\n}\n","\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n","import {NestedTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeNestedDataSource, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\nconst TREE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n\n/**\n * @title Tree with nested nodes\n */\n@Component({\n selector: 'tree-nested-overview-example',\n templateUrl: 'tree-nested-overview-example.html',\n styleUrl: 'tree-nested-overview-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeNestedOverviewExample {\n treeControl = new NestedTreeControl(node => node.children);\n dataSource = new MatTreeNestedDataSource();\n\n constructor() {\n this.dataSource.data = TREE_DATA;\n }\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n","\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\nconst TREE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n\n/**\n * @title Tree with nested nodes (childrenAccessor)\n */\n@Component({\n selector: 'tree-nested-child-accessor-overview-example',\n templateUrl: 'tree-nested-child-accessor-overview-example.html',\n styleUrl: 'tree-nested-child-accessor-overview-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeNestedChildAccessorOverviewExample {\n childrenAccessor = (node: FoodNode) => node.children ?? [];\n\n dataSource = TREE_DATA;\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n","\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER} from '@angular/cdk/a11y';\nimport {MatTreeModule} from '@angular/material/tree';\n\nconst TREE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'tree-legacy-keyboard-interface-example',\n templateUrl: 'tree-legacy-keyboard-interface-example.html',\n styleUrls: ['tree-legacy-keyboard-interface-example.css'],\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeLegacyKeyboardInterfaceExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(TREE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = TREE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (TREE_DATA[i].level === node.level - 1) {\n return TREE_DATA[i];\n }\n }\n\n return null;\n }\n}\n","\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["TREE_DATA"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"tree.mjs","sources":["../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-dynamic/tree-dynamic-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-dynamic/tree-dynamic-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-flat-overview/tree-flat-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-flat-overview/tree-flat-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-flat-child-accessor-overview/tree-flat-child-accessor-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-harness/tree-harness-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-harness/tree-harness-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-loadmore/tree-loadmore-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-loadmore/tree-loadmore-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-nested-overview/tree-nested-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-nested-overview/tree-nested-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-nested-child-accessor-overview/tree-nested-child-accessor-overview-example.html","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.ts","../../../../../../k8-fastbuild-ST-46c76129e412/bin/src/components-examples/material/tree/tree-legacy-keyboard-interface/tree-legacy-keyboard-interface-example.html"],"sourcesContent":["import {CollectionViewer, SelectionChange, DataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, Injectable, inject, signal} from '@angular/core';\nimport {BehaviorSubject, merge, Observable} from 'rxjs';\nimport {map} from 'rxjs/operators';\nimport {MatProgressBarModule} from '@angular/material/progress-bar';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {MatTreeModule} from '@angular/material/tree';\n\n/** Flat node with expandable and level information */\nclass DynamicFlatNode {\n constructor(\n public item: string,\n public level = 1,\n public expandable = false,\n public isLoading = signal(false),\n ) {}\n}\n\n/**\n * Database for dynamic data. When expanding a node in the tree, the data source will need to fetch\n * the descendants data from the database.\n */\n@Injectable({providedIn: 'root'})\nexport class DynamicDatabase {\n dataMap = new Map([\n ['Fruits', ['Apple', 'Orange', 'Banana']],\n ['Vegetables', ['Tomato', 'Potato', 'Onion']],\n ['Apple', ['Fuji', 'Macintosh']],\n ['Onion', ['Yellow', 'White', 'Purple']],\n ]);\n\n rootLevelNodes: string[] = ['Fruits', 'Vegetables'];\n\n /** Initial data from database */\n initialData(): DynamicFlatNode[] {\n return this.rootLevelNodes.map(name => new DynamicFlatNode(name, 0, true));\n }\n\n getChildren(node: string): string[] | undefined {\n return this.dataMap.get(node);\n }\n\n isExpandable(node: string): boolean {\n return this.dataMap.has(node);\n }\n}\n/**\n * File database, it can build a tree structured Json object from string.\n * Each node in Json object represents a file or a directory. For a file, it has filename and type.\n * For a directory, it has filename and children (a list of files or directories).\n * The input will be a json object string, and the output is a list of `FileNode` with nested\n * structure.\n */\nexport class DynamicDataSource implements DataSource {\n dataChange = new BehaviorSubject([]);\n\n get data(): DynamicFlatNode[] {\n return this.dataChange.value;\n }\n set data(value: DynamicFlatNode[]) {\n this._treeControl.dataNodes = value;\n this.dataChange.next(value);\n }\n\n constructor(\n private _treeControl: FlatTreeControl,\n private _database: DynamicDatabase,\n ) {}\n\n connect(collectionViewer: CollectionViewer): Observable {\n this._treeControl.expansionModel.changed.subscribe(change => {\n if (\n (change as SelectionChange).added ||\n (change as SelectionChange).removed\n ) {\n this.handleTreeControl(change as SelectionChange);\n }\n });\n\n return merge(collectionViewer.viewChange, this.dataChange).pipe(map(() => this.data));\n }\n\n disconnect(collectionViewer: CollectionViewer): void {}\n\n /** Handle expand/collapse behaviors */\n handleTreeControl(change: SelectionChange) {\n if (change.added) {\n change.added.forEach(node => this.toggleNode(node, true));\n }\n if (change.removed) {\n change.removed\n .slice()\n .reverse()\n .forEach(node => this.toggleNode(node, false));\n }\n }\n\n /**\n * Toggle the node, remove from display list\n */\n toggleNode(node: DynamicFlatNode, expand: boolean) {\n const children = this._database.getChildren(node.item);\n const index = this.data.indexOf(node);\n if (!children || index < 0) {\n // If no children, or cannot find the node, no op\n return;\n }\n\n node.isLoading.set(true);\n\n setTimeout(() => {\n if (expand) {\n const nodes = children.map(\n name => new DynamicFlatNode(name, node.level + 1, this._database.isExpandable(name)),\n );\n this.data.splice(index + 1, 0, ...nodes);\n } else {\n let count = 0;\n for (\n let i = index + 1;\n i < this.data.length && this.data[i].level > node.level;\n i++, count++\n ) {}\n this.data.splice(index + 1, count);\n }\n\n // notify the change\n this.dataChange.next(this.data);\n node.isLoading.set(false);\n }, 1000);\n }\n}\n\n/**\n * @title Tree with dynamic data\n */\n@Component({\n selector: 'tree-dynamic-example',\n templateUrl: 'tree-dynamic-example.html',\n styleUrl: 'tree-dynamic-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule, MatProgressBarModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeDynamicExample {\n constructor() {\n const database = inject(DynamicDatabase);\n\n this.treeControl = new FlatTreeControl(this.getLevel, this.isExpandable);\n this.dataSource = new DynamicDataSource(this.treeControl, database);\n\n this.dataSource.data = database.initialData();\n }\n\n treeControl: FlatTreeControl;\n\n dataSource: DynamicDataSource;\n\n getLevel = (node: DynamicFlatNode) => node.level;\n\n isExpandable = (node: DynamicFlatNode) => node.expandable;\n\n hasChild = (_: number, _nodeData: DynamicFlatNode) => _nodeData.expandable;\n}\n","\n \n \n {{node.item}}\n \n \n \n {{node.item}}\n @if (node.isLoading()) {\n \n }\n \n\n","import {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'tree-flat-overview-example',\n templateUrl: 'tree-flat-overview-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeFlatOverviewExample {\n private _transformer = (node: FoodNode, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n node => node.level,\n node => node.expandable,\n node => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n constructor() {\n this.dataSource.data = EXAMPLE_DATA;\n }\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n}\n\nconst EXAMPLE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\n/**\n * @title Tree with flat nodes (childrenAccessor)\n */\n@Component({\n selector: 'tree-flat-child-accessor-overview-example',\n templateUrl: 'tree-flat-child-accessor-overview-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeFlatChildAccessorOverviewExample {\n dataSource = EXAMPLE_DATA;\n\n childrenAccessor = (node: FoodNode) => node.children ?? [];\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n\nconst EXAMPLE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","import {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\ninterface Node {\n name: string;\n children?: Node[];\n}\n\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Testing with MatTreeHarness\n */\n@Component({\n selector: 'tree-harness-example',\n templateUrl: 'tree-harness-example.html',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeHarnessExample {\n private _transformer = (node: Node, level: number) => {\n return {\n expandable: !!node.children && node.children.length > 0,\n name: node.name,\n level: level,\n };\n };\n\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n treeFlattener = new MatTreeFlattener(\n this._transformer,\n node => node.level,\n node => node.expandable,\n node => node.children,\n );\n\n dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n constructor() {\n this.dataSource.data = EXAMPLE_DATA;\n }\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n}\n\nconst EXAMPLE_DATA: Node[] = [\n {\n name: 'Flat Group 1',\n children: [{name: 'Flat Leaf 1.1'}, {name: 'Flat Leaf 1.2'}, {name: 'Flat Leaf 1.3'}],\n },\n {\n name: 'Flat Group 2',\n children: [\n {\n name: 'Flat Group 2.1',\n children: [{name: 'Flat Leaf 2.1.1'}, {name: 'Flat Leaf 2.1.2'}, {name: 'Flat Leaf 2.1.3'}],\n },\n ],\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n \n {{node.name}}\n \n\n","/**\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.dev/license\n */\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component, Injectable, inject} from '@angular/core';\nimport {MatTreeFlatDataSource, MatTreeFlattener, MatTreeModule} from '@angular/material/tree';\nimport {BehaviorSubject, Observable} from 'rxjs';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {ENTER, SPACE} from '@angular/cdk/keycodes';\n\nlet loadMoreId = 1;\n\n/** Nested node */\nclass NestedNode {\n childrenChange = new BehaviorSubject([]);\n\n get children(): NestedNode[] {\n return this.childrenChange.value;\n }\n\n constructor(\n public name: string,\n public hasChildren = false,\n public parent: string | null = null,\n public isLoadMore = false,\n ) {}\n}\n\n/** Flat node with expandable and level information */\nexport class FlatNode {\n constructor(\n public name: string,\n public level = 1,\n public expandable = false,\n public parent: string | null = null,\n public isLoadMore = false,\n ) {}\n}\n\n/** Number of nodes loaded at a time */\nconst batchSize = 3;\n\n/**\n * A database that only load part of the data initially. After user clicks on the `Load more`\n * button, more data will be loaded.\n */\n@Injectable()\nexport class LoadmoreDatabase {\n /** Map of node name to node */\n nodes = new Map();\n\n dataChange = new BehaviorSubject([]);\n\n /** Example data */\n rootNodes: string[] = ['Vegetables', 'Fruits'];\n childMap = new Map([\n ['Fruits', ['Apple', 'Orange', 'Banana']],\n ['Vegetables', ['Tomato', 'Potato', 'Onion']],\n [\n 'Apple',\n [\n 'Gala',\n 'Braeburn',\n 'Fuji',\n 'Macintosh',\n 'Golden Delicious',\n 'Red Delicious',\n 'Empire',\n 'Granny Smith',\n 'Cameo',\n 'Baldwin',\n 'Jonagold',\n ],\n ],\n ['Onion', ['Yellow', 'White', 'Purple', 'Green', 'Shallot', 'Sweet', 'Red', 'Leek']],\n ]);\n\n initialize() {\n const data = this.rootNodes.map(name => this._generateNode(name, null));\n this.dataChange.next(data);\n }\n\n /** Expand a node whose children are not loaded */\n loadChildren(name: string, onlyFirstTime = false) {\n if (!this.nodes.has(name) || !this.childMap.has(name)) {\n return;\n }\n const parent = this.nodes.get(name)!;\n const children = this.childMap.get(name)!;\n\n if (onlyFirstTime && parent.children!.length > 0) {\n return;\n }\n\n const newChildrenNumber = parent.children!.length + batchSize;\n const nodes = children\n .slice(0, newChildrenNumber)\n .map(name => this._generateNode(name, parent.name));\n if (newChildrenNumber < children.length) {\n // Need a new \"Load More\" node\n nodes.push(new NestedNode(`LOAD_MORE-${loadMoreId++}`, false, name, true));\n }\n\n parent.childrenChange.next(nodes);\n this.dataChange.next(this.dataChange.value);\n }\n\n private _generateNode(name: string, parent: string | null): NestedNode {\n if (!this.nodes.has(name)) {\n this.nodes.set(name, new NestedNode(name, this.childMap.has(name), parent));\n }\n\n return this.nodes.get(name)!;\n }\n}\n\n/**\n * @title Tree with partially loaded data\n */\n@Component({\n selector: 'tree-loadmore-example',\n templateUrl: 'tree-loadmore-example.html',\n styleUrl: 'tree-loadmore-example.css',\n providers: [LoadmoreDatabase],\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeLoadmoreExample {\n private _database = inject(LoadmoreDatabase);\n\n nodeMap = new Map();\n treeControl: FlatTreeControl;\n treeFlattener: MatTreeFlattener;\n // Flat tree data source\n dataSource: MatTreeFlatDataSource;\n\n constructor() {\n const _database = this._database;\n\n this.treeFlattener = new MatTreeFlattener(\n this.transformer,\n this.getLevel,\n this.isExpandable,\n this.getChildren,\n );\n\n // TODO(#27626): Remove treeControl. Adopt either levelAccessor or childrenAccessor.\n this.treeControl = new FlatTreeControl(this.getLevel, this.isExpandable);\n\n this.dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);\n\n _database.dataChange.subscribe(data => {\n this.dataSource.data = data;\n });\n\n _database.initialize();\n }\n\n getChildren = (node: NestedNode): Observable => node.childrenChange;\n\n transformer = (node: NestedNode, level: number) => {\n const existingNode = this.nodeMap.get(node.name);\n\n if (existingNode) {\n return existingNode;\n }\n\n const newNode = new FlatNode(node.name, level, node.hasChildren, node.parent, node.isLoadMore);\n this.nodeMap.set(node.name, newNode);\n return newNode;\n };\n\n getLevel = (node: FlatNode) => node.level;\n\n isExpandable = (node: FlatNode) => node.expandable;\n\n hasChild = (_: number, node: FlatNode) => node.expandable;\n\n isLoadMore = (_: number, node: FlatNode) => node.isLoadMore;\n\n loadChildren(node: FlatNode) {\n this._database.loadChildren(node.name, true);\n }\n\n /** Load more nodes when clicking on \"Load more\" node. */\n loadOnClick(event: MouseEvent, node: FlatNode) {\n this._loadSiblings(event.target as HTMLElement, node);\n }\n\n /** Load more nodes on keyboardpress when focused on \"Load more\" node */\n loadOnKeypress(event: KeyboardEvent, node: FlatNode) {\n if (event.keyCode === ENTER || event.keyCode === SPACE) {\n this._loadSiblings(event.target as HTMLElement, node);\n }\n }\n\n private _loadSiblings(nodeElement: HTMLElement, node: FlatNode) {\n if (node.parent) {\n // Store a reference to the sibling of the \"Load More\" node before it is removed from the DOM\n const previousSibling = nodeElement.previousElementSibling;\n\n // Synchronously load data.\n this._database.loadChildren(node.parent);\n\n const focusDesination = previousSibling?.nextElementSibling || previousSibling;\n\n if (focusDesination) {\n // Restore focus.\n (focusDesination as HTMLElement).focus();\n }\n }\n }\n}\n","\n \n \n \n {{node.name}}\n \n\n \n \n \n {{node.name}}\n \n\n \n Load more of {{node.parent}}...\n \n\n","import {NestedTreeControl} from '@angular/cdk/tree';\nimport {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeNestedDataSource, MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\n/**\n * @title Tree with nested nodes\n */\n@Component({\n selector: 'tree-nested-overview-example',\n templateUrl: 'tree-nested-overview-example.html',\n styleUrl: 'tree-nested-overview-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeNestedOverviewExample {\n treeControl = new NestedTreeControl(node => node.children);\n dataSource = new MatTreeNestedDataSource();\n\n constructor() {\n this.dataSource.data = EXAMPLE_DATA;\n }\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n\nconst EXAMPLE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {MatTreeModule} from '@angular/material/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\n\n/**\n * Food data with nested structure.\n * Each node has a name and an optional list of children.\n */\ninterface FoodNode {\n name: string;\n children?: FoodNode[];\n}\n\n/**\n * @title Tree with nested nodes (childrenAccessor)\n */\n@Component({\n selector: 'tree-nested-child-accessor-overview-example',\n templateUrl: 'tree-nested-child-accessor-overview-example.html',\n styleUrl: 'tree-nested-child-accessor-overview-example.css',\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeNestedChildAccessorOverviewExample {\n childrenAccessor = (node: FoodNode) => node.children ?? [];\n\n dataSource = EXAMPLE_DATA;\n\n hasChild = (_: number, node: FoodNode) => !!node.children && node.children.length > 0;\n}\n\nconst EXAMPLE_DATA: FoodNode[] = [\n {\n name: 'Fruit',\n children: [{name: 'Apple'}, {name: 'Banana'}, {name: 'Fruit loops'}],\n },\n {\n name: 'Vegetables',\n children: [\n {\n name: 'Green',\n children: [{name: 'Broccoli'}, {name: 'Brussels sprouts'}],\n },\n {\n name: 'Orange',\n children: [{name: 'Pumpkins'}, {name: 'Carrots'}],\n },\n ],\n },\n];\n","\n \n \n \n {{node.name}}\n \n \n \n
    \n \n {{node.name}}\n
    \n \n
    \n \n
    \n \n
    \n","import {ChangeDetectionStrategy, Component} from '@angular/core';\nimport {ArrayDataSource} from '@angular/cdk/collections';\nimport {FlatTreeControl} from '@angular/cdk/tree';\nimport {MatIconModule} from '@angular/material/icon';\nimport {MatButtonModule} from '@angular/material/button';\nimport {NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER} from '@angular/cdk/a11y';\nimport {MatTreeModule} from '@angular/material/tree';\n\n/** Flat node with expandable and level information */\ninterface ExampleFlatNode {\n expandable: boolean;\n name: string;\n level: number;\n}\n\n/**\n * @title Tree with flat nodes\n */\n@Component({\n selector: 'tree-legacy-keyboard-interface-example',\n templateUrl: 'tree-legacy-keyboard-interface-example.html',\n styleUrls: ['tree-legacy-keyboard-interface-example.css'],\n imports: [MatTreeModule, MatButtonModule, MatIconModule],\n providers: [NOOP_TREE_KEY_MANAGER_FACTORY_PROVIDER],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TreeLegacyKeyboardInterfaceExample {\n treeControl = new FlatTreeControl(\n node => node.level,\n node => node.expandable,\n );\n\n dataSource = new ArrayDataSource(EXAMPLE_DATA);\n\n hasChild = (_: number, node: ExampleFlatNode) => node.expandable;\n\n getParentNode(node: ExampleFlatNode) {\n const nodeIndex = EXAMPLE_DATA.indexOf(node);\n\n for (let i = nodeIndex - 1; i >= 0; i--) {\n if (EXAMPLE_DATA[i].level === node.level - 1) {\n return EXAMPLE_DATA[i];\n }\n }\n\n return null;\n }\n}\n\nconst EXAMPLE_DATA: ExampleFlatNode[] = [\n {\n name: 'Fruit',\n expandable: true,\n level: 0,\n },\n {\n name: 'Apple',\n expandable: false,\n level: 1,\n },\n {\n name: 'Banana',\n expandable: false,\n level: 1,\n },\n {\n name: 'Fruit loops',\n expandable: false,\n level: 1,\n },\n {\n name: 'Vegetables',\n expandable: true,\n level: 0,\n },\n {\n name: 'Green',\n expandable: true,\n level: 1,\n },\n {\n name: 'Broccoli',\n expandable: false,\n level: 2,\n },\n {\n name: 'Brussels sprouts',\n expandable: false,\n level: 2,\n },\n {\n name: 'Orange',\n expandable: true,\n level: 1,\n },\n {\n name: 'Pumpkins',\n expandable: false,\n level: 2,\n },\n {\n name: 'Carrots',\n expandable: false,\n level: 2,\n },\n];\n","\n \n \n \n \n {{node.name}}\n \n \n \n {{node.name}}\n \n\n"],"names":["i2","i4","EXAMPLE_DATA"],"mappings":"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"} \ No newline at end of file diff --git a/index.d.ts b/index.d.ts index 5d59627010..a40d2158b0 100755 --- a/index.d.ts +++ b/index.d.ts @@ -1,12 +1,8 @@ -export declare const EXAMPLE_COMPONENTS: { - [id: string]: LiveExample; -}; - /** * Example data with information about component name, selector, files used in * example, and path to examples. */ -export declare class ExampleData { +declare class ExampleData { /** Description of the example. */ description: string; /** List of files that are part of this example. */ @@ -25,7 +21,7 @@ export declare class ExampleData { * DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED. ****************************************************************************** */ -export declare interface LiveExample { +interface LiveExample { /** Title of the example. */ title: string; /** Name of the example component. */ @@ -43,7 +39,10 @@ export declare interface LiveExample { /** Path from which to import the xample. */ importPath: string; } +declare const EXAMPLE_COMPONENTS: { + [id: string]: LiveExample; +}; +declare function loadExample(id: string): Promise; -export declare function loadExample(id: string): Promise; - -export { } +export { EXAMPLE_COMPONENTS, ExampleData, loadExample }; +export type { LiveExample }; diff --git a/material-experimental/column-resize/index.d.ts b/material-experimental/column-resize/index.d.ts index ea050750fc..c2197a519a 100755 --- a/material-experimental/column-resize/index.d.ts +++ b/material-experimental/column-resize/index.d.ts @@ -1,54 +1,51 @@ import * as i0 from '@angular/core'; +interface PeriodicElement$2 { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Default-enabled column resize with a table-based mat-table. */ -export declare class DefaultEnabledColumnResizeExample { +declare class DefaultEnabledColumnResizeExample { displayedColumns: string[]; - dataSource: PeriodicElement[]; + dataSource: PeriodicElement$2[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$1 { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Default-enabled column resize with a flex-based mat-table. */ -export declare class DefaultEnabledColumnResizeFlexExample { +declare class DefaultEnabledColumnResizeFlexExample { displayedColumns: string[]; - dataSource: PeriodicElement_2[]; + dataSource: PeriodicElement$1[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Opt-in column resize with a table-based mat-table. */ -export declare class OptInColumnResizeExample { +declare class OptInColumnResizeExample { displayedColumns: string[]; - dataSource: PeriodicElement_3[]; + dataSource: PeriodicElement[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_2 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_3 { - name: string; - position: number; - weight: number; - symbol: string; -} - -export { } +export { DefaultEnabledColumnResizeExample, DefaultEnabledColumnResizeFlexExample, OptInColumnResizeExample }; diff --git a/material-experimental/popover-edit/index.d.ts b/material-experimental/popover-edit/index.d.ts index effbe05a69..351c2d79bf 100755 --- a/material-experimental/popover-edit/index.d.ts +++ b/material-experimental/popover-edit/index.d.ts @@ -1,27 +1,26 @@ -import { BehaviorSubject } from 'rxjs'; import { DataSource } from '@angular/cdk/collections'; -import { FormValueContainer } from '@angular/cdk-experimental/popover-edit'; -import * as i0 from '@angular/core'; import { NgForm } from '@angular/forms'; -import { Observable } from 'rxjs'; - -declare type ElementType = 'Metal' | 'Semimetal' | 'Nonmetal'; +import { BehaviorSubject, Observable } from 'rxjs'; +import * as i0 from '@angular/core'; +import { FormValueContainer } from '@angular/cdk-experimental/popover-edit'; +interface Person { + id: number; + firstName: string; + middleName: string; + lastName: string; +} /** - * Data source to provide what data should be rendered in the table. Note that the data source - * can retrieve its data in any way. In this case, the data source is provided a reference - * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage - * the underlying data. Instead, it only needs to take the data and send the table exactly what - * should be rendered. + * @title Material Popover Edit spanning multiple columns on a Material data-table */ -declare class ExampleDataSource extends DataSource { - /** Stream of data that is provided to the table. */ - data: BehaviorSubject; - /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; - disconnect(): void; +declare class PopoverEditCellSpanMatTableExample { + displayedColumns: string[]; + dataSource: ExampleDataSource$3; + readonly preservedValues: WeakMap; + onSubmit(person: Person, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } - /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -29,29 +28,33 @@ declare class ExampleDataSource extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_2 extends DataSource { +declare class ExampleDataSource$3 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } +interface PeriodicElement$2 { + name: string; + position: number; + weight: number; + symbol: string; +} /** - * Data source to provide what data should be rendered in the table. Note that the data source - * can retrieve its data in any way. In this case, the data source is provided a reference - * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage - * the underlying data. Instead, it only needs to take the data and send the table exactly what - * should be rendered. + * @title Material Popover Edit on a flex Material data-table */ -declare class ExampleDataSource_3 extends DataSource { - /** Stream of data that is provided to the table. */ - data: BehaviorSubject; - /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; - disconnect(): void; +declare class PopoverEditMatTableFlexExample { + displayedColumns: string[]; + dataSource: ExampleDataSource$2; + readonly preservedNameValues: WeakMap; + readonly preservedWeightValues: WeakMap; + onSubmitName(element: PeriodicElement$2, f: NgForm): void; + onSubmitWeight(element: PeriodicElement$2, f: NgForm): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } - /** * Data source to provide what data should be rendered in the table. Note that the data source * can retrieve its data in any way. In this case, the data source is provided a reference @@ -59,24 +62,17 @@ declare class ExampleDataSource_3 extends DataSource { * the underlying data. Instead, it only needs to take the data and send the table exactly what * should be rendered. */ -declare class ExampleDataSource_4 extends DataSource { +declare class ExampleDataSource$2 extends DataSource { /** Stream of data that is provided to the table. */ - data: BehaviorSubject; + data: BehaviorSubject; /** Connect function called by the table to retrieve one stream containing the data to render. */ - connect(): Observable; + connect(): Observable; disconnect(): void; } -declare type FantasyElement = 'Earth' | 'Water' | 'Wind' | 'Fire' | 'Light' | 'Dark'; - -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_2 { +type ElementType = 'Metal' | 'Semimetal' | 'Nonmetal'; +type FantasyElement = 'Earth' | 'Water' | 'Wind' | 'Fire' | 'Light' | 'Dark'; +interface PeriodicElement$1 { name: string; type: ElementType; position: number; @@ -84,83 +80,76 @@ declare interface PeriodicElement_2 { symbol: string; fantasyCounterparts: FantasyElement[]; } - -declare interface PeriodicElement_3 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface Person { - id: number; - firstName: string; - middleName: string; - lastName: string; -} - -/** - * @title Material Popover Edit spanning multiple columns on a Material data-table - */ -export declare class PopoverEditCellSpanMatTableExample { - displayedColumns: string[]; - dataSource: ExampleDataSource; - readonly preservedValues: WeakMap; - onSubmit(person: Person, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Material Popover Edit on a Material data-table */ -export declare class PopoverEditMatTableExample { +declare class PopoverEditMatTableExample { private readonly _snackBar; displayedColumns: string[]; - dataSource: ExampleDataSource_3; + dataSource: ExampleDataSource$1; nameEditEnabled: boolean; readonly TYPES: readonly ElementType[]; readonly FANTASY_ELEMENTS: readonly FantasyElement[]; - readonly nameValues: FormValueContainer; - readonly weightValues: FormValueContainer; - readonly typeValues: FormValueContainer; - readonly fantasyValues: FormValueContainer; - onSubmitName(element: PeriodicElement_2, f: NgForm): void; - onSubmitWeight(element: PeriodicElement_2, f: NgForm): void; - onSubmitType(element: PeriodicElement_2, f: NgForm): void; - onSubmitFantasyCounterparts(element: PeriodicElement_2, f: NgForm): void; - goodJob(element: PeriodicElement_2): void; - badJob(element: PeriodicElement_2): void; + readonly nameValues: FormValueContainer; + readonly weightValues: FormValueContainer; + readonly typeValues: FormValueContainer; + readonly fantasyValues: FormValueContainer; + onSubmitName(element: PeriodicElement$1, f: NgForm): void; + onSubmitWeight(element: PeriodicElement$1, f: NgForm): void; + onSubmitType(element: PeriodicElement$1, f: NgForm): void; + onSubmitFantasyCounterparts(element: PeriodicElement$1, f: NgForm): void; + goodJob(element: PeriodicElement$1): void; + badJob(element: PeriodicElement$1): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * Data source to provide what data should be rendered in the table. Note that the data source + * can retrieve its data in any way. In this case, the data source is provided a reference + * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage + * the underlying data. Instead, it only needs to take the data and send the table exactly what + * should be rendered. + */ +declare class ExampleDataSource$1 extends DataSource { + /** Stream of data that is provided to the table. */ + data: BehaviorSubject; + /** Connect function called by the table to retrieve one stream containing the data to render. */ + connect(): Observable; + disconnect(): void; +} +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} /** - * @title Material Popover Edit on a flex Material data-table + * @title Material Popover Edit with spreadsheet-like configuration on a Material data-table */ -export declare class PopoverEditMatTableFlexExample { +declare class PopoverEditTabOutMatTableExample { displayedColumns: string[]; - dataSource: ExampleDataSource_2; + dataSource: ExampleDataSource; readonly preservedNameValues: WeakMap; readonly preservedWeightValues: WeakMap; onSubmitName(element: PeriodicElement, f: NgForm): void; onSubmitWeight(element: PeriodicElement, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } - /** - * @title Material Popover Edit with spreadsheet-like configuration on a Material data-table + * Data source to provide what data should be rendered in the table. Note that the data source + * can retrieve its data in any way. In this case, the data source is provided a reference + * to a common data base, ExampleDatabase. It is not the data source's responsibility to manage + * the underlying data. Instead, it only needs to take the data and send the table exactly what + * should be rendered. */ -export declare class PopoverEditTabOutMatTableExample { - displayedColumns: string[]; - dataSource: ExampleDataSource_4; - readonly preservedNameValues: WeakMap; - readonly preservedWeightValues: WeakMap; - onSubmitName(element: PeriodicElement_3, f: NgForm): void; - onSubmitWeight(element: PeriodicElement_3, f: NgForm): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ExampleDataSource extends DataSource { + /** Stream of data that is provided to the table. */ + data: BehaviorSubject; + /** Connect function called by the table to retrieve one stream containing the data to render. */ + connect(): Observable; + disconnect(): void; } -export { } +export { PopoverEditCellSpanMatTableExample, PopoverEditMatTableExample, PopoverEditMatTableFlexExample, PopoverEditTabOutMatTableExample }; diff --git a/material-experimental/selection/index.d.ts b/material-experimental/selection/index.d.ts index 74233aa938..3fe8aef508 100755 --- a/material-experimental/selection/index.d.ts +++ b/material-experimental/selection/index.d.ts @@ -1,11 +1,11 @@ -import * as i0 from '@angular/core'; import { SelectionChange } from '@angular/material-experimental/selection'; -import { SelectionChange as SelectionChange_2 } from '@angular/cdk-experimental/selection'; +import * as i0 from '@angular/core'; +import { SelectionChange as SelectionChange$1 } from '@angular/cdk-experimental/selection'; /** * @title Table that uses `matSelectionColumn` which allows users to select rows. */ -export declare class MatSelectionColumnExample { +declare class MatSelectionColumnExample { displayedColumns: string[]; dataSource: PeriodicElement[]; selected: string[]; @@ -13,17 +13,23 @@ export declare class MatSelectionColumnExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Mat Selection on a simple list. */ -export declare class MatSelectionListExample { +declare class MatSelectionListExample { data: string[]; selected1: string[]; selected2: string[]; selected3: string[]; selected4: string[]; - getCurrentSelected(event: SelectionChange_2): string[]; + getCurrentSelected(event: SelectionChange$1): string[]; trackByFn(index: number, value: string): number; changeElementName(): void; reset(): void; @@ -31,11 +37,4 @@ export declare class MatSelectionListExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; -} - -export { } +export { MatSelectionColumnExample, MatSelectionListExample }; diff --git a/material/autocomplete/index.d.ts b/material/autocomplete/index.d.ts index dbe8570f1f..bcb3323ae5 100755 --- a/material/autocomplete/index.d.ts +++ b/material/autocomplete/index.d.ts @@ -1,14 +1,13 @@ -import { ElementRef } from '@angular/core'; -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; +import { OnInit, ElementRef } from '@angular/core'; +import * as _angular_forms from '@angular/forms'; +import { FormControl } from '@angular/forms'; import { Observable } from 'rxjs'; -import { OnInit } from '@angular/core'; /** * @title Highlight the first autocomplete option */ -export declare class AutocompleteAutoActiveFirstOptionExample implements OnInit { +declare class AutocompleteAutoActiveFirstOptionExample implements OnInit { myControl: FormControl; options: string[]; filteredOptions: Observable; @@ -18,10 +17,13 @@ export declare class AutocompleteAutoActiveFirstOptionExample implements OnInit static ɵcmp: i0.ɵɵComponentDeclaration; } +interface User { + name: string; +} /** * @title Display value autocomplete */ -export declare class AutocompleteDisplayExample implements OnInit { +declare class AutocompleteDisplayExample implements OnInit { myControl: FormControl; options: User[]; filteredOptions: Observable; @@ -35,7 +37,7 @@ export declare class AutocompleteDisplayExample implements OnInit { /** * @title Filter autocomplete */ -export declare class AutocompleteFilterExample implements OnInit { +declare class AutocompleteFilterExample implements OnInit { myControl: FormControl; options: string[]; filteredOptions: Observable; @@ -45,25 +47,17 @@ export declare class AutocompleteFilterExample implements OnInit { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatAutocompleteHarness - */ -export declare class AutocompleteHarnessExample { - states: { - code: string; - name: string; - }[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface StateGroup { + letter: string; + names: string[]; } - /** * @title Option groups autocomplete */ -export declare class AutocompleteOptgroupExample implements OnInit { +declare class AutocompleteOptgroupExample implements OnInit { private _formBuilder; - stateForm: FormGroup< { - stateGroup: FormControl; + stateForm: _angular_forms.FormGroup<{ + stateGroup: _angular_forms.FormControl; }>; stateGroups: StateGroup[]; stateGroupOptions: Observable; @@ -73,10 +67,15 @@ export declare class AutocompleteOptgroupExample implements OnInit { static ɵcmp: i0.ɵɵComponentDeclaration; } +interface State { + flag: string; + name: string; + population: string; +} /** * @title Autocomplete overview */ -export declare class AutocompleteOverviewExample { +declare class AutocompleteOverviewExample { stateCtrl: FormControl; filteredStates: Observable; states: State[]; @@ -89,7 +88,7 @@ export declare class AutocompleteOverviewExample { /** * @title Plain input autocomplete */ -export declare class AutocompletePlainInputExample implements OnInit { +declare class AutocompletePlainInputExample implements OnInit { control: FormControl; streets: string[]; filteredStreets: Observable; @@ -100,10 +99,20 @@ export declare class AutocompletePlainInputExample implements OnInit { static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Simple autocomplete + */ +declare class AutocompleteSimpleExample { + myControl: FormControl; + options: string[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Require an autocomplete option to be selected */ -export declare class AutocompleteRequireSelectionExample { +declare class AutocompleteRequireSelectionExample { input: ElementRef; myControl: FormControl; options: string[]; @@ -115,28 +124,15 @@ export declare class AutocompleteRequireSelectionExample { } /** - * @title Simple autocomplete + * @title Testing with MatAutocompleteHarness */ -export declare class AutocompleteSimpleExample { - myControl: FormControl; - options: string[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -declare interface State { - flag: string; - name: string; - population: string; -} - -declare interface StateGroup { - letter: string; - names: string[]; -} - -declare interface User { - name: string; +declare class AutocompleteHarnessExample { + states: { + code: string; + name: string; + }[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { AutocompleteAutoActiveFirstOptionExample, AutocompleteDisplayExample, AutocompleteFilterExample, AutocompleteHarnessExample, AutocompleteOptgroupExample, AutocompleteOverviewExample, AutocompletePlainInputExample, AutocompleteRequireSelectionExample, AutocompleteSimpleExample }; diff --git a/material/badge/index.d.ts b/material/badge/index.d.ts index 61bf9ba180..64b8e7c548 100755 --- a/material/badge/index.d.ts +++ b/material/badge/index.d.ts @@ -1,25 +1,24 @@ import * as i0 from '@angular/core'; -import { WritableSignal } from '@angular/core'; - -/** - * @title Testing with MatBadgeHarness - */ -export declare class BadgeHarnessExample { - simpleContent: WritableSignal; - overlap: WritableSignal; - disabled: WritableSignal; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} /** * @title Badge overview */ -export declare class BadgeOverviewExample { +declare class BadgeOverviewExample { hidden: boolean; toggleBadgeVisibility(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatBadgeHarness + */ +declare class BadgeHarnessExample { + simpleContent: i0.WritableSignal; + overlap: i0.WritableSignal; + disabled: i0.WritableSignal; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { BadgeHarnessExample, BadgeOverviewExample }; diff --git a/material/bottom-sheet/index.d.ts b/material/bottom-sheet/index.d.ts index 44b4cce86f..728a6323d0 100755 --- a/material/bottom-sheet/index.d.ts +++ b/material/bottom-sheet/index.d.ts @@ -1,35 +1,33 @@ import * as i0 from '@angular/core'; -import { MatBottomSheet } from '@angular/material/bottom-sheet'; -import { MatBottomSheetConfig } from '@angular/material/bottom-sheet'; -import { MatBottomSheetRef } from '@angular/material/bottom-sheet'; import { TemplateRef } from '@angular/core'; - -/** - * @title Testing with MatBottomSheetHarness - */ -export declare class BottomSheetHarnessExample { - readonly bottomSheet: MatBottomSheet; - template: TemplateRef; - open(config?: MatBottomSheetConfig): MatBottomSheetRef; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} +import * as _angular_material_bottom_sheet from '@angular/material/bottom-sheet'; +import { MatBottomSheet, MatBottomSheetConfig } from '@angular/material/bottom-sheet'; /** * @title Bottom Sheet Overview */ -export declare class BottomSheetOverviewExample { +declare class BottomSheetOverviewExample { private _bottomSheet; openBottomSheet(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class BottomSheetOverviewExampleSheet { +declare class BottomSheetOverviewExampleSheet { private _bottomSheetRef; openLink(event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatBottomSheetHarness + */ +declare class BottomSheetHarnessExample { + readonly bottomSheet: MatBottomSheet; + template: TemplateRef; + open(config?: MatBottomSheetConfig): _angular_material_bottom_sheet.MatBottomSheetRef; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { BottomSheetHarnessExample, BottomSheetOverviewExample, BottomSheetOverviewExampleSheet }; diff --git a/material/button-toggle/index.d.ts b/material/button-toggle/index.d.ts index 59cf1bdc06..f140525c7b 100755 --- a/material/button-toggle/index.d.ts +++ b/material/button-toggle/index.d.ts @@ -1,54 +1,53 @@ -import { FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; import { MatButtonToggleAppearance } from '@angular/material/button-toggle'; -import { WritableSignal } from '@angular/core'; +import { FormControl } from '@angular/forms'; /** * @title Button toggle appearance */ -export declare class ButtonToggleAppearanceExample { +declare class ButtonToggleAppearanceExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Button-toggles with forms + * @title Basic button-toggles */ -export declare class ButtonToggleFormsExample { - fontStyleControl: FormControl; - fontStyle?: string; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ButtonToggleOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Testing with MatButtonToggleHarness */ -export declare class ButtonToggleHarnessExample { - disabled: WritableSignal; - appearance: WritableSignal; +declare class ButtonToggleHarnessExample { + disabled: i0.WritableSignal; + appearance: i0.WritableSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Button-toggles with forms + */ +declare class ButtonToggleFormsExample { + fontStyleControl: FormControl; + fontStyle?: string; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Button toggle selection mode */ -export declare class ButtonToggleModeExample { - hideSingleSelectionIndicator: WritableSignal; - hideMultipleSelectionIndicator: WritableSignal; +declare class ButtonToggleModeExample { + hideSingleSelectionIndicator: i0.WritableSignal; + hideMultipleSelectionIndicator: i0.WritableSignal; toggleSingleSelectionIndicator(): void; toggleMultipleSelectionIndicator(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Basic button-toggles - */ -export declare class ButtonToggleOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { ButtonToggleAppearanceExample, ButtonToggleFormsExample, ButtonToggleHarnessExample, ButtonToggleModeExample, ButtonToggleOverviewExample }; diff --git a/material/button/index.d.ts b/material/button/index.d.ts index c4201ab772..8bf48ce237 100755 --- a/material/button/index.d.ts +++ b/material/button/index.d.ts @@ -1,9 +1,17 @@ import * as i0 from '@angular/core'; +/** + * @title Button overview + */ +declare class ButtonOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Interactive disabled buttons */ -export declare class ButtonDisabledInteractiveExample { +declare class ButtonDisabledInteractiveExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -11,18 +19,10 @@ export declare class ButtonDisabledInteractiveExample { /** * @title Testing with MatButtonHarness */ -export declare class ButtonHarnessExample { +declare class ButtonHarnessExample { clicked: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Basic buttons - */ -export declare class ButtonOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { ButtonDisabledInteractiveExample, ButtonHarnessExample, ButtonOverviewExample }; diff --git a/material/card/index.d.ts b/material/card/index.d.ts index beed84a18d..e6d27d408c 100755 --- a/material/card/index.d.ts +++ b/material/card/index.d.ts @@ -1,53 +1,45 @@ import * as i0 from '@angular/core'; /** - * @title Card with actions alignment option - */ -export declare class CardActionsExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Card with multiple sections + * @title Card overview */ -export declare class CardFancyExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class CardOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Card with footer + * @title Testing with MatCardHarness */ -export declare class CardFooterExample { - longText: string; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class CardHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Testing with MatCardHarness + * @title Card with actions alignment option */ -export declare class CardHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class CardActionsExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Card with media size */ -export declare class CardMediaSizeExample { +declare class CardMediaSizeExample { longText: string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Basic cards + * @title Card with footer */ -export declare class CardOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class CardFooterExample { + longText: string; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { CardActionsExample, CardFooterExample, CardHarnessExample, CardMediaSizeExample, CardOverviewExample }; diff --git a/material/checkbox/index.d.ts b/material/checkbox/index.d.ts index 8eadef7373..1a88ae1d93 100755 --- a/material/checkbox/index.d.ts +++ b/material/checkbox/index.d.ts @@ -1,19 +1,14 @@ -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; -import { InputSignal } from '@angular/core'; -import { ModelSignal } from '@angular/core'; -import { Signal } from '@angular/core'; -import { WritableSignal } from '@angular/core'; +import * as _angular_forms from '@angular/forms'; /** * @title Configurable checkbox */ -export declare class CheckboxConfigurableExample { - readonly checked: ModelSignal; - readonly indeterminate: ModelSignal; - readonly labelPosition: ModelSignal<"before" | "after">; - readonly disabled: ModelSignal; +declare class CheckboxConfigurableExample { + readonly checked: i0.ModelSignal; + readonly indeterminate: i0.ModelSignal; + readonly labelPosition: i0.ModelSignal<"before" | "after">; + readonly disabled: i0.ModelSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -21,39 +16,38 @@ export declare class CheckboxConfigurableExample { /** * @title Testing with MatCheckboxHarness */ -export declare class CheckboxHarnessExample { - readonly disabled: InputSignal; +declare class CheckboxHarnessExample { + readonly disabled: i0.InputSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Task { + name: string; + completed: boolean; + subtasks?: Task[]; +} /** * @title Basic checkboxes */ -export declare class CheckboxOverviewExample { - readonly task: WritableSignal; - readonly partiallyComplete: Signal; +declare class CheckboxOverviewExample { + readonly task: i0.WritableSignal; + readonly partiallyComplete: i0.Signal; update(completed: boolean, index?: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Checkboxes with reactive forms */ -export declare class CheckboxReactiveFormsExample { +declare class CheckboxReactiveFormsExample { private readonly _formBuilder; - readonly toppings: FormGroup< { - pepperoni: FormControl; - extracheese: FormControl; - mushroom: FormControl; + readonly toppings: _angular_forms.FormGroup<{ + pepperoni: _angular_forms.FormControl; + extracheese: _angular_forms.FormControl; + mushroom: _angular_forms.FormControl; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Task { - name: string; - completed: boolean; - subtasks?: Task[]; -} - -export { } +export { CheckboxConfigurableExample, CheckboxHarnessExample, CheckboxOverviewExample, CheckboxReactiveFormsExample }; diff --git a/material/chips/index.d.ts b/material/chips/index.d.ts index 254fde4da5..c75d2e79b8 100755 --- a/material/chips/index.d.ts +++ b/material/chips/index.d.ts @@ -1,23 +1,19 @@ -import { CdkDragDrop } from '@angular/cdk/drag-drop'; -import { FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; import { LiveAnnouncer } from '@angular/cdk/a11y'; import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete'; -import { MatChipEditedEvent } from '@angular/material/chips'; -import { MatChipInputEvent } from '@angular/material/chips'; -import { ModelSignal } from '@angular/core'; -import { Signal } from '@angular/core'; -import { WritableSignal } from '@angular/core'; +import { MatChipInputEvent, MatChipEditedEvent } from '@angular/material/chips'; +import { CdkDragDrop } from '@angular/cdk/drag-drop'; +import { FormControl } from '@angular/forms'; /** * @title Chips Autocomplete */ -export declare class ChipsAutocompleteExample { +declare class ChipsAutocompleteExample { readonly separatorKeysCodes: number[]; - readonly currentFruit: ModelSignal; - readonly fruits: WritableSignal; + readonly currentFruit: i0.ModelSignal; + readonly fruits: i0.WritableSignal; readonly allFruits: string[]; - readonly filteredFruits: Signal; + readonly filteredFruits: i0.Signal; readonly announcer: LiveAnnouncer; add(event: MatChipInputEvent): void; remove(fruit: string): void; @@ -26,56 +22,29 @@ export declare class ChipsAutocompleteExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Chips avatar - * @description An avatar inside a chip - */ -export declare class ChipsAvatarExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface Vegetable { + name: string; } - /** * @title Chips Drag and Drop */ -export declare class ChipsDragDropExample { - readonly vegetables: WritableSignal; +declare class ChipsDragDropExample { + readonly vegetables: i0.WritableSignal; drop(event: CdkDragDrop): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Chips with form control - */ -export declare class ChipsFormControlExample { - readonly keywords: WritableSignal; - readonly formControl: FormControl; - announcer: LiveAnnouncer; - removeKeyword(keyword: string): void; - add(event: MatChipInputEvent): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Testing with MatChipsHarness - */ -export declare class ChipsHarnessExample { - isDisabled: WritableSignal; - remove: () => void; - add: () => void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface Fruit { + name: string; } - /** * @title Chips with input */ -export declare class ChipsInputExample { +declare class ChipsInputExample { readonly addOnBlur = true; readonly separatorKeysCodes: readonly [13, 188]; - readonly fruits: WritableSignal; + readonly fruits: i0.WritableSignal; readonly announcer: LiveAnnouncer; add(event: MatChipInputEvent): void; remove(fruit: Fruit): void; @@ -87,16 +56,49 @@ export declare class ChipsInputExample { /** * @title Basic chips */ -export declare class ChipsOverviewExample { +declare class ChipsOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Stacked chips + */ +declare class ChipsStackedExample { + readonly bestBoys: string[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Testing with MatChipsHarness + */ +declare class ChipsHarnessExample { + isDisabled: i0.WritableSignal; + remove: () => void; + add: () => void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Chips with form control + */ +declare class ChipsFormControlExample { + readonly keywords: i0.WritableSignal; + readonly formControl: FormControl; + announcer: LiveAnnouncer; + removeKeyword(keyword: string): void; + add(event: MatChipInputEvent): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Chips in reactive forms */ -export declare class ChipsReactiveFormExample { - readonly reactiveKeywords: WritableSignal; +declare class ChipsReactiveFormExample { + readonly reactiveKeywords: i0.WritableSignal; readonly formControl: FormControl; announcer: LiveAnnouncer; removeReactiveKeyword(keyword: string): void; @@ -105,20 +107,11 @@ export declare class ChipsReactiveFormExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Stacked chips - */ -export declare class ChipsStackedExample { - readonly bestBoys: string[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Chips in template-driven forms */ -export declare class ChipsTemplateFormExample { - readonly templateKeywords: WritableSignal; +declare class ChipsTemplateFormExample { + readonly templateKeywords: i0.WritableSignal; announcer: LiveAnnouncer; removeTemplateKeyword(keyword: string): void; addTemplateKeyword(event: MatChipInputEvent): void; @@ -126,12 +119,13 @@ export declare class ChipsTemplateFormExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Fruit { - name: string; -} - -declare interface Vegetable { - name: string; +/** + * @title Chips avatar + * @description An avatar inside a chip + */ +declare class ChipsAvatarExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { ChipsAutocompleteExample, ChipsAvatarExample, ChipsDragDropExample, ChipsFormControlExample, ChipsHarnessExample, ChipsInputExample, ChipsOverviewExample, ChipsReactiveFormExample, ChipsStackedExample, ChipsTemplateFormExample }; diff --git a/material/core/index.d.ts b/material/core/index.d.ts index 4e896c591c..6d8e8128d8 100755 --- a/material/core/index.d.ts +++ b/material/core/index.d.ts @@ -3,7 +3,7 @@ import * as i0 from '@angular/core'; /** * @title Elevation CSS classes */ -export declare class ElevationOverviewExample { +declare class ElevationOverviewExample { isActive: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -12,7 +12,7 @@ export declare class ElevationOverviewExample { /** * @title MatRipple basic usage */ -export declare class RippleOverviewExample { +declare class RippleOverviewExample { centered: boolean; disabled: boolean; unbounded: boolean; @@ -22,4 +22,4 @@ export declare class RippleOverviewExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { ElevationOverviewExample, RippleOverviewExample }; diff --git a/material/datepicker/index.d.ts b/material/datepicker/index.d.ts index 5c5b043530..6e18b32a97 100755 --- a/material/datepicker/index.d.ts +++ b/material/datepicker/index.d.ts @@ -1,82 +1,116 @@ -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; +import { FormGroup, FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; -import { MatCalendarCellClassFunction } from '@angular/material/datepicker'; -import { MatDatepicker } from '@angular/material/datepicker'; -import { MatDatepickerInputEvent } from '@angular/material/datepicker'; -import { MatDialog } from '@angular/material/dialog'; -import { ModelSignal } from '@angular/core'; -import { Moment } from 'moment'; +import { OnDestroy, OnInit } from '@angular/core'; +import { MatCalendarCellClassFunction, MatDatepickerInputEvent, MatDatepicker } from '@angular/material/datepicker'; import * as _moment from 'moment'; -import { OnDestroy } from '@angular/core'; -import { OnInit } from '@angular/core'; -import { Signal } from '@angular/core'; -import { WritableSignal } from '@angular/core'; +import { Moment } from 'moment'; +import { MatDialog } from '@angular/material/dialog'; + +/** @title Date range picker comparison ranges */ +declare class DateRangePickerComparisonExample { + readonly campaignOne: FormGroup<{ + start: FormControl; + end: FormControl; + }>; + readonly campaignTwo: FormGroup<{ + start: FormControl; + end: FormControl; + }>; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Date range picker forms integration */ +declare class DateRangePickerFormsExample { + readonly range: FormGroup<{ + start: FormControl; + end: FormControl; + }>; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Basic date range picker */ +declare class DateRangePickerOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Date range picker with a custom selection strategy */ +declare class DateRangePickerSelectionStrategyExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** @title Datepicker action buttons */ -export declare class DatepickerActionsExample { +declare class DatepickerActionsExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker open method */ -export declare class DatepickerApiExample { +declare class DatepickerApiExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker with custom calendar header */ -export declare class DatepickerCustomHeaderExample { +declare class DatepickerCustomHeaderExample { readonly exampleHeader: typeof ExampleHeader; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** Custom header component for datepicker. */ +declare class ExampleHeader implements OnDestroy { + private _calendar; + private _dateAdapter; + private _dateFormats; + private _destroyed; + readonly periodLabel: i0.WritableSignal; + constructor(); + ngOnDestroy(): void; + previousClicked(mode: 'month' | 'year'): void; + nextClicked(mode: 'month' | 'year'): void; + static ɵfac: i0.ɵɵFactoryDeclaration, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "example-header", never, {}, {}, never, never, true, never>; +} /** @title Datepicker with custom icon */ -export declare class DatepickerCustomIconExample { +declare class DatepickerCustomIconExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker with custom date classes */ -export declare class DatepickerDateClassExample { +declare class DatepickerDateClassExample { dateClass: MatCalendarCellClassFunction; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Datepicker inside a MatDialog */ -export declare class DatepickerDialogExample { - dialog: MatDialog; - selectedDate: ModelSignal; - openDialog(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** @title Disabled datepicker */ -export declare class DatepickerDisabledExample { +declare class DatepickerDisabledExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker input and change events */ -export declare class DatepickerEventsExample { - events: WritableSignal; +declare class DatepickerEventsExample { + events: i0.WritableSignal; addEvent(type: string, event: MatDatepickerInputEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker with filter validation */ -export declare class DatepickerFilterExample { +declare class DatepickerFilterExample { myFilter: (d: Date | null) => boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker with custom formats */ -export declare class DatepickerFormatsExample { +declare class DatepickerFormatsExample { readonly date: FormControl<_moment.Moment | null>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -85,26 +119,26 @@ export declare class DatepickerFormatsExample { /** * @title Testing with MatDatepickerInputHarness */ -export declare class DatepickerHarnessExample { - date: ModelSignal; - minDate: WritableSignal; +declare class DatepickerHarnessExample { + date: i0.ModelSignal; + minDate: i0.WritableSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker inline calendar example */ -export declare class DatepickerInlineCalendarExample { - selected: ModelSignal; +declare class DatepickerInlineCalendarExample { + selected: i0.ModelSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker with different locale */ -export declare class DatepickerLocaleExample implements OnInit { +declare class DatepickerLocaleExample implements OnInit { private readonly _adapter; private readonly _intl; private readonly _locale; - readonly dateFormatString: Signal<"" | "YYYY/MM/DD" | "DD/MM/YYYY">; + readonly dateFormatString: i0.Signal<"" | "YYYY/MM/DD" | "DD/MM/YYYY">; ngOnInit(): void; french(): void; updateCloseButtonLabel(label: string): void; @@ -113,7 +147,7 @@ export declare class DatepickerLocaleExample implements OnInit { } /** @title Datepicker with min & max validation */ -export declare class DatepickerMinMaxExample { +declare class DatepickerMinMaxExample { private readonly _currentYear; readonly minDate: Date; readonly maxDate: Date; @@ -122,33 +156,33 @@ export declare class DatepickerMinMaxExample { } /** @title Datepicker that uses Moment.js dates */ -export declare class DatepickerMomentExample { +declare class DatepickerMomentExample { readonly date: FormControl<_moment.Moment | null>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Basic datepicker */ -export declare class DatepickerOverviewExample { +declare class DatepickerOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker start date */ -export declare class DatepickerStartViewExample { +declare class DatepickerStartViewExample { readonly startDate: Date; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker touch UI */ -export declare class DatepickerTouchExample { +declare class DatepickerTouchExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Datepicker selected value */ -export declare class DatepickerValueExample { +declare class DatepickerValueExample { readonly date: FormControl; readonly serializedDate: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -156,62 +190,20 @@ export declare class DatepickerValueExample { } /** @title Datepicker emulating a Year and month picker */ -export declare class DatepickerViewsSelectionExample { +declare class DatepickerViewsSelectionExample { readonly date: FormControl<_moment.Moment | null>; setMonthAndYear(normalizedMonthAndYear: Moment, datepicker: MatDatepicker): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Date range picker comparison ranges */ -export declare class DateRangePickerComparisonExample { - readonly campaignOne: FormGroup<{ - start: FormControl; - end: FormControl; - }>; - readonly campaignTwo: FormGroup<{ - start: FormControl; - end: FormControl; - }>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Date range picker forms integration */ -export declare class DateRangePickerFormsExample { - readonly range: FormGroup<{ - start: FormControl; - end: FormControl; - }>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Basic date range picker */ -export declare class DateRangePickerOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Date range picker with a custom selection strategy */ -export declare class DateRangePickerSelectionStrategyExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** Custom header component for datepicker. */ -export declare class ExampleHeader implements OnDestroy { - private _calendar; - private _dateAdapter; - private _dateFormats; - private _destroyed; - readonly periodLabel: WritableSignal; - constructor(); - ngOnDestroy(): void; - previousClicked(mode: 'month' | 'year'): void; - nextClicked(mode: 'month' | 'year'): void; - static ɵfac: i0.ɵɵFactoryDeclaration, never>; - static ɵcmp: i0.ɵɵComponentDeclaration, "example-header", never, {}, {}, never, never, true, never>; +/** @title Datepicker inside a MatDialog */ +declare class DatepickerDialogExample { + dialog: MatDialog; + selectedDate: i0.ModelSignal; + openDialog(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { DateRangePickerComparisonExample, DateRangePickerFormsExample, DateRangePickerOverviewExample, DateRangePickerSelectionStrategyExample, DatepickerActionsExample, DatepickerApiExample, DatepickerCustomHeaderExample, DatepickerCustomIconExample, DatepickerDateClassExample, DatepickerDialogExample, DatepickerDisabledExample, DatepickerEventsExample, DatepickerFilterExample, DatepickerFormatsExample, DatepickerHarnessExample, DatepickerInlineCalendarExample, DatepickerLocaleExample, DatepickerMinMaxExample, DatepickerMomentExample, DatepickerOverviewExample, DatepickerStartViewExample, DatepickerTouchExample, DatepickerValueExample, DatepickerViewsSelectionExample, ExampleHeader }; diff --git a/material/dialog/index.d.ts b/material/dialog/index.d.ts index 4799a826a3..1de4b46f23 100755 --- a/material/dialog/index.d.ts +++ b/material/dialog/index.d.ts @@ -1,60 +1,33 @@ +import * as _angular_material_dialog from '@angular/material/dialog'; +import { MatDialog, MatDialogRef, MatDialogConfig } from '@angular/material/dialog'; import * as i0 from '@angular/core'; -import { MatDialog } from '@angular/material/dialog'; -import { MatDialogConfig } from '@angular/material/dialog'; -import { MatDialogRef } from '@angular/material/dialog'; -import { MatMenuTrigger } from '@angular/material/menu'; -import { ModelSignal } from '@angular/core'; -import { Signal } from '@angular/core'; import { TemplateRef } from '@angular/core'; -import { WritableSignal } from '@angular/core'; - -/** - * @title Dialog Animations - */ -export declare class DialogAnimationsExample { - readonly dialog: MatDialog; - openDialog(enterAnimationDuration: string, exitAnimationDuration: string): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export declare class DialogAnimationsExampleDialog { - readonly dialogRef: MatDialogRef; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} +import { MatMenuTrigger } from '@angular/material/menu'; /** * @title Dialog with header, scrollable content and actions */ -export declare class DialogContentExample { +declare class DialogContentExample { readonly dialog: MatDialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class DialogContentExampleDialog { +declare class DialogContentExampleDialog { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface DialogData { - animal: string; - name: string; -} - /** * @title Injecting data when opening a dialog */ -export declare class DialogDataExample { +declare class DialogDataExample { dialog: MatDialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class DialogDataExampleDialog { +declare class DialogDataExampleDialog { data: any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -63,30 +36,52 @@ export declare class DialogDataExampleDialog { /** * @title Dialog elements */ -export declare class DialogElementsExample { +declare class DialogElementsExample { readonly dialog: MatDialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class DialogElementsExampleDialog { +declare class DialogElementsExampleDialog { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface DialogData { + animal: string; + name: string; +} +/** + * @title Dialog Overview + */ +declare class DialogOverviewExample { + readonly animal: i0.WritableSignal; + readonly name: i0.ModelSignal; + readonly dialog: MatDialog; + openDialog(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +declare class DialogOverviewExampleDialog { + readonly dialogRef: MatDialogRef; + readonly data: DialogData; + readonly animal: i0.ModelSignal; + onNoClick(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Dialog launched from a menu */ -export declare class DialogFromMenuExample { - readonly menuTrigger: Signal; +declare class DialogFromMenuExample { + readonly menuTrigger: i0.Signal; readonly dialog: MatDialog; openDialog(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class DialogFromMenuExampleDialog { +declare class DialogFromMenuExampleDialog { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -94,33 +89,27 @@ export declare class DialogFromMenuExampleDialog { /** * @title Testing with MatDialogHarness */ -export declare class DialogHarnessExample { - readonly dialogTemplate: Signal>; +declare class DialogHarnessExample { + readonly dialogTemplate: i0.Signal>; readonly dialog: MatDialog; - open(config?: MatDialogConfig): MatDialogRef; + open(config?: MatDialogConfig): _angular_material_dialog.MatDialogRef; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Dialog Overview + * @title Dialog Animations */ -export declare class DialogOverviewExample { - readonly animal: WritableSignal; - readonly name: ModelSignal; +declare class DialogAnimationsExample { readonly dialog: MatDialog; - openDialog(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + openDialog(enterAnimationDuration: string, exitAnimationDuration: string): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class DialogOverviewExampleDialog { +declare class DialogAnimationsExampleDialog { readonly dialogRef: MatDialogRef; - readonly data: DialogData; - readonly animal: ModelSignal; - onNoClick(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { DialogAnimationsExample, DialogAnimationsExampleDialog, DialogContentExample, DialogContentExampleDialog, DialogDataExample, DialogDataExampleDialog, DialogElementsExample, DialogElementsExampleDialog, DialogFromMenuExample, DialogFromMenuExampleDialog, DialogHarnessExample, DialogOverviewExample, DialogOverviewExampleDialog }; diff --git a/material/divider/index.d.ts b/material/divider/index.d.ts index 711ba2135e..5e472753d1 100755 --- a/material/divider/index.d.ts +++ b/material/divider/index.d.ts @@ -1,19 +1,19 @@ import * as i0 from '@angular/core'; /** - * @title Testing with MatDividerHarness + * @title Basic divider */ -export declare class DividerHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class DividerOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Basic divider + * @title Testing with MatDividerHarness */ -export declare class DividerOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class DividerHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { DividerHarnessExample, DividerOverviewExample }; diff --git a/material/expansion/index.d.ts b/material/expansion/index.d.ts index bf3e83dcc3..4f0440ebe3 100755 --- a/material/expansion/index.d.ts +++ b/material/expansion/index.d.ts @@ -1,30 +1,20 @@ import * as i0 from '@angular/core'; import { MatAccordion } from '@angular/material/expansion'; -import { Signal } from '@angular/core'; -import { WritableSignal } from '@angular/core'; /** * @title Accordion with expand/collapse all toggles */ -export declare class ExpansionExpandCollapseAllExample { - accordion: Signal; +declare class ExpansionExpandCollapseAllExample { + accordion: i0.Signal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatExpansionPanelHarness and MatAccordionHarness - */ -export declare class ExpansionHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Basic expansion panel */ -export declare class ExpansionOverviewExample { - readonly panelOpenState: WritableSignal; +declare class ExpansionOverviewExample { + readonly panelOpenState: i0.WritableSignal; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -32,8 +22,8 @@ export declare class ExpansionOverviewExample { /** * @title Expansion panel as accordion */ -export declare class ExpansionStepsExample { - step: WritableSignal; +declare class ExpansionStepsExample { + step: i0.WritableSignal; setStep(index: number): void; nextStep(): void; prevStep(): void; @@ -41,4 +31,12 @@ export declare class ExpansionStepsExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatExpansionPanelHarness and MatAccordionHarness + */ +declare class ExpansionHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { ExpansionExpandCollapseAllExample, ExpansionHarnessExample, ExpansionOverviewExample, ExpansionStepsExample }; diff --git a/material/form-field/index.d.ts b/material/form-field/index.d.ts index 21c7d3679d..e609af1d69 100755 --- a/material/form-field/index.d.ts +++ b/material/form-field/index.d.ts @@ -1,89 +1,25 @@ -import { AbstractControl } from '@angular/forms'; -import { ControlValueAccessor } from '@angular/forms'; -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; -import { InputSignal } from '@angular/core'; -import { InputSignalWithTransform } from '@angular/core'; -import { MatFormField } from '@angular/material/form-field'; -import { MatFormFieldControl } from '@angular/material/form-field'; -import { ModelSignal } from '@angular/core'; -import { NgControl } from '@angular/forms'; import { OnDestroy } from '@angular/core'; -import { Signal } from '@angular/core'; +import * as _angular_material_form_field from '@angular/material/form-field'; +import { MatFormFieldControl } from '@angular/material/form-field'; +import * as _angular_forms from '@angular/forms'; +import { FormGroup, FormControl, ControlValueAccessor, NgControl, AbstractControl } from '@angular/forms'; import { Subject } from 'rxjs'; -import { WritableSignal } from '@angular/core'; /** @title Form field appearance variants */ -export declare class FormFieldAppearanceExample { +declare class FormFieldAppearanceExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Form field with custom telephone number input control. */ -export declare class FormFieldCustomControlExample { +declare class FormFieldCustomControlExample { readonly form: FormGroup<{ tel: FormControl; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -/** @title Form field with error messages */ -export declare class FormFieldErrorExample { - readonly email: FormControl; - errorMessage: WritableSignal; - constructor(); - updateErrorMessage(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Testing with MatFormFieldHarness - */ -export declare class FormFieldHarnessExample { - readonly requiredControl: FormControl; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Form field with hints */ -export declare class FormFieldHintExample { - protected readonly value: WritableSignal; - protected onInput(event: Event): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Form field with label */ -export declare class FormFieldLabelExample { - readonly hideRequiredControl: FormControl; - readonly floatLabelControl: FormControl<"always" | "auto" | null>; - readonly options: FormGroup< { - hideRequired: FormControl; - floatLabel: FormControl<"always" | "auto" | null>; - }>; - protected readonly hideRequired: Signal; - protected readonly floatLabel: Signal<"always" | "auto">; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Simple form field */ -export declare class FormFieldOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Form field with prefix & suffix */ -export declare class FormFieldPrefixSuffixExample { - hide: WritableSignal; - clickEvent(event: MouseEvent): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** Data structure for holding telephone number. */ declare class MyTel { area: string; @@ -91,13 +27,12 @@ declare class MyTel { subscriber: string; constructor(area: string, exchange: string, subscriber: string); } - /** Custom `MatFormFieldControl` for telephone number input. */ -export declare class MyTelInput implements ControlValueAccessor, MatFormFieldControl, OnDestroy { +declare class MyTelInput implements ControlValueAccessor, MatFormFieldControl, OnDestroy { static nextId: number; - readonly areaInput: Signal; - readonly exchangeInput: Signal; - readonly subscriberInput: Signal; + readonly areaInput: i0.Signal; + readonly exchangeInput: i0.Signal; + readonly subscriberInput: i0.Signal; ngControl: NgControl | null; readonly parts: FormGroup<{ area: FormControl; @@ -105,17 +40,17 @@ export declare class MyTelInput implements ControlValueAccessor, MatFormFieldCon subscriber: FormControl; }>; readonly stateChanges: Subject; - readonly touched: WritableSignal; + readonly touched: i0.WritableSignal; readonly controlType = "example-tel-input"; readonly id: string; - readonly _userAriaDescribedBy: InputSignal; - readonly _placeholder: InputSignal; - readonly _required: InputSignalWithTransform; - readonly _disabledByInput: InputSignalWithTransform; - readonly _value: ModelSignal; + readonly _userAriaDescribedBy: i0.InputSignal; + readonly _placeholder: i0.InputSignal; + readonly _required: i0.InputSignalWithTransform; + readonly _disabledByInput: i0.InputSignalWithTransform; + readonly _value: i0.ModelSignal; onChange: (_: any) => void; onTouched: () => void; - protected readonly _formField: MatFormField | null; + protected readonly _formField: _angular_material_form_field.MatFormField | null; private readonly _focused; private readonly _disabledByCva; private readonly _disabled; @@ -148,4 +83,59 @@ export declare class MyTelInput implements ControlValueAccessor, MatFormFieldCon static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** @title Form field with error messages */ +declare class FormFieldErrorExample { + readonly email: FormControl; + errorMessage: i0.WritableSignal; + constructor(); + updateErrorMessage(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Testing with MatFormFieldHarness + */ +declare class FormFieldHarnessExample { + readonly requiredControl: FormControl; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Form field with hints */ +declare class FormFieldHintExample { + protected readonly value: i0.WritableSignal; + protected onInput(event: Event): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Form field with label */ +declare class FormFieldLabelExample { + readonly hideRequiredControl: FormControl; + readonly floatLabelControl: FormControl<"always" | "auto" | null>; + readonly options: _angular_forms.FormGroup<{ + hideRequired: FormControl; + floatLabel: FormControl<"always" | "auto" | null>; + }>; + protected readonly hideRequired: i0.Signal; + protected readonly floatLabel: i0.Signal<"always" | "auto">; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Simple form field */ +declare class FormFieldOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Form field with prefix & suffix */ +declare class FormFieldPrefixSuffixExample { + hide: i0.WritableSignal; + clickEvent(event: MouseEvent): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { FormFieldAppearanceExample, FormFieldCustomControlExample, FormFieldErrorExample, FormFieldHarnessExample, FormFieldHintExample, FormFieldLabelExample, FormFieldOverviewExample, FormFieldPrefixSuffixExample, MyTelInput }; diff --git a/material/grid-list/index.d.ts b/material/grid-list/index.d.ts index 26a1e2c68d..655f523691 100755 --- a/material/grid-list/index.d.ts +++ b/material/grid-list/index.d.ts @@ -1,35 +1,34 @@ import * as i0 from '@angular/core'; +interface Tile { + color: string; + cols: number; + rows: number; + text: string; +} /** * @title Dynamic grid-list */ -export declare class GridListDynamicExample { +declare class GridListDynamicExample { tiles: Tile[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatGridListHarness - */ -export declare class GridListHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Basic grid-list */ -export declare class GridListOverviewExample { +declare class GridListOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Tile { - color: string; - cols: number; - rows: number; - text: string; +/** + * @title Testing with MatGridListHarness + */ +declare class GridListHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { GridListDynamicExample, GridListHarnessExample, GridListOverviewExample }; diff --git a/material/icon/index.d.ts b/material/icon/index.d.ts index b3a369724e..e334f48bc3 100755 --- a/material/icon/index.d.ts +++ b/material/icon/index.d.ts @@ -1,17 +1,9 @@ import * as i0 from '@angular/core'; -/** - * @title Testing with MatIconHarness - */ -export declare class IconHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Basic icons */ -export declare class IconOverviewExample { +declare class IconOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -19,10 +11,18 @@ export declare class IconOverviewExample { /** * @title SVG icons */ -export declare class IconSvgExample { +declare class IconSvgExample { constructor(); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatIconHarness + */ +declare class IconHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { IconHarnessExample, IconOverviewExample, IconSvgExample }; diff --git a/material/input/index.d.ts b/material/input/index.d.ts index 12f8bf40cf..e77fdfee98 100755 --- a/material/input/index.d.ts +++ b/material/input/index.d.ts @@ -1,30 +1,22 @@ -import { ErrorStateMatcher } from '@angular/material/core'; -import { FormControl } from '@angular/forms'; -import { FormGroupDirective } from '@angular/forms'; import * as i0 from '@angular/core'; -import { NgForm } from '@angular/forms'; -import { WritableSignal } from '@angular/core'; +import { FormControl, FormGroupDirective, NgForm } from '@angular/forms'; +import { ErrorStateMatcher } from '@angular/material/core'; /** * @title Input with a clear button */ -export declare class InputClearableExample { +declare class InputClearableExample { value: string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Input with error messages - */ -export declare class InputErrorsExample { - emailFormControl: FormControl; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** Error when invalid control is dirty, touched, or submitted. */ +declare class MyErrorStateMatcher implements ErrorStateMatcher { + isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean; } - /** @title Input with a custom ErrorStateMatcher */ -export declare class InputErrorStateMatcherExample { +declare class InputErrorStateMatcherExample { emailFormControl: FormControl; matcher: MyErrorStateMatcher; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -32,27 +24,26 @@ export declare class InputErrorStateMatcherExample { } /** - * @title Inputs in a form + * @title Input with error messages */ -export declare class InputFormExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class InputErrorsExample { + emailFormControl: FormControl; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Testing with MatInputHarness + * @title Inputs in a form */ -export declare class InputHarnessExample { - inputType: WritableSignal; - disabled: WritableSignal; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class InputFormExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Input with hints */ -export declare class InputHintExample { +declare class InputHintExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -60,7 +51,7 @@ export declare class InputHintExample { /** * @title Basic Inputs */ -export declare class InputOverviewExample { +declare class InputOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -68,14 +59,19 @@ export declare class InputOverviewExample { /** * @title Inputs with prefixes and suffixes */ -export declare class InputPrefixSuffixExample { +declare class InputPrefixSuffixExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** Error when invalid control is dirty, touched, or submitted. */ -declare class MyErrorStateMatcher implements ErrorStateMatcher { - isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean; +/** + * @title Testing with MatInputHarness + */ +declare class InputHarnessExample { + inputType: i0.WritableSignal; + disabled: i0.WritableSignal; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { InputClearableExample, InputErrorStateMatcherExample, InputErrorsExample, InputFormExample, InputHarnessExample, InputHintExample, InputOverviewExample, InputPrefixSuffixExample }; diff --git a/material/list/index.d.ts b/material/list/index.d.ts index 18124e4079..38a28f9a1a 100755 --- a/material/list/index.d.ts +++ b/material/list/index.d.ts @@ -1,27 +1,22 @@ -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; - -/** - * @title Testing with MatListHarness - */ -export declare class ListHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} +import { FormGroup, FormControl } from '@angular/forms'; /** * @title Basic list */ -export declare class ListOverviewExample { +declare class ListOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Section { + name: string; + updated: Date; +} /** * @title List with sections */ -export declare class ListSectionsExample { +declare class ListSectionsExample { folders: Section[]; notes: Section[]; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -31,57 +26,58 @@ export declare class ListSectionsExample { /** * @title List with selection */ -export declare class ListSelectionExample { +declare class ListSelectionExample { typesOfShoes: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Shoes$1 { + value: string; + name: string; +} /** * @title List with single selection using Reactive Forms */ -export declare class ListSingleSelectionExample { +declare class ListSingleSelectionExample { form: FormGroup; - shoes: Shoes[]; + shoes: Shoes$1[]; shoesControl: FormControl; constructor(); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Shoes { + value: string; + name: string; +} /** * @title List with single selection using Reactive forms */ -export declare class ListSingleSelectionReactiveFormExample { +declare class ListSingleSelectionReactiveFormExample { form: FormGroup; - shoes: Shoes_2[]; + shoes: Shoes[]; shoesControl: FormControl; constructor(); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Testing with MatListHarness + */ +declare class ListHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title List variants */ -export declare class ListVariantsExample { +declare class ListVariantsExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Section { - name: string; - updated: Date; -} - -declare interface Shoes { - value: string; - name: string; -} - -declare interface Shoes_2 { - value: string; - name: string; -} - -export { } +export { ListHarnessExample, ListOverviewExample, ListSectionsExample, ListSelectionExample, ListSingleSelectionExample, ListSingleSelectionReactiveFormExample, ListVariantsExample }; diff --git a/material/menu/index.d.ts b/material/menu/index.d.ts index b493d3be77..c71a70fdc6 100755 --- a/material/menu/index.d.ts +++ b/material/menu/index.d.ts @@ -1,33 +1,17 @@ import * as i0 from '@angular/core'; -/** - * @title Testing with MatMenuHarness - */ -export declare class MenuHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Menu with icons */ -export declare class MenuIconsExample { +declare class MenuIconsExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Nested menu - */ -export declare class MenuNestedExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Basic menu */ -export declare class MenuOverviewExample { +declare class MenuOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -35,9 +19,25 @@ export declare class MenuOverviewExample { /** * @title Menu positioning */ -export declare class MenuPositionExample { +declare class MenuPositionExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Nested menu + */ +declare class MenuNestedExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Testing with MatMenuHarness + */ +declare class MenuHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { MenuHarnessExample, MenuIconsExample, MenuNestedExample, MenuOverviewExample, MenuPositionExample }; diff --git a/material/paginator/index.d.ts b/material/paginator/index.d.ts index 3e3c3643b1..b68f597235 100755 --- a/material/paginator/index.d.ts +++ b/material/paginator/index.d.ts @@ -1,10 +1,10 @@ -import * as i0 from '@angular/core'; import { PageEvent } from '@angular/material/paginator'; +import * as i0 from '@angular/core'; /** * @title Configurable paginator */ -export declare class PaginatorConfigurableExample { +declare class PaginatorConfigurableExample { length: number; pageSize: number; pageIndex: number; @@ -20,10 +20,18 @@ export declare class PaginatorConfigurableExample { static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Paginator + */ +declare class PaginatorOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Testing with MatPaginatorHarness */ -export declare class PaginatorHarnessExample { +declare class PaginatorHarnessExample { length: number; pageSize: number; pageIndex: number; @@ -37,17 +45,9 @@ export declare class PaginatorHarnessExample { /** * @title Paginator internationalization */ -export declare class PaginatorIntlExample { +declare class PaginatorIntlExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Paginator - */ -export declare class PaginatorOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { PaginatorConfigurableExample, PaginatorHarnessExample, PaginatorIntlExample, PaginatorOverviewExample }; diff --git a/material/progress-bar/index.d.ts b/material/progress-bar/index.d.ts index 41f04916cc..010a075383 100755 --- a/material/progress-bar/index.d.ts +++ b/material/progress-bar/index.d.ts @@ -1,11 +1,10 @@ import * as i0 from '@angular/core'; import { ProgressBarMode } from '@angular/material/progress-bar'; -import { WritableSignal } from '@angular/core'; /** * @title Buffer progress-bar */ -export declare class ProgressBarBufferExample { +declare class ProgressBarBufferExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -13,7 +12,7 @@ export declare class ProgressBarBufferExample { /** * @title Configurable progress-bar */ -export declare class ProgressBarConfigurableExample { +declare class ProgressBarConfigurableExample { mode: ProgressBarMode; value: number; bufferValue: number; @@ -24,24 +23,15 @@ export declare class ProgressBarConfigurableExample { /** * @title Determinate progress-bar */ -export declare class ProgressBarDeterminateExample { +declare class ProgressBarDeterminateExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatProgressBarHarness - */ -export declare class ProgressBarHarnessExample { - value: WritableSignal; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Indeterminate progress-bar */ -export declare class ProgressBarIndeterminateExample { +declare class ProgressBarIndeterminateExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -49,9 +39,18 @@ export declare class ProgressBarIndeterminateExample { /** * @title Query progress-bar */ -export declare class ProgressBarQueryExample { +declare class ProgressBarQueryExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatProgressBarHarness + */ +declare class ProgressBarHarnessExample { + value: i0.WritableSignal; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { ProgressBarBufferExample, ProgressBarConfigurableExample, ProgressBarDeterminateExample, ProgressBarHarnessExample, ProgressBarIndeterminateExample, ProgressBarQueryExample }; diff --git a/material/progress-spinner/index.d.ts b/material/progress-spinner/index.d.ts index 0cd36478c3..24cb7a60d5 100755 --- a/material/progress-spinner/index.d.ts +++ b/material/progress-spinner/index.d.ts @@ -1,11 +1,10 @@ -import * as i0 from '@angular/core'; import { ProgressSpinnerMode } from '@angular/material/progress-spinner'; -import { WritableSignal } from '@angular/core'; +import * as i0 from '@angular/core'; /** * @title Configurable progress spinner */ -export declare class ProgressSpinnerConfigurableExample { +declare class ProgressSpinnerConfigurableExample { mode: ProgressSpinnerMode; value: number; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -13,20 +12,20 @@ export declare class ProgressSpinnerConfigurableExample { } /** - * @title Testing with MatProgressSpinnerHarness + * @title Basic progress-spinner */ -export declare class ProgressSpinnerHarnessExample { - value: WritableSignal; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ProgressSpinnerOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Basic progress-spinner + * @title Testing with MatProgressSpinnerHarness */ -export declare class ProgressSpinnerOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ProgressSpinnerHarnessExample { + value: i0.WritableSignal; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { ProgressSpinnerConfigurableExample, ProgressSpinnerHarnessExample, ProgressSpinnerOverviewExample }; diff --git a/material/radio/index.d.ts b/material/radio/index.d.ts index 91e101f7ea..5dc1331f83 100755 --- a/material/radio/index.d.ts +++ b/material/radio/index.d.ts @@ -1,17 +1,9 @@ import * as i0 from '@angular/core'; -/** - * @title Testing with MatRadioHarness - */ -export declare class RadioHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Radios with ngModel */ -export declare class RadioNgModelExample { +declare class RadioNgModelExample { favoriteSeason: string; seasons: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -21,9 +13,17 @@ export declare class RadioNgModelExample { /** * @title Basic radios */ -export declare class RadioOverviewExample { +declare class RadioOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatRadioHarness + */ +declare class RadioHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { RadioHarnessExample, RadioNgModelExample, RadioOverviewExample }; diff --git a/material/select/index.d.ts b/material/select/index.d.ts index 675cd7ee1c..1afff22313 100755 --- a/material/select/index.d.ts +++ b/material/select/index.d.ts @@ -1,68 +1,9 @@ -import { ErrorStateMatcher } from '@angular/material/core'; -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; -import { FormGroupDirective } from '@angular/forms'; +import { FormControl, FormGroupDirective, NgForm, FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; -import { NgForm } from '@angular/forms'; - -declare interface Animal { - name: string; - sound: string; -} - -declare interface Car { - value: string; - viewValue: string; -} - -declare interface Car_2 { - value: string; - viewValue: string; -} - -declare interface Car_3 { - value: string; - viewValue: string; -} - -declare interface Food { - value: string; - viewValue: string; -} - -declare interface Food_2 { - value: string; - viewValue: string; -} - -declare interface Food_3 { - value: string; - viewValue: string; -} - -declare interface Food_4 { - value: string; - viewValue: string; -} - -/** Error when invalid control is dirty, touched, or submitted. */ -declare class MyErrorStateMatcher implements ErrorStateMatcher { - isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean; -} - -declare interface Pokemon { - value: string; - viewValue: string; -} - -declare interface PokemonGroup { - disabled?: boolean; - name: string; - pokemon: Pokemon[]; -} +import { ErrorStateMatcher } from '@angular/material/core'; /** @title Select with custom trigger text */ -export declare class SelectCustomTriggerExample { +declare class SelectCustomTriggerExample { toppings: FormControl; toppingList: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -70,14 +11,18 @@ export declare class SelectCustomTriggerExample { } /** @title Disabled select */ -export declare class SelectDisabledExample { +declare class SelectDisabledExample { disableSelect: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** Error when invalid control is dirty, touched, or submitted. */ +declare class MyErrorStateMatcher implements ErrorStateMatcher { + isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean; +} /** @title Select with a custom ErrorStateMatcher */ -export declare class SelectErrorStateMatcherExample { +declare class SelectErrorStateMatcherExample { selected: FormControl; selectFormControl: FormControl; nativeSelectFormControl: FormControl; @@ -86,32 +31,32 @@ export declare class SelectErrorStateMatcherExample { static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Food$3 { + value: string; + viewValue: string; +} +interface Car$2 { + value: string; + viewValue: string; +} /** * @title Select in a form */ -export declare class SelectFormExample { +declare class SelectFormExample { selectedValue: string; selectedCar: string; - foods: Food[]; - cars: Car[]; + foods: Food$3[]; + cars: Car$2[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatSelectHarness - */ -export declare class SelectHarnessExample { - foods: { - value: string; - viewValue: string; - }[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface Animal { + name: string; + sound: string; } - /** @title Select with form field features */ -export declare class SelectHintErrorExample { +declare class SelectHintErrorExample { animalControl: FormControl; selectFormControl: FormControl; animals: Animal[]; @@ -119,21 +64,8 @@ export declare class SelectHintErrorExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Basic select with initial value and no form - */ -export declare class SelectInitialValueExample { - foods: Food_4[]; - cars: Car_3[]; - selectedFood: string; - selectedCar: string; - selectCar(event: Event): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** @title Select with multiple selection */ -export declare class SelectMultipleExample { +declare class SelectMultipleExample { toppings: FormControl; toppingList: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -141,24 +73,37 @@ export declare class SelectMultipleExample { } /** @title Select with no option ripple */ -export declare class SelectNoRippleExample { +declare class SelectNoRippleExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Pokemon { + value: string; + viewValue: string; +} +interface PokemonGroup { + disabled?: boolean; + name: string; + pokemon: Pokemon[]; +} /** @title Select with option groups */ -export declare class SelectOptgroupExample { +declare class SelectOptgroupExample { pokemonControl: FormControl; pokemonGroups: PokemonGroup[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface Food$2 { + value: string; + viewValue: string; +} /** * @title Basic select */ -export declare class SelectOverviewExample { - foods: Food_2[]; +declare class SelectOverviewExample { + foods: Food$2[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -166,18 +111,40 @@ export declare class SelectOverviewExample { /** * @title Select with custom panel styling */ -export declare class SelectPanelClassExample { +declare class SelectPanelClassExample { panelColor: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** @title Select with reset option */ +declare class SelectResetExample { + states: string[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** @title Select with 2-way value binding */ +declare class SelectValueBindingExample { + selected: string; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +interface Food$1 { + value: string; + viewValue: string; +} +interface Car$1 { + value: string; + viewValue: string; +} /** * @title Select in a reactive form */ -export declare class SelectReactiveFormExample { - foods: Food_3[]; - cars: Car_2[]; +declare class SelectReactiveFormExample { + foods: Food$1[]; + cars: Car$1[]; foodControl: FormControl; carControl: FormControl; form: FormGroup<{ @@ -188,15 +155,29 @@ export declare class SelectReactiveFormExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Select with reset option */ -export declare class SelectResetExample { - states: string[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface Food { + value: string; + viewValue: string; +} +interface Car { + value: string; + viewValue: string; +} +/** + * @title Basic select with initial value and no form + */ +declare class SelectInitialValueExample { + foods: Food[]; + cars: Car[]; + selectedFood: string; + selectedCar: string; + selectCar(event: Event): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Select with selectable null options */ -export declare class SelectSelectableNullExample { +declare class SelectSelectableNullExample { value: number | null; options: ({ label: string; @@ -209,11 +190,16 @@ export declare class SelectSelectableNullExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Select with 2-way value binding */ -export declare class SelectValueBindingExample { - selected: string; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** + * @title Testing with MatSelectHarness + */ +declare class SelectHarnessExample { + foods: { + value: string; + viewValue: string; + }[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { SelectCustomTriggerExample, SelectDisabledExample, SelectErrorStateMatcherExample, SelectFormExample, SelectHarnessExample, SelectHintErrorExample, SelectInitialValueExample, SelectMultipleExample, SelectNoRippleExample, SelectOptgroupExample, SelectOverviewExample, SelectPanelClassExample, SelectReactiveFormExample, SelectResetExample, SelectSelectableNullExample, SelectValueBindingExample }; diff --git a/material/sidenav/index.d.ts b/material/sidenav/index.d.ts index 0dcdfc828f..95502b4177 100755 --- a/material/sidenav/index.d.ts +++ b/material/sidenav/index.d.ts @@ -1,37 +1,26 @@ -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; -import { MatSidenav } from '@angular/material/sidenav'; import { OnDestroy } from '@angular/core'; -import { WritableSignal } from '@angular/core'; +import { MatSidenav } from '@angular/material/sidenav'; +import * as _angular_forms from '@angular/forms'; +import { FormControl } from '@angular/forms'; /** * @title Autosize sidenav */ -export declare class SidenavAutosizeExample { +declare class SidenavAutosizeExample { showFiller: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Drawer with explicit backdrop setting */ -export declare class SidenavBackdropExample { +declare class SidenavBackdropExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Sidenav using injected ConfigurableFocusTrap */ -export declare class SidenavConfigurableFocusTrapExample { - mode: FormControl<"push" | "over" | "side" | null>; - hasBackdrop: FormControl; - position: FormControl<"start" | "end" | null>; - shouldRun: boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** @title Sidenav with custom escape and backdrop click behavior */ -export declare class SidenavDisableCloseExample { +declare class SidenavDisableCloseExample { sidenav: MatSidenav; reason: string; close(reason: string): void; @@ -41,34 +30,36 @@ export declare class SidenavDisableCloseExample { } /** @title Basic drawer */ -export declare class SidenavDrawerOverviewExample { +declare class SidenavDrawerOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Fixed sidenav */ -export declare class SidenavFixedExample { +declare class SidenavFixedExample { private _formBuilder; - options: FormGroup< { - bottom: FormControl; - fixed: FormControl; - top: FormControl; + options: _angular_forms.FormGroup<{ + bottom: _angular_forms.FormControl; + fixed: _angular_forms.FormControl; + top: _angular_forms.FormControl; }>; shouldRun: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatSidenavHarness - */ -export declare class SidenavHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Sidenav using injected ConfigurableFocusTrap */ +declare class SidenavConfigurableFocusTrapExample { + mode: FormControl<"push" | "over" | "side" | null>; + hasBackdrop: FormControl; + position: FormControl<"start" | "end" | null>; + shouldRun: boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Sidenav open & close behavior */ -export declare class SidenavOpenCloseExample { +declare class SidenavOpenCloseExample { events: string[]; opened: boolean; shouldRun: boolean; @@ -77,24 +68,24 @@ export declare class SidenavOpenCloseExample { } /** @title Basic sidenav */ -export declare class SidenavOverviewExample { +declare class SidenavOverviewExample { shouldRun: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Implicit main content with two sidenavs */ -export declare class SidenavPositionExample { +declare class SidenavPositionExample { shouldRun: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Responsive sidenav */ -export declare class SidenavResponsiveExample implements OnDestroy { +declare class SidenavResponsiveExample implements OnDestroy { protected readonly fillerNav: string[]; protected readonly fillerContent: string[]; - protected readonly isMobile: WritableSignal; + protected readonly isMobile: i0.WritableSignal; private readonly _mobileQuery; private readonly _mobileQueryListener; constructor(); @@ -104,4 +95,12 @@ export declare class SidenavResponsiveExample implements OnDestroy { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatSidenavHarness + */ +declare class SidenavHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { SidenavAutosizeExample, SidenavBackdropExample, SidenavConfigurableFocusTrapExample, SidenavDisableCloseExample, SidenavDrawerOverviewExample, SidenavFixedExample, SidenavHarnessExample, SidenavOpenCloseExample, SidenavOverviewExample, SidenavPositionExample, SidenavResponsiveExample }; diff --git a/material/slide-toggle/index.d.ts b/material/slide-toggle/index.d.ts index adc13bf0b9..11b5b9d8a8 100755 --- a/material/slide-toggle/index.d.ts +++ b/material/slide-toggle/index.d.ts @@ -1,11 +1,11 @@ -import { FormControl } from '@angular/forms'; -import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; +import * as _angular_forms from '@angular/forms'; +import { FormGroup, FormControl } from '@angular/forms'; /** * @title Configurable slide-toggle */ -export declare class SlideToggleConfigurableExample { +declare class SlideToggleConfigurableExample { checked: boolean; disabled: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -15,34 +15,34 @@ export declare class SlideToggleConfigurableExample { /** * @title Slide-toggle with forms */ -export declare class SlideToggleFormsExample { +declare class SlideToggleFormsExample { private _formBuilder; isChecked: boolean; formGroup: FormGroup<{ - enableWifi: FormControl; - acceptTerms: FormControl; + enableWifi: _angular_forms.FormControl; + acceptTerms: _angular_forms.FormControl; }>; alertFormValues(formGroup: FormGroup): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Basic slide-toggles + */ +declare class SlideToggleOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Testing with MatSlideToggleHarness */ -export declare class SlideToggleHarnessExample { +declare class SlideToggleHarnessExample { disabled: boolean; ctrl: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Basic slide-toggles - */ -export declare class SlideToggleOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { SlideToggleConfigurableExample, SlideToggleFormsExample, SlideToggleHarnessExample, SlideToggleOverviewExample }; diff --git a/material/slider/index.d.ts b/material/slider/index.d.ts index 3fa18b624a..a91a677e8a 100755 --- a/material/slider/index.d.ts +++ b/material/slider/index.d.ts @@ -3,7 +3,7 @@ import * as i0 from '@angular/core'; /** * @title Configurable slider */ -export declare class SliderConfigurableExample { +declare class SliderConfigurableExample { disabled: boolean; max: number; min: number; @@ -18,34 +18,34 @@ export declare class SliderConfigurableExample { /** * @title Slider with custom thumb label formatting. */ -export declare class SliderFormattingExample { +declare class SliderFormattingExample { formatLabel(value: number): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Testing with MatSliderHarness + * @title Basic slider */ -export declare class SliderHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class SliderOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Basic slider + * @title Testing with MatSliderHarness */ -export declare class SliderOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class SliderHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Range slider */ -export declare class SliderRangeExample { +declare class SliderRangeExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { SliderConfigurableExample, SliderFormattingExample, SliderHarnessExample, SliderOverviewExample, SliderRangeExample }; diff --git a/material/snack-bar/index.d.ts b/material/snack-bar/index.d.ts index b771e0eccd..b67081919f 100755 --- a/material/snack-bar/index.d.ts +++ b/material/snack-bar/index.d.ts @@ -1,18 +1,18 @@ import * as i0 from '@angular/core'; -import { MatSnackBar } from '@angular/material/snack-bar'; -import { MatSnackBarConfig } from '@angular/material/snack-bar'; -import { MatSnackBarHorizontalPosition } from '@angular/material/snack-bar'; -import { MatSnackBarRef } from '@angular/material/snack-bar'; -import { MatSnackBarVerticalPosition } from '@angular/material/snack-bar'; -import { TextOnlySnackBar } from '@angular/material/snack-bar'; +import * as _angular_material_snack_bar from '@angular/material/snack-bar'; +import { MatSnackBarRef, MatSnackBarHorizontalPosition, MatSnackBarVerticalPosition, MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; -export declare class PizzaPartyAnnotatedComponent { - snackBarRef: MatSnackBarRef; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** + * @title Snack-bar with a custom component + */ +declare class SnackBarComponentExample { + private _snackBar; + durationInSeconds: number; + openSnackBar(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } - -export declare class PizzaPartyComponent { +declare class PizzaPartyComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -20,39 +20,23 @@ export declare class PizzaPartyComponent { /** * @title Snack-bar with an annotated custom component */ -export declare class SnackBarAnnotatedComponentExample { +declare class SnackBarAnnotatedComponentExample { private _snackBar; durationInSeconds: number; openSnackBar(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -/** - * @title Snack-bar with a custom component - */ -export declare class SnackBarComponentExample { - private _snackBar; - durationInSeconds: number; - openSnackBar(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Testing with MatSnackBarHarness - */ -export declare class SnackBarHarnessExample { - readonly snackBar: MatSnackBar; - open(message: string, action?: string, config?: MatSnackBarConfig): MatSnackBarRef; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class PizzaPartyAnnotatedComponent { + snackBarRef: MatSnackBarRef; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Basic snack-bar */ -export declare class SnackBarOverviewExample { +declare class SnackBarOverviewExample { private _snackBar; openSnackBar(message: string, action: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -62,7 +46,7 @@ export declare class SnackBarOverviewExample { /** * @title Snack-bar with configurable position */ -export declare class SnackBarPositionExample { +declare class SnackBarPositionExample { private _snackBar; horizontalPosition: MatSnackBarHorizontalPosition; verticalPosition: MatSnackBarVerticalPosition; @@ -71,4 +55,14 @@ export declare class SnackBarPositionExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * @title Testing with MatSnackBarHarness + */ +declare class SnackBarHarnessExample { + readonly snackBar: MatSnackBar; + open(message: string, action?: string, config?: MatSnackBarConfig): _angular_material_snack_bar.MatSnackBarRef<_angular_material_snack_bar.TextOnlySnackBar>; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { PizzaPartyAnnotatedComponent, PizzaPartyComponent, SnackBarAnnotatedComponentExample, SnackBarComponentExample, SnackBarHarnessExample, SnackBarOverviewExample, SnackBarPositionExample }; diff --git a/material/sort/index.d.ts b/material/sort/index.d.ts index bd4e0f3253..b7a92c5a38 100755 --- a/material/sort/index.d.ts +++ b/material/sort/index.d.ts @@ -1,20 +1,30 @@ -import * as i0 from '@angular/core'; import { Sort } from '@angular/material/sort'; -import { WritableSignal } from '@angular/core'; +import * as i0 from '@angular/core'; -declare interface Dessert { +interface Dessert { calories: number; carbs: number; fat: number; name: string; protein: number; } +/** + * @title Sorting overview + */ +declare class SortOverviewExample { + desserts: Dessert[]; + sortedData: Dessert[]; + constructor(); + sortData(sort: Sort): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} /** * @title Testing with MatSortHarness */ -export declare class SortHarnessExample { - disableThirdHeader: WritableSignal; +declare class SortHarnessExample { + disableThirdHeader: i0.WritableSignal; desserts: { name: string; calories: number; @@ -34,16 +44,4 @@ export declare class SortHarnessExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Sorting overview - */ -export declare class SortOverviewExample { - desserts: Dessert[]; - sortedData: Dessert[]; - constructor(); - sortData(sort: Sort): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -export { } +export { SortHarnessExample, SortOverviewExample }; diff --git a/material/stepper/index.d.ts b/material/stepper/index.d.ts index 4f4ce80597..f53d3c7c90 100755 --- a/material/stepper/index.d.ts +++ b/material/stepper/index.d.ts @@ -1,30 +1,19 @@ -import { FormControl } from '@angular/forms'; +import * as _angular_forms from '@angular/forms'; import { FormGroup } from '@angular/forms'; import * as i0 from '@angular/core'; -import { Observable } from 'rxjs'; import { StepperOrientation } from '@angular/material/stepper'; - -/** - * @title Stepper animations - */ -export declare class StepperAnimationsExample { - private _formBuilder; - firstFormGroup: FormGroup; - secondFormGroup: FormGroup; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} +import { Observable } from 'rxjs'; /** * @title Stepper with editable steps */ -export declare class StepperEditableExample { +declare class StepperEditableExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; isEditable: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -34,128 +23,144 @@ export declare class StepperEditableExample { /** * @title Stepper that displays errors in the steps */ -export declare class StepperErrorsExample { +declare class StepperErrorsExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Testing with MatStepperHarness + * @title Stepper label bottom position */ -export declare class StepperHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class StepperLabelPositionBottomExample { + private _formBuilder; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; + }>; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; + }>; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper header position + * @title Stepper with optional steps */ -export declare class StepperHeaderPositionExample { +declare class StepperOptionalExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + isOptional: boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper that uses the MatStepperIntl service + * @title Stepper overview */ -export declare class StepperIntlExample { +declare class StepperOverviewExample { private _formBuilder; - private _matStepperIntl; - optionalLabelText: string; - optionalLabelTextChoices: string[]; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - updateOptionalLabel(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + isLinear: boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper label bottom position + * @title Stepper with customized states */ -export declare class StepperLabelPositionBottomExample { +declare class StepperStatesExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper lazy content rendering + * @title Stepper vertical */ -export declare class StepperLazyContentExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class StepperVerticalExample { + private _formBuilder; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; + }>; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; + }>; + isLinear: boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper with optional steps + * @title Testing with MatStepperHarness */ -export declare class StepperOptionalExample { - private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; - }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; - }>; - isOptional: boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class StepperHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper overview + * @title Stepper that uses the MatStepperIntl service */ -export declare class StepperOverviewExample { +declare class StepperIntlExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + private _matStepperIntl; + optionalLabelText: string; + optionalLabelTextChoices: string[]; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - isLinear: boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + updateOptionalLabel(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Stepper lazy content rendering + */ +declare class StepperLazyContentExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Stepper responsive */ -export declare class StepperResponsiveExample { +declare class StepperResponsiveExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - thirdFormGroup: FormGroup< { - thirdCtrl: FormControl; + thirdFormGroup: _angular_forms.FormGroup<{ + thirdCtrl: _angular_forms.FormControl; }>; stepperOrientation: Observable; constructor(); @@ -164,34 +169,29 @@ export declare class StepperResponsiveExample { } /** - * @title Stepper with customized states + * @title Stepper header position */ -export declare class StepperStatesExample { +declare class StepperHeaderPositionExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; + firstFormGroup: _angular_forms.FormGroup<{ + firstCtrl: _angular_forms.FormControl; }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; + secondFormGroup: _angular_forms.FormGroup<{ + secondCtrl: _angular_forms.FormControl; }>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Stepper vertical + * @title Stepper animations */ -export declare class StepperVerticalExample { +declare class StepperAnimationsExample { private _formBuilder; - firstFormGroup: FormGroup< { - firstCtrl: FormControl; - }>; - secondFormGroup: FormGroup< { - secondCtrl: FormControl; - }>; - isLinear: boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + firstFormGroup: FormGroup; + secondFormGroup: FormGroup; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { StepperAnimationsExample, StepperEditableExample, StepperErrorsExample, StepperHarnessExample, StepperHeaderPositionExample, StepperIntlExample, StepperLabelPositionBottomExample, StepperLazyContentExample, StepperOptionalExample, StepperOverviewExample, StepperResponsiveExample, StepperStatesExample, StepperVerticalExample }; diff --git a/material/table/index.d.ts b/material/table/index.d.ts index ea13bc60cf..3ed740bd5a 100755 --- a/material/table/index.d.ts +++ b/material/table/index.d.ts @@ -1,262 +1,61 @@ -import { AfterContentInit } from '@angular/core'; -import { AfterViewInit } from '@angular/core'; -import { CdkDragDrop } from '@angular/cdk/drag-drop'; -import { DataSource } from '@angular/cdk/collections'; -import { DecimalPipe } from '@angular/common'; -import { HttpClient } from '@angular/common/http'; import * as i0 from '@angular/core'; -import { InputSignal } from '@angular/core'; -import { MatButtonToggleGroup } from '@angular/material/button-toggle'; -import { MatColumnDef } from '@angular/material/table'; -import { MatHeaderRowDef } from '@angular/material/table'; -import { MatNoDataRow } from '@angular/material/table'; +import { AfterViewInit, AfterContentInit, QueryList } from '@angular/core'; +import * as _angular_material_paginator from '@angular/material/paginator'; import { MatPaginator } from '@angular/material/paginator'; -import { MatRowDef } from '@angular/material/table'; -import { MatSort } from '@angular/material/sort'; -import { MatTable } from '@angular/material/table'; -import { MatTableDataSource } from '@angular/material/table'; +import { MatTableDataSource, MatHeaderRowDef, MatRowDef, MatColumnDef, MatNoDataRow, MatTable } from '@angular/material/table'; +import { HttpClient } from '@angular/common/http'; +import { MatSort, SortDirection, Sort } from '@angular/material/sort'; import { Observable } from 'rxjs'; -import { QueryList } from '@angular/core'; -import { SelectionModel } from '@angular/cdk/collections'; -import { Sort } from '@angular/material/sort'; -import { SortDirection } from '@angular/material/sort'; - -declare class ExampleDataSource extends DataSource { - private _dataStream; - constructor(initialData: PeriodicElement_22[]); - connect(): Observable; - disconnect(): void; - setData(data: PeriodicElement_22[]): void; -} - -/** An example database that the data source uses to retrieve data for the table. */ -declare class ExampleHttpDatabase { - private _httpClient; - constructor(_httpClient: HttpClient); - getRepoIssues(sort: string, order: SortDirection, page: number): Observable; -} - -declare interface GithubApi { - items: GithubIssue[]; - total_count: number; -} - -declare interface GithubIssue { - created_at: string; - number: string; - state: string; - title: string; -} - -declare interface PeriodicElement { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_10 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_11 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_12 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_13 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_14 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_15 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_16 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_17 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_18 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_19 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_2 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_20 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_21 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_22 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_23 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_24 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_3 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_4 { - name: string; - position: number; - weight: number; - symbol: string; - description: string; -} - -declare interface PeriodicElement_5 { - name: string; - position: number; - weight: number; - symbol: string; -} - -declare interface PeriodicElement_6 { - name: string; - position: number; - weight: number; - symbol: string; -} +import { SelectionModel, DataSource } from '@angular/cdk/collections'; +import { MatButtonToggleGroup } from '@angular/material/button-toggle'; +import { DecimalPipe } from '@angular/common'; +import { CdkDragDrop } from '@angular/cdk/drag-drop'; -declare interface PeriodicElement_7 { +interface PeriodicElement$n { name: string; position: number; weight: number; symbol: string; } - -declare interface PeriodicElement_8 { - name: string; - position: number; - weight: number; - symbol: string; +/** + * @title Basic use of `` (uses display flex) + */ +declare class TableFlexBasicExample { + displayedColumns: string[]; + dataSource: PeriodicElement$n[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface PeriodicElement_9 { +interface PeriodicElement$m { name: string; position: number; weight: number; symbol: string; } - /** * @title Basic use of `` */ -export declare class TableBasicExample { +declare class TableBasicExample { displayedColumns: string[]; - dataSource: PeriodicElement_2[]; + dataSource: PeriodicElement$m[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Styling columns using their auto-generated column names - */ -export declare class TableColumnStylingExample { - displayedColumns: string[]; - dataSource: PeriodicElement_19[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Adding and removing data when using an array-based datasource. - */ -export declare class TableDynamicArrayDataExample { - displayedColumns: string[]; - dataSource: PeriodicElement_21[]; - table: MatTable; - addData(): void; - removeData(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface PeriodicElement$l { + name: string; + position: number; + weight: number; + symbol: string; } - /** * @title Table dynamically changing the columns displayed */ -export declare class TableDynamicColumnsExample { +declare class TableDynamicColumnsExample { displayedColumns: string[]; columnsToDisplay: string[]; - data: PeriodicElement_3[]; + data: PeriodicElement$l[]; addColumn(): void; removeColumn(): void; shuffle(): void; @@ -264,112 +63,66 @@ export declare class TableDynamicColumnsExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Adding and removing data when using an observable-based datasource. - */ -export declare class TableDynamicObservableDataExample { - displayedColumns: string[]; - dataToDisplay: PeriodicElement_22[]; - dataSource: ExampleDataSource; - addData(): void; - removeData(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Table with expandable rows */ -export declare class TableExpandableRowsExample { - dataSource: PeriodicElement_4[]; +declare class TableExpandableRowsExample { + dataSource: PeriodicElement$k[]; columnsToDisplay: string[]; columnsToDisplayWithExpand: string[]; - expandedElement: PeriodicElement_4 | null; + expandedElement: PeriodicElement$k | null; /** Checks whether an element is expanded. */ - isExpanded(element: PeriodicElement_4): boolean; + isExpanded(element: PeriodicElement$k): boolean; /** Toggles the expanded state of an element. */ - toggle(element: PeriodicElement_4): void; + toggle(element: PeriodicElement$k): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$k { + name: string; + position: number; + weight: number; + symbol: string; + description: string; +} +interface PeriodicElement$j { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Table with filtering */ -export declare class TableFilteringExample { +declare class TableFilteringExample { displayedColumns: string[]; - dataSource: MatTableDataSource; + dataSource: MatTableDataSource; applyFilter(event: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Basic use of `` (uses display flex) - */ -export declare class TableFlexBasicExample { - displayedColumns: string[]; - dataSource: PeriodicElement[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Flex table where one column's cells has a greater height than others. - */ -export declare class TableFlexLargeRowExample { - displayedColumns: string[]; - dataSource: PeriodicElement_24[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface Transaction$2 { + item: string; + cost: number; } - /** * @title Footer row table */ -export declare class TableFooterRowExample { +declare class TableFooterRowExample { displayedColumns: string[]; - transactions: Transaction[]; + transactions: Transaction$2[]; /** Gets the total cost of all transactions. */ getTotalCost(): number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Table with columns defined using a for loop instead of statically written in the template. - */ -export declare class TableGeneratedColumnsExample { - columns: { - columnDef: string; - header: string; - cell: (element: PeriodicElement_23) => string; - }[]; - dataSource: PeriodicElement_23[]; - displayedColumns: string[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Testing with MatTableHarness - */ -export declare class TableHarnessExample { - displayedColumns: string[]; - dataSource: { - position: number; - name: string; - weight: number; - symbol: string; - }[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Table retrieving data through HTTP */ -export declare class TableHttpExample implements AfterViewInit { +declare class TableHttpExample implements AfterViewInit { private _httpClient; displayedColumns: string[]; exampleDatabase: ExampleHttpDatabase | null; @@ -383,13 +136,33 @@ export declare class TableHttpExample implements AfterViewInit { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface GithubApi { + items: GithubIssue[]; + total_count: number; +} +interface GithubIssue { + created_at: string; + number: string; + state: string; + title: string; +} +/** An example database that the data source uses to retrieve data for the table. */ +declare class ExampleHttpDatabase { + private _httpClient; + constructor(_httpClient: HttpClient); + getRepoIssues(sort: string, order: SortDirection, page: number): Observable; +} +interface Transaction$1 { + item: string; + cost: number; +} /** * @title Table with multiple header and footer rows */ -export declare class TableMultipleHeaderFooterExample { +declare class TableMultipleHeaderFooterExample { displayedColumns: string[]; - transactions: Transaction_2[]; + transactions: Transaction$1[]; /** Gets the total cost of all transactions. */ getTotalCost(): number; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -399,17 +172,29 @@ export declare class TableMultipleHeaderFooterExample { /** * @title Table with multiple row template */ -export declare class TableMultipleRowTemplateExample { +declare class TableMultipleRowTemplateExample { displayedColumns: string[]; - dataSource: MatTableDataSource; + dataSource: MatTableDataSource; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - +interface PeriodicElement$i { + name: string; + position: number; + weight: number; + symbol: string; +} + +interface UserData { + id: string; + name: string; + progress: string; + fruit: string; +} /** * @title Data table with sorting, pagination, and filtering. */ -export declare class TableOverviewExample implements AfterViewInit { +declare class TableOverviewExample implements AfterViewInit { displayedColumns: string[]; dataSource: MatTableDataSource; paginator: MatPaginator; @@ -424,81 +209,67 @@ export declare class TableOverviewExample implements AfterViewInit { /** * @title Table with pagination */ -export declare class TablePaginationExample implements AfterViewInit { +declare class TablePaginationExample implements AfterViewInit { displayedColumns: string[]; - dataSource: MatTableDataSource; + dataSource: MatTableDataSource; paginator: MatPaginator; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } - -/** - * @title Table that uses the recycle view repeater strategy. - */ -export declare class TableRecycleRowsExample { - displayedColumns: string[]; - dataSource: PeriodicElement_18[]; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Table with re-orderable columns - */ -export declare class TableReorderableExample { - columns: string[]; - dataSource: PeriodicElement_17[]; - drop(event: CdkDragDrop): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** - * @title Binding event handlers and properties to the table rows. - */ -export declare class TableRowBindingExample { - displayedColumns: string[]; - dataSource: PeriodicElement_20[]; - clickedRows: Set; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface PeriodicElement$h { + name: string; + position: number; + weight: number; + symbol: string; } /** * @title Table showing each row context properties. */ -export declare class TableRowContextExample { +declare class TableRowContextExample { displayedColumns: string[]; data: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$g { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Table with selection */ -export declare class TableSelectionExample { +declare class TableSelectionExample { displayedColumns: string[]; - dataSource: MatTableDataSource; - selection: SelectionModel; + dataSource: MatTableDataSource; + selection: SelectionModel; /** Whether the number of selected elements matches the total number of rows. */ isAllSelected(): boolean; /** Selects all rows if they are not all selected; otherwise clear selection. */ toggleAllRows(): void; /** The label for the checkbox on the passed row */ - checkboxLabel(row?: PeriodicElement_8): string; + checkboxLabel(row?: PeriodicElement$g): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$f { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Table with sorting */ -export declare class TableSortingExample implements AfterViewInit { +declare class TableSortingExample implements AfterViewInit { private _liveAnnouncer; displayedColumns: string[]; - dataSource: MatTableDataSource; + dataSource: MatTableDataSource; sort: MatSort; ngAfterViewInit(): void; /** Announce the change in sort state for assistive technology. */ @@ -510,47 +281,69 @@ export declare class TableSortingExample implements AfterViewInit { /** * @title Table with sticky columns */ -export declare class TableStickyColumnsExample { +declare class TableStickyColumnsExample { displayedColumns: string[]; - dataSource: PeriodicElement_10[]; + dataSource: PeriodicElement$e[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$e { + name: string; + position: number; + weight: number; + symbol: string; +} /** - * @title Tables with toggle-able sticky headers, footers, and columns + * @title Flex-layout tables with toggle-able sticky headers, footers, and columns */ -export declare class TableStickyComplexExample { +declare class TableStickyComplexFlexExample { displayedColumns: string[]; - dataSource: PeriodicElement_12[]; + dataSource: PeriodicElement$d[]; tables: number[]; constructor(); /** Whether the button toggle group contains the id as an active value. */ isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +interface PeriodicElement$d { + name: string; + position: number; + weight: number; + symbol: string; } /** - * @title Flex-layout tables with toggle-able sticky headers, footers, and columns + * @title Tables with toggle-able sticky headers, footers, and columns */ -export declare class TableStickyComplexFlexExample { +declare class TableStickyComplexExample { displayedColumns: string[]; - dataSource: PeriodicElement_11[]; + dataSource: PeriodicElement$c[]; tables: number[]; constructor(); /** Whether the button toggle group contains the id as an active value. */ isSticky(buttonToggleGroup: MatButtonToggleGroup, id: string): boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +interface PeriodicElement$c { + name: string; + position: number; + weight: number; + symbol: string; } +interface Transaction { + item: string; + cost: number; +} /** * @title Table with a sticky footer */ -export declare class TableStickyFooterExample { +declare class TableStickyFooterExample { displayedColumns: string[]; - transactions: Transaction_3[]; + transactions: Transaction[]; /** Gets the total cost of all transactions. */ getTotalCost(): number; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -560,42 +353,144 @@ export declare class TableStickyFooterExample { /** * @title Table with sticky header */ -export declare class TableStickyHeaderExample { +declare class TableStickyHeaderExample { displayedColumns: string[]; - dataSource: PeriodicElement_13[]; + dataSource: PeriodicElement$b[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$b { + name: string; + position: number; + weight: number; + symbol: string; +} +interface PeriodicElement$a { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Use of 'mat-text-column' with various configurations of the interface. */ -export declare class TableTextColumnAdvancedExample { +declare class TableTextColumnAdvancedExample { displayedColumns: string[]; - dataSource: MatTableDataSource; + dataSource: MatTableDataSource; headerText: string; decimalPipe: DecimalPipe; /** Data accessor function that transforms the weight value to have at most 2 decimal digits. */ - getWeight: (data: PeriodicElement_14) => string; + getWeight: (data: PeriodicElement$a) => string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$9 { + name: string; + position: number; + weight: number; + symbol: string; +} /** * @title Use of `mat-text-column` which can be used for simple columns that only need to display * a text value for the header and cells. */ -export declare class TableTextColumnExample { +declare class TableTextColumnExample { displayedColumns: string[]; - dataSource: PeriodicElement_15[]; + dataSource: PeriodicElement$9[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$8 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Table example that shows how to wrap a table component for definition and behavior reuse. + */ +declare class TableWrappedExample implements AfterViewInit { + displayedColumns: string[]; + dataSource: MatTableDataSource; + sort: MatSort; + ngAfterViewInit(): void; + clearTable(): void; + addData(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +/** + * Table component that accepts column and row definitions in its content to be registered to the + * table. + */ +declare class WrapperTable implements AfterContentInit { + headerRowDefs: QueryList; + rowDefs: QueryList>; + columnDefs: QueryList; + noDataRow: MatNoDataRow; + table: MatTable; + readonly columns: i0.InputSignal; + readonly dataSource: i0.InputSignal>; + ngAfterContentInit(): void; + static ɵfac: i0.ɵɵFactoryDeclaration, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "wrapper-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; }, {}, ["noDataRow", "headerRowDefs", "rowDefs", "columnDefs"], ["*"], true, never>; +} + +/** + * @title Table with re-orderable columns + */ +declare class TableReorderableExample { + columns: string[]; + dataSource: PeriodicElement$7[]; + drop(event: CdkDragDrop): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +interface PeriodicElement$7 { + name: string; + position: number; + weight: number; + symbol: string; +} + +interface PeriodicElement$6 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Table that uses the recycle view repeater strategy. + */ +declare class TableRecycleRowsExample { + displayedColumns: string[]; + dataSource: PeriodicElement$6[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Testing with MatTableHarness + */ +declare class TableHarnessExample { + displayedColumns: string[]; + dataSource: { + position: number; + name: string; + weight: number; + symbol: string; + }[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Tables with Material Design ripples. */ -export declare class TableWithRipplesExample { +declare class TableWithRipplesExample { displayedColumns: string[]; dataSource: { name: string; @@ -604,57 +499,119 @@ export declare class TableWithRipplesExample { static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement$5 { + name: string; + position: number; + weight: number; + symbol: string; +} /** - * @title Table example that shows how to wrap a table component for definition and behavior reuse. + * @title Styling columns using their auto-generated column names */ -export declare class TableWrappedExample implements AfterViewInit { +declare class TableColumnStylingExample { displayedColumns: string[]; - dataSource: MatTableDataSource; - sort: MatSort; - ngAfterViewInit(): void; - clearTable(): void; - addData(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; + dataSource: PeriodicElement$5[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Transaction { - item: string; - cost: number; +interface PeriodicElement$4 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Binding event handlers and properties to the table rows. + */ +declare class TableRowBindingExample { + displayedColumns: string[]; + dataSource: PeriodicElement$4[]; + clickedRows: Set; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Transaction_2 { - item: string; - cost: number; +interface PeriodicElement$3 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Adding and removing data when using an array-based datasource. + */ +declare class TableDynamicArrayDataExample { + displayedColumns: string[]; + dataSource: PeriodicElement$3[]; + table: MatTable; + addData(): void; + removeData(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -declare interface Transaction_3 { - item: string; - cost: number; +interface PeriodicElement$2 { + name: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Adding and removing data when using an observable-based datasource. + */ +declare class TableDynamicObservableDataExample { + displayedColumns: string[]; + dataToDisplay: PeriodicElement$2[]; + dataSource: ExampleDataSource; + addData(): void; + removeData(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} +declare class ExampleDataSource extends DataSource { + private _dataStream; + constructor(initialData: PeriodicElement$2[]); + connect(): Observable; + disconnect(): void; + setData(data: PeriodicElement$2[]): void; } -declare interface UserData { - id: string; +interface PeriodicElement$1 { name: string; - progress: string; - fruit: string; + position: number; + weight: number; + symbol: string; +} +/** + * @title Table with columns defined using a for loop instead of statically written in the template. + */ +declare class TableGeneratedColumnsExample { + columns: { + columnDef: string; + header: string; + cell: (element: PeriodicElement$1) => string; + }[]; + dataSource: PeriodicElement$1[]; + displayedColumns: string[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } +interface PeriodicElement { + name: string; + position: number; + weight: number; + symbol: string; +} /** - * Table component that accepts column and row definitions in its content to be registered to the - * table. + * @title Flex table where one column's cells has a greater height than others. */ -export declare class WrapperTable implements AfterContentInit { - headerRowDefs: QueryList; - rowDefs: QueryList>; - columnDefs: QueryList; - noDataRow: MatNoDataRow; - table: MatTable; - readonly columns: InputSignal; - readonly dataSource: InputSignal>; - ngAfterContentInit(): void; - static ɵfac: i0.ɵɵFactoryDeclaration, never>; - static ɵcmp: i0.ɵɵComponentDeclaration, "wrapper-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; }, {}, ["noDataRow", "headerRowDefs", "rowDefs", "columnDefs"], ["*"], true, never>; +declare class TableFlexLargeRowExample { + displayedColumns: string[]; + dataSource: PeriodicElement[]; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { TableBasicExample, TableColumnStylingExample, TableDynamicArrayDataExample, TableDynamicColumnsExample, TableDynamicObservableDataExample, TableExpandableRowsExample, TableFilteringExample, TableFlexBasicExample, TableFlexLargeRowExample, TableFooterRowExample, TableGeneratedColumnsExample, TableHarnessExample, TableHttpExample, TableMultipleHeaderFooterExample, TableMultipleRowTemplateExample, TableOverviewExample, TablePaginationExample, TableRecycleRowsExample, TableReorderableExample, TableRowBindingExample, TableRowContextExample, TableSelectionExample, TableSortingExample, TableStickyColumnsExample, TableStickyComplexExample, TableStickyComplexFlexExample, TableStickyFooterExample, TableStickyHeaderExample, TableTextColumnAdvancedExample, TableTextColumnExample, TableWithRipplesExample, TableWrappedExample, WrapperTable }; diff --git a/material/tabs/index.d.ts b/material/tabs/index.d.ts index e6ea9add1b..0c993408af 100755 --- a/material/tabs/index.d.ts +++ b/material/tabs/index.d.ts @@ -1,16 +1,11 @@ -import { FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; import { Observable } from 'rxjs'; - -declare interface ExampleTab { - label: string; - content: string; -} +import { FormControl } from '@angular/forms'; /** * @title Tab group with aligned labels */ -export declare class TabGroupAlignExample { +declare class TabGroupAlignExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -18,15 +13,19 @@ export declare class TabGroupAlignExample { /** * @title Tab group animations */ -export declare class TabGroupAnimationsExample { +declare class TabGroupAnimationsExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +interface ExampleTab { + label: string; + content: string; +} /** * @title Tab group with asynchronously loading tab contents */ -export declare class TabGroupAsyncExample { +declare class TabGroupAsyncExample { asyncTabs: Observable; constructor(); static ɵfac: i0.ɵɵFactoryDeclaration; @@ -36,7 +35,7 @@ export declare class TabGroupAsyncExample { /** * @title Basic use of the tab group */ -export declare class TabGroupBasicExample { +declare class TabGroupBasicExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -44,15 +43,23 @@ export declare class TabGroupBasicExample { /** * @title Using tabs with a custom label template */ -export declare class TabGroupCustomLabelExample { +declare class TabGroupCustomLabelExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Tab group with dynamic height based on tab contents + */ +declare class TabGroupDynamicHeightExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Tab group with dynamically changing tabs */ -export declare class TabGroupDynamicExample { +declare class TabGroupDynamicExample { tabs: string[]; selected: FormControl; addTab(selectAfterAdding: boolean): void; @@ -61,18 +68,10 @@ export declare class TabGroupDynamicExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Tab group with dynamic height based on tab contents - */ -export declare class TabGroupDynamicHeightExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Testing with MatTabGroupHarness */ -export declare class TabGroupHarnessExample { +declare class TabGroupHarnessExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -80,7 +79,7 @@ export declare class TabGroupHarnessExample { /** * @title Tab group with headers below the content */ -export declare class TabGroupHeaderBelowExample { +declare class TabGroupHeaderBelowExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -88,7 +87,7 @@ export declare class TabGroupHeaderBelowExample { /** * @title Tab group with ink bar fit to content */ -export declare class TabGroupInkBarExample { +declare class TabGroupInkBarExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -96,7 +95,7 @@ export declare class TabGroupInkBarExample { /** * @title Tab group where the tab content is loaded lazily (when activated) */ -export declare class TabGroupLazyLoadedExample { +declare class TabGroupLazyLoadedExample { tabLoadTimes: Date[]; getTimeLoaded(index: number): Date; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -106,7 +105,7 @@ export declare class TabGroupLazyLoadedExample { /** * @title Tab group with paginated tabs */ -export declare class TabGroupPaginatedExample { +declare class TabGroupPaginatedExample { lotsOfTabs: string[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -115,7 +114,7 @@ export declare class TabGroupPaginatedExample { /** * @title Tab group that keeps its content inside the DOM when it's off-screen. */ -export declare class TabGroupPreserveContentExample { +declare class TabGroupPreserveContentExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -123,7 +122,7 @@ export declare class TabGroupPreserveContentExample { /** * @title Tab group with stretched labels */ -export declare class TabGroupStretchedExample { +declare class TabGroupStretchedExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -131,7 +130,7 @@ export declare class TabGroupStretchedExample { /** * @title Basic use of the tab nav bar */ -export declare class TabNavBarBasicExample { +declare class TabNavBarBasicExample { links: string[]; activeLink: string; addLink(): void; @@ -139,4 +138,4 @@ export declare class TabNavBarBasicExample { static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { TabGroupAlignExample, TabGroupAnimationsExample, TabGroupAsyncExample, TabGroupBasicExample, TabGroupCustomLabelExample, TabGroupDynamicExample, TabGroupDynamicHeightExample, TabGroupHarnessExample, TabGroupHeaderBelowExample, TabGroupInkBarExample, TabGroupLazyLoadedExample, TabGroupPaginatedExample, TabGroupPreserveContentExample, TabGroupStretchedExample, TabNavBarBasicExample }; diff --git a/material/timepicker/index.d.ts b/material/timepicker/index.d.ts index b9177fd90d..900a4f9471 100755 --- a/material/timepicker/index.d.ts +++ b/material/timepicker/index.d.ts @@ -1,66 +1,66 @@ -import { FormControl } from '@angular/forms'; import * as i0 from '@angular/core'; -import { MatTimepickerOption } from '@angular/material/timepicker'; import { Signal } from '@angular/core'; +import { FormControl } from '@angular/forms'; +import { MatTimepickerOption } from '@angular/material/timepicker'; -/** @title Timepicker with custom toggle icon */ -export declare class TimepickerCustomIconExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - -/** @title Timepicker integration with datepicker */ -export declare class TimepickerDatepickerIntegrationExample { - value: Date; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Basic timepicker */ +declare class TimepickerOverviewExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Timepicker forms integration */ -export declare class TimepickerFormsExample { +declare class TimepickerFormsExample { formControl: FormControl; constructor(); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatTimepickerInputHarness - */ -export declare class TimepickerHarnessExample { - date: Signal; - constructor(); - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Timepicker integration with datepicker */ +declare class TimepickerDatepickerIntegrationExample { + value: Date; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Timepicker with different locale */ -export declare class TimepickerLocaleExample { - private readonly _adapter; - value: Date; - protected switchLocale(): void; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Timepicker validation */ +declare class TimepickerValidationExample { + formControl: FormControl; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** @title Timepicker options customization */ -export declare class TimepickerOptionsExample { +declare class TimepickerOptionsExample { customOptions: MatTimepickerOption[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Basic timepicker */ -export declare class TimepickerOverviewExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Timepicker with custom toggle icon */ +declare class TimepickerCustomIconExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -/** @title Timepicker validation */ -export declare class TimepickerValidationExample { - formControl: FormControl; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** @title Timepicker with different locale */ +declare class TimepickerLocaleExample { + private readonly _adapter; + value: Date; + protected switchLocale(): void; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** + * @title Testing with MatTimepickerInputHarness + */ +declare class TimepickerHarnessExample { + date: Signal; + constructor(); + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { TimepickerCustomIconExample, TimepickerDatepickerIntegrationExample, TimepickerFormsExample, TimepickerHarnessExample, TimepickerLocaleExample, TimepickerOptionsExample, TimepickerOverviewExample, TimepickerValidationExample }; diff --git a/material/toolbar/index.d.ts b/material/toolbar/index.d.ts index 1d4e530f01..3c088de814 100755 --- a/material/toolbar/index.d.ts +++ b/material/toolbar/index.d.ts @@ -3,41 +3,41 @@ import * as i0 from '@angular/core'; /** * @title Basic toolbar */ -export declare class ToolbarBasicExample { +declare class ToolbarBasicExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Testing with MatToolbarHarness + * @title Multi-row toolbar */ -export declare class ToolbarHarnessExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ToolbarMultirowExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Multi-row toolbar + * @title Toolbar with just text */ -export declare class ToolbarMultirowExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ToolbarSimpleExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } /** * @title Toolbar overview */ -export declare class ToolbarOverviewExample { +declare class ToolbarOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Toolbar with just text + * @title Testing with MatToolbarHarness */ -export declare class ToolbarSimpleExample { - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class ToolbarHarnessExample { + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { ToolbarBasicExample, ToolbarHarnessExample, ToolbarMultirowExample, ToolbarOverviewExample, ToolbarSimpleExample }; diff --git a/material/tooltip/index.d.ts b/material/tooltip/index.d.ts index fc0314b1b8..47f2da6640 100755 --- a/material/tooltip/index.d.ts +++ b/material/tooltip/index.d.ts @@ -1,11 +1,11 @@ import { FormControl } from '@angular/forms'; -import * as i0 from '@angular/core'; import { TooltipPosition } from '@angular/material/tooltip'; +import * as i0 from '@angular/core'; /** * @title Tooltip that demonstrates auto-hiding when it clips out of its scrolling container. */ -export declare class TooltipAutoHideExample { +declare class TooltipAutoHideExample { positionOptions: TooltipPosition[]; position: FormControl<"left" | "right" | "above" | "below" | "before" | "after" | null>; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -15,7 +15,7 @@ export declare class TooltipAutoHideExample { /** * @title Tooltip that can have a custom class applied. */ -export declare class TooltipCustomClassExample { +declare class TooltipCustomClassExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -23,7 +23,7 @@ export declare class TooltipCustomClassExample { /** * @title Tooltip with a show and hide delay */ -export declare class TooltipDelayExample { +declare class TooltipDelayExample { showDelay: FormControl; hideDelay: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; @@ -33,25 +33,16 @@ export declare class TooltipDelayExample { /** * @title Tooltip that can be disabled */ -export declare class TooltipDisabledExample { +declare class TooltipDisabledExample { disabled: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Testing with MatTooltipHarness - */ -export declare class TooltipHarnessExample { - message: string; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; -} - /** * @title Tooltip that can be manually shown/hidden. */ -export declare class TooltipManualExample { +declare class TooltipManualExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -59,7 +50,7 @@ export declare class TooltipManualExample { /** * @title Tooltip with a changing message */ -export declare class TooltipMessageExample { +declare class TooltipMessageExample { message: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; @@ -68,7 +59,7 @@ export declare class TooltipMessageExample { /** * @title Tooltip with a show and hide delay */ -export declare class TooltipModifiedDefaultsExample { +declare class TooltipModifiedDefaultsExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } @@ -76,28 +67,37 @@ export declare class TooltipModifiedDefaultsExample { /** * @title Basic tooltip */ -export declare class TooltipOverviewExample { +declare class TooltipOverviewExample { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * @title Tooltip with a custom position + */ +declare class TooltipPositionExample { + positionOptions: TooltipPosition[]; + position: FormControl<"left" | "right" | "above" | "below" | "before" | "after" | null>; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + /** * @title Basic tooltip */ -export declare class TooltipPositionAtOriginExample { +declare class TooltipPositionAtOriginExample { enabled: FormControl; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** - * @title Tooltip with a custom position + * @title Testing with MatTooltipHarness */ -export declare class TooltipPositionExample { - positionOptions: TooltipPosition[]; - position: FormControl<"left" | "right" | "above" | "below" | "before" | "after" | null>; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +declare class TooltipHarnessExample { + message: string; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +export { TooltipAutoHideExample, TooltipCustomClassExample, TooltipDelayExample, TooltipDisabledExample, TooltipHarnessExample, TooltipManualExample, TooltipMessageExample, TooltipModifiedDefaultsExample, TooltipOverviewExample, TooltipPositionAtOriginExample, TooltipPositionExample }; diff --git a/material/tree/index.d.ts b/material/tree/index.d.ts index 6fbf06d64e..4fc5abd175 100755 --- a/material/tree/index.d.ts +++ b/material/tree/index.d.ts @@ -1,17 +1,17 @@ -import { ArrayDataSource } from '@angular/cdk/collections'; -import { BehaviorSubject } from 'rxjs'; -import { CollectionViewer } from '@angular/cdk/collections'; -import { DataSource } from '@angular/cdk/collections'; -import { FlatTreeControl } from '@angular/cdk/tree'; import * as i0 from '@angular/core'; -import { MatTreeFlatDataSource } from '@angular/material/tree'; -import { MatTreeFlattener } from '@angular/material/tree'; -import { MatTreeNestedDataSource } from '@angular/material/tree'; -import { NestedTreeControl } from '@angular/cdk/tree'; -import { Observable } from 'rxjs'; -import { SelectionChange } from '@angular/cdk/collections'; -import { WritableSignal } from '@angular/core'; +import { DataSource, CollectionViewer, SelectionChange, ArrayDataSource } from '@angular/cdk/collections'; +import { FlatTreeControl, NestedTreeControl } from '@angular/cdk/tree'; +import { BehaviorSubject, Observable } from 'rxjs'; +import { MatTreeFlattener, MatTreeFlatDataSource, MatTreeNestedDataSource } from '@angular/material/tree'; +/** Flat node with expandable and level information */ +declare class DynamicFlatNode { + item: string; + level: number; + expandable: boolean; + isLoading: i0.WritableSignal; + constructor(item: string, level?: number, expandable?: boolean, isLoading?: i0.WritableSignal); +} /** * Database for dynamic data. When expanding a node in the tree, the data source will need to fetch * the descendants data from the database. @@ -26,7 +26,6 @@ declare class DynamicDatabase { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } - /** * File database, it can build a tree structured Json object from string. * Each node in Json object represents a file or a directory. For a file, it has filename and type. @@ -50,102 +49,10 @@ declare class DynamicDataSource implements DataSource { */ toggleNode(node: DynamicFlatNode, expand: boolean): void; } - -/** Flat node with expandable and level information */ -declare class DynamicFlatNode { - item: string; - level: number; - expandable: boolean; - isLoading: WritableSignal; - constructor(item: string, level?: number, expandable?: boolean, isLoading?: WritableSignal); -} - -/** Flat node with expandable and level information */ -declare interface ExampleFlatNode { - expandable: boolean; - name: string; - level: number; -} - -declare interface ExampleFlatNode_2 { - expandable: boolean; - name: string; - level: number; -} - -/** Flat node with expandable and level information */ -declare interface ExampleFlatNode_3 { - expandable: boolean; - name: string; - level: number; -} - -/** Flat node with expandable and level information */ -declare class FlatNode { - name: string; - level: number; - expandable: boolean; - parent: string | null; - isLoadMore: boolean; - constructor(name: string, level?: number, expandable?: boolean, parent?: string | null, isLoadMore?: boolean); -} - -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -declare interface FoodNode { - name: string; - children?: FoodNode[]; -} - -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -declare interface FoodNode_2 { - name: string; - children?: FoodNode_2[]; -} - -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -declare interface FoodNode_3 { - name: string; - children?: FoodNode_3[]; -} - -/** - * Food data with nested structure. - * Each node has a name and an optional list of children. - */ -declare interface FoodNode_4 { - name: string; - children?: FoodNode_4[]; -} - -/** Nested node */ -declare class NestedNode { - name: string; - hasChildren: boolean; - parent: string | null; - isLoadMore: boolean; - childrenChange: BehaviorSubject; - get children(): NestedNode[]; - constructor(name: string, hasChildren?: boolean, parent?: string | null, isLoadMore?: boolean); -} - -declare interface Node_2 { - name: string; - children?: Node_2[]; -} - /** * @title Tree with dynamic data */ -export declare class TreeDynamicExample { +declare class TreeDynamicExample { constructor(); treeControl: FlatTreeControl; dataSource: DynamicDataSource; @@ -157,23 +64,26 @@ export declare class TreeDynamicExample { } /** - * @title Tree with flat nodes (childrenAccessor) + * Food data with nested structure. + * Each node has a name and an optional list of children. */ -export declare class TreeFlatChildAccessorOverviewExample { - dataSource: FoodNode_2[]; - childrenAccessor: (node: FoodNode_2) => FoodNode_2[]; - hasChild: (_: number, node: FoodNode_2) => boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface FoodNode$3 { + name: string; + children?: FoodNode$3[]; +} +/** Flat node with expandable and level information */ +interface ExampleFlatNode$2 { + expandable: boolean; + name: string; + level: number; } - /** * @title Tree with flat nodes */ -export declare class TreeFlatOverviewExample { +declare class TreeFlatOverviewExample { private _transformer; - treeControl: FlatTreeControl; - treeFlattener: MatTreeFlattener; + treeFlattener: MatTreeFlattener; - dataSource: MatTreeFlatDataSource; constructor(); - hasChild: (_: number, node: ExampleFlatNode) => boolean; + hasChild: (_: number, node: ExampleFlatNode$2) => boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } +/** + * Food data with nested structure. + * Each node has a name and an optional list of children. + */ +interface FoodNode$2 { + name: string; + children?: FoodNode$2[]; +} +/** + * @title Tree with flat nodes (childrenAccessor) + */ +declare class TreeFlatChildAccessorOverviewExample { + dataSource: FoodNode$2[]; + childrenAccessor: (node: FoodNode$2) => FoodNode$2[]; + hasChild: (_: number, node: FoodNode$2) => boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +interface Node { + name: string; + children?: Node[]; +} +interface ExampleFlatNode$1 { + expandable: boolean; + name: string; + level: number; +} /** * @title Testing with MatTreeHarness */ -export declare class TreeHarnessExample { +declare class TreeHarnessExample { private _transformer; - treeControl: FlatTreeControl; - treeFlattener: MatTreeFlattener; + treeFlattener: MatTreeFlattener; - dataSource: MatTreeFlatDataSource; constructor(); - hasChild: (_: number, node: ExampleFlatNode_2) => boolean; + hasChild: (_: number, node: ExampleFlatNode$1) => boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -/** - * @title Tree with flat nodes - */ -export declare class TreeLegacyKeyboardInterfaceExample { - treeControl: FlatTreeControl; - dataSource: ArrayDataSource; - hasChild: (_: number, node: ExampleFlatNode_3) => boolean; - getParentNode(node: ExampleFlatNode_3): ExampleFlatNode_3 | null; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +/** Nested node */ +declare class NestedNode { + name: string; + hasChildren: boolean; + parent: string | null; + isLoadMore: boolean; + childrenChange: BehaviorSubject; + get children(): NestedNode[]; + constructor(name: string, hasChildren?: boolean, parent?: string | null, isLoadMore?: boolean); +} +/** Flat node with expandable and level information */ +declare class FlatNode { + name: string; + level: number; + expandable: boolean; + parent: string | null; + isLoadMore: boolean; + constructor(name: string, level?: number, expandable?: boolean, parent?: string | null, isLoadMore?: boolean); } - /** * @title Tree with partially loaded data */ -export declare class TreeLoadmoreExample { +declare class TreeLoadmoreExample { private _database; nodeMap: Map; treeControl: FlatTreeControl; @@ -266,26 +211,60 @@ export declare class TreeLoadmoreExample { } /** - * @title Tree with nested nodes (childrenAccessor) + * Food data with nested structure. + * Each node has a name and an optional list of children. */ -export declare class TreeNestedChildAccessorOverviewExample { - childrenAccessor: (node: FoodNode_4) => FoodNode_4[]; - dataSource: FoodNode_4[]; - hasChild: (_: number, node: FoodNode_4) => boolean; - static ɵfac: i0.ɵɵFactoryDeclaration; - static ɵcmp: i0.ɵɵComponentDeclaration; +interface FoodNode$1 { + name: string; + children?: FoodNode$1[]; } - /** * @title Tree with nested nodes */ -export declare class TreeNestedOverviewExample { - treeControl: NestedTreeControl; - dataSource: MatTreeNestedDataSource; +declare class TreeNestedOverviewExample { + treeControl: NestedTreeControl; + dataSource: MatTreeNestedDataSource; constructor(); - hasChild: (_: number, node: FoodNode_3) => boolean; + hasChild: (_: number, node: FoodNode$1) => boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } -export { } +/** + * Food data with nested structure. + * Each node has a name and an optional list of children. + */ +interface FoodNode { + name: string; + children?: FoodNode[]; +} +/** + * @title Tree with nested nodes (childrenAccessor) + */ +declare class TreeNestedChildAccessorOverviewExample { + childrenAccessor: (node: FoodNode) => FoodNode[]; + dataSource: FoodNode[]; + hasChild: (_: number, node: FoodNode) => boolean; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +/** Flat node with expandable and level information */ +interface ExampleFlatNode { + expandable: boolean; + name: string; + level: number; +} +/** + * @title Tree with flat nodes + */ +declare class TreeLegacyKeyboardInterfaceExample { + treeControl: FlatTreeControl; + dataSource: ArrayDataSource; + hasChild: (_: number, node: ExampleFlatNode) => boolean; + getParentNode(node: ExampleFlatNode): ExampleFlatNode | null; + static ɵfac: i0.ɵɵFactoryDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; +} + +export { TreeDynamicExample, TreeFlatChildAccessorOverviewExample, TreeFlatOverviewExample, TreeHarnessExample, TreeLegacyKeyboardInterfaceExample, TreeLoadmoreExample, TreeNestedChildAccessorOverviewExample, TreeNestedOverviewExample }; diff --git a/package.json b/package.json index 4f0b63a38d..e57cf10882 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@angular/components-examples", - "version": "20.0.0-next.0+sha-5b56aa4", + "version": "20.0.0-rc.1+sha-323d70d", "description": "Angular Components Examples", "private": true, "repository": { @@ -259,15 +259,22 @@ }, "homepage": "https://github.com/angular/components#readme", "peerDependencies": { - "@angular/cdk": "20.0.0-next.0+sha-5b56aa4", - "@angular/cdk-experimental": "20.0.0-next.0+sha-5b56aa4", + "@angular/cdk": "20.0.0-rc.1+sha-323d70d", + "@angular/cdk-experimental": "20.0.0-rc.1+sha-323d70d", "@angular/core": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0", "@angular/common": "^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0", - "@angular/material": "20.0.0-next.0+sha-5b56aa4", - "@angular/material-experimental": "20.0.0-next.0+sha-5b56aa4", - "@angular/material-moment-adapter": "20.0.0-next.0+sha-5b56aa4", - "@angular/material-luxon-adapter": "20.0.0-next.0+sha-5b56aa4", - "@angular/material-date-fns-adapter": "20.0.0-next.0+sha-5b56aa4" + "@angular/material": "20.0.0-rc.1+sha-323d70d", + "@angular/material-experimental": "20.0.0-rc.1+sha-323d70d", + "@angular/material-moment-adapter": "20.0.0-rc.1+sha-323d70d", + "@angular/material-luxon-adapter": "20.0.0-rc.1+sha-323d70d", + "@angular/material-date-fns-adapter": "20.0.0-rc.1+sha-323d70d" + }, + "devDependencies": { + "@angular/cdk": "workspace:*", + "@angular/cdk-experimental": "workspace:*", + "@angular/material": "workspace:*", + "@angular/material-experimental": "workspace:*", + "@angular/material-moment-adapter": "workspace:*" }, "dependencies": { "tslib": "^2.3.0"