ngx-gccb 0.9.0 → 0.10.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.
@@ -2,7 +2,7 @@ import { trigger, transition, style, animate } from '@angular/animations';
2
2
  import * as i1$2 from '@angular/common';
3
3
  import { CommonModule } from '@angular/common';
4
4
  import * as i0 from '@angular/core';
5
- import { Component, Input, inject, ElementRef, Directive, HostBinding, EventEmitter, Output, Renderer2, HostListener, ViewContainerRef, Pipe, Injectable, ComponentFactoryResolver } from '@angular/core';
5
+ import { Component, Input, inject, ElementRef, Directive, HostBinding, EventEmitter, Output, model, input, output, HostListener, ContentChildren, NgZone, Renderer2, ViewContainerRef, Pipe, Injectable, ComponentFactoryResolver } from '@angular/core';
6
6
  import * as i1 from '@angular/forms';
7
7
  import { ReactiveFormsModule } from '@angular/forms';
8
8
  import * as i1$1 from '@fortawesome/angular-fontawesome';
@@ -154,12 +154,12 @@ class FormInputDirective {
154
154
  this.elementRef.nativeElement.classList.add('form-control');
155
155
  }
156
156
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: FormInputDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
157
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: FormInputDirective, isStandalone: true, selector: "input,textarea[app-form-input]", inputs: { formInputInvalid: "formInputInvalid" }, ngImport: i0 }); }
157
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: FormInputDirective, isStandalone: true, selector: "input[app-form-input],textarea[app-form-input]", inputs: { formInputInvalid: "formInputInvalid" }, ngImport: i0 }); }
158
158
  }
159
159
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: FormInputDirective, decorators: [{
160
160
  type: Directive,
161
161
  args: [{
162
- selector: 'input,textarea[app-form-input]',
162
+ selector: 'input[app-form-input],textarea[app-form-input]',
163
163
  standalone: true,
164
164
  }]
165
165
  }], propDecorators: { formInputInvalid: [{
@@ -225,7 +225,7 @@ class FormInputComponent {
225
225
  this.onChange.next(event);
226
226
  }
227
227
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: FormInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
228
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.1.5", type: FormInputComponent, isStandalone: true, selector: "app-form-input", inputs: { control: "control", inputType: "inputType", inputLabel: "inputLabel", inputPlaceholder: "inputPlaceholder", inputId: "inputId", inputName: "inputName", inputTabIndex: "inputTabIndex", isSubmitted: "isSubmitted", selectOptions: "selectOptions", hintText: "hintText" }, outputs: { onEnter: "onEnter", onChange: "onChange" }, ngImport: i0, template: "<div class=\"form-floating mb-3\">\n\t@if (\n\t\tinputType === 'text' ||\n\t\tinputType === 'number' ||\n\t\tinputType === 'password' ||\n\t\tinputType === 'email' ||\n\t\tinputType === 'date' ||\n\t\tinputType === 'datetime-local' ||\n\t\tinputType === 'time'\n\t) {\n\t\t<input\n\t\t\t[type]=\"inputType\"\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\" />\n\t}\n\t@if (inputType === 'textarea') {\n\t\t<textarea\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\tstyle=\"min-height: 100px\">\n\t\t</textarea>\n\t}\n\t@if (inputType === 'select') {\n\t\t<select\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-select\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\"\n\t\t\t(change)=\"handleSelect($event)\">\n\t\t\t<option value=\"\" disabled selected>Select your option</option>\n\n\t\t\t@for (option of selectOptions; track option.value) {\n\t\t\t\t<option [value]=\"option.value\" [disabled]=\"option.disabled\">\n\t\t\t\t\t{{ option.label }}\n\t\t\t\t</option>\n\t\t\t}\n\t\t</select>\n\t}\n\t<label app-form-label [attr.for]=\"inputName || inputId\"> {{ inputLabel }} </label>\n\n\t@if (hintText) {\n\t\t<div class=\"form-text\">\n\t\t\t{{ hintText }}\n\t\t</div>\n\t}\n\n\t@if (isSubmitted && control.errors) {\n\t\t<app-form-errors [errors]=\"control.errors\" />\n\t}\n</div>\n", dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: FormErrorsComponent, selector: "app-form-errors", inputs: ["errors"] }, { kind: "directive", type: FormLabelDirective, selector: "label[app-form-label]" }, { kind: "directive", type: FormInputDirective, selector: "input,textarea[app-form-input]", inputs: ["formInputInvalid"] }, { kind: "directive", type: FormSelectDirective, selector: "select[app-form-select]", inputs: ["formInputInvalid"] }] }); }
228
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.1.5", type: FormInputComponent, isStandalone: true, selector: "app-form-input", inputs: { control: "control", inputType: "inputType", inputLabel: "inputLabel", inputPlaceholder: "inputPlaceholder", inputId: "inputId", inputName: "inputName", inputTabIndex: "inputTabIndex", isSubmitted: "isSubmitted", selectOptions: "selectOptions", hintText: "hintText" }, outputs: { onEnter: "onEnter", onChange: "onChange" }, ngImport: i0, template: "<div class=\"form-floating mb-3\">\n\t@if (\n\t\tinputType === 'text' ||\n\t\tinputType === 'number' ||\n\t\tinputType === 'password' ||\n\t\tinputType === 'email' ||\n\t\tinputType === 'date' ||\n\t\tinputType === 'datetime-local' ||\n\t\tinputType === 'time'\n\t) {\n\t\t<input\n\t\t\t[type]=\"inputType\"\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\" />\n\t}\n\t@if (inputType === 'textarea') {\n\t\t<textarea\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\tstyle=\"min-height: 100px\">\n\t\t</textarea>\n\t}\n\t@if (inputType === 'select') {\n\t\t<select\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-select\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\"\n\t\t\t(change)=\"handleSelect($event)\">\n\t\t\t<option value=\"\" disabled selected>Select your option</option>\n\n\t\t\t@for (option of selectOptions; track option.value) {\n\t\t\t\t<option [value]=\"option.value\" [disabled]=\"option.disabled\">\n\t\t\t\t\t{{ option.label }}\n\t\t\t\t</option>\n\t\t\t}\n\t\t</select>\n\t}\n\t<label app-form-label [attr.for]=\"inputName || inputId\"> {{ inputLabel }} </label>\n\n\t@if (hintText) {\n\t\t<div class=\"form-text\">\n\t\t\t{{ hintText }}\n\t\t</div>\n\t}\n\n\t@if (isSubmitted && control.errors) {\n\t\t<app-form-errors [errors]=\"control.errors\" />\n\t}\n</div>\n", dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: FormErrorsComponent, selector: "app-form-errors", inputs: ["errors"] }, { kind: "directive", type: FormLabelDirective, selector: "label[app-form-label]" }, { kind: "directive", type: FormInputDirective, selector: "input[app-form-input],textarea[app-form-input]", inputs: ["formInputInvalid"] }, { kind: "directive", type: FormSelectDirective, selector: "select[app-form-select]", inputs: ["formInputInvalid"] }] }); }
229
229
  }
230
230
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: FormInputComponent, decorators: [{
231
231
  type: Component,
@@ -375,6 +375,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
375
375
  type: Output
376
376
  }] } });
377
377
 
378
+ class TabContentComponent {
379
+ constructor() {
380
+ this.isActive = model(false);
381
+ }
382
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabContentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
383
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.1.5", type: TabContentComponent, isStandalone: true, selector: "app-tab-content", inputs: { isActive: { classPropertyName: "isActive", publicName: "isActive", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { isActive: "isActiveChange" }, ngImport: i0, template: "<div class=\"tab-content\" [ngClass]=\"{ active: isActive() }\">\n\t<ng-content />\n</div>\n", styles: [".tab-content{display:none;padding:20px}.tab-content.active{display:block}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
384
+ }
385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabContentComponent, decorators: [{
386
+ type: Component,
387
+ args: [{ selector: 'app-tab-content', imports: [CommonModule], template: "<div class=\"tab-content\" [ngClass]=\"{ active: isActive() }\">\n\t<ng-content />\n</div>\n", styles: [".tab-content{display:none;padding:20px}.tab-content.active{display:block}\n"] }]
388
+ }] });
389
+
390
+ class TabComponent {
391
+ constructor() {
392
+ this.isActive = model(false);
393
+ this.target = input.required();
394
+ this.onSelected = output();
395
+ }
396
+ onClick() {
397
+ this.onSelected.emit();
398
+ }
399
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
400
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.1.5", type: TabComponent, isStandalone: true, selector: "app-tab", inputs: { isActive: { classPropertyName: "isActive", publicName: "isActive", isSignal: true, isRequired: false, transformFunction: null }, target: { classPropertyName: "target", publicName: "target", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { isActive: "isActiveChange", onSelected: "onSelected" }, host: { listeners: { "click": "onClick($event.target)" } }, ngImport: i0, template: "<div class=\"tab\" [ngClass]=\"{ active: isActive() }\" tabindex=\"0\">\n\t<ng-content />\n</div>\n", styles: [":host{display:flex}.tab{color:var(--font-color);padding:16px 20px;border-bottom:3px solid var(--gray-80);flex-shrink:0}.tab.active{color:var(--primary);background:var(--body-bg-color);border-bottom:3px solid var(--primary)}.tab:focus{outline:0;z-index:1}.tab:hover{cursor:pointer;background-color:var(--tab-highlight)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
401
+ }
402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabComponent, decorators: [{
403
+ type: Component,
404
+ args: [{ selector: 'app-tab', imports: [CommonModule], template: "<div class=\"tab\" [ngClass]=\"{ active: isActive() }\" tabindex=\"0\">\n\t<ng-content />\n</div>\n", styles: [":host{display:flex}.tab{color:var(--font-color);padding:16px 20px;border-bottom:3px solid var(--gray-80);flex-shrink:0}.tab.active{color:var(--primary);background:var(--body-bg-color);border-bottom:3px solid var(--primary)}.tab:focus{outline:0;z-index:1}.tab:hover{cursor:pointer;background-color:var(--tab-highlight)}\n"] }]
405
+ }], propDecorators: { onClick: [{
406
+ type: HostListener,
407
+ args: ['click', ['$event.target']]
408
+ }] } });
409
+
410
+ class TabsComponent {
411
+ ngAfterContentInit() {
412
+ this.tabQueryList.forEach(tab => {
413
+ tab.onSelected.subscribe(() => this.selectTab(tab));
414
+ });
415
+ // select first tab on init
416
+ if (this.tabQueryList.length > 0) {
417
+ const firstActiveTab = this.tabQueryList.find(tab => tab.isActive());
418
+ if (firstActiveTab) {
419
+ this.selectTab(firstActiveTab);
420
+ }
421
+ else {
422
+ this.selectTab(this.tabQueryList.first);
423
+ }
424
+ }
425
+ }
426
+ selectTab(tabComponent) {
427
+ this.tabQueryList.forEach(tab => tab.isActive.update(() => tab === tabComponent));
428
+ this.tabContentQueryList.forEach(tabContent => tabContent.isActive.update(() => tabContent === tabComponent.target()));
429
+ }
430
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
431
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: TabsComponent, isStandalone: true, selector: "app-tabs", queries: [{ propertyName: "tabQueryList", predicate: TabComponent }, { propertyName: "tabContentQueryList", predicate: TabContentComponent }], ngImport: i0, template: "<div class=\"tabs\">\n\t<ng-content select=\"app-tab\" />\n</div>\n<div class=\"tab-contents\">\n\t<ng-content select=\"app-tab-content\" />\n</div>\n", styles: [".tabs{display:flex;cursor:pointer;-webkit-tap-highlight-color:transparent;overflow-x:auto}\n"] }); }
432
+ }
433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: TabsComponent, decorators: [{
434
+ type: Component,
435
+ args: [{ selector: 'app-tabs', template: "<div class=\"tabs\">\n\t<ng-content select=\"app-tab\" />\n</div>\n<div class=\"tab-contents\">\n\t<ng-content select=\"app-tab-content\" />\n</div>\n", styles: [".tabs{display:flex;cursor:pointer;-webkit-tap-highlight-color:transparent;overflow-x:auto}\n"] }]
436
+ }], propDecorators: { tabQueryList: [{
437
+ type: ContentChildren,
438
+ args: [TabComponent]
439
+ }], tabContentQueryList: [{
440
+ type: ContentChildren,
441
+ args: [TabContentComponent]
442
+ }] } });
443
+
378
444
  class ToastComponent {
379
445
  constructor() {
380
446
  this.onClose = new EventEmitter();
@@ -438,33 +504,27 @@ function Log(methodName, logType = LogType.log, logArgs = false) {
438
504
  }
439
505
 
440
506
  class AutofocusDirective {
441
- constructor(el) {
442
- this.el = el;
443
- this.focus = true;
444
- }
445
- set autofocus(condition) {
446
- this.focus = condition !== false;
507
+ constructor() {
508
+ this.ngZone = inject(NgZone);
509
+ this.el = inject(ElementRef);
447
510
  }
448
511
  ngAfterViewInit() {
449
- if (this.focus) {
512
+ this.ngZone.runOutsideAngular(() => {
450
513
  setTimeout(() => {
451
514
  this.el.nativeElement.focus();
452
- this.el.nativeElement.classList.add('focus-ring');
453
- }, 100);
454
- }
515
+ }, 0);
516
+ });
455
517
  }
456
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: AutofocusDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
457
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: AutofocusDirective, isStandalone: true, selector: "[autofocus]", inputs: { autofocus: "autofocus" }, ngImport: i0 }); }
518
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: AutofocusDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
519
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.1.5", type: AutofocusDirective, isStandalone: true, selector: "[app-autofocus]", ngImport: i0 }); }
458
520
  }
