@tiba-spark/client-shared-lib 25.3.0-97 → 25.3.0-98

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.
@@ -5,7 +5,7 @@ import { Directive, HostListener, HostBinding, Input, Optional, NgModule, Inject
5
5
  import { Subject, merge, takeUntil, throwError, of, Observable, from, noop, BehaviorSubject, Subscription, combineLatest, distinctUntilChanged as distinctUntilChanged$1, filter as filter$1, take, tap as tap$1, first as first$1, switchMap, timer, fromEvent, map as map$1, delay as delay$1, debounceTime, catchError as catchError$1, distinctUntilKeyChanged, firstValueFrom } from 'rxjs';
6
6
  import * as i1 from '@angular/forms';
7
7
  import { NG_VALUE_ACCESSOR, Validators } from '@angular/forms';
8
- import * as i1$4 from '@ngx-translate/core';
8
+ import * as i1$5 from '@ngx-translate/core';
9
9
  import { TranslateModule, TranslateStore, TranslateService } from '@ngx-translate/core';
10
10
  import * as i1$2 from '@ngxs/store';
11
11
  import { ofActionDispatched, ofActionCompleted, ofActionErrored, Action, Selector, State, NgxsModule, Select, Store } from '@ngxs/store';
@@ -15,30 +15,30 @@ import { HttpHeaders, HttpResponseBase, HttpResponse, HttpClient, provideHttpCli
15
15
  import moment from 'moment';
16
16
  import { __decorate } from 'tslib';
17
17
  import _, { difference, cloneDeep, matches, clone, isEqual, isNumber as isNumber$1, flatten } from 'lodash';
18
- import * as i1$3 from '@angular/cdk/layout';
18
+ import * as i1$3 from '@angular/material/tooltip';
19
+ import { MatTooltipModule } from '@angular/material/tooltip';
20
+ import * as i1$4 from '@angular/cdk/layout';
19
21
  import moment$1 from 'moment-timezone';
20
22
  import * as i2$2 from '@angular/material/dialog';
21
23
  import { MatDialogModule, MAT_DIALOG_DATA, MatDialogConfig, MatDialogState } from '@angular/material/dialog';
22
- import * as i1$5 from '@angular/material/snack-bar';
24
+ import * as i1$6 from '@angular/material/snack-bar';
23
25
  import { MAT_SNACK_BAR_DATA, MatSnackBarModule } from '@angular/material/snack-bar';
24
- import * as i1$7 from '@angular/router';
26
+ import * as i1$8 from '@angular/router';
25
27
  import { NavigationEnd, ResolveEnd, DefaultUrlSerializer, Router } from '@angular/router';
26
28
  import { Navigate } from '@ngxs/router-plugin';
27
29
  import { Dispatch } from '@ngxs-labs/dispatch-decorator';
28
30
  import * as i9 from '@azure/msal-angular';
29
- import * as i1$6 from '@openid/appauth';
31
+ import * as i1$7 from '@openid/appauth';
30
32
  import { AuthorizationNotifier, RedirectRequestHandler, AuthorizationServiceConfiguration, TokenResponse, AuthorizationRequest, BaseTokenRequestHandler, TokenRequest, GRANT_TYPE_AUTHORIZATION_CODE } from '@openid/appauth';
31
- import * as i4 from '@angular/material/tooltip';
32
- import { MatTooltipModule } from '@angular/material/tooltip';
33
33
  import { trigger, state, style, transition, animate, keyframes } from '@angular/animations';
34
- import * as i1$8 from 'ngx-toastr';
34
+ import * as i1$9 from 'ngx-toastr';
35
35
  import { Toast, ToastrModule } from 'ngx-toastr';
36
36
  import { datadogLogs } from '@datadog/browser-logs';
37
37
  import { HubConnectionBuilder, HttpTransportType, HubConnectionState } from '@microsoft/signalr';
38
38
  import { Workbook } from 'exceljs';
39
39
  import { saveAs } from 'file-saver';
40
40
  import * as i2$1 from '@angular/platform-browser';
41
- import * as i4$1 from '@angular/material/core';
41
+ import * as i4 from '@angular/material/core';
42
42
  import { MatRippleModule } from '@angular/material/core';
43
43
  import CryptoJS from 'crypto-js';
44
44
  import * as mixpanel from 'mixpanel-browser';
@@ -20106,6 +20106,150 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
20106
20106
  }]
20107
20107
  }] });
20108
20108
 
20109
+ class DynamicEllipsisTooltipDirective {
20110
+ constructor(matTooltip, elementRef, renderer) {
20111
+ this.matTooltip = matTooltip;
20112
+ this.elementRef = elementRef;
20113
+ this.renderer = renderer;
20114
+ this.originalPlaceholder = '';
20115
+ this.truncatedPlaceholder = '';
20116
+ }
20117
+ ngAfterViewInit() {
20118
+ if (this.querySelector?.length > 0) {
20119
+ this.element = this.elementRef.nativeElement.querySelector(this.querySelector);
20120
+ }
20121
+ else if (this.findParentElementClass?.length > 0) {
20122
+ this.element = findParentElement(this.elementRef, this.findParentElementClass);
20123
+ }
20124
+ else {
20125
+ this.element = this.elementRef.nativeElement;
20126
+ }
20127
+ this.originalPlaceholder = this.element['placeholder'];
20128
+ if (this.originalPlaceholder?.length > 0) {
20129
+ this.setupListeners();
20130
+ this.setupResizeObserver();
20131
+ this.calculateTruncatedPlaceholder();
20132
+ }
20133
+ }
20134
+ ngOnDestroy() {
20135
+ if (this.resizeObserver) {
20136
+ this.resizeObserver.disconnect();
20137
+ }
20138
+ if (this.focusListener) {
20139
+ this.element.removeEventListener('focus', this.focusListener);
20140
+ }
20141
+ if (this.blurListener) {
20142
+ this.element.removeEventListener('blur', this.blurListener);
20143
+ }
20144
+ }
20145
+ setupListeners() {
20146
+ const input = this.element;
20147
+ this.focusListener = () => {
20148
+ // On focus, use truncated placeholder if overflow exists
20149
+ if (this.isPlaceholderOverflowing()) {
20150
+ this.renderer.setAttribute(input, 'placeholder', this.truncatedPlaceholder);
20151
+ }
20152
+ };
20153
+ this.blurListener = () => {
20154
+ this.renderer.setAttribute(input, 'placeholder', this.truncatedPlaceholder);
20155
+ };
20156
+ input.addEventListener('focus', this.focusListener);
20157
+ input.addEventListener('blur', this.blurListener);
20158
+ }
20159
+ calculateTruncatedPlaceholder() {
20160
+ if (!this.originalPlaceholder)
20161
+ return;
20162
+ const input = this.element;
20163
+ const maxWidth = this.getAvailableWidth();
20164
+ if (this.getTextWidth(this.originalPlaceholder) <= maxWidth) {
20165
+ this.truncatedPlaceholder = this.originalPlaceholder;
20166
+ this.renderer.setAttribute(input, 'placeholder', this.truncatedPlaceholder);
20167
+ return;
20168
+ }
20169
+ // Binary search for optimal length
20170
+ let left = 0;
20171
+ let right = this.originalPlaceholder.length;
20172
+ let bestFit = '';
20173
+ while (left <= right) {
20174
+ const mid = Math.floor((left + right) / 2);
20175
+ const testText = this.originalPlaceholder.substring(0, mid) + '...';
20176
+ const textWidth = this.getTextWidth(testText);
20177
+ if (textWidth <= maxWidth) {
20178
+ bestFit = testText;
20179
+ left = mid + 1;
20180
+ }
20181
+ else {
20182
+ right = mid - 1;
20183
+ }
20184
+ }
20185
+ this.truncatedPlaceholder = bestFit || this.originalPlaceholder.substring(0, 10) + '...';
20186
+ // Apply the truncated placeholder immediately
20187
+ this.renderer.setAttribute(input, 'placeholder', this.truncatedPlaceholder);
20188
+ }
20189
+ getAvailableWidth() {
20190
+ const input = this.element;
20191
+ const computedStyle = window.getComputedStyle(input);
20192
+ const paddingLeft = parseFloat(computedStyle.paddingLeft) || 0;
20193
+ const paddingRight = parseFloat(computedStyle.paddingRight) || 0;
20194
+ return input.clientWidth - paddingLeft - paddingRight;
20195
+ }
20196
+ getTextWidth(text) {
20197
+ const input = this.element;
20198
+ const computedStyle = window.getComputedStyle(input);
20199
+ const canvas = document.createElement('canvas');
20200
+ const context = canvas.getContext('2d');
20201
+ context.font = `${computedStyle.fontSize} ${computedStyle.fontFamily}`;
20202
+ return context.measureText(text).width;
20203
+ }
20204
+ isPlaceholderOverflowing() {
20205
+ const textWidth = this.getTextWidth(this.originalPlaceholder);
20206
+ const availableWidth = this.getAvailableWidth();
20207
+ return textWidth > availableWidth;
20208
+ }
20209
+ setupResizeObserver() {
20210
+ if ('ResizeObserver' in window) {
20211
+ this.resizeObserver = new ResizeObserver(() => {
20212
+ this.calculateTruncatedPlaceholder();
20213
+ });
20214
+ this.resizeObserver.observe(this.element);
20215
+ }
20216
+ }
20217
+ onMouseOver() {
20218
+ if (this.element) {
20219
+ this.checkPlaceholderOverflow();
20220
+ }
20221
+ }
20222
+ checkPlaceholderOverflow() {
20223
+ if (this.originalPlaceholder?.length > 0) {
20224
+ this.matTooltip.disabled = !this.isPlaceholderOverflowing();
20225
+ }
20226
+ else {
20227
+ this.matTooltip.disabled = this.element.scrollWidth <= this.element.clientWidth;
20228
+ }
20229
+ }
20230
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DynamicEllipsisTooltipDirective, deps: [{ token: i1$3.MatTooltip }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
20231
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: DynamicEllipsisTooltipDirective, isStandalone: true, selector: "[matTooltip][querySelector]", inputs: { querySelector: "querySelector", findParentElementClass: "findParentElementClass" }, host: { listeners: { "mouseover": "onMouseOver()" } }, providers: [
20232
+ MatTooltipModule,
20233
+ ], ngImport: i0 }); }
20234
+ }
20235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DynamicEllipsisTooltipDirective, decorators: [{
20236
+ type: Directive,
20237
+ args: [{
20238
+ selector: '[matTooltip][querySelector]',
20239
+ standalone: true,
20240
+ providers: [
20241
+ MatTooltipModule,
20242
+ ]
20243
+ }]
20244
+ }], ctorParameters: () => [{ type: i1$3.MatTooltip }, { type: i0.ElementRef }, { type: i0.Renderer2 }], propDecorators: { querySelector: [{
20245
+ type: Input
20246
+ }], findParentElementClass: [{
20247
+ type: Input
20248
+ }], onMouseOver: [{
20249
+ type: HostListener,
20250
+ args: ['mouseover']
20251
+ }] } });
20252
+
20109
20253
  class FormattedInputDirective {
20110
20254
  constructor(el) {
20111
20255
  this.el = el;
@@ -23398,7 +23542,7 @@ let LayoutState = class LayoutState {
23398
23542
  updateMobileMode(ctx, { isMobile }) {
23399
23543
  ctx.patchState({ isMobile });
23400
23544
  }
23401
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LayoutState, deps: [{ token: i1$3.MediaMatcher }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
23545
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LayoutState, deps: [{ token: i1$4.MediaMatcher }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
23402
23546
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LayoutState }); }
23403
23547
  };
23404
23548
  __decorate([
@@ -23415,7 +23559,7 @@ LayoutState = __decorate([
23415
23559
  ], LayoutState);
23416
23560
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LayoutState, decorators: [{
23417
23561
  type: Injectable
23418
- }], ctorParameters: () => [{ type: i1$3.MediaMatcher }, { type: i1$2.Store }], propDecorators: { updateMobileMode: [] } });
23562
+ }], ctorParameters: () => [{ type: i1$4.MediaMatcher }, { type: i1$2.Store }], propDecorators: { updateMobileMode: [] } });
23419
23563
 
23420
23564
  class BaseComponent {
23421
23565
  constructor() {
@@ -23456,7 +23600,7 @@ class FieldValidationsComponent extends BaseComponent {
23456
23600
  return errors;
23457
23601
  }
23458
23602
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FieldValidationsComponent, deps: [{ token: i1.ControlContainer }], target: i0.ɵɵFactoryTarget.Component }); }
23459
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FieldValidationsComponent, isStandalone: true, selector: "[tb-field-validations]", inputs: { controlName: "controlName", label: "label", errors: "errors", touched: "touched" }, usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"touched || controlContainer.control.get(controlName)?.touched\">\n <ng-container *tbVar=\"getErrors | wrapFn: controlContainer.control.get(controlName)?.errors ?? errors as errors\">\n <div *ngIf=\"ObjectKeys(errors || {}).length > 1; then hasMultiErrors else hasOneError\"></div>\n <ng-template #hasMultiErrors>\n {{ L.invalid | translate: { controlName: label | translate} }}\n </ng-template>\n <ng-template #hasOneError>\n <div *ngIf=\"errors?.required\">\n {{ L.form_validation_required_message | translate }}</div>\n <div *ngIf=\"errors?.invalidDate\">\n {{ L.form_validation_invalid_date_message | translate }}</div>\n <div *ngIf=\"errors?.invalidDateRange\">\n {{ L.form_validation_invalid_date_range | translate }}</div>\n <div *ngIf=\"errors?.invalidTerms\">\n {{ L.form_validation_terms_policy | translate }}</div>\n <div *ngIf=\"errors?.min min\">\n {{ L.form_validation_min_message | translate: { controlName: label | translate, value: errors?.min.min || 0 } }}\n </div>\n <div *ngIf=\"errors?.max\">\n {{ L.form_validation_max_message | translate: { controlName: label | translate, value: errors?.max.max || 0 } }}\n </div>\n <div *ngIf=\"errors?.minlength\">\n {{ L.form_validation_min_length_message | translate: { controlName: label | translate, value: errors?.minlength.requiredLength || 0 } }}\n </div>\n <div *ngIf=\"errors?.maxlength\">\n {{ L.form_validation_max_length_message | translate: { controlName: label | translate, value: errors?.maxlength.requiredLength || 0 } }}\n </div>\n <div *ngIf=\"errors?.invalidNumberLength\">\n {{ L.form_validation_invalid_length_message | translate: { controlName: label | translate, value: errors?.invalidNumberLength.requiredLength\n || 0 } }}\n </div>\n <div *ngIf=\"errors?.integerNumber\">\n {{ L.form_validation_invalid_integer_number_message | translate: { controlName: label | translate, value: errors?.integerNumber.value || 0 }\n }}\n </div>\n <div *ngIf=\"errors?.integerPositiveNumber\">\n {{ L.form_validation_invalid_integer_positive_number_message | translate: { controlName: label | translate, value:\n errors?.integerPositiveNumber.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.decimalNumber\">\n {{ L.form_validation_invalid_decimal_number_message | translate: { controlName: label | translate, value: errors?.decimalNumber.value || 0 }\n }}\n </div>\n <div *ngIf=\"errors?.decimalPositiveNumber\">\n {{ L.form_validation_invalid_decimal_positive_number_message | translate: { controlName: label | translate, value:\n errors?.decimalPositiveNumber.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.positiveNumbers\">\n {{ L.form_validation_invalid_positive_number_message | translate: { controlName: label | translate, value: errors?.positiveNumbers.value || 0\n } }}\n </div>\n <div *ngIf=\"errors?.positiveNumbersGreaterThanZero\">\n {{ L.form_validation_invalid_positive_number_greater_than_zero | translate: { controlName: label | translate, value:\n errors?.positiveNumbersGreaterThanZero.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.mobileNumbers\">\n {{ L.form_validation_invalid_mobile_number_message | translate: { controlName: label | translate, value: errors?.mobileNumbers.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.email\">\n {{ L.form_validation_email_pattern | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.pattern\">\n {{ L.form_validation_password_pattern | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordPolicyRequirements\">\n {{ L.form_validation_password_policy | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordNotMatch\">\n {{ L.form_validation_password_not_match | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordMatch\">\n {{ L.form_validation_password_match | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noWhitespaceWithinSentence\">\n {{ L.form_validation_no_white_space_within_sentence | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noDotWithinSentence\">\n {{ L.form_validation_no_dot_space_within_sentence | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.guidIsValid\">\n {{ L.form_validation_invalid_uuid | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noDefaultAccessProfile\">\n {{ L.no_access_default_profile | translate: { controlName: label | translate,\n companyName: errors?.noDefaultAccessProfile?.companyName } }}\n </div>\n <div *ngIf=\"errors?.noEmoji\">\n {{ L.form_validation_invalid_no_emoji_message | translate: { controlName: label | translate, value: errors?.noEmoji.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.ipv4Format\">\n {{ L.form_validation_invalid_ipv4_message | translate: { controlName: label | translate, value: errors?.ipv4Format.value } }}\n </div>\n <div *ngIf=\"errors?.alphanumericRegex\">\n {{ L.form_validation_alphanumeric_message | translate: { controlName: label | translate, value: errors?.alphanumericRegex.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.validatePositiveInteger\">\n {{ L.form_validation_invalid_positive_integer_number_message | translate: { controlName: label | translate, value:\n errors?.validatePositiveInteger.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.roleNameAlreadyExists\">\n {{ L.role_name_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.rateNumberAlreadyExists\">\n {{ L.rate_number_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.accessProfileNumberTaken\">\n {{ L.access_profile_number_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.rateNumberIsZero\">\n {{ L.rate_number_is_zero | translate }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_time\">\n {{ L.form_validation_invalid_time | translate: { controlName: label ,from: '00:00',to:'00:00' } }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_time_format\">\n {{ L.form_validation_invalid_time_format | translate: { controlName: label } }}\n </div>\n <div *ngIf=\"errors?.positiveIntegerNumbersGreaterThanZeroRegex\">\n {{ L.form_validation_invalid_positive_integer_number_wo_zero_message | translate: { controlName: label | translate, value:\n errors?.positiveIntegerNumbersGreaterThanZeroRegex.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.form_validation_units_balance_maximum\">\n {{ L.form_validation_units_balance_maximum | translate: { controlName: label | translate } }}\n </div>\n <div *ngIf=\"errors?.form_validation_units_balance_minimum\">\n {{ L.form_validation_units_balance_minimum | translate: { controlName: label | translate } }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_percentage\">\n {{ L.form_validation_invalid_percentage_message | translate }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_decimal_percentage\">\n {{ L.form_validation_invalid_percentage_decimal_message | translate }}\n </div>\n <div *ngIf=\"errors?.revert_at_must_be_less_than_occupancy\">\n {{ L.revert_at_must_be_less_than_occupancy_message | translate }}\n </div>\n <div *ngIf=\"errors?.revert_at_must_be_more_than_occupancy\">\n {{ L.revert_at_must_be_more_than_occupancy_message | translate }}\n </div>\n </ng-template>\n </ng-container>\n</ng-container>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: WrapFnPipe, name: "wrapFn" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: SharedDirectivesModule }, { kind: "directive", type: VarDirective, selector: "[tbVar]", inputs: ["tbVar"] }] }); }
23603
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FieldValidationsComponent, isStandalone: true, selector: "[tb-field-validations]", inputs: { controlName: "controlName", label: "label", errors: "errors", touched: "touched" }, usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"touched || controlContainer.control.get(controlName)?.touched\">\n <ng-container *tbVar=\"getErrors | wrapFn: controlContainer.control.get(controlName)?.errors ?? errors as errors\">\n <div *ngIf=\"ObjectKeys(errors || {}).length > 1; then hasMultiErrors else hasOneError\"></div>\n <ng-template #hasMultiErrors>\n {{ L.invalid | translate: { controlName: label | translate} }}\n </ng-template>\n <ng-template #hasOneError>\n <div *ngIf=\"errors?.required\">\n {{ L.form_validation_required_message | translate }}</div>\n <div *ngIf=\"errors?.invalidDate\">\n {{ L.form_validation_invalid_date_message | translate }}</div>\n <div *ngIf=\"errors?.invalidDateRange\">\n {{ L.form_validation_invalid_date_range | translate }}</div>\n <div *ngIf=\"errors?.invalidTerms\">\n {{ L.form_validation_terms_policy | translate }}</div>\n <div *ngIf=\"errors?.min min\">\n {{ L.form_validation_min_message | translate: { controlName: label | translate, value: errors?.min.min || 0 } }}\n </div>\n <div *ngIf=\"errors?.max\">\n {{ L.form_validation_max_message | translate: { controlName: label | translate, value: errors?.max.max || 0 } }}\n </div>\n <div *ngIf=\"errors?.minlength\">\n {{ L.form_validation_min_length_message | translate: { controlName: label | translate, value: errors?.minlength.requiredLength || 0 } }}\n </div>\n <div *ngIf=\"errors?.maxlength\">\n {{ L.form_validation_max_length_message | translate: { controlName: label | translate, value: errors?.maxlength.requiredLength || 0 } }}\n </div>\n <div *ngIf=\"errors?.invalidNumberLength\">\n {{ L.form_validation_invalid_length_message | translate: { controlName: label | translate, value: errors?.invalidNumberLength.requiredLength\n || 0 } }}\n </div>\n <div *ngIf=\"errors?.integerNumber\">\n {{ L.form_validation_invalid_integer_number_message | translate: { controlName: label | translate, value: errors?.integerNumber.value || 0 }\n }}\n </div>\n <div *ngIf=\"errors?.integerPositiveNumber\">\n {{ L.form_validation_invalid_integer_positive_number_message | translate: { controlName: label | translate, value:\n errors?.integerPositiveNumber.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.decimalNumber\">\n {{ L.form_validation_invalid_decimal_number_message | translate: { controlName: label | translate, value: errors?.decimalNumber.value || 0 }\n }}\n </div>\n <div *ngIf=\"errors?.decimalPositiveNumber\">\n {{ L.form_validation_invalid_decimal_positive_number_message | translate: { controlName: label | translate, value:\n errors?.decimalPositiveNumber.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.positiveNumbers\">\n {{ L.form_validation_invalid_positive_number_message | translate: { controlName: label | translate, value: errors?.positiveNumbers.value || 0\n } }}\n </div>\n <div *ngIf=\"errors?.positiveNumbersGreaterThanZero\">\n {{ L.form_validation_invalid_positive_number_greater_than_zero | translate: { controlName: label | translate, value:\n errors?.positiveNumbersGreaterThanZero.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.mobileNumbers\">\n {{ L.form_validation_invalid_mobile_number_message | translate: { controlName: label | translate, value: errors?.mobileNumbers.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.email\">\n {{ L.form_validation_email_pattern | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.pattern\">\n {{ L.form_validation_password_pattern | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordPolicyRequirements\">\n {{ L.form_validation_password_policy | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordNotMatch\">\n {{ L.form_validation_password_not_match | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.passwordMatch\">\n {{ L.form_validation_password_match | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noWhitespaceWithinSentence\">\n {{ L.form_validation_no_white_space_within_sentence | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noDotWithinSentence\">\n {{ L.form_validation_no_dot_space_within_sentence | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.guidIsValid\">\n {{ L.form_validation_invalid_uuid | translate: { controlName: label | translate} }}\n </div>\n <div *ngIf=\"errors?.noDefaultAccessProfile\">\n {{ L.no_access_default_profile | translate: { controlName: label | translate,\n companyName: errors?.noDefaultAccessProfile?.companyName } }}\n </div>\n <div *ngIf=\"errors?.noEmoji\">\n {{ L.form_validation_invalid_no_emoji_message | translate: { controlName: label | translate, value: errors?.noEmoji.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.ipv4Format\">\n {{ L.form_validation_invalid_ipv4_message | translate: { controlName: label | translate, value: errors?.ipv4Format.value } }}\n </div>\n <div *ngIf=\"errors?.alphanumericRegex\">\n {{ L.form_validation_alphanumeric_message | translate: { controlName: label | translate, value: errors?.alphanumericRegex.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.validatePositiveInteger\">\n {{ L.form_validation_invalid_positive_integer_number_message | translate: { controlName: label | translate, value:\n errors?.validatePositiveInteger.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.roleNameAlreadyExists\">\n {{ L.role_name_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.rateNumberAlreadyExists\">\n {{ L.rate_number_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.accessProfileNumberTaken\">\n {{ L.access_profile_number_already_exists | translate }}\n </div>\n <div *ngIf=\"errors?.rateNumberIsZero\">\n {{ L.rate_number_is_zero | translate }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_time\">\n {{ L.form_validation_invalid_time | translate: { controlName: label ,from: '00:00',to:'00:00' } }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_time_format\">\n {{ L.form_validation_invalid_time_format | translate: { controlName: label } }}\n </div>\n <div *ngIf=\"errors?.positiveIntegerNumbersGreaterThanZeroRegex\">\n {{ L.form_validation_invalid_positive_integer_number_wo_zero_message | translate: { controlName: label | translate, value:\n errors?.positiveIntegerNumbersGreaterThanZeroRegex.value || 0 } }}\n </div>\n <div *ngIf=\"errors?.form_validation_units_balance_maximum\">\n {{ L.form_validation_units_balance_maximum | translate: { controlName: label | translate } }}\n </div>\n <div *ngIf=\"errors?.form_validation_units_balance_minimum\">\n {{ L.form_validation_units_balance_minimum | translate: { controlName: label | translate } }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_percentage\">\n {{ L.form_validation_invalid_percentage_message | translate }}\n </div>\n <div *ngIf=\"errors?.form_validation_invalid_decimal_percentage\">\n {{ L.form_validation_invalid_percentage_decimal_message | translate }}\n </div>\n <div *ngIf=\"errors?.revert_at_must_be_less_than_occupancy\">\n {{ L.revert_at_must_be_less_than_occupancy_message | translate }}\n </div>\n <div *ngIf=\"errors?.revert_at_must_be_more_than_occupancy\">\n {{ L.revert_at_must_be_more_than_occupancy_message | translate }}\n </div>\n </ng-template>\n </ng-container>\n</ng-container>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: WrapFnPipe, name: "wrapFn" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: SharedDirectivesModule }, { kind: "directive", type: VarDirective, selector: "[tbVar]", inputs: ["tbVar"] }] }); }
23460
23604
  }
