@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
|
@@ -1754,14 +1754,14 @@ class NiceAssetsCarouselComponent {
|
|
|
1754
1754
|
this.activeChange.emit(this._active);
|
|
1755
1755
|
}
|
|
1756
1756
|
writeValue(assets) {
|
|
1757
|
-
var _a;
|
|
1758
1757
|
this._assets = assets !== null && assets !== void 0 ? assets : [];
|
|
1759
|
-
if (
|
|
1760
|
-
this._activeAsset =
|
|
1761
|
-
}
|
|
1762
|
-
else {
|
|
1758
|
+
if (this._assets.length === 0) {
|
|
1759
|
+
this._activeAsset = null;
|
|
1763
1760
|
this._lastAsset = true;
|
|
1764
1761
|
}
|
|
1762
|
+
else if (this._assets.length > 0) {
|
|
1763
|
+
this._activeAsset = this._assets[this._active];
|
|
1764
|
+
}
|
|
1765
1765
|
}
|
|
1766
1766
|
registerOnChange(fn) {
|
|
1767
1767
|
this.propagate = fn;
|
|
@@ -7837,13 +7837,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
7837
7837
|
}]
|
|
7838
7838
|
}] });
|
|
7839
7839
|
|
|
7840
|
+
class NiceNavigationHintService {
|
|
7841
|
+
constructor() {
|
|
7842
|
+
this.hasActiveHint$ = new BehaviorSubject(false);
|
|
7843
|
+
}
|
|
7844
|
+
get hasActiveHint() {
|
|
7845
|
+
return this.hasActiveHint$.value;
|
|
7846
|
+
}
|
|
7847
|
+
setActiveHint(isActive) {
|
|
7848
|
+
this.hasActiveHint$.next(isActive);
|
|
7849
|
+
}
|
|
7850
|
+
}
|
|
7851
|
+
NiceNavigationHintService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7852
|
+
NiceNavigationHintService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService });
|
|
7853
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationHintService, decorators: [{
|
|
7854
|
+
type: Injectable
|
|
7855
|
+
}] });
|
|
7856
|
+
|
|
7840
7857
|
class NiceShowHintDirective {
|
|
7841
|
-
constructor(_overlay, _elementRef, _viewContainerRef, _ngZone, _platform) {
|
|
7858
|
+
constructor(_overlay, _elementRef, _viewContainerRef, _ngZone, _platform, _hintService) {
|
|
7842
7859
|
this._overlay = _overlay;
|
|
7843
7860
|
this._elementRef = _elementRef;
|
|
7844
7861
|
this._viewContainerRef = _viewContainerRef;
|
|
7845
7862
|
this._ngZone = _ngZone;
|
|
7846
7863
|
this._platform = _platform;
|
|
7864
|
+
this._hintService = _hintService;
|
|
7847
7865
|
this.shouldShow = false;
|
|
7848
7866
|
this._pointerExitEventsInitialized = false;
|
|
7849
7867
|
this._passiveListeners = [];
|
|
@@ -7866,11 +7884,13 @@ class NiceShowHintDirective {
|
|
|
7866
7884
|
const overlayRef = this._createOverlay();
|
|
7867
7885
|
this._detach();
|
|
7868
7886
|
this._hintInstance = overlayRef.attach(this._portal).instance;
|
|
7887
|
+
this._hintService.setActiveHint(true);
|
|
7869
7888
|
}
|
|
7870
7889
|
hide() {
|
|
7871
7890
|
const instance = this._hintInstance;
|
|
7872
7891
|
if (instance) {
|
|
7873
7892
|
this._detach();
|
|
7893
|
+
this._hintService.setActiveHint(false);
|
|
7874
7894
|
}
|
|
7875
7895
|
}
|
|
7876
7896
|
_createOverlay() {
|
|
@@ -7899,7 +7919,7 @@ class NiceShowHintDirective {
|
|
|
7899
7919
|
.withFlexibleDimensions(false);
|
|
7900
7920
|
strategy.positionChanges.pipe(takeUntil(this.unsubscribeAll$)).subscribe(change => {
|
|
7901
7921
|
if (this._hintInstance) {
|
|
7902
|
-
if (change.scrollableViewProperties.isOverlayClipped
|
|
7922
|
+
if (change.scrollableViewProperties.isOverlayClipped) {
|
|
7903
7923
|
// After position changes occur and the overlay is clipped by
|
|
7904
7924
|
// a parent scrollable then close the tooltip.
|
|
7905
7925
|
this._ngZone.run(() => this.hide());
|
|
@@ -7913,10 +7933,10 @@ class NiceShowHintDirective {
|
|
|
7913
7933
|
.detachments()
|
|
7914
7934
|
.pipe(takeUntil(this.unsubscribeAll$))
|
|
7915
7935
|
.subscribe(() => this._detach());
|
|
7916
|
-
this._overlayRef
|
|
7936
|
+
/*this._overlayRef
|
|
7917
7937
|
.outsidePointerEvents()
|
|
7918
7938
|
.pipe(takeUntil(this.unsubscribeAll$))
|
|
7919
|
-
.subscribe(() =>
|
|
7939
|
+
.subscribe(() => this._hintInstance?._handleBodyInteraction());*/
|
|
7920
7940
|
return this._overlayRef;
|
|
7921
7941
|
}
|
|
7922
7942
|
_detach() {
|
|
@@ -7926,7 +7946,7 @@ class NiceShowHintDirective {
|
|
|
7926
7946
|
this._hintInstance = null;
|
|
7927
7947
|
}
|
|
7928
7948
|
_isHintVisible() {
|
|
7929
|
-
return !!this._hintInstance
|
|
7949
|
+
return !!this._hintInstance;
|
|
7930
7950
|
}
|
|
7931
7951
|
_setupPointerEnterEventsIfNeeded() {
|
|
7932
7952
|
// Optimization: Defer hooking up events if there's no message or the tooltip is disabled.
|
|
@@ -7976,12 +7996,12 @@ class NiceShowHintDirective {
|
|
|
7976
7996
|
});
|
|
7977
7997
|
}
|
|
7978
7998
|
}
|
|
7979
|
-
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 });
|
|
7999
|
+
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 });
|
|
7980
8000
|
NiceShowHintDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NiceShowHintDirective, selector: "[niceShowHint]", inputs: { shouldShow: "shouldShow", item: "item" }, ngImport: i0 });
|
|
7981
8001
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceShowHintDirective, decorators: [{
|
|
7982
8002
|
type: Directive,
|
|
7983
8003
|
args: [{ selector: "[niceShowHint]" }]
|
|
7984
|
-
}], ctorParameters: function () { return [{ type: i1$4.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i1$d.Platform }]; }, propDecorators: { shouldShow: [{
|
|
8004
|
+
}], ctorParameters: function () { return [{ type: i1$4.Overlay }, { type: i0.ElementRef }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i1$d.Platform }, { type: NiceNavigationHintService }]; }, propDecorators: { shouldShow: [{
|
|
7985
8005
|
type: Input
|
|
7986
8006
|
}], item: [{
|
|
7987
8007
|
type: Input
|
|
@@ -8580,13 +8600,14 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8580
8600
|
/**
|
|
8581
8601
|
* Constructor
|
|
8582
8602
|
*/
|
|
8583
|
-
constructor(_changeDetectorRef, _niceNavigationService, _niceUtilsService, _animationBuilder, _elementRef, _renderer2, _router, _scrollStrategyOptions) {
|
|
8603
|
+
constructor(_changeDetectorRef, _niceNavigationService, _niceUtilsService, _animationBuilder, _elementRef, _renderer2, _router, _scrollStrategyOptions, _hintService) {
|
|
8584
8604
|
super(_changeDetectorRef, _niceNavigationService, _niceUtilsService);
|
|
8585
8605
|
this._animationBuilder = _animationBuilder;
|
|
8586
8606
|
this._elementRef = _elementRef;
|
|
8587
8607
|
this._renderer2 = _renderer2;
|
|
8588
8608
|
this._router = _router;
|
|
8589
8609
|
this._scrollStrategyOptions = _scrollStrategyOptions;
|
|
8610
|
+
this._hintService = _hintService;
|
|
8590
8611
|
this._animationsEnabled = false;
|
|
8591
8612
|
this._scrollStrategy = this._scrollStrategyOptions.block();
|
|
8592
8613
|
this.name = this._niceUtilsService.randomId();
|
|
@@ -8596,11 +8617,13 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8596
8617
|
this.mode = "side";
|
|
8597
8618
|
this.opened = true;
|
|
8598
8619
|
this.hovered = false;
|
|
8620
|
+
this.hasHint = false;
|
|
8599
8621
|
this.position = "left";
|
|
8600
8622
|
this.transparentOverlay = false;
|
|
8601
8623
|
this.appearanceChanged = new EventEmitter();
|
|
8602
8624
|
this.modeChanged = new EventEmitter();
|
|
8603
8625
|
this.openedChanged = new EventEmitter();
|
|
8626
|
+
this.hoveredChanged = new EventEmitter();
|
|
8604
8627
|
this.positionChanged = new EventEmitter();
|
|
8605
8628
|
this.activeAsideItemId = null;
|
|
8606
8629
|
this.onCollapsableItemCollapsed = new ReplaySubject(1);
|
|
@@ -8635,7 +8658,8 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8635
8658
|
"nice-vertical-navigation-mode-side": this.mode === "side",
|
|
8636
8659
|
"nice-vertical-navigation-opened": this.opened,
|
|
8637
8660
|
"nice-vertical-navigation-position-left": this.position === "left",
|
|
8638
|
-
"nice-vertical-navigation-position-right": this.position === "right"
|
|
8661
|
+
"nice-vertical-navigation-position-right": this.position === "right",
|
|
8662
|
+
"nice-vertical-navigation-has-hint": this.hasHint
|
|
8639
8663
|
};
|
|
8640
8664
|
}
|
|
8641
8665
|
/**
|
|
@@ -8764,6 +8788,10 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8764
8788
|
this.closeAside();
|
|
8765
8789
|
}
|
|
8766
8790
|
});
|
|
8791
|
+
this._hintService.hasActiveHint$.pipe(takeUntil(this._unsubscribeAll)).subscribe(hasHint => {
|
|
8792
|
+
this.hasHint = hasHint;
|
|
8793
|
+
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
8794
|
+
});
|
|
8767
8795
|
}
|
|
8768
8796
|
/**
|
|
8769
8797
|
* After view init
|
|
@@ -9028,6 +9056,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9028
9056
|
this._enableAnimations();
|
|
9029
9057
|
// Set the hovered
|
|
9030
9058
|
this.hovered = true;
|
|
9059
|
+
this.hoveredChanged.next(this.hovered);
|
|
9031
9060
|
}
|
|
9032
9061
|
/**
|
|
9033
9062
|
* On mouseleave
|
|
@@ -9037,6 +9066,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9037
9066
|
this._enableAnimations();
|
|
9038
9067
|
// Set the hovered
|
|
9039
9068
|
this.hovered = false;
|
|
9069
|
+
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
9040
9070
|
}
|
|
9041
9071
|
/**
|
|
9042
9072
|
* Open/close the navigation
|
|
@@ -9063,12 +9093,12 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9063
9093
|
this.openedChanged.next(open);
|
|
9064
9094
|
}
|
|
9065
9095
|
}
|
|
9066
|
-
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 });
|
|
9067
|
-
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 });
|
|
9096
|
+
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 });
|
|
9097
|
+
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 });
|
|
9068
9098
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceVerticalNavigationComponent, decorators: [{
|
|
9069
9099
|
type: Component,
|
|
9070
9100
|
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" }]
|
|
9071
|
-
}], 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: [{
|
|
9101
|
+
}], 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: [{
|
|
9072
9102
|
type: Input
|
|
9073
9103
|
}], appearance: [{
|
|
9074
9104
|
type: Input
|
|
@@ -9082,6 +9112,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9082
9112
|
type: Input
|
|
9083
9113
|
}], hovered: [{
|
|
9084
9114
|
type: Input
|
|
9115
|
+
}], hasHint: [{
|
|
9116
|
+
type: Input
|
|
9085
9117
|
}], position: [{
|
|
9086
9118
|
type: Input
|
|
9087
9119
|
}], transparentOverlay: [{
|
|
@@ -9092,6 +9124,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9092
9124
|
type: Output
|
|
9093
9125
|
}], openedChanged: [{
|
|
9094
9126
|
type: Output
|
|
9127
|
+
}], hoveredChanged: [{
|
|
9128
|
+
type: Output
|
|
9095
9129
|
}], positionChanged: [{
|
|
9096
9130
|
type: Output
|
|
9097
9131
|
}], _navigationContentEl: [{
|
|
@@ -9144,7 +9178,7 @@ NiceNavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", ve
|
|
|
9144
9178
|
NiceScrollbarModule,
|
|
9145
9179
|
TranslateModule], exports: [NiceHorizontalNavigationComponent,
|
|
9146
9180
|
NiceVerticalNavigationComponent] });
|
|
9147
|
-
NiceNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationModule, imports: [[
|
|
9181
|
+
NiceNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NiceNavigationModule, providers: [NiceNavigationHintService], imports: [[
|
|
9148
9182
|
CommonModule,
|
|
9149
9183
|
RouterModule,
|
|
9150
9184
|
MatButtonModule,
|
|
@@ -9187,6 +9221,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImpor
|
|
|
9187
9221
|
NiceShouldShowHintPipe,
|
|
9188
9222
|
NiceShowHintDirective
|
|
9189
9223
|
],
|
|
9224
|
+
providers: [NiceNavigationHintService],
|
|
9190
9225
|
exports: [
|
|
9191
9226
|
NiceHorizontalNavigationComponent,
|
|
9192
9227
|
NiceVerticalNavigationComponent
|