@recursyve/nice-ui-kit.v2 13.2.0-beta.117 → 13.2.0-beta.119
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/esm2020/lib/components/assets-carousel/assets-carousel.component.mjs +6 -5
- package/esm2020/lib/components/navigation/directives/show-hint.directive.mjs +13 -8
- package/esm2020/lib/components/navigation/navigation.module.mjs +4 -2
- package/esm2020/lib/components/navigation/providers/hint.service.mjs +20 -0
- package/esm2020/lib/components/navigation/vertical/vertical.component.mjs +31 -15
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +53 -18
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +53 -17
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/navigation/directives/show-hint.directive.d.ts +3 -1
- package/lib/components/navigation/providers/hint.service.d.ts +9 -0
- package/lib/components/navigation/vertical/vertical.component.d.ts +6 -2
- package/package.json +1 -1
- package/src/lib/components/navigation/vertical/styles/appearances/default.theme.scss +1 -1
- package/src/lib/components/navigation/vertical/styles/appearances/dense.theme.scss +2 -2
|
@@ -1758,12 +1758,13 @@ class NiceAssetsCarouselComponent {
|
|
|
1758
1758
|
}
|
|
1759
1759
|
writeValue(assets) {
|
|
1760
1760
|
this._assets = assets ?? [];
|
|
1761
|
-
if (this._assets
|
|
1762
|
-
this._activeAsset =
|
|
1763
|
-
}
|
|
1764
|
-
else {
|
|
1761
|
+
if (this._assets.length === 0) {
|
|
1762
|
+
this._activeAsset = null;
|
|
1765
1763
|
this._lastAsset = true;
|
|
1766
1764
|
}
|
|
1765
|
+
else if (this._assets.length > 0) {
|
|
1766
|
+
this._activeAsset = this._assets[this._active];
|
|
1767
|
+
}
|
|
1767
1768
|
}
|
|
1768
1769
|
registerOnChange(fn) {
|
|
1769
1770
|
this.propagate = fn;
|
|
@@ -7823,13 +7824,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
7823
7824
|
}]
|
|
7824
7825
|
}] });
|
|
7825
7826
|
|
|
7827
|
+
class NiceNavigationHintService {
|
|
7828
|
+
constructor() {
|
|
7829
|
+
this.hasActiveHint$ = new BehaviorSubject(false);
|
|
7830
|
+
}
|
|
7831
|
+
get hasActiveHint() {
|
|
7832
|
+
return this.hasActiveHint$.value;
|
|
7833
|
+
}
|
|
7834
|
+
setActiveHint(isActive) {
|
|
7835
|
+
this.hasActiveHint$.next(isActive);
|
|
7836
|
+
}
|
|
7837
|
+
}
|
|
7838
|
+
NiceNavigationHintService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7839
|
+
NiceNavigationHintService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService });
|
|
7840
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService, decorators: [{
|
|
7841
|
+
type: Injectable
|
|
7842
|
+
}] });
|
|
7843
|
+
|
|
7826
7844
|
class NiceShowHintDirective {
|
|
7827
|
-
constructor(_overlay, _elementRef, _viewContainerRef, _ngZone, _platform) {
|
|
7845
|
+
constructor(_overlay, _elementRef, _viewContainerRef, _ngZone, _platform, _hintService) {
|
|
7828
7846
|
this._overlay = _overlay;
|
|
7829
7847
|
this._elementRef = _elementRef;
|
|
7830
7848
|
this._viewContainerRef = _viewContainerRef;
|
|
7831
7849
|
this._ngZone = _ngZone;
|
|
7832
7850
|
this._platform = _platform;
|
|
7851
|
+
this._hintService = _hintService;
|
|
7833
7852
|
this.shouldShow = false;
|
|
7834
7853
|
this._pointerExitEventsInitialized = false;
|
|
7835
7854
|
this._passiveListeners = [];
|
|
@@ -7852,11 +7871,13 @@ class NiceShowHintDirective {
|
|
|
7852
7871
|
const overlayRef = this._createOverlay();
|
|
7853
7872
|
this._detach();
|
|
7854
7873
|
this._hintInstance = overlayRef.attach(this._portal).instance;
|
|
7874
|
+
this._hintService.setActiveHint(true);
|
|
7855
7875
|
}
|
|
7856
7876
|
hide() {
|
|
7857
7877
|
const instance = this._hintInstance;
|
|
7858
7878
|
if (instance) {
|
|
7859
7879
|
this._detach();
|
|
7880
|
+
this._hintService.setActiveHint(false);
|
|
7860
7881
|
}
|
|
7861
7882
|
}
|
|
7862
7883
|
_createOverlay() {
|
|
@@ -7885,7 +7906,7 @@ class NiceShowHintDirective {
|
|
|
7885
7906
|
.withFlexibleDimensions(false);
|
|
7886
7907
|
strategy.positionChanges.pipe(takeUntil(this.unsubscribeAll$)).subscribe(change => {
|
|
7887
7908
|
if (this._hintInstance) {
|
|
7888
|
-
if (change.scrollableViewProperties.isOverlayClipped
|
|
7909
|
+
if (change.scrollableViewProperties.isOverlayClipped) {
|
|
7889
7910
|
// After position changes occur and the overlay is clipped by
|
|
7890
7911
|
// a parent scrollable then close the tooltip.
|
|
7891
7912
|
this._ngZone.run(() => this.hide());
|
|
@@ -7899,10 +7920,10 @@ class NiceShowHintDirective {
|
|
|
7899
7920
|
.detachments()
|
|
7900
7921
|
.pipe(takeUntil(this.unsubscribeAll$))
|
|
7901
7922
|
.subscribe(() => this._detach());
|
|
7902
|
-
this._overlayRef
|
|
7923
|
+
/*this._overlayRef
|
|
7903
7924
|
.outsidePointerEvents()
|
|
7904
7925
|
.pipe(takeUntil(this.unsubscribeAll$))
|
|
7905
|
-
.subscribe(() => this._hintInstance?._handleBodyInteraction())
|
|
7926
|
+
.subscribe(() => this._hintInstance?._handleBodyInteraction());*/
|
|
7906
7927
|
return this._overlayRef;
|
|
7907
7928
|
}
|
|
7908
7929
|
_detach() {
|
|
@@ -7912,7 +7933,7 @@ class NiceShowHintDirective {
|
|
|
7912
7933
|
this._hintInstance = null;
|
|
7913
7934
|
}
|
|
7914
7935
|
_isHintVisible() {
|
|
7915
|
-
return !!this._hintInstance
|
|
7936
|
+
return !!this._hintInstance;
|
|
7916
7937
|
}
|
|
7917
7938
|
_setupPointerEnterEventsIfNeeded() {
|
|
7918
7939
|
// Optimization: Defer hooking up events if there's no message or the tooltip is disabled.
|
|
@@ -7961,12 +7982,12 @@ class NiceShowHintDirective {
|
|
|
7961
7982
|
});
|
|
7962
7983
|
}
|
|
7963
7984
|
}
|
|
7964
|
-
NiceShowHintDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceShowHintDirective, deps: [{ token: i1$4.Overlay }, { token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i1$d.Platform }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7985
|
+
NiceShowHintDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceShowHintDirective, deps: [{ token: i1$4.Overlay }, { token: i0.ElementRef }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i1$d.Platform }, { token: NiceNavigationHintService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7965
7986
|
NiceShowHintDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NiceShowHintDirective, selector: "[niceShowHint]", inputs: { shouldShow: "shouldShow", item: "item" }, ngImport: i0 });
|
|
7966
7987
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceShowHintDirective, decorators: [{
|
|
7967
7988
|
type: Directive,
|
|
7968
7989
|
args: [{ selector: "[niceShowHint]" }]
|
|
7969
|
-
}], ctorParameters: function () { return [{ type: i1$4.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i1$d.Platform }]; }, propDecorators: { shouldShow: [{
|
|
7990
|
+
}], ctorParameters: function () { return [{ type: i1$4.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i1$d.Platform }, { type: NiceNavigationHintService }]; }, propDecorators: { shouldShow: [{
|
|
7970
7991
|
type: Input
|
|
7971
7992
|
}], item: [{
|
|
7972
7993
|
type: Input
|
|
@@ -8565,13 +8586,14 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8565
8586
|
/**
|
|
8566
8587
|
* Constructor
|
|
8567
8588
|
*/
|
|
8568
|
-
constructor(_changeDetectorRef, _niceNavigationService, _niceUtilsService, _animationBuilder, _elementRef, _renderer2, _router, _scrollStrategyOptions) {
|
|
8589
|
+
constructor(_changeDetectorRef, _niceNavigationService, _niceUtilsService, _animationBuilder, _elementRef, _renderer2, _router, _scrollStrategyOptions, _hintService) {
|
|
8569
8590
|
super(_changeDetectorRef, _niceNavigationService, _niceUtilsService);
|
|
8570
8591
|
this._animationBuilder = _animationBuilder;
|
|
8571
8592
|
this._elementRef = _elementRef;
|
|
8572
8593
|
this._renderer2 = _renderer2;
|
|
8573
8594
|
this._router = _router;
|
|
8574
8595
|
this._scrollStrategyOptions = _scrollStrategyOptions;
|
|
8596
|
+
this._hintService = _hintService;
|
|
8575
8597
|
this._animationsEnabled = false;
|
|
8576
8598
|
this._scrollStrategy = this._scrollStrategyOptions.block();
|
|
8577
8599
|
this.name = this._niceUtilsService.randomId();
|
|
@@ -8581,11 +8603,13 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8581
8603
|
this.mode = "side";
|
|
8582
8604
|
this.opened = true;
|
|
8583
8605
|
this.hovered = false;
|
|
8606
|
+
this.hasHint = false;
|
|
8584
8607
|
this.position = "left";
|
|
8585
8608
|
this.transparentOverlay = false;
|
|
8586
8609
|
this.appearanceChanged = new EventEmitter();
|
|
8587
8610
|
this.modeChanged = new EventEmitter();
|
|
8588
8611
|
this.openedChanged = new EventEmitter();
|
|
8612
|
+
this.hoveredChanged = new EventEmitter();
|
|
8589
8613
|
this.positionChanged = new EventEmitter();
|
|
8590
8614
|
this.activeAsideItemId = null;
|
|
8591
8615
|
this.onCollapsableItemCollapsed = new ReplaySubject(1);
|
|
@@ -8620,7 +8644,8 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8620
8644
|
"nice-vertical-navigation-mode-side": this.mode === "side",
|
|
8621
8645
|
"nice-vertical-navigation-opened": this.opened,
|
|
8622
8646
|
"nice-vertical-navigation-position-left": this.position === "left",
|
|
8623
|
-
"nice-vertical-navigation-position-right": this.position === "right"
|
|
8647
|
+
"nice-vertical-navigation-position-right": this.position === "right",
|
|
8648
|
+
"nice-vertical-navigation-has-hint": this.hasHint
|
|
8624
8649
|
};
|
|
8625
8650
|
}
|
|
8626
8651
|
/**
|
|
@@ -8749,6 +8774,10 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8749
8774
|
this.closeAside();
|
|
8750
8775
|
}
|
|
8751
8776
|
});
|
|
8777
|
+
this._hintService.hasActiveHint$.pipe(takeUntil(this._unsubscribeAll)).subscribe(hasHint => {
|
|
8778
|
+
this.hasHint = hasHint;
|
|
8779
|
+
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
8780
|
+
});
|
|
8752
8781
|
}
|
|
8753
8782
|
/**
|
|
8754
8783
|
* After view init
|
|
@@ -9013,6 +9042,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9013
9042
|
this._enableAnimations();
|
|
9014
9043
|
// Set the hovered
|
|
9015
9044
|
this.hovered = true;
|
|
9045
|
+
this.hoveredChanged.next(this.hovered);
|
|
9016
9046
|
}
|
|
9017
9047
|
/**
|
|
9018
9048
|
* On mouseleave
|
|
@@ -9022,6 +9052,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9022
9052
|
this._enableAnimations();
|
|
9023
9053
|
// Set the hovered
|
|
9024
9054
|
this.hovered = false;
|
|
9055
|
+
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
9025
9056
|
}
|
|
9026
9057
|
/**
|
|
9027
9058
|
* Open/close the navigation
|
|
@@ -9048,12 +9079,12 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9048
9079
|
this.openedChanged.next(open);
|
|
9049
9080
|
}
|
|
9050
9081
|
}
|
|
9051
|
-
NiceVerticalNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceVerticalNavigationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: NiceNavigationService }, { token: NiceUtilsService }, { token: i1$a.AnimationBuilder }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$9.Router }, { token: i1$4.ScrollStrategyOptions }], target: i0.ɵɵFactoryTarget.Component });
|
|
9052
|
-
NiceVerticalNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: NiceVerticalNavigationComponent, selector: "nice-vertical-navigation", inputs: { name: "name", appearance: "appearance", autoCollapse: "autoCollapse", inner: "inner", mode: "mode", opened: "opened", hovered: "hovered", position: "position", transparentOverlay: "transparentOverlay", navigation: "navigation" }, outputs: { appearanceChanged: "appearanceChanged", modeChanged: "modeChanged", openedChanged: "openedChanged", positionChanged: "positionChanged" }, host: { listeners: { "mouseenter": "_onMouseenter()", "mouseleave": "_onMouseleave()" }, properties: { "class": "this.classList", "style": "this.styleList" } }, viewQueries: [{ propertyName: "_navigationContentEl", first: true, predicate: ["navigationContent"], descendants: true }, { propertyName: "niceScrollbarDirectives", predicate: NiceScrollbarDirective, descendants: true }], exportAs: ["niceVerticalNavigation"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div class=\"nice-vertical-navigation-wrapper\">\n <!-- Header -->\n <div class=\"nice-vertical-navigation-header\">\n <ng-content select=\"[niceVerticalNavigationHeader]\"></ng-content>\n </div>\n\n <!-- Content -->\n <div\n class=\"nice-vertical-navigation-content\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: inner, suppressScrollX: true }\"\n #navigationContent\n >\n <!-- Content header -->\n <div class=\"nice-vertical-navigation-content-header\">\n <ng-content select=\"[niceVerticalNavigationContentHeader]\"></ng-content>\n </div>\n\n <!-- Items -->\n <div *ngFor=\"let item of navigation; trackBy: trackByFn\" [@.disabled]=\"!animateNextNavChange\" @slideInRight>\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"!(item | niceShouldHide | async)\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside'\"\n [item]=\"item\"\n [name]=\"name\"\n [activeItemId]=\"activeAsideItemId\"\n [autoCollapse]=\"autoCollapse\"\n [skipChildren]=\"true\"\n (click)=\"toggleAside(item)\"\n ></nice-vertical-navigation-aside-item>\n\n <!-- Basic -->\n <nice-vertical-navigation-basic-item\n *ngIf=\"item.type === 'basic'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-basic-item>\n\n <!-- Collapsable -->\n <nice-vertical-navigation-collapsable-item\n *ngIf=\"item.type === 'collapsable'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-collapsable-item>\n\n <!-- Divider -->\n <nice-vertical-navigation-divider-item\n *ngIf=\"item.type === 'divider'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-divider-item>\n\n <!-- Group -->\n <nice-vertical-navigation-group-item\n *ngIf=\"item.type === 'group'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-group-item>\n\n <!-- Spacer -->\n <nice-vertical-navigation-spacer-item\n *ngIf=\"item.type === 'spacer'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-spacer-item>\n </ng-container>\n </div>\n\n <!-- Content footer -->\n <div class=\"nice-vertical-navigation-content-footer\">\n <ng-content select=\"[niceVerticalNavigationContentFooter]\"></ng-content>\n </div>\n\n </div>\n\n <!-- Footer -->\n <div class=\"nice-vertical-navigation-footer\">\n <ng-content select=\"[niceVerticalNavigationFooter]\"></ng-content>\n </div>\n</div>\n\n<!-- Aside -->\n<div\n class=\"nice-vertical-navigation-aside-wrapper\"\n *ngIf=\"activeAsideItemId\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: false, suppressScrollX: true }\"\n [@fadeInLeft]=\"position === 'left'\"\n [@fadeInRight]=\"position === 'right'\"\n [@fadeOutLeft]=\"position === 'left'\"\n [@fadeOutRight]=\"position === 'right'\"\n>\n\n <!-- Items -->\n <ng-container *ngFor=\"let item of navigation; trackBy: trackByFn\">\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"(item.hidden && !item.hidden(item)) || !item.hidden\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside' && item.id === activeAsideItemId\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-aside-item>\n </ng-container>\n </ng-container>\n</div>\n", components: [{ type: NiceVerticalNavigationAsideItemComponent, selector: "nice-vertical-navigation-aside-item", inputs: ["activeItemId", "autoCollapse", "item", "name", "skipChildren"] }, { type: NiceVerticalNavigationBasicItemComponent, selector: "nice-vertical-navigation-basic-item", inputs: ["item", "name"] }, { type: NiceVerticalNavigationCollapsableItemComponent, selector: "nice-vertical-navigation-collapsable-item", inputs: ["autoCollapse", "item", "name"] }, { type: NiceVerticalNavigationDividerItemComponent, selector: "nice-vertical-navigation-divider-item", inputs: ["item", "name"] }, { type: NiceVerticalNavigationGroupItemComponent, selector: "nice-vertical-navigation-group-item", inputs: ["autoCollapse", "item", "name"] }, { type: NiceVerticalNavigationSpacerItemComponent, selector: "nice-vertical-navigation-spacer-item", inputs: ["item", "name"] }], directives: [{ type: NiceScrollbarDirective, selector: "[niceScrollbar]", inputs: ["niceScrollbar", "niceScrollbarOptions"], exportAs: ["niceScrollbar"] }, { type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "async": i6.AsyncPipe, "niceShouldHide": NiceShouldHidePipe }, animations: niceAnimations, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
9082
|
+
NiceVerticalNavigationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceVerticalNavigationComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: NiceNavigationService }, { token: NiceUtilsService }, { token: i1$a.AnimationBuilder }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$9.Router }, { token: i1$4.ScrollStrategyOptions }, { token: NiceNavigationHintService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9083
|
+
NiceVerticalNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: NiceVerticalNavigationComponent, selector: "nice-vertical-navigation", inputs: { name: "name", appearance: "appearance", autoCollapse: "autoCollapse", inner: "inner", mode: "mode", opened: "opened", hovered: "hovered", hasHint: "hasHint", position: "position", transparentOverlay: "transparentOverlay", navigation: "navigation" }, outputs: { appearanceChanged: "appearanceChanged", modeChanged: "modeChanged", openedChanged: "openedChanged", hoveredChanged: "hoveredChanged", positionChanged: "positionChanged" }, host: { listeners: { "mouseenter": "_onMouseenter()", "mouseleave": "_onMouseleave()" }, properties: { "class": "this.classList", "style": "this.styleList" } }, viewQueries: [{ propertyName: "_navigationContentEl", first: true, predicate: ["navigationContent"], descendants: true }, { propertyName: "niceScrollbarDirectives", predicate: NiceScrollbarDirective, descendants: true }], exportAs: ["niceVerticalNavigation"], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div class=\"nice-vertical-navigation-wrapper\">\n <!-- Header -->\n <div class=\"nice-vertical-navigation-header\">\n <ng-content select=\"[niceVerticalNavigationHeader]\"></ng-content>\n </div>\n\n <!-- Content -->\n <div\n class=\"nice-vertical-navigation-content\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: inner, suppressScrollX: true }\"\n #navigationContent\n >\n <!-- Content header -->\n <div class=\"nice-vertical-navigation-content-header\">\n <ng-content select=\"[niceVerticalNavigationContentHeader]\"></ng-content>\n </div>\n\n <!-- Items -->\n <div *ngFor=\"let item of navigation; trackBy: trackByFn\" [@.disabled]=\"!animateNextNavChange\" @slideInRight>\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"!(item | niceShouldHide | async)\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside'\"\n [item]=\"item\"\n [name]=\"name\"\n [activeItemId]=\"activeAsideItemId\"\n [autoCollapse]=\"autoCollapse\"\n [skipChildren]=\"true\"\n (click)=\"toggleAside(item)\"\n ></nice-vertical-navigation-aside-item>\n\n <!-- Basic -->\n <nice-vertical-navigation-basic-item\n *ngIf=\"item.type === 'basic'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-basic-item>\n\n <!-- Collapsable -->\n <nice-vertical-navigation-collapsable-item\n *ngIf=\"item.type === 'collapsable'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-collapsable-item>\n\n <!-- Divider -->\n <nice-vertical-navigation-divider-item\n *ngIf=\"item.type === 'divider'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-divider-item>\n\n <!-- Group -->\n <nice-vertical-navigation-group-item\n *ngIf=\"item.type === 'group'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-group-item>\n\n <!-- Spacer -->\n <nice-vertical-navigation-spacer-item\n *ngIf=\"item.type === 'spacer'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-spacer-item>\n </ng-container>\n </div>\n\n <!-- Content footer -->\n <div class=\"nice-vertical-navigation-content-footer\">\n <ng-content select=\"[niceVerticalNavigationContentFooter]\"></ng-content>\n </div>\n\n </div>\n\n <!-- Footer -->\n <div class=\"nice-vertical-navigation-footer\">\n <ng-content select=\"[niceVerticalNavigationFooter]\"></ng-content>\n </div>\n</div>\n\n<!-- Aside -->\n<div\n class=\"nice-vertical-navigation-aside-wrapper\"\n *ngIf=\"activeAsideItemId\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: false, suppressScrollX: true }\"\n [@fadeInLeft]=\"position === 'left'\"\n [@fadeInRight]=\"position === 'right'\"\n [@fadeOutLeft]=\"position === 'left'\"\n [@fadeOutRight]=\"position === 'right'\"\n>\n\n <!-- Items -->\n <ng-container *ngFor=\"let item of navigation; trackBy: trackByFn\">\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"(item.hidden && !item.hidden(item)) || !item.hidden\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside' && item.id === activeAsideItemId\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-aside-item>\n </ng-container>\n </ng-container>\n</div>\n", components: [{ type: NiceVerticalNavigationAsideItemComponent, selector: "nice-vertical-navigation-aside-item", inputs: ["activeItemId", "autoCollapse", "item", "name", "skipChildren"] }, { type: NiceVerticalNavigationBasicItemComponent, selector: "nice-vertical-navigation-basic-item", inputs: ["item", "name"] }, { type: NiceVerticalNavigationCollapsableItemComponent, selector: "nice-vertical-navigation-collapsable-item", inputs: ["autoCollapse", "item", "name"] }, { type: NiceVerticalNavigationDividerItemComponent, selector: "nice-vertical-navigation-divider-item", inputs: ["item", "name"] }, { type: NiceVerticalNavigationGroupItemComponent, selector: "nice-vertical-navigation-group-item", inputs: ["autoCollapse", "item", "name"] }, { type: NiceVerticalNavigationSpacerItemComponent, selector: "nice-vertical-navigation-spacer-item", inputs: ["item", "name"] }], directives: [{ type: NiceScrollbarDirective, selector: "[niceScrollbar]", inputs: ["niceScrollbar", "niceScrollbarOptions"], exportAs: ["niceScrollbar"] }, { type: i6.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "async": i6.AsyncPipe, "niceShouldHide": NiceShouldHidePipe }, animations: niceAnimations, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
9053
9084
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceVerticalNavigationComponent, decorators: [{
|
|
9054
9085
|
type: Component,
|
|
9055
9086
|
args: [{ selector: "nice-vertical-navigation", animations: niceAnimations, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, exportAs: "niceVerticalNavigation", template: "<div class=\"nice-vertical-navigation-wrapper\">\n <!-- Header -->\n <div class=\"nice-vertical-navigation-header\">\n <ng-content select=\"[niceVerticalNavigationHeader]\"></ng-content>\n </div>\n\n <!-- Content -->\n <div\n class=\"nice-vertical-navigation-content\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: inner, suppressScrollX: true }\"\n #navigationContent\n >\n <!-- Content header -->\n <div class=\"nice-vertical-navigation-content-header\">\n <ng-content select=\"[niceVerticalNavigationContentHeader]\"></ng-content>\n </div>\n\n <!-- Items -->\n <div *ngFor=\"let item of navigation; trackBy: trackByFn\" [@.disabled]=\"!animateNextNavChange\" @slideInRight>\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"!(item | niceShouldHide | async)\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside'\"\n [item]=\"item\"\n [name]=\"name\"\n [activeItemId]=\"activeAsideItemId\"\n [autoCollapse]=\"autoCollapse\"\n [skipChildren]=\"true\"\n (click)=\"toggleAside(item)\"\n ></nice-vertical-navigation-aside-item>\n\n <!-- Basic -->\n <nice-vertical-navigation-basic-item\n *ngIf=\"item.type === 'basic'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-basic-item>\n\n <!-- Collapsable -->\n <nice-vertical-navigation-collapsable-item\n *ngIf=\"item.type === 'collapsable'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-collapsable-item>\n\n <!-- Divider -->\n <nice-vertical-navigation-divider-item\n *ngIf=\"item.type === 'divider'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-divider-item>\n\n <!-- Group -->\n <nice-vertical-navigation-group-item\n *ngIf=\"item.type === 'group'\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-group-item>\n\n <!-- Spacer -->\n <nice-vertical-navigation-spacer-item\n *ngIf=\"item.type === 'spacer'\"\n [item]=\"item\"\n [name]=\"name\"\n ></nice-vertical-navigation-spacer-item>\n </ng-container>\n </div>\n\n <!-- Content footer -->\n <div class=\"nice-vertical-navigation-content-footer\">\n <ng-content select=\"[niceVerticalNavigationContentFooter]\"></ng-content>\n </div>\n\n </div>\n\n <!-- Footer -->\n <div class=\"nice-vertical-navigation-footer\">\n <ng-content select=\"[niceVerticalNavigationFooter]\"></ng-content>\n </div>\n</div>\n\n<!-- Aside -->\n<div\n class=\"nice-vertical-navigation-aside-wrapper\"\n *ngIf=\"activeAsideItemId\"\n niceScrollbar\n [niceScrollbarOptions]=\"{ wheelPropagation: false, suppressScrollX: true }\"\n [@fadeInLeft]=\"position === 'left'\"\n [@fadeInRight]=\"position === 'right'\"\n [@fadeOutLeft]=\"position === 'left'\"\n [@fadeOutRight]=\"position === 'right'\"\n>\n\n <!-- Items -->\n <ng-container *ngFor=\"let item of navigation; trackBy: trackByFn\">\n <!-- Skip the hidden items -->\n <ng-container *ngIf=\"(item.hidden && !item.hidden(item)) || !item.hidden\">\n <!-- Aside -->\n <nice-vertical-navigation-aside-item\n *ngIf=\"item.type === 'aside' && item.id === activeAsideItemId\"\n [item]=\"item\"\n [name]=\"name\"\n [autoCollapse]=\"autoCollapse\"\n ></nice-vertical-navigation-aside-item>\n </ng-container>\n </ng-container>\n</div>\n" }]
|
|
9056
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: NiceNavigationService }, { type: NiceUtilsService }, { type: i1$a.AnimationBuilder }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1$9.Router }, { type: i1$4.ScrollStrategyOptions }]; }, propDecorators: { name: [{
|
|
9087
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: NiceNavigationService }, { type: NiceUtilsService }, { type: i1$a.AnimationBuilder }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1$9.Router }, { type: i1$4.ScrollStrategyOptions }, { type: NiceNavigationHintService }]; }, propDecorators: { name: [{
|
|
9057
9088
|
type: Input
|
|
9058
9089
|
}], appearance: [{
|
|
9059
9090
|
type: Input
|
|
@@ -9067,6 +9098,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9067
9098
|
type: Input
|
|
9068
9099
|
}], hovered: [{
|
|
9069
9100
|
type: Input
|
|
9101
|
+
}], hasHint: [{
|
|
9102
|
+
type: Input
|
|
9070
9103
|
}], position: [{
|
|
9071
9104
|
type: Input
|
|
9072
9105
|
}], transparentOverlay: [{
|
|
@@ -9077,6 +9110,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9077
9110
|
type: Output
|
|
9078
9111
|
}], openedChanged: [{
|
|
9079
9112
|
type: Output
|
|
9113
|
+
}], hoveredChanged: [{
|
|
9114
|
+
type: Output
|
|
9080
9115
|
}], positionChanged: [{
|
|
9081
9116
|
type: Output
|
|
9082
9117
|
}], _navigationContentEl: [{
|
|
@@ -9129,7 +9164,7 @@ NiceNavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
9129
9164
|
NiceScrollbarModule,
|
|
9130
9165
|
TranslateModule], exports: [NiceHorizontalNavigationComponent,
|
|
9131
9166
|
NiceVerticalNavigationComponent] });
|
|
9132
|
-
NiceNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationModule, imports: [[
|
|
9167
|
+
NiceNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationModule, providers: [NiceNavigationHintService], imports: [[
|
|
9133
9168
|
CommonModule,
|
|
9134
9169
|
RouterModule,
|
|
9135
9170
|
MatButtonModule,
|
|
@@ -9172,6 +9207,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9172
9207
|
NiceShouldShowHintPipe,
|
|
9173
9208
|
NiceShowHintDirective
|
|
9174
9209
|
],
|
|
9210
|
+
providers: [NiceNavigationHintService],
|
|
9175
9211
|
exports: [
|
|
9176
9212
|
NiceHorizontalNavigationComponent,
|
|
9177
9213
|
NiceVerticalNavigationComponent
|