23461
23605
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FieldValidationsComponent, decorators: [{
23462
23606
  type: Component,
@@ -23510,7 +23654,7 @@ class FormValidationsComponent extends BaseComponent {
23510
23654
  </ng-template>
23511
23655
  </ng-container>
23512
23656
  </ng-container>
23513
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }] }); }
23657
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }] }); }
23514
23658
  }
23515
23659
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FormValidationsComponent, decorators: [{
23516
23660
  type: Component,
@@ -23687,7 +23831,7 @@ class FieldLabelComponent {
23687
23831
  <span [ngClass]="ngLabelClass">{{ label | translate }}</span>
23688
23832
  <ng-content select="[tooltip]"></ng-content>
23689
23833
  </div>
23690
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
23834
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
23691
23835
  }
23692
23836
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FieldLabelComponent, decorators: [{
23693
23837
  type: Component,
@@ -80719,13 +80863,13 @@ class TimeAgoPipe {
80719
80863
  }
80720
80864
  }
80721
80865
  }
80722
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeAgoPipe, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
80866
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeAgoPipe, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
80723
80867
  static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: TimeAgoPipe, isStandalone: true, name: "tbTimeAgo" }); }
80724
80868
  }
80725
80869
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeAgoPipe, decorators: [{
80726
80870
  type: Pipe,
80727
80871
  args: [{ name: 'tbTimeAgo', pure: true, standalone: true }]
80728
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
80872
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
80729
80873
 
80730
80874
  var TimeElapsedFormats;
80731
80875
  (function (TimeElapsedFormats) {
@@ -83311,13 +83455,13 @@ class TimeRangePipe {
83311
83455
  return `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}`;
83312
83456
  }
83313
83457
  }
83314
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeRangePipe, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
83458
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeRangePipe, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
83315
83459
  static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: TimeRangePipe, isStandalone: true, name: "timeRange" }); }
83316
83460
  }
83317
83461
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TimeRangePipe, decorators: [{
83318
83462
  type: Pipe,
83319
83463
  args: [{ name: 'timeRange', pure: true, standalone: true }]
83320
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
83464
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
83321
83465
 
83322
83466
  class TranslateLocalPipe {
83323
83467
  constructor(translate, localizationService) {
@@ -83327,13 +83471,13 @@ class TranslateLocalPipe {
83327
83471
  transform(key, interpolateParams) {
83328
83472
  return this.localizationService.defaultResource$.pipe(map(translations => this.translate.getParsedResult(translations, key, interpolateParams)));
83329
83473
  }
83330
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TranslateLocalPipe, deps: [{ token: i1$4.TranslateService }, { token: LocalizationService }], target: i0.ɵɵFactoryTarget.Pipe }); }
83474
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TranslateLocalPipe, deps: [{ token: i1$5.TranslateService }, { token: LocalizationService }], target: i0.ɵɵFactoryTarget.Pipe }); }
83331
83475
  static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: TranslateLocalPipe, isStandalone: true, name: "translateLocal" }); }
83332
83476
  }
83333
83477
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TranslateLocalPipe, decorators: [{
83334
83478
  type: Pipe,
83335
83479
  args: [{ name: 'translateLocal', pure: true, standalone: true }]
83336
- }], ctorParameters: () => [{ type: i1$4.TranslateService }, { type: LocalizationService }] });
83480
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }, { type: LocalizationService }] });
83337
83481
 
83338
83482
  //////////////////////////////////////////////////////////////////////////////////////////////////
83339
83483
  // table filter keys pipe return new array filtered by each property name value by the search value key
@@ -89479,13 +89623,13 @@ class StaticMessageBarService {
89479
89623
  const messageInfo = { message: '', status: undefined, id };
89480
89624
  this.subject.next({ messagesInfo: [messageInfo], id });
89481
89625
  }
89482
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StaticMessageBarService, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89626
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StaticMessageBarService, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89483
89627
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StaticMessageBarService, providedIn: 'root' }); }
89484
89628
  }
89485
89629
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StaticMessageBarService, decorators: [{
89486
89630
  type: Injectable,
89487
89631
  args: [{ providedIn: 'root' }]
89488
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
89632
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
89489
89633
 
89490
89634
  class IconComponent extends BaseComponent {
89491
89635
  constructor() {
@@ -89745,13 +89889,13 @@ class FloatMessageBarService {
89745
89889
  clearSnackbar() {
89746
89890
  this._snackBar.dismiss();
89747
89891
  }
89748
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FloatMessageBarService, deps: [{ token: i1$5.MatSnackBar }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89892
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FloatMessageBarService, deps: [{ token: i1$6.MatSnackBar }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89749
89893
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FloatMessageBarService, providedIn: 'root' }); }
89750
89894
  }
89751
89895
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FloatMessageBarService, decorators: [{
89752
89896
  type: Injectable,
89753
89897
  args: [{ providedIn: 'root' }]
89754
- }], ctorParameters: () => [{ type: i1$5.MatSnackBar }, { type: i1$4.TranslateService }] });
89898
+ }], ctorParameters: () => [{ type: i1$6.MatSnackBar }, { type: i1$5.TranslateService }] });
89755
89899
 
89756
89900
  class MessageBarService {
89757
89901
  constructor(translate, staticMessageBarService, floatMessageBarService) {
@@ -89803,13 +89947,13 @@ class MessageBarService {
89803
89947
  clearMessagebar(id = MESSAGE_BAR_DEFAULT_ID) {
89804
89948
  this.staticMessageBarService.clearMessagebar(id);
89805
89949
  }
89806
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MessageBarService, deps: [{ token: i1$4.TranslateService }, { token: StaticMessageBarService }, { token: FloatMessageBarService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89950
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MessageBarService, deps: [{ token: i1$5.TranslateService }, { token: StaticMessageBarService }, { token: FloatMessageBarService }], target: i0.ɵɵFactoryTarget.Injectable }); }
89807
89951
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MessageBarService, providedIn: 'root' }); }
89808
89952
  }
89809
89953
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MessageBarService, decorators: [{
89810
89954
  type: Injectable,
89811
89955
  args: [{ providedIn: 'root' }]
89812
- }], ctorParameters: () => [{ type: i1$4.TranslateService }, { type: StaticMessageBarService }, { type: FloatMessageBarService }] });
89956
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }, { type: StaticMessageBarService }, { type: FloatMessageBarService }] });
89813
89957
 
89814
89958
  const LS_ISSUER_URI = 'authorization.service.issuer_uri';
89815
89959
  const LS_USER_INFO = 'authorization.service.user_info';
@@ -90029,12 +90173,12 @@ class OpenIdAuthService {
90029
90173
  console.log('logoutUrl =============> : ', this.logoutUrl);
90030
90174
  this.Init();
90031
90175
  }
90032
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OpenIdAuthService, deps: [{ token: i1$6.Requestor }, { token: i1$4.TranslateService }, { token: MessageBarService }], target: i0.ɵɵFactoryTarget.Injectable }); }
90176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OpenIdAuthService, deps: [{ token: i1$7.Requestor }, { token: i1$5.TranslateService }, { token: MessageBarService }], target: i0.ɵɵFactoryTarget.Injectable }); }
90033
90177
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OpenIdAuthService }); }
90034
90178
  }
90035
90179
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OpenIdAuthService, decorators: [{
90036
90180
  type: Injectable
90037
- }], ctorParameters: () => [{ type: i1$6.Requestor }, { type: i1$4.TranslateService }, { type: MessageBarService }] });
90181
+ }], ctorParameters: () => [{ type: i1$7.Requestor }, { type: i1$5.TranslateService }, { type: MessageBarService }] });
90038
90182
 
90039
90183
  var SessionState_1;
90040
90184
  const defaultSessionState = {
@@ -90361,7 +90505,7 @@ let SessionState = class SessionState {
90361
90505
  }
90362
90506
  }));
90363
90507
  }
90364
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SessionState, deps: [{ token: SessionStorageService }, { token: LocalStorageService }, { token: AppConfigService }, { token: AuthService }, { token: ConfigurationServiceProxy$1 }, { token: i1$7.Router }, { token: HttpCancelService }, { token: i1$4.TranslateService }, { token: i9.MsalService }, { token: UsersServiceProxy$1 }, { token: OpenIdAuthService }, { token: MessageBarService }, { token: MobileServiceProxy }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
90508
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SessionState, deps: [{ token: SessionStorageService }, { token: LocalStorageService }, { token: AppConfigService }, { token: AuthService }, { token: ConfigurationServiceProxy$1 }, { token: i1$8.Router }, { token: HttpCancelService }, { token: i1$5.TranslateService }, { token: i9.MsalService }, { token: UsersServiceProxy$1 }, { token: OpenIdAuthService }, { token: MessageBarService }, { token: MobileServiceProxy }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
90365
90509
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SessionState }); }
90366
90510
  };
90367
90511
  __decorate([
@@ -90462,7 +90606,7 @@ SessionState = SessionState_1 = __decorate([
90462
90606
  ], SessionState);
90463
90607
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SessionState, decorators: [{
90464
90608
  type: Injectable
90465
- }], ctorParameters: () => [{ type: SessionStorageService }, { type: LocalStorageService }, { type: AppConfigService }, { type: AuthService }, { type: ConfigurationServiceProxy$1 }, { type: i1$7.Router }, { type: HttpCancelService }, { type: i1$4.TranslateService }, { type: i9.MsalService }, { type: UsersServiceProxy$1 }, { type: OpenIdAuthService }, { type: MessageBarService }, { type: MobileServiceProxy }, { type: MobileServiceProxyIdentity }], propDecorators: { onLogin: [], onSetTenantUserAction: [], onUpdateAuthTokenAction: [], setSessionState: [], SetUserNameAction: [], AuditLogoutAction: [], AuditLogoutMobileAction: [], onMobileLogoutAction: [], onLogout: [], onTenantLoadAction: [], onTenantClearAction: [], onHealthActionAction: [], onUpdateUserSettings: [], onUpdateTenantInfoProps: [], onAuthenticate2FAforUser: [], onLoadSessionFromLocalStorageAction: [], onAppConfigurationAction: [], onLoadAppConfigurationMobileAction: [] } });
90609
+ }], ctorParameters: () => [{ type: SessionStorageService }, { type: LocalStorageService }, { type: AppConfigService }, { type: AuthService }, { type: ConfigurationServiceProxy$1 }, { type: i1$8.Router }, { type: HttpCancelService }, { type: i1$5.TranslateService }, { type: i9.MsalService }, { type: UsersServiceProxy$1 }, { type: OpenIdAuthService }, { type: MessageBarService }, { type: MobileServiceProxy }, { type: MobileServiceProxyIdentity }], propDecorators: { onLogin: [], onSetTenantUserAction: [], onUpdateAuthTokenAction: [], setSessionState: [], SetUserNameAction: [], AuditLogoutAction: [], AuditLogoutMobileAction: [], onMobileLogoutAction: [], onLogout: [], onTenantLoadAction: [], onTenantClearAction: [], onHealthActionAction: [], onUpdateUserSettings: [], onUpdateTenantInfoProps: [], onAuthenticate2FAforUser: [], onLoadSessionFromLocalStorageAction: [], onAppConfigurationAction: [], onLoadAppConfigurationMobileAction: [] } });
90466
90610
 
90467
90611
  let UpdateUserSettingsAction = class UpdateUserSettingsAction {
90468
90612
  static { this.type = '[user-settings] Update-user-settings'; }
@@ -90766,7 +90910,7 @@ let UserSettingsState = class UserSettingsState {
90766
90910
  });
90767
90911
  return this.onUpdateUserSettingsMobileAction(ctx, new UpdateUserSettingsAction(settings));
90768
90912
  }
90769
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserSettingsState, deps: [{ token: i1$4.TranslateService }, { token: i1$2.Store }, { token: UsersServiceProxy }, { token: MessageBarService }, { token: TenantService }, { token: MobileServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
90913
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserSettingsState, deps: [{ token: i1$5.TranslateService }, { token: i1$2.Store }, { token: UsersServiceProxy }, { token: MessageBarService }, { token: TenantService }, { token: MobileServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
90770
90914
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserSettingsState }); }
90771
90915
  };
90772
90916
  __decorate([
@@ -90792,7 +90936,7 @@ UserSettingsState = __decorate([
90792
90936
  ], UserSettingsState);
90793
90937
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserSettingsState, decorators: [{
90794
90938
  type: Injectable
90795
- }], ctorParameters: () => [{ type: i1$4.TranslateService }, { type: i1$2.Store }, { type: UsersServiceProxy }, { type: MessageBarService }, { type: TenantService }, { type: MobileServiceProxy }], propDecorators: { onUpdateUserSettings: [], onUpdateUserSettingsMobileAction: [], onChangeLanguage: [], onChangeMobileLanguageAction: [] } });
90939
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }, { type: i1$2.Store }, { type: UsersServiceProxy }, { type: MessageBarService }, { type: TenantService }, { type: MobileServiceProxy }], propDecorators: { onUpdateUserSettings: [], onUpdateUserSettingsMobileAction: [], onChangeLanguage: [], onChangeMobileLanguageAction: [] } });
90796
90940
 
