@tet/tet-components-angular 1.4.41-staging → 1.4.42-production
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.
|
@@ -554,11 +554,12 @@ let TetBusinessNavigation = class TetBusinessNavigation {
|
|
|
554
554
|
constructor(c, r, z) {
|
|
555
555
|
this.z = z;
|
|
556
556
|
this.menuClickEvent = new EventEmitter();
|
|
557
|
+
this.menuExpandEvent = new EventEmitter();
|
|
557
558
|
c.detach();
|
|
558
559
|
this.el = r.nativeElement;
|
|
559
560
|
}
|
|
560
561
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
561
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessNavigation, isStandalone: false, selector: "tet-business-navigation", inputs: { emitOnSelectedClick: "emitOnSelectedClick", expandable: "expandable", language: "language", menuItems: "menuItems", singleOpenMenu: "singleOpenMenu", theme: "theme" }, outputs: { "menu-click-event": "menu-click-event", menuClickEvent: "menu-click-event" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
562
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessNavigation, isStandalone: false, selector: "tet-business-navigation", inputs: { emitOnSelectedClick: "emitOnSelectedClick", expandable: "expandable", language: "language", menuItems: "menuItems", singleOpenMenu: "singleOpenMenu", theme: "theme" }, outputs: { "menu-click-event": "menu-click-event", "menu-expand-event": "menu-expand-event", menuClickEvent: "menu-click-event", menuExpandEvent: "menu-expand-event" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
562
563
|
};
|
|
563
564
|
TetBusinessNavigation = __decorate([
|
|
564
565
|
ProxyCmp({
|
|
@@ -574,12 +575,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
574
575
|
template: '<ng-content></ng-content>',
|
|
575
576
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
576
577
|
inputs: ['emitOnSelectedClick', 'expandable', 'language', { name: 'menuItems', required: true }, 'singleOpenMenu', 'theme'],
|
|
577
|
-
outputs: ['menu-click-event'],
|
|
578
|
+
outputs: ['menu-click-event', 'menu-expand-event'],
|
|
578
579
|
standalone: false
|
|
579
580
|
}]
|
|
580
581
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuClickEvent: [{
|
|
581
582
|
type: Output,
|
|
582
583
|
args: ['menu-click-event']
|
|
584
|
+
}], menuExpandEvent: [{
|
|
585
|
+
type: Output,
|
|
586
|
+
args: ['menu-expand-event']
|
|
583
587
|
}] } });
|
|
584
588
|
let TetBusinessRoundStepper = class TetBusinessRoundStepper {
|
|
585
589
|
constructor(c, r, z) {
|