@recursyve/nice-ui-kit.v2 14.0.0-beta.110 → 14.0.0-beta.112
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/async-typeahead/public-api.mjs +2 -1
- package/esm2020/lib/components/navigation/directives/show-hint.directive.mjs +2 -1
- package/esm2020/lib/components/navigation/vertical/vertical.component.mjs +11 -5
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +12 -5
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +12 -5
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/async-typeahead/public-api.d.ts +1 -0
- package/lib/components/navigation/vertical/vertical.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -8157,6 +8157,7 @@ class NiceShowHintDirective {
|
|
|
8157
8157
|
this._overlayRef.detach();
|
|
8158
8158
|
}
|
|
8159
8159
|
this._hintInstance = null;
|
|
8160
|
+
this._hintService.setActiveHint(false);
|
|
8160
8161
|
}
|
|
8161
8162
|
_isHintVisible() {
|
|
8162
8163
|
return !!this._hintInstance;
|
|
@@ -8820,6 +8821,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8820
8821
|
this._router = _router;
|
|
8821
8822
|
this._scrollStrategyOptions = _scrollStrategyOptions;
|
|
8822
8823
|
this._hintService = _hintService;
|
|
8824
|
+
this._forceHovered = false;
|
|
8823
8825
|
this._animationsEnabled = false;
|
|
8824
8826
|
this._scrollStrategy = this._scrollStrategyOptions.block();
|
|
8825
8827
|
this.name = this._niceUtilsService.randomId();
|
|
@@ -8854,6 +8856,11 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8854
8856
|
get navigation() {
|
|
8855
8857
|
return this._navigation;
|
|
8856
8858
|
}
|
|
8859
|
+
set forceHovered(forceHovered) {
|
|
8860
|
+
this._forceHovered = forceHovered;
|
|
8861
|
+
this.hoveredChanged.next((this.hovered || this._forceHovered) || this.hasHint);
|
|
8862
|
+
this._changeDetectorRef.markForCheck();
|
|
8863
|
+
}
|
|
8857
8864
|
// -----------------------------------------------------------------------------------------------------
|
|
8858
8865
|
// @ Accessors
|
|
8859
8866
|
// -----------------------------------------------------------------------------------------------------
|
|
@@ -8864,7 +8871,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
8864
8871
|
return {
|
|
8865
8872
|
"nice-vertical-navigation-animations-enabled": this._animationsEnabled,
|
|
8866
8873
|
[`nice-vertical-navigation-appearance-${this.appearance}`]: true,
|
|
8867
|
-
"nice-vertical-navigation-hover": this.hovered,
|
|
8874
|
+
"nice-vertical-navigation-hover": this.hovered || this._forceHovered,
|
|
8868
8875
|
"nice-vertical-navigation-inner": this.inner,
|
|
8869
8876
|
"nice-vertical-navigation-mode-over": this.mode === "over",
|
|
8870
8877
|
"nice-vertical-navigation-mode-side": this.mode === "side",
|
|
@@ -9002,7 +9009,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9002
9009
|
});
|
|
9003
9010
|
this._hintService.hasActiveHint$.pipe(takeUntil(this._unsubscribeAll)).subscribe(hasHint => {
|
|
9004
9011
|
this.hasHint = hasHint;
|
|
9005
|
-
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
9012
|
+
this.hoveredChanged.next((this.hovered || this._forceHovered) || this.hasHint);
|
|
9006
9013
|
});
|
|
9007
9014
|
}
|
|
9008
9015
|
/**
|
|
@@ -9268,7 +9275,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9268
9275
|
this._enableAnimations();
|
|
9269
9276
|
// Set the hovered
|
|
9270
9277
|
this.hovered = true;
|
|
9271
|
-
this.hoveredChanged.next(this.hovered);
|
|
9278
|
+
this.hoveredChanged.next(this.hovered || this._forceHovered);
|
|
9272
9279
|
}
|
|
9273
9280
|
/**
|
|
9274
9281
|
* On mouseleave
|
|
@@ -9278,7 +9285,7 @@ class NiceVerticalNavigationComponent extends NiceNavigationComponent {
|
|
|
9278
9285
|
this._enableAnimations();
|
|
9279
9286
|
// Set the hovered
|
|
9280
9287
|
this.hovered = false;
|
|
9281
|
-
this.hoveredChanged.next(this.hovered || this.hasHint);
|
|
9288
|
+
this.hoveredChanged.next(this.hovered || this._forceHovered || this.hasHint);
|
|
9282
9289
|
}
|
|
9283
9290
|
/**
|
|
9284
9291
|
* Open/close the navigation
|
|
@@ -10845,5 +10852,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.3", ngImpor
|
|
|
10845
10852
|
* Generated bundle index. Do not edit.
|
|
10846
10853
|
*/
|
|
10847
10854
|
|
|
10848
|
-
export { ArrayUtils, BooleanPipe, CapitalizeFirstLetterPipe, CarouselComponent, CaseUtils, CeilPipe, ChipListItemLabelDirective, ColorsUtils, DateUtils, DefaultExportBottomSheetService, EntriesPipe, ExportBottomSheetComponent, ExportBottomSheetService, FileUtils, FindByKeyPipe, FirstLetterPipe, FloorPipe, FontAwesomeUtils, FormDataUtils, HttpStatusCodes, ImgCropperConfig, ImgCropperError, ImgResolution, JoinPipe, KeyboardCodes, LexoRankUtils, LinkPipe, LocalizedBooleanPipe, LocalizedCurrencyPipe, LocalizedDateOnlyPipe, LocalizedDatePipe, MinutesToTimePipe, ModalMode, NavigationHideItemResolver, NavigationHintResolver, NiceAlertComponent, NiceAlertModule, NiceAlertService, NiceApiException, NiceAssetsCarouselActiveContentDirective, NiceAssetsCarouselComponent, NiceAssetsCarouselModule, NiceAsyncTypeaheadComponent, NiceAsyncTypeaheadModule, NiceAsyncTypeaheadProvider, NiceAutofocusDirective, NiceAutofocusDirectiveModule, NiceAutogrowDirective, NiceAutogrowModule, NiceBaseForm, NiceBaseFormComponent, NiceBaseFormModule, NiceCardComponent, NiceCardModule, NiceCarouselModule, NiceChipAsyncTypeaheadDirective, NiceChipListDirective, NiceChipListDirectiveModule, NiceChipListItemsComponent, NiceClickStopPropagationDirective, NiceCollapsableComponent, NiceCollapsableModule, NiceConfigModule, NiceConfigService, NiceControlStatusDirective, NiceCropperAreaComponent, NiceDateRangePickerComponent, NiceDateRangePickerModule, NiceDraggableListDirective, NiceDraggableListModule, NiceDrawerComponent, NiceDrawerModule, NiceDrawerService, NiceDropzoneDirective, NiceDropzoneModule, NiceExportBottomSheetModule, NiceFormErrorComponent, NiceFormErrorModule, NiceFormSubmitDirective, NiceHorizontalNavigationBasicItemComponent, NiceHorizontalNavigationBranchItemComponent, NiceHorizontalNavigationComponent, NiceHorizontalNavigationDividerItemComponent, NiceHorizontalNavigationSpacerItemComponent, NiceHorizontalStepperComponent, NiceHorizontalStepperModule, NiceHttpExceptionFactory, NiceImageCropperComponent, NiceImageCropperModule, NiceImageErrorPlaceholderDirective, NiceImageErrorPlaceholderDirectiveModule, NiceLayoutComponent, NiceLayoutModule, NiceLoadingDirective, NiceLoadingSpinnerComponent, NiceLoadingSpinnerModule, NiceLottieComponent, NiceLottieModule, NiceMaterialModule, NiceMaterialStyleDirective, NiceMediaWatcherModule, NiceMediaWatcherService, NiceModalOnClickDirective, NiceModalOpenerDirective, NiceModule, NiceNavigationComponent, NiceNavigationModule, NiceNavigationService, NicePipesModule, NicePreventCloseWindowDirective, NiceRoundedStyleDirective, NiceScrollResetDirective, NiceScrollResetModule, NiceScrollbarDirective, NiceScrollbarModule, NiceSearchBarComponent, NiceSearchBarModule, NiceSplashScreenModule, NiceSplashScreenService, NiceStepComponent, NiceStopPropagationModule, NiceSweetAlertComponent, NiceSweetAlertDirective, NiceSweetAlertModule, NiceSweetAlertService, NiceToastComponent, NiceToastModule, NiceToastService, NiceToggleButtonGroupModule, NiceTransformResponseInterceptor, NiceTypeaheadComponent, NiceTypeaheadModule, NiceTypeaheadNewValue, NiceUtilsModule, NiceUtilsService, NiceVerticalNavigationAsideItemComponent, NiceVerticalNavigationBasicItemComponent, NiceVerticalNavigationCollapsableItemComponent, NiceVerticalNavigationComponent, NiceVerticalNavigationDividerItemComponent, NiceVerticalNavigationGroupItemComponent, NiceVerticalNavigationSpacerItemComponent, NiceWindowDirectiveModule, NumberToOrdinalIndicatorPipe, NumberUtils, ObjectUtils, OptionsScrollDirective, PadPipe, PhonePipe, PictureModalComponent, PictureModalService, PostalCodePipe, PromiseUtils, QueryParamsUtils, RangePipe, RegexUtils, RoundPipe, SanitizeBypassPipe, SecondsToTimePipe, TRANSFORM_TYPE, ToggleButtonComponent, ToggleButtonGroupComponent, TrackByPropPipe, TypeUtils, UrlUtils, _HintComponentBase, _normalizeDegrees, isNotNullOrUndefined, isNullOrUndefined, mergeDeep, mixinNiceApi, niceAnimations, round };
|
|
10855
|
+
export { ArrayUtils, BooleanPipe, CapitalizeFirstLetterPipe, CarouselComponent, CaseUtils, CeilPipe, ChipListItemLabelDirective, ColorsUtils, DateUtils, DefaultExportBottomSheetService, EntriesPipe, ExportBottomSheetComponent, ExportBottomSheetService, FileUtils, FindByKeyPipe, FirstLetterPipe, FloorPipe, FontAwesomeUtils, FormDataUtils, HttpStatusCodes, ImgCropperConfig, ImgCropperError, ImgResolution, JoinPipe, KeyboardCodes, LexoRankUtils, LinkPipe, LocalizedBooleanPipe, LocalizedCurrencyPipe, LocalizedDateOnlyPipe, LocalizedDatePipe, MinutesToTimePipe, ModalMode, NICE_ASYNC_TYPEAHEAD_PROVIDER, NavigationHideItemResolver, NavigationHintResolver, NiceAlertComponent, NiceAlertModule, NiceAlertService, NiceApiException, NiceAssetsCarouselActiveContentDirective, NiceAssetsCarouselComponent, NiceAssetsCarouselModule, NiceAsyncTypeaheadComponent, NiceAsyncTypeaheadModule, NiceAsyncTypeaheadProvider, NiceAutofocusDirective, NiceAutofocusDirectiveModule, NiceAutogrowDirective, NiceAutogrowModule, NiceBaseForm, NiceBaseFormComponent, NiceBaseFormModule, NiceCardComponent, NiceCardModule, NiceCarouselModule, NiceChipAsyncTypeaheadDirective, NiceChipListDirective, NiceChipListDirectiveModule, NiceChipListItemsComponent, NiceClickStopPropagationDirective, NiceCollapsableComponent, NiceCollapsableModule, NiceConfigModule, NiceConfigService, NiceControlStatusDirective, NiceCropperAreaComponent, NiceDateRangePickerComponent, NiceDateRangePickerModule, NiceDraggableListDirective, NiceDraggableListModule, NiceDrawerComponent, NiceDrawerModule, NiceDrawerService, NiceDropzoneDirective, NiceDropzoneModule, NiceExportBottomSheetModule, NiceFormErrorComponent, NiceFormErrorModule, NiceFormSubmitDirective, NiceHorizontalNavigationBasicItemComponent, NiceHorizontalNavigationBranchItemComponent, NiceHorizontalNavigationComponent, NiceHorizontalNavigationDividerItemComponent, NiceHorizontalNavigationSpacerItemComponent, NiceHorizontalStepperComponent, NiceHorizontalStepperModule, NiceHttpExceptionFactory, NiceImageCropperComponent, NiceImageCropperModule, NiceImageErrorPlaceholderDirective, NiceImageErrorPlaceholderDirectiveModule, NiceLayoutComponent, NiceLayoutModule, NiceLoadingDirective, NiceLoadingSpinnerComponent, NiceLoadingSpinnerModule, NiceLottieComponent, NiceLottieModule, NiceMaterialModule, NiceMaterialStyleDirective, NiceMediaWatcherModule, NiceMediaWatcherService, NiceModalOnClickDirective, NiceModalOpenerDirective, NiceModule, NiceNavigationComponent, NiceNavigationModule, NiceNavigationService, NicePipesModule, NicePreventCloseWindowDirective, NiceRoundedStyleDirective, NiceScrollResetDirective, NiceScrollResetModule, NiceScrollbarDirective, NiceScrollbarModule, NiceSearchBarComponent, NiceSearchBarModule, NiceSplashScreenModule, NiceSplashScreenService, NiceStepComponent, NiceStopPropagationModule, NiceSweetAlertComponent, NiceSweetAlertDirective, NiceSweetAlertModule, NiceSweetAlertService, NiceToastComponent, NiceToastModule, NiceToastService, NiceToggleButtonGroupModule, NiceTransformResponseInterceptor, NiceTypeaheadComponent, NiceTypeaheadModule, NiceTypeaheadNewValue, NiceUtilsModule, NiceUtilsService, NiceVerticalNavigationAsideItemComponent, NiceVerticalNavigationBasicItemComponent, NiceVerticalNavigationCollapsableItemComponent, NiceVerticalNavigationComponent, NiceVerticalNavigationDividerItemComponent, NiceVerticalNavigationGroupItemComponent, NiceVerticalNavigationSpacerItemComponent, NiceWindowDirectiveModule, NumberToOrdinalIndicatorPipe, NumberUtils, ObjectUtils, OptionsScrollDirective, PadPipe, PhonePipe, PictureModalComponent, PictureModalService, PostalCodePipe, PromiseUtils, QueryParamsUtils, RangePipe, RegexUtils, RoundPipe, SanitizeBypassPipe, SecondsToTimePipe, TRANSFORM_TYPE, ToggleButtonComponent, ToggleButtonGroupComponent, TrackByPropPipe, TypeUtils, UrlUtils, _HintComponentBase, _normalizeDegrees, isNotNullOrUndefined, isNullOrUndefined, mergeDeep, mixinNiceApi, niceAnimations, round };
|
|
10849
10856
|
//# sourceMappingURL=recursyve-nice-ui-kit.v2.mjs.map
|