@elderbyte/ngx-starter 20.0.1 → 20.1.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,6 +34857,170 @@ 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
|
+
|
|
34860
35024
|
class ElderToastModule {
|
|
34861
35025
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderToastModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
34862
35026
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.3", ngImport: i0, type: ElderToastModule, imports: [CommonModule,
|
|
@@ -35310,147 +35474,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
|
|
|
35310
35474
|
}]
|
|
35311
35475
|
}] });
|
|
35312
35476
|
|
|
35313
|
-
class ElderUrlFragment {
|
|
35314
|
-
constructor(name, fragment, color = 'white', backgroundColor = 'transparent') {
|
|
35315
|
-
this.name = name;
|
|
35316
|
-
this.fragment = fragment;
|
|
35317
|
-
this.color = color;
|
|
35318
|
-
this.backgroundColor = backgroundColor;
|
|
35319
|
-
}
|
|
35320
|
-
}
|
|
35321
|
-
|
|
35322
|
-
class ElderButtonGroupComponent {
|
|
35323
|
-
constructor() { }
|
|
35324
|
-
ngOnInit() { }
|
|
35325
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
35326
|
-
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 }); }
|
|
35327
|
-
}
|
|
35328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupComponent, decorators: [{
|
|
35329
|
-
type: Component,
|
|
35330
|
-
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"] }]
|
|
35331
|
-
}], ctorParameters: () => [] });
|
|
35332
|
-
|
|
35333
|
-
class ElderUrlFragmentSwitcherCtx {
|
|
35334
|
-
constructor(availableFragments, activeFragment) {
|
|
35335
|
-
this.availableFragments = availableFragments;
|
|
35336
|
-
this.activeFragment = activeFragment;
|
|
35337
|
-
}
|
|
35338
|
-
}
|
|
35339
|
-
class ElderUrlFragmentSwitcherComponent {
|
|
35340
|
-
/***************************************************************************
|
|
35341
|
-
* *
|
|
35342
|
-
* Constructor *
|
|
35343
|
-
* *
|
|
35344
|
-
**************************************************************************/
|
|
35345
|
-
constructor() {
|
|
35346
|
-
/***************************************************************************
|
|
35347
|
-
* *
|
|
35348
|
-
* Fields *
|
|
35349
|
-
* *
|
|
35350
|
-
**************************************************************************/
|
|
35351
|
-
/**
|
|
35352
|
-
* Disables the component
|
|
35353
|
-
*/
|
|
35354
|
-
this.disable = true;
|
|
35355
|
-
/**
|
|
35356
|
-
* Regex which matches the part of the url which will get replaced
|
|
35357
|
-
*/
|
|
35358
|
-
this.urlRegex = new RegExp('[.](\\w+)');
|
|
35359
|
-
/**
|
|
35360
|
-
* Index of the regex group which will be replaced
|
|
35361
|
-
*/
|
|
35362
|
-
this.regexArrayIndex = 0;
|
|
35363
|
-
/**
|
|
35364
|
-
* Window which will open the created url
|
|
35365
|
-
*/
|
|
35366
|
-
this.windowOpenIn = '_self';
|
|
35367
|
-
this._activeUrlFragment$ = new BehaviorSubject(new ElderUrlFragment('No match', ''));
|
|
35368
|
-
this._urlFragments$ = new BehaviorSubject([]);
|
|
35369
|
-
this.logger = LoggerFactory.getLogger('ElderUrlFragmentSwitcherComponent');
|
|
35370
|
-
this.fragmentContext$ = combineLatest([this.urlFragments$, this._activeUrlFragment$]).pipe(takeUntilDestroyed(), map(([fragments, activeFragment]) => new ElderUrlFragmentSwitcherCtx(fragments, activeFragment)));
|
|
35371
|
-
}
|
|
35372
|
-
/***************************************************************************
|
|
35373
|
-
* *
|
|
35374
|
-
* Life Cycle *
|
|
35375
|
-
* *
|
|
35376
|
-
**************************************************************************/
|
|
35377
|
-
ngOnInit() {
|
|
35378
|
-
if (!this.disable) {
|
|
35379
|
-
this.updateActiveFragment();
|
|
35380
|
-
}
|
|
35381
|
-
}
|
|
35382
|
-
/***************************************************************************
|
|
35383
|
-
* *
|
|
35384
|
-
* Properties *
|
|
35385
|
-
* *
|
|
35386
|
-
**************************************************************************/
|
|
35387
|
-
/**
|
|
35388
|
-
* List of url fragments which can replace a part of the window location
|
|
35389
|
-
*/
|
|
35390
|
-
set urlFragments(urlFragments) {
|
|
35391
|
-
this._urlFragments$.next(urlFragments);
|
|
35392
|
-
this.updateActiveFragment();
|
|
35393
|
-
}
|
|
35394
|
-
get urlFragments() {
|
|
35395
|
-
return this._urlFragments$.getValue();
|
|
35396
|
-
}
|
|
35397
|
-
get urlFragments$() {
|
|
35398
|
-
return this._urlFragments$.asObservable();
|
|
35399
|
-
}
|
|
35400
|
-
/***************************************************************************
|
|
35401
|
-
* *
|
|
35402
|
-
* Public API *
|
|
35403
|
-
* *
|
|
35404
|
-
**************************************************************************/
|
|
35405
|
-
setActiveUrlFragment(urlFragment) {
|
|
35406
|
-
this.logger.debug(urlFragment);
|
|
35407
|
-
window.open(window.location.href.replace(this.urlRegex.exec(window.location.href)[this.regexArrayIndex], urlFragment), this.windowOpenIn);
|
|
35408
|
-
}
|
|
35409
|
-
/***************************************************************************
|
|
35410
|
-
* *
|
|
35411
|
-
* Private Methods *
|
|
35412
|
-
* *
|
|
35413
|
-
**************************************************************************/
|
|
35414
|
-
updateActiveFragment() {
|
|
35415
|
-
const urlFragment = this.urlFragments.find((c) => {
|
|
35416
|
-
try {
|
|
35417
|
-
return c.fragment === this.urlRegex.exec(window.location.href)[this.regexArrayIndex];
|
|
35418
|
-
}
|
|
35419
|
-
catch (e) {
|
|
35420
|
-
return false;
|
|
35421
|
-
}
|
|
35422
|
-
});
|
|
35423
|
-
if (urlFragment) {
|
|
35424
|
-
this._activeUrlFragment$.next(urlFragment);
|
|
35425
|
-
}
|
|
35426
|
-
}
|
|
35427
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
35428
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.3", type: ElderUrlFragmentSwitcherComponent, isStandalone: true, selector: "elder-url-fragment-switcher", inputs: { disable: "disable", urlRegex: "urlRegex", regexArrayIndex: "regexArrayIndex", windowOpenIn: "windowOpenIn", urlFragments: "urlFragments" }, ngImport: i0, template: "@if (fragmentContext$ | async; as ctx) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': ctx.activeFragment?.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable) {\n <span class=\"caption\">{{ ctx.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': ctx.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 ctx.availableFragments; track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"setActiveUrlFragment(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"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
35429
|
-
}
|
|
35430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderUrlFragmentSwitcherComponent, decorators: [{
|
|
35431
|
-
type: Component,
|
|
35432
|
-
args: [{ selector: 'elder-url-fragment-switcher', changeDetection: ChangeDetectionStrategy.OnPush, imports: [
|
|
35433
|
-
ElderButtonGroupComponent,
|
|
35434
|
-
MatButton,
|
|
35435
|
-
NgStyle,
|
|
35436
|
-
MatMenuTrigger,
|
|
35437
|
-
MatIcon,
|
|
35438
|
-
MatMenu,
|
|
35439
|
-
MatMenuItem,
|
|
35440
|
-
AsyncPipe,
|
|
35441
|
-
], template: "@if (fragmentContext$ | async; as ctx) {\n <elder-button-group>\n <button\n class=\"status-button\"\n mat-stroked-button\n type=\"button\"\n disabled\n [ngStyle]=\"{ 'background-color': ctx.activeFragment?.color }\"\n >\n <div class=\"layout-col\">\n @if (!disable) {\n <span class=\"caption\">{{ ctx.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': ctx.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 ctx.availableFragments; track urlFragment) {\n <button mat-menu-item type=\"button\" (click)=\"setActiveUrlFragment(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"] }]
|
|
35442
|
-
}], ctorParameters: () => [], propDecorators: { disable: [{
|
|
35443
|
-
type: Input
|
|
35444
|
-
}], urlRegex: [{
|
|
35445
|
-
type: Input
|
|
35446
|
-
}], regexArrayIndex: [{
|
|
35447
|
-
type: Input
|
|
35448
|
-
}], windowOpenIn: [{
|
|
35449
|
-
type: Input
|
|
35450
|
-
}], urlFragments: [{
|
|
35451
|
-
type: Input
|
|
35452
|
-
}] } });
|
|
35453
|
-
|
|
35454
35477
|
class ElderButtonGroupModule {
|
|
35455
35478
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.3", ngImport: i0, type: ElderButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
35456
35479
|
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] }); }
|
|
@@ -38474,5 +38497,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.3", ngImpor
|
|
|
38474
38497
|
* Generated bundle index. Do not edit.
|
|
38475
38498
|
*/
|
|
38476
38499
|
|
|
38477
|
-
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, 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 };
|
|
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 };
|
|
38478
38501
|
//# sourceMappingURL=elderbyte-ngx-starter.mjs.map
|