90797
90941
  class UserSettingsModule {
90798
90942
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserSettingsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -91012,13 +91156,13 @@ class NotificationCloseAllButtonComponent extends BaseComponent {
91012
91156
  this.appRef.detachView(this.hostView);
91013
91157
  this.hostView.destroy();
91014
91158
  }
91015
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationCloseAllButtonComponent, deps: [{ token: i0.ApplicationRef }, { token: i1$8.ToastrService }], target: i0.ɵɵFactoryTarget.Component }); }
91159
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationCloseAllButtonComponent, deps: [{ token: i0.ApplicationRef }, { token: i1$9.ToastrService }], target: i0.ɵɵFactoryTarget.Component }); }
91016
91160
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NotificationCloseAllButtonComponent, isStandalone: true, selector: "tb-notification-close-all-button", inputs: { hostView: "hostView" }, usesInheritance: true, ngImport: i0, template: `
91017
91161
  <div class="tb-dismiss-wrapper" (click)="clearAllNotifications()" matTooltip="{{ L.close_all | translate }}" [matTooltipPosition]="'left'">
91018
91162
  <tb-icon [settings]="IconsHelper.cancel" class="tb-button">
91019
91163
  </tb-icon>
91020
91164
  </div>
91021
- `, isInline: true, styles: [":host{display:flex;justify-content:flex-end;margin-right:6px;margin-bottom:7px;z-index:101;pointer-events:initial}:host .tb-dismiss-wrapper{background:#fff 0% 0% no-repeat padding-box;box-shadow:0 3px 6px #0000004d;border:1px solid #dee2e6;border-radius:50%;width:28px;height:28px;box-sizing:border-box;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:border-radius .3s;z-index:102}:host .tb-dismiss-wrapper:hover{border-radius:4px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], animations: [notificationAnimation()] }); }
91165
+ `, isInline: true, styles: [":host{display:flex;justify-content:flex-end;margin-right:6px;margin-bottom:7px;z-index:101;pointer-events:initial}:host .tb-dismiss-wrapper{background:#fff 0% 0% no-repeat padding-box;box-shadow:0 3px 6px #0000004d;border:1px solid #dee2e6;border-radius:50%;width:28px;height:28px;box-sizing:border-box;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:border-radius .3s;z-index:102}:host .tb-dismiss-wrapper:hover{border-radius:4px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i1$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], animations: [notificationAnimation()] }); }
91022
91166
  }
91023
91167
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationCloseAllButtonComponent, decorators: [{
91024
91168
  type: Component,
@@ -91033,7 +91177,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
91033
91177
  LocalizationModule,
91034
91178
  MatTooltipModule,
91035
91179
  ], styles: [":host{display:flex;justify-content:flex-end;margin-right:6px;margin-bottom:7px;z-index:101;pointer-events:initial}:host .tb-dismiss-wrapper{background:#fff 0% 0% no-repeat padding-box;box-shadow:0 3px 6px #0000004d;border:1px solid #dee2e6;border-radius:50%;width:28px;height:28px;box-sizing:border-box;display:flex;justify-content:center;align-items:center;cursor:pointer;transition:border-radius .3s;z-index:102}:host .tb-dismiss-wrapper:hover{border-radius:4px}\n"] }]
91036
- }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i1$8.ToastrService }], propDecorators: { hostView: [{
91180
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i1$9.ToastrService }], propDecorators: { hostView: [{
91037
91181
  type: Input
91038
91182
  }] } });
91039
91183
 
@@ -91093,12 +91237,12 @@ class BaseNotificationService {
91093
91237
  setTimeout(() => this.appRef.tick(), 0);
91094
91238
  return inserted;
91095
91239
  }
91096
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseNotificationService, deps: [{ token: i1$8.ToastrService }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
91240
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseNotificationService, deps: [{ token: i1$9.ToastrService }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Injectable }); }
91097
91241
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseNotificationService }); }
91098
91242
  }
91099
91243
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseNotificationService, decorators: [{
91100
91244
  type: Injectable
91101
- }], ctorParameters: () => [{ type: i1$8.ToastrService }, { type: i0.ApplicationRef }] });
91245
+ }], ctorParameters: () => [{ type: i1$9.ToastrService }, { type: i0.ApplicationRef }] });
91102
91246
 
91103
91247
  var NotificationTypeText;
91104
91248
  (function (NotificationTypeText) {
@@ -91156,7 +91300,7 @@ class NotificationTypeLabelComponent extends BaseComponent {
91156
91300
  }
91157
91301
  this.notificationTypeClass = notificationTypeClasses.join(" ");
91158
91302
  }
91159
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationTypeLabelComponent, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
91303
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationTypeLabelComponent, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
91160
91304
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NotificationTypeLabelComponent, isStandalone: true, selector: "tb-notification-type-label", inputs: { notificationSeverity: "notificationSeverity", notificationSeverityInvert: "notificationSeverityInvert", notificationSeverityText: "notificationSeverityText" }, usesInheritance: true, ngImport: i0, template: "<div [ngClass]=\"notificationTypeClass\">\n <span>{{ notificationSeverityText }}</span>\n</div>", styles: [".notification-type-label{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;align-items:center;width:fit-content;padding:0 5px;font-size:13px;line-height:20px;border-radius:4px}.notification-type-label.critical{background-color:#ff0e4d;color:#fff}.notification-type-label.critical.invert{background-color:#fff;color:#ff0e4d}.notification-type-label.high{background-color:#e3554c;color:#fff}.notification-type-label.medium{background-color:#ffd362;color:#2c3e50}.notification-type-label.low{background-color:#c1e0fa;color:#2c3e50}.notification-type-label.information{background-color:#0985eb;color:#fff}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: LocalizationModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
91161
91305
  }
91162
91306
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationTypeLabelComponent, decorators: [{
@@ -91165,7 +91309,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
91165
91309
  CommonModule,
91166
91310
  LocalizationModule,
91167
91311
  ], template: "<div [ngClass]=\"notificationTypeClass\">\n <span>{{ notificationSeverityText }}</span>\n</div>", styles: [".notification-type-label{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;align-items:center;width:fit-content;padding:0 5px;font-size:13px;line-height:20px;border-radius:4px}.notification-type-label.critical{background-color:#ff0e4d;color:#fff}.notification-type-label.critical.invert{background-color:#fff;color:#ff0e4d}.notification-type-label.high{background-color:#e3554c;color:#fff}.notification-type-label.medium{background-color:#ffd362;color:#2c3e50}.notification-type-label.low{background-color:#c1e0fa;color:#2c3e50}.notification-type-label.information{background-color:#0985eb;color:#fff}\n"] }]
91168
- }], ctorParameters: () => [{ type: i1$4.TranslateService }], propDecorators: { notificationSeverity: [{
91312
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }], propDecorators: { notificationSeverity: [{
91169
91313
  type: Input
91170
91314
  }], notificationSeverityInvert: [{
91171
91315
  type: Input
@@ -91185,8 +91329,8 @@ class AlertNotificationComponent extends Toast {
91185
91329
  this.toastrService.remove(this.activeToast.toastId);
91186
91330
  $event.stopPropagation();
91187
91331
  }
91188
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationComponent, deps: [{ token: i1$8.ToastrService }, { token: i1$8.ToastPackage }], target: i0.ɵɵFactoryTarget.Component }); }
91189
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: AlertNotificationComponent, isStandalone: true, selector: "tb-alert-notification", inputs: { data: "data", activeToast: "activeToast" }, usesInheritance: true, ngImport: i0, template: "<div class=\"tb-alert-notification-container tb-flex tb-full-height\">\n <div class=\"tb-status alert-notification-prefix\" [ngClass]=\"'tb-status-' + NotificationSeverity[data.severity] | lowercase\">\n </div>\n <div class=\"tb-messages alert-notification-content\">\n <div *ngFor=\"let message of data?.messages\" [ngClass]=\"message.class\">\n <span>{{ message.value | translate }}</span>\n </div>\n </div>\n <div class=\"alert-notification-suffix\">\n <div class=\"alert-notification-dismiss\">\n <tb-icon *ngIf=\"options.closeButton\" [settings]=\"IconsHelper.cancel\" class=\"tb-button tb-icon-30\" (click)=\"closeNotification($event)\">\n </tb-icon>\n </div>\n <tb-notification-type-label class=\"tb-mr-5\" [notificationSeverity]=\"data.severity\">\n </tb-notification-type-label>\n </div>\n</div>\n<div *ngIf=\"options.progressBar\">\n <div class=\"notification-progress\" [style.width]=\"width + '%'\"></div>\n</div>\n<div class=\"tb-alert-notification-container-shadow\"></div>", styles: [":host{position:relative;min-height:75px;width:395px;padding:0;background-color:#fff;border-left:6px solid #dee2e6;border-radius:4px;margin-bottom:10px;overflow:hidden;pointer-events:initial;box-shadow:0 3px 15px #0000004d;cursor:pointer;transition:all .2s ease;display:flex}:host .tb-alert-notification-container{flex:1}:host .tb-alert-notification-container div{z-index:1;pointer-events:none}:host .tb-alert-notification-container .alert-notification-suffix{display:flex;flex-direction:column;align-items:flex-end;margin-right:5px}:host .tb-alert-notification-container .alert-notification-dismiss{pointer-events:all;display:flex;height:30px;width:30px;margin:5px;color:#2c3e50;border-radius:4px}:host .tb-alert-notification-container .alert-notification-dismiss:hover{background-color:#ecedf0}:host .tb-alert-notification-container .alert-notification-dismiss .tb-icon{border-radius:4px;cursor:pointer}:host .tb-alert-notification-container-shadow{position:absolute;width:100%;height:100%}:host .tb-alert-notification-container-shadow:hover{background:#ecedf0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.LowerCasePipe, name: "lowercase" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "component", type: NotificationTypeLabelComponent, selector: "tb-notification-type-label", inputs: ["notificationSeverity", "notificationSeverityInvert", "notificationSeverityText"] }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }], animations: [notificationAnimation()] }); }
91332
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationComponent, deps: [{ token: i1$9.ToastrService }, { token: i1$9.ToastPackage }], target: i0.ɵɵFactoryTarget.Component }); }
91333
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: AlertNotificationComponent, isStandalone: true, selector: "tb-alert-notification", inputs: { data: "data", activeToast: "activeToast" }, usesInheritance: true, ngImport: i0, template: "<div class=\"tb-alert-notification-container tb-flex tb-full-height\">\n <div class=\"tb-status alert-notification-prefix\" [ngClass]=\"'tb-status-' + NotificationSeverity[data.severity] | lowercase\">\n </div>\n <div class=\"tb-messages alert-notification-content\">\n <div *ngFor=\"let message of data?.messages\" [ngClass]=\"message.class\">\n <span>{{ message.value | translate }}</span>\n </div>\n </div>\n <div class=\"alert-notification-suffix\">\n <div class=\"alert-notification-dismiss\">\n <tb-icon *ngIf=\"options.closeButton\" [settings]=\"IconsHelper.cancel\" class=\"tb-button tb-icon-30\" (click)=\"closeNotification($event)\">\n </tb-icon>\n </div>\n <tb-notification-type-label class=\"tb-mr-5\" [notificationSeverity]=\"data.severity\">\n </tb-notification-type-label>\n </div>\n</div>\n<div *ngIf=\"options.progressBar\">\n <div class=\"notification-progress\" [style.width]=\"width + '%'\"></div>\n</div>\n<div class=\"tb-alert-notification-container-shadow\"></div>", styles: [":host{position:relative;min-height:75px;width:395px;padding:0;background-color:#fff;border-left:6px solid #dee2e6;border-radius:4px;margin-bottom:10px;overflow:hidden;pointer-events:initial;box-shadow:0 3px 15px #0000004d;cursor:pointer;transition:all .2s ease;display:flex}:host .tb-alert-notification-container{flex:1}:host .tb-alert-notification-container div{z-index:1;pointer-events:none}:host .tb-alert-notification-container .alert-notification-suffix{display:flex;flex-direction:column;align-items:flex-end;margin-right:5px}:host .tb-alert-notification-container .alert-notification-dismiss{pointer-events:all;display:flex;height:30px;width:30px;margin:5px;color:#2c3e50;border-radius:4px}:host .tb-alert-notification-container .alert-notification-dismiss:hover{background-color:#ecedf0}:host .tb-alert-notification-container .alert-notification-dismiss .tb-icon{border-radius:4px;cursor:pointer}:host .tb-alert-notification-container-shadow{position:absolute;width:100%;height:100%}:host .tb-alert-notification-container-shadow:hover{background:#ecedf0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.LowerCasePipe, name: "lowercase" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "component", type: NotificationTypeLabelComponent, selector: "tb-notification-type-label", inputs: ["notificationSeverity", "notificationSeverityInvert", "notificationSeverityText"] }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }], animations: [notificationAnimation()] }); }
91190
91334
  }
91191
91335
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationComponent, decorators: [{
91192
91336
  type: Component,
@@ -91196,7 +91340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
91196
91340
  NotificationTypeLabelComponent,
91197
91341
  IconModule,
91198
91342
  ], template: "<div class=\"tb-alert-notification-container tb-flex tb-full-height\">\n <div class=\"tb-status alert-notification-prefix\" [ngClass]=\"'tb-status-' + NotificationSeverity[data.severity] | lowercase\">\n </div>\n <div class=\"tb-messages alert-notification-content\">\n <div *ngFor=\"let message of data?.messages\" [ngClass]=\"message.class\">\n <span>{{ message.value | translate }}</span>\n </div>\n </div>\n <div class=\"alert-notification-suffix\">\n <div class=\"alert-notification-dismiss\">\n <tb-icon *ngIf=\"options.closeButton\" [settings]=\"IconsHelper.cancel\" class=\"tb-button tb-icon-30\" (click)=\"closeNotification($event)\">\n </tb-icon>\n </div>\n <tb-notification-type-label class=\"tb-mr-5\" [notificationSeverity]=\"data.severity\">\n </tb-notification-type-label>\n </div>\n</div>\n<div *ngIf=\"options.progressBar\">\n <div class=\"notification-progress\" [style.width]=\"width + '%'\"></div>\n</div>\n<div class=\"tb-alert-notification-container-shadow\"></div>", styles: [":host{position:relative;min-height:75px;width:395px;padding:0;background-color:#fff;border-left:6px solid #dee2e6;border-radius:4px;margin-bottom:10px;overflow:hidden;pointer-events:initial;box-shadow:0 3px 15px #0000004d;cursor:pointer;transition:all .2s ease;display:flex}:host .tb-alert-notification-container{flex:1}:host .tb-alert-notification-container div{z-index:1;pointer-events:none}:host .tb-alert-notification-container .alert-notification-suffix{display:flex;flex-direction:column;align-items:flex-end;margin-right:5px}:host .tb-alert-notification-container .alert-notification-dismiss{pointer-events:all;display:flex;height:30px;width:30px;margin:5px;color:#2c3e50;border-radius:4px}:host .tb-alert-notification-container .alert-notification-dismiss:hover{background-color:#ecedf0}:host .tb-alert-notification-container .alert-notification-dismiss .tb-icon{border-radius:4px;cursor:pointer}:host .tb-alert-notification-container-shadow{position:absolute;width:100%;height:100%}:host .tb-alert-notification-container-shadow:hover{background:#ecedf0}\n"] }]
91199
- }], ctorParameters: () => [{ type: i1$8.ToastrService }, { type: i1$8.ToastPackage }], propDecorators: { data: [{
91343
+ }], ctorParameters: () => [{ type: i1$9.ToastrService }, { type: i1$9.ToastPackage }], propDecorators: { data: [{
91200
91344
  type: Input
91201
91345
  }], activeToast: [{
91202
91346
  type: Input
@@ -91516,12 +91660,12 @@ class AlertNotificationService extends BaseNotificationService {
91516
91660
  this.componentRef.destroy();
91517
91661
  }
91518
91662
  }
91519
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationService, deps: [{ token: i1$8.ToastrService }, { token: i0.ApplicationRef }, { token: TenantService }, { token: i1$4.TranslateService }, { token: i0.ComponentFactoryResolver }, { token: AppSettingsService }, { token: AlertsAndNotificationsService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
91663
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationService, deps: [{ token: i1$9.ToastrService }, { token: i0.ApplicationRef }, { token: TenantService }, { token: i1$5.TranslateService }, { token: i0.ComponentFactoryResolver }, { token: AppSettingsService }, { token: AlertsAndNotificationsService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable }); }
91520
91664
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationService }); }
91521
91665
  }
91522
91666
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertNotificationService, decorators: [{
91523
91667
  type: Injectable
91524
- }], ctorParameters: () => [{ type: i1$8.ToastrService }, { type: i0.ApplicationRef }, { type: TenantService }, { type: i1$4.TranslateService }, { type: i0.ComponentFactoryResolver }, { type: AppSettingsService }, { type: AlertsAndNotificationsService }, { type: i0.Injector }] });
91668
+ }], ctorParameters: () => [{ type: i1$9.ToastrService }, { type: i0.ApplicationRef }, { type: TenantService }, { type: i1$5.TranslateService }, { type: i0.ComponentFactoryResolver }, { type: AppSettingsService }, { type: AlertsAndNotificationsService }, { type: i0.Injector }] });
91525
91669
 
91526
91670
  var AnalyticsSourceProps;
91527
91671
  (function (AnalyticsSourceProps) {
@@ -91963,7 +92107,7 @@ class CommandNotificationComponent extends Toast {
91963
92107
  this.toastPackage = toastPackage;
91964
92108
  this.CommandNotificationType = CommandNotificationType;
91965
92109
  }
91966
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationComponent, deps: [{ token: i1$8.ToastrService }, { token: i1$8.ToastPackage }], target: i0.ɵɵFactoryTarget.Component }); }
92110
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationComponent, deps: [{ token: i1$9.ToastrService }, { token: i1$9.ToastPackage }], target: i0.ɵɵFactoryTarget.Component }); }
91967
92111
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CommandNotificationComponent, isStandalone: true, selector: "tb-command-notification", inputs: { data: "data" }, usesInheritance: true, ngImport: i0, template: "<div class=\"tb-flex tb-full-height\">\n <div [ngClass]=\"'tb-status-' + CommandNotificationType[data.type] | lowercase\" class=\"tb-status\"></div>\n <div class=\"tb-messages\">\n <div *ngFor=\"let message of data?.messages\" [ngClass]=\"message.class\">\n <span>{{ message.value }}</span>\n </div>\n </div>\n</div>\n", styles: [":host{display:flex;min-height:75px;padding:0;background-color:#fff;border-left:6px solid #dee2e6;border-radius:4px;position:relative;-ms-flex-align:center;align-items:center;margin:10px;max-width:33vw;min-width:344px;transform-origin:center;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "pipe", type: i2.LowerCasePipe, name: "lowercase" }], animations: [notificationAnimation()] }); }
91968
92112
  }
91969
92113
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationComponent, decorators: [{
@@ -91971,7 +92115,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
91971
92115
  args: [{ selector: 'tb-command-notification', animations: [notificationAnimation()], standalone: true, imports: [
91972
92116
  CommonModule,
91973
92117
  ], template: "<div class=\"tb-flex tb-full-height\">\n <div [ngClass]=\"'tb-status-' + CommandNotificationType[data.type] | lowercase\" class=\"tb-status\"></div>\n <div class=\"tb-messages\">\n <div *ngFor=\"let message of data?.messages\" [ngClass]=\"message.class\">\n <span>{{ message.value }}</span>\n </div>\n </div>\n</div>\n", styles: [":host{display:flex;min-height:75px;padding:0;background-color:#fff;border-left:6px solid #dee2e6;border-radius:4px;position:relative;-ms-flex-align:center;align-items:center;margin:10px;max-width:33vw;min-width:344px;transform-origin:center;box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}\n"] }]
91974
- }], ctorParameters: () => [{ type: i1$8.ToastrService }, { type: i1$8.ToastPackage }], propDecorators: { data: [{
92118
+ }], ctorParameters: () => [{ type: i1$9.ToastrService }, { type: i1$9.ToastPackage }], propDecorators: { data: [{
91975
92119
  type: Input
91976
92120
  }] } });
91977
92121
 
@@ -92033,12 +92177,12 @@ class CommandNotificationService extends BaseNotificationService {
92033
92177
  // calc how many alert items 80% of the window can contain in count
92034
92178
  return Math.floor((window.innerHeight * 0.8) / COMMAND_ITEM_HEIGHT_IN_PIXELS);
92035
92179
  }
92036
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationService, deps: [{ token: i1$8.ToastrService }, { token: i0.ApplicationRef }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
92180
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationService, deps: [{ token: i1$9.ToastrService }, { token: i0.ApplicationRef }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
92037
92181
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationService }); }
92038
92182
  }
92039
92183
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CommandNotificationService, decorators: [{
92040
92184
  type: Injectable
92041
- }], ctorParameters: () => [{ type: i1$8.ToastrService }, { type: i0.ApplicationRef }, { type: i1$4.TranslateService }] });
92185
+ }], ctorParameters: () => [{ type: i1$9.ToastrService }, { type: i0.ApplicationRef }, { type: i1$5.TranslateService }] });
92042
92186
 
92043
92187
  class NotificationEventService {
92044
92188
  constructor(store, sessionStorageService) {
@@ -93454,12 +93598,12 @@ class GlobalErrorService {
93454
93598
  const timeAgoInSeconds = cloudDateTimeUtc.diff(startDate, 'seconds');
93455
93599
  return timeAgoInSeconds;
93456
93600
  }
93457
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GlobalErrorService, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
93601
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GlobalErrorService, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
93458
93602
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GlobalErrorService }); }
93459
93603
  }
93460
93604
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GlobalErrorService, decorators: [{
93461
93605
  type: Injectable
93462
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
93606
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
93463
93607
 
93464
93608
  const sidebar = 'sidebar';
93465
93609
  const primary = 'primary';
@@ -93632,12 +93776,12 @@ class RouteService extends BaseComponent {
93632
93776
  }
93633
93777
  return route;
93634
93778
  }
93635
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RouteService, deps: [{ token: i1$7.Router }, { token: AppConfigService }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
93779
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RouteService, deps: [{ token: i1$8.Router }, { token: AppConfigService }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
93636
93780
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RouteService }); }
93637
93781
  }
93638
93782
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RouteService, decorators: [{
93639
93783
  type: Injectable
93640
- }], ctorParameters: () => [{ type: i1$7.Router }, { type: AppConfigService }, { type: i1$2.Store }] });
93784
+ }], ctorParameters: () => [{ type: i1$8.Router }, { type: AppConfigService }, { type: i1$2.Store }] });
93641
93785
 
93642
93786
  class MenuService {
93643
93787
  constructor(routeService, store) {
@@ -94860,7 +95004,7 @@ let FacilityState = class FacilityState {
94860
95004
  this.localStorageService.setItem(DYNAMIC_PRICING_CONDITION, JSON.stringify(dynamicPricingConditionsMap));
94861
95005
  }
94862
95006
  }
94863
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FacilityState, deps: [{ token: i1$2.Store }, { token: BaseFacilityCommandsService }, { token: LocalStorageService }, { token: FacilityMenuService }, { token: FacilityServiceProxy }, { token: RemoteCommandServiceProxy }, { token: GroupServiceProxy }, { token: CategoryServiceProxy }, { token: JobTitleServiceProxy }, { token: ZoneServiceProxy }, { token: ZServiceProxy }, { token: GlobalErrorService }, { token: CommandNotificationService }, { token: i1$4.TranslateService }, { token: AppConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
95007
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FacilityState, deps: [{ token: i1$2.Store }, { token: BaseFacilityCommandsService }, { token: LocalStorageService }, { token: FacilityMenuService }, { token: FacilityServiceProxy }, { token: RemoteCommandServiceProxy }, { token: GroupServiceProxy }, { token: CategoryServiceProxy }, { token: JobTitleServiceProxy }, { token: ZoneServiceProxy }, { token: ZServiceProxy }, { token: GlobalErrorService }, { token: CommandNotificationService }, { token: i1$5.TranslateService }, { token: AppConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
94864
95008
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FacilityState }); }
94865
95009
  };
94866
95010
  __decorate([
@@ -95033,7 +95177,7 @@ FacilityState = FacilityState_1 = __decorate([
95033
95177
  ], FacilityState);
95034
95178
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FacilityState, decorators: [{
95035
95179
  type: Injectable
95036
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseFacilityCommandsService }, { type: LocalStorageService }, { type: FacilityMenuService }, { type: FacilityServiceProxy }, { type: RemoteCommandServiceProxy }, { type: GroupServiceProxy }, { type: CategoryServiceProxy }, { type: JobTitleServiceProxy }, { type: ZoneServiceProxy }, { type: ZServiceProxy }, { type: GlobalErrorService }, { type: CommandNotificationService }, { type: i1$4.TranslateService }, { type: AppConfigService }], propDecorators: { onClearFacilityDictionary: [], onSetSmartparkBasicAllAction: [], onSetSmartparkBasicAction: [], onLoadParkingLotAction: [], onLoadRemoteCommandsRefAction: [], onLoadFacilityRemoteCommandsRefAction: [], onLoadFacilityAction: [], onUnloadParkingLotAction: [], onSetDeviceRemoteCommandsMapAction: [], onSetFacilityRemoteCommandsMapAction: [], onZoneChangedAction: [], onServicesRunningStatusChangedAction: [], onFacilityChangedAction: [], onSetBasicMenuAction: [], onLoadGroupsAction: [], onLoadCategoriesAction: [], onLoadJobTitlesAction: [], onLoadZonesAction: [], onLoadZsAction: [], onClearGroupsAction: [], onClearCategoriesAction: [], onClearJobTitlesAction: [], onClearZonesAction: [], onClearZsAction: [], onSetSelectedParkAction: [], onClearSelectedFacilityAction: [], onClearInactiveSelectedParkAction: [], onFacilityRemoteCommandExecutedAction: [], onLoadMacroCommandsAction: [], onClearMacroCommandsAction: [] } });
95180
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseFacilityCommandsService }, { type: LocalStorageService }, { type: FacilityMenuService }, { type: FacilityServiceProxy }, { type: RemoteCommandServiceProxy }, { type: GroupServiceProxy }, { type: CategoryServiceProxy }, { type: JobTitleServiceProxy }, { type: ZoneServiceProxy }, { type: ZServiceProxy }, { type: GlobalErrorService }, { type: CommandNotificationService }, { type: i1$5.TranslateService }, { type: AppConfigService }], propDecorators: { onClearFacilityDictionary: [], onSetSmartparkBasicAllAction: [], onSetSmartparkBasicAction: [], onLoadParkingLotAction: [], onLoadRemoteCommandsRefAction: [], onLoadFacilityRemoteCommandsRefAction: [], onLoadFacilityAction: [], onUnloadParkingLotAction: [], onSetDeviceRemoteCommandsMapAction: [], onSetFacilityRemoteCommandsMapAction: [], onZoneChangedAction: [], onServicesRunningStatusChangedAction: [], onFacilityChangedAction: [], onSetBasicMenuAction: [], onLoadGroupsAction: [], onLoadCategoriesAction: [], onLoadJobTitlesAction: [], onLoadZonesAction: [], onLoadZsAction: [], onClearGroupsAction: [], onClearCategoriesAction: [], onClearJobTitlesAction: [], onClearZonesAction: [], onClearZsAction: [], onSetSelectedParkAction: [], onClearSelectedFacilityAction: [], onClearInactiveSelectedParkAction: [], onFacilityRemoteCommandExecutedAction: [], onLoadMacroCommandsAction: [], onClearMacroCommandsAction: [] } });
95037
95181
 
95038
95182
  // DOTO: Get the correct list from Product of DeviceTypes that support Restore Ticket
95039
95183
  const SUPPORETD_RESTORE_TICKET_TYPES = [DeviceType.CashMp, DeviceType.CashReader, DeviceType.Dispenser, DeviceType.EntryPil,
@@ -95865,7 +96009,7 @@ class EmptyResultsComponent extends BaseComponent {
95865
96009
  ngOnInit() {
95866
96010
  }
95867
96011
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EmptyResultsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
95868
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: EmptyResultsComponent, isStandalone: true, selector: "tb-empty-results", inputs: { options: "options" }, usesInheritance: true, ngImport: i0, template: "<div class=\"empty-results-wrapper {{options?.cssClass}}\">\n <ng-container *ngIf=\"options?.searchValue else noMessageValue\">\n <span class=\"empty-results-message\" [innerHTML]=\"options?.noDataMessage | translate:{ searchValue: options?.searchValue}\"></span>\n </ng-container>\n <ng-template #noMessageValue>\n <span class=\"empty-results-message\" [innerHTML]=\"options?.noDataMessage | translate\"></span>\n </ng-template>\n <tb-icon *ngIf=\"options?.tooltip?.icon\" [settings]=\"options?.tooltip?.icon\" class=\"tb-icon-30\" [matTooltip]=\"options?.tooltip?.text | translate\"\n [matTooltipPosition]=\"options?.tooltip?.position\">\n </tb-icon>\n</div>", styles: [":host{display:flex;flex-direction:column;flex-grow:1}:host.tb-mobile-search-validate-ticket{border:none}.empty-results-wrapper{display:flex;flex:1;justify-content:center}.empty-results-wrapper.tb-search-validate-ticket,.empty-results-wrapper.tb-mobile-search-validate-ticket{flex:unset}.empty-results-wrapper.tb-mobile-search-validate-ticket span{font-family:Quicksand,Quicksand Local,Roboto,Roboto Local,sans-serif;font-size:17px;font-weight:700;text-align:center}.empty-results-wrapper.tb-mobile-search-validate-ticket tb-icon{display:none}.empty-results-wrapper .empty-results-message{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;align-items:center;color:#919eab;cursor:default;text-align:center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i4.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
96012
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: EmptyResultsComponent, isStandalone: true, selector: "tb-empty-results", inputs: { options: "options" }, usesInheritance: true, ngImport: i0, template: "<div class=\"empty-results-wrapper {{options?.cssClass}}\">\n <ng-container *ngIf=\"options?.searchValue else noMessageValue\">\n <span class=\"empty-results-message\" [innerHTML]=\"options?.noDataMessage | translate:{ searchValue: options?.searchValue}\"></span>\n </ng-container>\n <ng-template #noMessageValue>\n <span class=\"empty-results-message\" [innerHTML]=\"options?.noDataMessage | translate\"></span>\n </ng-template>\n <tb-icon *ngIf=\"options?.tooltip?.icon\" [settings]=\"options?.tooltip?.icon\" class=\"tb-icon-30\" [matTooltip]=\"options?.tooltip?.text | translate\"\n [matTooltipPosition]=\"options?.tooltip?.position\">\n </tb-icon>\n</div>", styles: [":host{display:flex;flex-direction:column;flex-grow:1}:host.tb-mobile-search-validate-ticket{border:none}.empty-results-wrapper{display:flex;flex:1;justify-content:center}.empty-results-wrapper.tb-search-validate-ticket,.empty-results-wrapper.tb-mobile-search-validate-ticket{flex:unset}.empty-results-wrapper.tb-mobile-search-validate-ticket span{font-family:Quicksand,Quicksand Local,Roboto,Roboto Local,sans-serif;font-size:17px;font-weight:700;text-align:center}.empty-results-wrapper.tb-mobile-search-validate-ticket tb-icon{display:none}.empty-results-wrapper .empty-results-message{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;align-items:center;color:#919eab;cursor:default;text-align:center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i1$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
95869
96013
  }
95870
96014
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EmptyResultsComponent, decorators: [{
95871
96015
  type: Component,
@@ -95905,7 +96049,7 @@ class LoadingOverlayComponent extends BaseComponent {
95905
96049
  }
95906
96050
  }
95907
96051
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoadingOverlayComponent, deps: [{ token: ActionStatusService }], target: i0.ɵɵFactoryTarget.Component }); }
95908
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: LoadingOverlayComponent, isStandalone: true, selector: "tb-loading-overlay", inputs: { data: "data", loadingOverlayOptions: "loadingOverlayOptions" }, usesInheritance: true, ngImport: i0, template: "<div\n *tbVar=\"(loadingOverlayOptions?.loading || (loadingOverlayOptions?.loading$ | async) || (loadingOverlayOptions?.loadingSignal && loadingOverlayOptions?.loadingSignal())) as loading\"\n [class.tb-loading]=\"loading\" class=\"tb-loading-overlay-container tb-flex-grow tb-flex-column tb-full-width\">\n <div class=\"tb-loading-overlay-content tb-flex-grow tb-flex-column\">\n <ng-container *ngIf=\"loadingOverlayOptions?.hasError$ | async; then errorOccurred else noErrorOccurred\">\n </ng-container>\n\n <ng-template #noErrorOccurred>\n <ng-container *ngIf=\"!loading && data && !data.length &&\n loadingOverlayOptions?.emptyResultsOptions; then displayNoDataMessage else displayContent\">\n </ng-container>\n </ng-template>\n\n <ng-template #displayContent>\n <ng-content></ng-content>\n </ng-template>\n </div>\n <div class=\"tb-loading-overlay tb-flex-grow\">\n <div class=\"tb-margin-auto\">\n <div class=\"tb-spinner\" [attr.data-qa]=\"DataQaAttribute.spinner\"\n class=\"diameter_{{loadingOverlayOptions?.diameter || SpinnerDiameterSize.Default}}\">\n <svg preserveAspectRatio=\"xMidYMid meet\" focusable=\"false\" aria-hidden=\"true\" viewBox=\"0 0 34 34\">\n <circle cx=\"50%\" cy=\"50%\" r=\"15\"></circle>\n </svg>\n </div>\n </div>\n </div>\n</div>\n\n<ng-template #errorOccurred>\n <div #customErrorMessage>\n <ng-content select=\"[tb-error-message]\"></ng-content>\n </div>\n <div *ngIf=\"!customErrorMessage?.childNodes?.length\" class=\"tb-loading-error\">\n <tb-icon [settings]=\"IconsHelper.info_gray\" class=\"cursor-default\"></tb-icon>\n <div class=\"error-general error-primary tb-center-text\">{{ L.something_went_wrong | translate }}</div>\n <div class=\"error-general error-secondary tb-center-text\">{{ L.please_contact_us_to_report_the_error | translate }}\n </div>\n </div>\n</ng-template>\n\n<ng-template #displayNoDataMessage>\n <tb-empty-results class=\"loading-overlay-empty-results {{loadingOverlayOptions?.emptyResultsOptions?.cssClass}}\"\n [options]=\"loadingOverlayOptions?.emptyResultsOptions\">\n </tb-empty-results>\n</ng-template>", styles: [":host{display:flex;flex:1;min-height:1px}.tb-loading-error{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;height:100%;justify-content:center;align-items:center;flex-direction:column;color:#919eab;padding:20px 0}.tb-loading-error .error-general{margin-top:10px;font-weight:500}.tb-loading-error .error-general.error-primary{font-size:15px}.tb-loading-error .error-general.error-secondary{font-size:13px}tb-empty-results.loading-overlay-empty-results{display:flex;justify-content:center;height:100%;border-radius:4px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "component", type: EmptyResultsComponent, selector: "tb-empty-results", inputs: ["options"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: SharedDirectivesModule }, { kind: "directive", type: VarDirective, selector: "[tbVar]", inputs: ["tbVar"] }] }); }
96052
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: LoadingOverlayComponent, isStandalone: true, selector: "tb-loading-overlay", inputs: { data: "data", loadingOverlayOptions: "loadingOverlayOptions" }, usesInheritance: true, ngImport: i0, template: "<div\n *tbVar=\"(loadingOverlayOptions?.loading || (loadingOverlayOptions?.loading$ | async) || (loadingOverlayOptions?.loadingSignal && loadingOverlayOptions?.loadingSignal())) as loading\"\n [class.tb-loading]=\"loading\" class=\"tb-loading-overlay-container tb-flex-grow tb-flex-column tb-full-width\">\n <div class=\"tb-loading-overlay-content tb-flex-grow tb-flex-column\">\n <ng-container *ngIf=\"loadingOverlayOptions?.hasError$ | async; then errorOccurred else noErrorOccurred\">\n </ng-container>\n\n <ng-template #noErrorOccurred>\n <ng-container *ngIf=\"!loading && data && !data.length &&\n loadingOverlayOptions?.emptyResultsOptions; then displayNoDataMessage else displayContent\">\n </ng-container>\n </ng-template>\n\n <ng-template #displayContent>\n <ng-content></ng-content>\n </ng-template>\n </div>\n <div class=\"tb-loading-overlay tb-flex-grow\">\n <div class=\"tb-margin-auto\">\n <div class=\"tb-spinner\" [attr.data-qa]=\"DataQaAttribute.spinner\"\n class=\"diameter_{{loadingOverlayOptions?.diameter || SpinnerDiameterSize.Default}}\">\n <svg preserveAspectRatio=\"xMidYMid meet\" focusable=\"false\" aria-hidden=\"true\" viewBox=\"0 0 34 34\">\n <circle cx=\"50%\" cy=\"50%\" r=\"15\"></circle>\n </svg>\n </div>\n </div>\n </div>\n</div>\n\n<ng-template #errorOccurred>\n <div #customErrorMessage>\n <ng-content select=\"[tb-error-message]\"></ng-content>\n </div>\n <div *ngIf=\"!customErrorMessage?.childNodes?.length\" class=\"tb-loading-error\">\n <tb-icon [settings]=\"IconsHelper.info_gray\" class=\"cursor-default\"></tb-icon>\n <div class=\"error-general error-primary tb-center-text\">{{ L.something_went_wrong | translate }}</div>\n <div class=\"error-general error-secondary tb-center-text\">{{ L.please_contact_us_to_report_the_error | translate }}\n </div>\n </div>\n</ng-template>\n\n<ng-template #displayNoDataMessage>\n <tb-empty-results class=\"loading-overlay-empty-results {{loadingOverlayOptions?.emptyResultsOptions?.cssClass}}\"\n [options]=\"loadingOverlayOptions?.emptyResultsOptions\">\n </tb-empty-results>\n</ng-template>", styles: [":host{display:flex;flex:1;min-height:1px}.tb-loading-error{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;display:flex;height:100%;justify-content:center;align-items:center;flex-direction:column;color:#919eab;padding:20px 0}.tb-loading-error .error-general{margin-top:10px;font-weight:500}.tb-loading-error .error-general.error-primary{font-size:15px}.tb-loading-error .error-general.error-secondary{font-size:13px}tb-empty-results.loading-overlay-empty-results{display:flex;justify-content:center;height:100%;border-radius:4px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: IconModule }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "component", type: EmptyResultsComponent, selector: "tb-empty-results", inputs: ["options"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: SharedDirectivesModule }, { kind: "directive", type: VarDirective, selector: "[tbVar]", inputs: ["tbVar"] }] }); }
95909
96053
  }
95910
96054
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoadingOverlayComponent, decorators: [{
95911
96055
  type: Component,
@@ -96016,13 +96160,13 @@ class ErrorPageComponent extends BaseComponent {
96016
96160
  this.drawerCollapsed = true;
96017
96161
  }
96018
96162
  }
96019
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, deps: [{ token: i1$2.Store }, { token: SessionStorageService }, { token: HttpCancelService }, { token: AppConfigService }, { token: i1$7.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component }); }
96163
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, deps: [{ token: i1$2.Store }, { token: SessionStorageService }, { token: HttpCancelService }, { token: AppConfigService }, { token: i1$8.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Component }); }
96020
96164
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ErrorPageComponent, selector: "tb-error-page", host: { listeners: { "document:click": "click($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"tb-container\" [@routerTransition]>\n <header>\n <div class=\"tb-flex tb-align-items-center tb-full-height tb-space-between tb-flex-grow\">\n <div class=\"wrapper-logo tb-flex-center\">\n <div class=\"tb-logo\" (click)=\"navigateToDefaultRoute()\"></div>\n </div>\n <div class=\"tb-button tb-mr-28\" (click)=\"drawerCollapsed = !drawerCollapsed; $event.stopPropagation();\">\n <tb-icon [settings]=\"iconsHelper.three_bars_mobile\" class=\"tb-icon tb-icon-30\"></tb-icon>\n </div>\n </div>\n <div class=\"tb-modules\" [class.drawer-collapsed]=\"drawerCollapsed\">\n <div class=\"tb-module\" *ngFor=\"let appSectionKey of appSectionModuleMenu\"\n (click)=\"navigateToModule(appSectionKey)\">\n <tb-icon [settings]=\"iconsHelper[appSectionLabel.get(appSectionKey) + '_blue']\"></tb-icon>\n <span class=\"tb-menu-header-text\"> {{appSectionLabel.get(appSectionKey) | translateLocal | async}}</span>\n </div>\n </div>\n </header>\n\n <main>\n <div class=\"container\">\n <div class=\"left-section\">\n <div class=\"inner-content\">\n <h1 class=\"heading\">{{ statusCodeError }}</h1>\n <p class=\"subheading\">{{ statusCodeErrorMessage | translateLocal | async }}</p>\n </div>\n </div>\n <div class=\"right-section\">\n <div>\n <img class=\"mountains-image\" src=\"assets/mountains-{{statusCodeError}}.svg\">\n <img *ngIf=\"statusCodeError=='404'\" class=\"blue-gate\" src=\"assets/blue-gate.svg\">\n </div>\n </div>\n </div>\n <div id=\"clouds\">\n <div class=\"cloud background light-blue-cloud\"></div>\n <div class=\"cloud foreground light-blue-cloud\"></div>\n <div class=\"cloud background grey-cloud\"></div>\n <div class=\"cloud background light-blue-cloud\"></div>\n </div>\n </main>\n</div>", styles: ["@keyframes gate-up-animation-default{0%{transform:none}20%{transform:none}50%{transform:rotate(-40deg) translate(14px,-47px)}70%{transform:rotate(-40deg) translate(14px,-47px)}to{transform:none}}@keyframes gate-up-animation-mobile{0%{transform:none}20%{transform:none}50%{transform:rotate(-40deg) translate(11px,-22px)}70%{transform:rotate(-40deg) translate(11px,-22px)}to{transform:none}}div.tb-container{position:absolute;inset:0;background-size:cover;overflow:hidden}div.tb-container header{display:flex;flex-direction:row;align-items:flex-end;height:100px;background:#263544 0% 0% no-repeat padding-box}div.tb-container header div:first-child{z-index:4;background:inherit}div.tb-container header .tb-button{display:none}div.tb-container header .wrapper-logo{width:166px;height:64px;padding:18px 56px}div.tb-container header .wrapper-logo .tb-logo{height:100%;width:100%;background:url(/assets/tiba-logo.svg) no-repeat;background-size:contain;cursor:pointer}div.tb-container header .tb-modules{display:flex;align-items:center;width:680px;min-width:340px;margin-left:80px;flex:100%}div.tb-container header .tb-modules .tb-module{flex:1;height:110px;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;max-width:180px;min-width:120px}div.tb-container header .tb-modules .tb-module span{text-align:center;font-size:13px;font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#fff}div.tb-container header .tb-modules .tb-module:hover{background:#ffffff1a}div.tb-container main{height:calc(100% - 100px)}div.tb-container main .left-section .inner-content{position:absolute;top:100px}div.tb-container main .container{position:relative;margin:0 auto;width:85%;height:100%;padding-bottom:25vh;display:flex;flex-direction:row;justify-content:space-around}div.tb-container main .left-section,div.tb-container main .right-section{position:relative}div.tb-container main .left-section{width:40%}div.tb-container main .heading{text-align:center;font-size:300px;line-height:1.3em;margin:2rem 0 .5rem;padding:0;font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;font-weight:900;color:#2c3e50}div.tb-container main .subheading{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#2c3e50;text-align:center;max-width:606px;font-size:34px;line-height:1.15em;padding:0 1rem;margin:0 auto}div.tb-container main .right-section{width:50%;display:flex;justify-content:center}div.tb-container main .right-section div{height:100%;width:100%;position:relative}div.tb-container main .mountains-image{position:absolute;bottom:0;padding-top:10vh;padding-left:1vh;max-height:100%;min-width:500px;z-index:1}div.tb-container main .blue-gate{position:absolute;bottom:165px;left:493px;animation:gate-up-animation-default linear 10s infinite;animation-delay:2s}div.tb-container #clouds{height:100%;width:100%}div.tb-container #clouds .light-blue-cloud{width:187px;height:131px;background-image:url(/assets/light-blue-cloud.svg)}div.tb-container #clouds .grey-cloud{width:154px;height:108px;background-image:url(/assets/grey-cloud.svg)}div.tb-container #clouds .cloud{position:absolute;animation-fill-mode:both}div.tb-container #clouds .cloud.foreground{z-index:2}div.tb-container #clouds .cloud.background{z-index:-1}@keyframes cloud-animation{0%{left:-10%}to{left:100%}}@keyframes cloud1-animation{0%{left:-10%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(1){left:-10%;top:147px;animation:cloud1-animation linear,cloud-animation linear infinite;animation-duration:24s,27s;animation-delay:0s,24s}@keyframes cloud2-animation{0%{left:50%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(2){left:50%;top:283px;animation:cloud2-animation linear,cloud-animation linear infinite;animation-duration:18s,26s;animation-delay:0s,18s}@keyframes cloud3-animation{0%{left:53%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(3){left:53%;top:278px;animation:cloud3-animation linear,cloud-animation linear infinite;animation-duration:12s,25s;animation-delay:0s,12s}@keyframes cloud4-animation{0%{left:85%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(4){left:85%;top:488px;animation:cloud4-animation linear,cloud-animation linear infinite;animation-duration:6s,24s;animation-delay:0s,6s}@media (max-width: 1300px){div.tb-container header{height:80px}div.tb-container header .wrapper-logo{height:100%;width:121px;padding:0 0 0 20px}div.tb-container header .wrapper-logo .tb-logo{width:121px;max-width:121px;max-height:45px}div.tb-container header .tb-button{display:block}div.tb-container header .tb-modules{position:absolute;top:80px;background:#263544 0% 0% no-repeat padding-box;max-height:440px;overflow:auto;width:100%!important;margin:-1px 0 0!important;padding-bottom:20px;z-index:3;display:grid!important;grid-template-columns:repeat(4,180px);align-content:space-around;justify-content:center;transition:transform 1s}div.tb-container header .tb-modules.drawer-collapsed{transform:translateY(-100%)}div.tb-container main{height:calc(100% - 80px)}div.tb-container main .container{flex-direction:column;padding-bottom:0vh}div.tb-container main .left-section{width:100%;height:40%;position:absolute;top:0}div.tb-container main .left-section .inner-content{position:relative;padding:1rem 0}div.tb-container main .heading{font-size:143px;line-height:1.15;margin:0}div.tb-container main .subheading{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#2c3e50;font-size:16px;line-height:1.15;max-width:100%}div.tb-container main .right-section{width:100%;height:60%;position:absolute;bottom:0}div.tb-container main .right-section>div{display:flex;justify-content:center}div.tb-container main .right-section>div img.mountains-image{width:375px}div.tb-container main .right-section>div img.blue-gate{width:75px;left:47px;top:105px;animation:gate-up-animation-mobile linear 10s infinite;position:relative}div.tb-container main .mountains-image{padding:0}div.tb-container #clouds .light-blue-cloud{width:88px;height:62px;background-size:contain}div.tb-container #clouds .grey-cloud{width:73px;height:51px;background-size:contain}div.tb-container #clouds .cloud:nth-child(1){top:120px}div.tb-container #clouds .cloud:nth-child(2){top:185px}div.tb-container #clouds .cloud:nth-child(3){top:182px}div.tb-container #clouds .cloud:nth-child(4){top:325px}}@media (max-width: 800px){div.tb-container header .tb-modules{grid-template-columns:repeat(3,180px)}}@media (max-width: 600px){div.tb-container header .tb-modules{grid-template-columns:repeat(2,180px)}}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconComponent, selector: "tb-icon", inputs: ["setCursorPointer", "facilityCommandIcon", "remoteCommandIcon", "settings"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: TranslateLocalPipe, name: "translateLocal" }], animations: [appModuleAnimation()], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
96021
96165
  }
96022
96166
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ErrorPageComponent, decorators: [{
96023
96167
  type: Component,
96024
96168
  args: [{ changeDetection: ChangeDetectionStrategy.OnPush, selector: 'tb-error-page', animations: [appModuleAnimation()], standalone: false, template: "<div class=\"tb-container\" [@routerTransition]>\n <header>\n <div class=\"tb-flex tb-align-items-center tb-full-height tb-space-between tb-flex-grow\">\n <div class=\"wrapper-logo tb-flex-center\">\n <div class=\"tb-logo\" (click)=\"navigateToDefaultRoute()\"></div>\n </div>\n <div class=\"tb-button tb-mr-28\" (click)=\"drawerCollapsed = !drawerCollapsed; $event.stopPropagation();\">\n <tb-icon [settings]=\"iconsHelper.three_bars_mobile\" class=\"tb-icon tb-icon-30\"></tb-icon>\n </div>\n </div>\n <div class=\"tb-modules\" [class.drawer-collapsed]=\"drawerCollapsed\">\n <div class=\"tb-module\" *ngFor=\"let appSectionKey of appSectionModuleMenu\"\n (click)=\"navigateToModule(appSectionKey)\">\n <tb-icon [settings]=\"iconsHelper[appSectionLabel.get(appSectionKey) + '_blue']\"></tb-icon>\n <span class=\"tb-menu-header-text\"> {{appSectionLabel.get(appSectionKey) | translateLocal | async}}</span>\n </div>\n </div>\n </header>\n\n <main>\n <div class=\"container\">\n <div class=\"left-section\">\n <div class=\"inner-content\">\n <h1 class=\"heading\">{{ statusCodeError }}</h1>\n <p class=\"subheading\">{{ statusCodeErrorMessage | translateLocal | async }}</p>\n </div>\n </div>\n <div class=\"right-section\">\n <div>\n <img class=\"mountains-image\" src=\"assets/mountains-{{statusCodeError}}.svg\">\n <img *ngIf=\"statusCodeError=='404'\" class=\"blue-gate\" src=\"assets/blue-gate.svg\">\n </div>\n </div>\n </div>\n <div id=\"clouds\">\n <div class=\"cloud background light-blue-cloud\"></div>\n <div class=\"cloud foreground light-blue-cloud\"></div>\n <div class=\"cloud background grey-cloud\"></div>\n <div class=\"cloud background light-blue-cloud\"></div>\n </div>\n </main>\n</div>", styles: ["@keyframes gate-up-animation-default{0%{transform:none}20%{transform:none}50%{transform:rotate(-40deg) translate(14px,-47px)}70%{transform:rotate(-40deg) translate(14px,-47px)}to{transform:none}}@keyframes gate-up-animation-mobile{0%{transform:none}20%{transform:none}50%{transform:rotate(-40deg) translate(11px,-22px)}70%{transform:rotate(-40deg) translate(11px,-22px)}to{transform:none}}div.tb-container{position:absolute;inset:0;background-size:cover;overflow:hidden}div.tb-container header{display:flex;flex-direction:row;align-items:flex-end;height:100px;background:#263544 0% 0% no-repeat padding-box}div.tb-container header div:first-child{z-index:4;background:inherit}div.tb-container header .tb-button{display:none}div.tb-container header .wrapper-logo{width:166px;height:64px;padding:18px 56px}div.tb-container header .wrapper-logo .tb-logo{height:100%;width:100%;background:url(/assets/tiba-logo.svg) no-repeat;background-size:contain;cursor:pointer}div.tb-container header .tb-modules{display:flex;align-items:center;width:680px;min-width:340px;margin-left:80px;flex:100%}div.tb-container header .tb-modules .tb-module{flex:1;height:110px;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;max-width:180px;min-width:120px}div.tb-container header .tb-modules .tb-module span{text-align:center;font-size:13px;font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#fff}div.tb-container header .tb-modules .tb-module:hover{background:#ffffff1a}div.tb-container main{height:calc(100% - 100px)}div.tb-container main .left-section .inner-content{position:absolute;top:100px}div.tb-container main .container{position:relative;margin:0 auto;width:85%;height:100%;padding-bottom:25vh;display:flex;flex-direction:row;justify-content:space-around}div.tb-container main .left-section,div.tb-container main .right-section{position:relative}div.tb-container main .left-section{width:40%}div.tb-container main .heading{text-align:center;font-size:300px;line-height:1.3em;margin:2rem 0 .5rem;padding:0;font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;font-weight:900;color:#2c3e50}div.tb-container main .subheading{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#2c3e50;text-align:center;max-width:606px;font-size:34px;line-height:1.15em;padding:0 1rem;margin:0 auto}div.tb-container main .right-section{width:50%;display:flex;justify-content:center}div.tb-container main .right-section div{height:100%;width:100%;position:relative}div.tb-container main .mountains-image{position:absolute;bottom:0;padding-top:10vh;padding-left:1vh;max-height:100%;min-width:500px;z-index:1}div.tb-container main .blue-gate{position:absolute;bottom:165px;left:493px;animation:gate-up-animation-default linear 10s infinite;animation-delay:2s}div.tb-container #clouds{height:100%;width:100%}div.tb-container #clouds .light-blue-cloud{width:187px;height:131px;background-image:url(/assets/light-blue-cloud.svg)}div.tb-container #clouds .grey-cloud{width:154px;height:108px;background-image:url(/assets/grey-cloud.svg)}div.tb-container #clouds .cloud{position:absolute;animation-fill-mode:both}div.tb-container #clouds .cloud.foreground{z-index:2}div.tb-container #clouds .cloud.background{z-index:-1}@keyframes cloud-animation{0%{left:-10%}to{left:100%}}@keyframes cloud1-animation{0%{left:-10%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(1){left:-10%;top:147px;animation:cloud1-animation linear,cloud-animation linear infinite;animation-duration:24s,27s;animation-delay:0s,24s}@keyframes cloud2-animation{0%{left:50%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(2){left:50%;top:283px;animation:cloud2-animation linear,cloud-animation linear infinite;animation-duration:18s,26s;animation-delay:0s,18s}@keyframes cloud3-animation{0%{left:53%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(3){left:53%;top:278px;animation:cloud3-animation linear,cloud-animation linear infinite;animation-duration:12s,25s;animation-delay:0s,12s}@keyframes cloud4-animation{0%{left:85%}to{left:100%}}div.tb-container #clouds .cloud:nth-child(4){left:85%;top:488px;animation:cloud4-animation linear,cloud-animation linear infinite;animation-duration:6s,24s;animation-delay:0s,6s}@media (max-width: 1300px){div.tb-container header{height:80px}div.tb-container header .wrapper-logo{height:100%;width:121px;padding:0 0 0 20px}div.tb-container header .wrapper-logo .tb-logo{width:121px;max-width:121px;max-height:45px}div.tb-container header .tb-button{display:block}div.tb-container header .tb-modules{position:absolute;top:80px;background:#263544 0% 0% no-repeat padding-box;max-height:440px;overflow:auto;width:100%!important;margin:-1px 0 0!important;padding-bottom:20px;z-index:3;display:grid!important;grid-template-columns:repeat(4,180px);align-content:space-around;justify-content:center;transition:transform 1s}div.tb-container header .tb-modules.drawer-collapsed{transform:translateY(-100%)}div.tb-container main{height:calc(100% - 80px)}div.tb-container main .container{flex-direction:column;padding-bottom:0vh}div.tb-container main .left-section{width:100%;height:40%;position:absolute;top:0}div.tb-container main .left-section .inner-content{position:relative;padding:1rem 0}div.tb-container main .heading{font-size:143px;line-height:1.15;margin:0}div.tb-container main .subheading{font-family:Open Sans,Open Sans Local,Roboto,Roboto Local,sans-serif;color:#2c3e50;font-size:16px;line-height:1.15;max-width:100%}div.tb-container main .right-section{width:100%;height:60%;position:absolute;bottom:0}div.tb-container main .right-section>div{display:flex;justify-content:center}div.tb-container main .right-section>div img.mountains-image{width:375px}div.tb-container main .right-section>div img.blue-gate{width:75px;left:47px;top:105px;animation:gate-up-animation-mobile linear 10s infinite;position:relative}div.tb-container main .mountains-image{padding:0}div.tb-container #clouds .light-blue-cloud{width:88px;height:62px;background-size:contain}div.tb-container #clouds .grey-cloud{width:73px;height:51px;background-size:contain}div.tb-container #clouds .cloud:nth-child(1){top:120px}div.tb-container #clouds .cloud:nth-child(2){top:185px}div.tb-container #clouds .cloud:nth-child(3){top:182px}div.tb-container #clouds .cloud:nth-child(4){top:325px}}@media (max-width: 800px){div.tb-container header .tb-modules{grid-template-columns:repeat(3,180px)}}@media (max-width: 600px){div.tb-container header .tb-modules{grid-template-columns:repeat(2,180px)}}\n"] }]
96025
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: SessionStorageService }, { type: HttpCancelService }, { type: AppConfigService }, { type: i1$7.ActivatedRoute }], propDecorators: { click: [{
96169
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: SessionStorageService }, { type: HttpCancelService }, { type: AppConfigService }, { type: i1$8.ActivatedRoute }], propDecorators: { click: [{
96026
96170
  type: HostListener,
96027
96171
  args: ['document:click', ['$event']]
96028
96172
  }] } });
@@ -96080,7 +96224,7 @@ class NotificationModule {
96080
96224
  AlertNotificationComponent,
96081
96225
  IconModule,
96082
96226
  LocalizationModule,
96083
- MatTooltipModule, i1$8.ToastrModule] }); }
96227
+ MatTooltipModule, i1$9.ToastrModule] }); }
96084
96228
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationModule, providers: [
96085
96229
  NotificationEventService,
96086
96230
  CommandNotificationService,
@@ -96970,8 +97114,8 @@ class CloudConfirmDialogComponent extends BaseComponent {
96970
97114
  close(ok) {
96971
97115
  this.dialogRef.close(ok);
96972
97116
  }
96973
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CloudConfirmDialogComponent, deps: [{ token: i1$4.TranslateService }, { token: MAT_DIALOG_DATA }, { token: i2$2.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
96974
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CloudConfirmDialogComponent, isStandalone: true, selector: "tb-cloud-confirm-dialog", usesInheritance: true, ngImport: i0, template: "<div class=\"tb-modal\">\n <div class=\"modal-title-container\">\n <div class=\"ellipsis modal-title-content\" mat-dialog-title>\n <div class=\"modal-title-primary ellipsis\">{{data.confirmTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data.confirmSubTitle\">{{data.confirmSubTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.ticket\">\n <span class=\"entity-identifier-type\">{{ data.ticket.type }}</span>\n <span>#{{ data.ticket.number }}</span>\n </div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.device\">{{ data.device.name }} | #{{ data.device.commId }}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.lpr\">{{ L.car_plate | translate }}: {{ data.lpr.lprString }}</div>\n <div class=\"modal-title-sub-secondary ellipsis\" *ngIf=\"data?.parkName\">\n <span>{{ data.parkName }}</span>\n <span *ngIf=\"data?.zoneName\"> | {{ data.zoneName }}</span>\n </div>\n </div>\n <div class=\"modal-button-wrapper\">\n <tb-notification-type-label *ngIf=\"data?.notificationSeverity\" class=\"tb-mr-5\" [notificationSeverity]=\"data?.notificationSeverity\"\n [notificationSeverityInvert]=\"data?.notificationSeverityInvert\">\n </tb-notification-type-label>\n </div>\n </div>\n <mat-dialog-content>\n <tb-message-bar *ngIf=\"data.showMessageBar\" [dialog]=\"true\"></tb-message-bar>\n <div class=\"modal-text\" *ngFor=\"let confirmMessage of data.confirmMessages\">\n <span [innerHTML]=\"confirmMessage | curlyToBold\"></span>\n </div>\n </mat-dialog-content>\n <mat-dialog-actions>\n <div class=\"buttons-wrapper\">\n <div class=\"buttons-wrapper-left\">\n <!-- No Left Action -->\n </div>\n <div class=\"buttons-wrapper-right\">\n <button *ngIf=\"!data.hideCancel\" class='tb-button tb-tertiary-button basic-button' tabindex=\"-1\" (click)=\"close(false)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.cancel_btn\" matRipple>\n <span class=\"button-text\">{{ data.cancelText | translate }}</span>\n </button>\n <button *ngIf=\"!data.hideOk\" class='tb-button tb-primary-button basic-button' (click)=\"close(true)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.confirm_btn\" matRipple>\n <span class=\"button-text\">{{ data.okText | translate }}</span>\n </button>\n </div>\n </div>\n </mat-dialog-actions>\n</div>", styles: [".modal-text span{white-space:pre-line}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "component", type: NotificationTypeLabelComponent, selector: "tb-notification-type-label", inputs: ["notificationSeverity", "notificationSeverityInvert", "notificationSeverityText"] }, { kind: "ngmodule", type: MatSnackBarModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i2$2.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i2$2.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i2$2.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i4$1.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "ngmodule", type: MessageBarModule }, { kind: "component", type: MessageBarComponent, selector: "tb-message-bar", inputs: ["id", "stack", "fade", "dialog", "class"] }, { kind: "pipe", type: CurlyToBoldPipe, name: "curlyToBold" }] }); }
97117
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CloudConfirmDialogComponent, deps: [{ token: i1$5.TranslateService }, { token: MAT_DIALOG_DATA }, { token: i2$2.MatDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
97118
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CloudConfirmDialogComponent, isStandalone: true, selector: "tb-cloud-confirm-dialog", usesInheritance: true, ngImport: i0, template: "<div class=\"tb-modal\">\n <div class=\"modal-title-container\">\n <div class=\"ellipsis modal-title-content\" mat-dialog-title>\n <div class=\"modal-title-primary ellipsis\">{{data.confirmTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data.confirmSubTitle\">{{data.confirmSubTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.ticket\">\n <span class=\"entity-identifier-type\">{{ data.ticket.type }}</span>\n <span>#{{ data.ticket.number }}</span>\n </div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.device\">{{ data.device.name }} | #{{ data.device.commId }}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.lpr\">{{ L.car_plate | translate }}: {{ data.lpr.lprString }}</div>\n <div class=\"modal-title-sub-secondary ellipsis\" *ngIf=\"data?.parkName\">\n <span>{{ data.parkName }}</span>\n <span *ngIf=\"data?.zoneName\"> | {{ data.zoneName }}</span>\n </div>\n </div>\n <div class=\"modal-button-wrapper\">\n <tb-notification-type-label *ngIf=\"data?.notificationSeverity\" class=\"tb-mr-5\" [notificationSeverity]=\"data?.notificationSeverity\"\n [notificationSeverityInvert]=\"data?.notificationSeverityInvert\">\n </tb-notification-type-label>\n </div>\n </div>\n <mat-dialog-content>\n <tb-message-bar *ngIf=\"data.showMessageBar\" [dialog]=\"true\"></tb-message-bar>\n <div class=\"modal-text\" *ngFor=\"let confirmMessage of data.confirmMessages\">\n <span [innerHTML]=\"confirmMessage | curlyToBold\"></span>\n </div>\n </mat-dialog-content>\n <mat-dialog-actions>\n <div class=\"buttons-wrapper\">\n <div class=\"buttons-wrapper-left\">\n <!-- No Left Action -->\n </div>\n <div class=\"buttons-wrapper-right\">\n <button *ngIf=\"!data.hideCancel\" class='tb-button tb-tertiary-button basic-button' tabindex=\"-1\" (click)=\"close(false)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.cancel_btn\" matRipple>\n <span class=\"button-text\">{{ data.cancelText | translate }}</span>\n </button>\n <button *ngIf=\"!data.hideOk\" class='tb-button tb-primary-button basic-button' (click)=\"close(true)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.confirm_btn\" matRipple>\n <span class=\"button-text\">{{ data.okText | translate }}</span>\n </button>\n </div>\n </div>\n </mat-dialog-actions>\n</div>", styles: [".modal-text span{white-space:pre-line}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "component", type: NotificationTypeLabelComponent, selector: "tb-notification-type-label", inputs: ["notificationSeverity", "notificationSeverityInvert", "notificationSeverityText"] }, { kind: "ngmodule", type: MatSnackBarModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "directive", type: i2$2.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i2$2.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: i2$2.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "ngmodule", type: MatRippleModule }, { kind: "directive", type: i4.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "ngmodule", type: MessageBarModule }, { kind: "component", type: MessageBarComponent, selector: "tb-message-bar", inputs: ["id", "stack", "fade", "dialog", "class"] }, { kind: "pipe", type: CurlyToBoldPipe, name: "curlyToBold" }] }); }
96975
97119
  }
96976
97120
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CloudConfirmDialogComponent, decorators: [{
96977
97121
  type: Component,
@@ -96986,7 +97130,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
96986
97130
  MessageBarModule,
96987
97131
  CurlyToBoldPipe,
96988
97132
  ], template: "<div class=\"tb-modal\">\n <div class=\"modal-title-container\">\n <div class=\"ellipsis modal-title-content\" mat-dialog-title>\n <div class=\"modal-title-primary ellipsis\">{{data.confirmTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data.confirmSubTitle\">{{data.confirmSubTitle}}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.ticket\">\n <span class=\"entity-identifier-type\">{{ data.ticket.type }}</span>\n <span>#{{ data.ticket.number }}</span>\n </div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.device\">{{ data.device.name }} | #{{ data.device.commId }}</div>\n <div class=\"modal-title-secondary ellipsis\" *ngIf=\"data?.lpr\">{{ L.car_plate | translate }}: {{ data.lpr.lprString }}</div>\n <div class=\"modal-title-sub-secondary ellipsis\" *ngIf=\"data?.parkName\">\n <span>{{ data.parkName }}</span>\n <span *ngIf=\"data?.zoneName\"> | {{ data.zoneName }}</span>\n </div>\n </div>\n <div class=\"modal-button-wrapper\">\n <tb-notification-type-label *ngIf=\"data?.notificationSeverity\" class=\"tb-mr-5\" [notificationSeverity]=\"data?.notificationSeverity\"\n [notificationSeverityInvert]=\"data?.notificationSeverityInvert\">\n </tb-notification-type-label>\n </div>\n </div>\n <mat-dialog-content>\n <tb-message-bar *ngIf=\"data.showMessageBar\" [dialog]=\"true\"></tb-message-bar>\n <div class=\"modal-text\" *ngFor=\"let confirmMessage of data.confirmMessages\">\n <span [innerHTML]=\"confirmMessage | curlyToBold\"></span>\n </div>\n </mat-dialog-content>\n <mat-dialog-actions>\n <div class=\"buttons-wrapper\">\n <div class=\"buttons-wrapper-left\">\n <!-- No Left Action -->\n </div>\n <div class=\"buttons-wrapper-right\">\n <button *ngIf=\"!data.hideCancel\" class='tb-button tb-tertiary-button basic-button' tabindex=\"-1\" (click)=\"close(false)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.cancel_btn\" matRipple>\n <span class=\"button-text\">{{ data.cancelText | translate }}</span>\n </button>\n <button *ngIf=\"!data.hideOk\" class='tb-button tb-primary-button basic-button' (click)=\"close(true)\"\n [attr.data-qa]=\"DataQaAttribute.cloud_confirm_diaglog+'_'+DataQaAttribute.confirm_btn\" matRipple>\n <span class=\"button-text\">{{ data.okText | translate }}</span>\n </button>\n </div>\n </div>\n </mat-dialog-actions>\n</div>", styles: [".modal-text span{white-space:pre-line}\n"] }]
96989
- }], ctorParameters: () => [{ type: i1$4.TranslateService }, { type: undefined, decorators: [{
97133
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }, { type: undefined, decorators: [{
96990
97134
  type: Inject,
96991
97135
  args: [MAT_DIALOG_DATA]
96992
97136
  }] }, { type: i2$2.MatDialogRef }] });
@@ -97091,12 +97235,12 @@ class InternetConnectionService {
97091
97235
  this.destroy$.next();
97092
97236
  this.destroy$.complete();
97093
97237
  }
97094
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternetConnectionService, deps: [{ token: i1$7.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
97238
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternetConnectionService, deps: [{ token: i1$8.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
97095
97239
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternetConnectionService }); }
97096
97240
  }
97097
97241
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternetConnectionService, decorators: [{
97098
97242
  type: Injectable
97099
- }], ctorParameters: () => [{ type: i1$7.Router }] });
97243
+ }], ctorParameters: () => [{ type: i1$8.Router }] });
97100
97244
 
97101
97245
  class AccountFrameMessageBarComponent extends BaseComponent {
97102
97246
  constructor(appConfig, internetConnectionService, messageBarService) {
@@ -97128,7 +97272,7 @@ class AccountFrameMessageBarComponent extends BaseComponent {
97128
97272
  <ng-template #displayMessageBar>
97129
97273
  <tb-message-bar></tb-message-bar>
97130
97274
  </ng-template>
97131
- `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$4.TranslatePipe, name: "translate" }, { kind: "component", type: GlobalMessageContainerComponent, selector: "tb-global-message-container", inputs: ["isMobile", "message", "title", "icon", "timeAgoInSeconds", "isPositionStatic"] }, { kind: "ngmodule", type: MessageBarModule }, { kind: "component", type: MessageBarComponent, selector: "tb-message-bar", inputs: ["id", "stack", "fade", "dialog", "class"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
97275
+ `, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: LocalizationModule }, { kind: "pipe", type: i1$5.TranslatePipe, name: "translate" }, { kind: "component", type: GlobalMessageContainerComponent, selector: "tb-global-message-container", inputs: ["isMobile", "message", "title", "icon", "timeAgoInSeconds", "isPositionStatic"] }, { kind: "ngmodule", type: MessageBarModule }, { kind: "component", type: MessageBarComponent, selector: "tb-message-bar", inputs: ["id", "stack", "fade", "dialog", "class"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
97132
97276
  }
97133
97277
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AccountFrameMessageBarComponent, decorators: [{
97134
97278
  type: Component,
@@ -97368,12 +97512,12 @@ class ModalService {
97368
97512
  this.componentRef[dialogId] = undefined;
97369
97513
  }
97370
97514
  }
97371
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, deps: [{ token: i2$2.MatDialog }, { token: i1$5.MatSnackBar }, { token: i0.ApplicationRef }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
97515
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, deps: [{ token: i2$2.MatDialog }, { token: i1$6.MatSnackBar }, { token: i0.ApplicationRef }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
97372
97516
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService }); }
97373
97517
  }
97374
97518
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, decorators: [{
97375
97519
  type: Injectable
97376
- }], ctorParameters: () => [{ type: i2$2.MatDialog }, { type: i1$5.MatSnackBar }, { type: i0.ApplicationRef }, { type: i0.Injector }, { type: i0.ComponentFactoryResolver }] });
97520
+ }], ctorParameters: () => [{ type: i2$2.MatDialog }, { type: i1$6.MatSnackBar }, { type: i0.ApplicationRef }, { type: i0.Injector }, { type: i0.ComponentFactoryResolver }] });
97377
97521
 
97378
97522
  class CanDeactivateService {
97379
97523
  constructor(modalService, translateService) {
@@ -97409,12 +97553,12 @@ class CanDeactivateService {
97409
97553
  const dialog = this.modalService.getOpenDialogs().find(dialog => dialog.id === 'unsaved-changes');
97410
97554
  return dialog?.getState() !== MatDialogState.OPEN;
97411
97555
  }
97412
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CanDeactivateService, deps: [{ token: ModalService }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
97556
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CanDeactivateService, deps: [{ token: ModalService }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
97413
97557
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CanDeactivateService }); }
97414
97558
  }
97415
97559
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CanDeactivateService, decorators: [{
97416
97560
  type: Injectable
97417
- }], ctorParameters: () => [{ type: ModalService }, { type: i1$4.TranslateService }] });
97561
+ }], ctorParameters: () => [{ type: ModalService }, { type: i1$5.TranslateService }] });
97418
97562
 
97419
97563
  class ModalButtonsWrapperComponent extends BaseComponent {
97420
97564
  constructor(store, canDeactivateService) {
@@ -99497,7 +99641,7 @@ let SmartparkState = class SmartparkState {
99497
99641
  });
99498
99642
  return countParkingLots;
99499
99643
  }
99500
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SmartparkState, deps: [{ token: i1$2.Store }, { token: RevenueService }, { token: CloudManagementServiceProxy }, { token: SmartparkServiceProxy }, { token: FacilityServiceProxy }, { token: DeviceServiceProxy }, { token: MessageBarService }, { token: RouteService }, { token: i1$4.TranslateService }, { token: ExportFileService }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
99644
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SmartparkState, deps: [{ token: i1$2.Store }, { token: RevenueService }, { token: CloudManagementServiceProxy }, { token: SmartparkServiceProxy }, { token: FacilityServiceProxy }, { token: DeviceServiceProxy }, { token: MessageBarService }, { token: RouteService }, { token: i1$5.TranslateService }, { token: ExportFileService }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
99501
99645
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SmartparkState }); }
99502
99646
  };
99503
99647
  __decorate([
@@ -99638,7 +99782,7 @@ SmartparkState = __decorate([
99638
99782
  ], SmartparkState);
99639
99783
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SmartparkState, decorators: [{
99640
99784
  type: Injectable
99641
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: RevenueService }, { type: CloudManagementServiceProxy }, { type: SmartparkServiceProxy }, { type: FacilityServiceProxy }, { type: DeviceServiceProxy }, { type: MessageBarService }, { type: RouteService }, { type: i1$4.TranslateService }, { type: ExportFileService }, { type: MobileServiceProxyIdentity }], propDecorators: { onLoadSmartparksAction: [], onLoadSmartparksBasicAction: [], onLoadMobileSmartparksBasicAction: [], onClearSmartparksBasicAction: [], onLoadSmartparksTableAction: [], onSetSmartParkTableAction: [], onSetSmartParksAction: [], onSelectSmartParkAction: [], onLoadParksAction: [], onLoadParkDevices: [], onSelectParkAction: [], onClearSelectedParkAction: [], onClearSelectedsmartparkAction: [], onSmartParkDeviceStatusChangedAction: [], onDisconnectSmartparkAction: [], onSetSmartParkVersionsAction: [], onLoadSpAndSparkVersionsAction: [], onClearSpAndSparkVersionsAction: [], onLoadVarsAction: [], onSyncUsersAndRolesBySmartparkIdAction: [], onExportSmartparksAction: [], onExportPdfSmartparksTableAction: [] } });
99785
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: RevenueService }, { type: CloudManagementServiceProxy }, { type: SmartparkServiceProxy }, { type: FacilityServiceProxy }, { type: DeviceServiceProxy }, { type: MessageBarService }, { type: RouteService }, { type: i1$5.TranslateService }, { type: ExportFileService }, { type: MobileServiceProxyIdentity }], propDecorators: { onLoadSmartparksAction: [], onLoadSmartparksBasicAction: [], onLoadMobileSmartparksBasicAction: [], onClearSmartparksBasicAction: [], onLoadSmartparksTableAction: [], onSetSmartParkTableAction: [], onSetSmartParksAction: [], onSelectSmartParkAction: [], onLoadParksAction: [], onLoadParkDevices: [], onSelectParkAction: [], onClearSelectedParkAction: [], onClearSelectedsmartparkAction: [], onSmartParkDeviceStatusChangedAction: [], onDisconnectSmartparkAction: [], onSetSmartParkVersionsAction: [], onLoadSpAndSparkVersionsAction: [], onClearSpAndSparkVersionsAction: [], onLoadVarsAction: [], onSyncUsersAndRolesBySmartparkIdAction: [], onExportSmartparksAction: [], onExportPdfSmartparksTableAction: [] } });
99642
99786
 
99643
99787
  class LoginService {
99644
99788
  constructor(store, sessionStorageService, router, routeService) {
@@ -99657,12 +99801,12 @@ class LoginService {
99657
99801
  }
99658
99802
  return this.store.dispatch(new Navigate(this.routeService.getNavigationRoute()));
99659
99803
  }
99660
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginService, deps: [{ token: i1$2.Store }, { token: SessionStorageService }, { token: i1$7.Router }, { token: RouteService }], target: i0.ɵɵFactoryTarget.Injectable }); }
99804
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginService, deps: [{ token: i1$2.Store }, { token: SessionStorageService }, { token: i1$8.Router }, { token: RouteService }], target: i0.ɵɵFactoryTarget.Injectable }); }
99661
99805
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginService }); }
99662
99806
  }
99663
99807
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginService, decorators: [{
99664
99808
  type: Injectable
99665
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: SessionStorageService }, { type: i1$7.Router }, { type: RouteService }] });
99809
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: SessionStorageService }, { type: i1$8.Router }, { type: RouteService }] });
99666
99810
 
99667
99811
  class ForgotPasswordAction {
99668
99812
  static { this.type = '[login] ForgotPassword'; }
@@ -100008,7 +100152,7 @@ let LoginState = class LoginState {
100008
100152
  this.sessionStorageService.updateLoggedTenant();
100009
100153
  this.loginService.loginToSpark();
100010
100154
  }
100011
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginState, deps: [{ token: UsersServiceProxy$1 }, { token: UsersServiceProxy }, { token: OpenIdAuthService }, { token: UsersServiceProxyIdentity }, { token: AuthService }, { token: SessionStorageService }, { token: LoginService }, { token: i1$4.TranslateService }, { token: i9.MsalService }, { token: MessageBarService }, { token: AppConfigService }, { token: RouteService }, { token: i1$2.Store }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
100155
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginState, deps: [{ token: UsersServiceProxy$1 }, { token: UsersServiceProxy }, { token: OpenIdAuthService }, { token: UsersServiceProxyIdentity }, { token: AuthService }, { token: SessionStorageService }, { token: LoginService }, { token: i1$5.TranslateService }, { token: i9.MsalService }, { token: MessageBarService }, { token: AppConfigService }, { token: RouteService }, { token: i1$2.Store }, { token: MobileServiceProxyIdentity }], target: i0.ɵɵFactoryTarget.Injectable }); }
100012
100156
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginState }); }
100013
100157
  };
100014
100158
  __decorate([
@@ -100077,7 +100221,7 @@ LoginState = __decorate([
100077
100221
  ], LoginState);
100078
100222
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginState, decorators: [{
100079
100223
  type: Injectable
100080
- }], ctorParameters: () => [{ type: UsersServiceProxy$1 }, { type: UsersServiceProxy }, { type: OpenIdAuthService }, { type: UsersServiceProxyIdentity }, { type: AuthService }, { type: SessionStorageService }, { type: LoginService }, { type: i1$4.TranslateService }, { type: i9.MsalService }, { type: MessageBarService }, { type: AppConfigService }, { type: RouteService }, { type: i1$2.Store }, { type: MobileServiceProxyIdentity }], propDecorators: { onAuthenticateMultipleTenantsAction: [], onMobileAuthenticateMultipleTenantsAction: [], onForgotPassword: [], onForgotPasswordTenantless: [], onAccountSetPasswordInitAction: [], onAccountSetPasswordErrorAction: [], onAccountSetPasswordAction: [], onValidateUserTokenAction: [], onVerify2FactorAuthenticationAction: [], onSetTFASetupAction: [], onOpenIdAutheticateAction: [] } });
100224
+ }], ctorParameters: () => [{ type: UsersServiceProxy$1 }, { type: UsersServiceProxy }, { type: OpenIdAuthService }, { type: UsersServiceProxyIdentity }, { type: AuthService }, { type: SessionStorageService }, { type: LoginService }, { type: i1$5.TranslateService }, { type: i9.MsalService }, { type: MessageBarService }, { type: AppConfigService }, { type: RouteService }, { type: i1$2.Store }, { type: MobileServiceProxyIdentity }], propDecorators: { onAuthenticateMultipleTenantsAction: [], onMobileAuthenticateMultipleTenantsAction: [], onForgotPassword: [], onForgotPasswordTenantless: [], onAccountSetPasswordInitAction: [], onAccountSetPasswordErrorAction: [], onAccountSetPasswordAction: [], onValidateUserTokenAction: [], onVerify2FactorAuthenticationAction: [], onSetTFASetupAction: [], onOpenIdAutheticateAction: [] } });
100081
100225
 
100082
100226
  class LoginModule {
100083
100227
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LoginModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -100539,12 +100683,12 @@ class FileService {
100539
100683
  }
100540
100684
  return res.success;
100541
100685
  }
100542
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FileService, deps: [{ token: MessageBarService }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
100686
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FileService, deps: [{ token: MessageBarService }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
100543
100687
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FileService }); }
100544
100688
  }
100545
100689
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FileService, decorators: [{
100546
100690
  type: Injectable
100547
- }], ctorParameters: () => [{ type: MessageBarService }, { type: i1$4.TranslateService }] });
100691
+ }], ctorParameters: () => [{ type: MessageBarService }, { type: i1$5.TranslateService }] });
100548
100692
 
100549
100693
  const days = [
100550
100694
  { label: Localization.monday_short, checked: false, value: 2 },
@@ -100591,12 +100735,12 @@ class DateService {
100591
100735
  this.convertTimeToMinutes = (time) => time ? time.hours * 60 + time.minutes : 0;
100592
100736
  this.days = cloneDeep(days);
100593
100737
  }
100594
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateService, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
100738
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateService, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
100595
100739
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateService }); }
100596
100740
  }
100597
100741
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateService, decorators: [{
100598
100742
  type: Injectable
100599
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
100743
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
100600
100744
 
100601
100745
  const AppTypeMap = new Map([
100602
100746
  [AppType.Cloud, ApplicationType.SparkWeb],
@@ -100969,12 +101113,12 @@ class CompanyService {
100969
101113
  this.messageBarService.clearMessagebar('credentialWarningMessage');
100970
101114
  }
100971
101115
  }
100972
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CompanyService, deps: [{ token: i1$2.Store }, { token: MessageBarService }, { token: i1$4.TranslateService }, { token: SmartparkService }, { token: CompanyServiceProxy }, { token: AccountServiceProxy$1 }], target: i0.ɵɵFactoryTarget.Injectable }); }
101116
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CompanyService, deps: [{ token: i1$2.Store }, { token: MessageBarService }, { token: i1$5.TranslateService }, { token: SmartparkService }, { token: CompanyServiceProxy }, { token: AccountServiceProxy$1 }], target: i0.ɵɵFactoryTarget.Injectable }); }
100973
101117
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CompanyService }); }
100974
101118
  }
100975
101119
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CompanyService, decorators: [{
100976
101120
  type: Injectable
100977
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: MessageBarService }, { type: i1$4.TranslateService }, { type: SmartparkService }, { type: CompanyServiceProxy }, { type: AccountServiceProxy$1 }] });
101121
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: MessageBarService }, { type: i1$5.TranslateService }, { type: SmartparkService }, { type: CompanyServiceProxy }, { type: AccountServiceProxy$1 }] });
100978
101122
 
100979
101123
  class ParkService {
100980
101124
  constructor(injector) {
@@ -101805,7 +101949,7 @@ let ParkerState = class ParkerState {
101805
101949
  state.parkerBreadcrumbValue = parkerBreadcrumbValue;
101806
101950
  return state;
101807
101951
  }
101808
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerState, deps: [{ token: ChaserTicketServiceProxy }, { token: PaymentServiceProxy }, { token: MonthlyServiceProxy }, { token: TransientServiceProxy }, { token: GuestServiceProxy }, { token: EvoucherServiceProxy }, { token: CreditCardServiceProxy }, { token: AccessProfileServiceProxy }, { token: AuditServiceProxy }, { token: i1$2.Store }, { token: SessionStorageService }, { token: i1$4.TranslateService }, { token: FileServiceProxy }, { token: FileService }, { token: MessageBarService }, { token: SignalR }, { token: NotificationEventService }, { token: AccountServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
101952
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerState, deps: [{ token: ChaserTicketServiceProxy }, { token: PaymentServiceProxy }, { token: MonthlyServiceProxy }, { token: TransientServiceProxy }, { token: GuestServiceProxy }, { token: EvoucherServiceProxy }, { token: CreditCardServiceProxy }, { token: AccessProfileServiceProxy }, { token: AuditServiceProxy }, { token: i1$2.Store }, { token: SessionStorageService }, { token: i1$5.TranslateService }, { token: FileServiceProxy }, { token: FileService }, { token: MessageBarService }, { token: SignalR }, { token: NotificationEventService }, { token: AccountServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
101809
101953
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerState }); }
101810
101954
  };
101811
101955
  __decorate([
@@ -101909,7 +102053,7 @@ ParkerState = __decorate([
101909
102053
  ], ParkerState);
101910
102054
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerState, decorators: [{
101911
102055
  type: Injectable
101912
- }], ctorParameters: () => [{ type: ChaserTicketServiceProxy }, { type: PaymentServiceProxy }, { type: MonthlyServiceProxy }, { type: TransientServiceProxy }, { type: GuestServiceProxy }, { type: EvoucherServiceProxy }, { type: CreditCardServiceProxy }, { type: AccessProfileServiceProxy }, { type: AuditServiceProxy }, { type: i1$2.Store }, { type: SessionStorageService }, { type: i1$4.TranslateService }, { type: FileServiceProxy }, { type: FileService }, { type: MessageBarService }, { type: SignalR }, { type: NotificationEventService }, { type: AccountServiceProxy }], propDecorators: { onClearParkerAction: [], onLoadParkerAction: [], onLoadParkersAction: [], onLoadLocateTicketSearchAction: [], onLoadLocatedTicketAction: [], onLoadTicketNumParkersAction: [], onSetSearchTermAction: [], onClearSearchTermAction: [], onClearSearchResultsAction: [], onClearLocateTicketSearchAction: [], onClearLocatedTicketAction: [], onUpdateDocumentAction: [], onUpdateTicketPlateIdAction: [], onPrintReceiptAction: [], onReceiptGeneratedAction: [], onReloadParkerAction: [], onSetTicketIdentifierIdAction: [] } });
102056
+ }], ctorParameters: () => [{ type: ChaserTicketServiceProxy }, { type: PaymentServiceProxy }, { type: MonthlyServiceProxy }, { type: TransientServiceProxy }, { type: GuestServiceProxy }, { type: EvoucherServiceProxy }, { type: CreditCardServiceProxy }, { type: AccessProfileServiceProxy }, { type: AuditServiceProxy }, { type: i1$2.Store }, { type: SessionStorageService }, { type: i1$5.TranslateService }, { type: FileServiceProxy }, { type: FileService }, { type: MessageBarService }, { type: SignalR }, { type: NotificationEventService }, { type: AccountServiceProxy }], propDecorators: { onClearParkerAction: [], onLoadParkerAction: [], onLoadParkersAction: [], onLoadLocateTicketSearchAction: [], onLoadLocatedTicketAction: [], onLoadTicketNumParkersAction: [], onSetSearchTermAction: [], onClearSearchTermAction: [], onClearSearchResultsAction: [], onClearLocateTicketSearchAction: [], onClearLocatedTicketAction: [], onUpdateDocumentAction: [], onUpdateTicketPlateIdAction: [], onPrintReceiptAction: [], onReceiptGeneratedAction: [], onReloadParkerAction: [], onSetTicketIdentifierIdAction: [] } });
101913
102057
 
101914
102058
  class TicketService {
101915
102059
  constructor(injector) {
@@ -102061,12 +102205,12 @@ class ValidationService {
102061
102205
  }
102062
102206
  }
102063
102207
  }
102064
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationService, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
102208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationService, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
102065
102209
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationService }); }
102066
102210
  }
102067
102211
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationService, decorators: [{
102068
102212
  type: Injectable
102069
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
102213
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
102070
102214
 
102071
102215
  let UserState = class UserState {
102072
102216
  constructor(usersServiceProxyCloud, userServiceProxyIdentity, messageBarService, appConfig, tenantServiceProxy, translateService, store) {
@@ -102349,7 +102493,7 @@ let UserState = class UserState {
102349
102493
  }
102350
102494
  return props;
102351
102495
  }
102352
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserState, deps: [{ token: UsersServiceProxy$1 }, { token: UsersServiceProxyIdentity }, { token: MessageBarService }, { token: AppConfigService }, { token: TenantServiceProxy }, { token: i1$4.TranslateService }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
102496
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserState, deps: [{ token: UsersServiceProxy$1 }, { token: UsersServiceProxyIdentity }, { token: MessageBarService }, { token: AppConfigService }, { token: TenantServiceProxy }, { token: i1$5.TranslateService }, { token: i1$2.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
102353
102497
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserState }); }
102354
102498
  };
102355
102499
  __decorate([
@@ -102426,7 +102570,7 @@ UserState = __decorate([
102426
102570
  ], UserState);
102427
102571
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UserState, decorators: [{
102428
102572
  type: Injectable
102429
- }], ctorParameters: () => [{ type: UsersServiceProxy$1 }, { type: UsersServiceProxyIdentity }, { type: MessageBarService }, { type: AppConfigService }, { type: TenantServiceProxy }, { type: i1$4.TranslateService }, { type: i1$2.Store }], propDecorators: { onLoad2FAUserAction: [], onLoadUserPermissionsAction: [], onLoadUsersAction: [], onSetMonthliesAction: [], onAddUserAction: [], onEditUserAction: [], onDeleteUserAction: [], onResendUserInvitationAction: [], onSetUserStatusAction: [], onResendPendingAdminInvitationsAction: [], onEnable2FAAction: [], onDisable2FAAction: [], onClearUsersAction: [], onUpdateAndActivateUserAction: [], onUpdateTenantSingleSignOnAction: [] } });
102573
+ }], ctorParameters: () => [{ type: UsersServiceProxy$1 }, { type: UsersServiceProxyIdentity }, { type: MessageBarService }, { type: AppConfigService }, { type: TenantServiceProxy }, { type: i1$5.TranslateService }, { type: i1$2.Store }], propDecorators: { onLoad2FAUserAction: [], onLoadUserPermissionsAction: [], onLoadUsersAction: [], onSetMonthliesAction: [], onAddUserAction: [], onEditUserAction: [], onDeleteUserAction: [], onResendUserInvitationAction: [], onSetUserStatusAction: [], onResendPendingAdminInvitationsAction: [], onEnable2FAAction: [], onDisable2FAAction: [], onClearUsersAction: [], onUpdateAndActivateUserAction: [], onUpdateTenantSingleSignOnAction: [] } });
102430
102574
 
102431
102575
  class PermissionsService {
102432
102576
  constructor(store) {
@@ -102688,12 +102832,12 @@ class DeviceRemoteCommandsService {
102688
102832
  }
102689
102833
  return isEnabled;
102690
102834
  }
102691
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DeviceRemoteCommandsService, deps: [{ token: i1$2.Store }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
102835
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DeviceRemoteCommandsService, deps: [{ token: i1$2.Store }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
102692
102836
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DeviceRemoteCommandsService }); }
102693
102837
  }
102694
102838
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DeviceRemoteCommandsService, decorators: [{
102695
102839
  type: Injectable
102696
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$4.TranslateService }] });
102840
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$5.TranslateService }] });
102697
102841
 
102698
102842
  const commonPasswords = [
102699
102843
  "password", "123456", "123456789", "qwerty", "abc123",
@@ -102855,7 +102999,7 @@ class AuthRouteGuard {
102855
102999
  canActivateChild(route, state) {
102856
103000
  return this.canActivate(route, state);
102857
103001
  }
102858
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AuthRouteGuard, deps: [{ token: i1$7.Router }, { token: i1$2.Store }, { token: AppConfigService }, { token: i2.Location }, { token: SessionStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103002
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AuthRouteGuard, deps: [{ token: i1$8.Router }, { token: i1$2.Store }, { token: AppConfigService }, { token: i2.Location }, { token: SessionStorageService }], target: i0.ɵɵFactoryTarget.Injectable }); }
102859
103003
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AuthRouteGuard }); }
102860
103004
  }
102861
103005
  __decorate([
@@ -102863,7 +103007,7 @@ __decorate([
102863
103007
  ], AuthRouteGuard.prototype, "load2FAUser", void 0);
102864
103008
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AuthRouteGuard, decorators: [{
102865
103009
  type: Injectable
102866
- }], ctorParameters: () => [{ type: i1$7.Router }, { type: i1$2.Store }, { type: AppConfigService }, { type: i2.Location }, { type: SessionStorageService }], propDecorators: { load2FAUser: [] } });
103010
+ }], ctorParameters: () => [{ type: i1$8.Router }, { type: i1$2.Store }, { type: AppConfigService }, { type: i2.Location }, { type: SessionStorageService }], propDecorators: { load2FAUser: [] } });
102867
103011
 
102868
103012
  const defaultRefreshTokenState = {};
102869
103013
  let RefreshTokenState = class RefreshTokenState {
@@ -103040,12 +103184,12 @@ class AnalyticsService {
103040
103184
  : acc;
103041
103185
  }, this.getDefaultAnalyticsConfig());
103042
103186
  }
103043
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnalyticsService, deps: [{ token: AppConfigService }, { token: SessionStorageService }, { token: i1$2.Store }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103187
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnalyticsService, deps: [{ token: AppConfigService }, { token: SessionStorageService }, { token: i1$2.Store }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103044
103188
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnalyticsService }); }
103045
103189
  }
103046
103190
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnalyticsService, decorators: [{
103047
103191
  type: Injectable
103048
- }], ctorParameters: () => [{ type: AppConfigService }, { type: SessionStorageService }, { type: i1$2.Store }, { type: i1$4.TranslateService }] });
103192
+ }], ctorParameters: () => [{ type: AppConfigService }, { type: SessionStorageService }, { type: i1$2.Store }, { type: i1$5.TranslateService }] });
103049
103193
 
103050
103194
  class RemoteCommandService {
103051
103195
  constructor(store, translateService, remoteCommandServiceProxy, analyticsService) {
@@ -103162,12 +103306,12 @@ class RemoteCommandService {
103162
103306
  }
103163
103307
  return payloadData;
103164
103308
  }
103165
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteCommandService, deps: [{ token: i1$2.Store }, { token: i1$4.TranslateService }, { token: RemoteCommandServiceProxy }, { token: AnalyticsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103309
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteCommandService, deps: [{ token: i1$2.Store }, { token: i1$5.TranslateService }, { token: RemoteCommandServiceProxy }, { token: AnalyticsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103166
103310
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteCommandService }); }
103167
103311
  }
103168
103312
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteCommandService, decorators: [{
103169
103313
  type: Injectable
103170
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$4.TranslateService }, { type: RemoteCommandServiceProxy }, { type: AnalyticsService }] });
103314
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$5.TranslateService }, { type: RemoteCommandServiceProxy }, { type: AnalyticsService }] });
103171
103315
 
103172
103316
  class BaseDeviceService {
103173
103317
  constructor(store, translate, remoteCommandService, appSettingsService, commandNotificationService) {
@@ -103660,12 +103804,12 @@ class BaseDeviceService {
103660
103804
  return false;
103661
103805
  }
103662
103806
  }
103663
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseDeviceService, deps: [{ token: i1$2.Store }, { token: i1$4.TranslateService }, { token: RemoteCommandService }, { token: AppSettingsService }, { token: CommandNotificationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103807
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseDeviceService, deps: [{ token: i1$2.Store }, { token: i1$5.TranslateService }, { token: RemoteCommandService }, { token: AppSettingsService }, { token: CommandNotificationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
103664
103808
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseDeviceService }); }
103665
103809
  }
103666
103810
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BaseDeviceService, decorators: [{
103667
103811
  type: Injectable
103668
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$4.TranslateService }, { type: RemoteCommandService }, { type: AppSettingsService }, { type: CommandNotificationService }], propDecorators: { loadingCommand$: [{
103812
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$5.TranslateService }, { type: RemoteCommandService }, { type: AppSettingsService }, { type: CommandNotificationService }], propDecorators: { loadingCommand$: [{
103669
103813
  type: Output
103670
103814
  }] } });
103671
103815
 
@@ -103771,12 +103915,12 @@ class AlertsAndNotificationsService extends BaseComponent {
103771
103915
  }
103772
103916
  return dpc;
103773
103917
  }
103774
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsService, deps: [{ token: i1$2.Store }, { token: BaseDeviceService }, { token: AppSettingsService }, { token: BaseFacilityCommandsService }, { token: i1$7.Router }, { token: AppConfigService }, { token: RouteService }, { token: AnalyticsService }, { token: ZoneServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
103918
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsService, deps: [{ token: i1$2.Store }, { token: BaseDeviceService }, { token: AppSettingsService }, { token: BaseFacilityCommandsService }, { token: i1$8.Router }, { token: AppConfigService }, { token: RouteService }, { token: AnalyticsService }, { token: ZoneServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
103775
103919
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsService }); }
103776
103920
  }
103777
103921
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsService, decorators: [{
103778
103922
  type: Injectable
103779
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseDeviceService }, { type: AppSettingsService }, { type: BaseFacilityCommandsService }, { type: i1$7.Router }, { type: AppConfigService }, { type: RouteService }, { type: AnalyticsService }, { type: ZoneServiceProxy }] });
103923
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: BaseDeviceService }, { type: AppSettingsService }, { type: BaseFacilityCommandsService }, { type: i1$8.Router }, { type: AppConfigService }, { type: RouteService }, { type: AnalyticsService }, { type: ZoneServiceProxy }] });
103780
103924
 
103781
103925
  class FacilityModule {
103782
103926
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FacilityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -104378,7 +104522,7 @@ let AlertsAndNotificationsState = class AlertsAndNotificationsState {
104378
104522
  }
104379
104523
  return isNotificationEnabled;
104380
104524
  }
104381
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsState, deps: [{ token: AppConfigService }, { token: ModalService }, { token: i1$4.TranslateService }, { token: i1$2.Store }, { token: AlertsAndNotificationsServiceProxy }, { token: AlertNotificationService }, { token: AlertsAndNotificationsService }, { token: CommandNotificationService }, { token: BaseFacilityCommandsService }, { token: FacilityService }, { token: FacilityServiceProxy }, { token: AppConfigService }, { token: MobileServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
104525
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsState, deps: [{ token: AppConfigService }, { token: ModalService }, { token: i1$5.TranslateService }, { token: i1$2.Store }, { token: AlertsAndNotificationsServiceProxy }, { token: AlertNotificationService }, { token: AlertsAndNotificationsService }, { token: CommandNotificationService }, { token: BaseFacilityCommandsService }, { token: FacilityService }, { token: FacilityServiceProxy }, { token: AppConfigService }, { token: MobileServiceProxy }], target: i0.ɵɵFactoryTarget.Injectable }); }
104382
104526
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsState }); }
104383
104527
  };
104384
104528
  __decorate([
@@ -104444,7 +104588,7 @@ AlertsAndNotificationsState = __decorate([
104444
104588
  ], AlertsAndNotificationsState);
104445
104589
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AlertsAndNotificationsState, decorators: [{
104446
104590
  type: Injectable
104447
- }], ctorParameters: () => [{ type: AppConfigService }, { type: ModalService }, { type: i1$4.TranslateService }, { type: i1$2.Store }, { type: AlertsAndNotificationsServiceProxy }, { type: AlertNotificationService }, { type: AlertsAndNotificationsService }, { type: CommandNotificationService }, { type: BaseFacilityCommandsService }, { type: FacilityService }, { type: FacilityServiceProxy }, { type: AppConfigService }, { type: MobileServiceProxy }], propDecorators: { onUpdateUserAlertsPreferencesAction: [], onUpdateUserNotificaitonsPreferencesAction: [], onLoadAlertsAndNotificationsAction: [], onLoadMobileNotificationsAction: [], onClearAlertsAndNotificationsAction: [], onRemoveExpiredAlertsAndNotificationsAction: [], onAlertChangedAction: [], onNotificationChangeAction: [], onHandledNotificationAction: [], onHandleNotificationAction: [], onHandleAlertsAction: [] } });
104591
+ }], ctorParameters: () => [{ type: AppConfigService }, { type: ModalService }, { type: i1$5.TranslateService }, { type: i1$2.Store }, { type: AlertsAndNotificationsServiceProxy }, { type: AlertNotificationService }, { type: AlertsAndNotificationsService }, { type: CommandNotificationService }, { type: BaseFacilityCommandsService }, { type: FacilityService }, { type: FacilityServiceProxy }, { type: AppConfigService }, { type: MobileServiceProxy }], propDecorators: { onUpdateUserAlertsPreferencesAction: [], onUpdateUserNotificaitonsPreferencesAction: [], onLoadAlertsAndNotificationsAction: [], onLoadMobileNotificationsAction: [], onClearAlertsAndNotificationsAction: [], onRemoveExpiredAlertsAndNotificationsAction: [], onAlertChangedAction: [], onNotificationChangeAction: [], onHandledNotificationAction: [], onHandleNotificationAction: [], onHandleAlertsAction: [] } });
104448
104592
 
104449
104593
  class NotificationsModule {
104450
104594
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotificationsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -104898,12 +105042,12 @@ class ParkerService {
104898
105042
  return action ? this.translate.instant(FrequentParkingActionText[action]) : `${unknown} - ${frequentParkingAction}`;
104899
105043
  }
104900
105044
  }
104901
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerService, deps: [{ token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
105045
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerService, deps: [{ token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
104902
105046
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerService }); }
104903
105047
  }
104904
105048
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ParkerService, decorators: [{
104905
105049
  type: Injectable
104906
- }], ctorParameters: () => [{ type: i1$4.TranslateService }] });
105050
+ }], ctorParameters: () => [{ type: i1$5.TranslateService }] });
104907
105051
 
104908
105052
  var GuestEntityParams = GuestEntityParams$1;
104909
105053
  var ProfileType = ProfileType$1;
@@ -105389,7 +105533,7 @@ let GuestState = class GuestState {
105389
105533
  messageBarPayload.action = lowerCaseFirstLetter(this.translate.instant(Localization.update));
105390
105534
  this.messageBarService.error(Localization.entity_failed, createMessageText(messageBarPayload));
105391
105535
  }
105392
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GuestState, deps: [{ token: i1$2.Store }, { token: GuestServiceProxy }, { token: i1$4.TranslateService }, { token: BatchServiceProxy }, { token: MessageBarService }, { token: CommandNotificationService }, { token: i1$4.TranslateService }, { token: TenantService }, { token: ExportFileService }, { token: ParkerService }, { token: AnalyticsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
105536
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GuestState, deps: [{ token: i1$2.Store }, { token: GuestServiceProxy }, { token: i1$5.TranslateService }, { token: BatchServiceProxy }, { token: MessageBarService }, { token: CommandNotificationService }, { token: i1$5.TranslateService }, { token: TenantService }, { token: ExportFileService }, { token: ParkerService }, { token: AnalyticsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
105393
105537
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GuestState }); }
105394
105538
  };
105395
105539
  __decorate([
@@ -105491,7 +105635,7 @@ GuestState = __decorate([
105491
105635
  ], GuestState);
105492
105636
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GuestState, decorators: [{
105493
105637
  type: Injectable
105494
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: GuestServiceProxy }, { type: i1$4.TranslateService }, { type: BatchServiceProxy }, { type: MessageBarService }, { type: CommandNotificationService }, { type: i1$4.TranslateService }, { type: TenantService }, { type: ExportFileService }, { type: ParkerService }, { type: AnalyticsService }], propDecorators: { onLoadGuestByIdAction: [], onClearGuestAction: [], onLoadGuestsAction: [], onSetGuestsAction: [], onClearGuestListAction: [], onCreateGuestAction: [], onCreateBatchAction: [], onCreateBasicBatchAction: [], onUpdateGuestAction: [], onUpdateGuestLocationAction: [], onDeleteGuestAction: [], onCreateBasicGuestAction: [], onUpdateBasicGuestAction: [], onUpdateBasicGuestTempAction: [], onSendEmailToGuestAction: [], onLoadGuestsByBatchId: [], onLoadGuestsByBatchIdCancelledAction: [], onExpandGuestsByBatchIdAction: [], onCollapsedGuestsByBatchIdAction: [], onLoadGuestProfilesAction: [], onClearGuestProfilesAction: [], onSendGuestPassesToEmail: [], onExportGuestsAction: [] } });
105638
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: GuestServiceProxy }, { type: i1$5.TranslateService }, { type: BatchServiceProxy }, { type: MessageBarService }, { type: CommandNotificationService }, { type: i1$5.TranslateService }, { type: TenantService }, { type: ExportFileService }, { type: ParkerService }, { type: AnalyticsService }], propDecorators: { onLoadGuestByIdAction: [], onClearGuestAction: [], onLoadGuestsAction: [], onSetGuestsAction: [], onClearGuestListAction: [], onCreateGuestAction: [], onCreateBatchAction: [], onCreateBasicBatchAction: [], onUpdateGuestAction: [], onUpdateGuestLocationAction: [], onDeleteGuestAction: [], onCreateBasicGuestAction: [], onUpdateBasicGuestAction: [], onUpdateBasicGuestTempAction: [], onSendEmailToGuestAction: [], onLoadGuestsByBatchId: [], onLoadGuestsByBatchIdCancelledAction: [], onExpandGuestsByBatchIdAction: [], onCollapsedGuestsByBatchIdAction: [], onLoadGuestProfilesAction: [], onClearGuestProfilesAction: [], onSendGuestPassesToEmail: [], onExportGuestsAction: [] } });
105495
105639
 
105496
105640
  class GuestModule {
105497
105641
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GuestModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -106030,7 +106174,7 @@ let RemoteValidationState = class RemoteValidationState {
106030
106174
  ticketBreadcrumbValue: null
106031
106175
  });
106032
106176
  }
106033
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteValidationState, deps: [{ token: i1$2.Store }, { token: ValidationServiceProxy }, { token: i1$4.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
106177
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteValidationState, deps: [{ token: i1$2.Store }, { token: ValidationServiceProxy }, { token: i1$5.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
106034
106178
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteValidationState }); }
106035
106179
  };
106036
106180
  __decorate([
@@ -106056,7 +106200,7 @@ RemoteValidationState = __decorate([
106056
106200
  ], RemoteValidationState);
106057
106201
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteValidationState, decorators: [{
106058
106202
  type: Injectable
106059
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: ValidationServiceProxy }, { type: i1$4.TranslateService }], propDecorators: { onSearchTicketAction: [], onClearSearchTicketAction: [] } });
106203
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: ValidationServiceProxy }, { type: i1$5.TranslateService }], propDecorators: { onSearchTicketAction: [], onClearSearchTicketAction: [] } });
106060
106204
 
106061
106205
  class RemoteValidationModule {
106062
106206
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RemoteValidationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
@@ -106882,7 +107026,7 @@ class ModuleGuard {
106882
107026
  return true;
106883
107027
  }
106884
107028
  }
106885
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModuleGuard, deps: [{ token: i1$7.Router }, { token: i1$2.Store }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable }); }
107029
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModuleGuard, deps: [{ token: i1$8.Router }, { token: i1$2.Store }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable }); }
106886
107030
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModuleGuard }); }
106887
107031
  }
106888
107032
  __decorate([
@@ -106890,7 +107034,7 @@ __decorate([
106890
107034
  ], ModuleGuard.prototype, "setAppModule", void 0);
106891
107035
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModuleGuard, decorators: [{
106892
107036
  type: Injectable
106893
- }], ctorParameters: () => [{ type: i1$7.Router }, { type: i1$2.Store }, { type: i2.Location }], propDecorators: { setAppModule: [] } });
107037
+ }], ctorParameters: () => [{ type: i1$8.Router }, { type: i1$2.Store }, { type: i2.Location }], propDecorators: { setAppModule: [] } });
106894
107038
 
106895
107039
  const NOT_SUPPORTED_BROWSERS = [
106896
107040
  'Edge(Legacy)', 'IE'
@@ -106910,12 +107054,12 @@ class NotSupportedBrowserGuard {
106910
107054
  canActivateChild(route, state) {
106911
107055
  return this.canActivate(route, state);
106912
107056
  }
106913
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotSupportedBrowserGuard, deps: [{ token: i1$7.Router }, { token: DetectBrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
107057
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotSupportedBrowserGuard, deps: [{ token: i1$8.Router }, { token: DetectBrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
106914
107058
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotSupportedBrowserGuard }); }
106915
107059
  }
106916
107060
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NotSupportedBrowserGuard, decorators: [{
106917
107061
  type: Injectable
106918
- }], ctorParameters: () => [{ type: i1$7.Router }, { type: DetectBrowserService }] });
107062
+ }], ctorParameters: () => [{ type: i1$8.Router }, { type: DetectBrowserService }] });
106919
107063
 
106920
107064
  class SubModuleGuard {
106921
107065
  constructor(router, store, smartparkService, location) {
@@ -106952,7 +107096,7 @@ class SubModuleGuard {
106952
107096
  this.smartparkService.getSmartparkBasicAll(this.store.selectSnapshot(SidenavState.appModule)).subscribe();
106953
107097
  }
106954
107098
  }
106955
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SubModuleGuard, deps: [{ token: i1$7.Router }, { token: i1$2.Store }, { token: SmartparkService }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable }); }
107099
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SubModuleGuard, deps: [{ token: i1$8.Router }, { token: i1$2.Store }, { token: SmartparkService }, { token: i2.Location }], target: i0.ɵɵFactoryTarget.Injectable }); }
106956
107100
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SubModuleGuard }); }
106957
107101
  }
106958
107102
  __decorate([
@@ -106963,7 +107107,7 @@ __decorate([
106963
107107
  ], SubModuleGuard.prototype, "setAppModule", void 0);
106964
107108
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SubModuleGuard, decorators: [{
106965
107109
  type: Injectable
106966
- }], ctorParameters: () => [{ type: i1$7.Router }, { type: i1$2.Store }, { type: SmartparkService }, { type: i2.Location }], propDecorators: { setSubModule: [], setAppModule: [] } });
107110
+ }], ctorParameters: () => [{ type: i1$8.Router }, { type: i1$2.Store }, { type: SmartparkService }, { type: i2.Location }], propDecorators: { setSubModule: [], setAppModule: [] } });
106967
107111
 
106968
107112
  // Guards
106969
107113
 
@@ -107068,12 +107212,12 @@ class LocalizationResolver {
107068
107212
  error: e => reject(e)
107069
107213
  }));
107070
107214
  }
107071
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocalizationResolver, deps: [{ token: i1$2.Store }, { token: i1$4.TranslateService }, { token: LocalizationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
107215
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocalizationResolver, deps: [{ token: i1$2.Store }, { token: i1$5.TranslateService }, { token: LocalizationService }], target: i0.ɵɵFactoryTarget.Injectable }); }
107072
107216
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocalizationResolver }); }
107073
107217
  }
107074
107218
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LocalizationResolver, decorators: [{
107075
107219
  type: Injectable
107076
- }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$4.TranslateService }, { type: LocalizationService }] });
107220
+ }], ctorParameters: () => [{ type: i1$2.Store }, { type: i1$5.TranslateService }, { type: LocalizationService }] });
107077
107221
 
107078
107222
  class MobileCommandCenterModuleResolver {
107079
107223
  constructor(mobileServiceProxyIdentity, signalR, realtimeEventService, notificationEventService, store) {
@@ -107200,5 +107344,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
107200
107344
  * Generated bundle index. Do not edit.
107201
107345
  */
107202
107346
 
107203
- export { ACCESS_PROFILE_DAT_TYPES_SP, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_FILES__SIZE_200_KB, ALLOWED_FILES__SIZE_2_MB, ALLOWED_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BINARY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionReasonsModule, ActionReasonsState, ActionStatusService, AddSmartparkAction, AddUserAction, AdministrativeNotificationEntityType, AdministrativeNotificationsModule, AdministrativeNotificationsState, AggregatedStatusText, AlertChangedAction, AlertNotificationBorderClass, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertsAndNotificationsService, AlertsAndNotificationsState, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AlertsPreferencesDto, AmountStepSurchargeMinLimit, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuditLogoutMobileAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangeMobileLanguageAction, ChangePasswordAction, ChangePasswordMobileAction, ChartLayout, CleanLogoAction, ClearActionReasonsAction, ClearAdministrativeNotificationsAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearGuestAction, ClearGuestProfilesAction, ClearGuestsListAction, ClearHandledGuest, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearParkerAction, ClearRateAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSuspendedParkActivitiesAction, ClearUsersAction, ClearValidationTypesAction, ClearZoneAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, CollapsedGuestsByBatchIdAction, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigMobileResolver, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateGuestAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, DEFAULT_STICKER_NUM, DEVICE_EVENT_OPTIONS_KEY, DEVICE_NAVIGATE_KEY, DISABLED_FOCUS_ELEMENT_CLASSES, DISABLED_FOCUS_ELEMENT_TYPES, DYNAMIC_PRICING_CONDITION, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, DefaultImageTimeout, DeleteGuestAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, DisconnectSmartParkAction, DoorSensorStatus, DoorStatusText, DurationMessageBar, DynamicContainerComponent, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTHS_COUNT_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ExceedingBehaviorTypeText, ExpandGuestsByBatchIdAction, ExportFileService, ExportGuestsAction, ExportPdfSmartparksTableAction, ExportSmartparkAction, FONT_BASE64, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileSanitizerService, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FormattedInputDirective, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GetAllLocalizationsAction, GetAllLocalizationsMobileAction, GetLogoAction, GetMobileLogoAction, GetRateByIdAction, GlobalErrorService, GlobalMessageContainerComponent, GroupPermissionsPipe, GuestModule, GuestSearchFieldSelectorText, GuestState, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertsAction, HandleNotificationAction, HandledNotificationAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, ImportMonthyStastusFieldSelectorText, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadActionReasonsAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadAppConfigurationMobileAction, LoadBaseZonesAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGroupsAction, LoadGuestByIdAction, LoadGuestProfilesAction, LoadGuestsAction, LoadGuestsByBatchIdAction, LoadGuestsByBatchIdCancelledAction, LoadJobTitlesAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadMobileNotificationsAction, LoadMobileSmartparksBasicAction, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, LoadUsersAction, LoadUsersAdministrativeNotificationsAction, LoadValidationTypeAction, LoadVarsAction, LoadZoneAction, LoadZonesAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MANUAL_ACTION_REASON_NAME_MAX_LENGTH, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_GUEST_UNIT_QUANTITY, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EMAIL_CHARACTERS_LENGTH, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION_50, MAX_LENGTH_DESCRIPTION_70, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_20, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_QUANTITY, MAX_LENGTH_REASON_DESCRIPTION, MAX_LENGTH_SERACH_TERM, MAX_LENGTH_SERACH_TERM_30, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, MAX_OCCUPANCY_VALUE, MAX_PERIOD_TIME, MAX_PLATE_ID_LENGTH, MAX_PRICE_NO_TIME_LIMIT_VALUE, MAX_PRICE_PERIOD_VALUE, MAX_REPEAT_COUNT_VALUE, MAX_RESULTS, MAX_ROLE_NAME_LENGTH, MAX_SP, MAX_TIME_RANGE_ITEMS_PER_KEY, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_ALLOWED_GUEST_UNIT_QUANTITY, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MIN_TIME_RANGE_ITEMS_PER_KEY, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MatHintErrorDirective, MaxAllowedSurchargeAmount, MaxAllowedSurchargeMaxLimit, MaxAllowedSurchargeMinLimit, MaxDisplayTimeout, MaxIPV4TextLength, MaxSurchargeNameLength, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MinAllowedSurchargeAmount, MinAllowedSurchargeMaxLimit, MinAllowedSurchargeMinLimit, MinDisplayTimeout, MobileAppSectionLabel, MobileAuthenticateMultipleTenantsAction, MobileCommandCenterModuleResolver, MobileLogoutAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationChangedAction, NotificationClass, NotificationClassficationType, NotificationCloseAllButtonComponent, NotificationConfig, NotificationEventService, NotificationHPositions, NotificationModule, NotificationSeverityText, NotificationTypeLabelComponent, NotificationTypeText, NotificationVPositions, NotificationsModule, ONE_DAY_IN_MINUTES_VALUE, ONE_MINUTE_IN_MILLISECONDS, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection$1 as OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PASSWORD_HISTORY_COUNT_OPTIONS, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PasswordScore, PasswordStrengthService, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTObjectObject, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, SESSION, STATUS_CODE_SERVER_VALIDATION, STATUS_CODE_UNAUTHORIZED, STRING_ZERO, SUPER_PARK_ROUTE_KEY, SUPPORETD_RESTORE_TICKET_TYPES, SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES, SUPPORTED_DEVICES_SCHEDULER, SUPPORTED_GATE_DEVICE_TYPES, SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES, SUPPORTED_PAYMENT_FOR_ISF_TYPES, SUPPORTED_RESTORE_TICKET_DEVICE_TYPES, SUPPORTED_STATUS_DEVICE_TYPES, SUPPORTED_TICKET_INSIDE_DEVICE_TYPES, SYSTEM_ALERT_VALUE, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuest, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRObject, SignalRRefreshTokenAction, SingleSignOnProviderText, SmartParkDeviceStatusChangedAction, SmartParkStatusText, SmartparkDateTimePipe, SmartparkDialogState, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkNotification, SpecialDaysPipe, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SyncUsersAndRolesBySmartparkIdAction, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableRowHeightSizes, TableTypeText, TagLabelType, TenantClearAction, TenantLoadAction, TenantLogoModule, TenantService, TenantlessLoginMode, TibaDateFormat, TibaMatDialogConfig, TibaRetryPolicy, TibaValidators, TicketService, TimeAgoPipe, TimeElapsedCounterComponent, TimeElapsedFormats, TimeElapsedPipe, TimeRangeFormats, TimeRangePipe, ToggleDrawerAction, ToggleDrawerCollapseAction, TooltipPositions, TrackAction, TransientParkingActionText, TranslateLocalPipe, TreeFilterKeysPipe, TreeMode, TypeCastText, UNSAVED_DATA, USER_IS_TEMPORARY_BLOCKED, UnloadParkingLotAction, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateBasicGuestTempAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UpdateUserSettingsMobileAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_TIME_MAX_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_3_9, VERSION_10_4_0, VERSION_25_1_0, VERSION_25_2_0, VERSION_25_2_1, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, VERSION_V1, VGuestWithBatchTableData, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionMobileResolver, VersionResolver, VirtualValidationStatusText, WrapFnPipe, ZerofyNegativePipe, ZoneChangedAction, ZoneModule, ZoneState, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, canceled, capitalizeFirstLetter, compareValues, convert24HoursToAmPM, convertAmPmTo24Hours, convertBinaryToDecimal, convertCentToWholeCoin, convertDecimalToBinary, convertFeaturePermissionsToDictionary, convertFormatWithoutTime, convertWholeCoinToCent, createDescriptor, createMessageText, dateDiffInSeconds, days, daysTranslation, decimalNumberRegex, decimalPercentageRegex, decimalPositiveNumberRegex, decryptClientSecret, delayCancellation, deviceIndicationStatusLocalization, deviceTypeFilterOptions, diffInMillis, dispatched, distinctObjectByProperties, distinctObjectByProperty, downloadFile, ensureObjectMetadata, entryDevicesLaneTypes, errored, exitDevicesLaneTypes, extractErrorsChanges, extractNumber, extractResetChanges, extractSetValueChanges, extractToggleStatusChanges, extractTouchedChanges, extractUpdateValueAndValidityChanges, filterDevicesByTypes, filterKeyValueBaseReduce, findChildRoute, findObjectDifferences, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeToString, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDaysFromValue, getDefaultDeviceStatus, getFormattedTime, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getSecondsBackoff, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, isSearchFieldChanged, isSingularOrPlural, isTrueInBinary, isTruthy, isVersionGreaterThanEqual, loadHTMLContent, lowerCase, lowerCaseFirstLetter, mapTransientTags, markEntitiesAsChanged, markEntityAsUnchanged, matchesDeviceCriteria, matchesDeviceParkingLotCriteria, matchesDevicesParkingLotCriteria, minutesToTime, mobileRegex, nameof, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parentParkBaseEventTypes, parentParkEventTypes, parkBaseEventTypes, parkEventTypes, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printSpecialDaysText, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, rtEventPermissions, safeParse, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
107347
+ export { ACCESS_PROFILE_DAT_TYPES_SP, ACTIVE_BYTE, ADVANCED_OPTIONS_VALUE, AES_DEFAULT_IV, ALERT_NOTIFICATION_CONTAINER, ALLOWED_FILES_FORMATS, ALLOWED_FILES_MAX_SIZE_MB, ALLOWED_FILES__SIZE_200_KB, ALLOWED_FILES__SIZE_2_MB, ALLOWED_NUMBER_OF_DAYS, ALLOWED_UPLOAD_FILES_QUANTITY, ALL_DAYS_IN_BINARY, ALL_DAYS_IN_BYTE, AccessProfileChangeValidTypesText, AccessProfileDayTypesText, AccessProfileRestrictionTypesText, AccessProfileShortDayTypesText, AccessProfileSpecialDaysMap, AccessProfileTypesText, AccountFrameMessageBarComponent, AccountSetPasswordAction, AccountSetPasswordErrorAction, AccountSetPasswordInitAction, ActionReasonsModule, ActionReasonsState, ActionStatusService, AddSmartparkAction, AddUserAction, AdministrativeNotificationEntityType, AdministrativeNotificationsModule, AdministrativeNotificationsState, AggregatedStatusText, AlertChangedAction, AlertNotificationBorderClass, AlertNotificationClassificationMap, AlertNotificationComponent, AlertNotificationService, AlertsAndNotificationsService, AlertsAndNotificationsState, AlertsDeviceTypeLabel, AlertsDeviceTypeOptions, AlertsDeviceTypeOptionsMapping, AlertsPreferencesDto, AmountStepSurchargeMinLimit, AnalyticsCommandsText, AnalyticsEventsText, AnalyticsService, AnalyticsSourceComponent, AnalyticsSourceProps, AppConfigService, AppModuleService, AppModuleToMainPermissionTypeMap, AppSectionLabel, AppSectionModuleMenu, AppSectionRoute, AppSettingsService, AppType, AuditActionTypeText, AuditLogoutAction, AuditLogoutMobileAction, AuthModule, AuthRouteGuard, AuthService, AuthTokenService, Authenticate2FAforUser, AuthenticateMultipleTenantsAction, AutofocusDirective, BOM_UNICODE, BarcodeTypeLength, BarrireStateText, BaseComponent, BaseDeviceItemComponent, BaseDeviceService, BaseFacilityCommandsService, BaseNotificationService, BillDispenserStatusText, BillTypeText, BillValidatorStatusText, ButtonStatus, CANCEL_ALL_RELAY_VALUE, CLogItPipe, COLORS, CREDIT_CARD_POSTFIX_LENGTH, CalculatorModule, CalculatorState, CanDeactivateService, CassetteStatusText, CentToCoinPipe, ChangeLanguageAction, ChangeMobileLanguageAction, ChangePasswordAction, ChangePasswordMobileAction, ChartLayout, CleanLogoAction, ClearActionReasonsAction, ClearAdministrativeNotificationsAction, ClearAlertsAndNotificationsAction, ClearBaseZonesAction, ClearCalculatorPriceAction, ClearCategoriesAction, ClearDeviceAction, ClearDeviceEventsExpanded, ClearDevicesAction, ClearEventActivitiesExpanded, ClearFacilityDictionaryAction, ClearGroupsAction, ClearGuestAction, ClearGuestProfilesAction, ClearGuestsListAction, ClearHandledGuest, ClearInactiveSelectedParkAction, ClearJobTitlesAction, ClearLocateTicketSearchAction, ClearLocatedTicketAction, ClearLprTransactionsExpanded, ClearMacroCommandsAction, ClearParkerAction, ClearRateAction, ClearSearchResultsAction, ClearSearchTermAction, ClearSearchTicketAction, ClearSelectedFacilityAction, ClearSelectedParkAction, ClearSelectedRow, ClearSelectedSmartparkAction, ClearSmartparksBasicAction, ClearSpAndSparkVersionsAction, ClearSuspendedParkActivitiesAction, ClearUsersAction, ClearValidationTypesAction, ClearZoneAction, ClearZonesAction, ClearZsAction, cloudServiceProxies as Cloud, CloudConfirmDialogComponent, CofCredentialSubTypeText, CoinStatusText, CollapsedGuestsByBatchIdAction, ComAggregatedStatus, ComAggregatedStatusText, ComStatusIconComponent, CommandCenterModuleResolver, CommandNotificationBorderClass, CommandNotificationComponent, CommandNotificationDisplayCase, CommandNotificationService, CommandNotificationType, CommandsLocalizationKey, CommonPagesModule, CompanyService, ConfigMobileResolver, ConfigResolver, ConnectSmartparkAction, ContainerRefDirective, CoreEntities, CouponSearchFieldSelectorText, CreateBasicBatchAction, CreateBasicGuestAction, CreateBatchAction, CreateGuestAction, CreateOrUpdateSMTPDetailsAction, CredentialTypeText, CreditCardTypeText, CrudOperationText, CurlyToBoldPipe, DATA_IMAGE_BASE64_PREFIX, DATA_IMAGE_BASE64_SVG_PREFIX, DEFAULT_DATE_FORMAT, DEFAULT_EXPIRATION_MONTHS_COUNT, DEFAULT_MINIMUM_LENGTH, DEFAULT_PASSWORD_HISTORY_COUNT, DEFAULT_PERMITTED_CREDENTIALS, DEFAULT_SMART_PARK_DATE_TIME, DEFAULT_SORT_MENU, DEFAULT_STICKER_NUM, DEVICE_EVENT_OPTIONS_KEY, DEVICE_NAVIGATE_KEY, DISABLED_FOCUS_ELEMENT_CLASSES, DISABLED_FOCUS_ELEMENT_TYPES, DYNAMIC_PRICING_CONDITION, DataQaAttribute, DateService, DateValidityText, DaysText, DecimalToAmountPipe, DecimalToCurrencyPipe, DefaultImageTimeout, DeleteGuestAction, DeleteLogoAction, DeleteUserAction, DetectBrowserService, DeviceActivityChangedAction, DeviceActivityLabel, DeviceActivityMode, DeviceActivityModeText, DeviceActivityStatus, DeviceActivityType, DeviceAggregatedStatus, DeviceAggregatedStatusText, DeviceEventChangedAction, DeviceIconComponent, DeviceIndicationStatus, DeviceLaneTypes, DeviceLoop, DeviceModule, DevicePipeModule, DevicePrinterStatusText, DeviceRemoteCommandsService, DeviceSortBy, DeviceStatusBaseComponent, DeviceStatusChangedAction, DeviceTypeIconName, DeviceTypeText, DeviceTypesAlertsMapping, DevicesViewMode, DialogMode, DipSwitchStatus, Disable2FAAction, DisconnectSmartParkAction, DoorSensorStatus, DoorStatusText, DurationMessageBar, DynamicContainerComponent, DynamicEllipsisTooltipDirective, ENGLISH_LANGUAGE, ENVIRONMENT, EXPIRATION_MONTHS_COUNT_OPTIONS, edgeServiceProxies as Edge, EditUserAction, ElectronicWalletPaymentMethodTypesText, EllipsisMultilineDirective, EmailServerModule, EmailServerState, EmptyResultsComponent, Enable2FAAction, EnumsToArrayPipe, EnvironmentModeText, ErrorPageComponent, ErrorPageResolver, ExceedingBehaviorTypeText, ExpandGuestsByBatchIdAction, ExportFileService, ExportGuestsAction, ExportPdfSmartparksTableAction, ExportSmartparkAction, FONT_BASE64, FacilityChangedAction, FacilityMenuService, FacilityModule, FacilityRemoteCommandExecutedAction, FacilityRemoteCommandTypesIcon, FacilityRemoteCommandsLocalizationKey, FacilityRemoteCommandsMenuItems, FacilityService, FacilityState, FieldLabelComponent, FieldValidationsComponent, FileGenerateMethod, FileSanitizerService, FileService, FilterByDeviceType, FilterDevicesByTypePipe, FilterDevicesByZonePipe, FilterKeysPipe, FilterNumbersPipe, FilterPipe, FlattenedCoreEntities, FloatMessageBarService, ForgotPasswordAction, ForgotPasswordTenantlessAction, FormValidationsComponent, FormattedInputDirective, FrequentParkingActionText, FrequentParkingErrorActionText, GATE_STATE_VALUE, GeneralActionService, GenerateSearchParamsDto, GetAllLocalizationsAction, GetAllLocalizationsMobileAction, GetLogoAction, GetMobileLogoAction, GetRateByIdAction, GlobalErrorService, GlobalMessageContainerComponent, GroupPermissionsPipe, GuestModule, GuestSearchFieldSelectorText, GuestState, GuestTypeCastText, GuestTypesText, HOUR_FORMAT_12, HOUR_FORMAT_24, HOUR_FORMAT_FULL_DAY, HandleAlertsAction, HandleNotificationAction, HandledNotificationAction, HasActionErrored, HealthAction, HoldRelayMode, HoldRelayModeText, HopperStatusText, HotelGuestSearchFieldSelectorText, HttpCancelBlackListUrls, HttpCancelInterceptor, HttpCancelService, INPUT_SEARCH_DEBOUNCE_TIME, INPUT_SEARCH_DEBOUNCE_TIME_LOW, INPUT_SEARCH_DEBOUNCE_TIME_MEDIUM, IconColumnComponent, IconComponent, IconModule, IconsHelper, IconsHelperText, identityServiceProxies as Identity, ImportMonthyStastusFieldSelectorText, InitAddSmartparkConnectionAction, InitSMTPDetailsAction, InitSessionFromLocalStorageAction, InitSmartparkTransportAction, InternetConnectionService, InternetConnectionStatus, IsActionExecuting, IsEllipsisDirective, LOCAL_ENGLISH_LANGUAGE, LOCATION_OPTIONS, LOGGED_TENANT_KEY, LanguageTypeKeys, LayoutModule, LayoutState, Load2FAUserAction, LoadActionReasonsAction, LoadAdministrativeNotificationsAction, LoadAlertsAndNotificationsAction, LoadAppConfigurationAction, LoadAppConfigurationMobileAction, LoadBaseZonesAction, LoadCalculatorPriceAction, LoadCategoriesAction, LoadDeviceAction, LoadDeviceEventActivitiesAction, LoadDeviceEventsAction, LoadDeviceEventsCollapse, LoadDeviceLprTransactionsAction, LoadDeviceStatusAction, LoadDevicesAction, LoadEventActivitiesCollapse, LoadFacilityAction, LoadFacilityRemoteCommandsRefAction, LoadGroupsAction, LoadGuestByIdAction, LoadGuestProfilesAction, LoadGuestsAction, LoadGuestsByBatchIdAction, LoadGuestsByBatchIdCancelledAction, LoadJobTitlesAction, LoadLocateTicketSearchAction, LoadLocatedTicketAction, LoadLprTransactionsCollapse, LoadMacroCommandsAction, LoadMobileNotificationsAction, LoadMobileSmartparksBasicAction, LoadOverflowPriceTableAction, LoadParkActivitiesAction, LoadParkDevicesAction, LoadParkerAction, LoadParkersAction, LoadParkingLotAction, LoadParksAction, LoadRateByIdAction, LoadRatesAction, LoadRemoteCommandsRefAction, LoadSMTPDetailsAction, LoadSelectedDeviceAction, LoadSmartparksAction, LoadSmartparksBasicAction, LoadSmartparksTableAction, LoadSpAndSparkVersionsAction, LoadStickerPriceTableAction, LoadTicketNumParkersAction, LoadTransientPriceTableAction, LoadUserPermissionsAction, LoadUsersAction, LoadUsersAdministrativeNotificationsAction, LoadValidationTypeAction, LoadVarsAction, LoadZoneAction, LoadZonesAction, LoadZsAction, LoadingOverlayComponent, LocalStorageMigrator, LocalStorageService, Localization, LocalizationModule, LocalizationResolver, LocalizationService, LocalizationState, LoginModule, LoginRequestAction, LoginService, LoginState, LoginSuccess, LogoComponent, LogoState, LogoutAction, LogoutMobileAction, LoopStatus, LowerCaseUrlSerializer, LprTransactionsChangedAction, LprTransactionsOptionsText, LprTransactionsSearchFieldSelectorText, MANUAL_ACTION_REASON_NAME_MAX_LENGTH, MAX_ALLOWED_BADGE_VALUE, MAX_ALLOWED_CURRENT_BALANCE, MAX_ALLOWED_DEDUCTION_VALUE, MAX_ALLOWED_GUEST_UNIT_QUANTITY, MAX_ALLOWED_IDENTIFIER_VALUE, MAX_ALLOWED_STARTING_PURSE_VALUE, MAX_CARDS, MAX_CAR_PLATES, MAX_EMAIL_CHARACTERS_LENGTH, MAX_EXPORT_RECORDS, MAX_HOTEL_ROOM_NUMBER_LENGTH, MAX_INT16_VALUE, MAX_INT32_VALUE, MAX_INTEGER_VALUE, MAX_LENGTH_BATCH_NAME, MAX_LENGTH_DESCRIPTION_50, MAX_LENGTH_DESCRIPTION_70, MAX_LENGTH_FOOTER, MAX_LENGTH_LEFT, MAX_LENGTH_LEFT_BACKWARD_COMPATIBILITY, MAX_LENGTH_MANUAL_TEXT, MAX_LENGTH_NAME_20, MAX_LENGTH_NAME_30, MAX_LENGTH_NAME_50, MAX_LENGTH_QUANTITY, MAX_LENGTH_REASON_DESCRIPTION, MAX_LENGTH_SERACH_TERM, MAX_LENGTH_SERACH_TERM_30, MAX_MOBILE_LENGTH, MAX_NUMBER_OF_NIGHTS, MAX_NUMBER_OF_ROW_IN_MENU, MAX_OCCUPANCY_VALUE, MAX_PERIOD_TIME, MAX_PLATE_ID_LENGTH, MAX_PRICE_NO_TIME_LIMIT_VALUE, MAX_PRICE_PERIOD_VALUE, MAX_REPEAT_COUNT_VALUE, MAX_RESULTS, MAX_ROLE_NAME_LENGTH, MAX_SP, MAX_TIME_RANGE_ITEMS_PER_KEY, MC_READER_ID, MESSAGE_BAR_DEFAULT_ID, MINIMUM_DROPDOWN_RESULTS_WITHOUT_SEARCH, MINIMUM_LENGTH_OPTIONS, MINUTES_PER_HOUR, MIN_ALLOWED_GUEST_UNIT_QUANTITY, MIN_LENGTH_QUANTITY, MIN_NUMBER_OF_ROW_IN_MENU, MIN_TIME_RANGE_ITEMS_PER_KEY, MOBILE_REFRESH_INFO, MSALGuardConfigFactory, MSALInstanceFactory, MSALInterceptorConfigFactory, MSLAuthService, MULTIPLE, MainModuleToSubModulesPermissionTypeMap, MatHintErrorDirective, MaxAllowedSurchargeAmount, MaxAllowedSurchargeMaxLimit, MaxAllowedSurchargeMinLimit, MaxDisplayTimeout, MaxIPV4TextLength, MaxSurchargeNameLength, MenuAppModuleLoadAction, MenuClearAction, MenuLoadAction, MenuService, MenuSubModuleClearAction, MenuSubModuleLoadAction, MessageBarComponent, MessageBarContainerComponent, MessageBarModule, MessageBarPosition, MessageBarService, MessageBarStatus, MiddayPeriod, MinAllowedSurchargeAmount, MinAllowedSurchargeMaxLimit, MinAllowedSurchargeMinLimit, MinDisplayTimeout, MobileAppSectionLabel, MobileAuthenticateMultipleTenantsAction, MobileCommandCenterModuleResolver, MobileLogoutAction, ModalButtonsWrapperComponent, ModalService, ModuleGuard, ModuleMenuBaseComponent, MonthlyRenewalSettingsActionTypesText, MonthlyRenewalSettingsActionTypesValueText, MonthlySearchFieldSelectorText, MslEventType, NONE_ACTIVE_BYTE, NONE_USER_ID, NO_RESULT, NativeElementInjectorDirective, NotSupportedBrowserGuard, NotSupportedBrowserPageComponent, NotificationChangedAction, NotificationClass, NotificationClassficationType, NotificationCloseAllButtonComponent, NotificationConfig, NotificationEventService, NotificationHPositions, NotificationModule, NotificationSeverityText, NotificationTypeLabelComponent, NotificationTypeText, NotificationVPositions, NotificationsModule, ONE_DAY_IN_MINUTES_VALUE, ONE_MINUTE_IN_MILLISECONDS, ONE_SECOND_IN_MILLISECONDS, OffScreenDirective, OpenIdAuthInitializeService, OpenIdAuthService, OpenIdAutheticateAction, Operator, OrderBy, OrderByPipe, OrderDirection$1 as OrderDirection, OrphanFacilitiesPipe, PARKER_SEARCH_AUTO_REDIRECT, PASSWORD_EXPIRED, PASSWORD_HISTORY_COUNT_OPTIONS, PREVENT_CLICK_ELEMENT_CLASSES, ParkActivitiesModule, ParkActivitiesState, ParkActivityChangedAction, ParkConnectionStatus, ParkConnectionStatusClass, ParkConnectionStatusText, ParkManagerModule, ParkManagerState, ParkService, ParkTimeService, ParkerSearchTerm, ParkerService, ParkerState, ParkerTagsText, ParkerTypesText, PasswordScore, PasswordStrengthService, PaymentSearchFieldSelectorText, PaymentServiceTypeText, PaymentsTypesText, PermissionGroupText, PermissionTypeSupportedVersionDictionary, PermissionTypeText, PermissionsService, PrintReceiptAction, ProfileTypeText, RATE_ID_WITH_VALUE_2, REDIRECT_URL, RELAY_2_VALUE, RELAY_3_VALUE, RELAY_4_VALUE, RESET_PASSWORD_EMAIL, RTObjectObject, RateModule, RateState, RealtimeEventService, RealtimeResolver, ReceiptGeneratedAction, RefreshTokenService, RefreshTokenState, RelayStatus, ReloadParkerAction, RemoteCommandService, RemoteCommandTypesIcon, RemoteValidationModule, RemoteValidationState, RemoveExpiredAlertsAndNotificationsAction, ReportCategories, ReportCategoriesText, ReportMethodDictionary, ReportSectionMenu, ResendPendingAdminInvitationsAction, ResendUserInvitationAction, ResetRatesAction, RestrictionLocationTypeText, RestrictionLocationTypeTextTable, RestrictionTypeText, RevenueService, RouteService, RowOperation, SESSION, STATUS_CODE_SERVER_VALIDATION, STATUS_CODE_UNAUTHORIZED, STRING_ZERO, SUPER_PARK_ROUTE_KEY, SUPPORETD_RESTORE_TICKET_TYPES, SUPPORTED_CAR_ON_LOOP_DEVICE_TYPES, SUPPORTED_DEVICES_SCHEDULER, SUPPORTED_GATE_DEVICE_TYPES, SUPPORTED_LPR_TRANSACTIONS_DEVICE_TYPES, SUPPORTED_PAYMENT_FOR_ISF_TYPES, SUPPORTED_RESTORE_TICKET_DEVICE_TYPES, SUPPORTED_STATUS_DEVICE_TYPES, SUPPORTED_TICKET_INSIDE_DEVICE_TYPES, SYSTEM_ALERT_VALUE, SearchFacilitiesMode, SearchFieldSelectorText, SearchTicketAction, SearchValueHighlightComponent, SecurityModule, SecurityState, SelectDeviceAction, SelectParkAction, SelectSmartParkAction, SelectedRowAction, SendEmailFromEntityAction, SendEmailToGuest, SendGuestPassesToEmailAction, SendTestEmailAction, ServiceProxyModule, ServicesRunningStatusChangedAction, SessionState, SessionStorageService, SetBasicMenuAction, SetDeviceEventsExpanded, SetDeviceRemoteCommandsMapAction, SetDeviceStatusAction, SetDeviceViewModeAction, SetEventActivitiesExpanded, SetFacilityRemoteCommandsMapAction, SetGuestsAction, SetLprTransactionsExpanded, SetMobileModeAction, SetParkActivitiesAction, SetRealTimeEventStatusAction, SetSearchTermAction, SetSelectedParkAction, SetSmartParkAction, SetSmartParkTableAction, SetSmartParkVersionsAction, SetSmartparkBasicAction, SetSmartparkBasicAllAction, SetStateAction, SetTFASetupAction, SetTenantUserAction, SetTicketIdentifierAction, SetUserNameAction, SetUserStatusAction, SetUsersAction, SetkeepMeLoggedInAction, SharedComponentsModule, SharedDirectivesModule, SharedModule, SharedPipesModule, SideNavSortBy, SidenavModule, SidenavState, SignalR, SignalRObject, SignalRRefreshTokenAction, SingleSignOnProviderText, SmartParkDeviceStatusChangedAction, SmartParkStatusText, SmartparkDateTimePipe, SmartparkDialogState, SmartparkModule, SmartparkService, SmartparkState, SortDevicesPipe, SortPipe, SparkNotification, SpecialDaysPipe, SpinnerDiameterSize, StaticMessageBarService, StatusIconComponent, StickerSearchFieldSelectorText, StopPropagationDirective, StringItPipe, SubModuleGuard, SubstrHightlightManyPipe, SubstrHightlightPipe, SubstrHightlightSinglePipe, SwallowUnitStatusText, SyncUsersAndRolesBySmartparkIdAction, TBFormatPipe, TBNumberDirective, TENANT_KEY, TENS_MULTIPLIER, TableRowHeightSizes, TableTypeText, TagLabelType, TenantClearAction, TenantLoadAction, TenantLogoModule, TenantService, TenantlessLoginMode, TibaDateFormat, TibaMatDialogConfig, TibaRetryPolicy, TibaValidators, TicketService, TimeAgoPipe, TimeElapsedCounterComponent, TimeElapsedFormats, TimeElapsedPipe, TimeRangeFormats, TimeRangePipe, ToggleDrawerAction, ToggleDrawerCollapseAction, TooltipPositions, TrackAction, TransientParkingActionText, TranslateLocalPipe, TreeFilterKeysPipe, TreeMode, TypeCastText, UNSAVED_DATA, USER_IS_TEMPORARY_BLOCKED, UnloadParkingLotAction, UpdateAndActivateUserAction, UpdateAuthTokenAction, UpdateBasicGuestAction, UpdateBasicGuestTempAction, UpdateDocumentAction, UpdateGuestAction, UpdateGuestLocationAction, UpdateMobileMode, UpdateSmartparkAction, UpdateTenantInfoProps, UpdateTenantSingleSignOnAction, UpdateTicketPlateIdAction, UpdateUserAlertsPreferencesAction, UpdateUserNotificaitonsPreferencesAction, UpdateUserSettingsAction, UpdateUserSettingsInSessionAction, UpdateUserSettingsMobileAction, UploadLogoAction, UserCreationType, UserModule, UserSettingsModule, UserSettingsState, UserState, VALIDATION_TYPE_BY_HOURS_41, VALIDATION_TYPE_BY_HOURS_42, VALID_TIME_MAX_LENGTH, VERSION_10_1_0, VERSION_10_2_0, VERSION_10_2_1, VERSION_10_3_0, VERSION_10_3_9, VERSION_10_4_0, VERSION_25_1_0, VERSION_25_2_0, VERSION_25_2_1, VERSION_7_4_0, VERSION_7_4_1, VERSION_8_1_0, VERSION_8_2_0, VERSION_8_3_0, VERSION_8_4_0, VERSION_9_1_0, VERSION_9_2_0, VERSION_9_2_2, VERSION_9_3_0, VERSION_9_4_0, VERSION_V1, VGuestWithBatchTableData, ValidateUserTokenAction, ValidationService, ValidationStickerType, ValidationTypeModule, ValidationTypeState, VarDirective, Verify2FactorAuthenticationAction, VersionMobileResolver, VersionResolver, VirtualValidationStatusText, WrapFnPipe, ZerofyNegativePipe, ZoneChangedAction, ZoneModule, ZoneState, accountModuleAnimation, adjustForTimezone, allowSpecialKeys, alphanumericRegex, appModuleAnimation, areDatesIdentical, areVersionsCompatible, arrayEquals, arraysAreDifferent, baseReduce, blobToBase64, buildMessageInfos, buildMessages, camelize, canceled, capitalizeFirstLetter, compareValues, convert24HoursToAmPM, convertAmPmTo24Hours, convertBinaryToDecimal, convertCentToWholeCoin, convertDecimalToBinary, convertFeaturePermissionsToDictionary, convertFormatWithoutTime, convertWholeCoinToCent, createDescriptor, createMessageText, dateDiffInSeconds, days, daysTranslation, decimalNumberRegex, decimalPercentageRegex, decimalPositiveNumberRegex, decryptClientSecret, delayCancellation, deviceIndicationStatusLocalization, deviceTypeFilterOptions, diffInMillis, dispatched, distinctObjectByProperties, distinctObjectByProperty, downloadFile, ensureObjectMetadata, entryDevicesLaneTypes, errored, exitDevicesLaneTypes, extractErrorsChanges, extractNumber, extractResetChanges, extractSetValueChanges, extractToggleStatusChanges, extractTouchedChanges, extractUpdateValueAndValidityChanges, filterDevicesByTypes, filterKeyValueBaseReduce, findChildRoute, findObjectDifferences, findParentElement, findParentElementDimensions, findParentRoute, findParentRouteConfig, flattenByKey, formatMinutesToTimeNumber, formatTimeToMinutes, formatTimeToString, formatTimeWithMidnight, formatTimeWithSeparator, formatTimeWithoutMidnight, formatTimeWithoutSeparator, formatTimeWithoutSeperatorAndWithMidnight, formatTimeWithoutSeperatorAndWithoutMidnight, getActivatedRoutePathSegment, getAddress, getCurrentLang, getDateTimeInSeconds, getDateWithoutTime, getDaysFromValue, getDefaultDeviceStatus, getFormattedTime, getMomenWithTime, getMomentNullable, getMomentWithoutTime, getNavigationRoute, getObjectMetadata, getParkerTypesText, getPasswordMinimalLength, getSecondsBackoff, getTooltipTextByParkerType, getUserTimeZone, getUtcMomentNullable, hasRequiredField, hasValue, humanizeTimeElapsed, humanizeUtcTimeElapsed, identity, initializeMsal, initializeOpenId, integerNumberRegex, integerPositiveNumberRegex, ipv4Regex, isBoolean, isCharacterLengthValid, isDefinedAndNotEmpty, isDeviceActive, isDeviceInFilterDeviceTypes, isDeviceInFiltersDeviceTypes, isFalsy, isIOSDevice, isMaxDaysRangeValid, isNullOrEmpty, isNumber, isObjectEmpty, isSearchFieldChanged, isSingularOrPlural, isTrueInBinary, isTruthy, isVersionGreaterThanEqual, loadHTMLContent, lowerCase, lowerCaseFirstLetter, mapTransientTags, markEntitiesAsChanged, markEntityAsUnchanged, matchesDeviceCriteria, matchesDeviceParkingLotCriteria, matchesDevicesParkingLotCriteria, minutesToTime, mobileRegex, nameof, navigateToForbiddenAccessPage, navigateToNotSupportedBrowserPage, noEmojiRegex, notificationAnimation, numberWithLeadingZero, ofStatus, omitKeys, openBackgroundIframe, openCloseFiltersAnimation, parentParkBaseEventTypes, parentParkEventTypes, parkBaseEventTypes, parkEventTypes, parkerEnumToText, parseApiErrorData, parseApiErrorMessage, parseDateTimeToSparkParkTime, parseSmartParkTime, passwordRegex, percentageRegex, printSpecialDaysText, printStackTrace, readjustForTimezone, regexExp, remoteCommandLocalizationMap, replaceAll, rtEventPermissions, safeParse, searchBarPopupAnimation, setErrorMessage, shortDaysTranslation, sleep, slideFromBottom, slideFromRight, slideFromUp, slideUpDown, successful, timeToMinutes, timeToMoment, toInt, toNumberMap, toStringMap, wrapConstructor };
107204
107348
  //# sourceMappingURL=tiba-spark-client-shared-lib.mjs.map