@elderbyte/ngx-starter 20.4.2 → 20.5.0-alpha.1
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/fesm2022/elderbyte-ngx-starter.mjs +155 -21
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/index.d.ts +54 -4
- package/package.json +1 -1
- package/src/lib/components/navigation/nav/nav-group/elder-nav-group.component.scss +20 -3
- package/theming/abstracts/_elder-starter-theme.scss +3 -1
- package/theming/components/_elder-static-nav-theme.scss +160 -0
package/index.d.ts
CHANGED
|
@@ -13364,6 +13364,7 @@ declare class NavItemClicked {
|
|
|
13364
13364
|
}
|
|
13365
13365
|
declare class ElderNavLinkComponent implements OnInit, OnDestroy {
|
|
13366
13366
|
private readonly navList;
|
|
13367
|
+
private readonly staticNav;
|
|
13367
13368
|
/***************************************************************************
|
|
13368
13369
|
* *
|
|
13369
13370
|
* Fields *
|
|
@@ -13416,6 +13417,9 @@ declare class ElderNavLinkComponent implements OnInit, OnDestroy {
|
|
|
13416
13417
|
get value(): any;
|
|
13417
13418
|
set disabled(v: BooleanInput);
|
|
13418
13419
|
get disabled(): boolean;
|
|
13420
|
+
get routerLink(): string;
|
|
13421
|
+
get href(): string;
|
|
13422
|
+
get target(): string;
|
|
13419
13423
|
/***************************************************************************
|
|
13420
13424
|
* *
|
|
13421
13425
|
* Public API *
|
|
@@ -13428,6 +13432,7 @@ declare class ElderNavLinkComponent implements OnInit, OnDestroy {
|
|
|
13428
13432
|
* *
|
|
13429
13433
|
**************************************************************************/
|
|
13430
13434
|
private get isCurrentValueActive();
|
|
13435
|
+
get isStaticNav(): boolean;
|
|
13431
13436
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavLinkComponent, never>;
|
|
13432
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>;
|
|
13433
13438
|
}
|
|
@@ -13435,12 +13440,15 @@ declare class ElderNavLinkComponent implements OnInit, OnDestroy {
|
|
|
13435
13440
|
declare class ElderNavGroupComponent implements OnInit {
|
|
13436
13441
|
private readonly destroyRef;
|
|
13437
13442
|
private readonly navList;
|
|
13443
|
+
private readonly staticNav;
|
|
13438
13444
|
private childSubscription;
|
|
13439
13445
|
/***************************************************************************
|
|
13440
13446
|
* *
|
|
13441
13447
|
* Fields *
|
|
13442
13448
|
* *
|
|
13443
13449
|
**************************************************************************/
|
|
13450
|
+
readonly title: i0.InputSignal<string>;
|
|
13451
|
+
readonly icon: i0.InputSignal<string>;
|
|
13444
13452
|
readonly children: i0.Signal<readonly ElderNavLinkComponent[]>;
|
|
13445
13453
|
readonly isOpen: i0.WritableSignal<boolean>;
|
|
13446
13454
|
readonly clicked: i0.OutputEmitterRef<NavItemClicked>;
|
|
@@ -13448,6 +13456,7 @@ declare class ElderNavGroupComponent implements OnInit {
|
|
|
13448
13456
|
/***************************************************************************
|
|
13449
13457
|
* *
|
|
13450
13458
|
* Computed Properties *
|
|
13459
|
+
* Computed Properties *
|
|
13451
13460
|
* *
|
|
13452
13461
|
**************************************************************************/
|
|
13453
13462
|
readonly active: i0.Signal<boolean>;
|
|
@@ -13471,8 +13480,15 @@ declare class ElderNavGroupComponent implements OnInit {
|
|
|
13471
13480
|
**************************************************************************/
|
|
13472
13481
|
itemClick(event: MouseEvent): void;
|
|
13473
13482
|
toggle(): void;
|
|
13483
|
+
get isStaticNav(): boolean;
|
|
13474
13484
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderNavGroupComponent, never>;
|
|
13475
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderNavGroupComponent, "elder-nav-group", never, {}, { "clicked": "clicked"; }, ["children"], ["
|
|
13485
|
+
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
|
+
}
|
|
13487
|
+
|
|
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>;
|
|
13476
13492
|
}
|
|
13477
13493
|
|
|
13478
13494
|
declare class ElderNavModule {
|
|
@@ -13668,12 +13684,21 @@ declare class ElderShellService {
|
|
|
13668
13684
|
private _clickOutsideToClose;
|
|
13669
13685
|
private detailContentOutlet;
|
|
13670
13686
|
private readonly slotManager;
|
|
13687
|
+
private static readonly STATIC_NAV_STORAGE_KEY;
|
|
13688
|
+
private readonly _staticNavOpen;
|
|
13689
|
+
readonly staticNavOpen: i0.Signal<boolean>;
|
|
13671
13690
|
/***************************************************************************
|
|
13672
13691
|
* *
|
|
13673
13692
|
* Constructor *
|
|
13674
13693
|
* *
|
|
13675
13694
|
**************************************************************************/
|
|
13676
13695
|
constructor(router: Router, routerOutletService: ElderRouterOutletService);
|
|
13696
|
+
/***************************************************************************
|
|
13697
|
+
* *
|
|
13698
|
+
* Private Methods *
|
|
13699
|
+
* *
|
|
13700
|
+
**************************************************************************/
|
|
13701
|
+
private getStaticNavInitialState;
|
|
13677
13702
|
/***************************************************************************
|
|
13678
13703
|
* *
|
|
13679
13704
|
* Properties *
|
|
@@ -13733,6 +13758,12 @@ declare class ElderShellService {
|
|
|
13733
13758
|
*/
|
|
13734
13759
|
closeSideContent(): Promise<boolean>;
|
|
13735
13760
|
isSideContentActive(): boolean;
|
|
13761
|
+
/**
|
|
13762
|
+
* Static sidenav
|
|
13763
|
+
*/
|
|
13764
|
+
toggleStaticNav(): void;
|
|
13765
|
+
openStaticNav(): void;
|
|
13766
|
+
closeStaticNav(): void;
|
|
13736
13767
|
/**
|
|
13737
13768
|
* Shows the side content
|
|
13738
13769
|
* @param args The route arguments / path
|
|
@@ -13817,6 +13848,13 @@ declare class ElderShellCenterDirective {
|
|
|
13817
13848
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellCenterDirective, never>;
|
|
13818
13849
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderShellCenterDirective, "[elderShellCenter]", never, {}, {}, never, never, true, never>;
|
|
13819
13850
|
}
|
|
13851
|
+
declare class ElderShellStaticNavDirective {
|
|
13852
|
+
templateRef: TemplateRef<any>;
|
|
13853
|
+
viewContainer: ViewContainerRef;
|
|
13854
|
+
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>;
|
|
13857
|
+
}
|
|
13820
13858
|
declare class ElderShellComponent implements OnInit {
|
|
13821
13859
|
private shellService;
|
|
13822
13860
|
private outletDrawerService;
|
|
@@ -13838,9 +13876,11 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13838
13876
|
sideContentLeft: TemplateRef<any>;
|
|
13839
13877
|
sideContentRight: TemplateRef<any>;
|
|
13840
13878
|
centerContent: TemplateRef<any>;
|
|
13879
|
+
staticNavContent: TemplateRef<any>;
|
|
13841
13880
|
rightSideDrawer: MatSidenav;
|
|
13842
13881
|
rightSideOutletName: string;
|
|
13843
13882
|
leftSideContentOpen: Signal<boolean>;
|
|
13883
|
+
isInIframe: boolean;
|
|
13844
13884
|
readonly headerTemplate: Signal<TemplateRef<any>>;
|
|
13845
13885
|
readonly centerTemplate: Signal<TemplateRef<any>>;
|
|
13846
13886
|
readonly footerTemplate: Signal<TemplateRef<any>>;
|
|
@@ -13848,6 +13888,7 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13848
13888
|
readonly navMenuSvgIcon: i0.InputSignal<string>;
|
|
13849
13889
|
readonly menuColor: i0.InputSignal<ThemePalette>;
|
|
13850
13890
|
readonly menuIconColor: i0.InputSignal<ThemePalette>;
|
|
13891
|
+
readonly staticNavOpen: Signal<boolean>;
|
|
13851
13892
|
/***************************************************************************
|
|
13852
13893
|
* *
|
|
13853
13894
|
* Constructor *
|
|
@@ -13870,6 +13911,7 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13870
13911
|
toggleSideNav(): void;
|
|
13871
13912
|
onBackdropClick(event: any): void;
|
|
13872
13913
|
onEscapeRightSide(event: Event): void;
|
|
13914
|
+
toggleStaticNav(): void;
|
|
13873
13915
|
/***************************************************************************
|
|
13874
13916
|
* *
|
|
13875
13917
|
* Private methods *
|
|
@@ -13877,7 +13919,7 @@ declare class ElderShellComponent implements OnInit {
|
|
|
13877
13919
|
**************************************************************************/
|
|
13878
13920
|
private isContained;
|
|
13879
13921
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellComponent, never>;
|
|
13880
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; "isSignal": true; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; "isSignal": true; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "navMenuSvgIcon": { "alias": "navMenuSvgIcon"; "required": false; "isSignal": true; }; "menuColor": { "alias": "menuColor"; "required": false; "isSignal": true; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; "isSignal": true; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent"], never, true, never>;
|
|
13922
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; "isSignal": true; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; "isSignal": true; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "navMenuSvgIcon": { "alias": "navMenuSvgIcon"; "required": false; "isSignal": true; }; "menuColor": { "alias": "menuColor"; "required": false; "isSignal": true; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; "isSignal": true; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent", "staticNavContent"], never, true, never>;
|
|
13881
13923
|
}
|
|
13882
13924
|
|
|
13883
13925
|
declare class ElderShellNavigationToggleComponent implements OnInit, OnDestroy {
|
|
@@ -13989,6 +14031,14 @@ declare class ElderAppHeaderComponent {
|
|
|
13989
14031
|
static ɵcmp: i0.ɵɵComponentDeclaration<ElderAppHeaderComponent, "elder-app-header", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "svgIcon": { "alias": "svgIcon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; "subTitleLink": { "alias": "subTitleLink"; "required": false; "isSignal": true; }; "version": { "alias": "version"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
13990
14032
|
}
|
|
13991
14033
|
|
|
14034
|
+
declare class ElderStaticNavToggleComponent {
|
|
14035
|
+
shellService: ElderShellService;
|
|
14036
|
+
readonly staticNavOpen: i0.Signal<boolean>;
|
|
14037
|
+
onToggle(tggl: boolean): void;
|
|
14038
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderStaticNavToggleComponent, never>;
|
|
14039
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderStaticNavToggleComponent, "elder-static-nav-toggle", never, {}, {}, never, never, true, never>;
|
|
14040
|
+
}
|
|
14041
|
+
|
|
13992
14042
|
declare class DrawerOutletBinding {
|
|
13993
14043
|
private readonly routerOutlet;
|
|
13994
14044
|
private readonly drawer;
|
|
@@ -14026,7 +14076,7 @@ declare class DrawerOutletBinding {
|
|
|
14026
14076
|
|
|
14027
14077
|
declare class ElderShellModule {
|
|
14028
14078
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellModule, never>;
|
|
14029
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderShellModule, never, [typeof i1.CommonModule, typeof i2$5.RouterModule, typeof i3$4.MatSidenavModule, typeof i4$2.MatToolbarModule, typeof i3.MatIconModule, typeof i2$4.MatListModule, typeof i6.MatButtonModule, typeof ElderToolbarModule, typeof ElderPanelModule, typeof ElderThemeModule, typeof i2$3.TranslateModule, typeof ElderShellComponent, typeof ElderShellSideLeftDirective, typeof ElderShellSideRightDirective, typeof ElderShellCenterDirective, typeof ElderShellNavigationToggleComponent, typeof ElderShellSlotDirective, typeof ElderAppHeaderComponent], [typeof ElderShellComponent, typeof ElderShellSideLeftDirective, typeof ElderShellSideRightDirective, typeof ElderShellCenterDirective, typeof ElderShellNavigationToggleComponent, typeof ElderShellSlotDirective, typeof ElderAppHeaderComponent]>;
|
|
14079
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ElderShellModule, never, [typeof i1.CommonModule, typeof i2$5.RouterModule, typeof i3$4.MatSidenavModule, typeof i4$2.MatToolbarModule, typeof i3.MatIconModule, typeof i2$4.MatListModule, typeof i6.MatButtonModule, typeof ElderToolbarModule, typeof ElderPanelModule, typeof ElderThemeModule, typeof i2$3.TranslateModule, typeof ElderShellComponent, typeof ElderShellSideLeftDirective, typeof ElderShellSideRightDirective, typeof ElderShellCenterDirective, typeof ElderShellNavigationToggleComponent, typeof ElderShellSlotDirective, typeof ElderAppHeaderComponent, typeof ElderStaticNavToggleComponent], [typeof ElderShellComponent, typeof ElderShellSideLeftDirective, typeof ElderShellSideRightDirective, typeof ElderShellCenterDirective, typeof ElderShellNavigationToggleComponent, typeof ElderShellSlotDirective, typeof ElderAppHeaderComponent, typeof ElderStaticNavToggleComponent]>;
|
|
14030
14080
|
static ɵinj: i0.ɵɵInjectorDeclaration<ElderShellModule>;
|
|
14031
14081
|
}
|
|
14032
14082
|
|
|
@@ -18087,5 +18137,5 @@ declare class KafentModule {
|
|
|
18087
18137
|
static ɵinj: i0.ɵɵInjectorDeclaration<KafentModule>;
|
|
18088
18138
|
}
|
|
18089
18139
|
|
|
18090
|
-
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, ElderSimpleSelectionViewComponent, ElderSimpleSelectionViewModule, ElderSinglePaneWrapperComponent, ElderSingleSortComponent, ElderSingleStateCheckboxDirective, ElderStackCardDirective, 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 };
|
|
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 };
|
|
18091
18141
|
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
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
.nav-group-button {
|
|
19
19
|
.mat-icon {
|
|
20
20
|
height: 24px;
|
|
21
|
-
width:
|
|
21
|
+
width: 32px;
|
|
22
22
|
font-size: 24px;
|
|
23
|
-
padding: 4px;
|
|
23
|
+
padding: 0 4px;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
@@ -38,6 +38,23 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.nav-group-button-active:not(.nav-group-button-open) {
|
|
41
|
-
background-color: var(--elder-nav-link-hover-color);
|
|
41
|
+
background-color: var(--elder-nav-link-hover-color) !important;
|
|
42
42
|
color: var(--md-sys-color-primary);
|
|
43
43
|
}
|
|
44
|
+
|
|
45
|
+
.nav-group-in-menu {
|
|
46
|
+
--elder-nav-item-height: 38px !important;
|
|
47
|
+
width: auto;
|
|
48
|
+
border: solid 1px #ccc;
|
|
49
|
+
border-radius: 5px;
|
|
50
|
+
background: var(--md-sys-color-surface-container-lowest);
|
|
51
|
+
text-align: center;
|
|
52
|
+
padding: 4px 0;
|
|
53
|
+
margin: 0;
|
|
54
|
+
margin-left: 18px;
|
|
55
|
+
min-width: 280px;
|
|
56
|
+
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
|
|
57
|
+
* {
|
|
58
|
+
font-size: 14px !important;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -18,7 +18,8 @@
|
|
|
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
|
-
|
|
21
|
+
@use '../components/elder-static-nav-theme' as elder-static-nav;
|
|
22
|
+
|
|
22
23
|
@mixin starter-theme($theme) {
|
|
23
24
|
$theme: elder-set-defaults-fn.validate-and-set-defaults($theme);
|
|
24
25
|
|
|
@@ -49,4 +50,5 @@
|
|
|
49
50
|
@include elder-table.theme($theme);
|
|
50
51
|
@include elder-scrollbar.theme();
|
|
51
52
|
@include mat-badge.theme();
|
|
53
|
+
@include elder-static-nav.theme();
|
|
52
54
|
}
|
|
@@ -0,0 +1,160 @@
|
|
|
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
|
+
}
|