459
521
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: AutofocusDirective, decorators: [{
460
522
  type: Directive,
461
523
  args: [{
462
- selector: '[autofocus]',
524
+ selector: '[app-autofocus]',
463
525
  standalone: true,
464
526
  }]
465
- }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { autofocus: [{
466
- type: Input
467
- }] } });
527
+ }] });
468
528
 
469
529
  class ButtonDirective {
470
530
  constructor() {
@@ -1078,5 +1138,5 @@ function convertToMinutes(time) {
1078
1138
  * Generated bundle index. Do not edit.
1079
1139
  */
1080
1140
 
1081
- export { AutofocusDirective, BaseModalComponent, ButtonDirective, CardBodyDirective, CardDirective, Class, ColDirective, DatePickerComponent, DropdownDirective, FadeAnimation, FadeRightAnimation, FormControlPipe, FormErrorsComponent, FormInputComponent, FormInputDirective, FormLabelDirective, FormSelectDirective, IconButtonDirective, ImageService, ListGroupDirective, ListGroupItemAvatarDirective, ListGroupItemDirective, LoadingIndicatorComponent, LoadingIndicatorService, LocalService, Log, LogType, ModalComponent, ModalService, OffCanvasComponent, ToastComponent, ToastService, TokenService, TooltipDirective, dateAfterValidator, matchValidator, timeAfterValidator };
1141
+ export { AutofocusDirective, BaseModalComponent, ButtonDirective, CardBodyDirective, CardDirective, Class, ColDirective, DatePickerComponent, DropdownDirective, FadeAnimation, FadeRightAnimation, FormControlPipe, FormErrorsComponent, FormInputComponent, FormInputDirective, FormLabelDirective, FormSelectDirective, IconButtonDirective, ImageService, ListGroupDirective, ListGroupItemAvatarDirective, ListGroupItemDirective, LoadingIndicatorComponent, LoadingIndicatorService, LocalService, Log, LogType, ModalComponent, ModalService, OffCanvasComponent, TabComponent, TabContentComponent, TabsComponent, ToastComponent, ToastService, TokenService, TooltipDirective, dateAfterValidator, matchValidator, timeAfterValidator };
1082
1142
  //# sourceMappingURL=ngx-gccb.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"ngx-gccb.mjs","sources":["../../../projects/ngx-gccb/src/lib/animations/fade-right.animation.ts","../../../projects/ngx-gccb/src/lib/animations/fade-up.animation.ts","../../../projects/ngx-gccb/src/lib/components/date-picker/date-picker.component.ts","../../../projects/ngx-gccb/src/lib/components/date-picker/date-picker.component.html","../../../projects/ngx-gccb/src/lib/components/form/form-errors/form-errors.component.ts","../../../projects/ngx-gccb/src/lib/directives/form-input.directive.ts","../../../projects/ngx-gccb/src/lib/directives/form-label.directive.ts","../../../projects/ngx-gccb/src/lib/directives/form-select.directive.ts","../../../projects/ngx-gccb/src/lib/components/form/form-input/form-input.component.ts","../../../projects/ngx-gccb/src/lib/components/form/form-input/form-input.component.html","../../../projects/ngx-gccb/src/lib/components/loading-indicator/loading-indicator.component.ts","../../../projects/ngx-gccb/src/lib/components/loading-indicator/loading-indicator.component.html","../../../projects/ngx-gccb/src/lib/components/modal/base-modal.component.ts","../../../projects/ngx-gccb/src/lib/directives/icon-button.directive.ts","../../../projects/ngx-gccb/src/lib/components/modal/modal.component.ts","../../../projects/ngx-gccb/src/lib/components/modal/modal.component.html","../../../projects/ngx-gccb/src/lib/components/off-canvas/off-canvas.component.ts","../../../projects/ngx-gccb/src/lib/components/off-canvas/off-canvas.component.html","../../../projects/ngx-gccb/src/lib/components/toast/toast.component.ts","../../../projects/ngx-gccb/src/lib/decorators/class.decorator.ts","../../../projects/ngx-gccb/src/lib/enums/logtype.enum.ts","../../../projects/ngx-gccb/src/lib/decorators/log.decorator.ts","../../../projects/ngx-gccb/src/lib/directives/autofocus.directive.ts","../../../projects/ngx-gccb/src/lib/directives/button.directive.ts","../../../projects/ngx-gccb/src/lib/directives/card-body.directive.ts","../../../projects/ngx-gccb/src/lib/directives/card.directive.ts","../../../projects/ngx-gccb/src/lib/directives/col.directive.ts","../../../projects/ngx-gccb/src/lib/directives/dropdown.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group-item-avatar.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group-item.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group.directive.ts","../../../projects/ngx-gccb/src/lib/directives/tooltip.directive.ts","../../../projects/ngx-gccb/src/lib/pipe/form-control.pipe.ts","../../../projects/ngx-gccb/src/lib/services/image.service.ts","../../../projects/ngx-gccb/src/lib/services/loading-indicator.service.ts","../../../projects/ngx-gccb/src/lib/services/local.service.ts","../../../projects/ngx-gccb/src/lib/services/modal.service.ts","../../../projects/ngx-gccb/src/lib/services/toast.service.ts","../../../projects/ngx-gccb/src/lib/services/token.service.ts","../../../projects/ngx-gccb/src/lib/validators/dateAfter.validator.ts","../../../projects/ngx-gccb/src/lib/validators/match.validator.ts","../../../projects/ngx-gccb/src/lib/validators/timeAfter.validator.ts","../../../projects/ngx-gccb/src/public-api.ts","../../../projects/ngx-gccb/src/ngx-gccb.ts"],"sourcesContent":["import { animate, AnimationTriggerMetadata, style, transition, trigger } from '@angular/animations';\n\nexport const FadeRightAnimation: AnimationTriggerMetadata = trigger('fadeRightAnimation', [\n\ttransition(':enter', [\n\t\tstyle({ transform: 'translateX(-100%)', zIndex: 9999 }),\n\t\tanimate('200ms ease-in', style({ transform: 'translateX(0%)' })),\n\t]),\n\ttransition(':leave', [animate('200ms ease-in', style({ transform: 'translateX(-100%)' }))]),\n]);\n","import { animate, AnimationTriggerMetadata, style, transition, trigger } from '@angular/animations';\n\nexport const FadeAnimation: AnimationTriggerMetadata = trigger('fadeAnimation', [\n\ttransition(':enter', [\n\t\tstyle({ opacity: 0, transform: 'translateY(10px)' }),\n\t\tanimate('500ms', style({ opacity: 1, transform: 'translateY(0)' })),\n\t]),\n\ttransition(':leave', [animate('500ms', style({ opacity: 0, transform: 'translateY(10px)' }))]),\n]);\n","/* eslint-disable no-console */\n/* eslint-disable @typescript-eslint/no-unused-vars */\nimport { CommonModule } from '@angular/common';\nimport { Component, OnInit } from '@angular/core';\n\n@Component({\n\tselector: 'app-date-picker',\n\ttemplateUrl: './date-picker.component.html',\n\timports: [CommonModule],\n})\nexport class DatePickerComponent implements OnInit {\n\tcurrentDate: Date = new Date();\n\n\t// eslint-disable-next-line @angular-eslint/no-empty-lifecycle-method\n\tngOnInit(): void {\n\t\t// const firstDayOfMonth: Date = this.currentDate.firstDayOfMonth();\n\t\t// console.warn(firstDayOfMonth, firstDayOfMonth.getDate(), firstDayOfMonth.getDay());\n\t\t// const weekCount: number = getWeekCount(this.currentDate.getFullYear(), this.currentDate.getMonth(), DayOfWeek.Monday);\n\t\t// console.warn(weekCount);\n\t\t// const weeks: unknown[] = [];\n\t\t// for (let i: number = 0; i <= weekCount; i++) {\n\t\t// for(let){\n\t\t// }\n\t\t// }\n\t}\n}\n\nenum DayOfWeek {\n\t'Sunday' = 0,\n\t'Monday' = 1,\n\t'Tuesday' = 2,\n\t'Wednesday' = 3,\n\t'Thursday' = 4,\n\t'Friday' = 5,\n\t'Saturday' = 6,\n}\n\nfunction getWeekCount(year: number, month: number, startDayOfWeek: DayOfWeek): number {\n\t// month_number is in the range 0..11\n\n\t// Get the first day of week week day (0: Sunday, 1: Monday, ...)\n\tconst firstDayOfWeek: DayOfWeek = startDayOfWeek || DayOfWeek.Sunday;\n\tconst firstOfMonth: Date = new Date(year, month, 1);\n\tconst lastOfMonth: Date = new Date(year, month + 1, 0);\n\tconst numberOfDaysInMonth: number = lastOfMonth.getDate();\n\tconst firstWeekDay: number = (firstOfMonth.getDay() - firstDayOfWeek + 7) % 7;\n\tconst used: number = firstWeekDay + numberOfDaysInMonth;\n\n\treturn Math.ceil(used / 7);\n}\n","coming soon\n","import { CommonModule } from '@angular/common';\nimport { Component, Input, OnChanges, SimpleChanges } from '@angular/core';\nimport { ValidationErrors } from '@angular/forms';\n\n@Component({\n\tselector: 'app-form-errors',\n\ttemplate: `\n\t\t<div class=\"invalid-feedback d-block\">\n\t\t\t@if (errorMessages) {\n\t\t\t\t@for (errorMessage of errorMessages; track $index) {\n\t\t\t\t\t<div>{{ errorMessage }}</div>\n\t\t\t\t}\n\t\t\t}\n\t\t</div>\n\t`,\n\timports: [CommonModule],\n})\nexport class FormErrorsComponent implements OnChanges {\n\t@Input() errors: ValidationErrors | null = null;\n\t// @Input() customErrorMessages?: IErrorMessage; // TODO\n\n\terrorMessages: string[] = [];\n\n\tngOnChanges(changes: SimpleChanges): void {\n\t\tif (changes['errors']) {\n\t\t\tconst previousValue: ValidationErrors = changes['errors'].previousValue;\n\t\t\tconst currentValue: ValidationErrors = changes['errors'].currentValue;\n\n\t\t\tif (JSON.stringify(previousValue) !== JSON.stringify(currentValue)) {\n\t\t\t\tthis.errorMessages = [];\n\t\t\t\tfor (const key in currentValue) {\n\t\t\t\t\tif (this.errorMessageDictionary[key]) {\n\t\t\t\t\t\tthis.errorMessages.push(this.errorMessageDictionary[key](currentValue));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\terrorMessageDictionary: IErrorMessage = {\n\t\trequired: () => 'Field is required',\n\t\trequiredTrue: () => 'Field is required',\n\t\temail: () => 'Invalid E-Mail',\n\t\tmin: (errors: ValidationErrors) => `At least ${errors['min']?.requiredLength} characters are required`,\n\t\tminlength: (errors: ValidationErrors) => `At least ${errors['minlength']?.requiredLength} characters are required`,\n\t\tmax: (errors: ValidationErrors) => `Maximum of ${errors['max']?.requiredLength} characters exceeded`,\n\t\tmaxlength: (errors: ValidationErrors) => `Maximum of ${errors['maxlength']?.requiredLength} characters exceeded`,\n\t\tpattern: () => `Input does not match pattern`,\n\t\tdateAfterInvalid: (errors: ValidationErrors) => `Date must be after ${errors?.['startDateValue']}`,\n\t\tmatch: () => `Input does not match!`,\n\t\ttimeAfterError: (errors: ValidationErrors) => `The time must be after ${errors?.['timeAfterError']}`,\n\t};\n}\n\ninterface IErrorMessage {\n\t[key: string]: (error: ValidationErrors) => string;\n}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'input,textarea[app-form-input]',\n\tstandalone: true,\n})\nexport class FormInputDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLElement> = inject(ElementRef<HTMLElement>);\n\n\t@Input() set formInputInvalid(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.elementRef.nativeElement.classList.add('is-invalid');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('is-invalid');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('form-control');\n\t}\n}\n","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n\tselector: 'label[app-form-label]',\n\tstandalone: true,\n})\nexport class FormLabelDirective {\n\t@HostBinding('class')\n\telementClass: string = 'form-label';\n}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'select[app-form-select]',\n\tstandalone: true,\n})\nexport class FormSelectDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLElement> = inject(ElementRef<HTMLElement>);\n\n\t@Input() set formInputInvalid(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.elementRef.nativeElement.classList.add('is-invalid');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('is-invalid');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('form-select');\n\t}\n}\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FormControl, ReactiveFormsModule } from '@angular/forms';\nimport { FormInputDirective } from '../../../directives/form-input.directive';\nimport { FormLabelDirective } from '../../../directives/form-label.directive';\nimport { FormSelectDirective } from '../../../directives/form-select.directive';\nimport { FormErrorsComponent } from '../form-errors';\n\nexport interface ISelectOptions {\n\tlabel: string;\n\tvalue: string;\n\tdisabled?: boolean;\n\tselected?: boolean;\n}\n\n@Component({\n\tselector: 'app-form-input',\n\ttemplateUrl: './form-input.component.html',\n\timports: [ReactiveFormsModule, FormErrorsComponent, FormLabelDirective, FormInputDirective, FormSelectDirective],\n})\nexport class FormInputComponent {\n\t@Input({ required: true }) control!: FormControl;\n\t@Input() inputType: string = 'text';\n\t@Input({ required: true }) inputLabel!: string;\n\t@Input() inputPlaceholder?: string;\n\t@Input() inputId?: string;\n\t@Input({ required: true }) inputName!: string;\n\t@Input() inputTabIndex?: string;\n\t@Input() isSubmitted: boolean = false;\n\t@Input() selectOptions: ISelectOptions[] = [];\n\t@Input() hintText: string = '';\n\n\t@Output() onEnter: EventEmitter<void> = new EventEmitter();\n\t@Output() onChange: EventEmitter<Event> = new EventEmitter();\n\n\thandleSelect(event: Event): void {\n\t\tthis.onChange.next(event);\n\t}\n}\n","<div class=\"form-floating mb-3\">\n\t@if (\n\t\tinputType === 'text' ||\n\t\tinputType === 'number' ||\n\t\tinputType === 'password' ||\n\t\tinputType === 'email' ||\n\t\tinputType === 'date' ||\n\t\tinputType === 'datetime-local' ||\n\t\tinputType === 'time'\n\t) {\n\t\t<input\n\t\t\t[type]=\"inputType\"\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\" />\n\t}\n\t@if (inputType === 'textarea') {\n\t\t<textarea\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\tstyle=\"min-height: 100px\">\n\t\t</textarea>\n\t}\n\t@if (inputType === 'select') {\n\t\t<select\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-select\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\"\n\t\t\t(change)=\"handleSelect($event)\">\n\t\t\t<option value=\"\" disabled selected>Select your option</option>\n\n\t\t\t@for (option of selectOptions; track option.value) {\n\t\t\t\t<option [value]=\"option.value\" [disabled]=\"option.disabled\">\n\t\t\t\t\t{{ option.label }}\n\t\t\t\t</option>\n\t\t\t}\n\t\t</select>\n\t}\n\t<label app-form-label [attr.for]=\"inputName || inputId\"> {{ inputLabel }} </label>\n\n\t@if (hintText) {\n\t\t<div class=\"form-text\">\n\t\t\t{{ hintText }}\n\t\t</div>\n\t}\n\n\t@if (isSubmitted && control.errors) {\n\t\t<app-form-errors [errors]=\"control.errors\" />\n\t}\n</div>\n","import { Component } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faSpinner, IconDefinition } from '@fortawesome/free-solid-svg-icons';\n\n@Component({\n\tselector: 'app-loading-indicator',\n\ttemplateUrl: './loading-indicator.component.html',\n\tstyles: `\n\t\t:host {\n\t\t\tposition: fixed;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tcolor: #495057;\n\t\t}\n\t`,\n\timports: [FontAwesomeModule],\n})\nexport class LoadingIndicatorComponent {\n\tfaSpinner: IconDefinition = faSpinner;\n}\n","<fa-icon animation=\"spin\" size=\"2x\" [icon]=\"faSpinner\"></fa-icon>\n","import { Component } from '@angular/core';\n\n@Component({\n\tselector: 'app-base-modal',\n\ttemplate: ``,\n\tstandalone: true,\n})\nexport class BaseModalComponent {}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'button[app-icon-button]',\n\tstandalone: true,\n})\nexport class IconButtonDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLButtonElement> = inject(ElementRef<HTMLButtonElement>);\n\tcolor!: string;\n\n\t@Input('app-icon-button') set appIconButton(val: string) {\n\t\tthis.color = val || 'primary';\n\t\tthis.elementRef.nativeElement.classList.add(`icon-button-${this.color}`);\n\t}\n\n\t@Input() set shadow(val: boolean) {\n\t\tif (val === true || val === undefined) {\n\t\t\tthis.elementRef.nativeElement.classList.add('shadow-sm');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('shadow-sm');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('btn', 'icon-button');\n\t}\n}\n","import { CommonModule } from '@angular/common';\nimport { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faTimes, IconDefinition } from '@fortawesome/free-solid-svg-icons';\nimport { IconButtonDirective } from '../../directives/icon-button.directive';\n\n@Component({\n\tselector: 'app-modal',\n\ttemplateUrl: './modal.component.html',\n\timports: [CommonModule, IconButtonDirective, FontAwesomeModule],\n})\nexport class ModalComponent {\n\t@Input() title: string = '';\n\t@Input() showClose: boolean = true;\n\n\t@Input() set fullScreen(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.dialogCssClasses.push(`modal-fullscreen`);\n\t\t} else {\n\t\t\tthis.dialogCssClasses = this.dialogCssClasses.filter(cssClass => cssClass !== 'modal-fullscreen');\n\t\t}\n\t}\n\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n\n\tdialogCssClasses: string[] = [];\n\tfaTimes: IconDefinition = faTimes;\n\n\thandleClickClose(): void {\n\t\tthis.onClose.next();\n\t}\n}\n","<div class=\"modal d-flex justify-content-center align-items-center\" tabindex=\"-1\">\n\t<div class=\"modal-dialog\" [ngClass]=\"dialogCssClasses\">\n\t\t<div class=\"modal-content\">\n\t\t\t<div class=\"modal-header justify-content-between\">\n\t\t\t\t<h5 class=\"modal-title\">{{ title }}</h5>\n\t\t\t\t@if (showClose) {\n\t\t\t\t\t<button app-icon-button=\"secondary\" class=\"ms-2\" (click)=\"handleClickClose()\">\n\t\t\t\t\t\t<fa-icon [icon]=\"faTimes\" />\n\t\t\t\t\t</button>\n\t\t\t\t}\n\t\t\t</div>\n\n\t\t\t<div class=\"modal-body\">\n\t\t\t\t<ng-content />\n\t\t\t</div>\n\n\t\t\t<div class=\"modal-footer\">\n\t\t\t\t<ng-content select=\"[footer]\"></ng-content>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n<div class=\"modal-backdrop fade show\"></div>\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faTimes, IconDefinition } from '@fortawesome/free-solid-svg-icons';\nimport { IconButtonDirective } from '../../directives/icon-button.directive';\n\n@Component({\n\tselector: 'app-off-canvas',\n\ttemplateUrl: './off-canvas.component.html',\n\tstyles: `\n\t\t:host {\n\t\t\tz-index: 9999;\n\t\t\tdisplay: block;\n\t\t}\n\t`,\n\timports: [FontAwesomeModule, IconButtonDirective],\n})\nexport class OffCanvasComponent {\n\t@Input() title: string = '';\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n\n\tfaTimes: IconDefinition = faTimes;\n\n\thandleClickClose(): void {\n\t\tthis.onClose.next();\n\t}\n}\n","<div class=\"offcanvas offcanvas-start show\" tabindex=\"-1\" id=\"offcanvas\" style=\"z-index: 1051\">\n\t<div class=\"offcanvas-header justify-content-between\">\n\t\t<h5 class=\"offcanvas-title\" id=\"offcanvasLabel\">{{ title }}</h5>\n\t\t<button app-icon-button=\"secondary\" class=\"ml-auto\" (click)=\"handleClickClose()\">\n\t\t\t<fa-icon [icon]=\"faTimes\" />\n\t\t</button>\n\t</div>\n\t<ng-content />\n</div>\n\n<div class=\"modal-backdrop fade show\" (click)=\"handleClickClose()\"></div>\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\n\n@Component({\n\tselector: 'app-toast',\n\ttemplate: `\n\t\t<div class=\"toast align-items-center text-bg-dark border-0 show\">\n\t\t\t<div class=\"d-flex\">\n\t\t\t\t<div class=\"toast-body\" [innerHTML]=\"message\"></div>\n\t\t\t\t<button class=\"btn-close btn-close-white me-2 m-auto\" (click)=\"onClose.next()\"></button>\n\t\t\t</div>\n\t\t</div>\n\t`,\n\tstyles: `\n\t\t:host {\n\t\t\tposition: fixed;\n\t\t\tbottom: 20px;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%);\n\t\t\tz-index: 1051;\n\t\t}\n\t`,\n})\nexport class ToastComponent {\n\t@Input() message?: string;\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n}\n","import { DecoratorClassType } from './decorator.types';\n\nexport const Class =\n\t(className: string): DecoratorClassType =>\n\t<T extends abstract new (...args: unknown[]) => unknown>(obj: T): void => {\n\t\tObject.defineProperty(obj.prototype, 'className', {\n\t\t\tvalue: className,\n\t\t\twritable: false,\n\t\t});\n\t};\n","export enum LogType {\n\tlog = 'log',\n\tinfo = 'info',\n\twarn = 'warn',\n\tdebug = 'debug',\n\terror = 'error',\n}\n","/* eslint-disable @typescript-eslint/naming-convention */\n\nimport { LogType } from '../enums';\nimport { DecoratorMethodType } from './decorator.types';\n\nexport function Log(methodName?: string, logType: LogType = LogType.log, logArgs: boolean = false): DecoratorMethodType {\n\treturn function (target: object, key: string | symbol, descriptor: PropertyDescriptor): PropertyDescriptor {\n\t\tconst originalMethod: (...args: unknown[]) => unknown = descriptor.value as (...args: unknown[]) => unknown;\n\n\t\tdescriptor.value = function (...args: unknown[]): unknown {\n\t\t\tconst className: string = target.constructor.name;\n\t\t\tconst newMethodName: string = methodName || key.toString();\n\n\t\t\tconst logStatements: unknown[] = [className, newMethodName, ...(logArgs ? args : [])];\n\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole[logType](...logStatements);\n\n\t\t\treturn originalMethod.apply(this, args);\n\t\t};\n\n\t\treturn descriptor;\n\t};\n}\n","import { AfterViewInit, Directive, ElementRef, Input } from '@angular/core';\n\n@Directive({\n\tselector: '[autofocus]',\n\tstandalone: true,\n})\nexport class AutofocusDirective implements AfterViewInit {\n\tprivate focus: boolean = true;\n\n\tconstructor(private el: ElementRef) {}\n\n\t@Input() set autofocus(condition: boolean) {\n\t\tthis.focus = condition !== false;\n\t}\n\n\tngAfterViewInit(): void {\n\t\tif (this.focus) {\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.el.nativeElement.focus();\n\t\t\t\t(this.el.nativeElement as HTMLElement).classList.add('focus-ring');\n\t\t\t}, 100);\n\t\t}\n\t}\n}\n","import { Directive, ElementRef, HostListener, Input, OnInit, Renderer2, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'button[app-button]',\n\tstandalone: true,\n})\nexport class ButtonDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLButtonElement> = inject(ElementRef<HTMLButtonElement>);\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tcolor!: string;\n\t_variant: string = 'contained';\n\n\t@HostListener('focus', ['$event']) onFocus(): void {\n\t\tthis.isFocused = true;\n\t}\n\n\t@HostListener('blur', ['$event']) onblur(): void {\n\t\tthis.isFocused = false;\n\t}\n\n\tset isFocused(val: boolean) {\n\t\tif (val) {\n\t\t\tthis.elementRef.nativeElement.classList.add(`focus-ring-${this.color}`);\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove(`focus-ring-${this.color}`);\n\t\t}\n\t}\n\n\t@Input('app-button') set appButton(val: string) {\n\t\tthis.color = val || 'primary';\n\t}\n\n\t@Input() set variant(val: 'contained' | 'outline' | 'text') {\n\t\tthis._variant = val;\n\t}\n\n\t@Input() set size(val: string) {\n\t\tthis.elementRef.nativeElement.classList.add(`btn-${val || 'sm'}`);\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('btn');\n\t\tif (this._variant === 'outline' || this._variant === 'text') {\n\t\t\tthis.elementRef.nativeElement.classList.add(`btn-${this._variant}-${this.color}`);\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.add(`btn-${this.color}`);\n\t\t}\n\t\tthis.elementRef.nativeElement.classList.add('flex-shrink-0');\n\t\tthis.renderer.setAttribute(this.elementRef.nativeElement, 'type', 'button');\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-card-body]',\n\tstandalone: true,\n})\nexport class CardBodyDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('card-body');\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-card]',\n\tstandalone: true,\n})\nexport class CardDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('card');\n\t}\n}\n","import { AfterViewInit, Directive, ElementRef, inject, Input } from '@angular/core';\n\n/* experimental */\n\n@Directive({\n\tselector: '[col]',\n\tstandalone: true,\n})\nexport class ColDirective implements AfterViewInit {\n\tprivate readonly el: ElementRef = inject(ElementRef);\n\tspan: string = 'col';\n\n\t@Input() set col(val: string | null) {\n\t\tif (val) {\n\t\t\tthis.span = val;\n\t\t}\n\t}\n\n\tngAfterViewInit(): void {\n\t\t(this.el.nativeElement as HTMLElement).classList.add(this.span);\n\t}\n}\n","import {\n\tDirective,\n\tElementRef,\n\tEmbeddedViewRef,\n\tHostListener,\n\tinject,\n\tInput,\n\tOnInit,\n\tRenderer2,\n\tTemplateRef,\n\tViewContainerRef,\n} from '@angular/core';\nimport { createPopper, Instance, Placement } from '@popperjs/core';\n\n@Directive({\n\tselector: '[appDropdown]',\n\tstandalone: true,\n})\nexport class DropdownDirective implements OnInit {\n\t@Input('appDropdown') dropdownTemplate!: TemplateRef<unknown>;\n\t@Input() placement: Placement = 'bottom-start';\n\n\tprivate readonly elementRef: ElementRef = inject(ElementRef);\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tprivate readonly viewContainer: ViewContainerRef = inject(ViewContainerRef);\n\n\tprivate wrapperElement!: HTMLElement | null;\n\tprivate dropdownContent!: HTMLElement | null;\n\tprivate isDropdownVisible: boolean = false;\n\tprivate popperInstance?: Instance;\n\n\tprivate documentClickListener!: (event: MouseEvent) => void;\n\n\tconstructor() {\n\t\tthis.documentClickListener = this.onDocumentClick.bind(this);\n\t}\n\n\tngOnInit(): void {\n\t\tif (!this.wrapperElement) {\n\t\t\tthis.wrapperElement = this.renderer.createElement('div');\n\t\t\tthis.renderer.addClass(this.wrapperElement, 'dropdown');\n\t\t\tconst parent: HTMLElement = this.elementRef.nativeElement.parentNode;\n\t\t\tthis.renderer.insertBefore(parent, this.wrapperElement, this.elementRef.nativeElement);\n\t\t\tthis.renderer.appendChild(this.wrapperElement, this.elementRef.nativeElement);\n\t\t}\n\t}\n\n\t@HostListener('click')\n\ttoggleDropdown(): void {\n\t\tif (this.isDropdownVisible) {\n\t\t\tthis.closeDropdown();\n\t\t} else {\n\t\t\tthis.openDropdown();\n\t\t}\n\t}\n\n\tprivate openDropdown(): void {\n\t\tif (!this.dropdownContent && this.wrapperElement) {\n\t\t\tconst dropdownView: EmbeddedViewRef<unknown> = this.viewContainer.createEmbeddedView(this.dropdownTemplate);\n\t\t\tthis.dropdownContent = dropdownView.rootNodes[0];\n\t\t\tthis.renderer.appendChild(this.wrapperElement, this.dropdownContent);\n\n\t\t\tthis.addDropdownLinksListener();\n\n\t\t\tthis.popperInstance = createPopper(this.wrapperElement, this.dropdownContent!, {\n\t\t\t\tplacement: this.placement,\n\t\t\t\tmodifiers: [\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'offset',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\toffset: ({ placement }: { placement: Placement }): number[] => {\n\t\t\t\t\t\t\t\tif (placement.startsWith('bottom')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetHeight as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (placement.startsWith('top')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetHeight as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (placement.startsWith('left')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetWidth as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\treturn [0, 0];\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'flip',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tfallbackPlacements: ['right-start', 'top-start', 'left-start'],\n\t\t\t\t\t\t\tboundary: 'viewport',\n\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'preventOverflow',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tboundary: 'viewport',\n\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t\ttether: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t});\n\t\t}\n\n\t\tdocument.addEventListener('click', this.documentClickListener);\n\t\tthis.isDropdownVisible = true;\n\t}\n\n\tprivate closeDropdown(): void {\n\t\tif (this.dropdownContent) {\n\t\t\tthis.viewContainer.clear();\n\t\t\tthis.dropdownContent = null;\n\t\t\tthis.popperInstance?.destroy();\n\t\t}\n\t\tdocument.removeEventListener('click', this.documentClickListener);\n\t\tthis.isDropdownVisible = false;\n\t}\n\n\tprivate onDocumentClick(event: MouseEvent): void {\n\t\tif (\n\t\t\tthis.wrapperElement &&\n\t\t\t!this.wrapperElement.contains(event.target as Node) &&\n\t\t\t!this.elementRef.nativeElement.contains(event.target as Node)\n\t\t) {\n\t\t\tthis.closeDropdown();\n\t\t}\n\t}\n\n\tprivate addDropdownLinksListener(): void {\n\t\tconst links: NodeListOf<Element> | undefined = this.dropdownContent?.querySelectorAll('.dropdown-item');\n\t\tlinks?.forEach(link => {\n\t\t\tthis.renderer.listen(link, 'click', () => {\n\t\t\t\tthis.closeDropdown();\n\t\t\t});\n\t\t});\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-list-group-item-avatar]',\n\tstandalone: true,\n})\nexport class ListGroupItemAvatarDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item-avatar');\n\t}\n}\n","import { Directive, ElementRef, EventEmitter, Input, OnInit, Output, Renderer2, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'li[app-list-group-item]',\n\tstandalone: true,\n})\nexport class ListGroupItemDirective implements OnInit {\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\t_isActive: boolean = false;\n\t@Input() set isActive(val: boolean) {\n\t\tthis._isActive = val;\n\t\tif (val) {\n\t\t\tthis.elementRef.nativeElement.classList.add('focus-active');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('focus-active');\n\t\t}\n\t}\n\n\t@Output() onOutsideClick: EventEmitter<void> = new EventEmitter<void>();\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item');\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item-action');\n\t\tthis.elementRef.nativeElement.classList.add('d-flex', 'flex-row', 'align-items-center');\n\n\t\tthis.renderer.listen('window', 'click', (e: Event) => {\n\t\t\tif (e.target !== this.elementRef.nativeElement) {\n\t\t\t\tthis._isActive = false;\n\t\t\t\tthis.elementRef.nativeElement.classList.remove('focus-active');\n\t\t\t\tthis.onOutsideClick.next();\n\t\t\t}\n\t\t});\n\t}\n}\n","import { Directive, ElementRef, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'ul[app-list-group]',\n\tstandalone: true,\n})\nexport class ListGroupDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group');\n\t\tthis.elementRef.nativeElement.classList.add('list-group-flush');\n\t}\n}\n","import { Directive, Input } from '@angular/core';\nimport { Placement } from '@popperjs/core';\n\n@Directive({\n\tselector: '[appTooltip]',\n\tstandalone: true,\n})\nexport class TooltipDirective {\n\t@Input('appTooltip') tooltip!: string;\n\t@Input() placement: Placement = 'bottom-start';\n\n\t// private readonly elementRef: ElementRef = inject(ElementRef);\n\t// private readonly renderer: Renderer2 = inject(Renderer2);\n\t// private readonly viewContainer: ViewContainerRef = inject(ViewContainerRef);\n\n\t// private wrapperElement!: HTMLElement | null;\n\t// private dropdownContent!: HTMLElement | null;\n\t// private popperInstance?: Instance;\n\n\t// usage - i.e. on button:\n\t// <button [app-tooltip]=\"my tooltip text\" placement=\"bottom\"></button>\n\t// onmouseenter -> create tooltip component on the fly and 'attach' to elementRef, set ng-content by tooltip directive\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { AbstractControl, FormControl } from '@angular/forms';\n\n@Pipe({\n\tname: 'formControl',\n\tstandalone: true,\n})\nexport class FormControlPipe implements PipeTransform {\n\ttransform(value: AbstractControl): FormControl<(typeof value)['value']> {\n\t\treturn value as FormControl<(typeof value)['value']>;\n\t}\n}\n","import { Injectable } from '@angular/core';\n\n@Injectable({ providedIn: 'root' })\nexport class ImageService {\n\tasync compress(imageBase64: string, quality: number = 0.8, fileType: string = 'image/jpeg'): Promise<string> {\n\t\tconst img: HTMLImageElement = await this.load(imageBase64);\n\t\tconst canvas: HTMLCanvasElement = this.createCanvas();\n\t\tthis.drawImage(canvas, img);\n\t\treturn canvas.toDataURL(fileType, quality);\n\t}\n\n\tasync toBlob(imageBase64: string, quality: number = 1, fileType: string = 'image/jpeg'): Promise<Blob> {\n\t\tconst img: HTMLImageElement = await this.load(imageBase64);\n\t\tconst canvas: HTMLCanvasElement = this.createCanvas();\n\t\tthis.drawImage(canvas, img);\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tcanvas.toBlob(\n\t\t\t\tblob => {\n\t\t\t\t\tif (blob) {\n\t\t\t\t\t\tresolve(blob);\n\t\t\t\t\t} else {\n\t\t\t\t\t\treject('Error on converting image to blob');\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tfileType,\n\t\t\t\tquality\n\t\t\t);\n\t\t});\n\t}\n\n\tprivate load(imageBase64: string): Promise<HTMLImageElement> {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tconst img: HTMLImageElement = new Image();\n\t\t\timg.onload = (): void => resolve(img);\n\t\t\timg.onerror = (event): void => reject(event);\n\t\t\timg.src = imageBase64;\n\t\t});\n\t}\n\n\tprivate createCanvas(): HTMLCanvasElement {\n\t\treturn document.createElement('canvas');\n\t}\n\n\tprivate drawImage(canvas: HTMLCanvasElement, img: HTMLImageElement): void {\n\t\tconst context: CanvasRenderingContext2D = canvas.getContext('2d')!;\n\t\tcanvas.width = img.width;\n\t\tcanvas.height = img.height;\n\t\tcontext.drawImage(img, 0, 0, canvas.width, canvas.height);\n\t}\n}\n","import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\n\n@Injectable({ providedIn: 'root' })\nexport class LoadingIndicatorService {\n\tshow: BehaviorSubject<void> = new BehaviorSubject<void>(undefined);\n\thide: BehaviorSubject<void> = new BehaviorSubject<void>(undefined);\n}\n","import { Injectable } from '@angular/core';\n\n@Injectable({ providedIn: 'root' })\nexport class LocalService {\n\tget<T>(key: string): T | null {\n\t\tlet result: T | null = null;\n\t\tconst local: string | null = localStorage.getItem(key);\n\t\tif (local) {\n\t\t\tresult = JSON.parse(local);\n\t\t}\n\t\treturn result;\n\t}\n\n\tset<T>(key: string, val: T): void {\n\t\tlocalStorage.setItem(key, JSON.stringify(val));\n\t}\n\n\tremove(key: string): void {\n\t\tlocalStorage.removeItem(key);\n\t}\n\n\tremoveAll(): void {\n\t\tlocalStorage.clear();\n\t}\n}\n","import { ComponentType, DomPortalOutlet, TemplatePortal } from '@angular/cdk/portal';\nimport { ComponentRef, Injectable, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { BaseModalComponent } from '../components';\n\n@Injectable({ providedIn: 'root' })\nexport class ModalService {\n\tprivate viewContainerRef?: ViewContainerRef;\n\tprivate portalHost!: DomPortalOutlet;\n\n\tinit(viewContainerRef: ViewContainerRef): void {\n\t\tthis.portalHost = new DomPortalOutlet(document.body);\n\t\tthis.viewContainerRef = viewContainerRef;\n\t}\n\n\tshowTemplate(templateRef: TemplateRef<unknown>): void {\n\t\tif (this.viewContainerRef) {\n\t\t\tconst newPortal: TemplatePortal = new TemplatePortal(templateRef, this.viewContainerRef);\n\t\t\tthis.portalHost.attach(newPortal);\n\t\t} else {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t}\n\n\tshowComponent<T extends BaseModalComponent>(component: ComponentType<T>): ComponentRef<T> {\n\t\tif (!this.viewContainerRef) {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t\treturn this.viewContainerRef.createComponent(component);\n\t}\n\n\thide(): void {\n\t\tthis.portalHost.detach();\n\t}\n}\n","import { ComponentPortal, DomPortalOutlet } from '@angular/cdk/portal';\nimport { ComponentFactoryResolver, ComponentRef, Injectable, ViewContainerRef, inject } from '@angular/core';\nimport { ToastComponent } from '../components';\n\n@Injectable({ providedIn: 'root' })\nexport class ToastService {\n\tprivate readonly componentFactoryResolver: ComponentFactoryResolver = inject(ComponentFactoryResolver);\n\tviewContainerRef?: ViewContainerRef;\n\tportalHost!: DomPortalOutlet;\n\n\tinit(viewContainerRef: ViewContainerRef): void {\n\t\tthis.portalHost = new DomPortalOutlet(document.body);\n\t\tthis.viewContainerRef = viewContainerRef;\n\t}\n\n\tshow(message: string, timeout: number = 1500): void {\n\t\tif (this.viewContainerRef) {\n\t\t\tif (this.portalHost.hasAttached()) {\n\t\t\t\tthis.portalHost.detach();\n\t\t\t}\n\n\t\t\tconst componentPortal: ComponentPortal<ToastComponent> = new ComponentPortal(\n\t\t\t\tToastComponent,\n\t\t\t\tthis.viewContainerRef,\n\t\t\t\tnull,\n\t\t\t\tthis.componentFactoryResolver\n\t\t\t);\n\t\t\tconst componentRef: ComponentRef<ToastComponent> = this.portalHost.attachComponentPortal(componentPortal);\n\t\t\tcomponentRef.instance.message = message;\n\t\t\tcomponentRef.instance.onClose.subscribe(() => {\n\t\t\t\tthis.hide();\n\t\t\t});\n\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.hide();\n\t\t\t}, timeout);\n\t\t} else {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t}\n\n\thide(): void {\n\t\tthis.portalHost.detach();\n\t}\n}\n","import { Injectable } from '@angular/core';\nimport { LocalService } from './local.service';\n\n@Injectable({ providedIn: 'root' })\nexport class TokenService {\n\tconstructor(private localService: LocalService) {}\n\n\tget(key: 'accesstoken' | 'refreshtoken'): string | null {\n\t\treturn this.localService.get<string>(key);\n\t}\n\n\tset(key: 'accesstoken' | 'refreshtoken', token: string): void {\n\t\tthis.localService.set(key, token);\n\t}\n\n\tremove(key: 'accesstoken' | 'refreshtoken'): void {\n\t\tthis.localService.remove(key);\n\t}\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors } from '@angular/forms';\n\nexport function dateAfterValidator<T extends { [key: string]: AbstractControl }>(\n\tstartDateControlKey: keyof T & string\n): (control: AbstractControl) => ValidationErrors | null {\n\treturn (endDateControl: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = endDateControl.parent;\n\t\tif (formGroup) {\n\t\t\tconst startDate: string | undefined = (formGroup as FormGroup).get(startDateControlKey)?.value;\n\t\t\tconst endDate: string = endDateControl.value;\n\n\t\t\tif (!startDate || !endDate) {\n\t\t\t\tresult = null;\n\t\t\t} else {\n\t\t\t\tconst start: Date = new Date(startDate);\n\t\t\t\tconst end: Date = new Date(endDate);\n\n\t\t\t\tresult = start < end ? null : { dateAfterInvalid: true, startDateValue: startDate };\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors } from '@angular/forms';\n\nexport function matchValidator<T extends { [key: string]: AbstractControl }>(\n\ttoMatchControlKey: keyof T & string\n): (control: AbstractControl) => ValidationErrors | null {\n\treturn (control: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = control.parent;\n\t\tif (formGroup) {\n\t\t\tconst toMatchValue: unknown = (formGroup as FormGroup).get(toMatchControlKey)?.value;\n\t\t\tconst currentValue: unknown = control.value;\n\n\t\t\tif (!toMatchValue || !currentValue) {\n\t\t\t\tresult = null;\n\t\t\t} else {\n\t\t\t\tresult = toMatchValue === currentValue ? null : { match: true };\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors, ValidatorFn } from '@angular/forms';\n\nexport function timeAfterValidator<T extends { [key: string]: AbstractControl }>(startTimeControlKey: keyof T & string): ValidatorFn {\n\treturn (control: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = control.parent;\n\t\tif (formGroup) {\n\t\t\tconst startTimeControl: AbstractControl | null = (formGroup as FormGroup).get(startTimeControlKey);\n\t\t\tif (startTimeControl) {\n\t\t\t\tif (!control.value || !startTimeControl.value) {\n\t\t\t\t\tresult = null; // Keine Validierung, wenn entweder Start- oder Endzeit fehlt\n\t\t\t\t}\n\n\t\t\t\tconst startTime: string = startTimeControl.value;\n\t\t\t\tconst endTime: string = control.value;\n\n\t\t\t\t// Umwandlung der Zeit in Minuten (z.B. 20:00 Uhr = 1200 Minuten)\n\t\t\t\tif (startTime && endTime) {\n\t\t\t\t\tconst startMinutes: number = convertToMinutes(startTime);\n\t\t\t\t\tconst endMinutes: number = convertToMinutes(endTime);\n\t\t\t\t\tif (endMinutes <= startMinutes) {\n\t\t\t\t\t\tresult = { timeAfterError: startTimeControl.value };\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n\n// Funktion zur Umwandlung von Zeit in Minuten\nfunction convertToMinutes(time: string): number {\n\tconst [hours, minutes] = time.split(':').map(Number);\n\treturn hours * 60 + minutes;\n}\n","/*\n * Public API Surface of ngx-gccb\n */\n\nexport * from './lib/animations';\nexport * from './lib/components';\nexport * from './lib/decorators';\n\nexport * from './lib/directives/autofocus.directive';\nexport * from './lib/directives/button.directive';\nexport * from './lib/directives/card-body.directive';\nexport * from './lib/directives/card.directive';\nexport * from './lib/directives/col.directive';\nexport * from './lib/directives/dropdown.directive';\nexport * from './lib/directives/form-input.directive';\nexport * from './lib/directives/form-label.directive';\nexport * from './lib/directives/form-select.directive';\nexport * from './lib/directives/icon-button.directive';\nexport * from './lib/directives/list-group-item-avatar.directive';\nexport * from './lib/directives/list-group-item.directive';\nexport * from './lib/directives/list-group.directive';\nexport * from './lib/directives/tooltip.directive';\n\nexport * from './lib/enums';\nexport * from './lib/pipe';\n\nexport * from './lib/services/image.service';\nexport * from './lib/services/loading-indicator.service';\nexport * from './lib/services/local.service';\nexport * from './lib/services/modal.service';\nexport * from './lib/services/toast.service';\nexport * from './lib/services/token.service';\n\nexport * from './lib/validators';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2","i1.LocalService"],"mappings":"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"}
1
+ {"version":3,"file":"ngx-gccb.mjs","sources":["../../../projects/ngx-gccb/src/lib/animations/fade-right.animation.ts","../../../projects/ngx-gccb/src/lib/animations/fade-up.animation.ts","../../../projects/ngx-gccb/src/lib/components/date-picker/date-picker.component.ts","../../../projects/ngx-gccb/src/lib/components/date-picker/date-picker.component.html","../../../projects/ngx-gccb/src/lib/components/form/form-errors/form-errors.component.ts","../../../projects/ngx-gccb/src/lib/directives/form-input.directive.ts","../../../projects/ngx-gccb/src/lib/directives/form-label.directive.ts","../../../projects/ngx-gccb/src/lib/directives/form-select.directive.ts","../../../projects/ngx-gccb/src/lib/components/form/form-input/form-input.component.ts","../../../projects/ngx-gccb/src/lib/components/form/form-input/form-input.component.html","../../../projects/ngx-gccb/src/lib/components/loading-indicator/loading-indicator.component.ts","../../../projects/ngx-gccb/src/lib/components/loading-indicator/loading-indicator.component.html","../../../projects/ngx-gccb/src/lib/components/modal/base-modal.component.ts","../../../projects/ngx-gccb/src/lib/directives/icon-button.directive.ts","../../../projects/ngx-gccb/src/lib/components/modal/modal.component.ts","../../../projects/ngx-gccb/src/lib/components/modal/modal.component.html","../../../projects/ngx-gccb/src/lib/components/off-canvas/off-canvas.component.ts","../../../projects/ngx-gccb/src/lib/components/off-canvas/off-canvas.component.html","../../../projects/ngx-gccb/src/lib/components/tabs/tab-content.component.ts","../../../projects/ngx-gccb/src/lib/components/tabs/tab-content.component.html","../../../projects/ngx-gccb/src/lib/components/tabs/tab.component.ts","../../../projects/ngx-gccb/src/lib/components/tabs/tab.component.html","../../../projects/ngx-gccb/src/lib/components/tabs/tabs.component.ts","../../../projects/ngx-gccb/src/lib/components/tabs/tabs.component.html","../../../projects/ngx-gccb/src/lib/components/toast/toast.component.ts","../../../projects/ngx-gccb/src/lib/decorators/class.decorator.ts","../../../projects/ngx-gccb/src/lib/enums/logtype.enum.ts","../../../projects/ngx-gccb/src/lib/decorators/log.decorator.ts","../../../projects/ngx-gccb/src/lib/directives/autofocus.directive.ts","../../../projects/ngx-gccb/src/lib/directives/button.directive.ts","../../../projects/ngx-gccb/src/lib/directives/card-body.directive.ts","../../../projects/ngx-gccb/src/lib/directives/card.directive.ts","../../../projects/ngx-gccb/src/lib/directives/col.directive.ts","../../../projects/ngx-gccb/src/lib/directives/dropdown.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group-item-avatar.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group-item.directive.ts","../../../projects/ngx-gccb/src/lib/directives/list-group.directive.ts","../../../projects/ngx-gccb/src/lib/directives/tooltip.directive.ts","../../../projects/ngx-gccb/src/lib/pipe/form-control.pipe.ts","../../../projects/ngx-gccb/src/lib/services/image.service.ts","../../../projects/ngx-gccb/src/lib/services/loading-indicator.service.ts","../../../projects/ngx-gccb/src/lib/services/local.service.ts","../../../projects/ngx-gccb/src/lib/services/modal.service.ts","../../../projects/ngx-gccb/src/lib/services/toast.service.ts","../../../projects/ngx-gccb/src/lib/services/token.service.ts","../../../projects/ngx-gccb/src/lib/validators/dateAfter.validator.ts","../../../projects/ngx-gccb/src/lib/validators/match.validator.ts","../../../projects/ngx-gccb/src/lib/validators/timeAfter.validator.ts","../../../projects/ngx-gccb/src/public-api.ts","../../../projects/ngx-gccb/src/ngx-gccb.ts"],"sourcesContent":["import { animate, AnimationTriggerMetadata, style, transition, trigger } from '@angular/animations';\n\nexport const FadeRightAnimation: AnimationTriggerMetadata = trigger('fadeRightAnimation', [\n\ttransition(':enter', [\n\t\tstyle({ transform: 'translateX(-100%)', zIndex: 9999 }),\n\t\tanimate('200ms ease-in', style({ transform: 'translateX(0%)' })),\n\t]),\n\ttransition(':leave', [animate('200ms ease-in', style({ transform: 'translateX(-100%)' }))]),\n]);\n","import { animate, AnimationTriggerMetadata, style, transition, trigger } from '@angular/animations';\n\nexport const FadeAnimation: AnimationTriggerMetadata = trigger('fadeAnimation', [\n\ttransition(':enter', [\n\t\tstyle({ opacity: 0, transform: 'translateY(10px)' }),\n\t\tanimate('500ms', style({ opacity: 1, transform: 'translateY(0)' })),\n\t]),\n\ttransition(':leave', [animate('500ms', style({ opacity: 0, transform: 'translateY(10px)' }))]),\n]);\n","/* eslint-disable no-console */\n/* eslint-disable @typescript-eslint/no-unused-vars */\nimport { CommonModule } from '@angular/common';\nimport { Component, OnInit } from '@angular/core';\n\n@Component({\n\tselector: 'app-date-picker',\n\ttemplateUrl: './date-picker.component.html',\n\timports: [CommonModule],\n})\nexport class DatePickerComponent implements OnInit {\n\tcurrentDate: Date = new Date();\n\n\t// eslint-disable-next-line @angular-eslint/no-empty-lifecycle-method\n\tngOnInit(): void {\n\t\t// const firstDayOfMonth: Date = this.currentDate.firstDayOfMonth();\n\t\t// console.warn(firstDayOfMonth, firstDayOfMonth.getDate(), firstDayOfMonth.getDay());\n\t\t// const weekCount: number = getWeekCount(this.currentDate.getFullYear(), this.currentDate.getMonth(), DayOfWeek.Monday);\n\t\t// console.warn(weekCount);\n\t\t// const weeks: unknown[] = [];\n\t\t// for (let i: number = 0; i <= weekCount; i++) {\n\t\t// for(let){\n\t\t// }\n\t\t// }\n\t}\n}\n\nenum DayOfWeek {\n\t'Sunday' = 0,\n\t'Monday' = 1,\n\t'Tuesday' = 2,\n\t'Wednesday' = 3,\n\t'Thursday' = 4,\n\t'Friday' = 5,\n\t'Saturday' = 6,\n}\n\nfunction getWeekCount(year: number, month: number, startDayOfWeek: DayOfWeek): number {\n\t// month_number is in the range 0..11\n\n\t// Get the first day of week week day (0: Sunday, 1: Monday, ...)\n\tconst firstDayOfWeek: DayOfWeek = startDayOfWeek || DayOfWeek.Sunday;\n\tconst firstOfMonth: Date = new Date(year, month, 1);\n\tconst lastOfMonth: Date = new Date(year, month + 1, 0);\n\tconst numberOfDaysInMonth: number = lastOfMonth.getDate();\n\tconst firstWeekDay: number = (firstOfMonth.getDay() - firstDayOfWeek + 7) % 7;\n\tconst used: number = firstWeekDay + numberOfDaysInMonth;\n\n\treturn Math.ceil(used / 7);\n}\n","coming soon\n","import { CommonModule } from '@angular/common';\nimport { Component, Input, OnChanges, SimpleChanges } from '@angular/core';\nimport { ValidationErrors } from '@angular/forms';\n\n@Component({\n\tselector: 'app-form-errors',\n\ttemplate: `\n\t\t<div class=\"invalid-feedback d-block\">\n\t\t\t@if (errorMessages) {\n\t\t\t\t@for (errorMessage of errorMessages; track $index) {\n\t\t\t\t\t<div>{{ errorMessage }}</div>\n\t\t\t\t}\n\t\t\t}\n\t\t</div>\n\t`,\n\timports: [CommonModule],\n})\nexport class FormErrorsComponent implements OnChanges {\n\t@Input() errors: ValidationErrors | null = null;\n\t// @Input() customErrorMessages?: IErrorMessage; // TODO\n\n\terrorMessages: string[] = [];\n\n\tngOnChanges(changes: SimpleChanges): void {\n\t\tif (changes['errors']) {\n\t\t\tconst previousValue: ValidationErrors = changes['errors'].previousValue;\n\t\t\tconst currentValue: ValidationErrors = changes['errors'].currentValue;\n\n\t\t\tif (JSON.stringify(previousValue) !== JSON.stringify(currentValue)) {\n\t\t\t\tthis.errorMessages = [];\n\t\t\t\tfor (const key in currentValue) {\n\t\t\t\t\tif (this.errorMessageDictionary[key]) {\n\t\t\t\t\t\tthis.errorMessages.push(this.errorMessageDictionary[key](currentValue));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\terrorMessageDictionary: IErrorMessage = {\n\t\trequired: () => 'Field is required',\n\t\trequiredTrue: () => 'Field is required',\n\t\temail: () => 'Invalid E-Mail',\n\t\tmin: (errors: ValidationErrors) => `At least ${errors['min']?.requiredLength} characters are required`,\n\t\tminlength: (errors: ValidationErrors) => `At least ${errors['minlength']?.requiredLength} characters are required`,\n\t\tmax: (errors: ValidationErrors) => `Maximum of ${errors['max']?.requiredLength} characters exceeded`,\n\t\tmaxlength: (errors: ValidationErrors) => `Maximum of ${errors['maxlength']?.requiredLength} characters exceeded`,\n\t\tpattern: () => `Input does not match pattern`,\n\t\tdateAfterInvalid: (errors: ValidationErrors) => `Date must be after ${errors?.['startDateValue']}`,\n\t\tmatch: () => `Input does not match!`,\n\t\ttimeAfterError: (errors: ValidationErrors) => `The time must be after ${errors?.['timeAfterError']}`,\n\t};\n}\n\ninterface IErrorMessage {\n\t[key: string]: (error: ValidationErrors) => string;\n}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'input[app-form-input],textarea[app-form-input]',\n\tstandalone: true,\n})\nexport class FormInputDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLElement> = inject(ElementRef<HTMLElement>);\n\n\t@Input() set formInputInvalid(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.elementRef.nativeElement.classList.add('is-invalid');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('is-invalid');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('form-control');\n\t}\n}\n","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n\tselector: 'label[app-form-label]',\n\tstandalone: true,\n})\nexport class FormLabelDirective {\n\t@HostBinding('class')\n\telementClass: string = 'form-label';\n}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'select[app-form-select]',\n\tstandalone: true,\n})\nexport class FormSelectDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLElement> = inject(ElementRef<HTMLElement>);\n\n\t@Input() set formInputInvalid(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.elementRef.nativeElement.classList.add('is-invalid');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('is-invalid');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('form-select');\n\t}\n}\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FormControl, ReactiveFormsModule } from '@angular/forms';\nimport { FormInputDirective } from '../../../directives/form-input.directive';\nimport { FormLabelDirective } from '../../../directives/form-label.directive';\nimport { FormSelectDirective } from '../../../directives/form-select.directive';\nimport { FormErrorsComponent } from '../form-errors';\n\nexport interface ISelectOptions {\n\tlabel: string;\n\tvalue: string;\n\tdisabled?: boolean;\n\tselected?: boolean;\n}\n\n@Component({\n\tselector: 'app-form-input',\n\ttemplateUrl: './form-input.component.html',\n\timports: [ReactiveFormsModule, FormErrorsComponent, FormLabelDirective, FormInputDirective, FormSelectDirective],\n})\nexport class FormInputComponent {\n\t@Input({ required: true }) control!: FormControl;\n\t@Input() inputType: string = 'text';\n\t@Input({ required: true }) inputLabel!: string;\n\t@Input() inputPlaceholder?: string;\n\t@Input() inputId?: string;\n\t@Input({ required: true }) inputName!: string;\n\t@Input() inputTabIndex?: string;\n\t@Input() isSubmitted: boolean = false;\n\t@Input() selectOptions: ISelectOptions[] = [];\n\t@Input() hintText: string = '';\n\n\t@Output() onEnter: EventEmitter<void> = new EventEmitter();\n\t@Output() onChange: EventEmitter<Event> = new EventEmitter();\n\n\thandleSelect(event: Event): void {\n\t\tthis.onChange.next(event);\n\t}\n}\n","<div class=\"form-floating mb-3\">\n\t@if (\n\t\tinputType === 'text' ||\n\t\tinputType === 'number' ||\n\t\tinputType === 'password' ||\n\t\tinputType === 'email' ||\n\t\tinputType === 'date' ||\n\t\tinputType === 'datetime-local' ||\n\t\tinputType === 'time'\n\t) {\n\t\t<input\n\t\t\t[type]=\"inputType\"\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\" />\n\t}\n\t@if (inputType === 'textarea') {\n\t\t<textarea\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-input\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[placeholder]=\"inputPlaceholder\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\tstyle=\"min-height: 100px\">\n\t\t</textarea>\n\t}\n\t@if (inputType === 'select') {\n\t\t<select\n\t\t\t[attr.id]=\"inputId || inputName\"\n\t\t\t[attr.name]=\"inputName\"\n\t\t\t[formControl]=\"control\"\n\t\t\tapp-form-select\n\t\t\t[formInputInvalid]=\"isSubmitted && !!control.errors\"\n\t\t\t[tabIndex]=\"inputTabIndex\"\n\t\t\t(keydown.enter)=\"onEnter.next()\"\n\t\t\t(change)=\"handleSelect($event)\">\n\t\t\t<option value=\"\" disabled selected>Select your option</option>\n\n\t\t\t@for (option of selectOptions; track option.value) {\n\t\t\t\t<option [value]=\"option.value\" [disabled]=\"option.disabled\">\n\t\t\t\t\t{{ option.label }}\n\t\t\t\t</option>\n\t\t\t}\n\t\t</select>\n\t}\n\t<label app-form-label [attr.for]=\"inputName || inputId\"> {{ inputLabel }} </label>\n\n\t@if (hintText) {\n\t\t<div class=\"form-text\">\n\t\t\t{{ hintText }}\n\t\t</div>\n\t}\n\n\t@if (isSubmitted && control.errors) {\n\t\t<app-form-errors [errors]=\"control.errors\" />\n\t}\n</div>\n","import { Component } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faSpinner, IconDefinition } from '@fortawesome/free-solid-svg-icons';\n\n@Component({\n\tselector: 'app-loading-indicator',\n\ttemplateUrl: './loading-indicator.component.html',\n\tstyles: `\n\t\t:host {\n\t\t\tposition: fixed;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tcolor: #495057;\n\t\t}\n\t`,\n\timports: [FontAwesomeModule],\n})\nexport class LoadingIndicatorComponent {\n\tfaSpinner: IconDefinition = faSpinner;\n}\n","<fa-icon animation=\"spin\" size=\"2x\" [icon]=\"faSpinner\"></fa-icon>\n","import { Component } from '@angular/core';\n\n@Component({\n\tselector: 'app-base-modal',\n\ttemplate: ``,\n\tstandalone: true,\n})\nexport class BaseModalComponent {}\n","import { Directive, ElementRef, Input, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'button[app-icon-button]',\n\tstandalone: true,\n})\nexport class IconButtonDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLButtonElement> = inject(ElementRef<HTMLButtonElement>);\n\tcolor!: string;\n\n\t@Input('app-icon-button') set appIconButton(val: string) {\n\t\tthis.color = val || 'primary';\n\t\tthis.elementRef.nativeElement.classList.add(`icon-button-${this.color}`);\n\t}\n\n\t@Input() set shadow(val: boolean) {\n\t\tif (val === true || val === undefined) {\n\t\t\tthis.elementRef.nativeElement.classList.add('shadow-sm');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('shadow-sm');\n\t\t}\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('btn', 'icon-button');\n\t}\n}\n","import { CommonModule } from '@angular/common';\nimport { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faTimes, IconDefinition } from '@fortawesome/free-solid-svg-icons';\nimport { IconButtonDirective } from '../../directives/icon-button.directive';\n\n@Component({\n\tselector: 'app-modal',\n\ttemplateUrl: './modal.component.html',\n\timports: [CommonModule, IconButtonDirective, FontAwesomeModule],\n})\nexport class ModalComponent {\n\t@Input() title: string = '';\n\t@Input() showClose: boolean = true;\n\n\t@Input() set fullScreen(val: boolean) {\n\t\tif (val === true) {\n\t\t\tthis.dialogCssClasses.push(`modal-fullscreen`);\n\t\t} else {\n\t\t\tthis.dialogCssClasses = this.dialogCssClasses.filter(cssClass => cssClass !== 'modal-fullscreen');\n\t\t}\n\t}\n\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n\n\tdialogCssClasses: string[] = [];\n\tfaTimes: IconDefinition = faTimes;\n\n\thandleClickClose(): void {\n\t\tthis.onClose.next();\n\t}\n}\n","<div class=\"modal d-flex justify-content-center align-items-center\" tabindex=\"-1\">\n\t<div class=\"modal-dialog\" [ngClass]=\"dialogCssClasses\">\n\t\t<div class=\"modal-content\">\n\t\t\t<div class=\"modal-header justify-content-between\">\n\t\t\t\t<h5 class=\"modal-title\">{{ title }}</h5>\n\t\t\t\t@if (showClose) {\n\t\t\t\t\t<button app-icon-button=\"secondary\" class=\"ms-2\" (click)=\"handleClickClose()\">\n\t\t\t\t\t\t<fa-icon [icon]=\"faTimes\" />\n\t\t\t\t\t</button>\n\t\t\t\t}\n\t\t\t</div>\n\n\t\t\t<div class=\"modal-body\">\n\t\t\t\t<ng-content />\n\t\t\t</div>\n\n\t\t\t<div class=\"modal-footer\">\n\t\t\t\t<ng-content select=\"[footer]\"></ng-content>\n\t\t\t</div>\n\t\t</div>\n\t</div>\n</div>\n<div class=\"modal-backdrop fade show\"></div>\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\nimport { faTimes, IconDefinition } from '@fortawesome/free-solid-svg-icons';\nimport { IconButtonDirective } from '../../directives/icon-button.directive';\n\n@Component({\n\tselector: 'app-off-canvas',\n\ttemplateUrl: './off-canvas.component.html',\n\tstyles: `\n\t\t:host {\n\t\t\tz-index: 9999;\n\t\t\tdisplay: block;\n\t\t}\n\t`,\n\timports: [FontAwesomeModule, IconButtonDirective],\n})\nexport class OffCanvasComponent {\n\t@Input() title: string = '';\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n\n\tfaTimes: IconDefinition = faTimes;\n\n\thandleClickClose(): void {\n\t\tthis.onClose.next();\n\t}\n}\n","<div class=\"offcanvas offcanvas-start show\" tabindex=\"-1\" id=\"offcanvas\" style=\"z-index: 1051\">\n\t<div class=\"offcanvas-header justify-content-between\">\n\t\t<h5 class=\"offcanvas-title\" id=\"offcanvasLabel\">{{ title }}</h5>\n\t\t<button app-icon-button=\"secondary\" class=\"ml-auto\" (click)=\"handleClickClose()\">\n\t\t\t<fa-icon [icon]=\"faTimes\" />\n\t\t</button>\n\t</div>\n\t<ng-content />\n</div>\n\n<div class=\"modal-backdrop fade show\" (click)=\"handleClickClose()\"></div>\n","import { CommonModule } from '@angular/common';\nimport { Component, model, ModelSignal } from '@angular/core';\n\n@Component({\n\tselector: 'app-tab-content',\n\ttemplateUrl: './tab-content.component.html',\n\tstyleUrl: './tab-content.component.scss',\n\timports: [CommonModule],\n})\nexport class TabContentComponent {\n\tisActive: ModelSignal<boolean> = model(false);\n}\n","<div class=\"tab-content\" [ngClass]=\"{ active: isActive() }\">\n\t<ng-content />\n</div>\n","import { CommonModule } from '@angular/common';\nimport { Component, HostListener, input, InputSignal, model, ModelSignal, output, OutputEmitterRef } from '@angular/core';\nimport { TabContentComponent } from './tab-content.component';\n\n@Component({\n\tselector: 'app-tab',\n\ttemplateUrl: './tab.component.html',\n\tstyleUrl: './tab.component.scss',\n\timports: [CommonModule],\n})\nexport class TabComponent {\n\tisActive: ModelSignal<boolean> = model(false);\n\ttarget: InputSignal<TabContentComponent> = input.required();\n\n\tonSelected: OutputEmitterRef<void> = output<void>();\n\n\t@HostListener('click', ['$event.target'])\n\tonClick(): void {\n\t\tthis.onSelected.emit();\n\t}\n}\n","<div class=\"tab\" [ngClass]=\"{ active: isActive() }\" tabindex=\"0\">\n\t<ng-content />\n</div>\n","import { AfterContentInit, Component, ContentChildren, QueryList } from '@angular/core';\nimport { TabContentComponent } from './tab-content.component';\nimport { TabComponent } from './tab.component';\n\n@Component({\n\tselector: 'app-tabs',\n\ttemplateUrl: './tabs.component.html',\n\tstyleUrl: './tabs.component.scss',\n})\nexport class TabsComponent implements AfterContentInit {\n\t@ContentChildren(TabComponent) tabQueryList!: QueryList<TabComponent>;\n\t@ContentChildren(TabContentComponent) tabContentQueryList!: QueryList<TabContentComponent>;\n\n\tngAfterContentInit(): void {\n\t\tthis.tabQueryList.forEach(tab => {\n\t\t\ttab.onSelected.subscribe(() => this.selectTab(tab));\n\t\t});\n\n\t\t// select first tab on init\n\t\tif (this.tabQueryList.length > 0) {\n\t\t\tconst firstActiveTab: TabComponent | undefined = this.tabQueryList.find(tab => tab.isActive());\n\t\t\tif (firstActiveTab) {\n\t\t\t\tthis.selectTab(firstActiveTab);\n\t\t\t} else {\n\t\t\t\tthis.selectTab(this.tabQueryList.first);\n\t\t\t}\n\t\t}\n\t}\n\n\tselectTab(tabComponent: TabComponent): void {\n\t\tthis.tabQueryList.forEach(tab => tab.isActive.update(() => tab === tabComponent));\n\t\tthis.tabContentQueryList.forEach(tabContent => tabContent.isActive.update(() => tabContent === tabComponent.target()));\n\t}\n}\n","<div class=\"tabs\">\n\t<ng-content select=\"app-tab\" />\n</div>\n<div class=\"tab-contents\">\n\t<ng-content select=\"app-tab-content\" />\n</div>\n","import { Component, EventEmitter, Input, Output } from '@angular/core';\n\n@Component({\n\tselector: 'app-toast',\n\ttemplate: `\n\t\t<div class=\"toast align-items-center text-bg-dark border-0 show\">\n\t\t\t<div class=\"d-flex\">\n\t\t\t\t<div class=\"toast-body\" [innerHTML]=\"message\"></div>\n\t\t\t\t<button class=\"btn-close btn-close-white me-2 m-auto\" (click)=\"onClose.next()\"></button>\n\t\t\t</div>\n\t\t</div>\n\t`,\n\tstyles: `\n\t\t:host {\n\t\t\tposition: fixed;\n\t\t\tbottom: 20px;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%);\n\t\t\tz-index: 1051;\n\t\t}\n\t`,\n})\nexport class ToastComponent {\n\t@Input() message?: string;\n\t@Output() onClose: EventEmitter<void> = new EventEmitter();\n}\n","import { DecoratorClassType } from './decorator.types';\n\nexport const Class =\n\t(className: string): DecoratorClassType =>\n\t<T extends abstract new (...args: unknown[]) => unknown>(obj: T): void => {\n\t\tObject.defineProperty(obj.prototype, 'className', {\n\t\t\tvalue: className,\n\t\t\twritable: false,\n\t\t});\n\t};\n","export enum LogType {\n\tlog = 'log',\n\tinfo = 'info',\n\twarn = 'warn',\n\tdebug = 'debug',\n\terror = 'error',\n}\n","/* eslint-disable @typescript-eslint/naming-convention */\n\nimport { LogType } from '../enums';\nimport { DecoratorMethodType } from './decorator.types';\n\nexport function Log(methodName?: string, logType: LogType = LogType.log, logArgs: boolean = false): DecoratorMethodType {\n\treturn function (target: object, key: string | symbol, descriptor: PropertyDescriptor): PropertyDescriptor {\n\t\tconst originalMethod: (...args: unknown[]) => unknown = descriptor.value as (...args: unknown[]) => unknown;\n\n\t\tdescriptor.value = function (...args: unknown[]): unknown {\n\t\t\tconst className: string = target.constructor.name;\n\t\t\tconst newMethodName: string = methodName || key.toString();\n\n\t\t\tconst logStatements: unknown[] = [className, newMethodName, ...(logArgs ? args : [])];\n\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole[logType](...logStatements);\n\n\t\t\treturn originalMethod.apply(this, args);\n\t\t};\n\n\t\treturn descriptor;\n\t};\n}\n","import { AfterViewInit, Directive, ElementRef, inject, NgZone } from '@angular/core';\n\n@Directive({\n\tselector: '[app-autofocus]',\n\tstandalone: true,\n})\nexport class AutofocusDirective implements AfterViewInit {\n\tprivate readonly ngZone: NgZone = inject(NgZone);\n\tprivate readonly el: ElementRef = inject(ElementRef);\n\n\tngAfterViewInit(): void {\n\t\tthis.ngZone.runOutsideAngular(() => {\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.el.nativeElement.focus();\n\t\t\t}, 0);\n\t\t});\n\t}\n}\n","import { Directive, ElementRef, HostListener, Input, OnInit, Renderer2, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'button[app-button]',\n\tstandalone: true,\n})\nexport class ButtonDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLButtonElement> = inject(ElementRef<HTMLButtonElement>);\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tcolor!: string;\n\t_variant: string = 'contained';\n\n\t@HostListener('focus', ['$event']) onFocus(): void {\n\t\tthis.isFocused = true;\n\t}\n\n\t@HostListener('blur', ['$event']) onblur(): void {\n\t\tthis.isFocused = false;\n\t}\n\n\tset isFocused(val: boolean) {\n\t\tif (val) {\n\t\t\tthis.elementRef.nativeElement.classList.add(`focus-ring-${this.color}`);\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove(`focus-ring-${this.color}`);\n\t\t}\n\t}\n\n\t@Input('app-button') set appButton(val: string) {\n\t\tthis.color = val || 'primary';\n\t}\n\n\t@Input() set variant(val: 'contained' | 'outline' | 'text') {\n\t\tthis._variant = val;\n\t}\n\n\t@Input() set size(val: string) {\n\t\tthis.elementRef.nativeElement.classList.add(`btn-${val || 'sm'}`);\n\t}\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('btn');\n\t\tif (this._variant === 'outline' || this._variant === 'text') {\n\t\t\tthis.elementRef.nativeElement.classList.add(`btn-${this._variant}-${this.color}`);\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.add(`btn-${this.color}`);\n\t\t}\n\t\tthis.elementRef.nativeElement.classList.add('flex-shrink-0');\n\t\tthis.renderer.setAttribute(this.elementRef.nativeElement, 'type', 'button');\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-card-body]',\n\tstandalone: true,\n})\nexport class CardBodyDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('card-body');\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-card]',\n\tstandalone: true,\n})\nexport class CardDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('card');\n\t}\n}\n","import { AfterViewInit, Directive, ElementRef, inject, Input } from '@angular/core';\n\n/* experimental */\n\n@Directive({\n\tselector: '[col]',\n\tstandalone: true,\n})\nexport class ColDirective implements AfterViewInit {\n\tprivate readonly el: ElementRef = inject(ElementRef);\n\tspan: string = 'col';\n\n\t@Input() set col(val: string | null) {\n\t\tif (val) {\n\t\t\tthis.span = val;\n\t\t}\n\t}\n\n\tngAfterViewInit(): void {\n\t\t(this.el.nativeElement as HTMLElement).classList.add(this.span);\n\t}\n}\n","import {\n\tDirective,\n\tElementRef,\n\tEmbeddedViewRef,\n\tHostListener,\n\tinject,\n\tInput,\n\tOnInit,\n\tRenderer2,\n\tTemplateRef,\n\tViewContainerRef,\n} from '@angular/core';\nimport { createPopper, Instance, Placement } from '@popperjs/core';\n\n@Directive({\n\tselector: '[appDropdown]',\n\tstandalone: true,\n})\nexport class DropdownDirective implements OnInit {\n\t@Input('appDropdown') dropdownTemplate!: TemplateRef<unknown>;\n\t@Input() placement: Placement = 'bottom-start';\n\n\tprivate readonly elementRef: ElementRef = inject(ElementRef);\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tprivate readonly viewContainer: ViewContainerRef = inject(ViewContainerRef);\n\n\tprivate wrapperElement!: HTMLElement | null;\n\tprivate dropdownContent!: HTMLElement | null;\n\tprivate isDropdownVisible: boolean = false;\n\tprivate popperInstance?: Instance;\n\n\tprivate documentClickListener!: (event: MouseEvent) => void;\n\n\tconstructor() {\n\t\tthis.documentClickListener = this.onDocumentClick.bind(this);\n\t}\n\n\tngOnInit(): void {\n\t\tif (!this.wrapperElement) {\n\t\t\tthis.wrapperElement = this.renderer.createElement('div');\n\t\t\tthis.renderer.addClass(this.wrapperElement, 'dropdown');\n\t\t\tconst parent: HTMLElement = this.elementRef.nativeElement.parentNode;\n\t\t\tthis.renderer.insertBefore(parent, this.wrapperElement, this.elementRef.nativeElement);\n\t\t\tthis.renderer.appendChild(this.wrapperElement, this.elementRef.nativeElement);\n\t\t}\n\t}\n\n\t@HostListener('click')\n\ttoggleDropdown(): void {\n\t\tif (this.isDropdownVisible) {\n\t\t\tthis.closeDropdown();\n\t\t} else {\n\t\t\tthis.openDropdown();\n\t\t}\n\t}\n\n\tprivate openDropdown(): void {\n\t\tif (!this.dropdownContent && this.wrapperElement) {\n\t\t\tconst dropdownView: EmbeddedViewRef<unknown> = this.viewContainer.createEmbeddedView(this.dropdownTemplate);\n\t\t\tthis.dropdownContent = dropdownView.rootNodes[0];\n\t\t\tthis.renderer.appendChild(this.wrapperElement, this.dropdownContent);\n\n\t\t\tthis.addDropdownLinksListener();\n\n\t\t\tthis.popperInstance = createPopper(this.wrapperElement, this.dropdownContent!, {\n\t\t\t\tplacement: this.placement,\n\t\t\t\tmodifiers: [\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'offset',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\toffset: ({ placement }: { placement: Placement }): number[] => {\n\t\t\t\t\t\t\t\tif (placement.startsWith('bottom')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetHeight as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (placement.startsWith('top')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetHeight as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (placement.startsWith('left')) {\n\t\t\t\t\t\t\t\t\treturn [0, -(this.wrapperElement?.offsetWidth as number)];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\treturn [0, 0];\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'flip',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tfallbackPlacements: ['right-start', 'top-start', 'left-start'],\n\t\t\t\t\t\t\tboundary: 'viewport',\n\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: 'preventOverflow',\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tboundary: 'viewport',\n\t\t\t\t\t\t\tpadding: 0,\n\t\t\t\t\t\t\ttether: false,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t],\n\t\t\t});\n\t\t}\n\n\t\tdocument.addEventListener('click', this.documentClickListener);\n\t\tthis.isDropdownVisible = true;\n\t}\n\n\tprivate closeDropdown(): void {\n\t\tif (this.dropdownContent) {\n\t\t\tthis.viewContainer.clear();\n\t\t\tthis.dropdownContent = null;\n\t\t\tthis.popperInstance?.destroy();\n\t\t}\n\t\tdocument.removeEventListener('click', this.documentClickListener);\n\t\tthis.isDropdownVisible = false;\n\t}\n\n\tprivate onDocumentClick(event: MouseEvent): void {\n\t\tif (\n\t\t\tthis.wrapperElement &&\n\t\t\t!this.wrapperElement.contains(event.target as Node) &&\n\t\t\t!this.elementRef.nativeElement.contains(event.target as Node)\n\t\t) {\n\t\t\tthis.closeDropdown();\n\t\t}\n\t}\n\n\tprivate addDropdownLinksListener(): void {\n\t\tconst links: NodeListOf<Element> | undefined = this.dropdownContent?.querySelectorAll('.dropdown-item');\n\t\tlinks?.forEach(link => {\n\t\t\tthis.renderer.listen(link, 'click', () => {\n\t\t\t\tthis.closeDropdown();\n\t\t\t});\n\t\t});\n\t}\n}\n","import { Directive, ElementRef, inject, OnInit } from '@angular/core';\n\n@Directive({\n\tselector: '[app-list-group-item-avatar]',\n\tstandalone: true,\n})\nexport class ListGroupItemAvatarDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item-avatar');\n\t}\n}\n","import { Directive, ElementRef, EventEmitter, Input, OnInit, Output, Renderer2, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'li[app-list-group-item]',\n\tstandalone: true,\n})\nexport class ListGroupItemDirective implements OnInit {\n\tprivate readonly renderer: Renderer2 = inject(Renderer2);\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\t_isActive: boolean = false;\n\t@Input() set isActive(val: boolean) {\n\t\tthis._isActive = val;\n\t\tif (val) {\n\t\t\tthis.elementRef.nativeElement.classList.add('focus-active');\n\t\t} else {\n\t\t\tthis.elementRef.nativeElement.classList.remove('focus-active');\n\t\t}\n\t}\n\n\t@Output() onOutsideClick: EventEmitter<void> = new EventEmitter<void>();\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item');\n\t\tthis.elementRef.nativeElement.classList.add('list-group-item-action');\n\t\tthis.elementRef.nativeElement.classList.add('d-flex', 'flex-row', 'align-items-center');\n\n\t\tthis.renderer.listen('window', 'click', (e: Event) => {\n\t\t\tif (e.target !== this.elementRef.nativeElement) {\n\t\t\t\tthis._isActive = false;\n\t\t\t\tthis.elementRef.nativeElement.classList.remove('focus-active');\n\t\t\t\tthis.onOutsideClick.next();\n\t\t\t}\n\t\t});\n\t}\n}\n","import { Directive, ElementRef, OnInit, inject } from '@angular/core';\n\n@Directive({\n\tselector: 'ul[app-list-group]',\n\tstandalone: true,\n})\nexport class ListGroupDirective implements OnInit {\n\tprivate readonly elementRef: ElementRef<HTMLUListElement> = inject(ElementRef<HTMLUListElement>);\n\n\tngOnInit(): void {\n\t\tthis.elementRef.nativeElement.classList.add('list-group');\n\t\tthis.elementRef.nativeElement.classList.add('list-group-flush');\n\t}\n}\n","import { Directive, Input } from '@angular/core';\nimport { Placement } from '@popperjs/core';\n\n@Directive({\n\tselector: '[appTooltip]',\n\tstandalone: true,\n})\nexport class TooltipDirective {\n\t@Input('appTooltip') tooltip!: string;\n\t@Input() placement: Placement = 'bottom-start';\n\n\t// private readonly elementRef: ElementRef = inject(ElementRef);\n\t// private readonly renderer: Renderer2 = inject(Renderer2);\n\t// private readonly viewContainer: ViewContainerRef = inject(ViewContainerRef);\n\n\t// private wrapperElement!: HTMLElement | null;\n\t// private dropdownContent!: HTMLElement | null;\n\t// private popperInstance?: Instance;\n\n\t// usage - i.e. on button:\n\t// <button [app-tooltip]=\"my tooltip text\" placement=\"bottom\"></button>\n\t// onmouseenter -> create tooltip component on the fly and 'attach' to elementRef, set ng-content by tooltip directive\n}\n","import { Pipe, PipeTransform } from '@angular/core';\nimport { AbstractControl, FormControl } from '@angular/forms';\n\n@Pipe({\n\tname: 'formControl',\n\tstandalone: true,\n})\nexport class FormControlPipe implements PipeTransform {\n\ttransform(value: AbstractControl): FormControl<(typeof value)['value']> {\n\t\treturn value as FormControl<(typeof value)['value']>;\n\t}\n}\n","import { Injectable } from '@angular/core';\n\n@Injectable({ providedIn: 'root' })\nexport class ImageService {\n\tasync compress(imageBase64: string, quality: number = 0.8, fileType: string = 'image/jpeg'): Promise<string> {\n\t\tconst img: HTMLImageElement = await this.load(imageBase64);\n\t\tconst canvas: HTMLCanvasElement = this.createCanvas();\n\t\tthis.drawImage(canvas, img);\n\t\treturn canvas.toDataURL(fileType, quality);\n\t}\n\n\tasync toBlob(imageBase64: string, quality: number = 1, fileType: string = 'image/jpeg'): Promise<Blob> {\n\t\tconst img: HTMLImageElement = await this.load(imageBase64);\n\t\tconst canvas: HTMLCanvasElement = this.createCanvas();\n\t\tthis.drawImage(canvas, img);\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tcanvas.toBlob(\n\t\t\t\tblob => {\n\t\t\t\t\tif (blob) {\n\t\t\t\t\t\tresolve(blob);\n\t\t\t\t\t} else {\n\t\t\t\t\t\treject('Error on converting image to blob');\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tfileType,\n\t\t\t\tquality\n\t\t\t);\n\t\t});\n\t}\n\n\tprivate load(imageBase64: string): Promise<HTMLImageElement> {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tconst img: HTMLImageElement = new Image();\n\t\t\timg.onload = (): void => resolve(img);\n\t\t\timg.onerror = (event): void => reject(event);\n\t\t\timg.src = imageBase64;\n\t\t});\n\t}\n\n\tprivate createCanvas(): HTMLCanvasElement {\n\t\treturn document.createElement('canvas');\n\t}\n\n\tprivate drawImage(canvas: HTMLCanvasElement, img: HTMLImageElement): void {\n\t\tconst context: CanvasRenderingContext2D = canvas.getContext('2d')!;\n\t\tcanvas.width = img.width;\n\t\tcanvas.height = img.height;\n\t\tcontext.drawImage(img, 0, 0, canvas.width, canvas.height);\n\t}\n}\n","import { Injectable } from '@angular/core';\nimport { BehaviorSubject } from 'rxjs';\n\n@Injectable({ providedIn: 'root' })\nexport class LoadingIndicatorService {\n\tshow: BehaviorSubject<void> = new BehaviorSubject<void>(undefined);\n\thide: BehaviorSubject<void> = new BehaviorSubject<void>(undefined);\n}\n","import { Injectable } from '@angular/core';\n\n@Injectable({ providedIn: 'root' })\nexport class LocalService {\n\tget<T>(key: string): T | null {\n\t\tlet result: T | null = null;\n\t\tconst local: string | null = localStorage.getItem(key);\n\t\tif (local) {\n\t\t\tresult = JSON.parse(local);\n\t\t}\n\t\treturn result;\n\t}\n\n\tset<T>(key: string, val: T): void {\n\t\tlocalStorage.setItem(key, JSON.stringify(val));\n\t}\n\n\tremove(key: string): void {\n\t\tlocalStorage.removeItem(key);\n\t}\n\n\tremoveAll(): void {\n\t\tlocalStorage.clear();\n\t}\n}\n","import { ComponentType, DomPortalOutlet, TemplatePortal } from '@angular/cdk/portal';\nimport { ComponentRef, Injectable, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { BaseModalComponent } from '../components';\n\n@Injectable({ providedIn: 'root' })\nexport class ModalService {\n\tprivate viewContainerRef?: ViewContainerRef;\n\tprivate portalHost!: DomPortalOutlet;\n\n\tinit(viewContainerRef: ViewContainerRef): void {\n\t\tthis.portalHost = new DomPortalOutlet(document.body);\n\t\tthis.viewContainerRef = viewContainerRef;\n\t}\n\n\tshowTemplate(templateRef: TemplateRef<unknown>): void {\n\t\tif (this.viewContainerRef) {\n\t\t\tconst newPortal: TemplatePortal = new TemplatePortal(templateRef, this.viewContainerRef);\n\t\t\tthis.portalHost.attach(newPortal);\n\t\t} else {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t}\n\n\tshowComponent<T extends BaseModalComponent>(component: ComponentType<T>): ComponentRef<T> {\n\t\tif (!this.viewContainerRef) {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t\treturn this.viewContainerRef.createComponent(component);\n\t}\n\n\thide(): void {\n\t\tthis.portalHost.detach();\n\t}\n}\n","import { ComponentPortal, DomPortalOutlet } from '@angular/cdk/portal';\nimport { ComponentFactoryResolver, ComponentRef, Injectable, ViewContainerRef, inject } from '@angular/core';\nimport { ToastComponent } from '../components';\n\n@Injectable({ providedIn: 'root' })\nexport class ToastService {\n\tprivate readonly componentFactoryResolver: ComponentFactoryResolver = inject(ComponentFactoryResolver);\n\tviewContainerRef?: ViewContainerRef;\n\tportalHost!: DomPortalOutlet;\n\n\tinit(viewContainerRef: ViewContainerRef): void {\n\t\tthis.portalHost = new DomPortalOutlet(document.body);\n\t\tthis.viewContainerRef = viewContainerRef;\n\t}\n\n\tshow(message: string, timeout: number = 1500): void {\n\t\tif (this.viewContainerRef) {\n\t\t\tif (this.portalHost.hasAttached()) {\n\t\t\t\tthis.portalHost.detach();\n\t\t\t}\n\n\t\t\tconst componentPortal: ComponentPortal<ToastComponent> = new ComponentPortal(\n\t\t\t\tToastComponent,\n\t\t\t\tthis.viewContainerRef,\n\t\t\t\tnull,\n\t\t\t\tthis.componentFactoryResolver\n\t\t\t);\n\t\t\tconst componentRef: ComponentRef<ToastComponent> = this.portalHost.attachComponentPortal(componentPortal);\n\t\t\tcomponentRef.instance.message = message;\n\t\t\tcomponentRef.instance.onClose.subscribe(() => {\n\t\t\t\tthis.hide();\n\t\t\t});\n\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.hide();\n\t\t\t}, timeout);\n\t\t} else {\n\t\t\tthrow Error('no viewcontainer ref is set');\n\t\t}\n\t}\n\n\thide(): void {\n\t\tthis.portalHost.detach();\n\t}\n}\n","import { Injectable } from '@angular/core';\nimport { LocalService } from './local.service';\n\n@Injectable({ providedIn: 'root' })\nexport class TokenService {\n\tconstructor(private localService: LocalService) {}\n\n\tget(key: 'accesstoken' | 'refreshtoken'): string | null {\n\t\treturn this.localService.get<string>(key);\n\t}\n\n\tset(key: 'accesstoken' | 'refreshtoken', token: string): void {\n\t\tthis.localService.set(key, token);\n\t}\n\n\tremove(key: 'accesstoken' | 'refreshtoken'): void {\n\t\tthis.localService.remove(key);\n\t}\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors } from '@angular/forms';\n\nexport function dateAfterValidator<T extends { [key: string]: AbstractControl }>(\n\tstartDateControlKey: keyof T & string\n): (control: AbstractControl) => ValidationErrors | null {\n\treturn (endDateControl: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = endDateControl.parent;\n\t\tif (formGroup) {\n\t\t\tconst startDate: string | undefined = (formGroup as FormGroup).get(startDateControlKey)?.value;\n\t\t\tconst endDate: string = endDateControl.value;\n\n\t\t\tif (!startDate || !endDate) {\n\t\t\t\tresult = null;\n\t\t\t} else {\n\t\t\t\tconst start: Date = new Date(startDate);\n\t\t\t\tconst end: Date = new Date(endDate);\n\n\t\t\t\tresult = start < end ? null : { dateAfterInvalid: true, startDateValue: startDate };\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors } from '@angular/forms';\n\nexport function matchValidator<T extends { [key: string]: AbstractControl }>(\n\ttoMatchControlKey: keyof T & string\n): (control: AbstractControl) => ValidationErrors | null {\n\treturn (control: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = control.parent;\n\t\tif (formGroup) {\n\t\t\tconst toMatchValue: unknown = (formGroup as FormGroup).get(toMatchControlKey)?.value;\n\t\t\tconst currentValue: unknown = control.value;\n\n\t\t\tif (!toMatchValue || !currentValue) {\n\t\t\t\tresult = null;\n\t\t\t} else {\n\t\t\t\tresult = toMatchValue === currentValue ? null : { match: true };\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n","import { AbstractControl, FormArray, FormGroup, ValidationErrors, ValidatorFn } from '@angular/forms';\n\nexport function timeAfterValidator<T extends { [key: string]: AbstractControl }>(startTimeControlKey: keyof T & string): ValidatorFn {\n\treturn (control: AbstractControl): ValidationErrors | null => {\n\t\tlet result: ValidationErrors | null = null;\n\n\t\tconst formGroup: FormGroup<T> | FormArray | null = control.parent;\n\t\tif (formGroup) {\n\t\t\tconst startTimeControl: AbstractControl | null = (formGroup as FormGroup).get(startTimeControlKey);\n\t\t\tif (startTimeControl) {\n\t\t\t\tif (!control.value || !startTimeControl.value) {\n\t\t\t\t\tresult = null; // Keine Validierung, wenn entweder Start- oder Endzeit fehlt\n\t\t\t\t}\n\n\t\t\t\tconst startTime: string = startTimeControl.value;\n\t\t\t\tconst endTime: string = control.value;\n\n\t\t\t\t// Umwandlung der Zeit in Minuten (z.B. 20:00 Uhr = 1200 Minuten)\n\t\t\t\tif (startTime && endTime) {\n\t\t\t\t\tconst startMinutes: number = convertToMinutes(startTime);\n\t\t\t\t\tconst endMinutes: number = convertToMinutes(endTime);\n\t\t\t\t\tif (endMinutes <= startMinutes) {\n\t\t\t\t\t\tresult = { timeAfterError: startTimeControl.value };\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn result;\n\t};\n}\n\n// Funktion zur Umwandlung von Zeit in Minuten\nfunction convertToMinutes(time: string): number {\n\tconst [hours, minutes] = time.split(':').map(Number);\n\treturn hours * 60 + minutes;\n}\n","/*\n * Public API Surface of ngx-gccb\n */\n\nexport * from './lib/animations';\nexport * from './lib/components';\nexport * from './lib/decorators';\n\nexport * from './lib/directives/autofocus.directive';\nexport * from './lib/directives/button.directive';\nexport * from './lib/directives/card-body.directive';\nexport * from './lib/directives/card.directive';\nexport * from './lib/directives/col.directive';\nexport * from './lib/directives/dropdown.directive';\nexport * from './lib/directives/form-input.directive';\nexport * from './lib/directives/form-label.directive';\nexport * from './lib/directives/form-select.directive';\nexport * from './lib/directives/icon-button.directive';\nexport * from './lib/directives/list-group-item-avatar.directive';\nexport * from './lib/directives/list-group-item.directive';\nexport * from './lib/directives/list-group.directive';\nexport * from './lib/directives/tooltip.directive';\n\nexport * from './lib/enums';\nexport * from './lib/pipe';\n\nexport * from './lib/services/image.service';\nexport * from './lib/services/loading-indicator.service';\nexport * from './lib/services/local.service';\nexport * from './lib/services/modal.service';\nexport * from './lib/services/toast.service';\nexport * from './lib/services/token.service';\n\nexport * from './lib/validators';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i2","i1.LocalService"],"mappings":"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"}
@@ -3,4 +3,5 @@ export * from './form';
3
3
  export * from './loading-indicator';
4
4
  export * from './modal';
5
5
  export * from './off-canvas';
6
+ export * from './tabs';
6
7
  export * from './toast';
@@ -0,0 +1,3 @@
1
+ export * from './tab-content.component';
2
+ export * from './tab.component';
3
+ export * from './tabs.component';
@@ -0,0 +1,7 @@
1
+ import { ModelSignal } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TabContentComponent {
4
+ isActive: ModelSignal<boolean>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabContentComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabContentComponent, "app-tab-content", never, { "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, { "isActive": "isActiveChange"; }, never, ["*"], true, never>;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { InputSignal, ModelSignal, OutputEmitterRef } from '@angular/core';
2
+ import { TabContentComponent } from './tab-content.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TabComponent {
5
+ isActive: ModelSignal<boolean>;
6
+ target: InputSignal<TabContentComponent>;
7
+ onSelected: OutputEmitterRef<void>;
8
+ onClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "app-tab", never, { "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": true; "isSignal": true; }; }, { "isActive": "isActiveChange"; "onSelected": "onSelected"; }, never, ["*"], true, never>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { AfterContentInit, QueryList } from '@angular/core';
2
+ import { TabContentComponent } from './tab-content.component';
3
+ import { TabComponent } from './tab.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TabsComponent implements AfterContentInit {
6
+ tabQueryList: QueryList<TabComponent>;
7
+ tabContentQueryList: QueryList<TabContentComponent>;
8
+ ngAfterContentInit(): void;
9
+ selectTab(tabComponent: TabComponent): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "app-tabs", never, {}, {}, ["tabQueryList", "tabContentQueryList"], ["app-tab", "app-tab-content"], true, never>;
12
+ }
@@ -1,11 +1,9 @@
1
- import { AfterViewInit, ElementRef } from '@angular/core';
1
+ import { AfterViewInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class AutofocusDirective implements AfterViewInit {
4
- private el;
5
- private focus;
6
- constructor(el: ElementRef);
7
- set autofocus(condition: boolean);
4
+ private readonly ngZone;
5
+ private readonly el;
8
6
  ngAfterViewInit(): void;
9
7
  static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
10
- static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[autofocus]", never, { "autofocus": { "alias": "autofocus"; "required": false; }; }, {}, never, never, true, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[app-autofocus]", never, {}, {}, never, never, true, never>;
11
9
  }
@@ -5,5 +5,5 @@ export declare class FormInputDirective implements OnInit {
5
5
  set formInputInvalid(val: boolean);
6
6
  ngOnInit(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormInputDirective, "input,textarea[app-form-input]", never, { "formInputInvalid": { "alias": "formInputInvalid"; "required": false; }; }, {}, never, never, true, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormInputDirective, "input[app-form-input],textarea[app-form-input]", never, { "formInputInvalid": { "alias": "formInputInvalid"; "required": false; }; }, {}, never, never, true, never>;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-gccb",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.1.5",
6
6
  "@angular/core": "^19.1.5",