@elderbyte/ngx-starter 20.5.0-alpha.1 → 20.5.0-alpha.2

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/index.d.ts CHANGED
@@ -27,7 +27,7 @@ import * as _elderbyte_ts_logger from '@elderbyte/ts-logger';
27
27
  import * as i2$3 from '@ngx-translate/core';
28
28
  import { TranslateLoader, TranslateService } from '@ngx-translate/core';
29
29
  import * as i2$5 from '@angular/router';
30
- import { Router, ActivatedRoute, UrlTree, QueryParamsHandling, RouterLinkActive, NavigationExtras, RouterOutlet } from '@angular/router';
30
+ import { Router, ActivatedRoute, UrlTree, QueryParamsHandling, NavigationExtras, RouterOutlet } from '@angular/router';
31
31
  import * as i2 from '@angular/material/slide-toggle';
32
32
  import * as i3 from '@angular/material/icon';
33
33
  import { MatIcon } from '@angular/material/icon';
@@ -4223,8 +4223,9 @@ declare class SelectionChangedEvent<TId, TEntity> {
4223
4223
  readonly addedById: Map<TId, TEntity>;
4224
4224
  readonly removed: Set<TId>;
4225
4225
  readonly source: SelectionEventSource;
4226
+ readonly multiSelection: boolean;
4226
4227
  readonly info?: string;
4227
- constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, info?: string);
4228
+ constructor(after: TEntity[], addedById: Map<TId, TEntity>, removed: Set<TId>, source: SelectionEventSource, multiSelection: boolean, info?: string);
4228
4229
  get isUserSource(): boolean;
4229
4230
  }
4230
4231
  /**
@@ -13362,69 +13363,53 @@ declare class NavItemClicked {
13362
13363
  readonly value: any;
13363
13364
  constructor(event: MouseEvent, value: any);
13364
13365
  }
13365
- declare class ElderNavLinkComponent implements OnInit, OnDestroy {
13366
- private readonly navList;
13367
- private readonly staticNav;
13366
+ declare class ElderNavLinkComponent {
13368
13367
  /***************************************************************************
13369
13368
  * *
13370
13369
  * Fields *
13371
13370
  * *
13372
13371
  **************************************************************************/
13373
- tabIndex: number;
13374
- readonly model$: Observable<NavItemModel>;
13375
- title: string;
13376
- queryParamsHandling: QueryParamsHandling;
13377
- queryParams: {
13372
+ readonly navList: ElderNavListComponent<any>;
13373
+ readonly value: i0.InputSignal<any>;
13374
+ readonly title: i0.InputSignal<string>;
13375
+ readonly fontIcon: i0.InputSignal<string>;
13376
+ readonly fontSet: i0.InputSignal<string>;
13377
+ readonly icon: i0.InputSignal<string>;
13378
+ readonly routerLink: i0.InputSignal<string>;
13379
+ readonly queryParams: i0.InputSignal<{
13378
13380
  [k: string]: any;
13379
- };
13380
- icon: string;
13381
- fontIcon: string;
13382
- fontSet: string;
13383
- svgIcon: string;
13384
- readonly clicked: Subject<NavItemClicked>;
13385
- private _disabled;
13386
- private readonly _routerLink$;
13387
- private readonly _href$;
13388
- private readonly _target$;
13389
- private readonly _routerLinkActive$;
13390
- private readonly _active$;
13391
- private readonly destroy$;
13392
- private _value;
13381
+ }>;
13382
+ readonly queryParamsHandling: i0.InputSignal<QueryParamsHandling>;
13383
+ readonly href: i0.InputSignal<string>;
13384
+ readonly target: i0.InputSignal<string>;
13385
+ readonly disabled: i0.InputSignalWithTransform<boolean, _angular_cdk_coercion.BooleanInput>;
13386
+ readonly active: i0.WritableSignal<boolean>;
13387
+ readonly clicked: i0.OutputEmitterRef<NavItemClicked>;
13388
+ readonly model: i0.Signal<NavItemModel>;
13389
+ readonly navLinkClasses: i0.Signal<{
13390
+ 'nav-link-clickable': boolean;
13391
+ 'nav-link-disabled': boolean;
13392
+ 'nav-link-active': boolean;
13393
+ 'nav-link-inactive': boolean;
13394
+ }>;
13393
13395
  /***************************************************************************
13394
13396
  * *
13395
13397
  * Constructor *
13396
13398
  * *
13397
13399
  **************************************************************************/
