@angular/material-experimental 21.0.0-next.9 → 21.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/column-resize.mjs +521 -257
- package/fesm2022/column-resize.mjs.map +1 -1
- package/fesm2022/material-experimental.mjs +1 -2
- package/fesm2022/material-experimental.mjs.map +1 -1
- package/fesm2022/menubar.mjs +182 -60
- package/fesm2022/menubar.mjs.map +1 -1
- package/fesm2022/popover-edit.mjs +351 -178
- package/fesm2022/popover-edit.mjs.map +1 -1
- package/fesm2022/selection.mjs +418 -201
- package/fesm2022/selection.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"column-resize.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resize-strategy.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/common.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/column-resize.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/column-resize-flex.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/default-enabled-column-resize.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/default-enabled-column-resize-flex.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/overlay-handle.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/common.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/default-enabled-resizable.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/resizable.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-module.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Injectable, Provider} from '@angular/core';\n\nimport {\n ResizeStrategy,\n CdkFlexTableResizeStrategy,\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n} from '@angular/cdk-experimental/column-resize';\n\nexport {TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER};\n\n/**\n * Overrides CdkFlexTableResizeStrategy to match mat-column elements.\n */\n@Injectable()\nexport class MatFlexTableResizeStrategy extends CdkFlexTableResizeStrategy {\n protected override getColumnCssClass(cssFriendlyColumnName: string): string {\n return `mat-column-${cssFriendlyColumnName}`;\n }\n}\n\nexport const FLEX_RESIZE_STRATEGY_PROVIDER: Provider = {\n provide: ResizeStrategy,\n useClass: MatFlexTableResizeStrategy,\n};\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Provider} from '@angular/core';\n\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n FLEX_RESIZE_STRATEGY_PROVIDER,\n} from '../resize-strategy';\n\nconst PROVIDERS: Provider[] = [\n ColumnResizeNotifier,\n HeaderRowEventDispatcher,\n ColumnResizeNotifierSource,\n {provide: _COALESCED_STYLE_SCHEDULER, useClass: _CoalescedStyleScheduler},\n];\nexport const TABLE_PROVIDERS: Provider[] = [\n ...PROVIDERS,\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n];\nexport const FLEX_PROVIDERS: Provider[] = [...PROVIDERS, FLEX_RESIZE_STRATEGY_PROVIDER];\n\nexport const TABLE_HOST_BINDINGS = {\n 'class': 'mat-column-resize-table',\n};\nexport const FLEX_HOST_BINDINGS = {\n 'class': 'mat-column-resize-flex',\n};\n\nexport abstract class AbstractMatColumnResize extends ColumnResize {\n getTableHeight() {\n return this.elementRef.nativeElement!.offsetHeight;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, TABLE_HOST_BINDINGS, TABLE_PROVIDERS} from './common';\n\n/**\n * Explicitly enables column resizing for a table-based mat-table.\n * Individual columns must be annotated specifically.\n */\n@Directive({\n selector: 'table[mat-table][columnResize]',\n host: TABLE_HOST_BINDINGS,\n providers: [...TABLE_PROVIDERS, {provide: ColumnResize, useExisting: MatColumnResize}],\n})\nexport class MatColumnResize extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, FLEX_HOST_BINDINGS, FLEX_PROVIDERS} from './common';\n\n/**\n * Explicitly enables column resizing for a flexbox-based mat-table.\n * Individual columns must be annotated specifically.\n */\n@Directive({\n selector: 'mat-table[columnResize]',\n host: FLEX_HOST_BINDINGS,\n providers: [...FLEX_PROVIDERS, {provide: ColumnResize, useExisting: MatColumnResizeFlex}],\n})\nexport class MatColumnResizeFlex extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, TABLE_HOST_BINDINGS, TABLE_PROVIDERS} from './common';\n\n/**\n * Implicitly enables column resizing for a table-based mat-table.\n * Individual columns will be resizable unless opted out.\n */\n@Directive({\n selector: 'table[mat-table]',\n host: TABLE_HOST_BINDINGS,\n providers: [\n ...TABLE_PROVIDERS,\n {provide: ColumnResize, useExisting: MatDefaultEnabledColumnResize},\n ],\n})\nexport class MatDefaultEnabledColumnResize extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, FLEX_HOST_BINDINGS, FLEX_PROVIDERS} from './common';\n\n/**\n * Implicitly enables column resizing for a flexbox-based mat-table.\n * Individual columns will be resizable unless opted out.\n */\n@Directive({\n selector: 'mat-table',\n host: FLEX_HOST_BINDINGS,\n providers: [\n ...FLEX_PROVIDERS,\n {provide: ColumnResize, useExisting: MatDefaultEnabledColumnResizeFlex},\n ],\n})\nexport class MatDefaultEnabledColumnResizeFlex extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n ChangeDetectionStrategy,\n Component,\n ElementRef,\n NgZone,\n ViewChild,\n ViewEncapsulation,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {Directionality} from '@angular/cdk/bidi';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeOverlayHandle,\n ResizeRef,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize} from './column-resize-directives/common';\n\n/**\n * Component shown over the edge of a resizable column that is responsible\n * for handling column resize mouse events and displaying a vertical line along the column edge.\n */\n@Component({\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n host: {'class': 'mat-column-resize-overlay-thumb'},\n template: '<div #top class=\"mat-column-resize-overlay-thumb-top\"></div>',\n})\nexport class MatColumnResizeOverlayHandle extends ResizeOverlayHandle {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeRef = inject(ResizeRef);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly document = inject(DOCUMENT);\n\n @ViewChild('top', {static: true}) topElement: ElementRef<HTMLElement>;\n\n protected override updateResizeActive(active: boolean): void {\n super.updateResizeActive(active);\n\n const originHeight = this.resizeRef.origin.nativeElement.offsetHeight;\n this.topElement.nativeElement.style.height = `${originHeight}px`;\n this.resizeRef.overlayRef.updateSize({\n height: active\n ? (this.columnResize as AbstractMatColumnResize).getTableHeight()\n : originHeight,\n });\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Type} from '@angular/core';\nimport {Resizable} from '@angular/cdk-experimental/column-resize';\nimport {MatColumnResizeOverlayHandle} from '../overlay-handle';\n\nexport abstract class AbstractMatResizable extends Resizable<MatColumnResizeOverlayHandle> {\n override minWidthPxInternal = 32;\n\n protected override getInlineHandleCssClassName(): string {\n return 'mat-resizable-handle';\n }\n\n protected override getOverlayHandleComponentType(): Type<MatColumnResizeOverlayHandle> {\n return MatColumnResizeOverlayHandle;\n }\n}\n\nexport const RESIZABLE_HOST_BINDINGS = {\n 'class': 'mat-resizable',\n};\n\nexport const RESIZABLE_INPUTS = [\n {name: 'minWidthPx', alias: 'matResizableMinWidthPx'},\n {name: 'maxWidthPx', alias: 'matResizableMaxWidthPx'},\n];\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Directive,\n ElementRef,\n Injector,\n NgZone,\n ViewContainerRef,\n ChangeDetectorRef,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {Directionality} from '@angular/cdk/bidi';\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeStrategy,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatResizable, RESIZABLE_HOST_BINDINGS, RESIZABLE_INPUTS} from './common';\n\n/**\n * Implicitly enables column resizing for a mat-header-cell unless the disableResize attribute\n * is present.\n */\n@Directive({\n selector: 'mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])',\n host: RESIZABLE_HOST_BINDINGS,\n inputs: RESIZABLE_INPUTS,\n})\nexport class MatDefaultResizable extends AbstractMatResizable {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly injector = inject(Injector);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeStrategy = inject(ResizeStrategy);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly viewContainerRef = inject(ViewContainerRef);\n protected readonly changeDetectorRef = inject(ChangeDetectorRef);\n protected readonly document = inject(DOCUMENT);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Directive,\n ElementRef,\n Injector,\n NgZone,\n ViewContainerRef,\n ChangeDetectorRef,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {Directionality} from '@angular/cdk/bidi';\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeStrategy,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatResizable, RESIZABLE_HOST_BINDINGS, RESIZABLE_INPUTS} from './common';\n\n/**\n * Explicitly enables column resizing for a mat-header-cell.\n */\n@Directive({\n selector: 'mat-header-cell[resizable], th[mat-header-cell][resizable]',\n host: RESIZABLE_HOST_BINDINGS,\n inputs: RESIZABLE_INPUTS,\n})\nexport class MatResizable extends AbstractMatResizable {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly injector = inject(Injector);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeStrategy = inject(ResizeStrategy);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly viewContainerRef = inject(ViewContainerRef);\n protected readonly changeDetectorRef = inject(ChangeDetectorRef);\n protected readonly document = inject(DOCUMENT);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {NgModule} from '@angular/core';\nimport {OverlayModule} from '@angular/cdk/overlay';\n\nimport {MatColumnResize} from './column-resize-directives/column-resize';\nimport {MatColumnResizeFlex} from './column-resize-directives/column-resize-flex';\nimport {MatDefaultEnabledColumnResize} from './column-resize-directives/default-enabled-column-resize';\nimport {MatDefaultEnabledColumnResizeFlex} from './column-resize-directives/default-enabled-column-resize-flex';\nimport {MatDefaultResizable} from './resizable-directives/default-enabled-resizable';\nimport {MatResizable} from './resizable-directives/resizable';\nimport {MatColumnResizeOverlayHandle} from './overlay-handle';\n\nconst ENTRY_COMMON_COMPONENTS = [MatColumnResizeOverlayHandle];\n\n@NgModule({\n imports: [...ENTRY_COMMON_COMPONENTS],\n exports: ENTRY_COMMON_COMPONENTS,\n})\nexport class MatColumnResizeCommonModule {}\n\nconst IMPORTS = [OverlayModule, MatColumnResizeCommonModule];\n\n@NgModule({\n imports: [\n ...IMPORTS,\n MatDefaultEnabledColumnResize,\n MatDefaultEnabledColumnResizeFlex,\n MatDefaultResizable,\n ],\n exports: [MatDefaultEnabledColumnResize, MatDefaultEnabledColumnResizeFlex, MatDefaultResizable],\n})\nexport class MatDefaultEnabledColumnResizeModule {}\n\n@NgModule({\n imports: [...IMPORTS, MatColumnResize, MatColumnResizeFlex, MatResizable],\n exports: [MatColumnResize, MatColumnResizeFlex, MatResizable],\n})\nexport class MatColumnResizeModule {}\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"column-resize.mjs","sources":["../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resize-strategy.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/common.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/column-resize.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/column-resize-flex.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/default-enabled-column-resize.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-directives/default-enabled-column-resize-flex.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/overlay-handle.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/common.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/default-enabled-resizable.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/resizable-directives/resizable.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/column-resize/column-resize-module.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Injectable, Provider} from '@angular/core';\n\nimport {\n ResizeStrategy,\n CdkFlexTableResizeStrategy,\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n} from '@angular/cdk-experimental/column-resize';\n\nexport {TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER};\n\n/**\n * Overrides CdkFlexTableResizeStrategy to match mat-column elements.\n */\n@Injectable()\nexport class MatFlexTableResizeStrategy extends CdkFlexTableResizeStrategy {\n protected override getColumnCssClass(cssFriendlyColumnName: string): string {\n return `mat-column-${cssFriendlyColumnName}`;\n }\n}\n\nexport const FLEX_RESIZE_STRATEGY_PROVIDER: Provider = {\n provide: ResizeStrategy,\n useClass: MatFlexTableResizeStrategy,\n};\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Provider} from '@angular/core';\n\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n FLEX_RESIZE_STRATEGY_PROVIDER,\n} from '../resize-strategy';\n\nconst PROVIDERS: Provider[] = [\n ColumnResizeNotifier,\n HeaderRowEventDispatcher,\n ColumnResizeNotifierSource,\n {provide: _COALESCED_STYLE_SCHEDULER, useClass: _CoalescedStyleScheduler},\n];\nexport const TABLE_PROVIDERS: Provider[] = [\n ...PROVIDERS,\n TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER,\n];\nexport const FLEX_PROVIDERS: Provider[] = [...PROVIDERS, FLEX_RESIZE_STRATEGY_PROVIDER];\n\nexport const TABLE_HOST_BINDINGS = {\n 'class': 'mat-column-resize-table',\n};\nexport const FLEX_HOST_BINDINGS = {\n 'class': 'mat-column-resize-flex',\n};\n\nexport abstract class AbstractMatColumnResize extends ColumnResize {\n getTableHeight() {\n return this.elementRef.nativeElement!.offsetHeight;\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, TABLE_HOST_BINDINGS, TABLE_PROVIDERS} from './common';\n\n/**\n * Explicitly enables column resizing for a table-based mat-table.\n * Individual columns must be annotated specifically.\n */\n@Directive({\n selector: 'table[mat-table][columnResize]',\n host: TABLE_HOST_BINDINGS,\n providers: [...TABLE_PROVIDERS, {provide: ColumnResize, useExisting: MatColumnResize}],\n})\nexport class MatColumnResize extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, FLEX_HOST_BINDINGS, FLEX_PROVIDERS} from './common';\n\n/**\n * Explicitly enables column resizing for a flexbox-based mat-table.\n * Individual columns must be annotated specifically.\n */\n@Directive({\n selector: 'mat-table[columnResize]',\n host: FLEX_HOST_BINDINGS,\n providers: [...FLEX_PROVIDERS, {provide: ColumnResize, useExisting: MatColumnResizeFlex}],\n})\nexport class MatColumnResizeFlex extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, TABLE_HOST_BINDINGS, TABLE_PROVIDERS} from './common';\n\n/**\n * Implicitly enables column resizing for a table-based mat-table.\n * Individual columns will be resizable unless opted out.\n */\n@Directive({\n selector: 'table[mat-table]',\n host: TABLE_HOST_BINDINGS,\n providers: [\n ...TABLE_PROVIDERS,\n {provide: ColumnResize, useExisting: MatDefaultEnabledColumnResize},\n ],\n})\nexport class MatDefaultEnabledColumnResize extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Directive, ElementRef, NgZone, inject} from '@angular/core';\nimport {\n ColumnResize,\n ColumnResizeNotifier,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize, FLEX_HOST_BINDINGS, FLEX_PROVIDERS} from './common';\n\n/**\n * Implicitly enables column resizing for a flexbox-based mat-table.\n * Individual columns will be resizable unless opted out.\n */\n@Directive({\n selector: 'mat-table',\n host: FLEX_HOST_BINDINGS,\n providers: [\n ...FLEX_PROVIDERS,\n {provide: ColumnResize, useExisting: MatDefaultEnabledColumnResizeFlex},\n ],\n})\nexport class MatDefaultEnabledColumnResizeFlex extends AbstractMatColumnResize {\n readonly columnResizeNotifier = inject(ColumnResizeNotifier);\n readonly elementRef = inject<ElementRef<HTMLElement>>(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly notifier = inject(ColumnResizeNotifierSource);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n ChangeDetectionStrategy,\n Component,\n ElementRef,\n NgZone,\n ViewChild,\n ViewEncapsulation,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {Directionality} from '@angular/cdk/bidi';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeOverlayHandle,\n ResizeRef,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatColumnResize} from './column-resize-directives/common';\n\n/**\n * Component shown over the edge of a resizable column that is responsible\n * for handling column resize mouse events and displaying a vertical line along the column edge.\n */\n@Component({\n changeDetection: ChangeDetectionStrategy.OnPush,\n encapsulation: ViewEncapsulation.None,\n host: {'class': 'mat-column-resize-overlay-thumb'},\n template: '<div #top class=\"mat-column-resize-overlay-thumb-top\"></div>',\n})\nexport class MatColumnResizeOverlayHandle extends ResizeOverlayHandle {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeRef = inject(ResizeRef);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly document = inject(DOCUMENT);\n\n @ViewChild('top', {static: true}) topElement: ElementRef<HTMLElement>;\n\n protected override updateResizeActive(active: boolean): void {\n super.updateResizeActive(active);\n\n const originHeight = this.resizeRef.origin.nativeElement.offsetHeight;\n this.topElement.nativeElement.style.height = `${originHeight}px`;\n this.resizeRef.overlayRef.updateSize({\n height: active\n ? (this.columnResize as AbstractMatColumnResize).getTableHeight()\n : originHeight,\n });\n }\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Type} from '@angular/core';\nimport {Resizable} from '@angular/cdk-experimental/column-resize';\nimport {MatColumnResizeOverlayHandle} from '../overlay-handle';\n\nexport abstract class AbstractMatResizable extends Resizable<MatColumnResizeOverlayHandle> {\n override minWidthPxInternal = 32;\n\n protected override getInlineHandleCssClassName(): string {\n return 'mat-resizable-handle';\n }\n\n protected override getOverlayHandleComponentType(): Type<MatColumnResizeOverlayHandle> {\n return MatColumnResizeOverlayHandle;\n }\n}\n\nexport const RESIZABLE_HOST_BINDINGS = {\n 'class': 'mat-resizable',\n};\n\nexport const RESIZABLE_INPUTS = [\n {name: 'minWidthPx', alias: 'matResizableMinWidthPx'},\n {name: 'maxWidthPx', alias: 'matResizableMaxWidthPx'},\n];\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Directive,\n ElementRef,\n Injector,\n NgZone,\n ViewContainerRef,\n ChangeDetectorRef,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {Directionality} from '@angular/cdk/bidi';\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeStrategy,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatResizable, RESIZABLE_HOST_BINDINGS, RESIZABLE_INPUTS} from './common';\n\n/**\n * Implicitly enables column resizing for a mat-header-cell unless the disableResize attribute\n * is present.\n */\n@Directive({\n selector: 'mat-header-cell:not([disableResize]), th[mat-header-cell]:not([disableResize])',\n host: RESIZABLE_HOST_BINDINGS,\n inputs: RESIZABLE_INPUTS,\n})\nexport class MatDefaultResizable extends AbstractMatResizable {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly injector = inject(Injector);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeStrategy = inject(ResizeStrategy);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly viewContainerRef = inject(ViewContainerRef);\n protected readonly changeDetectorRef = inject(ChangeDetectorRef);\n protected readonly document = inject(DOCUMENT);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {\n Directive,\n ElementRef,\n Injector,\n NgZone,\n ViewContainerRef,\n ChangeDetectorRef,\n inject,\n DOCUMENT,\n} from '@angular/core';\n\nimport {Directionality} from '@angular/cdk/bidi';\nimport {CdkColumnDef} from '@angular/cdk/table';\nimport {\n _COALESCED_STYLE_SCHEDULER,\n _CoalescedStyleScheduler,\n ColumnResize,\n ColumnResizeNotifierSource,\n HeaderRowEventDispatcher,\n ResizeStrategy,\n} from '@angular/cdk-experimental/column-resize';\n\nimport {AbstractMatResizable, RESIZABLE_HOST_BINDINGS, RESIZABLE_INPUTS} from './common';\n\n/**\n * Explicitly enables column resizing for a mat-header-cell.\n */\n@Directive({\n selector: 'mat-header-cell[resizable], th[mat-header-cell][resizable]',\n host: RESIZABLE_HOST_BINDINGS,\n inputs: RESIZABLE_INPUTS,\n})\nexport class MatResizable extends AbstractMatResizable {\n protected readonly columnDef = inject(CdkColumnDef);\n protected readonly columnResize = inject(ColumnResize);\n protected readonly directionality = inject(Directionality);\n protected readonly elementRef = inject(ElementRef);\n protected readonly eventDispatcher = inject(HeaderRowEventDispatcher);\n protected readonly injector = inject(Injector);\n protected readonly ngZone = inject(NgZone);\n protected readonly resizeNotifier = inject(ColumnResizeNotifierSource);\n protected readonly resizeStrategy = inject(ResizeStrategy);\n protected readonly styleScheduler = inject<_CoalescedStyleScheduler>(_COALESCED_STYLE_SCHEDULER);\n protected readonly viewContainerRef = inject(ViewContainerRef);\n protected readonly changeDetectorRef = inject(ChangeDetectorRef);\n protected readonly document = inject(DOCUMENT);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {NgModule} from '@angular/core';\nimport {OverlayModule} from '@angular/cdk/overlay';\n\nimport {MatColumnResize} from './column-resize-directives/column-resize';\nimport {MatColumnResizeFlex} from './column-resize-directives/column-resize-flex';\nimport {MatDefaultEnabledColumnResize} from './column-resize-directives/default-enabled-column-resize';\nimport {MatDefaultEnabledColumnResizeFlex} from './column-resize-directives/default-enabled-column-resize-flex';\nimport {MatDefaultResizable} from './resizable-directives/default-enabled-resizable';\nimport {MatResizable} from './resizable-directives/resizable';\nimport {MatColumnResizeOverlayHandle} from './overlay-handle';\n\nconst ENTRY_COMMON_COMPONENTS = [MatColumnResizeOverlayHandle];\n\n@NgModule({\n imports: [...ENTRY_COMMON_COMPONENTS],\n exports: ENTRY_COMMON_COMPONENTS,\n})\nexport class MatColumnResizeCommonModule {}\n\nconst IMPORTS = [OverlayModule, MatColumnResizeCommonModule];\n\n@NgModule({\n imports: [\n ...IMPORTS,\n MatDefaultEnabledColumnResize,\n MatDefaultEnabledColumnResizeFlex,\n MatDefaultResizable,\n ],\n exports: [MatDefaultEnabledColumnResize, MatDefaultEnabledColumnResizeFlex, MatDefaultResizable],\n})\nexport class MatDefaultEnabledColumnResizeModule {}\n\n@NgModule({\n imports: [...IMPORTS, MatColumnResize, MatColumnResizeFlex, MatResizable],\n exports: [MatColumnResize, MatColumnResizeFlex, MatResizable],\n})\nexport class MatColumnResizeModule {}\n"],"names":["MatFlexTableResizeStrategy","CdkFlexTableResizeStrategy","getColumnCssClass","cssFriendlyColumnName","deps","target","i0","ɵɵFactoryTarget","Injectable","decorators","FLEX_RESIZE_STRATEGY_PROVIDER","provide","ResizeStrategy","useClass","PROVIDERS","ColumnResizeNotifier","HeaderRowEventDispatcher","ColumnResizeNotifierSource","_COALESCED_STYLE_SCHEDULER","_CoalescedStyleScheduler","TABLE_PROVIDERS","TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER","FLEX_PROVIDERS","TABLE_HOST_BINDINGS","FLEX_HOST_BINDINGS","AbstractMatColumnResize","ColumnResize","getTableHeight","elementRef","nativeElement","offsetHeight","MatColumnResize","columnResizeNotifier","inject","ElementRef","eventDispatcher","ngZone","NgZone","notifier","Directive","ɵdir","ɵɵngDeclareDirective","minVersion","version","type","isStandalone","selector","host","classAttribute","providers","useExisting","usesInheritance","ngImport","args","MatColumnResizeFlex","MatDefaultEnabledColumnResize","MatDefaultEnabledColumnResizeFlex","MatColumnResizeOverlayHandle","ResizeOverlayHandle","columnDef","CdkColumnDef","columnResize","directionality","Directionality","resizeNotifier","resizeRef","ResizeRef","styleScheduler","document","DOCUMENT","topElement","updateResizeActive","active","originHeight","origin","style","height","overlayRef","updateSize","Component","ɵcmp","ɵɵngDeclareComponent","isInline","changeDetection","ChangeDetectionStrategy","OnPush","encapsulation","ViewEncapsulation","None","template","ViewChild","static","AbstractMatResizable","Resizable","minWidthPxInternal","getInlineHandleCssClassName","getOverlayHandleComponentType","RESIZABLE_HOST_BINDINGS","RESIZABLE_INPUTS","name","alias","MatDefaultResizable","injector","Injector","resizeStrategy","viewContainerRef","ViewContainerRef","changeDetectorRef","ChangeDetectorRef","inputs","minWidthPx","maxWidthPx","MatResizable","ENTRY_COMMON_COMPONENTS","MatColumnResizeCommonModule","NgModule","imports","exports","IMPORTS","OverlayModule","MatDefaultEnabledColumnResizeModule","ɵmod","ɵɵngDeclareNgModule","ɵinj","ɵɵngDeclareInjector","MatColumnResizeModule"],"mappings":";;;;;;;;AAsBM,MAAOA,0BAA2B,SAAQC,0BAA0B,CAAA;EACrDC,iBAAiBA,CAACC,qBAA6B,EAAA;IAChE,OAAO,CAAA,WAAA,EAAcA,qBAAqB,CAAE,CAAA;AAC9C;;;;;UAHWH,0BAA0B;AAAAI,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAC;AAAA,GAAA,CAAA;;;;;UAA1BR;AAA0B,GAAA,CAAA;;;;;;QAA1BA,0BAA0B;AAAAS,EAAAA,UAAA,EAAA,CAAA;UADtCD;;;AAOM,MAAME,6BAA6B,GAAa;AACrDC,EAAAA,OAAO,EAAEC,cAAc;AACvBC,EAAAA,QAAQ,EAAEb;;;ACNZ,MAAMc,SAAS,GAAe,CAC5BC,oBAAoB,EACpBC,wBAAwB,EACxBC,0BAA0B,EAC1B;AAACN,EAAAA,OAAO,EAAEO,0BAA0B;AAAEL,EAAAA,QAAQ,EAAEM;AAAyB,CAAA,CAC1E;AACM,MAAMC,eAAe,GAAe,CACzC,GAAGN,SAAS,EACZO,2CAA2C,CAC5C;AACM,MAAMC,cAAc,GAAe,CAAC,GAAGR,SAAS,EAAEJ,6BAA6B,CAAC;AAEhF,MAAMa,mBAAmB,GAAG;AACjC,EAAA,OAAO,EAAE;CACV;AACM,MAAMC,kBAAkB,GAAG;AAChC,EAAA,OAAO,EAAE;CACV;AAEK,MAAgBC,uBAAwB,SAAQC,YAAY,CAAA;AAChEC,EAAAA,cAAcA,GAAA;AACZ,IAAA,OAAO,IAAI,CAACC,UAAU,CAACC,aAAc,CAACC,YAAY;AACpD;AACD;;ACpBK,MAAOC,eAAgB,SAAQN,uBAAuB,CAAA;AACjDO,EAAAA,oBAAoB,GAAGC,MAAM,CAAClB,oBAAoB,CAAC;AACnDa,EAAAA,UAAU,GAAGK,MAAM,CAA0BC,UAAU,CAAC;AAC9CC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDoB,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvBC,EAAAA,QAAQ,GAAGL,MAAM,CAAChB,0BAA0B,CAAC;;;;;UALrDc,eAAe;AAAA3B,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;AAAf,EAAA,OAAAC,IAAA,GAAAlC,EAAA,CAAAmC,oBAAA,CAAA;AAAAC,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAC,IAAAA,IAAA,EAAAb,eAAe;AAFfc,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,gCAAA;AAAAC,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAC,IAAAA,SAAA,EAAA,CAAC,GAAG7B,eAAe,EAAE;AAACT,MAAAA,OAAO,EAAEe,YAAY;AAAEwB,MAAAA,WAAW,EAAEnB;KAAgB,CAAC;AAAAoB,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAE3EyB,eAAe;AAAAtB,EAAAA,UAAA,EAAA,CAAA;UAL3B8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,gCAAgC;AAC1CC,MAAAA,IAAI,EAAExB,mBAAmB;AACzB0B,MAAAA,SAAS,EAAE,CAAC,GAAG7B,eAAe,EAAE;AAACT,QAAAA,OAAO,EAAEe,YAAY;AAAEwB,QAAAA,WAAW,EAAAnB;OAAkB;KACtF;;;;ACCK,MAAOuB,mBAAoB,SAAQ7B,uBAAuB,CAAA;AACrDO,EAAAA,oBAAoB,GAAGC,MAAM,CAAClB,oBAAoB,CAAC;AACnDa,EAAAA,UAAU,GAAGK,MAAM,CAA0BC,UAAU,CAAC;AAC9CC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDoB,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvBC,EAAAA,QAAQ,GAAGL,MAAM,CAAChB,0BAA0B,CAAC;;;;;UALrDqC,mBAAmB;AAAAlD,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;AAAnB,EAAA,OAAAC,IAAA,GAAAlC,EAAA,CAAAmC,oBAAA,CAAA;AAAAC,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAC,IAAAA,IAAA,EAAAU,mBAAmB;AAFnBT,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,yBAAA;AAAAC,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAC,IAAAA,SAAA,EAAA,CAAC,GAAG3B,cAAc,EAAE;AAACX,MAAAA,OAAO,EAAEe,YAAY;AAAEwB,MAAAA,WAAW,EAAEI;KAAoB,CAAC;AAAAH,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAE9EgD,mBAAmB;AAAA7C,EAAAA,UAAA,EAAA,CAAA;UAL/B8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,yBAAyB;AACnCC,MAAAA,IAAI,EAAEvB,kBAAkB;AACxByB,MAAAA,SAAS,EAAE,CAAC,GAAG3B,cAAc,EAAE;AAACX,QAAAA,OAAO,EAAEe,YAAY;AAAEwB,QAAAA,WAAW,EAAAI;OAAsB;KACzF;;;;ACIK,MAAOC,6BAA8B,SAAQ9B,uBAAuB,CAAA;AAC/DO,EAAAA,oBAAoB,GAAGC,MAAM,CAAClB,oBAAoB,CAAC;AACnDa,EAAAA,UAAU,GAAGK,MAAM,CAA0BC,UAAU,CAAC;AAC9CC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDoB,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvBC,EAAAA,QAAQ,GAAGL,MAAM,CAAChB,0BAA0B,CAAC;;;;;UALrDsC,6BAA6B;AAAAnD,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;AAA7B,EAAA,OAAAC,IAAA,GAAAlC,EAAA,CAAAmC,oBAAA,CAAA;AAAAC,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAC,IAAAA,IAAA,EAAAW,6BAA6B;AAL7BV,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,kBAAA;AAAAC,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAC,IAAAA,SAAA,EAAA,CACT,GAAG7B,eAAe,EAClB;AAACT,MAAAA,OAAO,EAAEe,YAAY;AAAEwB,MAAAA,WAAW,EAAEK;AAA8B,KAAA,CACpE;AAAAJ,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAEUiD,6BAA6B;AAAA9C,EAAAA,UAAA,EAAA,CAAA;UARzC8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,kBAAkB;AAC5BC,MAAAA,IAAI,EAAExB,mBAAmB;AACzB0B,MAAAA,SAAS,EAAE,CACT,GAAG7B,eAAe,EAClB;AAACT,QAAAA,OAAO,EAAEe,YAAY;AAAEwB,QAAAA,WAAW;OAAgC;KAEtE;;;;ACCK,MAAOM,iCAAkC,SAAQ/B,uBAAuB,CAAA;AACnEO,EAAAA,oBAAoB,GAAGC,MAAM,CAAClB,oBAAoB,CAAC;AACnDa,EAAAA,UAAU,GAAGK,MAAM,CAA0BC,UAAU,CAAC;AAC9CC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDoB,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvBC,EAAAA,QAAQ,GAAGL,MAAM,CAAChB,0BAA0B,CAAC;;;;;UALrDuC,iCAAiC;AAAApD,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;AAAjC,EAAA,OAAAC,IAAA,GAAAlC,EAAA,CAAAmC,oBAAA,CAAA;AAAAC,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAC,IAAAA,IAAA,EAAAY,iCAAiC;AALjCX,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,WAAA;AAAAC,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAC,IAAAA,SAAA,EAAA,CACT,GAAG3B,cAAc,EACjB;AAACX,MAAAA,OAAO,EAAEe,YAAY;AAAEwB,MAAAA,WAAW,EAAEM;AAAkC,KAAA,CACxE;AAAAL,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAEUkD,iCAAiC;AAAA/C,EAAAA,UAAA,EAAA,CAAA;UAR7C8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,WAAW;AACrBC,MAAAA,IAAI,EAAEvB,kBAAkB;AACxByB,MAAAA,SAAS,EAAE,CACT,GAAG3B,cAAc,EACjB;AAACX,QAAAA,OAAO,EAAEe,YAAY;AAAEwB,QAAAA,WAAW;OAAoC;KAE1E;;;;ACcK,MAAOO,4BAA6B,SAAQC,mBAAmB,CAAA;AAChDC,EAAAA,SAAS,GAAG1B,MAAM,CAAC2B,YAAY,CAAC;AAChCC,EAAAA,YAAY,GAAG5B,MAAM,CAACP,YAAY,CAAC;AACnCoC,EAAAA,cAAc,GAAG7B,MAAM,CAAC8B,cAAc,CAAC;AACvCnC,EAAAA,UAAU,GAAGK,MAAM,CAACC,UAAU,CAAC;AAC/BC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDoB,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvB2B,EAAAA,cAAc,GAAG/B,MAAM,CAAChB,0BAA0B,CAAC;AACnDgD,EAAAA,SAAS,GAAGhC,MAAM,CAACiC,SAAS,CAAC;AAC7BC,EAAAA,cAAc,GAAGlC,MAAM,CAA2Bf,0BAA0B,CAAC;AAC7EkD,EAAAA,QAAQ,GAAGnC,MAAM,CAACoC,QAAQ,CAAC;EAEZC,UAAU;EAEzBC,kBAAkBA,CAACC,MAAe,EAAA;AACnD,IAAA,KAAK,CAACD,kBAAkB,CAACC,MAAM,CAAC;IAEhC,MAAMC,YAAY,GAAG,IAAI,CAACR,SAAS,CAACS,MAAM,CAAC7C,aAAa,CAACC,YAAY;IACrE,IAAI,CAACwC,UAAU,CAACzC,aAAa,CAAC8C,KAAK,CAACC,MAAM,GAAG,CAAGH,EAAAA,YAAY,CAAI,EAAA,CAAA;AAChE,IAAA,IAAI,CAACR,SAAS,CAACY,UAAU,CAACC,UAAU,CAAC;MACnCF,MAAM,EAAEJ,MAAM,GACT,IAAI,CAACX,YAAwC,CAAClC,cAAc,EAAE,GAC/D8C;AACL,KAAA,CAAC;AACJ;;;;;UAxBWhB,4BAA4B;AAAArD,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAwE;AAAA,GAAA,CAAA;AAA5B,EAAA,OAAAC,IAAA,GAAA1E,EAAA,CAAA2E,oBAAA,CAAA;AAAAvC,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAC,IAAAA,IAAA,EAAAa,4BAA4B;;;;;;;;;;;;;;;cAF7B,8DAA8D;AAAAyB,IAAAA,QAAA,EAAA,IAAA;AAAAC,IAAAA,eAAA,EAAA7E,EAAA,CAAA8E,uBAAA,CAAAC,MAAA;AAAAC,IAAAA,aAAA,EAAAhF,EAAA,CAAAiF,iBAAA,CAAAC;AAAA,GAAA,CAAA;;;;;;QAE7D/B,4BAA4B;AAAAhD,EAAAA,UAAA,EAAA,CAAA;UANxCsE,SAAS;AAAC1B,IAAAA,IAAA,EAAA,CAAA;MACT8B,eAAe,EAAEC,uBAAuB,CAACC,MAAM;MAC/CC,aAAa,EAAEC,iBAAiB,CAACC,IAAI;AACrCzC,MAAAA,IAAI,EAAE;AAAC,QAAA,OAAO,EAAE;OAAkC;AAClD0C,MAAAA,QAAQ,EAAE;KACX;;;AAamCnB,IAAAA,UAAU,EAAA,CAAA;YAA3CoB,SAAS;MAACrC,IAAA,EAAA,CAAA,KAAK,EAAE;AAACsC,QAAAA,MAAM,EAAE;OAAK;;;;;AC3C5B,MAAgBC,oBAAqB,SAAQC,SAAuC,CAAA;AAC/EC,EAAAA,kBAAkB,GAAG,EAAE;AAEbC,EAAAA,2BAA2BA,GAAA;AAC5C,IAAA,OAAO,sBAAsB;AAC/B;AAEmBC,EAAAA,6BAA6BA,GAAA;AAC9C,IAAA,OAAOvC,4BAA4B;AACrC;AACD;AAEM,MAAMwC,uBAAuB,GAAG;AACrC,EAAA,OAAO,EAAE;CACV;AAEM,MAAMC,gBAAgB,GAAG,CAC9B;AAACC,EAAAA,IAAI,EAAE,YAAY;AAAEC,EAAAA,KAAK,EAAE;AAAyB,CAAA,EACrD;AAACD,EAAAA,IAAI,EAAE,YAAY;AAAEC,EAAAA,KAAK,EAAE;AAAyB,CAAA,CACtD;;ACUK,MAAOC,mBAAoB,SAAQT,oBAAoB,CAAA;AACxCjC,EAAAA,SAAS,GAAG1B,MAAM,CAAC2B,YAAY,CAAC;AAChCC,EAAAA,YAAY,GAAG5B,MAAM,CAACP,YAAY,CAAC;AACnCoC,EAAAA,cAAc,GAAG7B,MAAM,CAAC8B,cAAc,CAAC;AACvCnC,EAAAA,UAAU,GAAGK,MAAM,CAACC,UAAU,CAAC;AAC/BC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDsF,EAAAA,QAAQ,GAAGrE,MAAM,CAACsE,QAAQ,CAAC;AAC3BnE,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvB2B,EAAAA,cAAc,GAAG/B,MAAM,CAAChB,0BAA0B,CAAC;AACnDuF,EAAAA,cAAc,GAAGvE,MAAM,CAACrB,cAAc,CAAC;AACvCuD,EAAAA,cAAc,GAAGlC,MAAM,CAA2Bf,0BAA0B,CAAC;AAC7EuF,EAAAA,gBAAgB,GAAGxE,MAAM,CAACyE,gBAAgB,CAAC;AAC3CC,EAAAA,iBAAiB,GAAG1E,MAAM,CAAC2E,iBAAiB,CAAC;AAC7CxC,EAAAA,QAAQ,GAAGnC,MAAM,CAACoC,QAAQ,CAAC;;;;;UAbnCgC,mBAAmB;AAAAjG,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;;;;UAAnB8D,mBAAmB;AAAAxD,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,gFAAA;AAAA+D,IAAAA,MAAA,EAAA;AAAAC,MAAAA,UAAA,EAAA,CAAA,wBAAA,EAAA,YAAA,CAAA;AAAAC,MAAAA,UAAA,EAAA,CAAA,wBAAA,EAAA,YAAA;KAAA;AAAAhE,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAG,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAAnB+F,mBAAmB;AAAA5F,EAAAA,UAAA,EAAA,CAAA;UAL/B8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,gFAAgF;AAC1FC,MAAAA,IAAI,EAAEkD,uBAAuB;AAC7BY,MAAAA,MAAM,EAAEX;KACT;;;;ACAK,MAAOc,YAAa,SAAQpB,oBAAoB,CAAA;AACjCjC,EAAAA,SAAS,GAAG1B,MAAM,CAAC2B,YAAY,CAAC;AAChCC,EAAAA,YAAY,GAAG5B,MAAM,CAACP,YAAY,CAAC;AACnCoC,EAAAA,cAAc,GAAG7B,MAAM,CAAC8B,cAAc,CAAC;AACvCnC,EAAAA,UAAU,GAAGK,MAAM,CAACC,UAAU,CAAC;AAC/BC,EAAAA,eAAe,GAAGF,MAAM,CAACjB,wBAAwB,CAAC;AAClDsF,EAAAA,QAAQ,GAAGrE,MAAM,CAACsE,QAAQ,CAAC;AAC3BnE,EAAAA,MAAM,GAAGH,MAAM,CAACI,MAAM,CAAC;AACvB2B,EAAAA,cAAc,GAAG/B,MAAM,CAAChB,0BAA0B,CAAC;AACnDuF,EAAAA,cAAc,GAAGvE,MAAM,CAACrB,cAAc,CAAC;AACvCuD,EAAAA,cAAc,GAAGlC,MAAM,CAA2Bf,0BAA0B,CAAC;AAC7EuF,EAAAA,gBAAgB,GAAGxE,MAAM,CAACyE,gBAAgB,CAAC;AAC3CC,EAAAA,iBAAiB,GAAG1E,MAAM,CAAC2E,iBAAiB,CAAC;AAC7CxC,EAAAA,QAAQ,GAAGnC,MAAM,CAACoC,QAAQ,CAAC;;;;;UAbnC2C,YAAY;AAAA5G,IAAAA,IAAA,EAAA,IAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAAgC;AAAA,GAAA,CAAA;;;;UAAZyE,YAAY;AAAAnE,IAAAA,YAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA,4DAAA;AAAA+D,IAAAA,MAAA,EAAA;AAAAC,MAAAA,UAAA,EAAA,CAAA,wBAAA,EAAA,YAAA,CAAA;AAAAC,MAAAA,UAAA,EAAA,CAAA,wBAAA,EAAA,YAAA;KAAA;AAAAhE,IAAAA,IAAA,EAAA;AAAAC,MAAAA,cAAA,EAAA;KAAA;AAAAG,IAAAA,eAAA,EAAA,IAAA;AAAAC,IAAAA,QAAA,EAAA9C;AAAA,GAAA,CAAA;;;;;;QAAZ0G,YAAY;AAAAvG,EAAAA,UAAA,EAAA,CAAA;UALxB8B,SAAS;AAACc,IAAAA,IAAA,EAAA,CAAA;AACTP,MAAAA,QAAQ,EAAE,4DAA4D;AACtEC,MAAAA,IAAI,EAAEkD,uBAAuB;AAC7BY,MAAAA,MAAM,EAAEX;KACT;;;;ACpBD,MAAMe,uBAAuB,GAAG,CAACxD,4BAA4B,CAAC;MAMjDyD,2BAA2B,CAAA;;;;;UAA3BA,2BAA2B;AAAA9G,IAAAA,IAAA,EAAA,EAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAA4G;AAAA,GAAA,CAAA;;;;;UAA3BD,2BAA2B;IAAAE,OAAA,EAAA,CANP3D,4BAA4B,CAAA;IAAA4D,OAAA,EAAA,CAA5B5D,4BAA4B;AAAA,GAAA,CAAA;;;;;UAMhDyD;AAA2B,GAAA,CAAA;;;;;;QAA3BA,2BAA2B;AAAAzG,EAAAA,UAAA,EAAA,CAAA;UAJvC0G,QAAQ;AAAC9D,IAAAA,IAAA,EAAA,CAAA;AACR+D,MAAAA,OAAO,EAAE,CAAC,GAAGH,uBAAuB,CAAC;AACrCI,MAAAA,OAAO,EAAEJ;KACV;;;AAGD,MAAMK,OAAO,GAAG,CAACC,aAAa,EAAEL,2BAA2B,CAAC;MAW/CM,mCAAmC,CAAA;;;;;UAAnCA,mCAAmC;AAAApH,IAAAA,IAAA,EAAA,EAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAA4G;AAAA,GAAA,CAAA;AAAnC,EAAA,OAAAM,IAAA,GAAAnH,EAAA,CAAAoH,mBAAA,CAAA;AAAAhF,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAS,IAAAA,QAAA,EAAA9C,EAAA;AAAAsC,IAAAA,IAAA,EAAA4E,mCAAmC;IAX/BJ,OAAA,EAAA,CAAAG,aAAa,EAFjBL,2BAA2B,EAOpC3D,6BAA6B,EAC7BC,iCAAiC,EACjC6C,mBAAmB,CAEX;AAAAgB,IAAAA,OAAA,EAAA,CAAA9D,6BAA6B,EAAEC,iCAAiC,EAAE6C,mBAAmB;AAAA,GAAA,CAAA;AAEpF,EAAA,OAAAsB,IAAA,GAAArH,EAAA,CAAAsH,mBAAA,CAAA;AAAAlF,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAS,IAAAA,QAAA,EAAA9C,EAAA;AAAAsC,IAAAA,IAAA,EAAA4E,mCAAmC;cAPzCF,OAAO;AAAA,GAAA,CAAA;;;;;;QAODE,mCAAmC;AAAA/G,EAAAA,UAAA,EAAA,CAAA;UAT/C0G,QAAQ;AAAC9D,IAAAA,IAAA,EAAA,CAAA;MACR+D,OAAO,EAAE,CACP,GAAGE,OAAO,EACV/D,6BAA6B,EAC7BC,iCAAiC,EACjC6C,mBAAmB,CACpB;AACDgB,MAAAA,OAAO,EAAE,CAAC9D,6BAA6B,EAAEC,iCAAiC,EAAE6C,mBAAmB;KAChG;;;MAOYwB,qBAAqB,CAAA;;;;;UAArBA,qBAAqB;AAAAzH,IAAAA,IAAA,EAAA,EAAA;AAAAC,IAAAA,MAAA,EAAAC,EAAA,CAAAC,eAAA,CAAA4G;AAAA,GAAA,CAAA;AAArB,EAAA,OAAAM,IAAA,GAAAnH,EAAA,CAAAoH,mBAAA,CAAA;AAAAhF,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAS,IAAAA,QAAA,EAAA9C,EAAA;AAAAsC,IAAAA,IAAA,EAAAiF,qBAAqB;IAjBjBT,OAAA,EAAA,CAAAG,aAAa,EAFjBL,2BAA2B,EAgBhBnF,eAAe,EAAEuB,mBAAmB,EAAE0D,YAAY,CAC9D;AAAAK,IAAAA,OAAA,EAAA,CAAAtF,eAAe,EAAEuB,mBAAmB,EAAE0D,YAAY;AAAA,GAAA,CAAA;AAEjD,EAAA,OAAAW,IAAA,GAAArH,EAAA,CAAAsH,mBAAA,CAAA;AAAAlF,IAAAA,UAAA,EAAA,QAAA;AAAAC,IAAAA,OAAA,EAAA,eAAA;AAAAS,IAAAA,QAAA,EAAA9C,EAAA;AAAAsC,IAAAA,IAAA,EAAAiF,qBAAqB;cAHnBP,OAAO;AAAA,GAAA,CAAA;;;;;;QAGTO,qBAAqB;AAAApH,EAAAA,UAAA,EAAA,CAAA;UAJjC0G,QAAQ;AAAC9D,IAAAA,IAAA,EAAA,CAAA;MACR+D,OAAO,EAAE,CAAC,GAAGE,OAAO,EAAEvF,eAAe,EAAEuB,mBAAmB,EAAE0D,YAAY,CAAC;AACzEK,MAAAA,OAAO,EAAE,CAACtF,eAAe,EAAEuB,mBAAmB,EAAE0D,YAAY;KAC7D;;;;;;"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Version } from '@angular/core';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
const VERSION = new Version('21.0.0-next.9');
|
|
3
|
+
const VERSION = new Version('21.0.0-rc.1');
|
|
5
4
|
|
|
6
5
|
export { VERSION };
|
|
7
6
|
//# sourceMappingURL=material-experimental.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"material-experimental.mjs","sources":["../../../../../
|
|
1
|
+
{"version":3,"file":"material-experimental.mjs","sources":["../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/version.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Material experimental package. */\nexport const VERSION = new Version('21.0.0-rc.1');\n"],"names":["VERSION","Version"],"mappings":";;MAWaA,OAAO,GAAG,IAAIC,OAAO,CAAC,mBAAmB;;;;"}
|
package/fesm2022/menubar.mjs
CHANGED
|
@@ -2,77 +2,199 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { Component, ViewEncapsulation, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
3
3
|
import { CdkMenuBar, CdkMenuGroup, CDK_MENU, MENU_STACK, MenuStack, CdkMenuItem, CdkMenuModule } from '@angular/cdk/menu';
|
|
4
4
|
|
|
5
|
-
/**
|
|
6
|
-
* A material design Menubar adhering to the functionality of CdkMenuBar. MatMenubar
|
|
7
|
-
* should contain MatMenubarItems which trigger their own sub-menus.
|
|
8
|
-
*/
|
|
9
5
|
class MatMenuBar extends CdkMenuBar {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
6
|
+
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
7
|
+
minVersion: "12.0.0",
|
|
8
|
+
version: "20.2.0-next.2",
|
|
9
|
+
ngImport: i0,
|
|
10
|
+
type: MatMenuBar,
|
|
11
|
+
deps: null,
|
|
12
|
+
target: i0.ɵɵFactoryTarget.Component
|
|
13
|
+
});
|
|
14
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({
|
|
15
|
+
minVersion: "14.0.0",
|
|
16
|
+
version: "20.2.0-next.2",
|
|
17
|
+
type: MatMenuBar,
|
|
18
|
+
isStandalone: true,
|
|
19
|
+
selector: "mat-menubar",
|
|
20
|
+
host: {
|
|
21
|
+
properties: {
|
|
22
|
+
"class.mat-menubar": "true"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
providers: [{
|
|
26
|
+
provide: CdkMenuGroup,
|
|
27
|
+
useExisting: MatMenuBar
|
|
28
|
+
}, {
|
|
29
|
+
provide: CdkMenuBar,
|
|
30
|
+
useExisting: MatMenuBar
|
|
31
|
+
}, {
|
|
32
|
+
provide: CDK_MENU,
|
|
33
|
+
useExisting: MatMenuBar
|
|
34
|
+
}, {
|
|
35
|
+
provide: MENU_STACK,
|
|
36
|
+
useClass: MenuStack
|
|
37
|
+
}],
|
|
38
|
+
exportAs: ["matMenubar"],
|
|
39
|
+
usesInheritance: true,
|
|
40
|
+
ngImport: i0,
|
|
41
|
+
template: "<ng-content></ng-content>\n",
|
|
42
|
+
styles: ["\n"],
|
|
43
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
44
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
45
|
+
});
|
|
17
46
|
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({
|
|
48
|
+
minVersion: "12.0.0",
|
|
49
|
+
version: "20.2.0-next.2",
|
|
50
|
+
ngImport: i0,
|
|
51
|
+
type: MatMenuBar,
|
|
52
|
+
decorators: [{
|
|
53
|
+
type: Component,
|
|
54
|
+
args: [{
|
|
55
|
+
selector: 'mat-menubar',
|
|
56
|
+
exportAs: 'matMenubar',
|
|
57
|
+
encapsulation: ViewEncapsulation.None,
|
|
58
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
59
|
+
host: {
|
|
60
|
+
'[class.mat-menubar]': 'true'
|
|
61
|
+
},
|
|
62
|
+
providers: [{
|
|
63
|
+
provide: CdkMenuGroup,
|
|
64
|
+
useExisting: MatMenuBar
|
|
65
|
+
}, {
|
|
66
|
+
provide: CdkMenuBar,
|
|
67
|
+
useExisting: MatMenuBar
|
|
68
|
+
}, {
|
|
69
|
+
provide: CDK_MENU,
|
|
70
|
+
useExisting: MatMenuBar
|
|
71
|
+
}, {
|
|
72
|
+
provide: MENU_STACK,
|
|
73
|
+
useClass: MenuStack
|
|
74
|
+
}],
|
|
75
|
+
template: "<ng-content></ng-content>\n"
|
|
76
|
+
}]
|
|
77
|
+
}]
|
|
78
|
+
});
|
|
29
79
|
|
|
30
|
-
/** Removes all icons from within the given element. */
|
|
31
80
|
function removeIcons(element) {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
81
|
+
for (const icon of Array.from(element.querySelectorAll('mat-icon, .material-icons'))) {
|
|
82
|
+
icon.remove();
|
|
83
|
+
}
|
|
35
84
|
}
|
|
36
|
-
/**
|
|
37
|
-
* A material design MenubarItem adhering to the functionality of CdkMenuItem and
|
|
38
|
-
* CdkMenuItemTrigger. Its main purpose is to trigger menus and it lives inside of
|
|
39
|
-
* MatMenubar.
|
|
40
|
-
*/
|
|
41
85
|
class MatMenuBarItem extends CdkMenuItem {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
const clone = this._elementRef.nativeElement.cloneNode(true);
|
|
47
|
-
removeIcons(clone);
|
|
48
|
-
return clone.textContent?.trim() || '';
|
|
86
|
+
getLabel() {
|
|
87
|
+
if (this.typeaheadLabel !== undefined) {
|
|
88
|
+
return this.typeaheadLabel || '';
|
|
49
89
|
}
|
|
50
|
-
|
|
51
|
-
|
|
90
|
+
const clone = this._elementRef.nativeElement.cloneNode(true);
|
|
91
|
+
removeIcons(clone);
|
|
92
|
+
return clone.textContent?.trim() || '';
|
|
93
|
+
}
|
|
94
|
+
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
95
|
+
minVersion: "12.0.0",
|
|
96
|
+
version: "20.2.0-next.2",
|
|
97
|
+
ngImport: i0,
|
|
98
|
+
type: MatMenuBarItem,
|
|
99
|
+
deps: null,
|
|
100
|
+
target: i0.ɵɵFactoryTarget.Component
|
|
101
|
+
});
|
|
102
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({
|
|
103
|
+
minVersion: "14.0.0",
|
|
104
|
+
version: "20.2.0-next.2",
|
|
105
|
+
type: MatMenuBarItem,
|
|
106
|
+
isStandalone: true,
|
|
107
|
+
selector: "mat-menubar-item",
|
|
108
|
+
host: {
|
|
109
|
+
attributes: {
|
|
110
|
+
"type": "button",
|
|
111
|
+
"role": "menuitem"
|
|
112
|
+
},
|
|
113
|
+
properties: {
|
|
114
|
+
"tabindex": "_tabindex",
|
|
115
|
+
"attr.aria-disabled": "disabled || null"
|
|
116
|
+
},
|
|
117
|
+
classAttribute: "cdk-menu-item mat-menubar-item"
|
|
118
|
+
},
|
|
119
|
+
providers: [{
|
|
120
|
+
provide: CdkMenuItem,
|
|
121
|
+
useExisting: MatMenuBarItem
|
|
122
|
+
}],
|
|
123
|
+
exportAs: ["matMenubarItem"],
|
|
124
|
+
usesInheritance: true,
|
|
125
|
+
ngImport: i0,
|
|
126
|
+
template: "<ng-content></ng-content>\n",
|
|
127
|
+
styles: ["\n"],
|
|
128
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush,
|
|
129
|
+
encapsulation: i0.ViewEncapsulation.None
|
|
130
|
+
});
|
|
52
131
|
}
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
132
|
+
i0.ɵɵngDeclareClassMetadata({
|
|
133
|
+
minVersion: "12.0.0",
|
|
134
|
+
version: "20.2.0-next.2",
|
|
135
|
+
ngImport: i0,
|
|
136
|
+
type: MatMenuBarItem,
|
|
137
|
+
decorators: [{
|
|
138
|
+
type: Component,
|
|
139
|
+
args: [{
|
|
140
|
+
selector: 'mat-menubar-item',
|
|
141
|
+
exportAs: 'matMenubarItem',
|
|
142
|
+
encapsulation: ViewEncapsulation.None,
|
|
143
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
144
|
+
host: {
|
|
145
|
+
'[tabindex]': '_tabindex',
|
|
146
|
+
'type': 'button',
|
|
147
|
+
'role': 'menuitem',
|
|
148
|
+
'class': 'cdk-menu-item mat-menubar-item',
|
|
149
|
+
'[attr.aria-disabled]': 'disabled || null'
|
|
150
|
+
},
|
|
151
|
+
providers: [{
|
|
152
|
+
provide: CdkMenuItem,
|
|
153
|
+
useExisting: MatMenuBarItem
|
|
154
|
+
}],
|
|
155
|
+
template: "<ng-content></ng-content>\n"
|
|
156
|
+
}]
|
|
157
|
+
}]
|
|
158
|
+
});
|
|
63
159
|
|
|
64
160
|
class MatMenuBarModule {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
161
|
+
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
162
|
+
minVersion: "12.0.0",
|
|
163
|
+
version: "20.2.0-next.2",
|
|
164
|
+
ngImport: i0,
|
|
165
|
+
type: MatMenuBarModule,
|
|
166
|
+
deps: [],
|
|
167
|
+
target: i0.ɵɵFactoryTarget.NgModule
|
|
168
|
+
});
|
|
169
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({
|
|
170
|
+
minVersion: "14.0.0",
|
|
171
|
+
version: "20.2.0-next.2",
|
|
172
|
+
ngImport: i0,
|
|
173
|
+
type: MatMenuBarModule,
|
|
174
|
+
imports: [CdkMenuModule, MatMenuBar, MatMenuBarItem],
|
|
175
|
+
exports: [MatMenuBar, MatMenuBarItem]
|
|
176
|
+
});
|
|
177
|
+
static ɵinj = i0.ɵɵngDeclareInjector({
|
|
178
|
+
minVersion: "12.0.0",
|
|
179
|
+
version: "20.2.0-next.2",
|
|
180
|
+
ngImport: i0,
|
|
181
|
+
type: MatMenuBarModule,
|
|
182
|
+
imports: [CdkMenuModule]
|
|
183
|
+
});
|
|
68
184
|
}
|
|
69
|
-
i0.ɵɵngDeclareClassMetadata({
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
185
|
+
i0.ɵɵngDeclareClassMetadata({
|
|
186
|
+
minVersion: "12.0.0",
|
|
187
|
+
version: "20.2.0-next.2",
|
|
188
|
+
ngImport: i0,
|
|
189
|
+
type: MatMenuBarModule,
|
|
190
|
+
decorators: [{
|
|
191
|
+
type: NgModule,
|
|
192
|
+
args: [{
|
|
193
|
+
imports: [CdkMenuModule, MatMenuBar, MatMenuBarItem],
|
|
194
|
+
exports: [MatMenuBar, MatMenuBarItem]
|
|
195
|
+
}]
|
|
196
|
+
}]
|
|
197
|
+
});
|
|
76
198
|
|
|
77
199
|
export { MatMenuBar, MatMenuBarItem, MatMenuBarModule };
|
|
78
200
|
//# sourceMappingURL=menubar.mjs.map
|
package/fesm2022/menubar.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menubar.mjs","sources":["../../../../../
|
|
1
|
+
{"version":3,"file":"menubar.mjs","sources":["../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/menubar/menubar.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/menubar/menubar.html","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/menubar/menubar-item.ts","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/menubar/menubar-item.html","../../../../../k8-fastbuild-ST-199a4f3c4e20/bin/src/material-experimental/menubar/menubar-module.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';\nimport {CDK_MENU, CdkMenuBar, CdkMenuGroup, MENU_STACK, MenuStack} from '@angular/cdk/menu';\n\n/**\n * A material design Menubar adhering to the functionality of CdkMenuBar. MatMenubar\n * should contain MatMenubarItems which trigger their own sub-menus.\n */\n@Component({\n selector: 'mat-menubar',\n exportAs: 'matMenubar',\n templateUrl: 'menubar.html',\n styleUrl: 'menubar.css',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n '[class.mat-menubar]': 'true',\n },\n providers: [\n {provide: CdkMenuGroup, useExisting: MatMenuBar},\n {provide: CdkMenuBar, useExisting: MatMenuBar},\n {provide: CDK_MENU, useExisting: MatMenuBar},\n {provide: MENU_STACK, useClass: MenuStack},\n ],\n})\nexport class MatMenuBar extends CdkMenuBar {}\n","<ng-content></ng-content>\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {Component, ViewEncapsulation, ChangeDetectionStrategy} from '@angular/core';\nimport {CdkMenuItem} from '@angular/cdk/menu';\n\n/** Removes all icons from within the given element. */\nfunction removeIcons(element: Element) {\n for (const icon of Array.from(element.querySelectorAll('mat-icon, .material-icons'))) {\n icon.remove();\n }\n}\n\n/**\n * A material design MenubarItem adhering to the functionality of CdkMenuItem and\n * CdkMenuItemTrigger. Its main purpose is to trigger menus and it lives inside of\n * MatMenubar.\n */\n@Component({\n selector: 'mat-menubar-item',\n exportAs: 'matMenubarItem',\n templateUrl: 'menubar-item.html',\n styleUrl: 'menubar-item.css',\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush,\n host: {\n '[tabindex]': '_tabindex',\n 'type': 'button',\n 'role': 'menuitem',\n 'class': 'cdk-menu-item mat-menubar-item',\n '[attr.aria-disabled]': 'disabled || null',\n },\n providers: [{provide: CdkMenuItem, useExisting: MatMenuBarItem}],\n})\nexport class MatMenuBarItem extends CdkMenuItem {\n override getLabel(): string {\n if (this.typeaheadLabel !== undefined) {\n return this.typeaheadLabel || '';\n }\n const clone = this._elementRef.nativeElement.cloneNode(true) as Element;\n removeIcons(clone);\n return clone.textContent?.trim() || '';\n }\n}\n","<ng-content></ng-content>\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {NgModule} from '@angular/core';\nimport {CdkMenuModule} from '@angular/cdk/menu';\nimport {MatMenuBar} from './menubar';\nimport {MatMenuBarItem} from './menubar-item';\n\n@NgModule({\n imports: [CdkMenuModule, MatMenuBar, MatMenuBarItem],\n exports: [MatMenuBar, MatMenuBarItem],\n})\nexport class MatMenuBarModule {}\n"],"names":["MatMenuBar","CdkMenuBar","deps","target","i0","ɵɵFactoryTarget","Component","ɵcmp","ɵɵngDeclareComponent","minVersion","version","type","isStandalone","selector","host","properties","providers","provide","CdkMenuGroup","useExisting","CDK_MENU","MENU_STACK","useClass","MenuStack","exportAs","usesInheritance","ngImport","template","styles","changeDetection","ChangeDetectionStrategy","OnPush","encapsulation","ViewEncapsulation","None","decorators","removeIcons","element","icon","Array","from","querySelectorAll","remove","MatMenuBarItem","CdkMenuItem","getLabel","typeaheadLabel","undefined","clone","_elementRef","nativeElement","cloneNode","textContent","trim","attributes","classAttribute","MatMenuBarModule","NgModule","imports","CdkMenuModule","exports","ɵinj","ɵɵngDeclareInjector","args"],"mappings":"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"}
|