diff --git a/package.json b/package.json index dc26af7fa464..330e644b1581 100644 --- a/package.json +++ b/package.json @@ -56,12 +56,12 @@ }, "version": "16.0.0-next.4", "dependencies": { - "@angular/animations": "^16.0.0-next.2", - "@angular/common": "^16.0.0-next.2", - "@angular/compiler": "^16.0.0-next.2", - "@angular/core": "^16.0.0-next.2", - "@angular/forms": "^16.0.0-next.2", - "@angular/platform-browser": "^16.0.0-next.2", + "@angular/animations": "^16.0.0-next.5", + "@angular/common": "^16.0.0-next.5", + "@angular/compiler": "^16.0.0-next.5", + "@angular/core": "^16.0.0-next.5", + "@angular/forms": "^16.0.0-next.5", + "@angular/platform-browser": "^16.0.0-next.5", "@types/google.maps": "^3.52.4", "@types/youtube": "^0.0.46", "rxjs": "^6.6.7", @@ -70,18 +70,18 @@ "zone.js": "~0.11.5" }, "devDependencies": { - "@angular-devkit/build-angular": "^16.0.0-next.3", - "@angular-devkit/core": "^16.0.0-next.3", - "@angular-devkit/schematics": "^16.0.0-next.3", + "@angular-devkit/build-angular": "^16.0.0-next.5", + "@angular-devkit/core": "^16.0.0-next.5", + "@angular-devkit/schematics": "^16.0.0-next.5", "@angular/bazel": "15.0.4", - "@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#16f13b9e919478d61ec98ce60901f3bdebb5d4e5", - "@angular/cli": "^16.0.0-next.3", - "@angular/compiler-cli": "^16.0.0-next.2", - "@angular/localize": "^16.0.0-next.2", + "@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#4c7d40592a36f061c23dd08f437f734081f9979d", + "@angular/cli": "^16.0.0-next.5", + "@angular/compiler-cli": "^16.0.0-next.5", + "@angular/localize": "^16.0.0-next.5", "@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#46a6cb28a6ca6a3a7a096656280ed27b02243e9a", - "@angular/platform-browser-dynamic": "^16.0.0-next.2", - "@angular/platform-server": "^16.0.0-next.2", - "@angular/router": "^16.0.0-next.2", + "@angular/platform-browser-dynamic": "^16.0.0-next.5", + "@angular/platform-server": "^16.0.0-next.5", + "@angular/router": "^16.0.0-next.5", "@axe-core/webdriverjs": "^4.3.2", "@babel/core": "^7.16.12", "@bazel/bazelisk": "1.12.1", @@ -146,7 +146,7 @@ "@octokit/rest": "18.3.5", "@rollup/plugin-commonjs": "^21.0.0", "@rollup/plugin-node-resolve": "^13.1.3", - "@schematics/angular": "^16.0.0-next.3", + "@schematics/angular": "^16.0.0-next.5", "@types/babel__core": "^7.1.18", "@types/browser-sync": "^2.26.3", "@types/fs-extra": "^9.0.13", diff --git a/scripts/create-legacy-tests-bundle.mjs b/scripts/create-legacy-tests-bundle.mjs index 1d0248e3c146..061037c20448 100644 --- a/scripts/create-legacy-tests-bundle.mjs +++ b/scripts/create-legacy-tests-bundle.mjs @@ -50,7 +50,7 @@ async function main() { const specEntryPointFile = await createEntryPointSpecFile(); const esbuildLinkerPlugin = await createEsbuildAngularOptimizePlugin({ enableLinker: { - filterPaths: /fesm2020/, + filterPaths: /fesm2022/, linkerOptions: { linkerJitMode: true, }, @@ -63,6 +63,7 @@ async function main() { sourceRoot: projectDir, platform: 'browser', format: 'iife', + target: 'es2015', outfile: outFile, plugins: [esbuildResolvePlugin, esbuildLinkerPlugin], stdin: {contents: specEntryPointFile, resolveDir: projectDir}, diff --git a/src/cdk-experimental/popover-edit/table-directives.ts b/src/cdk-experimental/popover-edit/table-directives.ts index d0ec9603a662..e7e6412ab99f 100644 --- a/src/cdk-experimental/popover-edit/table-directives.ts +++ b/src/cdk-experimental/popover-edit/table-directives.ts @@ -364,7 +364,7 @@ export class CdkPopoverEdit implements AfterViewInit, OnDestroy { inputs: POPOVER_EDIT_INPUTS, }) export class CdkPopoverEditTabOut extends CdkPopoverEdit { - protected override focusTrap?: FocusEscapeNotifier; + protected override focusTrap?: FocusEscapeNotifier = undefined; constructor( elementRef: ElementRef, @@ -382,10 +382,7 @@ export class CdkPopoverEditTabOut extends CdkPopoverEdit { .escapes() .pipe(takeUntil(this.destroyed)) .subscribe(direction => { - if (this.services.editEventDispatcher.editRef) { - this.services.editEventDispatcher.editRef.blur(); - } - + this.services.editEventDispatcher.editRef?.blur(); this.services.focusDispatcher.moveFocusHorizontally( closest(this.elementRef.nativeElement!, CELL_SELECTOR) as HTMLElement, direction === FocusEscapeNotifierDirection.START ? -1 : 1, diff --git a/src/cdk-experimental/selection/select-all.ts b/src/cdk-experimental/selection/select-all.ts index f1d557b1e25b..b0f89653e376 100644 --- a/src/cdk-experimental/selection/select-all.ts +++ b/src/cdk-experimental/selection/select-all.ts @@ -32,18 +32,14 @@ export class CdkSelectAll implements OnDestroy, OnInit { * The checked state of the toggle. * Resolves to `true` if all the values are selected, `false` if no value is selected. */ - readonly checked: Observable = this._selection.change.pipe( - switchMap(() => observableOf(this._selection.isAllSelected())), - ); + readonly checked: Observable; /** * The indeterminate state of the toggle. * Resolves to `true` if part (not all) of the values are selected, `false` if all values or no * value at all are selected. */ - readonly indeterminate: Observable = this._selection.change.pipe( - switchMap(() => observableOf(this._selection.isPartialSelected())), - ); + readonly indeterminate: Observable; /** * Toggles the select-all state. @@ -72,7 +68,15 @@ export class CdkSelectAll implements OnDestroy, OnInit { @Self() @Inject(NG_VALUE_ACCESSOR) private readonly _controlValueAccessor: ControlValueAccessor[], - ) {} + ) { + this.checked = _selection.change.pipe( + switchMap(() => observableOf(_selection.isAllSelected())), + ); + + this.indeterminate = _selection.change.pipe( + switchMap(() => observableOf(_selection.isPartialSelected())), + ); + } ngOnInit() { this._assertValidParentSelection(); diff --git a/src/cdk-experimental/selection/selection-toggle.ts b/src/cdk-experimental/selection/selection-toggle.ts index 14f7f62d222f..a27e305a715a 100644 --- a/src/cdk-experimental/selection/selection-toggle.ts +++ b/src/cdk-experimental/selection/selection-toggle.ts @@ -43,10 +43,7 @@ export class CdkSelectionToggle implements OnDestroy, OnInit { protected _index?: number; /** The checked state of the selection toggle */ - readonly checked: Observable = this._selection.change.pipe( - switchMap(() => observableOf(this._isSelected())), - distinctUntilChanged(), - ); + readonly checked: Observable; /** Toggles the selection */ toggle() { @@ -61,7 +58,12 @@ export class CdkSelectionToggle implements OnDestroy, OnInit { @Self() @Inject(NG_VALUE_ACCESSOR) private _controlValueAccessors: ControlValueAccessor[], - ) {} + ) { + this.checked = _selection.change.pipe( + switchMap(() => observableOf(this._isSelected())), + distinctUntilChanged(), + ); + } ngOnInit() { this._assertValidParentSelection(); diff --git a/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts b/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts index 797366ea3324..28829d30fea9 100644 --- a/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts +++ b/src/components-examples/material/form-field/form-field-custom-control/form-field-custom-control-example.ts @@ -55,11 +55,11 @@ export class MyTelInput implements ControlValueAccessor, MatFormFieldControl; + exchange: FormControl; + subscriber: FormControl; + }>; stateChanges = new Subject(); focused = false; touched = false; @@ -134,7 +134,7 @@ export class MyTelInput implements ControlValueAccessor, MatFormFieldControl, @Optional() @Inject(MAT_FORM_FIELD) public _formField: MatFormField, @@ -143,6 +143,12 @@ export class MyTelInput implements ControlValueAccessor, MatFormFieldControl', host: { - '[tabindex]': 'isInline() ? 0 : null', + '[tabindex]': 'isInline ? 0 : null', 'role': 'menu', 'class': 'cdk-menu mat-menu mat-menu-panel', - '[class.cdk-menu-inline]': 'isInline()', + '[class.cdk-menu-inline]': 'isInline', '[attr.aria-orientation]': 'orientation', }, providers: [ diff --git a/src/dev-app/stepper/stepper-demo.ts b/src/dev-app/stepper/stepper-demo.ts index 2071e8bbe9be..09cdc7da34cf 100644 --- a/src/dev-app/stepper/stepper-demo.ts +++ b/src/dev-app/stepper/stepper-demo.ts @@ -6,7 +6,7 @@ * found in the LICENSE file at https://angular.io/license */ -import {Component} from '@angular/core'; +import {Component, inject} from '@angular/core'; import { AbstractControl, FormBuilder, @@ -40,6 +40,7 @@ import {MatStepperModule} from '@angular/material/stepper'; ], }) export class StepperDemo { + private _formBuilder = inject(FormBuilder); isNonLinear = false; isNonEditable = false; disableRipple = false; @@ -86,6 +87,4 @@ export class StepperDemo { get formArray(): AbstractControl | null { return this.formGroup.get('formArray'); } - - constructor(private _formBuilder: FormBuilder) {} } diff --git a/src/google-maps/google-map/google-map.ts b/src/google-maps/google-map/google-map.ts index f9379723d572..4bddc61774c4 100644 --- a/src/google-maps/google-map/google-map.ts +++ b/src/google-maps/google-map/google-map.ts @@ -24,6 +24,7 @@ import { NgZone, SimpleChanges, EventEmitter, + inject, } from '@angular/core'; import {isPlatformBrowser} from '@angular/common'; import {Observable} from 'rxjs'; @@ -60,7 +61,7 @@ export const DEFAULT_WIDTH = '500px'; encapsulation: ViewEncapsulation.None, }) export class GoogleMap implements OnChanges, OnInit, OnDestroy { - private _eventManager: MapEventManager = new MapEventManager(this._ngZone); + private _eventManager: MapEventManager = new MapEventManager(inject(NgZone)); private _mapEl: HTMLElement; private _existingAuthFailureCallback: GoogleMapsWindow['gm_authFailure']; diff --git a/src/google-maps/map-circle/map-circle.ts b/src/google-maps/map-circle/map-circle.ts index 283077ba5c91..215c3420f4ce 100644 --- a/src/google-maps/map-circle/map-circle.ts +++ b/src/google-maps/map-circle/map-circle.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, NgZone, OnDestroy, OnInit, Output} from '@angular/core'; +import {Directive, Input, NgZone, OnDestroy, OnInit, Output, inject} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -25,7 +25,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapCircle', }) export class MapCircle implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _center = new BehaviorSubject< google.maps.LatLng | google.maps.LatLngLiteral | undefined diff --git a/src/google-maps/map-directions-renderer/map-directions-renderer.ts b/src/google-maps/map-directions-renderer/map-directions-renderer.ts index 80206b4f27be..26134199e4ed 100644 --- a/src/google-maps/map-directions-renderer/map-directions-renderer.ts +++ b/src/google-maps/map-directions-renderer/map-directions-renderer.ts @@ -18,6 +18,7 @@ import { OnInit, Output, SimpleChanges, + inject, } from '@angular/core'; import {Observable} from 'rxjs'; import {GoogleMap} from '../google-map/google-map'; @@ -34,7 +35,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapDirectionsRenderer', }) export class MapDirectionsRenderer implements OnInit, OnChanges, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); /** * See developers.google.com/maps/documentation/javascript/reference/directions diff --git a/src/google-maps/map-ground-overlay/map-ground-overlay.ts b/src/google-maps/map-ground-overlay/map-ground-overlay.ts index 26e458bcca8b..f827ea529ef9 100644 --- a/src/google-maps/map-ground-overlay/map-ground-overlay.ts +++ b/src/google-maps/map-ground-overlay/map-ground-overlay.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, NgZone, OnDestroy, OnInit, Output} from '@angular/core'; +import {Directive, Input, NgZone, OnDestroy, OnInit, Output, inject} from '@angular/core'; import {BehaviorSubject, Observable, Subject} from 'rxjs'; import {takeUntil} from 'rxjs/operators'; @@ -26,7 +26,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapGroundOverlay', }) export class MapGroundOverlay implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _opacity = new BehaviorSubject(1); private readonly _url = new BehaviorSubject(''); diff --git a/src/google-maps/map-info-window/map-info-window.ts b/src/google-maps/map-info-window/map-info-window.ts index faf84b6e51c1..64aeaf7840cd 100644 --- a/src/google-maps/map-info-window/map-info-window.ts +++ b/src/google-maps/map-info-window/map-info-window.ts @@ -9,7 +9,16 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, ElementRef, Input, NgZone, OnDestroy, OnInit, Output} from '@angular/core'; +import { + Directive, + ElementRef, + Input, + NgZone, + OnDestroy, + OnInit, + Output, + inject, +} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -28,7 +37,7 @@ import {MapAnchorPoint} from '../map-anchor-point'; host: {'style': 'display: none'}, }) export class MapInfoWindow implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _position = new BehaviorSubject< google.maps.LatLngLiteral | google.maps.LatLng | undefined diff --git a/src/google-maps/map-kml-layer/map-kml-layer.ts b/src/google-maps/map-kml-layer/map-kml-layer.ts index 53a817780948..56000f1561e5 100644 --- a/src/google-maps/map-kml-layer/map-kml-layer.ts +++ b/src/google-maps/map-kml-layer/map-kml-layer.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, NgZone, OnDestroy, OnInit, Output} from '@angular/core'; +import {Directive, Input, NgZone, OnDestroy, OnInit, Output, inject} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -26,7 +26,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapKmlLayer', }) export class MapKmlLayer implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _url = new BehaviorSubject(''); diff --git a/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts b/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts index dc96b43018a4..be5abe567616 100644 --- a/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts +++ b/src/google-maps/map-marker-clusterer/map-marker-clusterer.ts @@ -23,6 +23,7 @@ import { QueryList, SimpleChanges, ViewEncapsulation, + inject, } from '@angular/core'; import {Observable, Subject} from 'rxjs'; import {takeUntil} from 'rxjs/operators'; @@ -62,7 +63,7 @@ declare const MarkerClusterer: typeof MarkerClustererInstance; }) export class MapMarkerClusterer implements OnInit, AfterContentInit, OnChanges, OnDestroy { private readonly _currentMarkers = new Set(); - private readonly _eventManager = new MapEventManager(this._ngZone); + private readonly _eventManager = new MapEventManager(inject(NgZone)); private readonly _destroy = new Subject(); /** Whether the clusterer is allowed to be initialized. */ diff --git a/src/google-maps/map-marker/map-marker.ts b/src/google-maps/map-marker/map-marker.ts index bcbc74838238..5f96a74ae102 100644 --- a/src/google-maps/map-marker/map-marker.ts +++ b/src/google-maps/map-marker/map-marker.ts @@ -18,6 +18,7 @@ import { Directive, OnChanges, SimpleChanges, + inject, } from '@angular/core'; import {Observable} from 'rxjs'; @@ -43,7 +44,7 @@ export const DEFAULT_MARKER_OPTIONS = { exportAs: 'mapMarker', }) export class MapMarker implements OnInit, OnChanges, OnDestroy, MapAnchorPoint { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); /** * Title of the marker. diff --git a/src/google-maps/map-polygon/map-polygon.ts b/src/google-maps/map-polygon/map-polygon.ts index e34ade2f71f6..a16b247dcc98 100644 --- a/src/google-maps/map-polygon/map-polygon.ts +++ b/src/google-maps/map-polygon/map-polygon.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, OnDestroy, OnInit, Output, NgZone} from '@angular/core'; +import {Directive, Input, OnDestroy, OnInit, Output, NgZone, inject} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -26,7 +26,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapPolygon', }) export class MapPolygon implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _paths = new BehaviorSubject< | google.maps.MVCArray> diff --git a/src/google-maps/map-polyline/map-polyline.ts b/src/google-maps/map-polyline/map-polyline.ts index 0a2b5d6d74de..5ba79ce7082a 100644 --- a/src/google-maps/map-polyline/map-polyline.ts +++ b/src/google-maps/map-polyline/map-polyline.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, OnDestroy, OnInit, Output, NgZone} from '@angular/core'; +import {Directive, Input, OnDestroy, OnInit, Output, NgZone, inject} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -26,7 +26,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapPolyline', }) export class MapPolyline implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _path = new BehaviorSubject< | google.maps.MVCArray diff --git a/src/google-maps/map-rectangle/map-rectangle.ts b/src/google-maps/map-rectangle/map-rectangle.ts index 5abfeebbdfc0..38ed52e934a7 100644 --- a/src/google-maps/map-rectangle/map-rectangle.ts +++ b/src/google-maps/map-rectangle/map-rectangle.ts @@ -9,7 +9,7 @@ // Workaround for: https://github.com/bazelbuild/rules_nodejs/issues/1265 /// -import {Directive, Input, OnDestroy, OnInit, Output, NgZone} from '@angular/core'; +import {Directive, Input, OnDestroy, OnInit, Output, NgZone, inject} from '@angular/core'; import {BehaviorSubject, combineLatest, Observable, Subject} from 'rxjs'; import {map, take, takeUntil} from 'rxjs/operators'; @@ -26,7 +26,7 @@ import {MapEventManager} from '../map-event-manager'; exportAs: 'mapRectangle', }) export class MapRectangle implements OnInit, OnDestroy { - private _eventManager = new MapEventManager(this._ngZone); + private _eventManager = new MapEventManager(inject(NgZone)); private readonly _options = new BehaviorSubject({}); private readonly _bounds = new BehaviorSubject< google.maps.LatLngBounds | google.maps.LatLngBoundsLiteral | undefined diff --git a/src/material/autocomplete/autocomplete.ts b/src/material/autocomplete/autocomplete.ts index 50417a57417b..ef9844e8dcbc 100644 --- a/src/material/autocomplete/autocomplete.ts +++ b/src/material/autocomplete/autocomplete.ts @@ -174,7 +174,7 @@ export abstract class _MatAutocompleteBase set autoActiveFirstOption(value: BooleanInput) { this._autoActiveFirstOption = coerceBooleanProperty(value); } - private _autoActiveFirstOption = !!this._defaults.autoActiveFirstOption; + private _autoActiveFirstOption: boolean; /** Whether the active option should be selected as the user is navigating. */ @Input() @@ -184,7 +184,7 @@ export abstract class _MatAutocompleteBase set autoSelectActiveOption(value: BooleanInput) { this._autoSelectActiveOption = coerceBooleanProperty(value); } - private _autoSelectActiveOption = !!this._defaults.autoSelectActiveOption; + private _autoSelectActiveOption: boolean; /** * Specify the width of the autocomplete panel. Can be any CSS sizing value, otherwise it will @@ -249,6 +249,8 @@ export abstract class _MatAutocompleteBase // wasn't resolved in VoiceOver, and if it has, we can remove this and the `inertGroups` // option altogether. this.inertGroups = platform?.SAFARI || false; + this._autoActiveFirstOption = !!_defaults.autoActiveFirstOption; + this._autoSelectActiveOption = !!_defaults.autoSelectActiveOption; } ngAfterContentInit() { diff --git a/src/material/chips/chip-input.ts b/src/material/chips/chip-input.ts index 898efc289a8b..b4b2d9428e32 100644 --- a/src/material/chips/chip-input.ts +++ b/src/material/chips/chip-input.ts @@ -104,8 +104,7 @@ export class MatChipInput implements MatChipTextControl, AfterContentInit, OnCha * Defaults to `[ENTER]`. */ @Input('matChipInputSeparatorKeyCodes') - separatorKeyCodes: readonly number[] | ReadonlySet = - this._defaultOptions.separatorKeyCodes; + separatorKeyCodes: readonly number[] | ReadonlySet; /** Emitted when a chip is to be added. */ @Output('matChipInputTokenEnd') @@ -137,10 +136,11 @@ export class MatChipInput implements MatChipTextControl, AfterContentInit, OnCha constructor( protected _elementRef: ElementRef, - @Inject(MAT_CHIPS_DEFAULT_OPTIONS) private _defaultOptions: MatChipsDefaultOptions, + @Inject(MAT_CHIPS_DEFAULT_OPTIONS) defaultOptions: MatChipsDefaultOptions, @Optional() @Inject(MAT_FORM_FIELD) formField?: MatFormField, ) { this.inputElement = this._elementRef.nativeElement as HTMLInputElement; + this.separatorKeyCodes = defaultOptions.separatorKeyCodes; if (formField) { this.inputElement.classList.add('mat-mdc-form-field-input-control'); diff --git a/src/material/legacy-chips/chip-input.ts b/src/material/legacy-chips/chip-input.ts index d4f800e2c3b2..5b62a3fa73a5 100644 --- a/src/material/legacy-chips/chip-input.ts +++ b/src/material/legacy-chips/chip-input.ts @@ -109,8 +109,7 @@ export class MatLegacyChipInput * Defaults to `[ENTER]`. */ @Input('matChipInputSeparatorKeyCodes') - separatorKeyCodes: readonly number[] | ReadonlySet = - this._defaultOptions.separatorKeyCodes; + separatorKeyCodes: readonly number[] | ReadonlySet; /** Emitted when a chip is to be added. */ @Output('matChipInputTokenEnd') readonly chipEnd = new EventEmitter(); @@ -141,9 +140,10 @@ export class MatLegacyChipInput constructor( protected _elementRef: ElementRef, - @Inject(MAT_LEGACY_CHIPS_DEFAULT_OPTIONS) private _defaultOptions: MatLegacyChipsDefaultOptions, + @Inject(MAT_LEGACY_CHIPS_DEFAULT_OPTIONS) defaultOptions: MatLegacyChipsDefaultOptions, ) { this.inputElement = this._elementRef.nativeElement as HTMLInputElement; + this.separatorKeyCodes = defaultOptions.separatorKeyCodes; } ngOnChanges(): void { diff --git a/src/material/legacy-tooltip/tooltip.ts b/src/material/legacy-tooltip/tooltip.ts index af8aec6e38cc..deb78c66ae24 100644 --- a/src/material/legacy-tooltip/tooltip.ts +++ b/src/material/legacy-tooltip/tooltip.ts @@ -107,7 +107,7 @@ export class MatLegacyTooltip extends _MatTooltipBase { }) export class LegacyTooltipComponent extends _TooltipComponentBase { /** Stream that emits whether the user has a handset-sized display. */ - _isHandset: Observable = this._breakpointObserver.observe(Breakpoints.Handset); + _isHandset: Observable; _showAnimation = 'mat-tooltip-show'; _hideAnimation = 'mat-tooltip-hide'; @@ -120,9 +120,10 @@ export class LegacyTooltipComponent extends _TooltipComponentBase { constructor( changeDetectorRef: ChangeDetectorRef, - private _breakpointObserver: BreakpointObserver, + breakpointObserver: BreakpointObserver, @Optional() @Inject(ANIMATION_MODULE_TYPE) animationMode?: string, ) { super(changeDetectorRef, animationMode); + this._isHandset = breakpointObserver.observe(Breakpoints.Handset); } } diff --git a/src/material/menu/menu.ts b/src/material/menu/menu.ts index f4903cd3fea9..0846822ed049 100644 --- a/src/material/menu/menu.ts +++ b/src/material/menu/menu.ts @@ -100,8 +100,8 @@ export class _MatMenuBase implements AfterContentInit, MatMenuPanel, OnInit, OnDestroy { private _keyManager: FocusKeyManager; - private _xPosition: MenuPositionX = this._defaultOptions.xPosition; - private _yPosition: MenuPositionY = this._defaultOptions.yPosition; + private _xPosition: MenuPositionX; + private _yPosition: MenuPositionY; private _firstItemFocusSubscription?: Subscription; private _previousElevation: string; protected _elevationPrefix: string; @@ -132,10 +132,10 @@ export class _MatMenuBase direction: Direction; /** Class or list of classes to be added to the overlay panel. */ - overlayPanelClass: string | string[] = this._defaultOptions.overlayPanelClass || ''; + overlayPanelClass: string | string[]; /** Class to be added to the backdrop element. */ - @Input() backdropClass: string = this._defaultOptions.backdropClass; + @Input() backdropClass: string; /** aria-label for the menu panel. */ @Input('aria-label') ariaLabel: string; @@ -200,7 +200,7 @@ export class _MatMenuBase set overlapTrigger(value: BooleanInput) { this._overlapTrigger = coerceBooleanProperty(value); } - private _overlapTrigger: boolean = this._defaultOptions.overlapTrigger; + private _overlapTrigger: boolean; /** Whether the menu has a backdrop. */ @Input() @@ -210,7 +210,7 @@ export class _MatMenuBase set hasBackdrop(value: BooleanInput) { this._hasBackdrop = coerceBooleanProperty(value); } - private _hasBackdrop: boolean | undefined = this._defaultOptions.hasBackdrop; + private _hasBackdrop: boolean | undefined; /** * This method takes classes set on the host mat-menu element and applies them on the @@ -288,10 +288,17 @@ export class _MatMenuBase constructor( private _elementRef: ElementRef, private _ngZone: NgZone, - @Inject(MAT_MENU_DEFAULT_OPTIONS) private _defaultOptions: MatMenuDefaultOptions, + @Inject(MAT_MENU_DEFAULT_OPTIONS) defaultOptions: MatMenuDefaultOptions, // @breaking-change 15.0.0 `_changeDetectorRef` to become a required parameter. private _changeDetectorRef?: ChangeDetectorRef, - ) {} + ) { + this.overlayPanelClass = defaultOptions.overlayPanelClass || ''; + this._xPosition = defaultOptions.xPosition; + this._yPosition = defaultOptions.yPosition; + this.backdropClass = defaultOptions.backdropClass; + this._overlapTrigger = defaultOptions.overlapTrigger; + this._hasBackdrop = defaultOptions.hasBackdrop; + } ngOnInit() { this.setPositionClasses(); diff --git a/src/material/tooltip/tooltip.ts b/src/material/tooltip/tooltip.ts index 36b11614e9c1..ac6af793ac9c 100644 --- a/src/material/tooltip/tooltip.ts +++ b/src/material/tooltip/tooltip.ts @@ -237,7 +237,7 @@ export abstract class _MatTooltipBase this._showDelay = coerceNumberProperty(value); } - private _showDelay = this._defaultOptions.showDelay; + private _showDelay: number; /** The default delay in ms before hiding the tooltip after hide is called */ @Input('matTooltipHideDelay') @@ -253,7 +253,7 @@ export abstract class _MatTooltipBase } } - private _hideDelay = this._defaultOptions.hideDelay; + private _hideDelay: number; /** * How touch gestures should be handled by the tooltip. On touch devices the tooltip directive @@ -325,7 +325,7 @@ export abstract class _MatTooltipBase private _document: Document; /** Timer started at the last `touchstart` event. */ - private _touchstartTimeout: number; + private _touchstartTimeout: ReturnType; /** Emits when the component is destroyed. */ private readonly _destroyed = new Subject(); @@ -348,6 +348,9 @@ export abstract class _MatTooltipBase this._document = _document; if (_defaultOptions) { + this._showDelay = _defaultOptions.showDelay; + this._hideDelay = _defaultOptions.hideDelay; + if (_defaultOptions.position) { this.position = _defaultOptions.position; } @@ -916,10 +919,10 @@ export abstract class _TooltipComponentBase implements OnDestroy { tooltipClass: string | string[] | Set | {[key: string]: any}; /** The timeout ID of any current timer set to show the tooltip */ - private _showTimeoutId: number | undefined; + private _showTimeoutId: ReturnType | undefined; /** The timeout ID of any current timer set to hide the tooltip */ - private _hideTimeoutId: number | undefined; + private _hideTimeoutId: ReturnType | undefined; /** Element that caused the tooltip to open. */ _triggerElement: HTMLElement; @@ -961,7 +964,9 @@ export abstract class _TooltipComponentBase implements OnDestroy { */ show(delay: number): void { // Cancel the delayed hide if it is scheduled - clearTimeout(this._hideTimeoutId); + if (this._hideTimeoutId != null) { + clearTimeout(this._hideTimeoutId); + } this._showTimeoutId = setTimeout(() => { this._toggleVisibility(true); @@ -975,7 +980,9 @@ export abstract class _TooltipComponentBase implements OnDestroy { */ hide(delay: number): void { // Cancel the delayed show if it is scheduled - clearTimeout(this._showTimeoutId); + if (this._showTimeoutId != null) { + clearTimeout(this._showTimeoutId); + } this._hideTimeoutId = setTimeout(() => { this._toggleVisibility(false); @@ -1045,8 +1052,14 @@ export abstract class _TooltipComponentBase implements OnDestroy { /** Cancels any pending animation sequences. */ _cancelPendingAnimations() { - clearTimeout(this._showTimeoutId); - clearTimeout(this._hideTimeoutId); + if (this._showTimeoutId != null) { + clearTimeout(this._showTimeoutId); + } + + if (this._hideTimeoutId != null) { + clearTimeout(this._hideTimeoutId); + } + this._showTimeoutId = this._hideTimeoutId = undefined; } diff --git a/src/material/tree/tree.ts b/src/material/tree/tree.ts index e546cac0b234..e8f51e10600c 100644 --- a/src/material/tree/tree.ts +++ b/src/material/tree/tree.ts @@ -30,5 +30,6 @@ import {MatTreeNodeOutlet} from './outlet'; }) export class MatTree extends CdkTree { // Outlets within the tree's template where the dataNodes will be inserted. + // We need an initializer here to avoid a TS error. The value will be set in `ngAfterViewInit`. @ViewChild(MatTreeNodeOutlet, {static: true}) override _nodeOutlet: MatTreeNodeOutlet; } diff --git a/tools/angular/esbuild.config.mjs b/tools/angular/esbuild.config.mjs index 8c553f6cefa1..5a4b50333dba 100644 --- a/tools/angular/esbuild.config.mjs +++ b/tools/angular/esbuild.config.mjs @@ -15,9 +15,9 @@ export default { plugins: [ await createEsbuildAngularOptimizePlugin({ enableLinker: { - // Only run the linker on `fesm2020/` bundles. This should not have an effect on + // Only run the linker on `fesm2022/` bundles. This should not have an effect on // the bundle output, but helps speeding up ESBuild when it visits other modules. - filterPaths: /fesm2020/, + filterPaths: /fesm2022/, linkerOptions: { // We enable JIT mode as unit tests may need it for overriding. linkerJitMode: true, diff --git a/tools/angular/index.bzl b/tools/angular/index.bzl index b1569e7edea5..be89e45ea44a 100644 --- a/tools/angular/index.bzl +++ b/tools/angular/index.bzl @@ -49,7 +49,7 @@ def _get_target_name_base(pkg, entry_point): def _create_bundle_targets(pkg, entry_point, module_name): target_name_base = _get_target_name_base(pkg, entry_point) - fesm_bundle_path = "fesm2020/%s.mjs" % (entry_point if entry_point else pkg.name) + fesm_bundle_path = "fesm2022/%s.mjs" % (entry_point if entry_point else pkg.name) esbuild( name = "%s_linked_bundle" % target_name_base, diff --git a/tools/public_api_guard/cdk/a11y.md b/tools/public_api_guard/cdk/a11y.md index fc9faf72f839..3ab1d6f8427f 100644 --- a/tools/public_api_guard/cdk/a11y.md +++ b/tools/public_api_guard/cdk/a11y.md @@ -73,7 +73,7 @@ export class CdkAriaLive implements OnDestroy { get politeness(): AriaLivePoliteness; set politeness(value: AriaLivePoliteness); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -113,7 +113,7 @@ export class CdkTrapFocus implements OnDestroy, AfterContentInit, OnChanges, DoC // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/accordion.md b/tools/public_api_guard/cdk/accordion.md index 17c723221318..ae26ad596351 100644 --- a/tools/public_api_guard/cdk/accordion.md +++ b/tools/public_api_guard/cdk/accordion.md @@ -29,7 +29,7 @@ export class CdkAccordion implements OnDestroy, OnChanges { readonly _openCloseAllActions: Subject; readonly _stateChanges: Subject; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -55,7 +55,7 @@ export class CdkAccordionItem implements OnDestroy { readonly opened: EventEmitter; toggle(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/bidi.md b/tools/public_api_guard/cdk/bidi.md index 7c6ec2462510..665e6cb26f2f 100644 --- a/tools/public_api_guard/cdk/bidi.md +++ b/tools/public_api_guard/cdk/bidi.md @@ -31,7 +31,7 @@ export class Dir implements Directionality, AfterContentInit, OnDestroy { _rawDir: string; get value(): Direction; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/clipboard.md b/tools/public_api_guard/cdk/clipboard.md index 8cd1984bedcf..5f6e0d273632 100644 --- a/tools/public_api_guard/cdk/clipboard.md +++ b/tools/public_api_guard/cdk/clipboard.md @@ -23,7 +23,7 @@ export class CdkCopyToClipboard implements OnDestroy { ngOnDestroy(): void; text: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/drag-drop.md b/tools/public_api_guard/cdk/drag-drop.md index dbb41960c603..f69ed9dcb8c9 100644 --- a/tools/public_api_guard/cdk/drag-drop.md +++ b/tools/public_api_guard/cdk/drag-drop.md @@ -90,7 +90,7 @@ export class CdkDrag implements AfterViewInit, OnChanges, OnDestroy { setFreeDragPosition(value: Point): void; readonly started: EventEmitter; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDrag]", ["cdkDrag"], { "data": "cdkDragData"; "lockAxis": "cdkDragLockAxis"; "rootElementSelector": "cdkDragRootElement"; "boundaryElement": "cdkDragBoundary"; "dragStartDelay": "cdkDragStartDelay"; "freeDragPosition": "cdkDragFreeDragPosition"; "disabled": "cdkDragDisabled"; "constrainPosition": "cdkDragConstrainPosition"; "previewClass": "cdkDragPreviewClass"; "previewContainer": "cdkDragPreviewContainer"; }, { "started": "cdkDragStarted"; "released": "cdkDragReleased"; "ended": "cdkDragEnded"; "entered": "cdkDragEntered"; "exited": "cdkDragExited"; "dropped": "cdkDragDropped"; "moved": "cdkDragMoved"; }, ["_previewTemplate", "_placeholderTemplate", "_handles"], never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDrag]", ["cdkDrag"], { "data": { "alias": "cdkDragData"; "required": false; }; "lockAxis": { "alias": "cdkDragLockAxis"; "required": false; }; "rootElementSelector": { "alias": "cdkDragRootElement"; "required": false; }; "boundaryElement": { "alias": "cdkDragBoundary"; "required": false; }; "dragStartDelay": { "alias": "cdkDragStartDelay"; "required": false; }; "freeDragPosition": { "alias": "cdkDragFreeDragPosition"; "required": false; }; "disabled": { "alias": "cdkDragDisabled"; "required": false; }; "constrainPosition": { "alias": "cdkDragConstrainPosition"; "required": false; }; "previewClass": { "alias": "cdkDragPreviewClass"; "required": false; }; "previewContainer": { "alias": "cdkDragPreviewContainer"; "required": false; }; }, { "started": "cdkDragStarted"; "released": "cdkDragReleased"; "ended": "cdkDragEnded"; "entered": "cdkDragEntered"; "exited": "cdkDragExited"; "dropped": "cdkDragDropped"; "moved": "cdkDragMoved"; }, ["_previewTemplate", "_placeholderTemplate", "_handles"], never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; skipSelf: true; }, null, null, null, { optional: true; }, { optional: true; }, null, null, { optional: true; self: true; }, { optional: true; skipSelf: true; }]>; } @@ -153,7 +153,7 @@ export class CdkDragHandle implements OnDestroy { _parentDrag: {} | undefined; readonly _stateChanges: Subject; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -183,7 +183,7 @@ export class CdkDragPlaceholder { // (undocumented) templateRef: TemplateRef; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "ng-template[cdkDragPlaceholder]", never, { "data": "data"; }, {}, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "ng-template[cdkDragPlaceholder]", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -197,7 +197,7 @@ export class CdkDragPreview { // (undocumented) templateRef: TemplateRef; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "ng-template[cdkDragPreview]", never, { "data": "data"; "matchSize": "matchSize"; }, {}, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "ng-template[cdkDragPreview]", never, { "data": { "alias": "data"; "required": false; }; "matchSize": { "alias": "matchSize"; "required": false; }; }, {}, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -250,7 +250,7 @@ export class CdkDropList implements OnDestroy { sortingDisabled: BooleanInput; sortPredicate: (index: number, drag: CdkDrag, drop: CdkDropList) => boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDropList], cdk-drop-list", ["cdkDropList"], { "connectedTo": "cdkDropListConnectedTo"; "data": "cdkDropListData"; "orientation": "cdkDropListOrientation"; "id": "id"; "lockAxis": "cdkDropListLockAxis"; "disabled": "cdkDropListDisabled"; "sortingDisabled": "cdkDropListSortingDisabled"; "enterPredicate": "cdkDropListEnterPredicate"; "sortPredicate": "cdkDropListSortPredicate"; "autoScrollDisabled": "cdkDropListAutoScrollDisabled"; "autoScrollStep": "cdkDropListAutoScrollStep"; }, { "dropped": "cdkDropListDropped"; "entered": "cdkDropListEntered"; "exited": "cdkDropListExited"; "sorted": "cdkDropListSorted"; }, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDropList], cdk-drop-list", ["cdkDropList"], { "connectedTo": { "alias": "cdkDropListConnectedTo"; "required": false; }; "data": { "alias": "cdkDropListData"; "required": false; }; "orientation": { "alias": "cdkDropListOrientation"; "required": false; }; "id": { "alias": "id"; "required": false; }; "lockAxis": { "alias": "cdkDropListLockAxis"; "required": false; }; "disabled": { "alias": "cdkDropListDisabled"; "required": false; }; "sortingDisabled": { "alias": "cdkDropListSortingDisabled"; "required": false; }; "enterPredicate": { "alias": "cdkDropListEnterPredicate"; "required": false; }; "sortPredicate": { "alias": "cdkDropListSortPredicate"; "required": false; }; "autoScrollDisabled": { "alias": "cdkDropListAutoScrollDisabled"; "required": false; }; "autoScrollStep": { "alias": "cdkDropListAutoScrollStep"; "required": false; }; }, { "dropped": "cdkDropListDropped"; "entered": "cdkDropListEntered"; "exited": "cdkDropListExited"; "sorted": "cdkDropListSorted"; }, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; skipSelf: true; }, { optional: true; }]>; } @@ -263,7 +263,7 @@ export class CdkDropListGroup implements OnDestroy { // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDropListGroup]", ["cdkDropListGroup"], { "disabled": "cdkDropListGroupDisabled"; }, {}, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkDropListGroup]", ["cdkDropListGroup"], { "disabled": { "alias": "cdkDropListGroupDisabled"; "required": false; }; }, {}, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/cdk/listbox.md b/tools/public_api_guard/cdk/listbox.md index dca8d99ddd12..22371c91ab82 100644 --- a/tools/public_api_guard/cdk/listbox.md +++ b/tools/public_api_guard/cdk/listbox.md @@ -75,7 +75,7 @@ export class CdkListbox implements AfterContentInit, OnDestroy, Con readonly valueChange: Subject>; writeValue(value: readonly T[]): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkListbox]", ["cdkListbox"], { "id": "id"; "enabledTabIndex": "tabindex"; "value": "cdkListboxValue"; "multiple": "cdkListboxMultiple"; "disabled": "cdkListboxDisabled"; "useActiveDescendant": "cdkListboxUseActiveDescendant"; "orientation": "cdkListboxOrientation"; "compareWith": "cdkListboxCompareWith"; "navigationWrapDisabled": "cdkListboxNavigationWrapDisabled"; "navigateDisabledOptions": "cdkListboxNavigatesDisabledOptions"; }, { "valueChange": "cdkListboxValueChange"; }, ["options"], never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkListbox]", ["cdkListbox"], { "id": { "alias": "id"; "required": false; }; "enabledTabIndex": { "alias": "tabindex"; "required": false; }; "value": { "alias": "cdkListboxValue"; "required": false; }; "multiple": { "alias": "cdkListboxMultiple"; "required": false; }; "disabled": { "alias": "cdkListboxDisabled"; "required": false; }; "useActiveDescendant": { "alias": "cdkListboxUseActiveDescendant"; "required": false; }; "orientation": { "alias": "cdkListboxOrientation"; "required": false; }; "compareWith": { "alias": "cdkListboxCompareWith"; "required": false; }; "navigationWrapDisabled": { "alias": "cdkListboxNavigationWrapDisabled"; "required": false; }; "navigateDisabledOptions": { "alias": "cdkListboxNavigatesDisabledOptions"; "required": false; }; }, { "valueChange": "cdkListboxValueChange"; }, ["options"], never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -118,7 +118,7 @@ export class CdkOption implements ListKeyManagerOption, Highlightab typeaheadLabel: string; value: T; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkOption]", ["cdkOption"], { "id": "id"; "value": "cdkOption"; "typeaheadLabel": "cdkOptionTypeaheadLabel"; "disabled": "cdkOptionDisabled"; "enabledTabIndex": "tabindex"; }, {}, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkOption]", ["cdkOption"], { "id": { "alias": "id"; "required": false; }; "value": { "alias": "cdkOption"; "required": false; }; "typeaheadLabel": { "alias": "cdkOptionTypeaheadLabel"; "required": false; }; "disabled": { "alias": "cdkOptionDisabled"; "required": false; }; "enabledTabIndex": { "alias": "tabindex"; "required": false; }; }, {}, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/cdk/menu.md b/tools/public_api_guard/cdk/menu.md index 7ae63398cfa8..3da20723be20 100644 --- a/tools/public_api_guard/cdk/menu.md +++ b/tools/public_api_guard/cdk/menu.md @@ -40,7 +40,7 @@ export class CdkContextMenuTrigger extends CdkMenuTriggerBase implements OnDestr open(coordinates: ContextMenuCoordinates): void; _openOnContextMenu(event: MouseEvent): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -101,7 +101,7 @@ export abstract class CdkMenuBase extends CdkMenuGroup implements Menu, AfterCon protected pointerTracker?: PointerFocusTracker; protected triggerItem?: CdkMenuItem; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -146,7 +146,7 @@ export class CdkMenuItem implements FocusableOption, FocusableElement, Toggler, readonly triggered: EventEmitter; typeaheadLabel: string | null; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -182,7 +182,7 @@ export abstract class CdkMenuItemSelectable extends CdkMenuItem { set checked(value: BooleanInput); protected closeOnSpacebarTrigger: boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -208,7 +208,7 @@ export class CdkMenuTrigger extends CdkMenuTriggerBase implements OnDestroy { toggle(): void; _toggleOnKeydown(event: KeyboardEvent): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/observers.md b/tools/public_api_guard/cdk/observers.md index fb8203fc52e7..d679ef1efe04 100644 --- a/tools/public_api_guard/cdk/observers.md +++ b/tools/public_api_guard/cdk/observers.md @@ -27,7 +27,7 @@ export class CdkObserveContent implements AfterContentInit, OnDestroy { // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/overlay.md b/tools/public_api_guard/cdk/overlay.md index fc148d932982..37b73ca6af12 100644 --- a/tools/public_api_guard/cdk/overlay.md +++ b/tools/public_api_guard/cdk/overlay.md @@ -89,7 +89,7 @@ export class CdkConnectedOverlay implements OnDestroy, OnChanges { viewportMargin: number; width: number | string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/portal.md b/tools/public_api_guard/cdk/portal.md index 70203eeef6df..5bcbdf4893db 100644 --- a/tools/public_api_guard/cdk/portal.md +++ b/tools/public_api_guard/cdk/portal.md @@ -68,7 +68,7 @@ export class CdkPortalOutlet extends BasePortalOutlet implements OnInit, OnDestr get portal(): Portal | null; set portal(portal: Portal | null | undefined | ''); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -129,7 +129,7 @@ export type PortalHost = PortalOutlet; // @public @deprecated (undocumented) export class PortalHostDirective extends CdkPortalOutlet { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/scrolling.md b/tools/public_api_guard/cdk/scrolling.md index 211a66e36d9d..a535e75661df 100644 --- a/tools/public_api_guard/cdk/scrolling.md +++ b/tools/public_api_guard/cdk/scrolling.md @@ -54,7 +54,7 @@ export class CdkFixedSizeVirtualScroll implements OnChanges { ngOnChanges(): void; _scrollStrategy: FixedSizeVirtualScrollStrategy; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -123,7 +123,7 @@ export class CdkVirtualForOf implements CdkVirtualScrollRepeater, Collecti ngOnDestroy(): void; readonly viewChange: Subject; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkVirtualFor][cdkVirtualForOf]", never, { "cdkVirtualForOf": "cdkVirtualForOf"; "cdkVirtualForTrackBy": "cdkVirtualForTrackBy"; "cdkVirtualForTemplate": "cdkVirtualForTemplate"; "cdkVirtualForTemplateCacheSize": "cdkVirtualForTemplateCacheSize"; }, {}, never, never, true, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkVirtualFor][cdkVirtualForOf]", never, { "cdkVirtualForOf": { "alias": "cdkVirtualForOf"; "required": false; }; "cdkVirtualForTrackBy": { "alias": "cdkVirtualForTrackBy"; "required": false; }; "cdkVirtualForTemplate": { "alias": "cdkVirtualForTemplate"; "required": false; }; "cdkVirtualForTemplateCacheSize": { "alias": "cdkVirtualForTemplateCacheSize"; "required": false; }; }, {}, never, never, true, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { skipSelf: true; }, null]>; } @@ -222,7 +222,7 @@ export class CdkVirtualScrollViewport extends CdkVirtualScrollable implements On _totalContentHeight: string; _totalContentWidth: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/stepper.md b/tools/public_api_guard/cdk/stepper.md index d2f45f649e52..56b0cc3b2ba2 100644 --- a/tools/public_api_guard/cdk/stepper.md +++ b/tools/public_api_guard/cdk/stepper.md @@ -58,7 +58,7 @@ export class CdkStep implements OnChanges { // (undocumented) _stepper: CdkStepper; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -121,7 +121,7 @@ export class CdkStepper implements AfterContentInit, AfterViewInit, OnDestroy { readonly steps: QueryList; _steps: QueryList; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -143,7 +143,7 @@ export class CdkStepperNext { _stepper: CdkStepper; type: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -155,7 +155,7 @@ export class CdkStepperPrevious { _stepper: CdkStepper; type: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/table.md b/tools/public_api_guard/cdk/table.md index ff3f07d94ba1..29d6de0cecb6 100644 --- a/tools/public_api_guard/cdk/table.md +++ b/tools/public_api_guard/cdk/table.md @@ -158,7 +158,7 @@ export class CdkColumnDef extends _CdkColumnDefBase implements CanStick { _table?: any; protected _updateColumnCssClassName(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -199,7 +199,7 @@ export class CdkFooterRowDef extends _CdkFooterRowDefBase implements CanStick, O // (undocumented) _table?: any; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -240,7 +240,7 @@ export class CdkHeaderRowDef extends _CdkHeaderRowDefBase implements CanStick, O // (undocumented) _table?: any; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -281,7 +281,7 @@ export class CdkRowDef extends BaseRowDef { _table?: any; when: (index: number, rowData: T) => boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkRowDef]", never, { "columns": "cdkRowDefColumns"; "when": "cdkRowDefWhen"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkRowDef]", never, { "columns": { "alias": "cdkRowDefColumns"; "required": false; }; "when": { "alias": "cdkRowDefWhen"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, { optional: true; }]>; } @@ -361,7 +361,7 @@ export class CdkTable implements AfterContentChecked, CollectionViewer, OnDes // (undocumented) protected readonly _viewRepeater: _ViewRepeater, RowContext>; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-table, table[cdk-table]", ["cdkTable"], { "trackBy": "trackBy"; "dataSource": "dataSource"; "multiTemplateDataRows": "multiTemplateDataRows"; "fixedLayout": "fixedLayout"; }, { "contentChanged": "contentChanged"; }, ["_noDataRow", "_contentColumnDefs", "_contentRowDefs", "_contentHeaderRowDefs", "_contentFooterRowDefs"], ["caption", "colgroup, col"], false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-table, table[cdk-table]", ["cdkTable"], { "trackBy": { "alias": "trackBy"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; "multiTemplateDataRows": { "alias": "multiTemplateDataRows"; "required": false; }; "fixedLayout": { "alias": "fixedLayout"; "required": false; }; }, { "contentChanged": "contentChanged"; }, ["_noDataRow", "_contentColumnDefs", "_contentRowDefs", "_contentHeaderRowDefs", "_contentFooterRowDefs"], ["caption", "colgroup, col"], false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, { attribute: "role"; }, { optional: true; }, null, null, null, null, null, { optional: true; skipSelf: true; }, { optional: true; }]>; } @@ -398,7 +398,7 @@ export class CdkTextColumn implements OnDestroy, OnInit { // (undocumented) ngOnInit(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-text-column", never, { "name": "name"; "headerText": "headerText"; "dataAccessor": "dataAccessor"; "justify": "justify"; }, {}, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-text-column", never, { "name": { "alias": "name"; "required": false; }; "headerText": { "alias": "headerText"; "required": false; }; "dataAccessor": { "alias": "dataAccessor"; "required": false; }; "justify": { "alias": "justify"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [{ optional: true; }, { optional: true; }]>; } diff --git a/tools/public_api_guard/cdk/text-field.md b/tools/public_api_guard/cdk/text-field.md index 3c762942296c..b190f571ebc8 100644 --- a/tools/public_api_guard/cdk/text-field.md +++ b/tools/public_api_guard/cdk/text-field.md @@ -79,7 +79,7 @@ export class CdkTextareaAutosize implements AfterViewInit, DoCheck, OnDestroy { _setMaxHeight(): void; _setMinHeight(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/cdk/tree.md b/tools/public_api_guard/cdk/tree.md index cf1102cd36db..8ca2370635de 100644 --- a/tools/public_api_guard/cdk/tree.md +++ b/tools/public_api_guard/cdk/tree.md @@ -70,7 +70,7 @@ export class CdkNestedTreeNode extends CdkTreeNode implements Af nodeOutlet: QueryList; protected updateChildrenNodes(children?: T[]): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "cdk-nested-tree-node", ["cdkNestedTreeNode"], { "role": "role"; "disabled": "disabled"; "tabIndex": "tabIndex"; }, {}, ["nodeOutlet"], never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "cdk-nested-tree-node", ["cdkNestedTreeNode"], { "role": { "alias": "role"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, ["nodeOutlet"], never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -99,7 +99,7 @@ export class CdkTree implements AfterContentChecked, CollectionViewer, end: number; }>; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-tree", ["cdkTree"], { "dataSource": "dataSource"; "treeControl": "treeControl"; "trackBy": "trackBy"; }, {}, ["_nodeDefs"], never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "cdk-tree", ["cdkTree"], { "dataSource": { "alias": "dataSource"; "required": false; }; "treeControl": { "alias": "treeControl"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; }, {}, ["_nodeDefs"], never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -143,7 +143,7 @@ export class CdkTreeNode implements FocusableOption, OnDestroy, OnInit // (undocumented) protected _tree: CdkTree; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "cdk-tree-node", ["cdkTreeNode"], { "role": "role"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "cdk-tree-node", ["cdkTreeNode"], { "role": { "alias": "role"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -155,7 +155,7 @@ export class CdkTreeNodeDef { template: TemplateRef; when: (index: number, nodeData: T) => boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodeDef]", never, { "when": "cdkTreeNodeDefWhen"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodeDef]", never, { "when": { "alias": "cdkTreeNodeDefWhen"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -202,7 +202,7 @@ export class CdkTreeNodePadding implements OnDestroy { // (undocumented) _setPadding(forceChange?: boolean): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodePadding]", never, { "level": "cdkTreeNodePadding"; "indent": "cdkTreeNodePaddingIndent"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodePadding]", never, { "level": { "alias": "cdkTreeNodePadding"; "required": false; }; "indent": { "alias": "cdkTreeNodePaddingIndent"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, { optional: true; }]>; } @@ -221,7 +221,7 @@ export class CdkTreeNodeToggle { // (undocumented) protected _treeNode: CdkTreeNode; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodeToggle]", never, { "recursive": "cdkTreeNodeToggleRecursive"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[cdkTreeNodeToggle]", never, { "recursive": { "alias": "cdkTreeNodeToggleRecursive"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/google-maps/google-maps.md b/tools/public_api_guard/google-maps/google-maps.md index d7333450245e..d1bb1e6c18bc 100644 --- a/tools/public_api_guard/google-maps/google-maps.md +++ b/tools/public_api_guard/google-maps/google-maps.md @@ -114,7 +114,7 @@ export class GoogleMap implements OnChanges, OnInit, OnDestroy { set zoom(zoom: number); readonly zoomChanged: Observable; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -229,7 +229,7 @@ export class MapCircle implements OnInit, OnDestroy { // (undocumented) readonly radiusChanged: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -251,7 +251,7 @@ export class MapDirectionsRenderer implements OnInit, OnChanges, OnDestroy { ngOnInit(): void; set options(options: google.maps.DirectionsRendererOptions); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -319,7 +319,7 @@ export class MapGroundOverlay implements OnInit, OnDestroy { set opacity(opacity: number); set url(url: string); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -338,7 +338,7 @@ export class MapHeatmapLayer implements OnInit, OnChanges, OnDestroy { ngOnInit(): void; set options(options: Partial); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -366,7 +366,7 @@ export class MapInfoWindow implements OnInit, OnDestroy { readonly positionChanged: Observable; readonly zindexChanged: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -392,7 +392,7 @@ export class MapKmlLayer implements OnInit, OnDestroy { // (undocumented) set url(url: string); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -449,7 +449,7 @@ export class MapMarker implements OnInit, OnChanges, OnDestroy, MapAnchorPoint { readonly visibleChanged: Observable; readonly zindexChanged: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -550,7 +550,7 @@ export class MapMarkerClusterer implements OnInit, AfterContentInit, OnChanges, // (undocumented) set zoomOnClick(zoomOnClick: boolean); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -584,7 +584,7 @@ export class MapPolygon implements OnInit, OnDestroy { readonly polygonMouseup: Observable; readonly polygonRightclick: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -617,7 +617,7 @@ export class MapPolyline implements OnInit, OnDestroy { readonly polylineMouseup: Observable; readonly polylineRightclick: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -651,7 +651,7 @@ export class MapRectangle implements OnInit, OnDestroy { readonly rectangleMouseup: Observable; readonly rectangleRightclick: Observable; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -666,7 +666,7 @@ export class MapTrafficLayer implements OnInit, OnDestroy { ngOnInit(): void; trafficLayer?: google.maps.TrafficLayer; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/autocomplete.md b/tools/public_api_guard/material/autocomplete.md index 3281519a7cb5..b1772f8de32a 100644 --- a/tools/public_api_guard/material/autocomplete.md +++ b/tools/public_api_guard/material/autocomplete.md @@ -81,7 +81,7 @@ export class MatAutocomplete extends _MatAutocompleteBase { // (undocumented) protected _visibleClass: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -140,7 +140,7 @@ export abstract class _MatAutocompleteBase extends _MatAutocompleteMixinBase imp template: TemplateRef; protected abstract _visibleClass: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatAutocompleteBase, never, never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "displayWith": "displayWith"; "autoActiveFirstOption": "autoActiveFirstOption"; "autoSelectActiveOption": "autoSelectActiveOption"; "panelWidth": "panelWidth"; "classList": "class"; }, { "optionSelected": "optionSelected"; "opened": "opened"; "closed": "closed"; "optionActivated": "optionActivated"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatAutocompleteBase, never, never, { "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "displayWith": { "alias": "displayWith"; "required": false; }; "autoActiveFirstOption": { "alias": "autoActiveFirstOption"; "required": false; }; "autoSelectActiveOption": { "alias": "autoSelectActiveOption"; "required": false; }; "panelWidth": { "alias": "panelWidth"; "required": false; }; "classList": { "alias": "class"; "required": false; }; }, { "optionSelected": "optionSelected"; "opened": "opened"; "closed": "closed"; "optionActivated": "optionActivated"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatAutocompleteBase, never>; } @@ -243,7 +243,7 @@ export abstract class _MatAutocompleteTriggerBase implements ControlValueAccesso // (undocumented) writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatAutocompleteTriggerBase, never, never, { "autocomplete": "matAutocomplete"; "position": "matAutocompletePosition"; "connectedTo": "matAutocompleteConnectedTo"; "autocompleteAttribute": "autocomplete"; "autocompleteDisabled": "matAutocompleteDisabled"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatAutocompleteTriggerBase, never, never, { "autocomplete": { "alias": "matAutocomplete"; "required": false; }; "position": { "alias": "matAutocompletePosition"; "required": false; }; "connectedTo": { "alias": "matAutocompleteConnectedTo"; "required": false; }; "autocompleteAttribute": { "alias": "autocomplete"; "required": false; }; "autocompleteDisabled": { "alias": "matAutocompleteDisabled"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatAutocompleteTriggerBase, [null, null, null, null, null, null, { optional: true; }, { optional: true; host: true; }, { optional: true; }, null, { optional: true; }]>; } diff --git a/tools/public_api_guard/material/badge.md b/tools/public_api_guard/material/badge.md index 28c454afb052..f4591d7566b2 100644 --- a/tools/public_api_guard/material/badge.md +++ b/tools/public_api_guard/material/badge.md @@ -43,7 +43,7 @@ export class MatBadge extends _MatBadgeBase implements OnInit, OnDestroy, CanDis position: MatBadgePosition; size: MatBadgeSize; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/button-toggle.md b/tools/public_api_guard/material/button-toggle.md index efe03be40eaa..7eda92e9e11c 100644 --- a/tools/public_api_guard/material/button-toggle.md +++ b/tools/public_api_guard/material/button-toggle.md @@ -61,7 +61,7 @@ export class MatButtonToggle extends _MatButtonToggleBase implements OnInit, Aft tabIndex: number | null; value: any; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -119,7 +119,7 @@ export class MatButtonToggleGroup implements ControlValueAccessor, OnInit, After set vertical(value: BooleanInput); writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/button.md b/tools/public_api_guard/material/button.md index bd80b60573af..82ac74f07fc5 100644 --- a/tools/public_api_guard/material/button.md +++ b/tools/public_api_guard/material/button.md @@ -33,7 +33,7 @@ export function MAT_FAB_DEFAULT_OPTIONS_FACTORY(): MatFabDefaultOptions; export class MatAnchor extends MatAnchorBase { constructor(elementRef: ElementRef, platform: Platform, ngZone: NgZone, animationMode?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -42,7 +42,7 @@ export class MatAnchor extends MatAnchorBase { export class MatButton extends MatButtonBase { constructor(elementRef: ElementRef, platform: Platform, ngZone: NgZone, animationMode?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -66,7 +66,7 @@ export class MatFabAnchor extends MatAnchor { // (undocumented) _isFab: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -80,7 +80,7 @@ export class MatFabButton extends MatButtonBase { // (undocumented) _isFab: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -95,7 +95,7 @@ export interface MatFabDefaultOptions { export class MatIconAnchor extends MatAnchorBase { constructor(elementRef: ElementRef, platform: Platform, ngZone: NgZone, animationMode?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -104,7 +104,7 @@ export class MatIconAnchor extends MatAnchorBase { export class MatIconButton extends MatButtonBase { constructor(elementRef: ElementRef, platform: Platform, ngZone: NgZone, animationMode?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -115,7 +115,7 @@ export class MatMiniFabAnchor extends MatAnchor { // (undocumented) _isFab: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -126,7 +126,7 @@ export class MatMiniFabButton extends MatButtonBase { // (undocumented) _isFab: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/card.md b/tools/public_api_guard/material/card.md index bd107fb10c61..816a72fc971f 100644 --- a/tools/public_api_guard/material/card.md +++ b/tools/public_api_guard/material/card.md @@ -18,7 +18,7 @@ export class MatCard { // (undocumented) appearance: MatCardAppearance; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -27,7 +27,7 @@ export class MatCard { export class MatCardActions { align: 'start' | 'end'; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/checkbox.md b/tools/public_api_guard/material/checkbox.md index 2713e34a456a..08ffaad7c75a 100644 --- a/tools/public_api_guard/material/checkbox.md +++ b/tools/public_api_guard/material/checkbox.md @@ -62,7 +62,7 @@ export class MatCheckbox extends _MatCheckboxBase implements _onTouchTargetClick(): void; _preventBubblingFromLabel(event: MouseEvent): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -132,7 +132,7 @@ export abstract class _MatCheckboxBase extends _MatCheckboxMixinBase implemen // (undocumented) writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatCheckboxBase, never, never, { "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "id": "id"; "required": "required"; "labelPosition": "labelPosition"; "name": "name"; "value": "value"; "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; }, { "change": "change"; "indeterminateChange": "indeterminateChange"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatCheckboxBase, never, never, { "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, { "change": "change"; "indeterminateChange": "indeterminateChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatCheckboxBase, never>; } diff --git a/tools/public_api_guard/material/chips.md b/tools/public_api_guard/material/chips.md index 879993c2c28e..9063f5f7ae8c 100644 --- a/tools/public_api_guard/material/chips.md +++ b/tools/public_api_guard/material/chips.md @@ -121,7 +121,7 @@ export class MatChip extends _MatChipMixinBase implements OnInit, AfterViewInit, // (undocumented) protected _value: any; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -216,7 +216,7 @@ export class MatChipGrid extends _MatChipGridMixinBase implements AfterContentIn readonly valueChange: EventEmitter; writeValue(value: any): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -232,7 +232,7 @@ export class MatChipGridChange { // @public export class MatChipInput implements MatChipTextControl, AfterContentInit, OnChanges, OnDestroy { - constructor(_elementRef: ElementRef, _defaultOptions: MatChipsDefaultOptions, formField?: MatFormField); + constructor(_elementRef: ElementRef, defaultOptions: MatChipsDefaultOptions, formField?: MatFormField); get addOnBlur(): boolean; set addOnBlur(value: BooleanInput); // (undocumented) @@ -270,7 +270,7 @@ export class MatChipInput implements MatChipTextControl, AfterContentInit, OnCha // (undocumented) setDescribedByIds(ids: string[]): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -326,7 +326,7 @@ export class MatChipListbox extends MatChipSet implements AfterContentInit, OnDe protected _value: any; writeValue(value: any): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -367,7 +367,7 @@ export class MatChipOption extends MatChip implements OnInit { _setSelectedState(isSelected: boolean, isUserInput: boolean, emitEvent: boolean): void; toggleSelected(isUserInput?: boolean): boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -406,7 +406,7 @@ export class MatChipRow extends MatChip implements AfterViewInit { // (undocumented) _isEditing: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -464,7 +464,7 @@ export class MatChipSet extends _MatChipSetMixinBase implements AfterViewInit, H protected _skipPredicate(action: MatChipAction): boolean; protected _syncChipsState(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/core.md b/tools/public_api_guard/material/core.md index 7c61bb0f327c..9ee1dd6a27ac 100644 --- a/tools/public_api_guard/material/core.md +++ b/tools/public_api_guard/material/core.md @@ -242,7 +242,7 @@ export class MatNativeDateModule { // @public export class MatOptgroup extends _MatOptgroupBase { // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -254,7 +254,7 @@ export class _MatOptgroupBase extends _MatOptgroupMixinBase implements CanDisabl label: string; _labelId: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatOptgroupBase, never, never, { "label": "label"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatOptgroupBase, never, never, { "label": { "alias": "label"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatOptgroupBase, [{ optional: true; }]>; } @@ -303,7 +303,7 @@ export class _MatOptionBase implements FocusableOption, AfterViewChecke value: T; get viewValue(): string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatOptionBase, never, never, { "value": "value"; "id": "id"; "disabled": "disabled"; }, { "onSelectionChange": "onSelectionChange"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatOptionBase, never, never, { "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatOptionBase, never>; } @@ -348,7 +348,7 @@ export class MatPseudoCheckbox { disabled: boolean; state: MatPseudoCheckboxState; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -389,7 +389,7 @@ export class MatRipple implements OnInit, OnDestroy, RippleTarget { set trigger(trigger: HTMLElement); unbounded: boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/datepicker.md b/tools/public_api_guard/material/datepicker.md index 12cb821f0668..9ce80428a884 100644 --- a/tools/public_api_guard/material/datepicker.md +++ b/tools/public_api_guard/material/datepicker.md @@ -190,7 +190,7 @@ export class MatCalendar implements AfterContentInit, AfterViewChecked, OnDes _yearSelectedInMultiYearView(normalizedYear: D): void; yearView: MatYearView; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-calendar", ["matCalendar"], { "headerComponent": "headerComponent"; "startAt": "startAt"; "startView": "startView"; "selected": "selected"; "minDate": "minDate"; "maxDate": "maxDate"; "dateFilter": "dateFilter"; "dateClass": "dateClass"; "comparisonStart": "comparisonStart"; "comparisonEnd": "comparisonEnd"; "startDateAccessibleName": "startDateAccessibleName"; "endDateAccessibleName": "endDateAccessibleName"; }, { "selectedChange": "selectedChange"; "yearSelected": "yearSelected"; "monthSelected": "monthSelected"; "viewChanged": "viewChanged"; "_userSelection": "_userSelection"; "_userDragDrop": "_userDragDrop"; }, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-calendar", ["matCalendar"], { "headerComponent": { "alias": "headerComponent"; "required": false; }; "startAt": { "alias": "startAt"; "required": false; }; "startView": { "alias": "startView"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "dateFilter": { "alias": "dateFilter"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; "comparisonStart": { "alias": "comparisonStart"; "required": false; }; "comparisonEnd": { "alias": "comparisonEnd"; "required": false; }; "startDateAccessibleName": { "alias": "startDateAccessibleName"; "required": false; }; "endDateAccessibleName": { "alias": "endDateAccessibleName"; "required": false; }; }, { "selectedChange": "selectedChange"; "yearSelected": "yearSelected"; "monthSelected": "monthSelected"; "viewChanged": "viewChanged"; "_userSelection": "_userSelection"; "_userDragDrop": "_userDragDrop"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; }, { optional: true; }, null]>; } @@ -254,7 +254,7 @@ export class MatCalendarBody implements OnChanges, OnDestroy, AfterView startValue: number; todayValue: number; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "[mat-calendar-body]", ["matCalendarBody"], { "label": "label"; "rows": "rows"; "todayValue": "todayValue"; "startValue": "startValue"; "endValue": "endValue"; "labelMinRequiredCells": "labelMinRequiredCells"; "numCols": "numCols"; "activeCell": "activeCell"; "isRange": "isRange"; "cellAspectRatio": "cellAspectRatio"; "comparisonStart": "comparisonStart"; "comparisonEnd": "comparisonEnd"; "previewStart": "previewStart"; "previewEnd": "previewEnd"; "startDateAccessibleName": "startDateAccessibleName"; "endDateAccessibleName": "endDateAccessibleName"; }, { "selectedValueChange": "selectedValueChange"; "previewChange": "previewChange"; "activeDateChange": "activeDateChange"; "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; }, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "[mat-calendar-body]", ["matCalendarBody"], { "label": { "alias": "label"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "todayValue": { "alias": "todayValue"; "required": false; }; "startValue": { "alias": "startValue"; "required": false; }; "endValue": { "alias": "endValue"; "required": false; }; "labelMinRequiredCells": { "alias": "labelMinRequiredCells"; "required": false; }; "numCols": { "alias": "numCols"; "required": false; }; "activeCell": { "alias": "activeCell"; "required": false; }; "isRange": { "alias": "isRange"; "required": false; }; "cellAspectRatio": { "alias": "cellAspectRatio"; "required": false; }; "comparisonStart": { "alias": "comparisonStart"; "required": false; }; "comparisonEnd": { "alias": "comparisonEnd"; "required": false; }; "previewStart": { "alias": "previewStart"; "required": false; }; "previewEnd": { "alias": "previewEnd"; "required": false; }; "startDateAccessibleName": { "alias": "startDateAccessibleName"; "required": false; }; "endDateAccessibleName": { "alias": "endDateAccessibleName"; "required": false; }; }, { "selectedValueChange": "selectedValueChange"; "previewChange": "previewChange"; "activeDateChange": "activeDateChange"; "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -407,7 +407,7 @@ export class MatDatepickerContent> extend // (undocumented) _startExitAnimation(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-datepicker-content", ["matDatepickerContent"], { "color": "color"; }, {}, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-datepicker-content", ["matDatepickerContent"], { "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, null]>; } @@ -464,7 +464,7 @@ export class MatDatepickerInput extends MatDatepickerInputBase i protected _shouldHandleChangeEvent(event: DateSelectionModelChange): boolean; protected _validator: ValidatorFn | null; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matDatepicker]", ["matDatepickerInput"], { "matDatepicker": "matDatepicker"; "min": "min"; "max": "max"; "dateFilter": "matDatepickerFilter"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matDatepicker]", ["matDatepickerInput"], { "matDatepicker": { "alias": "matDatepicker"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "dateFilter": { "alias": "matDatepickerFilter"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; }, { optional: true; }, { optional: true; }]>; } @@ -551,7 +551,7 @@ export class MatDatepickerToggle implements AfterContentInit, OnChanges, OnDe _open(event: Event): void; tabIndex: number | null; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-datepicker-toggle", ["matDatepickerToggle"], { "datepicker": "for"; "tabIndex": "tabIndex"; "ariaLabel": "aria-label"; "disabled": "disabled"; "disableRipple": "disableRipple"; }, {}, ["_customIcon"], ["[matDatepickerToggleIcon]"], false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-datepicker-toggle", ["matDatepickerToggle"], { "datepicker": { "alias": "for"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; }, {}, ["_customIcon"], ["[matDatepickerToggleIcon]"], false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, { attribute: "tabindex"; }]>; } @@ -623,7 +623,7 @@ export class MatDateRangeInput implements MatFormFieldControl>, _updateFocus(origin: FocusOrigin): void; get value(): DateRange | null; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-date-range-input", ["matDateRangeInput"], { "rangePicker": "rangePicker"; "required": "required"; "dateFilter": "dateFilter"; "min": "min"; "max": "max"; "disabled": "disabled"; "separator": "separator"; "comparisonStart": "comparisonStart"; "comparisonEnd": "comparisonEnd"; }, {}, ["_startInput", "_endInput"], ["input[matStartDate]", "input[matEndDate]"], false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-date-range-input", ["matDateRangeInput"], { "rangePicker": { "alias": "rangePicker"; "required": false; }; "required": { "alias": "required"; "required": false; }; "dateFilter": { "alias": "dateFilter"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "separator": { "alias": "separator"; "required": false; }; "comparisonStart": { "alias": "comparisonStart"; "required": false; }; "comparisonEnd": { "alias": "comparisonEnd"; "required": false; }; }, {}, ["_startInput", "_endInput"], ["input[matStartDate]", "input[matEndDate]"], false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, { optional: true; self: true; }, { optional: true; }, { optional: true; }]>; } @@ -682,7 +682,7 @@ export class MatEndDate extends _MatDateRangeInputBase implements CanUpdat // (undocumented) protected _validator: ValidatorFn | null; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matEndDate]", never, { "errorStateMatcher": "errorStateMatcher"; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matEndDate]", never, { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; } @@ -746,7 +746,7 @@ export class MatMonthView implements AfterContentInit, OnChanges, OnDestroy { }[]; _weeks: MatCalendarCell[][]; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-month-view", ["matMonthView"], { "activeDate": "activeDate"; "selected": "selected"; "minDate": "minDate"; "maxDate": "maxDate"; "dateFilter": "dateFilter"; "dateClass": "dateClass"; "comparisonStart": "comparisonStart"; "comparisonEnd": "comparisonEnd"; "startDateAccessibleName": "startDateAccessibleName"; "endDateAccessibleName": "endDateAccessibleName"; "activeDrag": "activeDrag"; }, { "selectedChange": "selectedChange"; "_userSelection": "_userSelection"; "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-month-view", ["matMonthView"], { "activeDate": { "alias": "activeDate"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "dateFilter": { "alias": "dateFilter"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; "comparisonStart": { "alias": "comparisonStart"; "required": false; }; "comparisonEnd": { "alias": "comparisonEnd"; "required": false; }; "startDateAccessibleName": { "alias": "startDateAccessibleName"; "required": false; }; "endDateAccessibleName": { "alias": "endDateAccessibleName"; "required": false; }; "activeDrag": { "alias": "activeDrag"; "required": false; }; }, { "selectedChange": "selectedChange"; "_userSelection": "_userSelection"; "dragStarted": "dragStarted"; "dragEnded": "dragEnded"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; } @@ -787,7 +787,7 @@ export class MatMultiYearView implements AfterContentInit, OnDestroy { readonly yearSelected: EventEmitter; _yearSelected(event: MatCalendarUserEvent): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-multi-year-view", ["matMultiYearView"], { "activeDate": "activeDate"; "selected": "selected"; "minDate": "minDate"; "maxDate": "maxDate"; "dateFilter": "dateFilter"; "dateClass": "dateClass"; }, { "selectedChange": "selectedChange"; "yearSelected": "yearSelected"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-multi-year-view", ["matMultiYearView"], { "activeDate": { "alias": "activeDate"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "dateFilter": { "alias": "dateFilter"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; }, { "selectedChange": "selectedChange"; "yearSelected": "yearSelected"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; }, { optional: true; }]>; } @@ -834,7 +834,7 @@ export class MatStartDate extends _MatDateRangeInputBase implements CanUpd // (undocumented) protected _validator: ValidatorFn | null; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matStartDate]", never, { "errorStateMatcher": "errorStateMatcher"; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "input[matStartDate]", never, { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; } @@ -876,7 +876,7 @@ export class MatYearView implements AfterContentInit, OnDestroy { _updateActiveDate(event: MatCalendarUserEvent): void; _yearLabel: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration, "mat-year-view", ["matYearView"], { "activeDate": "activeDate"; "selected": "selected"; "minDate": "minDate"; "maxDate": "maxDate"; "dateFilter": "dateFilter"; "dateClass": "dateClass"; }, { "selectedChange": "selectedChange"; "monthSelected": "monthSelected"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; + static ɵcmp: i0.ɵɵComponentDeclaration, "mat-year-view", ["matYearView"], { "activeDate": { "alias": "activeDate"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "dateFilter": { "alias": "dateFilter"; "required": false; }; "dateClass": { "alias": "dateClass"; "required": false; }; }, { "selectedChange": "selectedChange"; "monthSelected": "monthSelected"; "activeDateChange": "activeDateChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, { optional: true; }, { optional: true; }, { optional: true; }]>; } diff --git a/tools/public_api_guard/material/dialog.md b/tools/public_api_guard/material/dialog.md index 5264272d8611..378762901cb1 100644 --- a/tools/public_api_guard/material/dialog.md +++ b/tools/public_api_guard/material/dialog.md @@ -102,7 +102,7 @@ export class MatDialog extends _MatDialogBase { export class MatDialogActions { align?: 'start' | 'center' | 'end'; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -155,7 +155,7 @@ export class MatDialogClose implements OnInit, OnChanges { _onButtonClick(event: MouseEvent): void; type: 'submit' | 'button' | 'reset'; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -279,7 +279,7 @@ export class MatDialogTitle implements OnInit { // (undocumented) ngOnInit(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/divider.md b/tools/public_api_guard/material/divider.md index 12bffbcd99bc..6176cca3ab7c 100644 --- a/tools/public_api_guard/material/divider.md +++ b/tools/public_api_guard/material/divider.md @@ -15,7 +15,7 @@ export class MatDivider { get vertical(): boolean; set vertical(value: BooleanInput); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/expansion.md b/tools/public_api_guard/material/expansion.md index 0782491f8e1e..b5b8d04ccdc1 100644 --- a/tools/public_api_guard/material/expansion.md +++ b/tools/public_api_guard/material/expansion.md @@ -63,7 +63,7 @@ export class MatAccordion extends CdkAccordion implements MatAccordionBase, Afte ngOnDestroy(): void; togglePosition: MatAccordionTogglePosition; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -130,7 +130,7 @@ export class MatExpansionPanel extends CdkAccordionItem implements AfterContentI get togglePosition(): MatAccordionTogglePosition; set togglePosition(value: MatAccordionTogglePosition); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -195,7 +195,7 @@ export class MatExpansionPanelHeader extends _MatExpansionPanelHeaderMixinBase i _showToggle(): boolean; _toggle(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/form-field.md b/tools/public_api_guard/material/form-field.md index 161fba342f23..88d5644cf2cf 100644 --- a/tools/public_api_guard/material/form-field.md +++ b/tools/public_api_guard/material/form-field.md @@ -59,7 +59,7 @@ export class MatError { // (undocumented) id: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -147,7 +147,7 @@ export class MatFormField implements AfterContentInit, AfterContentChecked, Afte // (undocumented) _textPrefixContainer: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -208,7 +208,7 @@ export class MatHint { align: 'start' | 'end'; id: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -228,7 +228,7 @@ export class MatPrefix { // (undocumented) set _isTextSelector(value: ''); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -240,7 +240,7 @@ export class MatSuffix { // (undocumented) set _isTextSelector(value: ''); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/grid-list.md b/tools/public_api_guard/material/grid-list.md index 0093bc16123e..7f11da36ec19 100644 --- a/tools/public_api_guard/material/grid-list.md +++ b/tools/public_api_guard/material/grid-list.md @@ -38,7 +38,7 @@ export class MatGridList implements MatGridListBase, OnInit, AfterContentChecked _setListStyle(style: [string, string | null] | null): void; _tiles: QueryList; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -68,7 +68,7 @@ export class MatGridTile { _rowspan: number; _setStyle(property: string, value: any): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/icon.md b/tools/public_api_guard/material/icon.md index f1466ae7393a..63ce9e4c45ab 100644 --- a/tools/public_api_guard/material/icon.md +++ b/tools/public_api_guard/material/icon.md @@ -88,7 +88,7 @@ export class MatIcon extends _MatIconBase implements OnInit, AfterViewChecked, C // (undocumented) _usingFontIcon(): boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/input.md b/tools/public_api_guard/material/input.md index fc2ca1626db1..bf47f3300644 100644 --- a/tools/public_api_guard/material/input.md +++ b/tools/public_api_guard/material/input.md @@ -107,7 +107,7 @@ export class MatInput extends _MatInputBase implements MatFormFieldControl, get value(): string; set value(value: any); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-autocomplete.md b/tools/public_api_guard/material/legacy-autocomplete.md index ce280e77f85a..28e9bbf9d226 100644 --- a/tools/public_api_guard/material/legacy-autocomplete.md +++ b/tools/public_api_guard/material/legacy-autocomplete.md @@ -50,7 +50,7 @@ export class MatLegacyAutocomplete extends _MatAutocompleteBase { // (undocumented) protected _visibleClass: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-button.md b/tools/public_api_guard/material/legacy-button.md index 0e3e78506332..b4d4cc2c6ca4 100644 --- a/tools/public_api_guard/material/legacy-button.md +++ b/tools/public_api_guard/material/legacy-button.md @@ -32,7 +32,7 @@ export class MatLegacyAnchor extends MatLegacyButton implements AfterViewInit, O ngOnDestroy(): void; tabIndex: number; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -56,7 +56,7 @@ export class MatLegacyButton extends _MatButtonBase implements AfterViewInit, On ngOnDestroy(): void; ripple: MatRipple; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-card.md b/tools/public_api_guard/material/legacy-card.md index af93fc458068..0bc5566cdc8c 100644 --- a/tools/public_api_guard/material/legacy-card.md +++ b/tools/public_api_guard/material/legacy-card.md @@ -22,7 +22,7 @@ export class MatLegacyCard { export class MatLegacyCardActions { align: 'start' | 'end'; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-checkbox.md b/tools/public_api_guard/material/legacy-checkbox.md index 69d885b95b41..1327fe728170 100644 --- a/tools/public_api_guard/material/legacy-checkbox.md +++ b/tools/public_api_guard/material/legacy-checkbox.md @@ -59,7 +59,7 @@ export class MatLegacyCheckbox extends _MatCheckboxBase ngOnDestroy(): void; _onInputClick(event: Event): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-chips.md b/tools/public_api_guard/material/legacy-chips.md index 2eeca50684b7..7245a1a89c60 100644 --- a/tools/public_api_guard/material/legacy-chips.md +++ b/tools/public_api_guard/material/legacy-chips.md @@ -109,7 +109,7 @@ export class MatLegacyChip extends _MatChipMixinBase implements FocusableOption, // (undocumented) protected _value: any; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -129,7 +129,7 @@ export interface MatLegacyChipEvent { // @public @deprecated export class MatLegacyChipInput implements MatLegacyChipTextControl, OnChanges, OnDestroy, AfterContentInit { - constructor(_elementRef: ElementRef, _defaultOptions: MatLegacyChipsDefaultOptions); + constructor(_elementRef: ElementRef, defaultOptions: MatLegacyChipsDefaultOptions); get addOnBlur(): boolean; set addOnBlur(value: BooleanInput); // (undocumented) @@ -165,7 +165,7 @@ export class MatLegacyChipInput implements MatLegacyChipTextControl, OnChanges, placeholder: string; separatorKeyCodes: readonly number[] | ReadonlySet; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -266,7 +266,7 @@ export class MatLegacyChipList extends _MatChipListBase implements MatLegacyForm // (undocumented) writeValue(value: any): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-core.md b/tools/public_api_guard/material/legacy-core.md index 1771741deb44..39fa98a39ce6 100644 --- a/tools/public_api_guard/material/legacy-core.md +++ b/tools/public_api_guard/material/legacy-core.md @@ -163,7 +163,7 @@ export { MatLegacyNativeDateModule } // @public @deprecated export class MatLegacyOptgroup extends _MatLegacyOptgroupBase { // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-dialog.md b/tools/public_api_guard/material/legacy-dialog.md index 252e5d4f14c2..e0b370caaa64 100644 --- a/tools/public_api_guard/material/legacy-dialog.md +++ b/tools/public_api_guard/material/legacy-dialog.md @@ -85,7 +85,7 @@ export class MatLegacyDialog extends _MatLegacyDialogBase; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -112,7 +112,7 @@ export class MatLegacyDialogClose implements OnInit, OnChanges { _onButtonClick(event: MouseEvent): void; type: 'submit' | 'button' | 'reset'; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -177,7 +177,7 @@ export class MatLegacyDialogTitle implements OnInit { // (undocumented) ngOnInit(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-form-field.md b/tools/public_api_guard/material/legacy-form-field.md index bc680a30b181..b5b4e35f0817 100644 --- a/tools/public_api_guard/material/legacy-form-field.md +++ b/tools/public_api_guard/material/legacy-form-field.md @@ -64,7 +64,7 @@ export class MatLegacyError { // (undocumented) id: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -141,7 +141,7 @@ export class MatLegacyFormField extends _MatFormFieldBase implements AfterConten updateOutlineGap(): void; protected _validateControlChild(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -176,7 +176,7 @@ export class MatLegacyHint { align: 'start' | 'end'; id: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-list.md b/tools/public_api_guard/material/legacy-list.md index 889631c8c29c..e236cce26d90 100644 --- a/tools/public_api_guard/material/legacy-list.md +++ b/tools/public_api_guard/material/legacy-list.md @@ -51,7 +51,7 @@ export class MatLegacyList extends _MatListBase implements CanDisable, CanDisabl ngOnDestroy(): void; readonly _stateChanges: Subject; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -90,7 +90,7 @@ export class MatLegacyListItem extends _MatListItemMixinBase implements AfterCon // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -147,7 +147,7 @@ export class MatLegacyListOption extends _MatListOptionBase implements AfterCont get value(): any; set value(newValue: any); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -171,7 +171,7 @@ export class MatLegacyNavList extends _MatListBase implements CanDisable, CanDis ngOnDestroy(): void; readonly _stateChanges: Subject; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -211,7 +211,7 @@ export class MatLegacySelectionList extends _MatSelectionListBase implements Can _value: string[] | null; writeValue(values: string[]): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-menu.md b/tools/public_api_guard/material/legacy-menu.md index 4046071338fc..b6f05a90f259 100644 --- a/tools/public_api_guard/material/legacy-menu.md +++ b/tools/public_api_guard/material/legacy-menu.md @@ -70,7 +70,7 @@ export { MatLegacyMenuDefaultOptions } // @public @deprecated export class MatLegacyMenuItem extends MatMenuItem { // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-paginator.md b/tools/public_api_guard/material/legacy-paginator.md index fcc941653201..fdbfa9a508c1 100644 --- a/tools/public_api_guard/material/legacy-paginator.md +++ b/tools/public_api_guard/material/legacy-paginator.md @@ -34,7 +34,7 @@ export class MatLegacyPaginator extends _MatLegacyPaginatorBase; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-progress-bar.md b/tools/public_api_guard/material/legacy-progress-bar.md index 1382f4aecb0a..ff86f562a92e 100644 --- a/tools/public_api_guard/material/legacy-progress-bar.md +++ b/tools/public_api_guard/material/legacy-progress-bar.md @@ -64,7 +64,7 @@ export class MatLegacyProgressBar extends _MatProgressBarBase implements CanColo get value(): number; set value(v: NumberInput); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-progress-spinner.md b/tools/public_api_guard/material/legacy-progress-spinner.md index c19e680a34b2..bdc599b02136 100644 --- a/tools/public_api_guard/material/legacy-progress-spinner.md +++ b/tools/public_api_guard/material/legacy-progress-spinner.md @@ -53,7 +53,7 @@ export class MatLegacyProgressSpinner extends _MatProgressSpinnerBase implements get value(): number; set value(newValue: NumberInput); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-radio.md b/tools/public_api_guard/material/legacy-radio.md index 4c6ada10c7c8..86cadbfa7d31 100644 --- a/tools/public_api_guard/material/legacy-radio.md +++ b/tools/public_api_guard/material/legacy-radio.md @@ -32,7 +32,7 @@ export const MAT_LEGACY_RADIO_GROUP_CONTROL_VALUE_ACCESSOR: any; export class MatLegacyRadioButton extends _MatRadioButtonBase { constructor(radioGroup: MatLegacyRadioGroup, elementRef: ElementRef, changeDetector: ChangeDetectorRef, focusMonitor: FocusMonitor, radioDispatcher: UniqueSelectionDispatcher, animationMode?: string, providerOverride?: MatLegacyRadioDefaultOptions, tabIndex?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-select.md b/tools/public_api_guard/material/legacy-select.md index 97b20ce5a57e..d96f4264c1ca 100644 --- a/tools/public_api_guard/material/legacy-select.md +++ b/tools/public_api_guard/material/legacy-select.md @@ -63,7 +63,7 @@ export class MatLegacySelect extends _MatSelectBase imple _transformOrigin: string; _triggerFontSize: number; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-slide-toggle.md b/tools/public_api_guard/material/legacy-slide-toggle.md index 83d9c42a93ce..7d4d47dace2a 100644 --- a/tools/public_api_guard/material/legacy-slide-toggle.md +++ b/tools/public_api_guard/material/legacy-slide-toggle.md @@ -44,7 +44,7 @@ export class MatLegacySlideToggle extends _MatLegacySlideToggleBase; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-slider.md b/tools/public_api_guard/material/legacy-slider.md index e28e429b6e2a..602cae5e5685 100644 --- a/tools/public_api_guard/material/legacy-slider.md +++ b/tools/public_api_guard/material/legacy-slider.md @@ -100,7 +100,7 @@ export class MatLegacySlider extends _MatSliderBase implements ControlValueAcces set vertical(value: BooleanInput); writeValue(value: any): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-table.md b/tools/public_api_guard/material/legacy-table.md index 66c6537e2a0a..b45e704356da 100644 --- a/tools/public_api_guard/material/legacy-table.md +++ b/tools/public_api_guard/material/legacy-table.md @@ -50,7 +50,7 @@ export class MatLegacyColumnDef extends CdkColumnDef { set name(name: string); protected _updateColumnCssClassName(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -82,7 +82,7 @@ export class MatLegacyFooterRow extends CdkFooterRow { // @public @deprecated export class MatLegacyFooterRowDef extends CdkFooterRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -114,7 +114,7 @@ export class MatLegacyHeaderRow extends CdkHeaderRow { // @public @deprecated export class MatLegacyHeaderRowDef extends CdkHeaderRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -148,7 +148,7 @@ export class MatLegacyRow extends CdkRow { // @public @deprecated export class MatLegacyRowDef extends CdkRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[matRowDef]", never, { "columns": "matRowDefColumns"; "when": "matRowDefWhen"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[matRowDef]", never, { "columns": { "alias": "matRowDefColumns"; "required": false; }; "when": { "alias": "matRowDefWhen"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/material/legacy-tabs.md b/tools/public_api_guard/material/legacy-tabs.md index b57e4fa044cb..c7cc29e5317a 100644 --- a/tools/public_api_guard/material/legacy-tabs.md +++ b/tools/public_api_guard/material/legacy-tabs.md @@ -89,7 +89,7 @@ export class MatLegacyTab extends _MatLegacyTabBase { get templateLabel(): MatTabLabel; set templateLabel(value: MatTabLabel); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -142,7 +142,7 @@ export class MatLegacyTabGroup extends _MatLegacyTabGroupBase { // (undocumented) _tabHeader: MatTabGroupBaseHeader; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -167,7 +167,7 @@ export class MatLegacyTabHeader extends _MatLegacyTabHeaderBase { // (undocumented) _tabListInner: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -187,7 +187,7 @@ export class MatLegacyTabLabel extends MatTabLabel { // @public @deprecated (undocumented) export class MatLegacyTabLabelWrapper extends _MatTabLabelWrapperBase { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -198,7 +198,7 @@ export class MatLegacyTabLink extends _MatLegacyTabLinkBase implements OnDestroy // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -223,7 +223,7 @@ export class MatLegacyTabNav extends _MatLegacyTabNavBase { // (undocumented) _tabListInner: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -235,7 +235,7 @@ export class MatLegacyTabNavPanel { _activeTabId?: string; id: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/legacy-tooltip.md b/tools/public_api_guard/material/legacy-tooltip.md index 35dd69010ebd..a85dcd305d88 100644 --- a/tools/public_api_guard/material/legacy-tooltip.md +++ b/tools/public_api_guard/material/legacy-tooltip.md @@ -44,7 +44,7 @@ export { LEGACY_SCROLL_THROTTLE_MS } // @public @deprecated export class LegacyTooltipComponent extends _TooltipComponentBase { - constructor(changeDetectorRef: ChangeDetectorRef, _breakpointObserver: BreakpointObserver, animationMode?: string); + constructor(changeDetectorRef: ChangeDetectorRef, breakpointObserver: BreakpointObserver, animationMode?: string); // (undocumented) _hideAnimation: string; _isHandset: Observable; diff --git a/tools/public_api_guard/material/list.md b/tools/public_api_guard/material/list.md index 5ccf15c94b80..15002f2c0c14 100644 --- a/tools/public_api_guard/material/list.md +++ b/tools/public_api_guard/material/list.md @@ -83,7 +83,7 @@ export class MatListItem extends MatListItemBase { // (undocumented) _unscopedContent: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -196,7 +196,7 @@ export class MatListOption extends MatListItemBase implements ListOption, OnInit get value(): any; set value(newValue: any); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -261,7 +261,7 @@ export class MatSelectionList extends MatListBase implements SelectionList, Cont _value: string[] | null; writeValue(values: string[]): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/menu.md b/tools/public_api_guard/material/menu.md index fb66d7fe6fa8..9c0b5bdbf9b3 100644 --- a/tools/public_api_guard/material/menu.md +++ b/tools/public_api_guard/material/menu.md @@ -149,7 +149,7 @@ export class _MatMenuBase implements AfterContentInit, MatMenuPanel get yPosition(): MenuPositionY; set yPosition(value: MenuPositionY); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatMenuBase, never, never, { "backdropClass": "backdropClass"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "xPosition": "xPosition"; "yPosition": "yPosition"; "overlapTrigger": "overlapTrigger"; "hasBackdrop": "hasBackdrop"; "panelClass": "class"; "classList": "classList"; }, { "closed": "closed"; "close": "close"; }, ["lazyContent", "_allItems", "items"], never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatMenuBase, never, never, { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "xPosition": { "alias": "xPosition"; "required": false; }; "yPosition": { "alias": "yPosition"; "required": false; }; "overlapTrigger": { "alias": "overlapTrigger"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; "close": "close"; }, ["lazyContent", "_allItems", "items"], never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatMenuBase, never>; } @@ -217,7 +217,7 @@ export class MatMenuItem extends _MatMenuItemBase implements FocusableOption, Ca _setTriggersSubmenu(triggersSubmenu: boolean): void; _triggersSubmenu: boolean; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -318,7 +318,7 @@ export abstract class _MatMenuTriggerBase implements AfterContentInit, OnDestroy triggersSubmenu(): boolean; updatePosition(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatMenuTriggerBase, never, never, { "_deprecatedMatMenuTriggerFor": "mat-menu-trigger-for"; "menu": "matMenuTriggerFor"; "menuData": "matMenuTriggerData"; "restoreFocus": "matMenuTriggerRestoreFocus"; }, { "menuOpened": "menuOpened"; "onMenuOpen": "onMenuOpen"; "menuClosed": "menuClosed"; "onMenuClose": "onMenuClose"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatMenuTriggerBase, never, never, { "_deprecatedMatMenuTriggerFor": { "alias": "mat-menu-trigger-for"; "required": false; }; "menu": { "alias": "matMenuTriggerFor"; "required": false; }; "menuData": { "alias": "matMenuTriggerData"; "required": false; }; "restoreFocus": { "alias": "matMenuTriggerRestoreFocus"; "required": false; }; }, { "menuOpened": "menuOpened"; "onMenuOpen": "onMenuOpen"; "menuClosed": "menuClosed"; "onMenuClose": "onMenuClose"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatMenuTriggerBase, [null, null, null, null, { optional: true; }, { optional: true; self: true; }, { optional: true; }, null, null]>; } diff --git a/tools/public_api_guard/material/paginator.md b/tools/public_api_guard/material/paginator.md index 1a637b91da1b..2959e73d2760 100644 --- a/tools/public_api_guard/material/paginator.md +++ b/tools/public_api_guard/material/paginator.md @@ -44,7 +44,7 @@ export class MatPaginator extends _MatPaginatorBase _formFieldAppearance?: MatFormFieldAppearance; readonly _pageSizeLabelId: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -90,7 +90,7 @@ export abstract class _MatPaginatorBase, never, never, { "color": "color"; "pageIndex": "pageIndex"; "length": "length"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hidePageSize": "hidePageSize"; "showFirstLastButtons": "showFirstLastButtons"; "selectConfig": "selectConfig"; }, { "page": "page"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatPaginatorBase, never, never, { "color": { "alias": "color"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "length": { "alias": "length"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "selectConfig": { "alias": "selectConfig"; "required": false; }; }, { "page": "page"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatPaginatorBase, never>; } diff --git a/tools/public_api_guard/material/progress-bar.md b/tools/public_api_guard/material/progress-bar.md index a9901d88593b..1487851aff50 100644 --- a/tools/public_api_guard/material/progress-bar.md +++ b/tools/public_api_guard/material/progress-bar.md @@ -49,7 +49,7 @@ export class MatProgressBar extends _MatProgressBarBase implements AfterViewInit get value(): number; set value(v: NumberInput); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/progress-spinner.md b/tools/public_api_guard/material/progress-spinner.md index 26431d61392c..cb0434e17f32 100644 --- a/tools/public_api_guard/material/progress-spinner.md +++ b/tools/public_api_guard/material/progress-spinner.md @@ -39,7 +39,7 @@ export class MatProgressSpinner extends _MatProgressSpinnerBase implements CanCo set value(v: NumberInput); _viewBox(): string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/radio.md b/tools/public_api_guard/material/radio.md index b024338aca78..fc19d0686502 100644 --- a/tools/public_api_guard/material/radio.md +++ b/tools/public_api_guard/material/radio.md @@ -44,7 +44,7 @@ export const MAT_RADIO_GROUP_CONTROL_VALUE_ACCESSOR: any; export class MatRadioButton extends _MatRadioButtonBase { constructor(radioGroup: MatRadioGroup, elementRef: ElementRef, _changeDetector: ChangeDetectorRef, _focusMonitor: FocusMonitor, _radioDispatcher: UniqueSelectionDispatcher, animationMode?: string, _providerOverride?: MatRadioDefaultOptions, tabIndex?: string); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -94,7 +94,7 @@ export abstract class _MatRadioButtonBase extends _MatRadioButtonMixinBase imple get value(): any; set value(value: any); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatRadioButtonBase, never, never, { "id": "id"; "name": "name"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "checked": "checked"; "value": "value"; "labelPosition": "labelPosition"; "disabled": "disabled"; "required": "required"; "color": "color"; }, { "change": "change"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatRadioButtonBase, never, never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "value": { "alias": "value"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "change": "change"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatRadioButtonBase, never>; } @@ -155,7 +155,7 @@ export abstract class _MatRadioGroupBase implemen set value(newValue: any); writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatRadioGroupBase, never, never, { "color": "color"; "name": "name"; "labelPosition": "labelPosition"; "value": "value"; "selected": "selected"; "disabled": "disabled"; "required": "required"; }, { "change": "change"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatRadioGroupBase, never, never, { "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "change": "change"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatRadioGroupBase, never>; } diff --git a/tools/public_api_guard/material/select.md b/tools/public_api_guard/material/select.md index 55ff53feceac..1b32acd4b892 100644 --- a/tools/public_api_guard/material/select.md +++ b/tools/public_api_guard/material/select.md @@ -108,7 +108,7 @@ export class MatSelect extends _MatSelectBase implements OnInit protected _skipPredicate: (option: MatOption) => boolean; _syncParentProperties(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -223,7 +223,7 @@ export abstract class _MatSelectBase extends _MatSelectMixinBase implements A protected _viewportRuler: ViewportRuler; writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatSelectBase, never, never, { "userAriaDescribedBy": "aria-describedby"; "panelClass": "panelClass"; "placeholder": "placeholder"; "required": "required"; "multiple": "multiple"; "disableOptionCentering": "disableOptionCentering"; "compareWith": "compareWith"; "value": "value"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "errorStateMatcher": "errorStateMatcher"; "typeaheadDebounceInterval": "typeaheadDebounceInterval"; "sortComparator": "sortComparator"; "id": "id"; }, { "openedChange": "openedChange"; "_openedStream": "opened"; "_closedStream": "closed"; "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatSelectBase, never, never, { "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disableOptionCentering": { "alias": "disableOptionCentering"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "value": { "alias": "value"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "typeaheadDebounceInterval": { "alias": "typeaheadDebounceInterval"; "required": false; }; "sortComparator": { "alias": "sortComparator"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "openedChange": "openedChange"; "_openedStream": "opened"; "_closedStream": "closed"; "selectionChange": "selectionChange"; "valueChange": "valueChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatSelectBase, [null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; self: true; }, { attribute: "tabindex"; }, null, null, { optional: true; }]>; } diff --git a/tools/public_api_guard/material/sidenav.md b/tools/public_api_guard/material/sidenav.md index d920f76d85c0..24df461e7eef 100644 --- a/tools/public_api_guard/material/sidenav.md +++ b/tools/public_api_guard/material/sidenav.md @@ -80,7 +80,7 @@ export class MatDrawer implements AfterViewInit, AfterContentChecked, OnDestroy set position(value: 'start' | 'end'); toggle(isOpen?: boolean, openedVia?: FocusOrigin): Promise; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -134,7 +134,7 @@ export class MatDrawerContainer implements AfterContentInit, DoCheck, OnDestroy // (undocumented) _userContent: MatDrawerContent; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -167,7 +167,7 @@ export class MatSidenav extends MatDrawer { get fixedTopGap(): number; set fixedTopGap(value: NumberInput); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/slide-toggle.md b/tools/public_api_guard/material/slide-toggle.md index 476d2b10cefd..fc82a863730f 100644 --- a/tools/public_api_guard/material/slide-toggle.md +++ b/tools/public_api_guard/material/slide-toggle.md @@ -54,7 +54,7 @@ export class MatSlideToggle extends _MatSlideToggleBase { _labelId: string; _switchElement: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -102,7 +102,7 @@ export abstract class _MatSlideToggleBase extends _MatSlideToggleMixinBase im protected _uniqueId: string; writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatSlideToggleBase, never, never, { "name": "name"; "id": "id"; "labelPosition": "labelPosition"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "ariaDescribedby": "aria-describedby"; "required": "required"; "checked": "checked"; }, { "change": "change"; "toggleChange": "toggleChange"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatSlideToggleBase, never, never, { "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "required": { "alias": "required"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; }, { "change": "change"; "toggleChange": "toggleChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatSlideToggleBase, never>; } diff --git a/tools/public_api_guard/material/slider.md b/tools/public_api_guard/material/slider.md index bb72ab0a2a75..8037af2b8a8e 100644 --- a/tools/public_api_guard/material/slider.md +++ b/tools/public_api_guard/material/slider.md @@ -113,7 +113,7 @@ export class MatSlider extends _MatSliderMixinBase implements AfterViewInit, Can _updateTrackUI(source: _MatSliderThumb): void; _updateValueIndicatorUI(source: _MatSliderThumb): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -278,7 +278,7 @@ export class MatSliderThumb implements _MatSliderThumb, OnDestroy, ControlValueA _valuetext: string; writeValue(value: any): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -310,7 +310,7 @@ export class MatSliderVisualThumb implements _MatSliderVisualThumb, AfterViewIni _valueIndicatorContainer: ElementRef; valueIndicatorText: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/sort.md b/tools/public_api_guard/material/sort.md index 5a869f070243..13e0cf8b9d6c 100644 --- a/tools/public_api_guard/material/sort.md +++ b/tools/public_api_guard/material/sort.md @@ -73,7 +73,7 @@ export class MatSort extends _MatSortBase implements CanDisable, HasInitialized, start: SortDirection; readonly _stateChanges: Subject; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -145,7 +145,7 @@ export class MatSortHeader extends _MatSortHeaderBase implements CanDisable, Mat _updateArrowDirection(): void; _viewState: ArrowViewStateTransition; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/stepper.md b/tools/public_api_guard/material/stepper.md index b8c2763bdd0f..2d006f0b0f8e 100644 --- a/tools/public_api_guard/material/stepper.md +++ b/tools/public_api_guard/material/stepper.md @@ -67,7 +67,7 @@ export class MatStep extends CdkStep implements ErrorStateMatcher, AfterContentI _portal: TemplatePortal; stepLabel: MatStepLabel; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -111,7 +111,7 @@ export class MatStepHeader extends _MatStepHeaderBase implements AfterViewInit, _stringLabel(): string | null; _templateLabel(): MatStepLabel | null; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -147,7 +147,7 @@ export class MatStepper extends CdkStepper implements AfterContentInit { readonly steps: QueryList; _steps: QueryList; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -165,7 +165,7 @@ export class MatStepperIcon { // (undocumented) templateRef: TemplateRef; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -202,7 +202,7 @@ export class MatStepperModule { // @public export class MatStepperNext extends CdkStepperNext { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -210,7 +210,7 @@ export class MatStepperNext extends CdkStepperNext { // @public export class MatStepperPrevious extends CdkStepperPrevious { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/table.md b/tools/public_api_guard/material/table.md index 5f5c8133131a..6947947fcfce 100644 --- a/tools/public_api_guard/material/table.md +++ b/tools/public_api_guard/material/table.md @@ -53,7 +53,7 @@ export class MatColumnDef extends CdkColumnDef { set name(name: string); protected _updateColumnCssClassName(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -85,7 +85,7 @@ export class MatFooterRow extends CdkFooterRow { // @public export class MatFooterRowDef extends CdkFooterRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -117,7 +117,7 @@ export class MatHeaderRow extends CdkHeaderRow { // @public export class MatHeaderRowDef extends CdkHeaderRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -151,7 +151,7 @@ export class MatRow extends CdkRow { // @public export class MatRowDef extends CdkRowDef { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[matRowDef]", never, { "columns": "matRowDefColumns"; "when": "matRowDefWhen"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[matRowDef]", never, { "columns": { "alias": "matRowDefColumns"; "required": false; }; "when": { "alias": "matRowDefWhen"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/material/tabs.md b/tools/public_api_guard/material/tabs.md index ada842e322fe..527854e2cb43 100644 --- a/tools/public_api_guard/material/tabs.md +++ b/tools/public_api_guard/material/tabs.md @@ -159,7 +159,7 @@ export abstract class MatPaginatedTabHeader implements AfterContentChecked, Afte updatePagination(): void; _updateTabScrollPosition(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -170,7 +170,7 @@ export class MatTab extends _MatTabBase { get templateLabel(): MatTabLabel; set templateLabel(value: MatTabLabel); // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -201,7 +201,7 @@ export class _MatTabBase extends _MatTabMixinBase implements CanDisable, OnInit, protected _templateLabel: MatTabLabel; textLabel: string; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabBase, never, never, { "textLabel": "label"; "ariaLabel": "aria-label"; "ariaLabelledby": "aria-labelledby"; "labelClass": "labelClass"; "bodyClass": "bodyClass"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabBase, never, never, { "textLabel": { "alias": "label"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "bodyClass": { "alias": "bodyClass"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabBase, [null, { optional: true; }]>; } @@ -240,7 +240,7 @@ export abstract class _MatTabBodyBase implements OnInit, OnDestroy { preserveContent: boolean; readonly _translateTabComplete: Subject; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabBodyBase, never, never, { "_content": "content"; "origin": "origin"; "animationDuration": "animationDuration"; "preserveContent": "preserveContent"; "position": "position"; }, { "_onCentering": "_onCentering"; "_beforeCentering": "_beforeCentering"; "_afterLeavingCenter": "_afterLeavingCenter"; "_onCentered": "_onCentered"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabBodyBase, never, never, { "_content": { "alias": "content"; "required": false; }; "origin": { "alias": "origin"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "preserveContent": { "alias": "preserveContent"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "_onCentering": "_onCentering"; "_beforeCentering": "_beforeCentering"; "_afterLeavingCenter": "_afterLeavingCenter"; "_onCentered": "_onCentered"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabBodyBase, [null, { optional: true; }, null]>; } @@ -293,7 +293,7 @@ export class MatTabGroup extends _MatTabGroupBase { // (undocumented) _tabHeader: MatTabHeader; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -348,7 +348,7 @@ export abstract class _MatTabGroupBase extends _MatTabGroupMixinBase implements _tabs: QueryList; updatePagination(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabGroupBase, never, never, { "dynamicHeight": "dynamicHeight"; "selectedIndex": "selectedIndex"; "headerPosition": "headerPosition"; "animationDuration": "animationDuration"; "contentTabIndex": "contentTabIndex"; "disablePagination": "disablePagination"; "preserveContent": "preserveContent"; "backgroundColor": "backgroundColor"; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabGroupBase, never, never, { "dynamicHeight": { "alias": "dynamicHeight"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "headerPosition": { "alias": "headerPosition"; "required": false; }; "animationDuration": { "alias": "animationDuration"; "required": false; }; "contentTabIndex": { "alias": "contentTabIndex"; "required": false; }; "disablePagination": { "alias": "disablePagination"; "required": false; }; "preserveContent": { "alias": "preserveContent"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; "focusChange": "focusChange"; "animationDone": "animationDone"; "selectedTabChange": "selectedTabChange"; }, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabGroupBase, [null, null, { optional: true; }, { optional: true; }]>; } @@ -383,7 +383,7 @@ export class MatTabHeader extends _MatTabHeaderBase implements AfterContentInit // (undocumented) _tabListInner: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -396,7 +396,7 @@ export abstract class _MatTabHeaderBase extends MatPaginatedTabHeader implements // (undocumented) protected _itemSelected(event: KeyboardEvent): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabHeaderBase, never, never, { "disableRipple": "disableRipple"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabHeaderBase, never, never, { "disableRipple": { "alias": "disableRipple"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabHeaderBase, [null, null, null, { optional: true; }, null, null, { optional: true; }]>; } @@ -418,7 +418,7 @@ export class MatTabLabel extends CdkPortal { // @public export class MatTabLabelWrapper extends _MatTabLabelWrapperBaseWithInkBarItem implements MatInkBarItem { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration; + static ɵdir: i0.ɵɵDirectiveDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -445,7 +445,7 @@ export class MatTabLink extends _MatTabLinkBaseWithInkBarItem implements MatInkB // (undocumented) ngOnDestroy(): void; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -481,7 +481,7 @@ export class _MatTabLinkBase extends _MatTabLinkMixinBase implements AfterViewIn rippleConfig: RippleConfig & RippleGlobalOptions; get rippleDisabled(): boolean; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabLinkBase, never, never, { "active": "active"; "id": "id"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabLinkBase, never, never, { "active": { "alias": "active"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabLinkBase, [null, null, { optional: true; }, { attribute: "tabindex"; }, null, { optional: true; }]>; } @@ -514,7 +514,7 @@ export class MatTabNav extends _MatTabNavBase implements AfterContentInit, After // (undocumented) _tabListInner: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } @@ -540,7 +540,7 @@ export abstract class _MatTabNavBase extends MatPaginatedTabHeader implements Af tabPanel?: MatTabNavPanel; updateActiveLink(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabNavBase, never, never, { "backgroundColor": "backgroundColor"; "disableRipple": "disableRipple"; "color": "color"; "tabPanel": "tabPanel"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTabNavBase, never, never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "disableRipple": { "alias": "disableRipple"; "required": false; }; "color": { "alias": "color"; "required": false; }; "tabPanel": { "alias": "tabPanel"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTabNavBase, [null, { optional: true; }, null, null, null, null, { optional: true; }]>; } @@ -550,7 +550,7 @@ export class MatTabNavPanel { _activeTabId?: string; id: string; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/toolbar.md b/tools/public_api_guard/material/toolbar.md index a0ff9a6113b4..bd6f2a2f125e 100644 --- a/tools/public_api_guard/material/toolbar.md +++ b/tools/public_api_guard/material/toolbar.md @@ -21,7 +21,7 @@ export class MatToolbar extends _MatToolbarBase implements CanColor, AfterViewIn ngAfterViewInit(): void; _toolbarRows: QueryList; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/tools/public_api_guard/material/tooltip.md b/tools/public_api_guard/material/tooltip.md index b526dc0d8d8c..92ce185ee27a 100644 --- a/tools/public_api_guard/material/tooltip.md +++ b/tools/public_api_guard/material/tooltip.md @@ -134,7 +134,7 @@ export abstract class _MatTooltipBase implement // (undocumented) protected _viewportMargin: number; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTooltipBase, never, never, { "position": "matTooltipPosition"; "positionAtOrigin": "matTooltipPositionAtOrigin"; "disabled": "matTooltipDisabled"; "showDelay": "matTooltipShowDelay"; "hideDelay": "matTooltipHideDelay"; "touchGestures": "matTooltipTouchGestures"; "message": "matTooltip"; "tooltipClass": "matTooltipClass"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration<_MatTooltipBase, never, never, { "position": { "alias": "matTooltipPosition"; "required": false; }; "positionAtOrigin": { "alias": "matTooltipPositionAtOrigin"; "required": false; }; "disabled": { "alias": "matTooltipDisabled"; "required": false; }; "showDelay": { "alias": "matTooltipShowDelay"; "required": false; }; "hideDelay": { "alias": "matTooltipHideDelay"; "required": false; }; "touchGestures": { "alias": "matTooltipTouchGestures"; "required": false; }; "message": { "alias": "matTooltip"; "required": false; }; "tooltipClass": { "alias": "matTooltipClass"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration<_MatTooltipBase, never>; } diff --git a/tools/public_api_guard/material/tree.md b/tools/public_api_guard/material/tree.md index d9f3e4689121..b2775c442e9d 100644 --- a/tools/public_api_guard/material/tree.md +++ b/tools/public_api_guard/material/tree.md @@ -48,7 +48,7 @@ export class MatNestedTreeNode extends CdkNestedTreeNode impleme get tabIndex(): number; set tabIndex(value: number); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "mat-nested-tree-node", ["matNestedTreeNode"], { "role": "role"; "disabled": "disabled"; "tabIndex": "tabIndex"; "node": "matNestedTreeNode"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "mat-nested-tree-node", ["matNestedTreeNode"], { "role": { "alias": "role"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "node": { "alias": "matNestedTreeNode"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, { attribute: "tabindex"; }]>; } @@ -122,7 +122,7 @@ export class MatTreeNode extends _MatTreeNodeBase implements Can // (undocumented) ngOnInit(): void; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "mat-tree-node", ["matTreeNode"], { "role": "role"; "disabled": "disabled"; "tabIndex": "tabIndex"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "mat-tree-node", ["matTreeNode"], { "role": { "alias": "role"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, { attribute: "tabindex"; }]>; } @@ -132,7 +132,7 @@ export class MatTreeNodeDef extends CdkTreeNodeDef { // (undocumented) data: T; // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodeDef]", never, { "when": "matTreeNodeDefWhen"; "data": "matTreeNode"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodeDef]", never, { "when": { "alias": "matTreeNodeDefWhen"; "required": false; }; "data": { "alias": "matTreeNode"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -157,7 +157,7 @@ export class MatTreeNodePadding extends CdkTreeNodePadding { get level(): number; set level(value: NumberInput); // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodePadding]", never, { "level": "matTreeNodePadding"; "indent": "matTreeNodePaddingIndent"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodePadding]", never, { "level": { "alias": "matTreeNodePadding"; "required": false; }; "indent": { "alias": "matTreeNodePaddingIndent"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } @@ -165,7 +165,7 @@ export class MatTreeNodePadding extends CdkTreeNodePadding { // @public export class MatTreeNodeToggle extends CdkTreeNodeToggle { // (undocumented) - static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodeToggle]", never, { "recursive": "matTreeNodeToggleRecursive"; }, {}, never, never, false, never>; + static ɵdir: i0.ɵɵDirectiveDeclaration, "[matTreeNodeToggle]", never, { "recursive": { "alias": "matTreeNodeToggleRecursive"; "required": false; }; }, {}, never, never, false, never>; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration, never>; } diff --git a/tools/public_api_guard/youtube-player/youtube-player.md b/tools/public_api_guard/youtube-player/youtube-player.md index 1bdd31c44ffb..6b0ec32047a0 100644 --- a/tools/public_api_guard/youtube-player/youtube-player.md +++ b/tools/public_api_guard/youtube-player/youtube-player.md @@ -70,7 +70,7 @@ export class YouTubePlayer implements AfterViewInit, OnDestroy, OnInit { set width(width: number | undefined); youtubeContainer: ElementRef; // (undocumented) - static ɵcmp: i0.ɵɵComponentDeclaration; + static ɵcmp: i0.ɵɵComponentDeclaration; // (undocumented) static ɵfac: i0.ɵɵFactoryDeclaration; } diff --git a/yarn.lock b/yarn.lock index 94f543a21a23..8e9abb0d849b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17,33 +17,33 @@ dependencies: "@jridgewell/trace-mapping" "^0.3.0" -"@angular-devkit/architect@0.1600.0-next.1": - version "0.1600.0-next.1" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1600.0-next.1.tgz#048e97cfb3d0c63638e1a833094824fcc7b045a8" - integrity sha512-7GSeGEEJTfDCaB8eyaYAjNCFZl0qUo+ThJp4/u1ALO2xKOwBPEN9Pg6SlHgm1UN2WQ1yU+ipp842WM1EI6bdGw== +"@angular-devkit/architect@0.1600.0-next.4": + version "0.1600.0-next.4" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1600.0-next.4.tgz#c9a5196e5a9437a1db5ad9ec2ba8a24b44721fe4" + integrity sha512-TSljR4EiHeSxMwnK3kgMHPQfrPGLLk0HVADSJnYWcBFUsj051QYMbWkPMOnLvfTIgujyPrXc5iPStWsMl9MMKw== dependencies: - "@angular-devkit/core" "16.0.0-next.1" + "@angular-devkit/core" "16.0.0-next.4" rxjs "7.8.0" -"@angular-devkit/architect@0.1600.0-next.3": - version "0.1600.0-next.3" - resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1600.0-next.3.tgz#b4eb9741981de4e26dabaa482f53276b24abf37c" - integrity sha512-W7oGMQrBZQa+N93/d4bUW/5c6OSiB9GcTYoRsZT7R7GkeX4GIeV846Wkl5aq/Rmc8IfgAHBuaWGjAVuXYN8E6g== +"@angular-devkit/architect@0.1600.0-next.5": + version "0.1600.0-next.5" + resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1600.0-next.5.tgz#f5799dabe6898d7eb4afe30e9f8ab059013c1edc" + integrity sha512-b6b0C6Wy4Mav4E7cOmBJzQccFdsqZzcrKud528UdmZTOj/02K1MlpUAwAnfBSJRQytHVj/cVNd2YnTlSZB7APA== dependencies: - "@angular-devkit/core" "16.0.0-next.3" + "@angular-devkit/core" "16.0.0-next.5" rxjs "7.8.0" -"@angular-devkit/build-angular@16.0.0-next.1": - version "16.0.0-next.1" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-16.0.0-next.1.tgz#c95d38fdb1058c6e5e27529884312794dcfd1884" - integrity sha512-zTWeeYT+EhL5DNTbTH0qgBlj/YF/3cQQiClE2bDvaXenXhRZwYJ9c56583hE9DxLe+BFuCImX0Ym3eZQWErxNA== +"@angular-devkit/build-angular@16.0.0-next.4": + version "16.0.0-next.4" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-16.0.0-next.4.tgz#cfb34fda22dec7dd6e4c30d74beec99a13491380" + integrity sha512-4BZJWjKmHBrzE2mntqxqw16TGLnzIlGUwcJiLsPnrTL0UFNqxp4NGL91bzQDGcoXQcHWENhOaO1kJmKtzWBM/g== dependencies: "@ampproject/remapping" "2.2.0" - "@angular-devkit/architect" "0.1600.0-next.1" - "@angular-devkit/build-webpack" "0.1600.0-next.1" - "@angular-devkit/core" "16.0.0-next.1" - "@babel/core" "7.21.0" - "@babel/generator" "7.21.1" + "@angular-devkit/architect" "0.1600.0-next.4" + "@angular-devkit/build-webpack" "0.1600.0-next.4" + "@angular-devkit/core" "16.0.0-next.4" + "@babel/core" "7.21.3" + "@babel/generator" "7.21.3" "@babel/helper-annotate-as-pure" "7.18.6" "@babel/helper-split-export-declaration" "7.18.6" "@babel/plugin-proposal-async-generator-functions" "7.20.7" @@ -53,9 +53,9 @@ "@babel/runtime" "7.21.0" "@babel/template" "7.20.7" "@discoveryjs/json-ext" "0.5.7" - "@ngtools/webpack" "16.0.0-next.1" + "@ngtools/webpack" "16.0.0-next.4" ansi-colors "4.1.3" - autoprefixer "10.4.13" + autoprefixer "10.4.14" babel-loader "9.1.2" babel-plugin-istanbul "6.1.1" browserslist "4.21.5" @@ -64,7 +64,7 @@ copy-webpack-plugin "11.0.0" critters "0.0.16" css-loader "6.7.3" - esbuild-wasm "0.17.10" + esbuild-wasm "0.17.11" glob "8.1.0" https-proxy-agent "5.0.1" inquirer "8.2.4" @@ -75,7 +75,7 @@ license-webpack-plugin "4.0.2" loader-utils "3.2.1" magic-string "0.30.0" - mini-css-extract-plugin "2.7.2" + mini-css-extract-plugin "2.7.3" open "8.4.2" ora "5.4.1" parse5-html-rewriting-stream "7.0.0" @@ -84,34 +84,34 @@ postcss-loader "7.0.2" resolve-url-loader "5.0.0" rxjs "7.8.0" - sass "1.58.3" + sass "1.59.3" sass-loader "13.2.0" semver "7.3.8" source-map-loader "4.0.1" source-map-support "0.5.21" - terser "5.16.4" + terser "5.16.6" text-table "0.2.0" tree-kill "1.2.2" tslib "2.5.0" - webpack "5.75.0" + webpack "5.76.1" webpack-dev-middleware "6.0.1" - webpack-dev-server "4.11.1" + webpack-dev-server "4.12.0" webpack-merge "5.8.0" webpack-subresource-integrity "5.1.0" optionalDependencies: - esbuild "0.17.10" + esbuild "0.17.11" -"@angular-devkit/build-angular@^16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-16.0.0-next.3.tgz#2309d588673da3398795ab79a713351174207214" - integrity sha512-AH2M9UV5d/xPVdjyoljZ+9areYxuYYvz1CeorsGIH/oqpI4rZSqXiLnr199cEf8MqoU85ZyKOwF5LdMN4lYveA== +"@angular-devkit/build-angular@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-16.0.0-next.5.tgz#7c50175cfc1324c592d09c7e6c5be1541a858aa7" + integrity sha512-HHDM+0obZPyW4uUsW3+qHqYYLC4svQQRZxj73yY+C3D/UtVA6A4hy1opKsrTWEAIC+FwIO5A2Cu1z6u06Si/UQ== dependencies: "@ampproject/remapping" "2.2.0" - "@angular-devkit/architect" "0.1600.0-next.3" - "@angular-devkit/build-webpack" "0.1600.0-next.3" - "@angular-devkit/core" "16.0.0-next.3" - "@babel/core" "7.21.0" - "@babel/generator" "7.21.1" + "@angular-devkit/architect" "0.1600.0-next.5" + "@angular-devkit/build-webpack" "0.1600.0-next.5" + "@angular-devkit/core" "16.0.0-next.5" + "@babel/core" "7.21.3" + "@babel/generator" "7.21.3" "@babel/helper-annotate-as-pure" "7.18.6" "@babel/helper-split-export-declaration" "7.18.6" "@babel/plugin-proposal-async-generator-functions" "7.20.7" @@ -121,9 +121,9 @@ "@babel/runtime" "7.21.0" "@babel/template" "7.20.7" "@discoveryjs/json-ext" "0.5.7" - "@ngtools/webpack" "16.0.0-next.3" + "@ngtools/webpack" "16.0.0-next.5" ansi-colors "4.1.3" - autoprefixer "10.4.13" + autoprefixer "10.4.14" babel-loader "9.1.2" babel-plugin-istanbul "6.1.1" browserslist "4.21.5" @@ -132,7 +132,7 @@ copy-webpack-plugin "11.0.0" critters "0.0.16" css-loader "6.7.3" - esbuild-wasm "0.17.11" + esbuild-wasm "0.17.12" glob "8.1.0" https-proxy-agent "5.0.1" inquirer "8.2.4" @@ -143,52 +143,52 @@ license-webpack-plugin "4.0.2" loader-utils "3.2.1" magic-string "0.30.0" - mini-css-extract-plugin "2.7.2" + mini-css-extract-plugin "2.7.5" open "8.4.2" ora "5.4.1" parse5-html-rewriting-stream "7.0.0" piscina "3.2.0" postcss "8.4.21" - postcss-loader "7.0.2" + postcss-loader "7.1.0" resolve-url-loader "5.0.0" rxjs "7.8.0" - sass "1.58.3" - sass-loader "13.2.0" + sass "1.59.3" + sass-loader "13.2.1" semver "7.3.8" source-map-loader "4.0.1" source-map-support "0.5.21" - terser "5.16.5" + terser "5.16.6" text-table "0.2.0" tree-kill "1.2.2" tslib "2.5.0" - webpack "5.75.0" - webpack-dev-middleware "6.0.1" - webpack-dev-server "4.11.1" + webpack "5.76.2" + webpack-dev-middleware "6.0.2" + webpack-dev-server "4.13.1" webpack-merge "5.8.0" webpack-subresource-integrity "5.1.0" optionalDependencies: - esbuild "0.17.11" + esbuild "0.17.12" -"@angular-devkit/build-webpack@0.1600.0-next.1": - version "0.1600.0-next.1" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1600.0-next.1.tgz#ecf96034328af887b9eadb95e339c1cbe24020ee" - integrity sha512-hSBgr7W02baPY/YE9bVZElTBa3RGyKhSI+J6y/LCMh+PR3XTNt/VUXrjhgRRaXVU8zyU+P7POHu3xooxPMHXGw== +"@angular-devkit/build-webpack@0.1600.0-next.4": + version "0.1600.0-next.4" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1600.0-next.4.tgz#9ade9f2ee67a57cab440cba38a5a290b4d6f8097" + integrity sha512-NTCJCvLOtVL+iHavbiKFLmwHAPiA0eVrcAL0ffpcMY66yq2uco3Epm33wQlGUFrhMtYbtEXVUAf/T6z3uGsFHw== dependencies: - "@angular-devkit/architect" "0.1600.0-next.1" + "@angular-devkit/architect" "0.1600.0-next.4" rxjs "7.8.0" -"@angular-devkit/build-webpack@0.1600.0-next.3": - version "0.1600.0-next.3" - resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1600.0-next.3.tgz#2de2fd3119a1bc1b8a4b0a10a033656f94130116" - integrity sha512-0UszSL9EHFc8NXUDFq/8oTVRRGHXwlpmY7UNSEqO2PvpSkjV4ujEi39l+bKOAqUXTISp3Mb0vEhwCXgZz3WFdQ== +"@angular-devkit/build-webpack@0.1600.0-next.5": + version "0.1600.0-next.5" + resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1600.0-next.5.tgz#b26e18f3b94ff5e3463d104b69ad735e21bfa604" + integrity sha512-ljCW7BL/fPfm/UvFM/mWVTNqT1XwF+iUdZyRHqNicSx8sHsoN06zXPd+B7OdZOmTmSaofS33fzKtyrwikjVlbg== dependencies: - "@angular-devkit/architect" "0.1600.0-next.3" + "@angular-devkit/architect" "0.1600.0-next.5" rxjs "7.8.0" -"@angular-devkit/core@16.0.0-next.1": - version "16.0.0-next.1" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.0.0-next.1.tgz#caacbce13196f14ce1e503cfd982106c5f38069d" - integrity sha512-sbMPTsQk72vMPEXhP7nwtqYJcjnz6ddBWwLMPyCfDS8J/+KYadwBvhcjQ2Ymb+OzAkOkiLKDINW8mj6Mm456Jw== +"@angular-devkit/core@16.0.0-next.4": + version "16.0.0-next.4" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.0.0-next.4.tgz#a43e5e9949752e1cff51121b3e437277c3a05dff" + integrity sha512-4zSKzyL2MxjGhWlV6pPdbh2iYDXL0MX8gjpjlnVkQFkGAtfdV3FqRREilicUIXLU1c6SdP9tf7IBEJ0ldTksYg== dependencies: ajv "8.12.0" ajv-formats "2.1.1" @@ -196,10 +196,10 @@ rxjs "7.8.0" source-map "0.7.4" -"@angular-devkit/core@16.0.0-next.3", "@angular-devkit/core@^16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.0.0-next.3.tgz#03bb8b31918325dab8716ad6a9fdc86dc9a41e82" - integrity sha512-wTgUrr8En+Y44shi5JV3F1JyJ85Lh9ovRGBPEAC+F2i/7bqzFwbwasZ1Gp/UCd5kihyfUpBMNUZYycTlxQVuIA== +"@angular-devkit/core@16.0.0-next.5", "@angular-devkit/core@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-16.0.0-next.5.tgz#d7424fec44f7074b42007f8f50c7413418a3f05b" + integrity sha512-661vh7hLQwJgsJfPIvHQ7xO9Nx9YWmKmNrY44jNWiYe4zX0IKRzbSUEsu0t/wPaI/CbZPuHvNwW4r25pIEf/+g== dependencies: ajv "8.12.0" ajv-formats "2.1.1" @@ -207,21 +207,21 @@ rxjs "7.8.0" source-map "0.7.4" -"@angular-devkit/schematics@16.0.0-next.3", "@angular-devkit/schematics@^16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-16.0.0-next.3.tgz#1d8e05b0eb9322f0cb20cb80c7b05e2725b5df24" - integrity sha512-RRBmM9LBrRt1taJSyWZ6+nYFzEl0BywYi+dq9TVXsPeY6q55xzUZqliAnWhuu0GEvj3QqFtEsCXjvK1J2JEyaw== +"@angular-devkit/schematics@16.0.0-next.5", "@angular-devkit/schematics@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-16.0.0-next.5.tgz#079fab561ca7cb872e8c3979de710e1d98ae7af6" + integrity sha512-j0KItzH19Z+8G2seVTp+TzD/mJwcE4xSGa+4Etn10+u4hwWmUnb/FL3+Ip372OV19GOX9WSyMpf2oT7t1YK4ZA== dependencies: - "@angular-devkit/core" "16.0.0-next.3" + "@angular-devkit/core" "16.0.0-next.5" jsonc-parser "3.2.0" magic-string "0.30.0" ora "5.4.1" rxjs "7.8.0" -"@angular/animations@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-16.0.0-next.2.tgz#13b9c546cbbc220b263c530a02c56ef7468c6934" - integrity sha512-6D+w3ICezW7RNx4GAGBt+ChHZ0XfIzYjk8z7LuaKuvoCJWYpWjsLgz0vN320dFiGD5X+/Ete8LO9MJ6R35Hv1A== +"@angular/animations@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-16.0.0-next.5.tgz#9a6037b08f3887bd1385b315f0b221a9841fae24" + integrity sha512-DdgVCK30H8EKu1auYla3hIMwj/x7/+bhsyLUzlOg4p5sw4p3jsW8ETRFXkQAE2QcDmCc9liKB6vt8im90ELRsQ== dependencies: tslib "^2.3.0" @@ -243,11 +243,11 @@ "@angular/core" "^13.0.0 || ^14.0.0-0" reflect-metadata "^0.1.13" -"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#16f13b9e919478d61ec98ce60901f3bdebb5d4e5": - version "0.0.0-93e50fe950f04508be0ea7adfc1b7f8efd459adc" - resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#16f13b9e919478d61ec98ce60901f3bdebb5d4e5" +"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#4c7d40592a36f061c23dd08f437f734081f9979d": + version "0.0.0-462f716ef571b2b41fff90aaa5bb10897693efcc" + resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#4c7d40592a36f061c23dd08f437f734081f9979d" dependencies: - "@angular-devkit/build-angular" "16.0.0-next.1" + "@angular-devkit/build-angular" "16.0.0-next.4" "@angular/benchpress" "0.3.0" "@babel/core" "^7.16.0" "@babel/helper-annotate-as-pure" "^7.18.6" @@ -282,18 +282,18 @@ uuid "^9.0.0" yargs "^17.0.0" -"@angular/cli@^16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-16.0.0-next.3.tgz#f7f9834498d3d4c93070277ec3544cf5e8d559e2" - integrity sha512-v1/qdI9f2kaTsyjo5WK6yFPxINdzQnN60bgLRGfLah2woGn0vgA9L1TSvbfYd9V5rtmVPQq/q29kXmc8T8HNfg== +"@angular/cli@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-16.0.0-next.5.tgz#a9a70be9718400788508ed16c86caa0d05e2cb8a" + integrity sha512-HUxDWQIld2qzRYMKFNBn0WZ5RC8DsEDd7VSV64IqArD0jfzsW+IXowB8/WpDPYzIenaYfKQomwUCGfdLrAtmXA== dependencies: - "@angular-devkit/architect" "0.1600.0-next.3" - "@angular-devkit/core" "16.0.0-next.3" - "@angular-devkit/schematics" "16.0.0-next.3" - "@schematics/angular" "16.0.0-next.3" + "@angular-devkit/architect" "0.1600.0-next.5" + "@angular-devkit/core" "16.0.0-next.5" + "@angular-devkit/schematics" "16.0.0-next.5" + "@schematics/angular" "16.0.0-next.5" "@yarnpkg/lockfile" "1.1.0" ansi-colors "4.1.3" - ini "3.0.1" + ini "4.0.0" inquirer "8.2.4" jsonc-parser "3.2.0" npm-package-arg "10.1.0" @@ -306,17 +306,17 @@ symbol-observable "4.0.0" yargs "17.7.1" -"@angular/common@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/common/-/common-16.0.0-next.2.tgz#e7b11665ca8318741d739fb226b1ec6983ec6f48" - integrity sha512-KD2Bi3OJUQsXYUH60QCAQCC0Qp0PQd7yWKGakwS+QOfE5ooEB8W9LrjzNK4+W6IctRiZ/3uESuoHhzgGVVOI/Q== +"@angular/common@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/common/-/common-16.0.0-next.5.tgz#56a8cfa6e93f243f886ea33aa41dd9834aa0734f" + integrity sha512-+GKp9Z7OpVRdkXIgpsJFsuKE2pqDrwkLa0EprQ8j82ItOnyqGi1J4bLVGbkFgXBDDDe7PXMPEAPuwAARBy0H5g== dependencies: tslib "^2.3.0" -"@angular/compiler-cli@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-16.0.0-next.2.tgz#aa1eb67669455cf8c2c0519c3b4f7dc55543ebc1" - integrity sha512-7K95Ho7R42jg9W2mj4vw7+xd8cgeixCGLjx4yI5ZdvxecVmSydn1WFpN/+iXrBvwuLDRQBv7Q37jsVhwaQUCUg== +"@angular/compiler-cli@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-16.0.0-next.5.tgz#85e505865e52ac448ee28c192fbc815a41d22e50" + integrity sha512-yBtn8kmibWQ3I5w3WDMhwiJWJkDfsyZj5aPAETQg+vC0/GhEAosf1je0fJhiyvI/wJWJJlAKiK4KaEDJh6kHhw== dependencies: "@babel/core" "7.19.3" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -327,10 +327,10 @@ tslib "^2.3.0" yargs "^17.2.1" -"@angular/compiler@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-16.0.0-next.2.tgz#87b725db3b8df8ed84807c55f1046581866945c5" - integrity sha512-MQDLhByD1UPm/sH0HWRk2qwLSgehew2Gh6wEingCwWAxEATJ946pvTNdDsaV9EYU91vz+50NN8FOPwcGzC9Vrw== +"@angular/compiler@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-16.0.0-next.5.tgz#442c447b42560911dfb2ed2fc58f4b208820edbb" + integrity sha512-xqTuQvSA7cSfO1sPrIXepI4xwxIY8oN7RtL2+DgqhTqAsev6OZ1R+oZCcCZuQMOrCrKC4V/9fcr9ixCKW1KRrQ== dependencies: tslib "^2.3.0" @@ -341,24 +341,24 @@ dependencies: tslib "^2.3.0" -"@angular/core@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/core/-/core-16.0.0-next.2.tgz#7446e65b26dbfc5ae38990eea842e77bd13857d9" - integrity sha512-pLSyOeFSNkacYs2g1Xrg0sMInUPZRp1lx5zVjRNUcBDx4JEwuepKXbZ04aK01Ge6KoJ0NWa1YgyKnsOreEg3Pw== +"@angular/core@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/core/-/core-16.0.0-next.5.tgz#f27ee448acb807f43e7ff003f1b29401d3bcdb72" + integrity sha512-NnxMR+8GfxVTXVmkRaSw98Twg2BCSfO+nWxixHee2gBIsyrVICt4ShZjZz+GdfV9v1R+1fiqN8GeCw7Utsik0Q== dependencies: tslib "^2.3.0" -"@angular/forms@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-16.0.0-next.2.tgz#e5e1d92320d464d36be32498a20bc00092217173" - integrity sha512-hTMZE5XqyfF1y3W5kmHegyKEo1vqMCvWHTE0x3nwPSK4GhW/1K//rb25T4BmR/6hkBD8nkzwzAidTGW89WH9DA== +"@angular/forms@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-16.0.0-next.5.tgz#2d6d1909fb8d7103213bcda3f7e82a41e4d37136" + integrity sha512-LTsv9bUS5v3QjGeWudtWY1Er1f55HPa6SJ6PAykBCMuKak2J2RkKDe/k5zq3FMWI2l2DkwHxgKwsbXigpF8L4w== dependencies: tslib "^2.3.0" -"@angular/localize@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-16.0.0-next.2.tgz#fa1b9d293fe20850842f4e79c688333188349478" - integrity sha512-lW3W/diyfoYoUULnmpzL0wm3BGISB/1/v7LHIjIhO/QLQB75zu1zd8o8hOmc2w0RegiWb0grIq2nHPS4RZ46IA== +"@angular/localize@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-16.0.0-next.5.tgz#547bf1004fffd30b50aa2a4bdae33e705783b594" + integrity sha512-72PzZAxmrR6TlYwAwd/t6KzxObvLGXhVVifNYE/15h9vd17/ReTq+TbT6J+TE73XQoELXMr4Va2wwe+NtiYymg== dependencies: "@babel/core" "7.19.3" glob "8.1.0" @@ -371,32 +371,32 @@ "@yarnpkg/lockfile" "^1.1.0" typescript "~4.9.0" -"@angular/platform-browser-dynamic@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.0-next.2.tgz#a25a86de1a4440af4942f51cc04b5795f2cbb2ec" - integrity sha512-qXOlrj7fqeZSjH0jqeh6J3uzyV27vwlgjDynUStCIxWcH2zjmcl/rKK73WESrP9RGWTKEV09/jLNqwzfXfwPrw== +"@angular/platform-browser-dynamic@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.0.0-next.5.tgz#b8dbf5edcdb163e6908e1f3445f6c127f3ed8fc0" + integrity sha512-OW+lAeh+BZLqnOCKzegKVAflzuFr1pL4+YJQI7v7S8E2c1bALPUknuLCKNz8UXog3s87suR+ua5huGNowgmzow== dependencies: tslib "^2.3.0" -"@angular/platform-browser@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-16.0.0-next.2.tgz#459edc9081441447367d276ff8845de3ad7782e0" - integrity sha512-KpO3JnvdLp/zt5RV8CiVjYUkORPvnWq27/Pc8mS99M0RTbYVJKvqjoNC8/pTkbwQ2LnGsLtBFNnqOcnxqhC+qg== +"@angular/platform-browser@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-16.0.0-next.5.tgz#155ce691b431d45bde2d4c52c821058e9c4afabf" + integrity sha512-yzstHaWKnqZi6zgO5JiT7BdxZgJTpC9EeFeM1meWIWzvizWUiTiA/WAL9pa7d8OMjAqodBbVcBwRaPyFIxJu/g== dependencies: tslib "^2.3.0" -"@angular/platform-server@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-16.0.0-next.2.tgz#7213557593f08e96536e62e0d3c878ae3f465b3d" - integrity sha512-6/VTPnJK/J9duAZxhcok62DYxpnx0uUqkq2vNbSMjrpWRQl6XErrc9S32H4/7sXz6aSPDdnbI8merkn6QFVKqQ== +"@angular/platform-server@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/platform-server/-/platform-server-16.0.0-next.5.tgz#6805aef4960d655a751930686aac945c8242c9fd" + integrity sha512-yxFxbRjP78pTp6KJA8mxyTDTteUg7HdUlT/y22L/Lr8kXIuVCMmuBYPV+Khht0W4NnmULkG75wWe8sV2u7E99w== dependencies: tslib "^2.3.0" xhr2 "^0.2.0" -"@angular/router@^16.0.0-next.2": - version "16.0.0-next.2" - resolved "https://registry.yarnpkg.com/@angular/router/-/router-16.0.0-next.2.tgz#15a26aaa9a54cbec040359a31f7e6c0b9a2b2319" - integrity sha512-T/SsQLAihujLTeXxL7ZjXyQvrfD5L+6WY5syKu297jxOOkKIdavI/NGFHDUQ/sGjAx3VgYNRfTDScyK/0+lyFg== +"@angular/router@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@angular/router/-/router-16.0.0-next.5.tgz#7f4c54899bca6f6909a6aff8d87fb2d5ad2e3ed9" + integrity sha512-gd/xwp8vFsu32q5FTEgg5L5Hphlp0ZMySPwEXRBXRufBk9oMecac8wBw5DZBahv+IykZiMt98LKhFXd96lBmfg== dependencies: tslib "^2.3.0" @@ -482,21 +482,21 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/core@7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.0.tgz#1341aefdcc14ccc7553fcc688dd8986a2daffc13" - integrity sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA== +"@babel/core@7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.3.tgz#cf1c877284a469da5d1ce1d1e53665253fae712e" + integrity sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.21.0" + "@babel/generator" "^7.21.3" "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-module-transforms" "^7.21.0" + "@babel/helper-module-transforms" "^7.21.2" "@babel/helpers" "^7.21.0" - "@babel/parser" "^7.21.0" + "@babel/parser" "^7.21.3" "@babel/template" "^7.20.7" - "@babel/traverse" "^7.21.0" - "@babel/types" "^7.21.0" + "@babel/traverse" "^7.21.3" + "@babel/types" "^7.21.3" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -524,12 +524,12 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@7.21.1", "@babel/generator@^7.21.0", "@babel/generator@^7.21.1": - version "7.21.1" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd" - integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA== +"@babel/generator@7.21.3", "@babel/generator@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.3.tgz#232359d0874b392df04045d72ce2fd9bb5045fce" + integrity sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA== dependencies: - "@babel/types" "^7.21.0" + "@babel/types" "^7.21.3" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -588,6 +588,16 @@ "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" +"@babel/generator@^7.21.1": + version "7.21.1" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd" + integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA== + dependencies: + "@babel/types" "^7.21.0" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + "@babel/helper-annotate-as-pure@7.18.6", "@babel/helper-annotate-as-pure@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" @@ -852,7 +862,7 @@ "@babel/traverse" "^7.19.6" "@babel/types" "^7.19.4" -"@babel/helper-module-transforms@^7.21.0": +"@babel/helper-module-transforms@^7.21.2": version "7.21.2" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz#160caafa4978ac8c00ac66636cb0fa37b024e2d2" integrity sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== @@ -1104,11 +1114,16 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== -"@babel/parser@^7.21.0", "@babel/parser@^7.21.2": +"@babel/parser@^7.21.2": version "7.21.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3" integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ== +"@babel/parser@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.3.tgz#1d285d67a19162ff9daa358d4cb41d50c06220b3" + integrity sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ== + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" @@ -1910,6 +1925,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.3.tgz#4747c5e7903d224be71f90788b06798331896f67" + integrity sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.21.3" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.21.3" + "@babel/types" "^7.21.3" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.10.3", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4": version "7.17.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" @@ -1980,6 +2011,15 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@babel/types@^7.21.3": + version "7.21.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.3.tgz#4865a5357ce40f64e3400b0f3b737dc6d4f64d05" + integrity sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + "@bazel/bazelisk@1.12.1": version "1.12.1" resolved "https://registry.yarnpkg.com/@bazel/bazelisk/-/bazelisk-1.12.1.tgz#346531286564aa29eee03a62362d210f3433e7bf" @@ -2092,331 +2132,331 @@ resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== -"@esbuild/android-arm64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.10.tgz#ad2ee47dd021035abdfb0c38848ff77a1e1918c4" - integrity sha512-ht1P9CmvrPF5yKDtyC+z43RczVs4rrHpRqrmIuoSvSdn44Fs1n6DGlpZKdK6rM83pFLbVaSUwle8IN+TPmkv7g== - "@esbuild/android-arm64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.11.tgz#52c3e6cabc19c5e4c1c0c01cb58f0442338e1c14" integrity sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg== +"@esbuild/android-arm64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz#15a8e2b407d03989b899e325151dc2e96d19c620" + integrity sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA== + "@esbuild/android-arm64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.5.tgz#a145f43018e639bed94ed637369e2dcdd6bf9ea2" integrity sha512-KHWkDqYAMmKZjY4RAN1PR96q6UOtfkWlTS8uEwWxdLtkRt/0F/csUhXIrVfaSIFxnscIBMPynGfhsMwQDRIBQw== -"@esbuild/android-arm@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.10.tgz#bb5a68af8adeb94b30eadee7307404dc5237d076" - integrity sha512-7YEBfZ5lSem9Tqpsz+tjbdsEshlO9j/REJrfv4DXgKTt1+/MHqGwbtlyxQuaSlMeUZLxUKBaX8wdzlTfHkmnLw== - "@esbuild/android-arm@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f" integrity sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw== +"@esbuild/android-arm@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz#677a09297e1f4f37aba7b4fc4f31088b00484985" + integrity sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ== + "@esbuild/android-arm@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.5.tgz#9fa2deff7fc5d180bb4ecff70beea3a95ac44251" integrity sha512-crmPUzgCmF+qZXfl1YkiFoUta2XAfixR1tEnr/gXIixE+WL8Z0BGqfydP5oox0EUOgQMMRgtATtakyAcClQVqQ== -"@esbuild/android-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.10.tgz#751d5d8ae9ece1efa9627b689c888eb85b102360" - integrity sha512-CYzrm+hTiY5QICji64aJ/xKdN70IK8XZ6iiyq0tZkd3tfnwwSWTYH1t3m6zyaaBxkuj40kxgMyj1km/NqdjQZA== - "@esbuild/android-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c" integrity sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ== +"@esbuild/android-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz#b292729eef4e0060ae1941f6a021c4d2542a3521" + integrity sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w== + "@esbuild/android-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.5.tgz#145fc61f810400e65a56b275280d1422a102c2ef" integrity sha512-8fI/AnIdmWz/+1iza2WrCw8kwXK9wZp/yZY/iS8ioC+U37yJCeppi9EHY05ewJKN64ASoBIseufZROtcFnX5GA== -"@esbuild/darwin-arm64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.10.tgz#85601ee7efb2129cd3218d5bcbe8da1173bc1e8b" - integrity sha512-3HaGIowI+nMZlopqyW6+jxYr01KvNaLB5znXfbyyjuo4lE0VZfvFGcguIJapQeQMS4cX/NEispwOekJt3gr5Dg== - "@esbuild/darwin-arm64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16" integrity sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw== +"@esbuild/darwin-arm64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz#efa35318df931da05825894e1787b976d55adbe3" + integrity sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg== + "@esbuild/darwin-arm64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.5.tgz#61fb0546aa4bae0850817d6e0d008b1cb3f64b49" integrity sha512-EAvaoyIySV6Iif3NQCglUNpnMfHSUgC5ugt2efl3+QDntucJe5spn0udNZjTgNi6tKVqSceOw9tQ32liNZc1Xw== -"@esbuild/darwin-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.10.tgz#362c7e988c61fe72d5edef4f717e4b4fc728da98" - integrity sha512-J4MJzGchuCRG5n+B4EHpAMoJmBeAE1L3wGYDIN5oWNqX0tEr7VKOzw0ymSwpoeSpdCa030lagGUfnfhS7OvzrQ== - "@esbuild/darwin-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88" integrity sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw== +"@esbuild/darwin-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz#e7b54bb3f6dc81aadfd0485cd1623c648157e64d" + integrity sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA== + "@esbuild/darwin-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.5.tgz#54b770f0c49f524ae9ba24c85d6dea8b521f610d" integrity sha512-ha7QCJh1fuSwwCgoegfdaljowwWozwTDjBgjD3++WAy/qwee5uUi1gvOg2WENJC6EUyHBOkcd3YmLDYSZ2TPPA== -"@esbuild/freebsd-arm64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.10.tgz#e8a85a46ede7c3a048a12f16b9d551d25adc8bb1" - integrity sha512-ZkX40Z7qCbugeK4U5/gbzna/UQkM9d9LNV+Fro8r7HA7sRof5Rwxc46SsqeMvB5ZaR0b1/ITQ/8Y1NmV2F0fXQ== - "@esbuild/freebsd-arm64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd" integrity sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q== +"@esbuild/freebsd-arm64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz#99a18a8579d6299c449566fe91d9b6a54cf2a591" + integrity sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ== + "@esbuild/freebsd-arm64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.5.tgz#be1dd18b7b9411f10bdc362ba8bff16386175367" integrity sha512-VbdXJkn2aI2pQ/wxNEjEcnEDwPpxt3CWWMFYmO7CcdFBoOsABRy2W8F3kjbF9F/pecEUDcI3b5i2w+By4VQFPg== -"@esbuild/freebsd-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.10.tgz#cd0a1b68bffbcb5b65e65b3fd542e8c7c3edd86b" - integrity sha512-0m0YX1IWSLG9hWh7tZa3kdAugFbZFFx9XrvfpaCMMvrswSTvUZypp0NFKriUurHpBA3xsHVE9Qb/0u2Bbi/otg== - "@esbuild/freebsd-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38" integrity sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g== +"@esbuild/freebsd-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz#0e090190fede307fb4022f671791a50dd5121abd" + integrity sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw== + "@esbuild/freebsd-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.5.tgz#c9c1960fa3e1eada4e5d4be2a11a2f04ce14198f" integrity sha512-olgGYND1/XnnWxwhjtY3/ryjOG/M4WfcA6XH8dBTH1cxMeBemMODXSFhkw71Kf4TeZFFTN25YOomaNh0vq2iXg== -"@esbuild/linux-arm64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.10.tgz#13b183f432512ed9d9281cc89476caeebe9e9123" - integrity sha512-g1EZJR1/c+MmCgVwpdZdKi4QAJ8DCLP5uTgLWSAVd9wlqk9GMscaNMEViG3aE1wS+cNMzXXgdWiW/VX4J+5nTA== - "@esbuild/linux-arm64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5" integrity sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg== +"@esbuild/linux-arm64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz#7fe2a69f8a1a7153fa2b0f44aabcadb59475c7e0" + integrity sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg== + "@esbuild/linux-arm64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.5.tgz#34d96d11c6899017ecae42fb97de8e0c3282902f" integrity sha512-8a0bqSwu3OlLCfu2FBbDNgQyBYdPJh1B9PvNX7jMaKGC9/KopgHs37t+pQqeMLzcyRqG6z55IGNQAMSlCpBuqg== -"@esbuild/linux-arm@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.10.tgz#dd11e0a5faa3ea94dc80278a601c3be7b4fdf1da" - integrity sha512-whRdrrl0X+9D6o5f0sTZtDM9s86Xt4wk1bf7ltx6iQqrIIOH+sre1yjpcCdrVXntQPCNw/G+XqsD4HuxeS+2QA== - "@esbuild/linux-arm@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7" integrity sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg== +"@esbuild/linux-arm@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz#b87c76ebf1fe03e01fd6bb5cfc2f3c5becd5ee93" + integrity sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA== + "@esbuild/linux-arm@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.5.tgz#86332e6293fd713a54ab299a5e2ed7c60c9e1c07" integrity sha512-YBdCyQwA3OQupi6W2/WO4FnI+NWFWe79cZEtlbqSESOHEg7a73htBIRiE6uHPQe7Yp5E4aALv+JxkRLGEUL7tw== -"@esbuild/linux-ia32@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.10.tgz#4d836f87b92807d9292379963c4888270d282405" - integrity sha512-1vKYCjfv/bEwxngHERp7huYfJ4jJzldfxyfaF7hc3216xiDA62xbXJfRlradiMhGZbdNLj2WA1YwYFzs9IWNPw== - "@esbuild/linux-ia32@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab" integrity sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA== +"@esbuild/linux-ia32@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz#9e9357090254524d32e6708883a47328f3037858" + integrity sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw== + "@esbuild/linux-ia32@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.5.tgz#7bd9185c844e7dfce6a01dfdec584e115602a8c4" integrity sha512-uCwm1r/+NdP7vndctgq3PoZrnmhmnecWAr114GWMRwg2QMFFX+kIWnp7IO220/JLgnXK/jP7VKAFBGmeOYBQYQ== -"@esbuild/linux-loong64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.10.tgz#92eb2ee200c17ef12c7fb3b648231948699e7a4c" - integrity sha512-mvwAr75q3Fgc/qz3K6sya3gBmJIYZCgcJ0s7XshpoqIAIBszzfXsqhpRrRdVFAyV1G9VUjj7VopL2HnAS8aHFA== - "@esbuild/linux-loong64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502" integrity sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g== +"@esbuild/linux-loong64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz#9deb605f9e2c82f59412ddfefb4b6b96d54b5b5b" + integrity sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA== + "@esbuild/linux-loong64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.5.tgz#2907d4120c7b3642b96be6014f77e7624c378eea" integrity sha512-3YxhSBl5Sb6TtBjJu+HP93poBruFzgXmf3PVfIe4xOXMj1XpxboYZyw3W8BhoX/uwxzZz4K1I99jTE/5cgDT1g== -"@esbuild/linux-mips64el@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.10.tgz#14f7d50c40fe7f7ee545a9bd07c6f6e4cba5570e" - integrity sha512-XilKPgM2u1zR1YuvCsFQWl9Fc35BqSqktooumOY2zj7CSn5czJn279j9TE1JEqSqz88izJo7yE4x3LSf7oxHzg== - "@esbuild/linux-mips64el@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b" integrity sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw== +"@esbuild/linux-mips64el@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz#6ef170b974ddf5e6acdfa5b05f22b6e9dfd2b003" + integrity sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA== + "@esbuild/linux-mips64el@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.5.tgz#fc98be741e8080ecd13b404d5fca5302d3835bf4" integrity sha512-Hy5Z0YVWyYHdtQ5mfmfp8LdhVwGbwVuq8mHzLqrG16BaMgEmit2xKO+iDakHs+OetEx0EN/2mUzDdfdktI+Nmg== -"@esbuild/linux-ppc64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.10.tgz#1ab5802e93ae511ce9783e1cb95f37df0f84c4af" - integrity sha512-kM4Rmh9l670SwjlGkIe7pYWezk8uxKHX4Lnn5jBZYBNlWpKMBCVfpAgAJqp5doLobhzF3l64VZVrmGeZ8+uKmQ== - "@esbuild/linux-ppc64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11" integrity sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA== +"@esbuild/linux-ppc64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz#1638d3d4acf1d34aaf37cf8908c2e1cefed16204" + integrity sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A== + "@esbuild/linux-ppc64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.5.tgz#ea12e8f6b290a613ac4903c9e00835c69ced065c" integrity sha512-5dbQvBLbU/Y3Q4ABc9gi23hww1mQcM7KZ9KBqabB7qhJswYMf8WrDDOSw3gdf3p+ffmijMd28mfVMvFucuECyg== -"@esbuild/linux-riscv64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.10.tgz#4fae25201ef7ad868731d16c8b50b0e386c4774a" - integrity sha512-r1m9ZMNJBtOvYYGQVXKy+WvWd0BPvSxMsVq8Hp4GzdMBQvfZRvRr5TtX/1RdN6Va8JMVQGpxqde3O+e8+khNJQ== - "@esbuild/linux-riscv64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c" integrity sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA== +"@esbuild/linux-riscv64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz#135b6e9270a8e2de2b9094bb21a287517df520ef" + integrity sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA== + "@esbuild/linux-riscv64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.5.tgz#ce47b15fd4227eeb0590826e41bdc430c5bfd06c" integrity sha512-fp/KUB/ZPzEWGTEUgz9wIAKCqu7CjH1GqXUO2WJdik1UNBQ7Xzw7myIajpxztE4Csb9504ERiFMxZg5KZ6HlZQ== -"@esbuild/linux-s390x@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.10.tgz#126254d8335bb3586918b1ca60beb4abb46e6d54" - integrity sha512-LsY7QvOLPw9WRJ+fU5pNB3qrSfA00u32ND5JVDrn/xG5hIQo3kvTxSlWFRP0NJ0+n6HmhPGG0Q4jtQsb6PFoyg== - "@esbuild/linux-s390x@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad" integrity sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ== +"@esbuild/linux-s390x@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz#21e40830770c5d08368e300842bde382ce97d615" + integrity sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g== + "@esbuild/linux-s390x@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.5.tgz#962fa540d7498967270eb1d4b9ac6c4a4f339735" integrity sha512-kRV3yw19YDqHTp8SfHXfObUFXlaiiw4o2lvT1XjsPZ++22GqZwSsYWJLjMi1Sl7j9qDlDUduWDze/nQx0d6Lzw== -"@esbuild/linux-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.10.tgz#7fa4667b2df81ea0538e1b75e607cf04e526ce91" - integrity sha512-zJUfJLebCYzBdIz/Z9vqwFjIA7iSlLCFvVi7glMgnu2MK7XYigwsonXshy9wP9S7szF+nmwrelNaP3WGanstEg== - "@esbuild/linux-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7" integrity sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw== +"@esbuild/linux-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz#76c1c199871d48e1aaa47a762fb9e0dca52e1f7a" + integrity sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA== + "@esbuild/linux-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.5.tgz#9fa52884c3d876593a522aa1d4df43b717907050" integrity sha512-vnxuhh9e4pbtABNLbT2ANW4uwQ/zvcHRCm1JxaYkzSehugoFd5iXyC4ci1nhXU13mxEwCnrnTIiiSGwa/uAF1g== -"@esbuild/netbsd-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.10.tgz#2d24727ddc2305619685bf237a46d6087a02ee9a" - integrity sha512-lOMkailn4Ok9Vbp/q7uJfgicpDTbZFlXlnKT2DqC8uBijmm5oGtXAJy2ZZVo5hX7IOVXikV9LpCMj2U8cTguWA== - "@esbuild/netbsd-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1" integrity sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag== +"@esbuild/netbsd-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz#c7c3b3017a4b938c76c35f66af529baf62eac527" + integrity sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg== + "@esbuild/netbsd-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.5.tgz#47bb187b86aad9622051cb80c27e439b7d9e3a9a" integrity sha512-cigBpdiSx/vPy7doUyImsQQBnBjV5f1M99ZUlaJckDAJjgXWl6y9W17FIfJTy8TxosEF6MXq+fpLsitMGts2nA== -"@esbuild/openbsd-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.10.tgz#bf3fc38ee6ecf028c1f0cfe11f61d53cc75fef12" - integrity sha512-/VE0Kx6y7eekqZ+ZLU4AjMlB80ov9tEz4H067Y0STwnGOYL8CsNg4J+cCmBznk1tMpxMoUOf0AbWlb1d2Pkbig== - "@esbuild/openbsd-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b" integrity sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w== +"@esbuild/openbsd-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz#05d04217d980e049001afdbeacbb58d31bb5cefb" + integrity sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA== + "@esbuild/openbsd-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.5.tgz#abc55c35a1ed2bc3c5ede2ef50a3b2f87395009a" integrity sha512-VdqRqPVIjjZfkf40LrqOaVuhw9EQiAZ/GNCSM2UplDkaIzYVsSnycxcFfAnHdWI8Gyt6dO15KHikbpxwx+xHbw== -"@esbuild/sunos-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.10.tgz#8deabd6dfec6256f80bb101bc59d29dbae99c69b" - integrity sha512-ERNO0838OUm8HfUjjsEs71cLjLMu/xt6bhOlxcJ0/1MG3hNqCmbWaS+w/8nFLa0DDjbwZQuGKVtCUJliLmbVgg== - "@esbuild/sunos-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc" integrity sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg== +"@esbuild/sunos-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz#cf3862521600e4eb6c440ec3bad31ed40fb87ef3" + integrity sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg== + "@esbuild/sunos-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.5.tgz#b83c080a2147662599a5d18b2ff47f07c93e03a0" integrity sha512-ItxPaJ3MBLtI4nK+mALLEoUs6amxsx+J1ibnfcYMkqaCqHST1AkF4aENpBehty3czqw64r/XqL+W9WqU6kc2Qw== -"@esbuild/win32-arm64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.10.tgz#1ec1ee04c788c4c57a83370b6abf79587b3e4965" - integrity sha512-fXv+L+Bw2AeK+XJHwDAQ9m3NRlNemG6Z6ijLwJAAVdu4cyoFbBWbEtyZzDeL+rpG2lWI51cXeMt70HA8g2MqIg== - "@esbuild/win32-arm64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325" integrity sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ== +"@esbuild/win32-arm64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz#43dd7fb5be77bf12a1550355ab2b123efd60868e" + integrity sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg== + "@esbuild/win32-arm64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.5.tgz#2a4c41f427d9cf25b75f9d61493711a482106850" integrity sha512-4u2Q6qsJTYNFdS9zHoAi80spzf78C16m2wla4eJPh4kSbRv+BpXIfl6TmBSWupD8e47B1NrTfrOlEuco7mYQtg== -"@esbuild/win32-ia32@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.10.tgz#a362528d7f3ad5d44fa8710a96764677ef92ebe9" - integrity sha512-3s+HADrOdCdGOi5lnh5DMQEzgbsFsd4w57L/eLKKjMnN0CN4AIEP0DCP3F3N14xnxh3ruNc32A0Na9zYe1Z/AQ== - "@esbuild/win32-ia32@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3" integrity sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw== +"@esbuild/win32-ia32@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz#9940963d0bff4ea3035a84e2b4c6e41c5e6296eb" + integrity sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng== + "@esbuild/win32-ia32@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.5.tgz#7c14e3250725d0e2c21f89c98eb6abb520cba0e0" integrity sha512-KYlm+Xu9TXsfTWAcocLuISRtqxKp/Y9ZBVg6CEEj0O5J9mn7YvBKzAszo2j1ndyzUPk+op+Tie2PJeN+BnXGqQ== -"@esbuild/win32-x64@0.17.10": - version "0.17.10" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.10.tgz#ac779220f2da96afd480fb3f3148a292f66e7fc3" - integrity sha512-oP+zFUjYNaMNmjTwlFtWep85hvwUu19cZklB3QsBOcZSs6y7hmH4LNCJ7075bsqzYaNvZFXJlAVaQ2ApITDXtw== - "@esbuild/win32-x64@0.17.11": version "0.17.11" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1" integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ== +"@esbuild/win32-x64@0.17.12": + version "0.17.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487" + integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw== + "@esbuild/win32-x64@0.17.5": version "0.17.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.5.tgz#a8f3d26d8afc5186eccda265ceb1820b8e8830be" @@ -3384,15 +3424,15 @@ resolved "https://registry.yarnpkg.com/@microsoft/tsdoc/-/tsdoc-0.14.2.tgz#c3ec604a0b54b9a9b87e9735dfc59e1a5da6a5fb" integrity sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug== -"@ngtools/webpack@16.0.0-next.1": - version "16.0.0-next.1" - resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-16.0.0-next.1.tgz#2ec19632fcbf7a375722ddd1dfa366b96ba655d9" - integrity sha512-xtp8xRf7BlrobHz2bzUWuyNvbRPfiNaj4FfOzis+0FGpQLy6zNnzpiwhJezUjdcYArU8Mx8OZQznoV2YfVD+XQ== +"@ngtools/webpack@16.0.0-next.4": + version "16.0.0-next.4" + resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-16.0.0-next.4.tgz#8522c5a5af187e55fa6f61540b96cbb7f9bf76f2" + integrity sha512-dQGhpT5Qq51arUDzoaXQU8jyKekOw2Tu1qZicvlsSAJHLdVbRwP1BA2WaJb5QgcVJ0QAbfAxYSFOk3L6JPYivA== -"@ngtools/webpack@16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-16.0.0-next.3.tgz#0233bb7dfbf48c765ec62bcf025bf6f075d8d155" - integrity sha512-jgW1uhzujKY7ESeTbj12PY59xQZ/UwwGX6XJsKJs9dK+XJYrpV+ojBVGKie/qCszXVZbrF77yBBwZgXijMS5/g== +"@ngtools/webpack@16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-16.0.0-next.5.tgz#b75d4db0722290baed708387095d7dc1a537a738" + integrity sha512-dSy9A8mV7dhu+rr8nzFDZ+lwa5AqiuRhTCPVvY4VXDeujR4FlH7X/qy9Fi/9xXuyoVxCOaWFhGpzMrYRzH4EDg== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -3789,13 +3829,13 @@ colors "~1.2.1" string-argv "~0.3.1" -"@schematics/angular@16.0.0-next.3", "@schematics/angular@^16.0.0-next.3": - version "16.0.0-next.3" - resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-16.0.0-next.3.tgz#264ccfebfe0975b44f12a6d497ef1a25159c7605" - integrity sha512-8JMBSrjEgYr5qVK3k6y6HPMJ0lO/BU81PNeLkgd4++CEyr8BUdfXSI6wIQQQy6HuGZSJ0oCxBT4odqMw58iRmQ== +"@schematics/angular@16.0.0-next.5", "@schematics/angular@^16.0.0-next.5": + version "16.0.0-next.5" + resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-16.0.0-next.5.tgz#138dc5b9353b3bbdf6090830f896b1faada8b5b0" + integrity sha512-k/asrxIHfisja1qzum7AOyxJFCWgYZoaN47Hm6wbetSG1Gz6hNt1nimGqVqeo+zAikcWS6xHZh8W7u+kCseiFQ== dependencies: - "@angular-devkit/core" "16.0.0-next.3" - "@angular-devkit/schematics" "16.0.0-next.3" + "@angular-devkit/core" "16.0.0-next.5" + "@angular-devkit/schematics" "16.0.0-next.5" jsonc-parser "3.2.0" "@sindresorhus/is@^0.14.0": @@ -5053,13 +5093,13 @@ atob@^2.1.2: resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -autoprefixer@10.4.13: - version "10.4.13" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" - integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== +autoprefixer@10.4.14: + version "10.4.14" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.14.tgz#e28d49902f8e759dd25b153264e862df2705f79d" + integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== dependencies: - browserslist "^4.21.4" - caniuse-lite "^1.0.30001426" + browserslist "^4.21.5" + caniuse-lite "^1.0.30001464" fraction.js "^4.2.0" normalize-range "^0.1.2" picocolors "^1.0.0" @@ -5529,7 +5569,7 @@ browser-sync@^2.27.7: ua-parser-js "1.0.2" yargs "^17.3.1" -browserslist@4.21.5: +browserslist@4.21.5, browserslist@^4.21.5: version "4.21.5" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== @@ -5895,11 +5935,16 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001317, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: +caniuse-lite@^1.0.30001317, caniuse-lite@^1.0.30001370, caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001449: version "1.0.30001453" resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001453.tgz" integrity sha512-R9o/uySW38VViaTrOtwfbFEiBFUh7ST3uIG4OEymIG3/uKdHDO4xk/FaqfUw0d+irSUyFPy3dZszf9VvSTPnsA== +caniuse-lite@^1.0.30001464: + version "1.0.30001472" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001472.tgz#3f484885f2a2986c019dc416e65d9d62798cdd64" + integrity sha512-xWC/0+hHHQgj3/vrKYY0AAzeIUgr7L9wlELIcAvZdDUHlhL/kNxMdnQLOSOQfP8R51ZzPhmHdyMkI0MMpmxCfg== + canonical-path@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/canonical-path/-/canonical-path-1.0.0.tgz#fcb470c23958def85081856be7a86e904f180d1d" @@ -6579,6 +6624,16 @@ cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: path-type "^4.0.0" yaml "^1.10.0" +cosmiconfig@^8.0.0: + version "8.1.3" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" + integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== + dependencies: + import-fresh "^3.2.1" + js-yaml "^4.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + crc-32@^1.2.0: version "1.2.2" resolved "https://registry.yarnpkg.com/crc-32/-/crc-32-1.2.2.tgz#3cad35a934b8bf71f25ca524b6da51fb7eace2ff" @@ -7631,43 +7686,15 @@ es6-weak-map@^2.0.3: es6-iterator "^2.0.3" es6-symbol "^3.1.1" -esbuild-wasm@0.17.10: - version "0.17.10" - resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.17.10.tgz#a39d9828783a458edfdad83fe9a7227c05864518" - integrity sha512-iDPIYZXoY6RWXIt3BpnENIdgKvkfYv8YdvrdjK3n8c1reGq3d38h8ETWvrpy1+0r5gR74vEb73TMonh5FbVZxw== - esbuild-wasm@0.17.11: version "0.17.11" resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.17.11.tgz#7385be5eb53b010817e258b180be52dc951deff0" integrity sha512-QVKUEoCj6R0LCRGugue1yaT0Uk+vjIDuqOntUCC9AR22dguB5+Zd8ch/ySkil62HeGCeGmSgnKWhTxUhGrhONw== -esbuild@0.17.10: - version "0.17.10" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.10.tgz#3be050561b34c5dc05b46978f4e1f326d5cc9437" - integrity sha512-n7V3v29IuZy5qgxx25TKJrEm0FHghAlS6QweUcyIgh/U0zYmQcvogWROitrTyZId1mHSkuhhuyEXtI9OXioq7A== - optionalDependencies: - "@esbuild/android-arm" "0.17.10" - "@esbuild/android-arm64" "0.17.10" - "@esbuild/android-x64" "0.17.10" - "@esbuild/darwin-arm64" "0.17.10" - "@esbuild/darwin-x64" "0.17.10" - "@esbuild/freebsd-arm64" "0.17.10" - "@esbuild/freebsd-x64" "0.17.10" - "@esbuild/linux-arm" "0.17.10" - "@esbuild/linux-arm64" "0.17.10" - "@esbuild/linux-ia32" "0.17.10" - "@esbuild/linux-loong64" "0.17.10" - "@esbuild/linux-mips64el" "0.17.10" - "@esbuild/linux-ppc64" "0.17.10" - "@esbuild/linux-riscv64" "0.17.10" - "@esbuild/linux-s390x" "0.17.10" - "@esbuild/linux-x64" "0.17.10" - "@esbuild/netbsd-x64" "0.17.10" - "@esbuild/openbsd-x64" "0.17.10" - "@esbuild/sunos-x64" "0.17.10" - "@esbuild/win32-arm64" "0.17.10" - "@esbuild/win32-ia32" "0.17.10" - "@esbuild/win32-x64" "0.17.10" +esbuild-wasm@0.17.12: + version "0.17.12" + resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.17.12.tgz#eca7f7813e5e4110dec3071f2aec2a5626e05f3e" + integrity sha512-YKnoS66cc4klnxt29CbuC/gIkM1kr2h1CJKQGT+h2rQUDm7PfCxRa7lBWuz0Aa6WBBgkHAY4f9PA6BmPlKj0Ew== esbuild@0.17.11: version "0.17.11" @@ -7697,6 +7724,34 @@ esbuild@0.17.11: "@esbuild/win32-ia32" "0.17.11" "@esbuild/win32-x64" "0.17.11" +esbuild@0.17.12: + version "0.17.12" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.12.tgz#2ad7523bf1bc01881e9d904bc04e693bd3bdcf2f" + integrity sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ== + optionalDependencies: + "@esbuild/android-arm" "0.17.12" + "@esbuild/android-arm64" "0.17.12" + "@esbuild/android-x64" "0.17.12" + "@esbuild/darwin-arm64" "0.17.12" + "@esbuild/darwin-x64" "0.17.12" + "@esbuild/freebsd-arm64" "0.17.12" + "@esbuild/freebsd-x64" "0.17.12" + "@esbuild/linux-arm" "0.17.12" + "@esbuild/linux-arm64" "0.17.12" + "@esbuild/linux-ia32" "0.17.12" + "@esbuild/linux-loong64" "0.17.12" + "@esbuild/linux-mips64el" "0.17.12" + "@esbuild/linux-ppc64" "0.17.12" + "@esbuild/linux-riscv64" "0.17.12" + "@esbuild/linux-s390x" "0.17.12" + "@esbuild/linux-x64" "0.17.12" + "@esbuild/netbsd-x64" "0.17.12" + "@esbuild/openbsd-x64" "0.17.12" + "@esbuild/sunos-x64" "0.17.12" + "@esbuild/win32-arm64" "0.17.12" + "@esbuild/win32-ia32" "0.17.12" + "@esbuild/win32-x64" "0.17.12" + esbuild@^0.17.5: version "0.17.5" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.5.tgz#cd76d75700d49ac050ad9eedfbed777bd6a9d930" @@ -9652,10 +9707,10 @@ ini@2.0.0: resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== -ini@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ini/-/ini-3.0.1.tgz#c76ec81007875bc44d544ff7a11a55d12294102d" - integrity sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ== +ini@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-4.0.0.tgz#35b4b0ba3bb9a3feb8c50dbf92fb1671efda88eb" + integrity sha512-t0ikzf5qkSFqRl1e6ejKBe+Tk2bsQd8ivEkcisyGXsku2t8NvXZ1Y3RRz5vxrDgOrTBOi13CvGsVoI5wVpd7xg== ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.8" @@ -10611,6 +10666,11 @@ klona@^2.0.4, klona@^2.0.5: resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== +klona@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22" + integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== + known-css-properties@^0.25.0: version "0.25.0" resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.25.0.tgz#6ebc4d4b412f602e5cfbeb4086bd544e34c0a776" @@ -10628,6 +10688,14 @@ latest-version@^5.0.0, latest-version@^5.1.0: dependencies: package-json "^6.3.0" +launch-editor@^2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" + integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== + dependencies: + picocolors "^1.0.0" + shell-quote "^1.7.3" + lazystream@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.1.tgz#494c831062f1f9408251ec44db1cba29242a2638" @@ -11403,10 +11471,17 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -mini-css-extract-plugin@2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz#e049d3ea7d3e4e773aad585c6cb329ce0c7b72d7" - integrity sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw== +mini-css-extract-plugin@2.7.3: + version "2.7.3" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.3.tgz#794aa4d598bf178a66b2a35fe287c3df3eac394e" + integrity sha512-CD9cXeKeXLcnMw8FZdtfrRrLaM7gwCl4nKuKn2YkY2Bw5wdlB8zU2cCzw+w2zS9RFvbrufTBkMCJACNPwqQA0w== + dependencies: + schema-utils "^4.0.0" + +mini-css-extract-plugin@2.7.5: + version "2.7.5" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.5.tgz#afbb344977659ec0f1f6e050c7aea456b121cfc5" + integrity sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ== dependencies: schema-utils "^4.0.0" @@ -12644,6 +12719,15 @@ postcss-loader@7.0.2: klona "^2.0.5" semver "^7.3.8" +postcss-loader@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.1.0.tgz#3ba0dfddff06043f3eac7690a1d8b432264bb866" + integrity sha512-vTD2DJ8vJD0Vr1WzMQkRZWRjcynGh3t7NeoLg+Sb1TeuK7etiZfL/ZwHbaVa3M+Qni7Lj/29voV9IggnIUjlIw== + dependencies: + cosmiconfig "^8.0.0" + klona "^2.0.6" + semver "^7.3.8" + postcss-media-query-parser@^0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" @@ -13757,6 +13841,14 @@ sass-loader@13.2.0: klona "^2.0.4" neo-async "^2.6.2" +sass-loader@13.2.1: + version "13.2.1" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.2.1.tgz#5255c9aa5ad6c8f8c869ddf5d48e71fd48ba4b81" + integrity sha512-VQUrgUa5/waIzMrzyuko3sj5WD9NMsYph91cNICx+OaODbRtLl6To2fswLx8MH2qNxXFqRtpvdPQIa7mE93YOA== + dependencies: + klona "^2.0.6" + neo-async "^2.6.2" + sass-lookup@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/sass-lookup/-/sass-lookup-3.0.0.tgz#3b395fa40569738ce857bc258e04df2617c48cac" @@ -13764,10 +13856,10 @@ sass-lookup@^3.0.0: dependencies: commander "^2.16.0" -sass@1.58.3: - version "1.58.3" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.58.3.tgz#2348cc052061ba4f00243a208b09c40e031f270d" - integrity sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A== +sass@1.59.3: + version "1.59.3" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.59.3.tgz#a1ddf855d75c70c26b4555df4403e1bbf8e4403f" + integrity sha512-QCq98N3hX1jfTCoUAsF3eyGuXLsY7BCnCEg9qAact94Yc21npG2/mVOqoDvE0fCbWDqiM4WlcJQla0gWG2YlxQ== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -14106,6 +14198,11 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shell-quote@^1.7.3: + version "1.8.0" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.0.tgz#20d078d0eaf71d54f43bd2ba14a1b5b9bfa5c8ba" + integrity sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ== + shelljs@^0.8.5: version "0.8.5" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" @@ -15007,20 +15104,10 @@ terser-webpack-plugin@^5.1.3: source-map "^0.6.1" terser "^5.7.2" -terser@5.16.4: - version "5.16.4" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.4.tgz#51284b440b93242291a98f2a9903c024cfb70e6e" - integrity sha512-5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug== - dependencies: - "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" - commander "^2.20.0" - source-map-support "~0.5.20" - -terser@5.16.5: - version "5.16.5" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.5.tgz#1c285ca0655f467f92af1bbab46ab72d1cb08e5a" - integrity sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg== +terser@5.16.6: + version "5.16.6" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.6.tgz#f6c7a14a378ee0630fbe3ac8d1f41b4681109533" + integrity sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg== dependencies: "@jridgewell/source-map" "^0.3.2" acorn "^8.5.0" @@ -15967,6 +16054,17 @@ webpack-dev-middleware@6.0.1: range-parser "^1.2.1" schema-utils "^4.0.0" +webpack-dev-middleware@6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-6.0.2.tgz#4aab69257378e01d6fe964a8b2d07e8a87623ebc" + integrity sha512-iOddiJzPcQC6lwOIu60vscbGWth8PCRcWRCwoQcTQf9RMoOWBHg5EyzpGdtSmGMrSPd5vHEfFXmVErQEmkRngQ== + dependencies: + colorette "^2.0.10" + memfs "^3.4.12" + mime-types "^2.1.31" + range-parser "^1.2.1" + schema-utils "^4.0.0" + webpack-dev-middleware@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.1.tgz#aa079a8dedd7e58bfeab358a9af7dab304cee57f" @@ -15978,10 +16076,10 @@ webpack-dev-middleware@^5.3.1: range-parser "^1.2.1" schema-utils "^4.0.0" -webpack-dev-server@4.11.1: - version "4.11.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz#ae07f0d71ca0438cf88446f09029b92ce81380b5" - integrity sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw== +webpack-dev-server@4.12.0: + version "4.12.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.12.0.tgz#e2dcad4d43e486c3bac48ddbf346e77ef03c7428" + integrity sha512-XRN9YRnvOj3TQQ5w/0pR1y1xDcVnbWtNkTri46kuEbaWUPTHsWUvOyAAI7PZHLY+hsFki2kRltJjKMw7e+IiqA== dependencies: "@types/bonjour" "^3.5.9" "@types/connect-history-api-fallback" "^1.3.5" @@ -16002,6 +16100,7 @@ webpack-dev-server@4.11.1: html-entities "^2.3.2" http-proxy-middleware "^2.0.3" ipaddr.js "^2.0.1" + launch-editor "^2.6.0" open "^8.0.9" p-retry "^4.5.0" rimraf "^3.0.2" @@ -16011,7 +16110,43 @@ webpack-dev-server@4.11.1: sockjs "^0.3.24" spdy "^4.0.2" webpack-dev-middleware "^5.3.1" - ws "^8.4.2" + ws "^8.13.0" + +webpack-dev-server@4.13.1: + version "4.13.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.13.1.tgz#6417a9b5d2f528e7644b68d6ed335e392dccffe8" + integrity sha512-5tWg00bnWbYgkN+pd5yISQKDejRBYGEw15RaEEslH+zdbNDxxaZvEAO2WulaSaFKb5n3YG8JXsGaDsut1D0xdA== + dependencies: + "@types/bonjour" "^3.5.9" + "@types/connect-history-api-fallback" "^1.3.5" + "@types/express" "^4.17.13" + "@types/serve-index" "^1.9.1" + "@types/serve-static" "^1.13.10" + "@types/sockjs" "^0.3.33" + "@types/ws" "^8.5.1" + ansi-html-community "^0.0.8" + bonjour-service "^1.0.11" + chokidar "^3.5.3" + colorette "^2.0.10" + compression "^1.7.4" + connect-history-api-fallback "^2.0.0" + default-gateway "^6.0.3" + express "^4.17.3" + graceful-fs "^4.2.6" + html-entities "^2.3.2" + http-proxy-middleware "^2.0.3" + ipaddr.js "^2.0.1" + launch-editor "^2.6.0" + open "^8.0.9" + p-retry "^4.5.0" + rimraf "^3.0.2" + schema-utils "^4.0.0" + selfsigned "^2.1.1" + serve-index "^1.9.1" + sockjs "^0.3.24" + spdy "^4.0.2" + webpack-dev-middleware "^5.3.1" + ws "^8.13.0" webpack-merge@5.8.0: version "5.8.0" @@ -16033,10 +16168,40 @@ webpack-subresource-integrity@5.1.0: dependencies: typed-assert "^1.0.8" -webpack@5.75.0: - version "5.75.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.75.0.tgz#1e440468647b2505860e94c9ff3e44d5b582c152" - integrity sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ== +webpack@5.76.1: + version "5.76.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.1.tgz#7773de017e988bccb0f13c7d75ec245f377d295c" + integrity sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ== + dependencies: + "@types/eslint-scope" "^3.7.3" + "@types/estree" "^0.0.51" + "@webassemblyjs/ast" "1.11.1" + "@webassemblyjs/wasm-edit" "1.11.1" + "@webassemblyjs/wasm-parser" "1.11.1" + acorn "^8.7.1" + acorn-import-assertions "^1.7.6" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.10.0" + es-module-lexer "^0.9.0" + eslint-scope "5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.9" + json-parse-even-better-errors "^2.3.1" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + schema-utils "^3.1.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.1.3" + watchpack "^2.4.0" + webpack-sources "^3.2.3" + +webpack@5.76.2: + version "5.76.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.2.tgz#6f80d1c1d1e3bf704db571b2504a0461fac80230" + integrity sha512-Th05ggRm23rVzEOlX8y67NkYCHa9nTNcwHPBhdg+lKG+mtiW7XgggjAeeLnADAe7mLjJ6LUNfgHAuRRh+Z6J7w== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^0.0.51" @@ -16228,10 +16393,10 @@ ws@^7.2.3: resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67" integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A== -ws@^8.4.2: - version "8.5.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f" - integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== +ws@^8.13.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== ws@~3.3.1: version "3.3.3"