@elderbyte/ngx-starter 20.1.2 → 20.2.0

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.
@@ -34857,170 +34857,6 @@ class SimpleSearchInput {
34857
34857
  }
34858
34858
  }
34859
34859
 
34860
- class EnvDomainSpecService extends RestClient {
34861
- loadConfig() {
34862
- return this.http.get(this.restEndpoint);
34863
- }
34864
- }
34865
-
34866
- class ElderUrlFragment {
34867
- constructor(name, fragment, color = 'white', backgroundColor = 'transparent') {
34868
- this.name = name;
34869
- this.fragment = fragment;
34870
- this.color = color;
34871
- this.backgroundColor = backgroundColor;
34872
- }
34873
- }
34874
-
34875
- class ElderButtonGroupComponent {
34876
- constructor() { }
34877
- ngOnInit() { }
34878
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
34879
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: ElderButtonGroupComponent, isStandalone: true, selector: "elder-button-group", ngImport: i0, template: "<div class=\"layout-row elder-button-group\">\n <ng-content></ng-content>\n</div>\n", styles: [".elder-button-group button{border:var(--elder-border-light);border-width:0!important;min-width:60px!important}.elder-button-group button:not(:first-child):not(:last-child){border-radius:0;border-left:0}.elder-button-group button:first-child:not(:last-child){border-radius:var(--mat-button-filled-container-shape) 0 0 var(--mat-button-filled-container-shape);border-right:0}.elder-button-group button:last-child:not(:first-child){border-radius:0 var(--mat-button-filled-container-shape) var(--mat-button-filled-container-shape) 0;border-left:0}.elder-button-group button:last-child:first-child{border-radius:var(--mat-button-filled-container-shape)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
34880
- }
34881
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, decorators: [{
34882
- type: Component,
34883
- args: [{ selector: 'elder-button-group', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: true, template: "<div class=\"layout-row elder-button-group\">\n <ng-content></ng-content>\n</div>\n", styles: [".elder-button-group button{border:var(--elder-border-light);border-width:0!important;min-width:60px!important}.elder-button-group button:not(:first-child):not(:last-child){border-radius:0;border-left:0}.elder-button-group button:first-child:not(:last-child){border-radius:var(--mat-button-filled-container-shape) 0 0 var(--mat-button-filled-container-shape);border-right:0}.elder-button-group button:last-child:not(:first-child){border-radius:0 var(--mat-button-filled-container-shape) var(--mat-button-filled-container-shape) 0;border-left:0}.elder-button-group button:last-child:first-child{border-radius:var(--mat-button-filled-container-shape)}\n"] }]
34884
- }], ctorParameters: () => [] });
34885
-
34886
- class ElderUrlFragmentSwitcherComponent {
34887
- /***************************************************************************
34888
- * *
34889
- * Constructor *
34890
- * *
34891
- **************************************************************************/
34892
- constructor() {
34893
- /***************************************************************************
34894
- * *
34895
- * Fields *
34896
- * *
34897
- **************************************************************************/
34898
- /**
34899
- * Disables the component
34900
- */
34901
- this.disable = input(true);
34902
- /**
34903
- * Regex which matches the part of the url which will get replaced
34904
- */
34905
- this.urlRegex = model(new RegExp('[.](\\w+)'));
34906
- /**
34907
- * Index of the regex group which will be replaced
34908
- */
34909
- this.regexArrayIndex = model(0);
34910
- /**
34911
- * List of url fragments which can replace a part of the window location
34912
- */
34913
- this.urlFragments = model([]);
34914
- /**
34915
- * Window which will open the created url
34916
- */
34917
- this.windowOpenIn = input('_self');
34918
- this.activeFragment = computed(() => this.findActiveFragment());
34919
- this.logger = LoggerFactory.getLogger('ElderUrlFragmentSwitcherComponent');
34920
- }
34921
- /***************************************************************************
34922
- * *
34923
- * Public API *
34924
- * *
34925
- **************************************************************************/
34926
- replaceFragment(urlFragment) {
34927
- this.logger.debug(urlFragment);
34928
- window.open(window.location.href.replace(this.urlRegex().exec(window.location.href)[this.regexArrayIndex()], urlFragment), this.windowOpenIn());
34929
- }
34930
- /***************************************************************************
34931
- * *
34932
- * Private Methods *
34933
- * *
34934
- **************************************************************************/
34935
- findActiveFragment() {
34936
- return this.urlFragments().find((c) => {
34937
- try {
34938
- return c.fragment === this.urlRegex().exec(window.location.href)[this.regexArrayIndex()];
34939
- }
34940
- catch (e) {
34941
- return false;
34942
- }
34943
- });
34944
- }
34945
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
34946
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.3", type: ElderUrlFragmentSwitcherComponent, isStandalone: true, selector: "elder-url-fragment-switcher", inputs: { disable: { classPropertyName: "disable", publicName: "disable", isSignal: true, isRequired: false, transformFunction: null }, urlRegex: { classPropertyName: "urlRegex", publicName: "urlRegex", isSignal: true, isRequired: false, transformFunction: null }, regexArrayIndex: { classPropertyName: "regexArrayIndex", publicName: "regexArrayIndex", isSignal: true, isRequired: false, transformFunction: null }, urlFragments: { classPropertyName: "urlFragments", publicName: "urlFragments", isSignal: true, isRequired: false, transformFunction: null }, windowOpenIn: { classPropertyName: "windowOpenIn", publicName: "windowOpenIn", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { urlRegex: "urlRegexChange", regexArrayIndex: "regexArrayIndexChange", urlFragments: "urlFragmentsChange" }, ngImport: i0, template: "@if (activeFragment(); as activeFragment) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable()) {\n <span class=\"caption\">{{ activeFragment.name }}</span>\n }\n </div>\n </button>\n\n @if (!disable()) {\n <button\n mat-stroked-button\n type=\"button\"\n [matMenuTriggerFor]=\"fragmentMenu\"\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <mat-icon>flip_camera_android</mat-icon>\n </button>\n }\n </elder-button-group>\n\n <mat-menu #fragmentMenu=\"matMenu\">\n @for (urlFragment of urlFragments(); track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"replaceFragment(urlFragment.fragment)\">\n <mat-icon [ngStyle]=\"{ color: urlFragment.color }\">flip_camera_android</mat-icon>\n <span>{{ urlFragment.name }}</span>\n </button>\n }\n </mat-menu>\n}\n", styles: [".activeURlFragment{padding-left:6px}.mat-body-strong{line-height:5px;padding-top:10px;padding-bottom:8px;color:#000}.caption{color:#fff}.mat-body-strong-no-caption{line-height:5px;padding-top:15px;padding-bottom:14px;color:#000}.status-button.status-button .caption{color:#f5f5f5!important}\n"], dependencies: [{ kind: "component", type: ElderButtonGroupComponent, selector: "elder-button-group" }, { kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
34947
- }
34948
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, decorators: [{
34949
- type: Component,
34950
- args: [{ selector: 'elder-url-fragment-switcher', changeDetection: ChangeDetectionStrategy.OnPush, imports: [
34951
- ElderButtonGroupComponent,
34952
- MatButton,
34953
- NgStyle,
34954
- MatMenuTrigger,
34955
- MatIcon,
34956
- MatMenu,
34957
- MatMenuItem,
34958
- ], template: "@if (activeFragment(); as activeFragment) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable()) {\n <span class=\"caption\">{{ activeFragment.name }}</span>\n }\n </div>\n </button>\n\n @if (!disable()) {\n <button\n mat-stroked-button\n type=\"button\"\n [matMenuTriggerFor]=\"fragmentMenu\"\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <mat-icon>flip_camera_android</mat-icon>\n </button>\n }\n </elder-button-group>\n\n <mat-menu #fragmentMenu=\"matMenu\">\n @for (urlFragment of urlFragments(); track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"replaceFragment(urlFragment.fragment)\">\n <mat-icon [ngStyle]=\"{ color: urlFragment.color }\">flip_camera_android</mat-icon>\n <span>{{ urlFragment.name }}</span>\n </button>\n }\n </mat-menu>\n}\n", styles: [".activeURlFragment{padding-left:6px}.mat-body-strong{line-height:5px;padding-top:10px;padding-bottom:8px;color:#000}.caption{color:#fff}.mat-body-strong-no-caption{line-height:5px;padding-top:15px;padding-bottom:14px;color:#000}.status-button.status-button .caption{color:#f5f5f5!important}\n"] }]
34959
- }], ctorParameters: () => [] });
34960
-
34961
- class EnvUrlFragmentSwitcherConfig {
34962
- constructor(hostRegex, regexGroup, urlFragments) {
34963
- this.hostRegex = hostRegex;
34964
- this.regexGroup = regexGroup;
34965
- this.urlFragments = urlFragments;
34966
- }
34967
- }
34968
- /**
34969
- * This directive loads the configured environment domain spec and sets up the {@link ElderUrlFragmentSwitcherComponent}.
34970
- *
34971
- * IMPORTANT:
34972
- * Make sure a {@link EnvDomainSpecService} is implemented which provides the environment domain spec!
34973
- */
34974
- class EnvDomainSwitcherDirective {
34975
- /***************************************************************************
34976
- * *
34977
- * Constructor *
34978
- * *
34979
- **************************************************************************/
34980
- constructor(urlFragmentSwitcher) {
34981
- this.urlFragmentSwitcher = urlFragmentSwitcher;
34982
- /***************************************************************************
34983
- * *
34984
- * Fields *
34985
- * *
34986
- **************************************************************************/
34987
- this.envSwitchConfigService = inject(EnvDomainSpecService);
34988
- }
34989
- ngOnInit() {
34990
- this.envSwitchConfigService.loadConfig().subscribe((envSwitch) => {
34991
- const envSwitchConfig = this.buildElderEnvSwitch(envSwitch);
34992
- this.urlFragmentSwitcher.urlRegex.set(envSwitchConfig.hostRegex);
34993
- this.urlFragmentSwitcher.regexArrayIndex.set(envSwitchConfig.regexGroup);
34994
- this.urlFragmentSwitcher.urlFragments.set(envSwitchConfig.urlFragments);
34995
- });
34996
- }
34997
- /***************************************************************************
34998
- * *
34999
- * Private methods *
35000
- * *
35001
- **************************************************************************/
35002
- buildElderEnvSwitch(spec) {
35003
- return new EnvUrlFragmentSwitcherConfig(new RegExp(spec.hostRegex), spec.regexGroup, spec.urlFragments.map(this.buildUrlFragment));
35004
- }
35005
- buildUrlFragment(fragment) {
35006
- return new ElderUrlFragment(fragment.name, fragment.fragment, fragment.color);
35007
- }
35008
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: EnvDomainSwitcherDirective, deps: [{ token: ElderUrlFragmentSwitcherComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
35009
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: EnvDomainSwitcherDirective, isStandalone: true, selector: "elder-env-domain-switcher, [elder-env-domain-switcher], [elderEnvDomainSwitcher]", ngImport: i0 }); }
35010
- }
35011
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: EnvDomainSwitcherDirective, decorators: [{
35012
- type: Directive,
35013
- args: [{
35014
- selector: 'elder-env-domain-switcher, [elder-env-domain-switcher], [elderEnvDomainSwitcher]',
35015
- standalone: true,
35016
- }]
35017
- }], ctorParameters: () => [{ type: ElderUrlFragmentSwitcherComponent }] });
35018
-
35019
- class EnvDomainSpec {
35020
- }
35021
- class EnvDomainFragmentSpec {
35022
- }
35023
-
35024
34860
  class ElderToastModule {
35025
34861
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderToastModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
35026
34862
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: ElderToastModule, imports: [CommonModule,
@@ -35474,6 +35310,92 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
35474
35310
  }]
