diff --git a/angular.json b/angular.json index 964536e..aade68f 100644 --- a/angular.json +++ b/angular.json @@ -88,6 +88,7 @@ "outputHashing": "all" }, "gulaschmusi": { + "outputHashing": "all", "budgets": [ { "type": "initial", @@ -100,23 +101,34 @@ "maximumError": "10kb" } ], - "index": { - "input": "src/index.gulaschmusi.html", + "input": "src/configurations/gmr/index.html", "output": "index.html" }, - "fileReplacements": [ { "replace": "src/environments/environment.ts", "with": "src/environments/environment.gulaschmusi.ts" + } + ], + "assets": [ + "src/assets", + { + "input": "src/configurations/gmr", + "output": "/", + "glob": "*.json" }, { - "replace": "src/manifest.json", - "with": "src/manifest.gulaschmusi.json" + "input": "src/configurations/gmr", + "output": "/", + "glob": "*.ico" + }, + { + "input": "src/configurations/gmr/assets", + "output": "assets/", + "glob": "*.*" } - ], - "outputHashing": "all" + ] }, "development": { "buildOptimizer": false, diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 5c16ed7..baf4a59 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,7 +1,7 @@ import { Component } from "@angular/core"; import { Router } from "@angular/router"; import { PrimeNGConfig } from "primeng/api"; -import { MkjPrimeTranslation } from "src/app/configurations/primeTranslation"; +import { MkjPrimeTranslation } from "src/configurations/primeTranslation"; import { AuthStateService } from "./services/authentication/auth-state.service"; import { TokenService } from "./services/authentication/token.service"; import { UserService } from "./services/authentication/user.service"; diff --git a/src/app/app.footer.component.ts b/src/app/app.footer.component.ts index 293d970..28c34ee 100644 --- a/src/app/app.footer.component.ts +++ b/src/app/app.footer.component.ts @@ -1,7 +1,7 @@ import { Component } from "@angular/core"; import { ActivatedRoute, Router } from "@angular/router"; import { AppMainComponent } from "./app.main.component"; -import { MkjAppVersion } from "./configurations/changeLogVersion"; +import { MkjAppVersion } from "../configurations/changeLogVersion"; @Component({ selector: "app-footer", diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 3a4ec8d..58acabd 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -179,6 +179,8 @@ import { TerminTeilnahmeSelectorComponent } from "./utilities/mkj-termin-teilnah import { MkjTileComponent } from "./utilities/mkj-tile/mkj-tile.component"; import { MkjToolbarComponent } from "./utilities/mkj-toolbar/mkj-toolbar.component"; import { GlobaleEinstellungenComponent } from './components/einstellungen/globale-einstellungen/globale-einstellungen.component'; +import { MkjTextInputComponent } from './utilities/form-input-components/mkj-text-input/mkj-text-input.component'; +import { UiNamingConfigComponent } from './components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component'; // FullCalendarModule.registerPlugins([ // dayGridPlugin, @@ -359,6 +361,8 @@ registerLocaleData(localeDe); MkjLinkInputComponent, MkjChangeLogsComponent, GlobaleEinstellungenComponent, + MkjTextInputComponent, + UiNamingConfigComponent, ], providers: [ mkjAppInitializer(), diff --git a/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.html b/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.html index a8f78ee..e7f14b2 100644 --- a/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.html +++ b/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.html @@ -1,15 +1,5 @@ -
-
- - -
-
- - + + + + + diff --git a/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.ts b/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.ts index f1123af..3a46a34 100644 --- a/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.ts +++ b/src/app/components/einstellungen/globale-einstellungen/globale-einstellungen.component.ts @@ -1,7 +1,5 @@ import { Component } from "@angular/core"; -import * as _ from "lodash"; -import { ConfigApiService } from "src/app/services/api/config-api.service"; -import { AppNamingService } from "src/app/services/config.service"; +import { MkjToolbarService } from "src/app/utilities/mkj-toolbar/mkj-toolbar.service"; @Component({ selector: "app-globale-einstellungen", @@ -9,15 +7,7 @@ import { AppNamingService } from "src/app/services/config.service"; styleUrls: ["./globale-einstellungen.component.scss"], }) export class GlobaleEinstellungenComponent { - public readonly appNaming = _.cloneDeep(this.namingService.appNaming); - public readonly editNaming = _.cloneDeep(this.namingService.appNaming); - - constructor( - private namingService: AppNamingService, - private configService: ConfigApiService - ) {} - - public saveNaming(): void { - this.configService.setUiNamingConfig(this.editNaming).subscribe(); + constructor(toolBar: MkjToolbarService) { + toolBar.header = "Globale Einstellungen"; } } diff --git a/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.html b/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.html new file mode 100644 index 0000000..7de59db --- /dev/null +++ b/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.html @@ -0,0 +1,13 @@ +
+ +
+ +
+
+
+ + diff --git a/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.scss b/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.ts b/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.ts new file mode 100644 index 0000000..1bdd9c2 --- /dev/null +++ b/src/app/components/einstellungen/globale-einstellungen/ui-naming-config/ui-naming-config.component.ts @@ -0,0 +1,28 @@ +import { Component } from "@angular/core"; +import * as _ from "lodash"; +import { ConfigApiService } from "src/app/services/api/config-api.service"; +import { AppNamingService } from "src/app/services/config.service"; +import { InfoService } from "src/app/services/info.service"; + +@Component({ + selector: "app-ui-naming-config", + templateUrl: "./ui-naming-config.component.html", + styleUrls: ["./ui-naming-config.component.scss"], +}) +export class UiNamingConfigComponent { + public readonly appNaming = _.cloneDeep(this.namingService.appNaming); + public readonly editNaming = _.cloneDeep(this.namingService.appNaming); + + constructor( + private namingService: AppNamingService, + private configService: ConfigApiService, + private infoService: InfoService + ) {} + + public saveNaming(): void { + this.configService.setUiNamingConfig(this.editNaming).subscribe({ + next: (_) => this.infoService.success("Einstellungen gespeichert."), + error: (err) => this.infoService.error(err), + }); + } +} diff --git a/src/app/pages/change-logs/change-logs.component.ts b/src/app/pages/change-logs/change-logs.component.ts index e2dae3f..09dd381 100644 --- a/src/app/pages/change-logs/change-logs.component.ts +++ b/src/app/pages/change-logs/change-logs.component.ts @@ -2,7 +2,7 @@ import { Component } from "@angular/core"; import { MkjAppChangeLog, MkjAppVersion, -} from "src/app/configurations/changeLogVersion"; +} from "src/configurations/changeLogVersion"; import { MkjToolbarService } from "src/app/utilities/mkj-toolbar/mkj-toolbar.service"; @Component({ diff --git a/src/app/utilities/form-input-components/abstract-control-accessor.ts b/src/app/utilities/form-input-components/abstract-control-accessor.ts new file mode 100644 index 0000000..0296db1 --- /dev/null +++ b/src/app/utilities/form-input-components/abstract-control-accessor.ts @@ -0,0 +1,82 @@ +import { + Component, + EventEmitter, + Injector, + Input, + Output, +} from "@angular/core"; +import { ControlValueAccessor, FormControl, NgControl } from "@angular/forms"; +import { BehaviorSubject, Observable, distinctUntilChanged } from "rxjs"; + +@Component({ + selector: "abstract-control-accessor", + template: "", +}) +export abstract class AbstractControlAccessor + implements ControlValueAccessor +{ + private _value = new BehaviorSubject(null); + private _disabled = new BehaviorSubject(false); + + private _registerOnChange: (_: T) => void; + private _registerOnTouched: () => void; + + @Input() + public set value(value: T) { + this._value.next(value); + } + + public get disabled(): boolean { + return this._disabled.value; + } + + @Input() + public set disabled(isDisabled: boolean) { + this._disabled.next(isDisabled); + } + + @Input() + public label: string; + + @Output() + public valueChange = new EventEmitter(); + + public get value$(): Observable { + return this._value; + } + + public get disabled$(): Observable { + return this._disabled.pipe(distinctUntilChanged()); + } + + public formControl: FormControl; + + constructor(private inj: Injector) {} + + public ngAfterViewInit() { + this.formControl = this.inj.get(NgControl, null) + ?.control as FormControl; + } + + public change(value: T) { + this._registerOnChange?.(value); + this.valueChange.emit(value); + } + + public touch() { + this._registerOnTouched?.(); + } + + writeValue(obj: T): void { + this._value.next(obj); + } + registerOnChange(fn: any): void { + this._registerOnChange = fn; + } + registerOnTouched(fn: any): void { + this._registerOnTouched = fn; + } + setDisabledState(isDisabled: boolean): void { + this._disabled.next(isDisabled); + } +} diff --git a/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.html b/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.html new file mode 100644 index 0000000..9837b1e --- /dev/null +++ b/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.html @@ -0,0 +1,13 @@ + + + + diff --git a/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.scss b/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.ts b/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.ts new file mode 100644 index 0000000..fb670b2 --- /dev/null +++ b/src/app/utilities/form-input-components/mkj-text-input/mkj-text-input.component.ts @@ -0,0 +1,15 @@ +import { Component, Injector } from "@angular/core"; +import { controlValueAccessor } from "src/app/providers/control-value-accessor"; +import { AbstractControlAccessor } from "../abstract-control-accessor"; + +@Component({ + selector: "mkj-text-input", + templateUrl: "./mkj-text-input.component.html", + styleUrls: ["./mkj-text-input.component.scss"], + providers: [controlValueAccessor(MkjTextInputComponent)], +}) +export class MkjTextInputComponent extends AbstractControlAccessor { + constructor(inj: Injector) { + super(inj); + } +} diff --git a/src/assets/pages/landing.html b/src/assets/pages/landing.html deleted file mode 100644 index ca13ef2..0000000 --- a/src/assets/pages/landing.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - - - - - - PrimeNG - BARCELONA - - - - - - - - - -
- - -
-
-

FEATURES

- -
-
- -

RESPONSIVE LAYOUT

-

- Don’t forget to change this dummy text with your - favorite IDE for this icon box. -

-
-
- -

MODERN DESIGN

-

- Don’t forget to change this dummy text with your - favorite IDE for this icon box. -

-
-
- -

CLEAN CODE

-

- Don’t forget to change this dummy text with your - favorite IDE for this icon box. -

-
-
- -

WELL DOCUMENTED

-

- Don’t forget to change this dummy text with your - favorite IDE for this icon box. -

-
-
-
-
- -
-
-
-
- Ready to try Barcelona Live - Barcelona is a material template for - PrimeFaces -
- -
- -
-
-
-
- -
-
-

PrimeNG Barcelona

-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. - Curabitur velit neque, aliquam sed dolor eu, sagittis - rutrum erat. Donec eu risus vitae tellus rhoncus - iaculis. -

- -
-
- -
-
-

PRICING

- -
-
-
-
-

PROFESSIONAL

-

For professionals

-
-
-

$10

-

PER YEAR

-
-
-
- -
-
-
- - Responsive -
-
- - 7/24 Support -
-
- - Push Messages -
-
- - Free Shipping -
-
-
- - -
- -
-
-
-
-

PROFESSIONAL

-

For professionals

-
-
-

$10

-

PER YEAR

-
-
-
- -
-
-
- - Responsive -
-
- - 7/24 Support -
-
- - Push Messages -
-
- - Free Shipping -
-
- - Unlimited Bandwidth -
-
- - Unlimited Storage -
-
-
- - -
-
-
- -
-
-

VIDEO

-
- -
-
-
- - -
- - - diff --git a/src/assets/pages/primeflex.css b/src/assets/pages/primeflex.css deleted file mode 100644 index 8d0872e..0000000 --- a/src/assets/pages/primeflex.css +++ /dev/null @@ -1,798 +0,0 @@ -.grid { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -0.5em; - margin-left: -0.5em; - margin-top: -0.5em; -} - -.grid-nogutter { - margin-right: 0; - margin-left: 0; - margin-top: 0; -} - -.grid-nogutter > .p-col, -.grid-nogutter > [class*="col-"] { - padding: 0; -} - -.p-dir-rev { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; -} - -.p-dir-col { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -.p-dir-col-rev { - -webkit-box-orient: vertical; - -webkit-box-direction: reverse; - -ms-flex-direction: column-reverse; - flex-direction: column-reverse; -} - -.p-justify-start { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - -.p-justify-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -.p-justify-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - -.p-justify-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - -.p-justify-around { - -ms-flex-pack: distribute; - justify-content: space-around; -} - -.p-justify-even { - -webkit-box-pack: space-evenly; - -ms-flex-pack: space-evenly; - justify-content: space-evenly; -} - -.p-align-start { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; -} - -.p-align-end { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; -} - -.p-align-center { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.p-align-baseline { - -webkit-box-align: baseline; - -ms-flex-align: baseline; - align-items: baseline; -} - -.p-align-stretch { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; -} - -.p-col { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-preferred-size: 0; - flex-basis: 0; - padding: 0.5em; -} - -.col-fixed { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding: 0.5em; -} - -.col-align-start { - -ms-flex-item-align: start; - align-self: flex-start; -} - -.col-align-end { - -ms-flex-item-align: end; - align-self: flex-end; -} - -.col-align-center { - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; -} - -.col-align-baseline { - -ms-flex-item-align: baseline; - align-self: baseline; -} - -.col-align-stretch { - -ms-flex-item-align: stretch; - -ms-grid-row-align: stretch; - align-self: stretch; -} - -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - padding: 0.5em; -} - -.col-1 { - width: 8.3333%; -} - -.col-2 { - width: 16.6667%; -} - -.col-3 { - width: 25%; -} - -.col-4 { - width: 33.3333%; -} - -.col-5 { - width: 41.6667%; -} - -.col-6 { - width: 50%; -} - -.col-7 { - width: 58.3333%; -} - -.col-8 { - width: 66.6667%; -} - -.col-9 { - width: 75%; -} - -.col-10 { - width: 83.3333%; -} - -.col-11 { - width: 91.6667%; -} - -.col-12 { - width: 100%; -} - -.p-offset-12 { - margin-left: 100%; -} - -.p-offset-11 { - margin-left: 91.66666667%; -} - -.p-offset-10 { - margin-left: 83.33333333%; -} - -.p-offset-9 { - margin-left: 75%; -} - -.p-offset-8 { - margin-left: 66.66666667%; -} - -.p-offset-7 { - margin-left: 58.33333333%; -} - -.p-offset-6 { - margin-left: 50%; -} - -.p-offset-5 { - margin-left: 41.66666667%; -} - -.p-offset-4 { - margin-left: 33.33333333%; -} - -.p-offset-3 { - margin-left: 25%; -} - -.p-offset-2 { - margin-left: 16.66666667%; -} - -.p-offset-1 { - margin-left: 8.33333333%; -} - -.p-offset-0 { - margin-left: 0%; -} - -.sm:col-1, -.sm:col-2, -.sm:col-3, -.sm:col-4, -.sm:col-5, -.sm:col-6, -.sm:col-7, -.sm:col-8, -.sm:col-9, -.sm:col-10, -.sm:col-11, -.sm:col-12, -.md:col-1, -.md:col-2, -.md:col-3, -.md:col-4, -.md:col-5, -.md:col-6, -.md:col-7, -.md:col-8, -.md:col-9, -.md:col-10, -.md:col-11, -.md:col-12, -.lg:col-1, -.lg:col-2, -.lg:col-3, -.lg:col-4, -.lg:col-5, -.lg:col-6, -.lg:col-7, -.lg:col-8, -.lg:col-9, -.lg:col-10, -.lg:col-11, -.lg:col-12, -.xl:col-1, -.xl:col-2, -.xl:col-3, -.xl:col-4, -.xl:col-5, -.xl:col-6, -.xl:col-7, -.xl:col-8, -.xl:col-9, -.xl:col-10, -.xl:col-11, -.xl:col-12 { - padding: 0.5em; -} - -.col-nogutter { - padding: 0; -} - -@media screen and (min-width: 576px) { - .sm:col-1, - .sm:col-2, - .sm:col-3, - .sm:col-4, - .sm:col-5, - .sm:col-6, - .sm:col-7, - .sm:col-8, - .sm:col-9, - .sm:col-10, - .sm:col-11, - .sm:col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - } - - .sm:col-1 { - width: 8.3333%; - } - - .sm:col-2 { - width: 16.6667%; - } - - .sm:col-3 { - width: 25%; - } - - .sm:col-4 { - width: 33.3333%; - } - - .sm:col-5 { - width: 41.6667%; - } - - .sm:col-6 { - width: 50%; - } - - .sm:col-7 { - width: 58.3333%; - } - - .sm:col-8 { - width: 66.6667%; - } - - .sm:col-9 { - width: 75%; - } - - .sm:col-10 { - width: 83.3333%; - } - - .sm:col-11 { - width: 91.6667%; - } - - .sm:col-12 { - width: 100%; - } - - .sm:col-offset-12 { - margin-left: 100%; - } - - .sm:col-offset-11 { - margin-left: 91.66666667%; - } - - .sm:col-offset-10 { - margin-left: 83.33333333%; - } - - .sm:col-offset-9 { - margin-left: 75%; - } - - .sm:col-offset-8 { - margin-left: 66.66666667%; - } - - .sm:col-offset-7 { - margin-left: 58.33333333%; - } - - .sm:col-offset-6 { - margin-left: 50%; - } - - .sm:col-offset-5 { - margin-left: 41.66666667%; - } - - .sm:col-offset-4 { - margin-left: 33.33333333%; - } - - .sm:col-offset-3 { - margin-left: 25%; - } - - .sm:col-offset-2 { - margin-left: 16.66666667%; - } - - .sm:col-offset-1 { - margin-left: 8.33333333%; - } - - .sm:col-offset-0 { - margin-left: 0%; - } -} -@media screen and (min-width: 768px) { - .md:col-1, - .md:col-2, - .md:col-3, - .md:col-4, - .md:col-5, - .md:col-6, - .md:col-7, - .md:col-8, - .md:col-9, - .md:col-10, - .md:col-11, - .md:col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - } - - .md:col-1 { - width: 8.3333%; - } - - .md:col-2 { - width: 16.6667%; - } - - .md:col-3 { - width: 25%; - } - - .md:col-4 { - width: 33.3333%; - } - - .md:col-5 { - width: 41.6667%; - } - - .md:col-6 { - width: 50%; - } - - .md:col-7 { - width: 58.3333%; - } - - .md:col-8 { - width: 66.6667%; - } - - .md:col-9 { - width: 75%; - } - - .md:col-10 { - width: 83.3333%; - } - - .md:col-11 { - width: 91.6667%; - } - - .md:col-12 { - width: 100%; - } - - .md:col-offset-12 { - margin-left: 100%; - } - - .md:col-offset-11 { - margin-left: 91.66666667%; - } - - .md:col-offset-10 { - margin-left: 83.33333333%; - } - - .md:col-offset-9 { - margin-left: 75%; - } - - .md:col-offset-8 { - margin-left: 66.66666667%; - } - - .md:col-offset-7 { - margin-left: 58.33333333%; - } - - .md:col-offset-6 { - margin-left: 50%; - } - - .md:col-offset-5 { - margin-left: 41.66666667%; - } - - .md:col-offset-4 { - margin-left: 33.33333333%; - } - - .md:col-offset-3 { - margin-left: 25%; - } - - .md:col-offset-2 { - margin-left: 16.66666667%; - } - - .md:col-offset-1 { - margin-left: 8.33333333%; - } - - .md:col-offset-0 { - margin-left: 0%; - } -} -@media screen and (min-width: 992px) { - .lg:col-1, - .lg:col-2, - .lg:col-3, - .lg:col-4, - .lg:col-5, - .lg:col-6, - .lg:col-7, - .lg:col-8, - .lg:col-9, - .lg:col-10, - .lg:col-11, - .lg:col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - } - - .lg:col-1 { - width: 8.3333%; - } - - .lg:col-2 { - width: 16.6667%; - } - - .lg:col-3 { - width: 25%; - } - - .lg:col-4 { - width: 33.3333%; - } - - .lg:col-5 { - width: 41.6667%; - } - - .lg:col-6 { - width: 50%; - } - - .lg:col-7 { - width: 58.3333%; - } - - .lg:col-8 { - width: 66.6667%; - } - - .lg:col-9 { - width: 75%; - } - - .lg:col-10 { - width: 83.3333%; - } - - .lg:col-11 { - width: 91.6667%; - } - - .lg:col-12 { - width: 100%; - } - - .lg:col-offset-12 { - margin-left: 100%; - } - - .lg:col-offset-11 { - margin-left: 91.66666667%; - } - - .lg:col-offset-10 { - margin-left: 83.33333333%; - } - - .lg:col-offset-9 { - margin-left: 75%; - } - - .lg:col-offset-8 { - margin-left: 66.66666667%; - } - - .lg:col-offset-7 { - margin-left: 58.33333333%; - } - - .lg:col-offset-6 { - margin-left: 50%; - } - - .lg:col-offset-5 { - margin-left: 41.66666667%; - } - - .lg:col-offset-4 { - margin-left: 33.33333333%; - } - - .lg:col-offset-3 { - margin-left: 25%; - } - - .lg:col-offset-2 { - margin-left: 16.66666667%; - } - - .lg:col-offset-1 { - margin-left: 8.33333333%; - } - - .lg:col-offset-0 { - margin-left: 0%; - } -} -@media screen and (min-width: 1200px) { - .xl:col-1, - .xl:col-2, - .xl:col-3, - .xl:col-4, - .xl:col-5, - .xl:col-6, - .xl:col-7, - .xl:col-8, - .xl:col-9, - .xl:col-10, - .xl:col-11, - .xl:col-12 { - -webkit-box-flex: 0; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - } - - .xl:col-1 { - width: 8.3333%; - } - - .xl:col-2 { - width: 16.6667%; - } - - .xl:col-3 { - width: 25%; - } - - .xl:col-4 { - width: 33.3333%; - } - - .xl:col-5 { - width: 41.6667%; - } - - .xl:col-6 { - width: 50%; - } - - .xl:col-7 { - width: 58.3333%; - } - - .xl:col-8 { - width: 66.6667%; - } - - .xl:col-9 { - width: 75%; - } - - .xl:col-10 { - width: 83.3333%; - } - - .xl:col-11 { - width: 91.6667%; - } - - .xl:col-12 { - width: 100%; - } - - .xl:col-offset-12 { - margin-left: 100%; - } - - .xl:col-offset-11 { - margin-left: 91.66666667%; - } - - .xl:col-offset-10 { - margin-left: 83.33333333%; - } - - .xl:col-offset-9 { - margin-left: 75%; - } - - .xl:col-offset-8 { - margin-left: 66.66666667%; - } - - .xl:col-offset-7 { - margin-left: 58.33333333%; - } - - .xl:col-offset-6 { - margin-left: 50%; - } - - .xl:col-offset-5 { - margin-left: 41.66666667%; - } - - .xl:col-offset-4 { - margin-left: 33.33333333%; - } - - .xl:col-offset-3 { - margin-left: 25%; - } - - .xl:col-offset-2 { - margin-left: 16.66666667%; - } - - .xl:col-offset-1 { - margin-left: 8.33333333%; - } - - .xl:col-offset-0 { - margin-left: 0%; - } -} - -/*# sourceMappingURL=primeflex.css.map */ diff --git a/src/assets/pages/primeicons.css b/src/assets/pages/primeicons.css deleted file mode 100644 index 81aee68..0000000 --- a/src/assets/pages/primeicons.css +++ /dev/null @@ -1,790 +0,0 @@ -@font-face { - font-family: 'primeicons'; - font-display: auto; - src: url('./fonts/primeicons.eot'); - src: url('./fonts/primeicons.eot?#iefix') format('embedded-opentype'), url('./fonts/primeicons.ttf') format('truetype'), url('./fonts/primeicons.woff') format('woff'), url('./fonts/primeicons.svg?#primeicons') format('svg'); - font-weight: normal; - font-style: normal; -} - -.pi { - font-family: 'primeicons'; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - display: inline-block; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.pi:before { - --webkit-backface-visibility:hidden; - backface-visibility: hidden; -} - -.pi-fw { - width: 1.28571429em; - text-align: center; -} - -.pi-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -.pi-facebook:before { - content: "\e9b4"; -} - -.pi-github:before { - content: "\e9b5"; -} - -.pi-twitter:before { - content: "\e9b6"; -} - -.pi-step-backward-alt:before { - content: "\e9ac"; -} - -.pi-step-forward-alt:before { - content: "\e9ad"; -} - -.pi-forward:before { - content: "\e9ae"; -} - -.pi-backward:before { - content: "\e9af"; -} - -.pi-fast-backward:before { - content: "\e9b0"; -} - -.pi-fast-forward:before { - content: "\e9b1"; -} - -.pi-pause:before { - content: "\e9b2"; -} - -.pi-play:before { - content: "\e9b3"; -} - -.pi-compass:before { - content: "\e9ab"; -} - -.pi-id-card:before { - content: "\e9aa"; -} - -.pi-ticket:before { - content: "\e9a9"; -} - -.pi-file-o:before { - content: "\e9a8"; -} - -.pi-reply:before { - content: "\e9a7"; -} - -.pi-directions-alt:before { - content: "\e9a5"; -} - -.pi-directions:before { - content: "\e9a6"; -} - -.pi-thumbs-up:before { - content: "\e9a3"; -} - -.pi-thumbs-down:before { - content: "\e9a4"; -} - -.pi-sort-numeric-down-alt:before { - content: "\e996"; -} - -.pi-sort-numeric-up-alt:before { - content: "\e997"; -} - -.pi-sort-alpha-down-alt:before { - content: "\e998"; -} - -.pi-sort-alpha-up-alt:before { - content: "\e999"; -} - -.pi-sort-numeric-down:before { - content: "\e99a"; -} - -.pi-sort-numeric-up:before { - content: "\e99b"; -} - -.pi-sort-alpha-down:before { - content: "\e99c"; -} - -.pi-sort-alpha-up:before { - content: "\e99d"; -} - -.pi-sort-alt:before { - content: "\e99e"; -} - -.pi-sort-amount-up:before { - content: "\e99f"; -} - -.pi-sort-amount-down:before { - content: "\e9a0"; -} - -.pi-sort-amount-down-alt:before { - content: "\e9a1"; -} - -.pi-sort-amount-up-alt:before { - content: "\e9a2"; -} - -.pi-palette:before { - content: "\e995"; -} - -.pi-undo:before { - content: "\e994"; -} - -.pi-desktop:before { - content: "\e993"; -} - -.pi-sliders-v:before { - content: "\e991"; -} - -.pi-sliders-h:before { - content: "\e992"; -} - -.pi-search-plus:before { - content: "\e98f"; -} - -.pi-search-minus:before { - content: "\e990"; -} - -.pi-file-excel:before { - content: "\e98e"; -} - -.pi-file-pdf:before { - content: "\e98d"; -} - -.pi-check-square:before { - content: "\e98c"; -} - -.pi-chart-line:before { - content: "\e98b"; -} - -.pi-user-edit:before { - content: "\e98a"; -} - -.pi-exclamation-circle:before { - content: "\e989"; -} - -.pi-android:before { - content: "\e985"; -} - -.pi-google:before { - content: "\e986"; -} - -.pi-apple:before { - content: "\e987"; -} - -.pi-microsoft:before { - content: "\e988"; -} - -.pi-heart:before { - content: "\e984"; -} - -.pi-mobile:before { - content: "\e982"; -} - -.pi-tablet:before { - content: "\e983"; -} - -.pi-key:before { - content: "\e981"; -} - -.pi-shopping-cart:before { - content: "\e980"; -} - -.pi-comments:before { - content: "\e97e"; -} - -.pi-comment:before { - content: "\e97f"; -} - -.pi-briefcase:before { - content: "\e97d"; -} - -.pi-bell:before { - content: "\e97c"; -} - -.pi-paperclip:before { - content: "\e97b"; -} - -.pi-share-alt:before { - content: "\e97a"; -} - -.pi-envelope:before { - content: "\e979"; -} - -.pi-volume-down:before { - content: "\e976"; -} - -.pi-volume-up:before { - content: "\e977"; -} - -.pi-volume-off:before { - content: "\e978"; -} - -.pi-eject:before { - content: "\e975"; -} - -.pi-money-bill:before { - content: "\e974"; -} - -.pi-images:before { - content: "\e973"; -} - -.pi-image:before { - content: "\e972"; -} - -.pi-sign-in:before { - content: "\e970"; -} - -.pi-sign-out:before { - content: "\e971"; -} - -.pi-wifi:before { - content: "\e96f"; -} - -.pi-sitemap:before { - content: "\e96e"; -} - -.pi-chart-bar:before { - content: "\e96d"; -} - -.pi-camera:before { - content: "\e96c"; -} - -.pi-dollar:before { - content: "\e96b"; -} - -.pi-lock-open:before { - content: "\e96a"; -} - -.pi-table:before { - content: "\e969"; -} - -.pi-map-marker:before { - content: "\e968"; -} - -.pi-list:before { - content: "\e967"; -} - -.pi-eye-slash:before { - content: "\e965"; -} - -.pi-eye:before { - content: "\e966"; -} - -.pi-folder-open:before { - content: "\e964"; -} - -.pi-folder:before { - content: "\e963"; -} - -.pi-video:before { - content: "\e962"; -} - -.pi-inbox:before { - content: "\e961"; -} - -.pi-lock:before { - content: "\e95f"; -} - -.pi-unlock:before { - content: "\e960"; -} - -.pi-tags:before { - content: "\e95d"; -} - -.pi-tag:before { - content: "\e95e"; -} - -.pi-power-off:before { - content: "\e95c"; -} - -.pi-save:before { - content: "\e95b"; -} - -.pi-question-circle:before { - content: "\e959"; -} - -.pi-question:before { - content: "\e95a"; -} - -.pi-copy:before { - content: "\e957"; -} - -.pi-file:before { - content: "\e958"; -} - -.pi-clone:before { - content: "\e955"; -} - -.pi-calendar-times:before { - content: "\e952"; -} - -.pi-calendar-minus:before { - content: "\e953"; -} - -.pi-calendar-plus:before { - content: "\e954"; -} - -.pi-ellipsis-v:before { - content: "\e950"; -} - -.pi-ellipsis-h:before { - content: "\e951"; -} - -.pi-bookmark:before { - content: "\e94e"; -} - -.pi-globe:before { - content: "\e94f"; -} - -.pi-replay:before { - content: "\e94d"; -} - -.pi-filter:before { - content: "\e94c"; -} - -.pi-print:before { - content: "\e94b"; -} - -.pi-align-right:before { - content: "\e946"; -} - -.pi-align-left:before { - content: "\e947"; -} - -.pi-align-center:before { - content: "\e948"; -} - -.pi-align-justify:before { - content: "\e949"; -} - -.pi-cog:before { - content: "\e94a"; -} - -.pi-cloud-download:before { - content: "\e943"; -} - -.pi-cloud-upload:before { - content: "\e944"; -} - -.pi-cloud:before { - content: "\e945"; -} - -.pi-pencil:before { - content: "\e942"; -} - -.pi-users:before { - content: "\e941"; -} - -.pi-clock:before { - content: "\e940"; -} - -.pi-user-minus:before { - content: "\e93e"; -} - -.pi-user-plus:before { - content: "\e93f"; -} - -.pi-trash:before { - content: "\e93d"; -} - -.pi-external-link:before { - content: "\e93c"; -} - -.pi-window-maximize:before { - content: "\e93b"; -} - -.pi-window-minimize:before { - content: "\e93a"; -} - -.pi-refresh:before { - content: "\e938"; -} - -.pi-user:before { - content: "\e939"; -} - -.pi-exclamation-triangle:before { - content: "\e922"; -} - -.pi-calendar:before { - content: "\e927"; -} - -.pi-chevron-circle-left:before { - content: "\e928"; -} - -.pi-chevron-circle-down:before { - content: "\e929"; -} - -.pi-chevron-circle-right:before { - content: "\e92a"; -} - -.pi-chevron-circle-up:before { - content: "\e92b"; -} - -.pi-angle-double-down:before { - content: "\e92c"; -} - -.pi-angle-double-left:before { - content: "\e92d"; -} - -.pi-angle-double-right:before { - content: "\e92e"; -} - -.pi-angle-double-up:before { - content: "\e92f"; -} - -.pi-angle-down:before { - content: "\e930"; -} - -.pi-angle-left:before { - content: "\e931"; -} - -.pi-angle-right:before { - content: "\e932"; -} - -.pi-angle-up:before { - content: "\e933"; -} - -.pi-upload:before { - content: "\e934"; -} - -.pi-download:before { - content: "\e956"; -} - -.pi-ban:before { - content: "\e935"; -} - -.pi-star-o:before { - content: "\e936"; -} - -.pi-star:before { - content: "\e937"; -} - -.pi-chevron-left:before { - content: "\e900"; -} - -.pi-chevron-right:before { - content: "\e901"; -} - -.pi-chevron-down:before { - content: "\e902"; -} - -.pi-chevron-up:before { - content: "\e903"; -} - -.pi-caret-left:before { - content: "\e904"; -} - -.pi-caret-right:before { - content: "\e905"; -} - -.pi-caret-down:before { - content: "\e906"; -} - -.pi-caret-up:before { - content: "\e907"; -} - -.pi-search:before { - content: "\e908"; -} - -.pi-check:before { - content: "\e909"; -} - -.pi-check-circle:before { - content: "\e90a"; -} - -.pi-times:before { - content: "\e90b"; -} - -.pi-times-circle:before { - content: "\e90c"; -} - -.pi-plus:before { - content: "\e90d"; -} - -.pi-plus-circle:before { - content: "\e90e"; -} - -.pi-minus:before { - content: "\e90f"; -} - -.pi-minus-circle:before { - content: "\e910"; -} - -.pi-circle-on:before { - content: "\e911"; -} - -.pi-circle-off:before { - content: "\e912"; -} - -.pi-sort-down:before { - content: "\e913"; -} - -.pi-sort-up:before { - content: "\e914"; -} - -.pi-sort:before { - content: "\e915"; -} - -.pi-step-backward:before { - content: "\e916"; -} - -.pi-step-forward:before { - content: "\e917"; -} - -.pi-th-large:before { - content: "\e918"; -} - -.pi-arrow-down:before { - content: "\e919"; -} - -.pi-arrow-left:before { - content: "\e91a"; -} - -.pi-arrow-right:before { - content: "\e91b"; -} - -.pi-arrow-up:before { - content: "\e91c"; -} - -.pi-bars:before { - content: "\e91d"; -} - -.pi-arrow-circle-down:before { - content: "\e91e"; -} - -.pi-arrow-circle-left:before { - content: "\e91f"; -} - -.pi-arrow-circle-right:before { - content: "\e920"; -} - -.pi-arrow-circle-up:before { - content: "\e921"; -} - -.pi-info:before { - content: "\e923"; -} - -.pi-info-circle:before { - content: "\e924"; -} - -.pi-home:before { - content: "\e925"; -} - -.pi-spinner:before { - content: "\e926"; -} diff --git a/src/assets/pages/primeng.min.css b/src/assets/pages/primeng.min.css deleted file mode 100644 index a43710a..0000000 --- a/src/assets/pages/primeng.min.css +++ /dev/null @@ -1 +0,0 @@ -.p-component,.p-component *{box-sizing:border-box}.p-hidden{display:none}.p-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.p-hidden-accessible input,.p-hidden-accessible select{transform:scale(0)}.p-reset{margin:0;padding:0;border:0;outline:0;text-decoration:none;font-size:100%;list-style:none}.p-disabled,.p-disabled *{cursor:default !important}.p-component-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.p-overflow-hidden{overflow:hidden}.p-unselectable-text{user-select:none}.p-scrollbar-measure{width:100px;height:100px;overflow:scroll;position:absolute;top:-9999px}@-webkit-keyframes p-fadein{0%{opacity:0}100%{opacity:1}}@keyframes p-fadein{0%{opacity:0}100%{opacity:1}}input[type="button"],input[type="submit"],input[type="reset"],input[type="file"]::-webkit-file-upload-button,button{border-radius:0}.p-link{text-align:left;background-color:transparent;margin:0;padding:0;border:0;cursor:pointer;user-select:none}.p-sr-only{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal !important}.p-connected-overlay{opacity:0;transform:scaleY(0.8);transition:transform .12s cubic-bezier(0,0,0.2,1),opacity .12s cubic-bezier(0,0,0.2,1)}.p-connected-overlay-visible{opacity:1;transform:scaleY(1)}.p-connected-overlay-hidden{opacity:0;transform:scaleY(1);transition:opacity .1s linear}.p-toggleable-content.ng-animating{overflow:hidden}.p-badge{display:inline-block;border-radius:50%;text-align:center}.p-tag{display:inline-block;text-align:center;line-height:1.5}.p-tag.p-tag-rounded{border-radius:10rem}.p-overlay-badge{position:relative;display:inline-block}.p-overlay-badge .p-badge{position:absolute;top:0;right:0;transform:translate(1em,-1em);margin:0}.p-button{margin:0;display:inline-flex;cursor:pointer;user-select:none;align-items:center;vertical-align:bottom;text-align:center;overflow:hidden;position:relative}.p-button-label{flex:1 1 auto}.p-button-icon-right{order:1}.p-button:disabled{cursor:default}.p-button-icon-only{justify-content:center}.p-button-icon-only .p-button-label{visibility:hidden;width:0;flex:0 0 auto}.p-button-vertical{flex-direction:column}.p-button-icon-bottom{order:2}.p-buttonset .p-button{margin:0}.p-buttonset .p-button:not(:last-child){border-right:0 none}.p-buttonset .p-button:not(:first-of-type):not(:last-of-type){border-radius:0}.p-buttonset .p-button:first-of-type{border-top-right-radius:0;border-bottom-right-radius:0}.p-buttonset .p-button:last-of-type{border-top-left-radius:0;border-bottom-left-radius:0}.p-buttonset .p-button:focus{position:relative;z-index:1}.p-checkbox{display:inline-flex;cursor:pointer;user-select:none;vertical-align:bottom}.p-checkbox-box{display:flex;justify-content:center;align-items:center}p-checkbox{display:inline-flex;vertical-align:bottom;align-items:center}.p-checkbox-label{line-height:1}.p-colorpicker-panel .p-colorpicker-color{background:transparent url("./images/color.png") no-repeat left top}.p-colorpicker-panel .p-colorpicker-hue{background:transparent url("./images/hue.png") no-repeat left top}.p-inputtext{margin:0}.p-fluid .p-inputtext{width:100%}.p-inputgroup{display:flex;align-items:stretch;width:100%}.p-inputgroup-addon{display:flex;align-items:center;justify-content:center}.p-inputgroup .p-float-label{display:flex;align-items:stretch;width:100%}.p-inputgroup .p-inputtext,.p-fluid .p-inputgroup .p-inputtext{flex:1 1 auto;width:1%}.p-float-label{display:block;position:relative}.p-float-label label{position:absolute;pointer-events:none;top:50%;margin-top:-.5rem;transition-property:all;transition-timing-function:ease;line-height:1}.p-float-label textarea ~ label{top:1rem}.p-float-label input:focus ~ label,.p-float-label input.p-filled ~ label,.p-float-label textarea:focus ~ label,.p-float-label textarea.p-filled ~ label,.p-float-label .p-inputwrapper-focus ~ label,.p-float-label .p-inputwrapper-filled ~ label{top:-.75rem;font-size:12px}.p-float-label .input:-webkit-autofill ~ label{top:-20px;font-size:12px}.p-input-icon-left,.p-input-icon-right{position:relative;display:inline-block}.p-input-icon-left>i,.p-input-icon-right>i{position:absolute;top:50%;margin-top:-.5rem}.p-fluid .p-input-icon-left,.p-fluid .p-input-icon-right{display:block;width:100%}.p-inputtextarea-resizable{overflow:hidden;resize:none}.p-fluid .p-inputtextarea{width:100%}.p-password-meter{background:transparent url("./images/password-meter.png") no-repeat left top;height:10px}.p-password-panel-overlay{position:absolute;display:none}.p-radiobutton{display:inline-flex;cursor:pointer;user-select:none;vertical-align:bottom}.p-radiobutton-box{display:flex;justify-content:center;align-items:center}.p-radiobutton-icon{-webkit-backface-visibility:hidden;backface-visibility:hidden;transform:translateZ(0) scale(.1);border-radius:50%;visibility:hidden}.p-radiobutton-box.p-highlight .p-radiobutton-icon{transform:translateZ(0) scale(1.0,1.0);visibility:visible}p-radiobutton{display:inline-flex;vertical-align:bottom;align-items:center}.p-radiobutton-label{line-height:1}.p-ripple{overflow:hidden;position:relative}.p-ink{display:block;position:absolute;background:rgba(255,255,255,0.5);border-radius:100%;transform:scale(0)}.p-ink-active{animation:ripple .4s linear}.p-ripple-disabled .p-ink{display:none !important}@keyframes ripple{100%{opacity:0;transform:scale(2.5)}}.p-tooltip{position:absolute;display:none;padding:.25em .5rem;max-width:12.5rem}.p-tooltip.p-tooltip-right,.p-tooltip.p-tooltip-left{padding:0 .25rem}.p-tooltip.p-tooltip-top,.p-tooltip.p-tooltip-bottom{padding:.25em 0}.p-tooltip .p-tooltip-text{white-space:pre-line}.p-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.p-tooltip-right .p-tooltip-arrow{top:50%;left:0;margin-top:-.25rem;border-width:.25em .25em .25em 0}.p-tooltip-left .p-tooltip-arrow{top:50%;right:0;margin-top:-.25rem;border-width:.25em 0 .25em .25rem}.p-tooltip.p-tooltip-top{padding:.25em 0}.p-tooltip-top .p-tooltip-arrow{bottom:0;left:50%;margin-left:-.25rem;border-width:.25em .25em 0}.p-tooltip-bottom .p-tooltip-arrow{top:0;left:50%;margin-left:-.25rem;border-width:0 .25em .25rem} \ No newline at end of file diff --git a/src/app/configurations/_CONFIG_MAP.ts b/src/configurations/_CONFIG_MAP.ts similarity index 100% rename from src/app/configurations/_CONFIG_MAP.ts rename to src/configurations/_CONFIG_MAP.ts index 8f9a136..65d579c 100644 --- a/src/app/configurations/_CONFIG_MAP.ts +++ b/src/configurations/_CONFIG_MAP.ts @@ -24,7 +24,7 @@ export const CONFIG_MAP: AppConfig = { publictest: { appTitle: "testAPP", prefix: "mkj", - production: false, + production: true, apiUrl: "https://api-test.mk-jainzen.at/api/", publictest: true, }, @@ -38,7 +38,7 @@ export const CONFIG_MAP: AppConfig = { gmr: { appTitle: "gulaschAPP", prefix: "gmr", - production: true, + production: false, apiUrl: "https://api.gulaschmusi.at/api/", publictest: false, }, diff --git a/src/app/configurations/changeLogVersion.ts b/src/configurations/changeLogVersion.ts similarity index 100% rename from src/app/configurations/changeLogVersion.ts rename to src/configurations/changeLogVersion.ts diff --git a/src/configurations/gmr/assets/test.html b/src/configurations/gmr/assets/test.html new file mode 100644 index 0000000..e69de29 diff --git a/src/configurations/gmr/favicon.ico b/src/configurations/gmr/favicon.ico new file mode 100644 index 0000000..790f6cd Binary files /dev/null and b/src/configurations/gmr/favicon.ico differ diff --git a/src/index.gulaschmusi.html b/src/configurations/gmr/index.html similarity index 100% rename from src/index.gulaschmusi.html rename to src/configurations/gmr/index.html diff --git a/src/manifest.gulaschmusi.json b/src/configurations/gmr/manifest.json similarity index 100% rename from src/manifest.gulaschmusi.json rename to src/configurations/gmr/manifest.json diff --git a/src/app/configurations/primeTranslation.ts b/src/configurations/primeTranslation.ts similarity index 100% rename from src/app/configurations/primeTranslation.ts rename to src/configurations/primeTranslation.ts diff --git a/src/environments/environment.gulaschmusi.ts b/src/environments/environment.gulaschmusi.ts index c4888c2..163b971 100644 --- a/src/environments/environment.gulaschmusi.ts +++ b/src/environments/environment.gulaschmusi.ts @@ -1,4 +1,4 @@ -import { CONFIG_MAP } from "../app/configurations/_CONFIG_MAP"; +import { CONFIG_MAP } from "../configurations/_CONFIG_MAP"; const config = CONFIG_MAP.gmr; diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 2483291..8b21c42 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -1,4 +1,4 @@ -import { CONFIG_MAP } from "../app/configurations/_CONFIG_MAP"; +import { CONFIG_MAP } from "../configurations/_CONFIG_MAP"; const config = CONFIG_MAP.mkj; diff --git a/src/environments/environment.publictest.ts b/src/environments/environment.publictest.ts index be61ddf..e07691c 100644 --- a/src/environments/environment.publictest.ts +++ b/src/environments/environment.publictest.ts @@ -1,4 +1,4 @@ -import { CONFIG_MAP } from "../app/configurations/_CONFIG_MAP"; +import { CONFIG_MAP } from "../configurations/_CONFIG_MAP"; const config = CONFIG_MAP.publictest; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index e5a6fa9..74cca24 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -3,7 +3,7 @@ // `ng build --env=prod` then `environment.prod.ts` will be used instead. // The list of which env maps to which file can be found in `.angular-cli.json`. -import { CONFIG_MAP } from "../app/configurations/_CONFIG_MAP"; +import { CONFIG_MAP } from "../configurations/_CONFIG_MAP"; const config = CONFIG_MAP.local;