@gravitee/ui-particles-angular 17.0.0 → 17.1.0
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { trigger, transition, style, animate } from '@angular/animations';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { EventEmitter, HostListener, HostBinding, Output, Input, Component, NgModule, ViewChild, Optional, Self, ChangeDetectionStrategy, Directive, Injector, Inject, Injectable, inject, signal, computed, ViewContainerRef, forwardRef, ContentChildren, Host, ContentChild, InjectionToken, effect, Pipe, ViewEncapsulation } from '@angular/core';
|
|
3
|
+
import { EventEmitter, HostListener, HostBinding, Output, Input, Component, NgModule, ViewChild, Optional, Self, ChangeDetectionStrategy, Directive, Injector, Inject, Injectable, inject, signal, computed, ViewContainerRef, forwardRef, ContentChildren, Host, ContentChild, InjectionToken, effect, Pipe, ViewEncapsulation, DestroyRef } from '@angular/core';
|
|
4
4
|
import { of, Subject, fromEvent, ReplaySubject, merge, Observable, BehaviorSubject, timer } from 'rxjs';
|
|
5
5
|
import { delay, tap, startWith, switchMap, map, distinctUntilChanged, takeUntil, filter, take, debounceTime, shareReplay, catchError, debounce } from 'rxjs/operators';
|
|
6
6
|
import * as i1 from '@angular/material/card';
|
|
@@ -43,7 +43,8 @@ import * as i3$1 from '@angular/material/core';
|
|
|
43
43
|
import { MatRippleModule, MatOptionModule } from '@angular/material/core';
|
|
44
44
|
import * as i1$6 from '@angular/cdk/clipboard';
|
|
45
45
|
import { ClipboardModule } from '@angular/cdk/clipboard';
|
|
46
|
-
import
|
|
46
|
+
import * as i4 from '@angular/cdk/overlay';
|
|
47
|
+
import { Overlay, OverlayPositionBuilder, OverlayModule } from '@angular/cdk/overlay';
|
|
47
48
|
import { TemplatePortal } from '@angular/cdk/portal';
|
|
48
49
|
import * as i3$4 from 'ngx-file-helpers';
|
|
49
50
|
import { ReadMode, NgxFileHelpersModule } from 'ngx-file-helpers';
|
|
@@ -60,6 +61,11 @@ import Cronstrue from 'cronstrue/i18n';
|
|
|
60
61
|
import { TestBed } from '@angular/core/testing';
|
|
61
62
|
import * as i1$9 from '@angular/common/http';
|
|
62
63
|
import { MatButtonToggleGroupHarness } from '@angular/material/button-toggle/testing';
|
|
64
|
+
import * as i3$6 from '@angular/material/expansion';
|
|
65
|
+
import { MatAccordion, MatExpansionPanel, MatExpansionPanelTitle, MatExpansionPanelHeader, MatExpansionPanelDescription } from '@angular/material/expansion';
|
|
66
|
+
import * as i2$4 from '@angular/router';
|
|
67
|
+
import { Router, NavigationEnd, RouterLink, RouterLinkActive } from '@angular/router';
|
|
68
|
+
import { toSignal } from '@angular/core/rxjs-interop';
|
|
63
69
|
import { MatSelectHarness } from '@angular/material/select/testing';
|
|
64
70
|
|
|
65
71
|
/*
|
|
@@ -7610,24 +7616,28 @@ const cleanLocalStorageReduceState = () => localStorage?.removeItem(REDUCE_STATE
|
|
|
7610
7616
|
* limitations under the License.
|
|
7611
7617
|
*/
|
|
7612
7618
|
class GioMenuItemComponent {
|
|
7613
|
-
constructor(gioMenuService) {
|
|
7619
|
+
constructor(gioMenuService, routerLinkActive) {
|
|
7614
7620
|
this.gioMenuService = gioMenuService;
|
|
7621
|
+
this.routerLinkActive = routerLinkActive;
|
|
7615
7622
|
this.icon = '';
|
|
7616
7623
|
this.active = false;
|
|
7617
7624
|
this.outlined = false;
|
|
7618
7625
|
this.unsubscribe$ = new Subject();
|
|
7619
7626
|
}
|
|
7627
|
+
get isActive() {
|
|
7628
|
+
return this.active || this.routerLinkActive?.isActive || false;
|
|
7629
|
+
}
|
|
7620
7630
|
ngOnDestroy() {
|
|
7621
7631
|
this.unsubscribe$.next();
|
|
7622
7632
|
this.unsubscribe$.unsubscribe();
|
|
7623
7633
|
}
|
|
7624
7634
|
onMouseLeave() {
|
|
7625
|
-
if (this.
|
|
7635
|
+
if (this.isActive) {
|
|
7626
7636
|
this.gioMenuService.overlay({ open: false });
|
|
7627
7637
|
}
|
|
7628
7638
|
}
|
|
7629
7639
|
onMouseEnter($event) {
|
|
7630
|
-
if (this.
|
|
7640
|
+
if (this.isActive) {
|
|
7631
7641
|
const menuItem = $event.target;
|
|
7632
7642
|
this.gioMenuService.overlay({ open: true, top: menuItem.getBoundingClientRect().top, parent: menuItem });
|
|
7633
7643
|
}
|
|
@@ -7641,7 +7651,7 @@ class GioMenuItemComponent {
|
|
|
7641
7651
|
of($event.key === 'Enter' && $event.target)
|
|
7642
7652
|
.pipe(filter(enterKey => !!enterKey), switchMap(() => of($event.target)), tap(menuItem => {
|
|
7643
7653
|
this.gioMenuService.overlay({ open: false });
|
|
7644
|
-
if (this.
|
|
7654
|
+
if (this.isActive) {
|
|
7645
7655
|
this.gioMenuService.overlay({ open: true, top: menuItem.getBoundingClientRect().top, parent: menuItem, focus: true });
|
|
7646
7656
|
}
|
|
7647
7657
|
else {
|
|
@@ -7650,13 +7660,15 @@ class GioMenuItemComponent {
|
|
|
7650
7660
|
}), takeUntil(this.unsubscribe$))
|
|
7651
7661
|
.subscribe();
|
|
7652
7662
|
}
|
|
7653
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuItemComponent, deps: [{ token: GioMenuService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7654
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.3", type: GioMenuItemComponent, isStandalone: false, selector: "gio-menu-item", inputs: { icon: "icon", iconRight: "iconRight", active: "active", outlined: "outlined" }, host: { listeners: { "click": "onClick($event)", "keydown": "onKeydownHandler($event)" } }, ngImport: i0, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div\n class=\"gio-menu-item\"\n [class.gio-menu-item__active]=\"
|
|
7663
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuItemComponent, deps: [{ token: GioMenuService }, { token: i2$4.RouterLinkActive, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7664
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.3", type: GioMenuItemComponent, isStandalone: false, selector: "gio-menu-item", inputs: { icon: "icon", iconRight: "iconRight", active: "active", outlined: "outlined" }, host: { listeners: { "click": "onClick($event)", "keydown": "onKeydownHandler($event)" } }, ngImport: i0, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div\n class=\"gio-menu-item\"\n [class.gio-menu-item__active]=\"isActive\"\n [class.gio-menu-item__outlined]=\"outlined\"\n (click)=\"onClick($event)\"\n (mouseenter)=\"onMouseEnter($event)\"\n (mouseleave)=\"onMouseLeave()\"\n>\n @if (icon) {\n <mat-icon class=\"gio-menu-item__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n <span class=\"gio-menu-item__title\"><ng-content></ng-content></span>\n @if (iconRight) {\n <mat-icon class=\"gio-menu-item__icon-right\" [svgIcon]=\"iconRight\"></mat-icon>\n }\n</div>\n", styles: ["@charset \"UTF-8\";:host{display:block}.gio-menu-item{position:relative;display:flex;width:192px;height:36px;flex:none;flex-direction:row;flex-grow:0;align-items:center;padding:16px;border-radius:4px;margin:4px 0;background:var(--gio-oem-palette--background, #1e1b1b);color:var(--gio-oem-palette--background-contrast, #fff);cursor:pointer}.gio-menu-item__active{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu-item__outlined{border:1px solid color-mix(in srgb,var(--gio-oem-palette--background, #1e1b1b) 75%,var(--gio-oem-palette--background-contrast, #fff));border-radius:4px}.gio-menu-item__icon,.gio-menu-item__icon-right{position:absolute;width:20px;height:20px}.gio-menu-item__icon-right{right:18px}.gio-menu-item__title:not(:first-child){margin:18px 0 18px 32px}:host.active .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}:host-context(.gio-menu__reduced) .gio-menu-item{width:44px;justify-content:center;padding:0;margin:8px 0}:host-context(.gio-menu__reduced) .gio-menu-item__title,:host-context(.gio-menu__reduced) .gio-menu-item__icon-right{display:none}:host-context(.gio-menu__reduced .gio-menu-footer) .gio-menu-item{margin:20px 0}:host-context(.gio-menu__reduced .gio-menu-footer) .gio-menu-item__outlined{margin:20px 0}:host:not(.active) .gio-menu-item:hover:not(.gio-menu-item__active){background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent);color:var(--gio-oem-palette--active-contrast, #fff)}\n"], dependencies: [{ kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }] }); }
|
|
7655
7665
|
}
|
|
7656
7666
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuItemComponent, decorators: [{
|
|
7657
7667
|
type: Component,
|
|
7658
|
-
args: [{ selector: 'gio-menu-item', standalone: false, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div\n class=\"gio-menu-item\"\n [class.gio-menu-item__active]=\"
|
|
7659
|
-
}], ctorParameters: () => [{ type: GioMenuService }
|
|
7668
|
+
args: [{ selector: 'gio-menu-item', standalone: false, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n<div\n class=\"gio-menu-item\"\n [class.gio-menu-item__active]=\"isActive\"\n [class.gio-menu-item__outlined]=\"outlined\"\n (click)=\"onClick($event)\"\n (mouseenter)=\"onMouseEnter($event)\"\n (mouseleave)=\"onMouseLeave()\"\n>\n @if (icon) {\n <mat-icon class=\"gio-menu-item__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n <span class=\"gio-menu-item__title\"><ng-content></ng-content></span>\n @if (iconRight) {\n <mat-icon class=\"gio-menu-item__icon-right\" [svgIcon]=\"iconRight\"></mat-icon>\n }\n</div>\n", styles: ["@charset \"UTF-8\";:host{display:block}.gio-menu-item{position:relative;display:flex;width:192px;height:36px;flex:none;flex-direction:row;flex-grow:0;align-items:center;padding:16px;border-radius:4px;margin:4px 0;background:var(--gio-oem-palette--background, #1e1b1b);color:var(--gio-oem-palette--background-contrast, #fff);cursor:pointer}.gio-menu-item__active{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu-item__outlined{border:1px solid color-mix(in srgb,var(--gio-oem-palette--background, #1e1b1b) 75%,var(--gio-oem-palette--background-contrast, #fff));border-radius:4px}.gio-menu-item__icon,.gio-menu-item__icon-right{position:absolute;width:20px;height:20px}.gio-menu-item__icon-right{right:18px}.gio-menu-item__title:not(:first-child){margin:18px 0 18px 32px}:host.active .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}:host-context(.gio-menu__reduced) .gio-menu-item{width:44px;justify-content:center;padding:0;margin:8px 0}:host-context(.gio-menu__reduced) .gio-menu-item__title,:host-context(.gio-menu__reduced) .gio-menu-item__icon-right{display:none}:host-context(.gio-menu__reduced .gio-menu-footer) .gio-menu-item{margin:20px 0}:host-context(.gio-menu__reduced .gio-menu-footer) .gio-menu-item__outlined{margin:20px 0}:host:not(.active) .gio-menu-item:hover:not(.gio-menu-item__active){background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent);color:var(--gio-oem-palette--active-contrast, #fff)}\n"] }]
|
|
7669
|
+
}], ctorParameters: () => [{ type: GioMenuService }, { type: i2$4.RouterLinkActive, decorators: [{
|
|
7670
|
+
type: Optional
|
|
7671
|
+
}] }], propDecorators: { icon: [{
|
|
7660
7672
|
type: Input
|
|
7661
7673
|
}], iconRight: [{
|
|
7662
7674
|
type: Input
|
|
@@ -7946,6 +7958,96 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
7946
7958
|
type: Output
|
|
7947
7959
|
}] } });
|
|
7948
7960
|
|
|
7961
|
+
/*
|
|
7962
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
7963
|
+
*
|
|
7964
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7965
|
+
* you may not use this file except in compliance with the License.
|
|
7966
|
+
* You may obtain a copy of the License at
|
|
7967
|
+
*
|
|
7968
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
7969
|
+
*
|
|
7970
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
7971
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
7972
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
7973
|
+
* See the License for the specific language governing permissions and
|
|
7974
|
+
* limitations under the License.
|
|
7975
|
+
*/
|
|
7976
|
+
class GioMenuItemsComponent {
|
|
7977
|
+
constructor() {
|
|
7978
|
+
this.icon = '';
|
|
7979
|
+
this.title = 'default';
|
|
7980
|
+
this.active = false;
|
|
7981
|
+
this.router = inject(Router);
|
|
7982
|
+
this.gioMenuService = inject(GioMenuService);
|
|
7983
|
+
this.destroyRef = inject(DestroyRef);
|
|
7984
|
+
this.closeTimeout = null;
|
|
7985
|
+
this.showOverlay = signal(false, ...(ngDevMode ? [{ debugName: "showOverlay" }] : []));
|
|
7986
|
+
this.reduced = toSignal(this.gioMenuService.reduced$, { initialValue: false });
|
|
7987
|
+
this.isRouteActive = toSignal(this.router.events.pipe(filter(event => event instanceof NavigationEnd), startWith(null), map(() => !!this.routerBasePath && this.router.url.startsWith(this.routerBasePath))), { initialValue: false });
|
|
7988
|
+
this.isPanelActive = computed(() => this.active || this.isRouteActive(), ...(ngDevMode ? [{ debugName: "isPanelActive" }] : []));
|
|
7989
|
+
this.isPanelExpanded = computed(() => this.isPanelActive() || (this.reduced() && this.showOverlay()), ...(ngDevMode ? [{ debugName: "isPanelExpanded" }] : []));
|
|
7990
|
+
// Overlay position configuration: position to the right of the trigger
|
|
7991
|
+
this.overlayPositions = [
|
|
7992
|
+
{
|
|
7993
|
+
originX: 'end',
|
|
7994
|
+
originY: 'top',
|
|
7995
|
+
overlayX: 'start',
|
|
7996
|
+
overlayY: 'top',
|
|
7997
|
+
offsetX: 8, // 8px gap between trigger and overlay
|
|
7998
|
+
},
|
|
7999
|
+
];
|
|
8000
|
+
this.destroyRef.onDestroy(() => {
|
|
8001
|
+
if (this.closeTimeout) {
|
|
8002
|
+
clearTimeout(this.closeTimeout);
|
|
8003
|
+
}
|
|
8004
|
+
});
|
|
8005
|
+
}
|
|
8006
|
+
get isActive() {
|
|
8007
|
+
return this.active;
|
|
8008
|
+
}
|
|
8009
|
+
onHeaderClick() {
|
|
8010
|
+
if (this.routerBasePath) {
|
|
8011
|
+
this.router.navigate([this.routerBasePath]);
|
|
8012
|
+
}
|
|
8013
|
+
}
|
|
8014
|
+
onPanelHeaderClick(event) {
|
|
8015
|
+
event.stopPropagation();
|
|
8016
|
+
this.onHeaderClick();
|
|
8017
|
+
}
|
|
8018
|
+
onMouseEnter() {
|
|
8019
|
+
if (this.closeTimeout) {
|
|
8020
|
+
clearTimeout(this.closeTimeout);
|
|
8021
|
+
this.closeTimeout = null;
|
|
8022
|
+
}
|
|
8023
|
+
this.showOverlay.set(true);
|
|
8024
|
+
}
|
|
8025
|
+
onMouseLeave() {
|
|
8026
|
+
this.closeTimeout = setTimeout(() => {
|
|
8027
|
+
this.showOverlay.set(false);
|
|
8028
|
+
this.closeTimeout = null;
|
|
8029
|
+
}, 200);
|
|
8030
|
+
}
|
|
8031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuItemsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8032
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.3", type: GioMenuItemsComponent, isStandalone: false, selector: "gio-menu-items", inputs: { icon: "icon", iconRight: "iconRight", title: "title", active: "active", routerBasePath: "routerBasePath" }, host: { classAttribute: "gio-menu-items-host" }, ngImport: i0, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<!-- Template for menu items content - used in both modes -->\n<ng-template #menuItemsContent>\n <ng-content></ng-content>\n</ng-template>\n\n<div\n class=\"gio-menu-items-container\"\n [class.gio-menu-items-container--reduced]=\"reduced()\"\n [class.gio-menu-items-container--overlay-visible]=\"showOverlay()\"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\"\n>\n <!-- Trigger for reduced mode (icon only) -->\n <div\n class=\"gio-menu-items-trigger\"\n [class.active]=\"isPanelActive()\"\n (click)=\"onHeaderClick()\"\n (keydown.enter)=\"onHeaderClick()\"\n (keydown.space)=\"onHeaderClick(); $event.preventDefault()\"\n tabindex=\"0\"\n role=\"button\"\n cdkOverlayOrigin\n #overlayOrigin=\"cdkOverlayOrigin\"\n >\n @if (icon) {\n <mat-icon class=\"gio-menu-items-trigger__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n </div>\n\n <!-- Normal mode: Material expansion panel -->\n @if (!reduced()) {\n <mat-accordion class=\"gio-menu-items-accordion\">\n <mat-expansion-panel\n class=\"gio-menu-items\"\n [class.active]=\"isPanelActive()\"\n hideToggle\n [expanded]=\"isPanelExpanded()\"\n [disabled]=\"true\"\n >\n <mat-expansion-panel-header (click)=\"onPanelHeaderClick($event)\">\n <mat-panel-title>\n @if (icon) {\n <mat-icon class=\"gio-menu-items__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n <span class=\"gio-menu-items__title\">{{ title }}</span>\n @if (iconRight) {\n <mat-icon class=\"gio-menu-items__icon-right\" [svgIcon]=\"iconRight\"></mat-icon>\n }\n </mat-panel-title>\n </mat-expansion-panel-header>\n <ng-container *ngTemplateOutlet=\"menuItemsContent\"></ng-container>\n </mat-expansion-panel>\n </mat-accordion>\n }\n</div>\n\n<!-- CDK Overlay for reduced mode - renders outside the sidebar DOM -->\n<ng-template\n cdkConnectedOverlay\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"reduced() && showOverlay()\"\n [cdkConnectedOverlayPositions]=\"overlayPositions\"\n [cdkConnectedOverlayHasBackdrop]=\"false\"\n>\n <div class=\"gio-menu-items-overlay\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\n <div class=\"gio-menu-items-overlay__header\" (click)=\"onHeaderClick()\">\n <span class=\"gio-menu-items-overlay__title\">{{ title }}</span>\n </div>\n <div class=\"gio-menu-items-overlay__content\">\n <ng-container *ngTemplateOutlet=\"menuItemsContent\"></ng-container>\n </div>\n </div>\n</ng-template>\n", styles: ["@charset \"UTF-8\";.gio-menu-items-host{position:relative;display:block}.gio-menu-items-host .gio-menu-items-container{position:relative}.gio-menu-items-host .gio-menu-items-container--overlay-visible{z-index:1001}.gio-menu-items-host .gio-menu-items-trigger{display:none;width:44px;height:36px;align-items:center;justify-content:center;border-radius:4px;margin:4px 0;cursor:pointer}.gio-menu-items-host .gio-menu-items-trigger:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items-trigger.active{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu-items-host .gio-menu-items-trigger__icon{width:20px;height:20px;color:var(--gio-oem-palette--background-contrast, #fff)}.gio-menu-items-host .gio-menu-items.mat-expansion-panel{margin:0;background:transparent;box-shadow:none}.gio-menu-items-host .gio-menu-items__icon{position:static;width:20px;height:20px;margin-right:12px}.gio-menu-items-host .gio-menu-items__title{display:block;margin-left:0}.gio-menu-items-host .gio-menu-items__icon-right{position:absolute;right:16px;width:20px;height:20px}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header{width:100%;height:auto;padding:6px 16px;border-radius:4px;border-bottom:1px solid transparent;margin:3px 0;box-shadow:none;cursor:pointer}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header .mat-content{justify-content:flex-start}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header .mat-expansion-panel-header-title{justify-content:flex-start;color:var(--gio-oem-palette--background-contrast, #fff)}.gio-menu-items-host .gio-menu-items.active .mat-expansion-panel-header{border-radius:0}.gio-menu-items-host .gio-menu-items.mat-expanded{border-radius:8px;background:var(--gio-oem-palette--sub-menu, #322f2f)}.gio-menu-items-host .gio-menu-items.mat-expanded .mat-expansion-panel-header{border-bottom:1px solid rgba(255,255,255,.1);cursor:default;pointer-events:none}.gio-menu-items-host .gio-menu-items.mat-expanded .mat-expansion-panel-header:hover{background:transparent}.gio-menu-items-host .gio-menu-items .mat-expansion-indicator{display:none}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-body{padding:0}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item{width:auto;height:36px;justify-content:flex-start;padding:0 8px;border-radius:4px;margin:4px 8px;background:transparent}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__title{display:block;margin:0}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__icon{position:absolute;left:16px}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__icon-right{display:block}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item.router-link-active .gio-menu-item,.gio-menu-items-host .gio-menu-items-accordion gio-menu-item:has(.gio-menu-item__active) .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu__reduced .gio-menu-items-host .gio-menu-items-trigger{display:flex}.gio-menu__reduced .gio-menu-items-host .gio-menu-items-accordion{display:none}.gio-menu-items-overlay{min-width:200px;border-radius:8px;background:var(--gio-oem-palette--sub-menu, #322f2f);box-shadow:0 4px 16px #0003}.gio-menu-items-overlay a{text-decoration:none}.gio-menu-items-overlay__header{padding:6px 16px;border-bottom:1px solid rgba(255,255,255,.1);color:var(--gio-oem-palette--background-contrast, #fff);cursor:pointer}.gio-menu-items-overlay__header:hover{border-radius:8px 8px 0 0;background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-overlay__title{font-size:14px;font-weight:500}.gio-menu-items-overlay__content{padding:4px 0}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item{width:auto;height:36px;justify-content:flex-start;padding:0 4px;border-radius:4px;margin:4px 14px;background:transparent}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__title{display:block;margin:0}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__icon{display:none}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__icon-right{display:block}.gio-menu-items-overlay__content gio-menu-item.router-link-active .gio-menu-item,.gio-menu-items-overlay__content gio-menu-item:has(.gio-menu-item__active) .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}\n"], dependencies: [{ kind: "directive", type: i1$4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i3$6.MatAccordion, selector: "mat-accordion", inputs: ["hideToggle", "displayMode", "togglePosition"], exportAs: ["matAccordion"] }, { kind: "component", type: i3$6.MatExpansionPanel, selector: "mat-expansion-panel", inputs: ["hideToggle", "togglePosition"], outputs: ["afterExpand", "afterCollapse"], exportAs: ["matExpansionPanel"] }, { kind: "directive", type: i3$6.MatExpansionPanelTitle, selector: "mat-panel-title" }, { kind: "component", type: i3$6.MatExpansionPanelHeader, selector: "mat-expansion-panel-header", inputs: ["expandedHeight", "collapsedHeight", "tabIndex"] }, { kind: "directive", type: i4.CdkConnectedOverlay, selector: "[cdk-connected-overlay], [connected-overlay], [cdkConnectedOverlay]", inputs: ["cdkConnectedOverlayOrigin", "cdkConnectedOverlayPositions", "cdkConnectedOverlayPositionStrategy", "cdkConnectedOverlayOffsetX", "cdkConnectedOverlayOffsetY", "cdkConnectedOverlayWidth", "cdkConnectedOverlayHeight", "cdkConnectedOverlayMinWidth", "cdkConnectedOverlayMinHeight", "cdkConnectedOverlayBackdropClass", "cdkConnectedOverlayPanelClass", "cdkConnectedOverlayViewportMargin", "cdkConnectedOverlayScrollStrategy", "cdkConnectedOverlayOpen", "cdkConnectedOverlayDisableClose", "cdkConnectedOverlayTransformOriginOn", "cdkConnectedOverlayHasBackdrop", "cdkConnectedOverlayLockPosition", "cdkConnectedOverlayFlexibleDimensions", "cdkConnectedOverlayGrowAfterOpen", "cdkConnectedOverlayPush", "cdkConnectedOverlayDisposeOnNavigation"], outputs: ["backdropClick", "positionChange", "attach", "detach", "overlayKeydown", "overlayOutsideClick"], exportAs: ["cdkConnectedOverlay"] }, { kind: "directive", type: i4.CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
8033
|
+
}
|
|
8034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuItemsComponent, decorators: [{
|
|
8035
|
+
type: Component,
|
|
8036
|
+
args: [{ selector: 'gio-menu-items', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: false, host: {
|
|
8037
|
+
class: 'gio-menu-items-host',
|
|
8038
|
+
}, template: "<!--\n\n Copyright (C) 2025 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<!-- Template for menu items content - used in both modes -->\n<ng-template #menuItemsContent>\n <ng-content></ng-content>\n</ng-template>\n\n<div\n class=\"gio-menu-items-container\"\n [class.gio-menu-items-container--reduced]=\"reduced()\"\n [class.gio-menu-items-container--overlay-visible]=\"showOverlay()\"\n (mouseenter)=\"onMouseEnter()\"\n (mouseleave)=\"onMouseLeave()\"\n>\n <!-- Trigger for reduced mode (icon only) -->\n <div\n class=\"gio-menu-items-trigger\"\n [class.active]=\"isPanelActive()\"\n (click)=\"onHeaderClick()\"\n (keydown.enter)=\"onHeaderClick()\"\n (keydown.space)=\"onHeaderClick(); $event.preventDefault()\"\n tabindex=\"0\"\n role=\"button\"\n cdkOverlayOrigin\n #overlayOrigin=\"cdkOverlayOrigin\"\n >\n @if (icon) {\n <mat-icon class=\"gio-menu-items-trigger__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n </div>\n\n <!-- Normal mode: Material expansion panel -->\n @if (!reduced()) {\n <mat-accordion class=\"gio-menu-items-accordion\">\n <mat-expansion-panel\n class=\"gio-menu-items\"\n [class.active]=\"isPanelActive()\"\n hideToggle\n [expanded]=\"isPanelExpanded()\"\n [disabled]=\"true\"\n >\n <mat-expansion-panel-header (click)=\"onPanelHeaderClick($event)\">\n <mat-panel-title>\n @if (icon) {\n <mat-icon class=\"gio-menu-items__icon\" [svgIcon]=\"icon\"></mat-icon>\n }\n <span class=\"gio-menu-items__title\">{{ title }}</span>\n @if (iconRight) {\n <mat-icon class=\"gio-menu-items__icon-right\" [svgIcon]=\"iconRight\"></mat-icon>\n }\n </mat-panel-title>\n </mat-expansion-panel-header>\n <ng-container *ngTemplateOutlet=\"menuItemsContent\"></ng-container>\n </mat-expansion-panel>\n </mat-accordion>\n }\n</div>\n\n<!-- CDK Overlay for reduced mode - renders outside the sidebar DOM -->\n<ng-template\n cdkConnectedOverlay\n [cdkConnectedOverlayOrigin]=\"overlayOrigin\"\n [cdkConnectedOverlayOpen]=\"reduced() && showOverlay()\"\n [cdkConnectedOverlayPositions]=\"overlayPositions\"\n [cdkConnectedOverlayHasBackdrop]=\"false\"\n>\n <div class=\"gio-menu-items-overlay\" (mouseenter)=\"onMouseEnter()\" (mouseleave)=\"onMouseLeave()\">\n <div class=\"gio-menu-items-overlay__header\" (click)=\"onHeaderClick()\">\n <span class=\"gio-menu-items-overlay__title\">{{ title }}</span>\n </div>\n <div class=\"gio-menu-items-overlay__content\">\n <ng-container *ngTemplateOutlet=\"menuItemsContent\"></ng-container>\n </div>\n </div>\n</ng-template>\n", styles: ["@charset \"UTF-8\";.gio-menu-items-host{position:relative;display:block}.gio-menu-items-host .gio-menu-items-container{position:relative}.gio-menu-items-host .gio-menu-items-container--overlay-visible{z-index:1001}.gio-menu-items-host .gio-menu-items-trigger{display:none;width:44px;height:36px;align-items:center;justify-content:center;border-radius:4px;margin:4px 0;cursor:pointer}.gio-menu-items-host .gio-menu-items-trigger:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items-trigger.active{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu-items-host .gio-menu-items-trigger__icon{width:20px;height:20px;color:var(--gio-oem-palette--background-contrast, #fff)}.gio-menu-items-host .gio-menu-items.mat-expansion-panel{margin:0;background:transparent;box-shadow:none}.gio-menu-items-host .gio-menu-items__icon{position:static;width:20px;height:20px;margin-right:12px}.gio-menu-items-host .gio-menu-items__title{display:block;margin-left:0}.gio-menu-items-host .gio-menu-items__icon-right{position:absolute;right:16px;width:20px;height:20px}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header{width:100%;height:auto;padding:6px 16px;border-radius:4px;border-bottom:1px solid transparent;margin:3px 0;box-shadow:none;cursor:pointer}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header .mat-content{justify-content:flex-start}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-header .mat-expansion-panel-header-title{justify-content:flex-start;color:var(--gio-oem-palette--background-contrast, #fff)}.gio-menu-items-host .gio-menu-items.active .mat-expansion-panel-header{border-radius:0}.gio-menu-items-host .gio-menu-items.mat-expanded{border-radius:8px;background:var(--gio-oem-palette--sub-menu, #322f2f)}.gio-menu-items-host .gio-menu-items.mat-expanded .mat-expansion-panel-header{border-bottom:1px solid rgba(255,255,255,.1);cursor:default;pointer-events:none}.gio-menu-items-host .gio-menu-items.mat-expanded .mat-expansion-panel-header:hover{background:transparent}.gio-menu-items-host .gio-menu-items .mat-expansion-indicator{display:none}.gio-menu-items-host .gio-menu-items .mat-expansion-panel-body{padding:0}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item{width:auto;height:36px;justify-content:flex-start;padding:0 8px;border-radius:4px;margin:4px 8px;background:transparent}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__title{display:block;margin:0}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__icon{position:absolute;left:16px}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item .gio-menu-item__icon-right{display:block}.gio-menu-items-host .gio-menu-items-accordion gio-menu-item.router-link-active .gio-menu-item,.gio-menu-items-host .gio-menu-items-accordion gio-menu-item:has(.gio-menu-item__active) .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}.gio-menu__reduced .gio-menu-items-host .gio-menu-items-trigger{display:flex}.gio-menu__reduced .gio-menu-items-host .gio-menu-items-accordion{display:none}.gio-menu-items-overlay{min-width:200px;border-radius:8px;background:var(--gio-oem-palette--sub-menu, #322f2f);box-shadow:0 4px 16px #0003}.gio-menu-items-overlay a{text-decoration:none}.gio-menu-items-overlay__header{padding:6px 16px;border-bottom:1px solid rgba(255,255,255,.1);color:var(--gio-oem-palette--background-contrast, #fff);cursor:pointer}.gio-menu-items-overlay__header:hover{border-radius:8px 8px 0 0;background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-overlay__title{font-size:14px;font-weight:500}.gio-menu-items-overlay__content{padding:4px 0}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item{width:auto;height:36px;justify-content:flex-start;padding:0 4px;border-radius:4px;margin:4px 14px;background:transparent}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item:hover{background:color-mix(in srgb,var(--gio-oem-palette--active, #5c5959) 50%,transparent)}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__title{display:block;margin:0}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__icon{display:none}.gio-menu-items-overlay__content gio-menu-item .gio-menu-item__icon-right{display:block}.gio-menu-items-overlay__content gio-menu-item.router-link-active .gio-menu-item,.gio-menu-items-overlay__content gio-menu-item:has(.gio-menu-item__active) .gio-menu-item{background:var(--gio-oem-palette--active, #5c5959);color:var(--gio-oem-palette--active-contrast, #fff)}\n"] }]
|
|
8039
|
+
}], ctorParameters: () => [], propDecorators: { icon: [{
|
|
8040
|
+
type: Input
|
|
8041
|
+
}], iconRight: [{
|
|
8042
|
+
type: Input
|
|
8043
|
+
}], title: [{
|
|
8044
|
+
type: Input
|
|
8045
|
+
}], active: [{
|
|
8046
|
+
type: Input
|
|
8047
|
+
}], routerBasePath: [{
|
|
8048
|
+
type: Input
|
|
8049
|
+
}] } });
|
|
8050
|
+
|
|
7949
8051
|
/*
|
|
7950
8052
|
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
7951
8053
|
*
|
|
@@ -7965,20 +8067,45 @@ class GioMenuModule {
|
|
|
7965
8067
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7966
8068
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.3", ngImport: i0, type: GioMenuModule, declarations: [GioMenuComponent,
|
|
7967
8069
|
GioMenuItemComponent,
|
|
8070
|
+
GioMenuItemsComponent,
|
|
7968
8071
|
GioMenuFooterComponent,
|
|
7969
8072
|
GioMenuListComponent,
|
|
7970
8073
|
GioMenuHeaderComponent,
|
|
7971
8074
|
GioMenuSearchComponent,
|
|
7972
8075
|
GioMenuSelectorComponent,
|
|
7973
|
-
GioMenuLicenseExpirationNotificationComponent], imports: [CommonModule,
|
|
8076
|
+
GioMenuLicenseExpirationNotificationComponent], imports: [CommonModule,
|
|
8077
|
+
MatAutocompleteModule,
|
|
8078
|
+
MatIconModule,
|
|
8079
|
+
MatInputModule,
|
|
8080
|
+
GioIconsModule,
|
|
8081
|
+
MatSelectModule,
|
|
8082
|
+
ReactiveFormsModule,
|
|
8083
|
+
MatAccordion,
|
|
8084
|
+
MatExpansionPanel,
|
|
8085
|
+
MatExpansionPanelTitle,
|
|
8086
|
+
MatExpansionPanelHeader,
|
|
8087
|
+
MatExpansionPanelDescription,
|
|
8088
|
+
RouterLink,
|
|
8089
|
+
RouterLinkActive,
|
|
8090
|
+
OverlayModule], exports: [GioMenuComponent,
|
|
7974
8091
|
GioMenuItemComponent,
|
|
8092
|
+
GioMenuItemsComponent,
|
|
7975
8093
|
GioMenuFooterComponent,
|
|
7976
8094
|
GioMenuListComponent,
|
|
7977
8095
|
GioMenuHeaderComponent,
|
|
7978
8096
|
GioMenuSearchComponent,
|
|
7979
8097
|
GioMenuSelectorComponent,
|
|
7980
8098
|
GioMenuLicenseExpirationNotificationComponent] }); }
|
|
7981
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuModule, imports: [CommonModule,
|
|
8099
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuModule, imports: [CommonModule,
|
|
8100
|
+
MatAutocompleteModule,
|
|
8101
|
+
MatIconModule,
|
|
8102
|
+
MatInputModule,
|
|
8103
|
+
GioIconsModule,
|
|
8104
|
+
MatSelectModule,
|
|
8105
|
+
ReactiveFormsModule,
|
|
8106
|
+
MatExpansionPanel,
|
|
8107
|
+
MatExpansionPanelHeader,
|
|
8108
|
+
OverlayModule] }); }
|
|
7982
8109
|
}
|
|
7983
8110
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: GioMenuModule, decorators: [{
|
|
7984
8111
|
type: NgModule,
|
|
@@ -7986,6 +8113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
7986
8113
|
declarations: [
|
|
7987
8114
|
GioMenuComponent,
|
|
7988
8115
|
GioMenuItemComponent,
|
|
8116
|
+
GioMenuItemsComponent,
|
|
7989
8117
|
GioMenuFooterComponent,
|
|
7990
8118
|
GioMenuListComponent,
|
|
7991
8119
|
GioMenuHeaderComponent,
|
|
@@ -7996,6 +8124,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
7996
8124
|
exports: [
|
|
7997
8125
|
GioMenuComponent,
|
|
7998
8126
|
GioMenuItemComponent,
|
|
8127
|
+
GioMenuItemsComponent,
|
|
7999
8128
|
GioMenuFooterComponent,
|
|
8000
8129
|
GioMenuListComponent,
|
|
8001
8130
|
GioMenuHeaderComponent,
|
|
@@ -8003,7 +8132,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
8003
8132
|
GioMenuSelectorComponent,
|
|
8004
8133
|
GioMenuLicenseExpirationNotificationComponent,
|
|
8005
8134
|
],
|
|
8006
|
-
imports: [
|
|
8135
|
+
imports: [
|
|
8136
|
+
CommonModule,
|
|
8137
|
+
MatAutocompleteModule,
|
|
8138
|
+
MatIconModule,
|
|
8139
|
+
MatInputModule,
|
|
8140
|
+
GioIconsModule,
|
|
8141
|
+
MatSelectModule,
|
|
8142
|
+
ReactiveFormsModule,
|
|
8143
|
+
MatAccordion,
|
|
8144
|
+
MatExpansionPanel,
|
|
8145
|
+
MatExpansionPanelTitle,
|
|
8146
|
+
MatExpansionPanelHeader,
|
|
8147
|
+
MatExpansionPanelDescription,
|
|
8148
|
+
RouterLink,
|
|
8149
|
+
RouterLinkActive,
|
|
8150
|
+
OverlayModule,
|
|
8151
|
+
],
|
|
8007
8152
|
}]
|
|
8008
8153
|
}] });
|
|
8009
8154
|
|
|
@@ -8748,5 +8893,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
8748
8893
|
* Generated bundle index. Do not edit.
|
|
8749
8894
|
*/
|
|
8750
8895
|
|
|
8751
|
-
export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElAssistantComponent, GioElPromptComponent, GioElService, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoClipboardCopyComponent, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_LICENSE_CONFIGURATION_TESTING, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeStyles, isFormHeaderElConfig, isLicensePluginOptions, isPromptError, isPromptSuccess };
|
|
8896
|
+
export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElAssistantComponent, GioElPromptComponent, GioElService, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuItemsComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoClipboardCopyComponent, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_LICENSE_CONFIGURATION_TESTING, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeStyles, isFormHeaderElConfig, isLicensePluginOptions, isPromptError, isPromptSuccess };
|
|
8752
8897
|
//# sourceMappingURL=gravitee-ui-particles-angular.mjs.map
|