35475
35311
  }] });
35476
35312
 
35313
+ class ElderButtonGroupComponent {
35314
+ constructor() { }
35315
+ ngOnInit() { }
35316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
35317
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.3", type: ElderButtonGroupComponent, isStandalone: true, selector: "elder-button-group", ngImport: i0, template: "<div class=\"layout-row elder-button-group\">\n <ng-content></ng-content>\n</div>\n", styles: [".elder-button-group button{border:var(--elder-border-light);border-width:0!important;min-width:60px!important}.elder-button-group button:not(:first-child):not(:last-child){border-radius:0;border-left:0}.elder-button-group button:first-child:not(:last-child){border-radius:var(--mat-button-filled-container-shape) 0 0 var(--mat-button-filled-container-shape);border-right:0}.elder-button-group button:last-child:not(:first-child){border-radius:0 var(--mat-button-filled-container-shape) var(--mat-button-filled-container-shape) 0;border-left:0}.elder-button-group button:last-child:first-child{border-radius:var(--mat-button-filled-container-shape)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
35318
+ }
35319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, decorators: [{
35320
+ type: Component,
35321
+ args: [{ selector: 'elder-button-group', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: true, template: "<div class=\"layout-row elder-button-group\">\n <ng-content></ng-content>\n</div>\n", styles: [".elder-button-group button{border:var(--elder-border-light);border-width:0!important;min-width:60px!important}.elder-button-group button:not(:first-child):not(:last-child){border-radius:0;border-left:0}.elder-button-group button:first-child:not(:last-child){border-radius:var(--mat-button-filled-container-shape) 0 0 var(--mat-button-filled-container-shape);border-right:0}.elder-button-group button:last-child:not(:first-child){border-radius:0 var(--mat-button-filled-container-shape) var(--mat-button-filled-container-shape) 0;border-left:0}.elder-button-group button:last-child:first-child{border-radius:var(--mat-button-filled-container-shape)}\n"] }]
35322
+ }], ctorParameters: () => [] });
35323
+
35324
+ class ElderUrlFragmentSwitcherComponent {
35325
+ /***************************************************************************
35326
+ * *
35327
+ * Constructor *
35328
+ * *
35329
+ **************************************************************************/
35330
+ constructor() {
35331
+ /***************************************************************************
35332
+ * *
35333
+ * Fields *
35334
+ * *
35335
+ **************************************************************************/
35336
+ /**
35337
+ * Disables the component
35338
+ */
35339
+ this.disable = input(true);
35340
+ /**
35341
+ * Regex which matches the part of the url which will get replaced
35342
+ */
35343
+ this.urlRegex = model(new RegExp('[.](\\w+)'));
35344
+ /**
35345
+ * Index of the regex group which will be replaced
35346
+ */
35347
+ this.regexArrayIndex = model(0);
35348
+ /**
35349
+ * List of url fragments which can replace a part of the window location
35350
+ */
35351
+ this.urlFragments = model([]);
35352
+ /**
35353
+ * Window which will open the created url
35354
+ */
35355
+ this.windowOpenIn = input('_self');
35356
+ this.activeFragment = computed(() => this.findActiveFragment());
35357
+ this.logger = LoggerFactory.getLogger('ElderUrlFragmentSwitcherComponent');
35358
+ }
35359
+ /***************************************************************************
35360
+ * *
35361
+ * Public API *
35362
+ * *
35363
+ **************************************************************************/
35364
+ replaceFragment(urlFragment) {
35365
+ this.logger.debug(urlFragment);
35366
+ window.open(window.location.href.replace(this.urlRegex().exec(window.location.href)[this.regexArrayIndex()], urlFragment), this.windowOpenIn());
35367
+ }
35368
+ /***************************************************************************
35369
+ * *
35370
+ * Private Methods *
35371
+ * *
35372
+ **************************************************************************/
35373
+ findActiveFragment() {
35374
+ return this.urlFragments().find((c) => {
35375
+ try {
35376
+ return c.fragment === this.urlRegex().exec(window.location.href)[this.regexArrayIndex()];
35377
+ }
35378
+ catch (e) {
35379
+ return false;
35380
+ }
35381
+ });
35382
+ }
35383
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
35384
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.3", type: ElderUrlFragmentSwitcherComponent, isStandalone: true, selector: "elder-url-fragment-switcher", inputs: { disable: { classPropertyName: "disable", publicName: "disable", isSignal: true, isRequired: false, transformFunction: null }, urlRegex: { classPropertyName: "urlRegex", publicName: "urlRegex", isSignal: true, isRequired: false, transformFunction: null }, regexArrayIndex: { classPropertyName: "regexArrayIndex", publicName: "regexArrayIndex", isSignal: true, isRequired: false, transformFunction: null }, urlFragments: { classPropertyName: "urlFragments", publicName: "urlFragments", isSignal: true, isRequired: false, transformFunction: null }, windowOpenIn: { classPropertyName: "windowOpenIn", publicName: "windowOpenIn", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { urlRegex: "urlRegexChange", regexArrayIndex: "regexArrayIndexChange", urlFragments: "urlFragmentsChange" }, ngImport: i0, template: "@if (activeFragment(); as activeFragment) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable()) {\n <span class=\"caption\">{{ activeFragment.name }}</span>\n }\n </div>\n </button>\n\n @if (!disable()) {\n <button\n mat-stroked-button\n type=\"button\"\n [matMenuTriggerFor]=\"fragmentMenu\"\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <mat-icon>flip_camera_android</mat-icon>\n </button>\n }\n </elder-button-group>\n\n <mat-menu #fragmentMenu=\"matMenu\">\n @for (urlFragment of urlFragments(); track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"replaceFragment(urlFragment.fragment)\">\n <mat-icon [ngStyle]=\"{ color: urlFragment.color }\">flip_camera_android</mat-icon>\n <span>{{ urlFragment.name }}</span>\n </button>\n }\n </mat-menu>\n}\n", styles: [".activeURlFragment{padding-left:6px}.mat-body-strong{line-height:5px;padding-top:10px;padding-bottom:8px;color:#000}.caption{color:#fff}.mat-body-strong-no-caption{line-height:5px;padding-top:15px;padding-bottom:14px;color:#000}.status-button.status-button .caption{color:#f5f5f5!important}\n"], dependencies: [{ kind: "component", type: ElderButtonGroupComponent, selector: "elder-button-group" }, { kind: "component", type: MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
35385
+ }
35386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, decorators: [{
35387
+ type: Component,
35388
+ args: [{ selector: 'elder-url-fragment-switcher', changeDetection: ChangeDetectionStrategy.OnPush, imports: [
35389
+ ElderButtonGroupComponent,
35390
+ MatButton,
35391
+ NgStyle,
35392
+ MatMenuTrigger,
35393
+ MatIcon,
35394
+ MatMenu,
35395
+ MatMenuItem,
35396
+ ], template: "@if (activeFragment(); as activeFragment) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable()) {\n <span class=\"caption\">{{ activeFragment.name }}</span>\n }\n </div>\n </button>\n\n @if (!disable()) {\n <button\n mat-stroked-button\n type=\"button\"\n [matMenuTriggerFor]=\"fragmentMenu\"\n [ngStyle]=\"{ 'background-color': activeFragment.color }\"\n >\n <mat-icon>flip_camera_android</mat-icon>\n </button>\n }\n </elder-button-group>\n\n <mat-menu #fragmentMenu=\"matMenu\">\n @for (urlFragment of urlFragments(); track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"replaceFragment(urlFragment.fragment)\">\n <mat-icon [ngStyle]=\"{ color: urlFragment.color }\">flip_camera_android</mat-icon>\n <span>{{ urlFragment.name }}</span>\n </button>\n }\n </mat-menu>\n}\n", styles: [".activeURlFragment{padding-left:6px}.mat-body-strong{line-height:5px;padding-top:10px;padding-bottom:8px;color:#000}.caption{color:#fff}.mat-body-strong-no-caption{line-height:5px;padding-top:15px;padding-bottom:14px;color:#000}.status-button.status-button .caption{color:#f5f5f5!important}\n"] }]
35397
+ }], ctorParameters: () => [] });
35398
+
35477
35399
  class ElderButtonGroupModule {
35478
35400
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
35479
35401
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupModule, imports: [CommonModule, MatMenuModule, MatIconModule, MatButtonModule, ElderButtonGroupComponent], exports: [ElderButtonGroupComponent] }); }
@@ -35487,6 +35409,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
35487
35409
  }]