13398
- constructor(navList: ElderNavListComponent);
13400
+ constructor();
13399
13401
  /***************************************************************************
13400
13402
  * *
13401
13403
  * Life Cycle *
13402
13404
  * *
13403
13405
  **************************************************************************/
13404
- ngOnInit(): void;
13405
- ngOnDestroy(): void;
13406
- /***************************************************************************
13407
- * *
13408
- * Properties *
13409
- * *
13410
- **************************************************************************/
13411
- get active$(): Observable<boolean>;
13412
- set routerLinkActive(rla: RouterLinkActive);
13413
- set routerLink(value: string);
13414
- set href(value: string);
13415
- set target(value: string);
13416
- set value(v: any);
13417
- get value(): any;
13418
- set disabled(v: BooleanInput);
13419
- get disabled(): boolean;
13420
- get routerLink(): string;
13421
- get href(): string;
13422
- get target(): string;
13406
+ ngAfterViewInit(): void;
13423
13407
  /***************************************************************************
13424
13408
  * *
13425
13409
  * Public API *
13426
13410
  * *
13427
13411
  **************************************************************************/
13412
+ handleRouterLinkActiveChange(active: boolean): void;
13428
13413
  itemClick(event: MouseEvent): void;
13429
13414
  /***************************************************************************
13430
13415
  * *
@@ -13432,16 +13417,13 @@ declare class ElderNavLinkComponent implements OnInit, OnDestroy {
13432
13417
  * *
13433
13418
  **************************************************************************/
13434
13419
  private get isCurrentValueActive();