35488
35410
  }] });
35489
35411
 
35412
+ class ElderUrlFragment {
35413
+ constructor(name, fragment, color = 'white', backgroundColor = 'transparent') {
35414
+ this.name = name;
35415
+ this.fragment = fragment;
35416
+ this.color = color;
35417
+ this.backgroundColor = backgroundColor;
35418
+ }
35419
+ }
35420
+
35490
35421
  class ElderUrlFragmentModule {
35491
35422
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
35492
35423
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentModule, imports: [CommonModule,
@@ -35526,6 +35457,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
35526
35457
  }]
35527
35458
  }] });
35528
35459
 
35460
+ class WebappDomainSpecService {
35461
+ }
35462
+
35463
+ class WebappDomainSpec {
35464
+ }
35465
+ class WebappDomainFragmentSpec {
35466
+ }
35467
+
35468
+ class WebappUrlFragmentSwitcherConfig {
35469
+ constructor(hostRegex, regexGroup, urlFragments) {
35470
+ this.hostRegex = hostRegex;
35471
+ this.regexGroup = regexGroup;
35472
+ this.urlFragments = urlFragments;
35473
+ }
35474
+ }
35475
+ /**
35476
+ * This directive loads the configured environment domain spec and sets up the {@link ElderUrlFragmentSwitcherComponent}.
35477
+ *
35478
+ * IMPORTANT:
35479
+ * Make sure a {@link WebappDomainSpecService} is implemented which provides the environment domain spec!
35480
+ */
35481
+ class WebappDomainSwitcherDirective {
35482
+ /***************************************************************************
35483
+ * *
35484
+ * Constructor *
35485
+ * *
35486
+ **************************************************************************/
35487
+ constructor(urlFragmentSwitcher) {
35488
+ this.urlFragmentSwitcher = urlFragmentSwitcher;
35489
+ /***************************************************************************
35490
+ * *
35491
+ * Fields *
35492
+ * *
35493
+ **************************************************************************/
35494
+ this.envSwitchConfigService = inject(WebappDomainSpecService);
35495
+ }
35496
+ ngOnInit() {
35497
+ this.envSwitchConfigService.loadConfig().subscribe((envSwitch) => {
35498
+ const envSwitchConfig = this.buildElderEnvSwitch(envSwitch);
35499
+ this.urlFragmentSwitcher.urlRegex.set(envSwitchConfig.hostRegex);
35500
+ this.urlFragmentSwitcher.regexArrayIndex.set(envSwitchConfig.regexGroup);
35501
+ this.urlFragmentSwitcher.urlFragments.set(envSwitchConfig.urlFragments);
35502
+ });
35503
+ }
35504
+ /***************************************************************************
35505
+ * *
35506
+ * Private methods *
35507
+ * *
35508
+ **************************************************************************/
35509
+ buildElderEnvSwitch(spec) {
35510
+ return new WebappUrlFragmentSwitcherConfig(new RegExp(spec.hostRegex), spec.regexGroup, spec.urlFragments.map(this.buildUrlFragment));
35511
+ }
35512
+ buildUrlFragment(fragment) {
35513
+ return new ElderUrlFragment(fragment.name, fragment.fragment, fragment.color);
35514
+ }
35515
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: WebappDomainSwitcherDirective, deps: [{ token: ElderUrlFragmentSwitcherComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
35516
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.3", type: WebappDomainSwitcherDirective, isStandalone: true, selector: "elder-domain-switcher, [elder-domain-switcher], [elderDomainSwitcher]", ngImport: i0 }); }
35517
+ }
35518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: WebappDomainSwitcherDirective, decorators: [{
35519
+ type: Directive,
35520
+ args: [{
35521
+ selector: 'elder-domain-switcher, [elder-domain-switcher], [elderDomainSwitcher]',
35522
+ standalone: true,
35523
+ }]
35524
+ }], ctorParameters: () => [{ type: ElderUrlFragmentSwitcherComponent }] });
35525
+
35529
35526
  class SubBar {
35530
35527
  constructor(widthPercent, color) {
35531
35528
  this.widthPercent = widthPercent;
@@ -38497,5 +38494,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
38497
38494
  * Generated bundle index. Do not edit.
38498
38495
  */
38499
38496
 
38500
- export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, 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, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, 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, 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, EnvDomainFragmentSpec, EnvDomainSpec, EnvDomainSpecService, EnvDomainSwitcherDirective, EnvUrlFragmentSwitcherConfig, ErrorUtil, ExceptionDetailCtx, 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, 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, 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, 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 };
38497
+ export { ActivationEventSource, ActivationModel, Arrays, AuditedEntity, AutoStartSpec, Batcher, BlobUrl, BytesFormat, BytesPerSecondFormat, BytesPipe, CardDropEvent, CardOrganizerData, CardStack, CollectionUtil, 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, DataContextSelectionDirective, DataContextSimple, DataContextSnapshot, DataContextSourceEventBinding, DataContextStateIndicatorComponent, DataContextStatus, DataSourceAdapter, DataSourceBase, DataSourceChangeEvent, DataSourceEntityPatch, DataSourceProcessor, DataTransferFactory, DataTransferProgress, DataTransferProgressAggregate, DataTransferState, DataTransferStatus, DataViewActivationController, DataViewDndControllerService, DataViewDndGroupControllerService, DataViewDndModelUtil, DataViewDragEnteredEvent, DataViewDragExitedEvent, DataViewIframeAdapterDirective, DataViewIframeComponent, DataViewItemDropEvent, DataViewMessage, DataViewMessageTypeValues, DataViewOptionsProviderBinding, DataViewSelection, DataViewSelectionInit, DateUtil, DelegateContinuableDataSource, DelegateDataSource, DelegateListDataSource, DelegatePagedDataSource, Dimensions, DomUtil, DrawerOutletBinding, DurationBucket, DurationFormat, DurationFormatUtil, 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, 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, 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, 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, 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 };
38501
38498
  //# sourceMappingURL=elderbyte-ngx-starter.mjs.map