13435
- get isStaticNav(): boolean;
13436
13420
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavLinkComponent, never>;
13437
- static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavLinkComponent, "elder-nav-link", never, { "title": { "alias": "title"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "fontIcon": { "alias": "fontIcon"; "required": false; }; "fontSet": { "alias": "fontSet"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; "href": { "alias": "href"; "required": false; }; "target": { "alias": "target"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
13421
+ static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavLinkComponent, "elder-nav-link", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "fontIcon": { "alias": "fontIcon"; "required": false; "isSignal": true; }; "fontSet": { "alias": "fontSet"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
13438
13422
  }
13439
13423
 
13440
- declare class ElderNavGroupComponent implements OnInit {
13441
- private readonly destroyRef;
13424
+ declare class ElderNavGroupComponent {
13442
13425
  private readonly navList;
13443
13426
  private readonly staticNav;
13444
- private childSubscription;
13445
13427
  /***************************************************************************
13446
13428
  * *
13447
13429
  * Fields *
@@ -13452,11 +13434,11 @@ declare class ElderNavGroupComponent implements OnInit {
13452
13434
  readonly children: i0.Signal<readonly ElderNavLinkComponent[]>;
13453
13435
  readonly isOpen: i0.WritableSignal<boolean>;
13454
13436
  readonly clicked: i0.OutputEmitterRef<NavItemClicked>;
13455
- private readonly childrenActiveState;
13437
+ isStaticNav: boolean;
13438
+ private readonly _childrenActiveState;
13456
13439
  /***************************************************************************
13457
13440
  * *
13458
13441
  * Computed Properties *
13459
- * Computed Properties *
13460
13442
  * *
13461
13443
  **************************************************************************/
13462
13444
  readonly active: i0.Signal<boolean>;
@@ -13466,13 +13448,6 @@ declare class ElderNavGroupComponent implements OnInit {
13466
13448
  * *
13467
13449
  **************************************************************************/
13468
13450
  constructor();
13469
- /***************************************************************************
13470
- * *
13471
- * Life Cycle *
13472
- * *
13473
- **************************************************************************/
13474
- ngOnInit(): void;
13475
- ngOnDestroy(): void;
13476
13451
  /***************************************************************************
13477
13452
  * *
13478
13453
  * Public Api *
@@ -13480,17 +13455,10 @@ declare class ElderNavGroupComponent implements OnInit {
13480
13455
  **************************************************************************/
13481
13456
  itemClick(event: MouseEvent): void;
13482
13457
  toggle(): void;
13483
- get isStaticNav(): boolean;
13484
13458
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavGroupComponent, never>;
13485
13459
  static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavGroupComponent, "elder-nav-group", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, ["children"], ["elder-nav-link"], true, never>;
13486
13460
  }
13487
13461
 
13488
- declare class ElderStaticNavDirective {
13489
- readonly elderStaticNav: i0.InputSignal<boolean>;
13490
- static ɵfac: i0.ɵɵFactoryDeclaration<ElderStaticNavDirective, never>;
13491
- static ɵdir: i0.ɵɵDirectiveDeclaration<ElderStaticNavDirective, "[elderStaticNav]", never, { "elderStaticNav": { "alias": "elderStaticNav"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
13492
- }
13493
-
13494
13462
  declare class ElderNavModule {
13495
13463
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavModule, never>;
13496
13464
  static ɵmod: i0.ɵɵNgModuleDeclaration<ElderNavModule, never, [typeof i1.CommonModule, typeof i2$5.RouterModule, typeof i3.MatIconModule, typeof i6.MatButtonModule, typeof i4$3.A11yModule, typeof i2$3.TranslateModule, typeof i2$4.MatListModule, typeof i2$2.MatRippleModule, typeof ElderNavListComponent, typeof ElderNavLinkComponent, typeof ElderNavGroupComponent], [typeof ElderNavListComponent, typeof ElderNavLinkComponent, typeof ElderNavGroupComponent]>;
@@ -13600,6 +13568,12 @@ declare class ElderBreadCrumbsModule {
13600
13568
  static ɵinj: i0.ɵɵInjectorDeclaration<ElderBreadCrumbsModule>;
13601
13569
  }
13602
13570
 
13571
+ declare class ElderStaticNavDirective {
13572
+ readonly elderStaticNav = true;
13573
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElderStaticNavDirective, never>;
13574
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ElderStaticNavDirective, "[elderStaticNav]", never, {}, {}, never, never, true, never>;
13575
+ }
13576
+
13603
13577
  declare class ElderRouterOutletService {
13604
13578
  private router;
13605
13579
  /***************************************************************************
@@ -13848,12 +13822,12 @@ declare class ElderShellCenterDirective {
13848
13822
  static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellCenterDirective, never>;
13849
13823
  static ɵdir: i0.ɵɵDirectiveDeclaration<ElderShellCenterDirective, "[elderShellCenter]", never, {}, {}, never, never, true, never>;
13850
13824
  }
13851
- declare class ElderShellStaticNavDirective {
13825
+ declare class ElderShellStaticNavSlotDirective {
13852
13826
  templateRef: TemplateRef<any>;
13853
13827
  viewContainer: ViewContainerRef;
13854
13828
  constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef);
13855
- static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellStaticNavDirective, never>;
13856
- static ɵdir: i0.ɵɵDirectiveDeclaration<ElderShellStaticNavDirective, "[elderShellStaticNav]", never, {}, {}, never, never, true, never>;
13829
+ static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellStaticNavSlotDirective, never>;
13830
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ElderShellStaticNavSlotDirective, "[elderShellStaticNavSlot]", never, {}, {}, never, never, true, never>;
13857
13831
  }
13858
13832
  declare class ElderShellComponent implements OnInit {
13859
13833
  private shellService;
@@ -13880,7 +13854,6 @@ declare class ElderShellComponent implements OnInit {
13880
13854
  rightSideDrawer: MatSidenav;
13881
13855
  rightSideOutletName: string;
13882
13856
  leftSideContentOpen: Signal<boolean>;
13883
- isInIframe: boolean;
13884
13857
  readonly headerTemplate: Signal<TemplateRef<any>>;
13885
13858
  readonly centerTemplate: Signal<TemplateRef<any>>;
13886
13859
  readonly footerTemplate: Signal<TemplateRef<any>>;
@@ -18137,5 +18110,5 @@ declare class KafentModule {
18137
18110
  static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
18138
18111
  }
18139
18112
 
18140
- export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataActivationDirective, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavDirective, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageExitGuardModule, PageExitGuardService, PageExitLock, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
18113
+ export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, CommonValidationMessageStrategy, ComparatorBuilder, CompositeSort, ConfirmDialogConfig, ContinuableListing, CountryPhoneFormatService, CsvColumnSpec, CsvSerializer, CsvSpec, CsvStreamExporter, CsvStreamExporterBuilder, CsvStreamExporterBuilderService, CuratedDataSource, CuratedListDataSource, CuratedPagedDataSource, Currency, CurrencyCode, CurrencyFormatUtil, CurrencyUnit, CurrencyUnitRegistry, CustomDateAdapter, CustomMatcherSpec, DataContextActivePage, DataContextAutoStarter, DataContextBase, DataContextBuilder, DataContextContinuableBase, DataContextContinuablePaged, DataContextContinuableToken, DataContextLifeCycleBinding, DataContextRange, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSelectionController, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewInteractionControllerDirective, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, DynamicValidationMessageStrategy, ELDER_DATA_VIEW, ELDER_SELECT_BASE, ElderAccessDeniedComponent, ElderAccessDeniedModule, ElderAppHeaderComponent, ElderAuditModule, ElderAuditedEntityComponent, ElderAutoSelectFirstDirective, ElderAutoSelectSuggestFirstDirective, ElderAutocompleteDirective, ElderAutocompleteManyDirective, ElderAutocompleteModule, ElderBadgeDirective, ElderBasicPaneLayoutComponent, ElderBlobViewerComponent, ElderBreadCrumbsComponent, ElderBreadCrumbsModule, ElderButtonGroupComponent, ElderButtonGroupModule, ElderCardComponent, ElderCardContentDirective, ElderCardHeaderActionsDirective, ElderCardHeaderComponent, ElderCardModule, ElderCardOrganizerComponent, ElderCardOrganizerModule, ElderCardPanelComponent, ElderCardStackComponent, ElderCardSubtitleDirective, ElderCardTitleDirective, ElderCenterCellDirective, ElderChipLabelDirective, ElderChipListSelectComponent, ElderChipListSelectModule, ElderChipsIncludeExcludeDirective, ElderChipsModule, ElderClearSelectDirective, ElderClipboardPutDirective, ElderClipboardService, ElderCompositeSortComponent, ElderCompositeSortDcDirective, ElderConfirmDialogComponent, ElderConnectivityModule, ElderConnectivityService, ElderContainersModule, ElderContinuatorComponent, ElderCsvExportBtnComponent, ElderCsvModule, ElderCurrencyModule, ElderCurrencyPipe, ElderDataActivationDirective, ElderDataCommonModule, ElderDataToolbarComponent, ElderDataTransferModule, ElderDataTransferService, ElderDataViewBaseComponent, ElderDataViewDndDirective, ElderDataViewDndGroupDirective, ElderDataViewItemDragDirective, ElderDataViewOptions, ElderDataViewOptionsProvider, ElderDateSwitcherComponent, ElderDateTimeInputComponent, ElderDelayedFocusDirective, ElderDeleteActiveDirective, ElderDetailDialogComponent, ElderDetailDirective, ElderDialogConfig, ElderDialogModule, ElderDialogPanelComponent, ElderDialogService, ElderDimensionsInputComponent, ElderDropZoneComponent, ElderDurationInputComponent, ElderEntityValueAccessorUtil, ElderEnumTranslationService, ElderErrorModule, ElderEventSourceService, ElderExceptionDetailComponent, ElderExpandToggleButtonComponent, ElderExpandToggleButtonModule, ElderFileDropZoneDirective, ElderFileModule, ElderFileSelectComponent, ElderFileSelectDirective, ElderFileUploadComponent, ElderFilterChipTemplateComponent, ElderFormFieldControlBase, ElderFormFieldDenseDirective, ElderFormFieldLabelDirective, ElderFormFieldNoHintDirective, ElderFormFieldNoSpinnerDirective, ElderFormsDirectivesModule, ElderFormsModule, ElderFromFieldBase, ElderFromFieldEntityBase, ElderFromFieldMultiEntityBase, ElderGridActivationDirective, ElderGridComponent, ElderGridModule, ElderGridTileDirective, ElderGridToolbarDirective, ElderHeaderComponent, ElderHeaderModule, ElderI18nEntitiesModule, ElderIFrameModule, ElderInfiniteAutocompleteDirective, ElderInfiniteScrollDirective, ElderInfiniteScrollModule, ElderInputPatternDirective, ElderIntervalInputComponent, ElderIntervalPickerBindingDirective, ElderIntervalPickerComponent, ElderIntervalPickerToggleComponent, ElderKeyEventDirective, ElderLabelInputComponent, ElderLabelsModule, ElderLanguageConfig, ElderLanguageInterceptor, ElderLanguageModule, ElderLanguageService, ElderLanguageSwitcherComponent, ElderLocalDateInputComponent, ElderLocalDndSupportDirective, ElderLocalTimeInputComponent, ElderLocalesDeChModule, ElderLocalizedInputComponent, ElderLocalizedInputDialogComponent, ElderLocalizedInputDialogService, ElderLocalizedInputTableComponent, ElderLocalizedTextColumnDirective, ElderLocalizedTextsDirective, ElderMasterActivationDirective, ElderMasterDetailComponent, ElderMasterDetailModule, ElderMasterDetailService, ElderMasterDirective, ElderMaxValidator, ElderMeasuresModule, ElderMinValidator, ElderMultiEntityValueAccessorUtil, ElderMultiSelectAllInitialDirective, ElderMultiSelectBase, ElderMultiSelectChipOptionsComponent, ElderMultiSelectChipsComponent, ElderMultiSelectChipsOptionsDirective, ElderMultiSelectFormField, ElderMultiTranslateHttpLoader, ElderMultipleOfUtil, ElderMultipleOfValidator, ElderNavGroupComponent, ElderNavLinkComponent, ElderNavListComponent, ElderNavModule, ElderNextFocusableDirective, ElderNumberCellDirective, ElderOfflineIndicatorComponent, ElderOverlayComponent, ElderOverlayModule, ElderOverlayOriginDirective, ElderOverlayRef, ElderOverlayTriggerDirective, ElderPaddingDirective, ElderPageExitLockIndicatorComponent, ElderPaneActionsComponent, ElderPaneComponent, ElderPaneContentComponent, ElderPaneHeaderComponent, ElderPaneSubtitleComponent, ElderPaneTitleComponent, ElderPanelModule, ElderPeriodInputComponent, ElderPipesModule, ElderPlugParentFormDirective, ElderProgressBarComponent, ElderProgressBarModule, ElderQuantityFormFieldComponent, ElderQuantityInputControlComponent, ElderQuantityPipe, ElderQuantityRangeValidator, ElderQuantityService, ElderQuantityTransformPipe, ElderQuestionDialogComponent, ElderRepeatPipe, ElderRequiredDimensionsValidator, ElderRequiredIgnoreZeroValidator, ElderRequiredQuantityValidator, ElderRoundPipe, ElderRouteOutletDrawerService, ElderRouterOutletService, ElderRouterService, ElderSafeUrlPipe, ElderScrollContainerComponent, ElderScrollbarDirective, ElderScrollbarModule, ElderSearchBoxComponent, ElderSearchContextDirective, ElderSearchIncludeExcludeDirective, ElderSearchInputDirective, ElderSearchModule, ElderSearchPanelComponent, ElderSearchUrlDirective, ElderSelectBase, ElderSelectChipAvatarDirective, ElderSelectChipDirective, ElderSelectComponent, ElderSelectComponentState, ElderSelectCustomInputDirective, ElderSelectFormField, ElderSelectModule, ElderSelectOnTabDirective, ElderSelectOptionComponent, ElderSelectValueDirective, ElderSelectionDialogComponent, ElderSelectionDialogDirective, ElderSelectionMasterCheckboxComponent, ElderSelectionPopupTriggerAdapterDirective, ElderShellCenterDirective, ElderShellComponent, ElderShellModule, ElderShellNavigationToggleComponent, ElderShellService, ElderShellSideLeftDirective, ElderShellSideRightDirective, ElderShellSlotDirective, ElderShellStaticNavSlotDirective, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, ElderStaticNavDirective, ElderStaticNavToggleComponent, ElderStopEventPropagationDirective, ElderSuggestionPanelComponent, ElderSvgViewerComponent, ElderTabDirective, ElderTabFocusTrapDirective, ElderTabGroupRoutingDirective, ElderTabModule, ElderTableActivationDirective, ElderTableComponent, ElderTableDropListConnectorDirective, ElderTableExtensionDirective, ElderTableGroup, ElderTableModel, ElderTableModelCdkTableBinding, ElderTableModelQueryGroup, ElderTableModule, ElderTableNavigationBarDirective, ElderTableProviders, ElderTableRootDirective, ElderTableSelectionCellComponent, ElderTableSortDirective, ElderTableToolbarDirective, ElderThemeApplierDirective, ElderThemeDirective, ElderThemeModule, ElderThemePreferenceService, ElderThemeService, ElderThemeToggleComponent, ElderTileComponent, ElderTimeModule, ElderToastModule, ElderToastService, ElderTogglePanelComponent, ElderTogglePanelPrimaryDirective, ElderTogglePanelSecondaryDirective, ElderTogglePanelTriggerDirective, ElderToggleTextInputDirective, ElderToolbarColumnDirective, ElderToolbarComponent, ElderToolbarContentDirective, ElderToolbarModule, ElderToolbarService, ElderToolbarTitleComponent, ElderToolbarTitleService, ElderTouchedDirective, ElderTripleStateCheckboxDirective, ElderTruncatePipe, ElderUnitSelectDirective, ElderUnitService, ElderUrlFragment, ElderUrlFragmentModule, ElderUrlFragmentParamsService, ElderUrlFragmentSwitcherComponent, ElderValidationErrorDirective, ElderViewersModule, EntitiesChangeEvent, EntityDelta, EntityIdUtil, EntitySetPatch, ErrorUtil, ExceptionDetailCtx, FallbackValidationMessageStrategy, FileEntry, FileListingRx, FileUploadClient, Filter, FilterContext, FilterUtil, FocusUtil, FormFieldBaseComponent, GlobalDragDropService, HttpClientBuilder, HttpClientPristine, HttpDataTransfer, HttpDataTransferAggregateComponent, HttpDataTransferComponent, HttpDataTransferIndicatorComponent, HttpDataTransferOverviewComponent, HttpParamsBuilder, I18nBase, I18nPickAsyncPipe, I18nPickPipe, I18nText, IFrameState, IframeCloseDirective, IframeDialogComponent, IframeHostComponent, IframeService, IframeSideContentComponent, IncludeExcludeSelectionModel, IncludeExcludeState, IncludeExcludeValue, IndexedEntities, InternalRestClientConfig, Interval, IsoDurationPipe, IsoIntervalFormatUtil, IsoIntervalParsePipe, IsoIntervalPipe, ItemActivationEvent, ItemActivationOptions, JsonMapUtil, KafentConfig, KafentEvent, KafentEventService, KafentEventStream, KafentEventStreamDisabled, KafentEventStreamSse, KafentEventTransport, KafentModule, KafentSseEventChannel, KafentTokenProvider, KafentTokenProviderSessionStorage, KafentTopicSse, KnownElderThemes, KnownLocaleTags, LocalDataFilter, LocalListDataSource, LocalPagedDataSource, Locale, LocalisationPickerService, MasterDetailActivationEvent, MasterSelectionState, MatTableDataContextBinding, MatTableDataContextBindingBuilder, ModifierKeyService, ModifierKeyState, MultiModelBaseComponent, NamedColorDirective, NamedColorSelectDirective, NamedColorSelectValueComponent, NextNumberUtil, ObjectFieldMatcher, ObjectPathResolver, Objects, OnlineStatus, Page, PageExitGuardModule, PageExitGuardService, PageExitLock, PageRequest, Pageable, ParseUtil, Path, PathNode, PeriodBucket, PeriodDuration, PeriodFormat, PhoneFormatService, PhonePipe, ProcessIterationContext, ProcessState, PropertyPathUtil, Quantity, QueryListBinding, QuestionDialogConfig, ReactiveEventSource, ReactiveEventSourceState, ReactiveFetchEventSource, ReactiveFetchEventSourceService, ReactiveMap, ReactiveSSeMessage, RefreshingEntity, ResizeObserverDirective, RestClient, RestClientConfig, RestClientContinuable, RestClientList, RestClientPaged, RoutedTabActivationFailed, SearchInputState, SelectChipSpecUtil, SelectOptionChipSpecUtil, SelectionChangedEvent, SelectionEventSource, SelectionModel, SelectionModelPopupDirective, Sets, SimpleLocalisationPicker, SimpleSearchInput, Sort, SortUtil, StandardToastComponent, SubBar, SuggestionProvider, TargetValue, TemplateCompositeControl, TemplatedSelectionDialogComponent, TemporalPlainDateInterval, TemporalUtil, ThemeSpec, TimeAgoPipe, TimeDurationPipe, TimeUtil, ToIsoDateStringPipe, ToastType, TokenChunkRequest, ToolbarHeader, Translated, TranslatedConverter, TranslatedEnumValue, TranslatedText, TypedEventMessage, Unit, UnitDimension, UnitDimensionInfo, UnitInfo, UnitRegistry, UnreachableCaseError, UrlBuilder, UrlQueryParams, UuidUtil, ValueAccessorBase, ValueChangeEvent, ValueWrapper, ViewDropModelUpdateInstruction, ViewProviders, WebLocalStorage, WebSessionStorage, WebappDomainFragmentSpec, WebappDomainSpec, WebappDomainSpecService, WebappDomainSwitcherDirective, WebappUrlFragmentSwitcherConfig, WeightPipe, alphaNumStringComparator, booleanTransformFn, buildFormIntegrationProviders, coerceInterval, coerceIntervalIsoStr, createDataOptionsProvider, createSelectionModel, elderChipColorLevels, elderChipColorStates, elderNamedColorRoles, elderNamedColorToken, elderNamedColors, existingOrNewElderTableModel, initSearchUrlService, isActivePagedDataContext, isContinuableDataContext, isContinuableDataSource, isDataContext, isDataSource, isDataViewMessageType, isElderEntityValueAccessor, isElderMultiEntityValueAccessor, isListDataSource, isLocalListDataSource, isPagedDataSource, lazySample, lazySampleTime, naturalValueComparator, newElderTableModel, proxyControlContainer, registerLocale, runInZone, themeInit };
18141
18114
  export type { ChipAvatarSpec, ChipColorSpec, ComparatorFn, ConfirmDeleteOptions, CountryPhoneFormat, CurrencyIndication, DataViewMessageType, ElderActivationOptions, ElderApplyControlFn, ElderAutoActivateItem, ElderAutoActivationMode, ElderDataViewInteractionMode, ElderLocalizedInputOptions, ElderMasterDetailMode, ElderNamedColor, ElderNamedColorRole, ElderSize, ElderToolbarContentSlot, EventSourceRequestInit, ExceptionDetail, Focusable, GenericMatcherOptions, IAuditedEntity, IContinuableDataSource, IContinuationFetcher, IDataContext, IDataContextActivePage, IDataContextContinuable, IDataSource, IDynamicValidationMessage, IElderDataView, IElderDetailDialogOptions, IElderEntityValueAccessor, IElderMultiEntityValueAccessor, IFileUploadClient, IFrameParams, IFrameStateType, IListDataSource, IListFetcher, IMasterDetailActivationOptions, IPageFetcher, IPagedDataSource, ISelectionModelDialogOptions, IStandardErrorDetail, ISuggestionProvider, ITranslated, ITranslatedText, ITranslationResource, IdExtractor, IncludeExcludeCycleStrategy, InputValue, IsoDateStr, IsoDurationStr, IsoIntervalStr, JsonMap, KafentConsumerEventRequest, KafentEventFilter, KafentEventRequestBase, KafentLiveEventRequest, KeyGetterFn, LanguageTag, LocalDataFilterFn, LocalDataSortFn, LocaleMap, LocalisationPicker, Localized, MatchOptions, ObservedElementDimension, PhoneNumber, QuantityPipeOptions, ScrollDirection, SearchInput, SelectChipSpec, SelectOptionChipSpec, SelectionOptions, ShellContentSlot, SortDirection, TextResolverFn$1 as TextResolverFn, Toast, ToastErrorDetails, ToastOptions, TrailingSpec, UnitCode, ValueSpec };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "20.5.0-alpha.1",
3
+ "version": "20.5.0-alpha.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^20.0.0 || ^21.0.0",
6
6
  "@angular/common": "^20.0.0 || ^21.0.0",
@@ -54,6 +54,7 @@
54
54
  margin-left: 18px;
55
55
  min-width: 280px;
56
56
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
57
+ overflow-y: auto;
57
58
  * {
58
59
  font-size: 14px !important;
59
60
  }
@@ -18,8 +18,7 @@
18
18
  @use '../components/elder-table-theme' as elder-table;
19
19
  @use '../components/elder-scrollbar-theme' as elder-scrollbar;
20
20
  @use '../components/mat-badge-theme' as mat-badge;
21
- @use '../components/elder-static-nav-theme' as elder-static-nav;
22
-
21
+ // Create a theme.
23
22
  @mixin starter-theme($theme) {
24
23
  $theme: elder-set-defaults-fn.validate-and-set-defaults($theme);
25
24
 
@@ -50,5 +49,4 @@
50
49
  @include elder-table.theme($theme);
51
50
  @include elder-scrollbar.theme();
52
51
  @include mat-badge.theme();
53
- @include elder-static-nav.theme();
54
52
  }
@@ -1,160 +0,0 @@
1
- @mixin theme {
2
- /*
3
- * This is the static side nav protype that relies solely on class-scoped css style overwrites.
4
- * This is only a temporary preview solution to display the side nav in a static position.
5
- * TODO: Replace this with a proper solution or remove static side nav feature.
6
- */
7
- .static-nav {
8
- --elder-nav-item-height: auto !important;
9
- --elder-nav-link-hover-color: transparent !important;
10
- --elder-nav-link-active-color: transparent !important;
11
- padding-right: 0px !important;
12
- width: 82px !important;
13
- //background-color: var(--md-sys-color-surface-container) !important;
14
-
15
- elder-app-header {
16
- display: none !important;
17
- }
18
-
19
- .elder-nav-list-full {
20
- max-width: 100% !important;
21
- width: 100% !important;
22
- min-width: unset !important;
23
- justify-content: stretch !important;
24
- align-items: stretch !important;
25
- }
26
-
27
- .mat-mdc-nav-list {
28
- padding-left: 0px !important;
29
- padding-right: 0px !important;
30
- overflow-x: hidden !important;
31
- overflow-y: auto !important;
32
- align-items: stretch !important;
33
- padding-top: 0px !important;
34
- }
35
-
36
- .mat-ripple-element {
37
- display: none !important;
38
- }
39
-
40
- * {
41
- // background-color: var(--md-sys-color-surface-container) !important;
42
- // --elder-nav-link-hover-color: transparent !important;
43
- transition: none !important;
44
- line-height: 1 !important;
45
- text-align: center !important;
46
- font-weight: 500;
47
-
48
- color: color-mix(
49
- in srgb,
50
- var(--md-sys-color-outline) 50%,
51
- var(--md-sys-color-on-surface)
52
- ) !important;
53
-
54
- &:hover {
55
- color: var(--md-sys-color-on-surface) !important;
56
- }
57
- }
58
-
59
- .nav-group-button {
60
- height: auto !important;
61
- padding-top: 12px !important;
62
- }
63
-
64
- .layout-row {
65
- flex-direction: column !important;
66
- }
67
-
68
- .nav-group-button * {
69
- gap: 14px !important;
70
- gap: 0px !important;
71
- }
72
- .gap-md,
73
- .gap-lg {
74
- gap: 3px !important;
75
- }
76
-
77
- .mdc-list-item {
78
- padding-top: 12px !important;
79
- }
80
-
81
- *:not(.mat-icon) {
82
- font-size: 12px !important;
83
- text-wrap: wrap;
84
- white-space: normal;
85
- word-wrap: break-word;
86
- word-break: break-word;
87
- overflow-wrap: break-word;
88
- hyphens: auto;
89
- text-align: center;
90
- }
91
-
92
- .nav-group-items-container,
93
- .mat-mdc-nav-list {
94
- padding-right: 0 !important;
95
- padding-left: 0 !important;
96
- align-items: center;
97
- }
98
-
99
- .nav-group-button,
100
- .nav-group-button-closed {
101
- justify-content: center !important;
102
- align-items: center !important;
103
- padding-left: 0 !important;
104
- padding-right: 0 !important;
105
- text-align: center;
106
- }
107
-
108
- .nav-link {
109
- padding-left: 0 !important;
110
- padding-right: 0 !important;
111
- height: unset !important; // override the default height of 48px, needed in some cases
112
- }
113
-
114
- .nav-link span {
115
- display: block;
116
- text-align: center;
117
- width: 66px;
118
- }
119
-
120
- .nav-link-active {
121
- &,
122
- * {
123
- color: var(--md-sys-color-primary) !important;
124
- }
125
- }
126
-
127
- .nav-group-button-active .mat-icon {
128
- background-color: var(--md-sys-color-primary-container) !important;
129
- }
130
-
131
- .nav-group-button .mat-icon,
132
- .nav-link .mat-icon {
133
- height: 40px !important;
134
- width: 48px !important;
135
- font-size: 32px !important;
136
- line-height: 1 !important;
137
- padding: 4px 8px !important;
138
- border-radius: 10px !important;
139
- }
140
-
141
- .nav-link-active .mat-icon {
142
- background-color: var(--md-sys-color-primary-container) !important;
143
- }
144
-
145
- * {
146
- color: color-mix(
147
- in srgb,
148
- var(--md-sys-color-primary-container) 30%,
149
- var(--md-sys-color-on-surface)
150
- ) !important;
151
- }
152
- }
153
-
154
- // menu styling
155
- .elder-nav-link-no-icon {
156
- .mat-icon {
157
- display: none !important;
158
- }
159
- }
160
- }