@inspark/inspark-components 19.0.46 → 19.0.47

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Pipe, NgModule, Injectable, createComponent, Component, Directive, Input, EventEmitter, HostListener, Output, ChangeDetectionStrategy, ViewChild, ContentChildren, ViewEncapsulation, forwardRef, HostBinding, TemplateRef, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2
+ import { Pipe, NgModule, Injectable, Component, Directive, Input, EventEmitter, HostListener, Output, ChangeDetectionStrategy, ViewChild, ContentChildren, ViewEncapsulation, forwardRef, HostBinding, TemplateRef, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
3
3
  import * as i1 from '@ngx-translate/core';
4
4
  import { TranslateModule } from '@ngx-translate/core';
5
5
  export { TranslateModule } from '@ngx-translate/core';
@@ -7,10 +7,10 @@ import * as i1$1 from '@angular/platform-browser';
7
7
  import { marker } from '@biesbjerg/ngx-translate-extract-marker';
8
8
  import * as i2 from 'primeng/api';
9
9
  export { SharedModule } from 'primeng/api';
10
- import * as i1$4 from 'primeng/dynamicdialog';
11
- import { DynamicDialogRef, DynamicDialogComponent } from 'primeng/dynamicdialog';
10
+ import * as i1$2 from 'primeng/dynamicdialog';
11
+ import { DynamicDialogModule } from 'primeng/dynamicdialog';
12
12
  import { Subject } from 'rxjs';
13
- import * as i1$2 from '@angular/common';
13
+ import * as i1$3 from '@angular/common';
14
14
  import { CommonModule } from '@angular/common';
15
15
  import * as i2$1 from '@angular/forms';
16
16
  import { FormsModule, NG_VALUE_ACCESSOR, ReactiveFormsModule } from '@angular/forms';
@@ -26,7 +26,7 @@ import * as i7 from '@ng-bootstrap/ng-bootstrap';
26
26
  import { NgbDropdownModule, NgbModule } from '@ng-bootstrap/ng-bootstrap';
27
27
  export { NgbModule } from '@ng-bootstrap/ng-bootstrap';
28
28
  import { CheckboxModule } from 'primeng/checkbox';
29
- import * as i1$3 from '@angular/router';
29
+ import * as i1$4 from '@angular/router';
30
30
  import { RouterModule } from '@angular/router';
31
31
  import * as i3$1 from 'primeng/menu';
32
32
  import { Menu, MenuModule } from 'primeng/menu';
@@ -425,93 +425,32 @@ class InsparkMessageService {
425
425
  type: Injectable
426
426
  }], () => [{ type: i1.TranslateService }, { type: i2.MessageService }, { type: i2.ConfirmationService }], null); })();
427
427
 
428
- // inspark-dialog.service.ts
429
428
  class InsparkDialogService {
430
- constructor(injector, environmentInjector) {
431
- this.injector = injector;
432
- this.environmentInjector = environmentInjector;
433
- this.dialogComponentRefs = [];
429
+ constructor(dialogService) {
430
+ this.dialogService = dialogService;
434
431
  }
435
- /**
436
- * Открывает диалоговое окно с указанным компонентом
437
- */
438
432
  open(componentType, config) {
439
- // Создаем диалог через современный API
440
- const dialogRef = this.appendDialogComponentToBody(config);
441
- // Фикс скролла
442
- console.log('window.scrollY', window.scrollY);
443
433
  const scrollY = window.scrollY;
444
434
  document.body.style.top = `-${scrollY}px`;
445
435
  document.body.style.position = 'fixed';
446
- // Восстанавливаем скролл при закрытии
447
- dialogRef.onClose.subscribe(() => {
448
- console.log('custom subscribe');
436
+ const ref = this.dialogService.open(componentType, config);
437
+ ref.onClose.subscribe(() => {
449
438
  document.body.style.position = '';
450
439
  document.body.style.top = '';
451
440
  window.scrollTo(0, scrollY);
452
441
  });
453
- // Передаем компонент в DynamicDialogComponent через приватное свойство
454
- const dialogComponentRef = this.dialogComponentRefs[this.dialogComponentRefs.length - 1];
455
- // Используем Type assertion для доступа к приватному свойству
456
- dialogComponentRef.instance.childComponentType = componentType;
457
- return dialogRef;
458
- }
459
- /**
460
- * Создает компонент DynamicDialogComponent и добавляет его в body
461
- */
462
- appendDialogComponentToBody(config) {
463
- // Создаем ссылку на диалог
464
- const dialogRef = new DynamicDialogRef();
465
- // Создаем компонент динамически
466
- const componentRef = createComponent(DynamicDialogComponent, {
467
- environmentInjector: this.environmentInjector,
468
- elementInjector: this.injector
469
- });
470
- // В PrimeNG 17 конфиг передается через метод или свойство
471
- // Используем Type assertion для установки конфига
472
- const instance = componentRef.instance;
473
- // Устанавливаем конфигурацию диалога
474
- if (instance.config) {
475
- instance.config = config;
476
- }
477
- // Сохраняем dialogRef в компоненте (если нужно)
478
- instance.dialogRef = dialogRef;
479
- // Автоматически удаляем диалог из DOM при закрытии
480
- const sub = dialogRef.onClose.subscribe(() => {
481
- this.removeDialogComponentFromBody(componentRef);
482
- sub.unsubscribe();
483
- });
484
- // Добавляем компонент в DOM
485
- const domElem = componentRef.hostView.rootNodes[0];
486
- document.body.appendChild(domElem);
487
- // Сохраняем ссылку для последующего удаления
488
- this.dialogComponentRefs.push(componentRef);
489
- return dialogRef;
442
+ return ref;
490
443
  }
491
- /**
492
- * Удаляет компонент диалога из DOM и уничтожает его
493
- */
494
- removeDialogComponentFromBody(componentRef) {
495
- const index = this.dialogComponentRefs.indexOf(componentRef);
496
- if (index !== -1) {
497
- this.dialogComponentRefs.splice(index, 1);
498
- componentRef.destroy();
499
- }
500
- }
501
- /**
502
- * Закрывает все открытые диалоги
503
- */
504
444
  closeAll() {
505
- this.dialogComponentRefs.forEach(ref => ref.destroy());
506
- this.dialogComponentRefs = [];
445
+ this.dialogService.dialogComponentRefMap.forEach((_, ref) => ref.close());
507
446
  }
508
- static { this.ɵfac = function InsparkDialogService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || InsparkDialogService)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.EnvironmentInjector)); }; }
447
+ static { this.ɵfac = function InsparkDialogService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || InsparkDialogService)(i0.ɵɵinject(i1$2.DialogService)); }; }
509
448
  static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: InsparkDialogService, factory: InsparkDialogService.ɵfac, providedIn: 'root' }); }
510
449
  }
511
450
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InsparkDialogService, [{
512
451
  type: Injectable,
513
452
  args: [{ providedIn: 'root' }]
514
- }], () => [{ type: i0.Injector }, { type: i0.EnvironmentInjector }], null); })();
453
+ }], () => [{ type: i1$2.DialogService }], null); })();
515
454
 
516
455
  class CommunicationService {
517
456
  constructor() {
@@ -640,7 +579,7 @@ class TableMenuOverlayComponent {
640
579
  } if (rf & 2) {
641
580
  i0.ɵɵadvance(3);
642
581
  i0.ɵɵproperty("ngIf", ctx.isExpanded);
643
- } }, dependencies: [i1$2.NgIf, TableClickOutsideDirective], styles: ["@charset \"UTF-8\";.c-overlay[_ngcontent-%COMP%]{position:relative;display:inline-block}.c-overlay__toggle[_ngcontent-%COMP%]{display:inline-block}.c-overlay__body[_ngcontent-%COMP%]{text-align:left;position:absolute;top:100%;padding:6px 12px;z-index:1050;box-shadow:0 10px 20px #00000030,0 6px 6px #0000003b;max-height:500px;overflow:auto}.theme-dark[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-dark [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#53555c;background-color:var(--ids-theme-color-gray-35, #53555C)}", "@charset \"UTF-8\";.theme-contrast[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-light[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-green[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-green [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-blue[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-blue [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#202127;background-color:var(--colorBgLevel1, #202127)}"], changeDetection: 0 }); }
582
+ } }, dependencies: [i1$3.NgIf, TableClickOutsideDirective], styles: ["@charset \"UTF-8\";.c-overlay[_ngcontent-%COMP%]{position:relative;display:inline-block}.c-overlay__toggle[_ngcontent-%COMP%]{display:inline-block}.c-overlay__body[_ngcontent-%COMP%]{text-align:left;position:absolute;top:100%;padding:6px 12px;z-index:1050;box-shadow:0 10px 20px #00000030,0 6px 6px #0000003b;max-height:500px;overflow:auto}.theme-dark[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-dark [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#53555c;background-color:var(--ids-theme-color-gray-35, #53555C)}", "@charset \"UTF-8\";.theme-contrast[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-light[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-green[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-green [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#ebebeb;background-color:var(--ids-theme-color-gray-5, #EBEBEB)}", "@charset \"UTF-8\";.theme-blue[_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%], .theme-blue [_nghost-%COMP%] .c-overlay__body[_ngcontent-%COMP%]{background-color:#202127;background-color:var(--colorBgLevel1, #202127)}"], changeDetection: 0 }); }
644
583
  }
645
584
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableMenuOverlayComponent, [{
646
585
  type: Component,
@@ -704,7 +643,7 @@ class TableColumnsMultiselectComponent {
704
643
  i0.ɵɵproperty("title", i0.ɵɵpipeBind1(4, 3, "column switch"));
705
644
  i0.ɵɵadvance(5);
706
645
  i0.ɵɵproperty("ngForOf", ctx.columns);
707
- } }, dependencies: [i1$2.NgForOf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel, TableMenuOverlayComponent, i1.TranslatePipe], styles: [".dropdown-label[_ngcontent-%COMP%]{color:var(--text-color)}"] }); }
646
+ } }, dependencies: [i1$3.NgForOf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel, TableMenuOverlayComponent, i1.TranslatePipe], styles: [".dropdown-label[_ngcontent-%COMP%]{color:var(--text-color)}"] }); }
708
647
  }
709
648
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableColumnsMultiselectComponent, [{
710
649
  type: Component,
@@ -1735,7 +1674,7 @@ class TableComponent {
1735
1674
  i0.ɵɵproperty("ngIf", !ctx.bodyTemplate);
1736
1675
  i0.ɵɵadvance();
1737
1676
  i0.ɵɵproperty("ngIf", ctx.toolbar);
1738
- } }, dependencies: () => [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, i1$2.NgSwitch, i1$2.NgSwitchCase, i2$2.Table, i2.PrimeTemplate, i2$2.SortableColumn, i2$2.SelectableRow, i2$2.ResizableColumn, i2$2.SortIcon, i2$1.ɵNgNoValidate, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.RequiredValidator, i2$1.NgModel, i2$1.NgForm, i5.Dropdown, i6.MultiSelect, i7.NgbDropdown, i7.NgbDropdownToggle, i7.NgbDropdownMenu, i7.NgbDropdownItem, TableColumnsMultiselectComponent, PropertyValuePipe, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.u-overflow-visible[_ngcontent-%COMP%]{overflow:visible!important}.row_status_success[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-success, #31AC51)}.row_status_error[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-error, #F95C5D)}.row_status_warning[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-warning, #EE9946)}.row_status_critical[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-critical, #F95C5D)}.row_status_falsevalue[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-falsevalue, #85B3CB)}.row_status_disabled[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-disabled)}.row_status_none[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid transparent}.row_status_pending[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-pending, #1f85ff)}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--ids-theme-btn-default-color, #FFFFFF)}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]{border-color:#00000073}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:#000000b3}.in-table-checkbox[_ngcontent-%COMP%]{appearance:none;-webkit-appearance:none;width:var(--p-checkbox-width, 20px);height:var(--p-checkbox-height, 20px);border:1px solid var(--p-checkbox-border-color, #B3B3B3);border-radius:var(--p-checkbox-border-radius, 2px);background:var(--p-checkbox-background, transparent);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;transition:border-color var(--p-checkbox-transition-duration, .15s),background var(--p-checkbox-transition-duration, .15s)}.in-table-checkbox[_ngcontent-%COMP%]:checked{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:checked:after{content:\"\";display:block;width:var(--p-checkbox-icon-size, 14px);height:var(--p-checkbox-icon-size, 14px);background-color:var(--p-checkbox-icon-checked-color, #ffffff);mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");mask-size:contain;-webkit-mask-size:contain;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-position:center;-webkit-mask-position:center}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate:after{content:\"\";display:block;width:calc(var(--p-checkbox-icon-size, 14px) - 2px);height:2px;background-color:var(--p-checkbox-icon-checked-color, #ffffff);margin:auto}.in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:var(--p-checkbox-hover-border-color, #999999)}"] }); }
1677
+ } }, dependencies: () => [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, i1$3.NgSwitch, i1$3.NgSwitchCase, i2$2.Table, i2.PrimeTemplate, i2$2.SortableColumn, i2$2.SelectableRow, i2$2.ResizableColumn, i2$2.SortIcon, i2$1.ɵNgNoValidate, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.RequiredValidator, i2$1.NgModel, i2$1.NgForm, i5.Dropdown, i6.MultiSelect, i7.NgbDropdown, i7.NgbDropdownToggle, i7.NgbDropdownMenu, i7.NgbDropdownItem, TableColumnsMultiselectComponent, PropertyValuePipe, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.u-overflow-visible[_ngcontent-%COMP%]{overflow:visible!important}.row_status_success[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-success, #31AC51)}.row_status_error[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-error, #F95C5D)}.row_status_warning[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-warning, #EE9946)}.row_status_critical[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-critical, #F95C5D)}.row_status_falsevalue[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-falsevalue, #85B3CB)}.row_status_disabled[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-disabled)}.row_status_none[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid transparent}.row_status_pending[_ngcontent-%COMP%]{padding-left:9px!important;border-left:4px solid var(--ids-theme-status-pending, #1f85ff)}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--ids-theme-btn-default-color, #FFFFFF)}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]{border-color:#00000073}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:#000000b3}.in-table-checkbox[_ngcontent-%COMP%]{appearance:none;-webkit-appearance:none;width:var(--p-checkbox-width, 20px);height:var(--p-checkbox-height, 20px);border:1px solid var(--p-checkbox-border-color, #B3B3B3);border-radius:var(--p-checkbox-border-radius, 2px);background:var(--p-checkbox-background, transparent);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;transition:border-color var(--p-checkbox-transition-duration, .15s),background var(--p-checkbox-transition-duration, .15s)}.in-table-checkbox[_ngcontent-%COMP%]:checked{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:checked:after{content:\"\";display:block;width:var(--p-checkbox-icon-size, 14px);height:var(--p-checkbox-icon-size, 14px);background-color:var(--p-checkbox-icon-checked-color, #ffffff);mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");mask-size:contain;-webkit-mask-size:contain;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-position:center;-webkit-mask-position:center}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate:after{content:\"\";display:block;width:calc(var(--p-checkbox-icon-size, 14px) - 2px);height:2px;background-color:var(--p-checkbox-icon-checked-color, #ffffff);margin:auto}.in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:var(--p-checkbox-hover-border-color, #999999)}"] }); }
1739
1678
  }
1740
1679
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableComponent, [{
1741
1680
  type: Component,
@@ -1961,7 +1900,7 @@ class InsparkHeaderComponent {
1961
1900
  i0.ɵɵproperty("ngIf", ctx.level === 5);
1962
1901
  i0.ɵɵadvance();
1963
1902
  i0.ɵɵproperty("ngIf", ctx.level === 6);
1964
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf], styles: [".header[_ngcontent-%COMP%]{display:flex;align-items:center}.header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h2[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h5[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h6[_ngcontent-%COMP%]{display:inline-block;margin:0;color:var(--colorText)}.header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:24px}.header[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{margin-left:8px;display:flex;align-items:center}.header__wrapper[_ngcontent-%COMP%]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.is-wrappable[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-break:break-word;white-space:normal}.line-clamp-1[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:1}.line-clamp-2[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:2}.line-clamp-3[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:3}.line-clamp-4[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:4}"] }); }
1903
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf], styles: [".header[_ngcontent-%COMP%]{display:flex;align-items:center}.header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h2[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h3[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h5[_ngcontent-%COMP%], .header[_ngcontent-%COMP%] h6[_ngcontent-%COMP%]{display:inline-block;margin:0;color:var(--colorText)}.header[_ngcontent-%COMP%] h1[_ngcontent-%COMP%]{font-size:24px}.header[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{margin-left:8px;display:flex;align-items:center}.header__wrapper[_ngcontent-%COMP%]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.is-wrappable[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-break:break-word;white-space:normal}.line-clamp-1[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:1}.line-clamp-2[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:2}.line-clamp-3[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:3}.line-clamp-4[_ngcontent-%COMP%] .header__wrapper[_ngcontent-%COMP%]{-webkit-line-clamp:4}"] }); }
1965
1904
  }
1966
1905
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InsparkHeaderComponent, [{
1967
1906
  type: Component,
@@ -1990,7 +1929,7 @@ class SvgComponent {
1990
1929
  i0.ɵɵelement(0, "span", 0);
1991
1930
  } if (rf & 2) {
1992
1931
  i0.ɵɵproperty("inlineSVG", ctx.src)("ngClass", i0.ɵɵpureFunction2(3, _c0$k, ctx.size === "small", ctx.size === "large"))("ngStyle", i0.ɵɵpureFunction2(6, _c1$9, ctx.width, ctx.height));
1993
- } }, dependencies: [i1$2.NgClass, i1$2.NgStyle, i2$3.InlineSVGDirective], styles: [".svg[_ngcontent-%COMP%]{display:inline-flex;align-items:center;justify-content:center}.c-icon_svg-small[_ngcontent-%COMP%]{width:16px;height:16px}[_nghost-%COMP%]{display:inline-block}"] }); }
1932
+ } }, dependencies: [i1$3.NgClass, i1$3.NgStyle, i2$3.InlineSVGDirective], styles: [".svg[_ngcontent-%COMP%]{display:inline-flex;align-items:center;justify-content:center}.c-icon_svg-small[_ngcontent-%COMP%]{width:16px;height:16px}[_nghost-%COMP%]{display:inline-block}"] }); }
1994
1933
  }
1995
1934
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SvgComponent, [{
1996
1935
  type: Component,
@@ -2069,7 +2008,7 @@ class StatusCircleComponent {
2069
2008
  i0.ɵɵproperty("ngIf", ctx.content !== "");
2070
2009
  i0.ɵɵadvance();
2071
2010
  i0.ɵɵproperty("ngIf", ctx.showLabel && ctx.label);
2072
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf, SvgComponent], styles: ["@charset \"UTF-8\";[_nghost-%COMP%]{display:inline-block;line-height:0}.circle-container[_ngcontent-%COMP%]{font-size:14px;display:inline-block}.circle-container.small[_ngcontent-%COMP%]{font-size:12px}.circle-container.small[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:8px;height:8px}.circle-container.normal[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:12px;height:12px}.circle-container.big[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{min-width:20px;min-height:20px}.circle-container.mini[_ngcontent-%COMP%]{margin-top:-2px;position:relative;padding:0;top:-3px}.circle-container.mini[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:4px;height:4px}.circle[_ngcontent-%COMP%]{display:inline-grid;align-items:center;justify-content:center;color:var(--colorTextOnStatus);border-radius:20px;position:relative}.circle[_ngcontent-%COMP%] in-svg[_ngcontent-%COMP%]{position:absolute;left:50%;top:50%;height:18px;width:18px;transform:translate(-50%,-50%)}.falsevalue[_ngcontent-%COMP%]{background:var(--colorFalseValue)}.success[_ngcontent-%COMP%]{background:var(--colorSuccess)}.maintenance[_ngcontent-%COMP%]{background:var(--colorMaintenance)}.warning[_ngcontent-%COMP%]{background:var(--colorWarning)}.error[_ngcontent-%COMP%]{background:var(--colorError)}.none[_ngcontent-%COMP%]{background:var(--colorNoControl)}.critical[_ngcontent-%COMP%]{background:var(--colorCritical)}.primary[_ngcontent-%COMP%]{background:var(--ids-theme-primary, #78f4ff)}.inverse[_ngcontent-%COMP%]{background:var(--colorIcon, #78f4ff);color:var(--colorTextInverse)}.black[_ngcontent-%COMP%]{background:#000}.label[_ngcontent-%COMP%]{margin-left:6px}.content[_ngcontent-%COMP%]{display:inline-block;line-height:100%;padding:0 5px}"] }); }
2011
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf, SvgComponent], styles: ["@charset \"UTF-8\";[_nghost-%COMP%]{display:inline-block;line-height:0}.circle-container[_ngcontent-%COMP%]{font-size:14px;display:inline-block}.circle-container.small[_ngcontent-%COMP%]{font-size:12px}.circle-container.small[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:8px;height:8px}.circle-container.normal[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:12px;height:12px}.circle-container.big[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{min-width:20px;min-height:20px}.circle-container.mini[_ngcontent-%COMP%]{margin-top:-2px;position:relative;padding:0;top:-3px}.circle-container.mini[_ngcontent-%COMP%] .circle[_ngcontent-%COMP%]{width:4px;height:4px}.circle[_ngcontent-%COMP%]{display:inline-grid;align-items:center;justify-content:center;color:var(--colorTextOnStatus);border-radius:20px;position:relative}.circle[_ngcontent-%COMP%] in-svg[_ngcontent-%COMP%]{position:absolute;left:50%;top:50%;height:18px;width:18px;transform:translate(-50%,-50%)}.falsevalue[_ngcontent-%COMP%]{background:var(--colorFalseValue)}.success[_ngcontent-%COMP%]{background:var(--colorSuccess)}.maintenance[_ngcontent-%COMP%]{background:var(--colorMaintenance)}.warning[_ngcontent-%COMP%]{background:var(--colorWarning)}.error[_ngcontent-%COMP%]{background:var(--colorError)}.none[_ngcontent-%COMP%]{background:var(--colorNoControl)}.critical[_ngcontent-%COMP%]{background:var(--colorCritical)}.primary[_ngcontent-%COMP%]{background:var(--ids-theme-primary, #78f4ff)}.inverse[_ngcontent-%COMP%]{background:var(--colorIcon, #78f4ff);color:var(--colorTextInverse)}.black[_ngcontent-%COMP%]{background:#000}.label[_ngcontent-%COMP%]{margin-left:6px}.content[_ngcontent-%COMP%]{display:inline-block;line-height:100%;padding:0 5px}"] }); }
2073
2012
  }
2074
2013
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StatusCircleComponent, [{
2075
2014
  type: Component,
@@ -2239,7 +2178,7 @@ class SwitcherComponent {
2239
2178
  }
2240
2179
  onTouched() {
2241
2180
  }
2242
- static { this.ɵfac = function SwitcherComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SwitcherComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$3.Router)); }; }
2181
+ static { this.ɵfac = function SwitcherComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SwitcherComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$4.Router)); }; }
2243
2182
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SwitcherComponent, selectors: [["in-switcher"]], inputs: { name: "name", label: "label", error: "error", iconOff: "iconOff", iconOn: "iconOn", labelOff: "labelOff", labelOn: "labelOn", faIconOn: "faIconOn", faIconOff: "faIconOff", id: "id", disabled: "disabled", waiting: "waiting" }, outputs: { change: "change" }, standalone: false, features: [i0.ɵɵProvidersFeature([
2244
2183
  {
2245
2184
  provide: NG_VALUE_ACCESSOR,
@@ -2277,7 +2216,7 @@ class SwitcherComponent {
2277
2216
  i0.ɵɵproperty("ngIf", ctx.faIconOn);
2278
2217
  i0.ɵɵadvance();
2279
2218
  i0.ɵɵproperty("ngIf", ctx.iconOn);
2280
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel, SvgComponent, i1.TranslatePipe], styles: [".container[_ngcontent-%COMP%]{display:inline-flex;align-items:center;justify-content:center;flex-direction:column}.c-checkbox_switch[_ngcontent-%COMP%] .c-checkbox__icon[_ngcontent-%COMP%]{height:30px}.c-checkbox[_ngcontent-%COMP%]{margin-right:0}.label[_ngcontent-%COMP%]{font-size:11px;font-weight:700;display:block;text-align:center;text-transform:uppercase;margin-bottom:2px}.switcher-container[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center}"] }); }
2219
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel, SvgComponent, i1.TranslatePipe], styles: [".container[_ngcontent-%COMP%]{display:inline-flex;align-items:center;justify-content:center;flex-direction:column}.c-checkbox_switch[_ngcontent-%COMP%] .c-checkbox__icon[_ngcontent-%COMP%]{height:30px}.c-checkbox[_ngcontent-%COMP%]{margin-right:0}.label[_ngcontent-%COMP%]{font-size:11px;font-weight:700;display:block;text-align:center;text-transform:uppercase;margin-bottom:2px}.switcher-container[_ngcontent-%COMP%]{display:flex;align-items:center;justify-content:center}"] }); }
2281
2220
  }
2282
2221
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwitcherComponent, [{
2283
2222
  type: Component,
@@ -2288,7 +2227,7 @@ class SwitcherComponent {
2288
2227
  multi: true,
2289
2228
  }
2290
2229
  ], template: "<label class=\"c-checkbox c-checkbox_switch container\">\r\n <span *ngIf=\"label\" class=\"label\">{{label}}</span>\r\n <span class=\"switcher-container\">\r\n <span class=\"c-checkbox__label u-vertical-align-middle u-text_center\">\r\n <span *ngIf=\"!iconOff\">{{labelOff | translate}}</span>\r\n <span *ngIf=\"faIconOff\"><i class=\"fa\" [ngClass]=\"faIconOff\"></i></span>\r\n <in-svg *ngIf=\"iconOff\" [src]=\"iconOff\" height=\"48px\" size=\"large\" width=\"48px\"></in-svg>\r\n </span>\r\n <input *ngIf=\"!waiting\" (change)=\"onChange($event)\"\r\n [(ngModel)]=\"value\"\r\n [checked]=\"value\" [disabled]=\"disabled\"\r\n class=\"c-checkbox__input\"\r\n name=\"element_name\"\r\n type=\"checkbox\"/>\r\n <i *ngIf=\"!waiting\" class=\"c-checkbox__icon u-margin-left-tiny u-vertical-align-baseline\"></i>\r\n <span *ngIf=\"waiting\" style = \"display: inline-block; width:50px; text-align: center\"><i class=\"in in-spinner fa-spin \"></i></span>\r\n <span class=\"c-spinner c-checkbox__label u-vertical-align-middle u-text_center\">\r\n <span *ngIf=\"!iconOn\">{{labelOn | translate}}</span>\r\n <span *ngIf=\"faIconOn\"><i class=\"fa\" [ngClass]=\"faIconOn\"></i></span>\r\n <in-svg *ngIf=\"iconOn\" [src]=\"iconOn\" height=\"48px\" size=\"large\" width=\"48px\"></in-svg>\r\n </span>\r\n </span>\r\n</label>\r\n", styles: [".container{display:inline-flex;align-items:center;justify-content:center;flex-direction:column}.c-checkbox_switch .c-checkbox__icon{height:30px}.c-checkbox{margin-right:0}.label{font-size:11px;font-weight:700;display:block;text-align:center;text-transform:uppercase;margin-bottom:2px}.switcher-container{display:flex;align-items:center;justify-content:center}\n"] }]
2291
- }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.Router }], { name: [{
2230
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { name: [{
2292
2231
  type: Input
2293
2232
  }], label: [{
2294
2233
  type: Input
@@ -2922,7 +2861,7 @@ class TreeTableComponent {
2922
2861
  i0.ɵɵproperty("columns", ctx.visibleColumns())("resizableColumns", true)("scrollHeight", ctx.scrollHeight)("scrollable", ctx.scrollable)("selectionMode", ctx.selectionMode)("sortField", ctx.sortField || "id")("sortOrder", ctx.isAscending ? 1 : -1)("value", ctx.values);
2923
2862
  i0.ɵɵadvance(5);
2924
2863
  i0.ɵɵproperty("ngIf", ctx.toolbar);
2925
- } }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, i2$4.TreeTable, i2.PrimeTemplate, i2$4.TreeTableToggler, i2$4.TTSortableColumn, i2$4.TTSortIcon, i2$4.TTResizableColumn, i2$4.TTSelectableRow, i2$1.ɵNgNoValidate, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.RequiredValidator, i2$1.NgModel, i2$1.NgForm, TableColumnsMultiselectComponent, PropertyValuePipe, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.p-sortable-column[_ngcontent-%COMP%]{cursor:pointer;position:relative}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]{border-color:#00000073}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:#000000b3}.in-table-checkbox[_ngcontent-%COMP%]{appearance:none;-webkit-appearance:none;width:var(--p-checkbox-width, 20px);height:var(--p-checkbox-height, 20px);border:1px solid var(--p-checkbox-border-color, #B3B3B3);border-radius:var(--p-checkbox-border-radius, 2px);background:var(--p-checkbox-background, transparent);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;transition:border-color var(--p-checkbox-transition-duration, .15s),background var(--p-checkbox-transition-duration, .15s)}.in-table-checkbox[_ngcontent-%COMP%]:checked{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:checked:after{content:\"\";display:block;width:var(--p-checkbox-icon-size, 14px);height:var(--p-checkbox-icon-size, 14px);background-color:var(--p-checkbox-icon-checked-color, #ffffff);mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");mask-size:contain;-webkit-mask-size:contain;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-position:center;-webkit-mask-position:center}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate:after{content:\"\";display:block;width:calc(var(--p-checkbox-icon-size, 14px) - 2px);height:2px;background-color:var(--p-checkbox-icon-checked-color, #ffffff);margin:auto}.in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:var(--p-checkbox-hover-border-color, #999999)}.p-sortable-column-buttons[_ngcontent-%COMP%]{position:absolute;top:0;right:0;width:18px;height:100%;display:inline-flex;align-items:center;z-index:10000}.p-sortable-column-buttons[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%)}.u-overflow-visible[_ngcontent-%COMP%]{overflow:visible!important}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--colorIcon)}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}"] }); }
2864
+ } }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, i2$4.TreeTable, i2.PrimeTemplate, i2$4.TreeTableToggler, i2$4.TTSortableColumn, i2$4.TTSortIcon, i2$4.TTResizableColumn, i2$4.TTSelectableRow, i2$1.ɵNgNoValidate, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.RequiredValidator, i2$1.NgModel, i2$1.NgForm, TableColumnsMultiselectComponent, PropertyValuePipe, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.p-sortable-column[_ngcontent-%COMP%]{cursor:pointer;position:relative}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%], .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]{border-color:#00000073}.theme-light[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-light [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast[_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate), .theme-contrast [_nghost-%COMP%] .in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:#000000b3}.in-table-checkbox[_ngcontent-%COMP%]{appearance:none;-webkit-appearance:none;width:var(--p-checkbox-width, 20px);height:var(--p-checkbox-height, 20px);border:1px solid var(--p-checkbox-border-color, #B3B3B3);border-radius:var(--p-checkbox-border-radius, 2px);background:var(--p-checkbox-background, transparent);cursor:pointer;display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;transition:border-color var(--p-checkbox-transition-duration, .15s),background var(--p-checkbox-transition-duration, .15s)}.in-table-checkbox[_ngcontent-%COMP%]:checked{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:checked:after{content:\"\";display:block;width:var(--p-checkbox-icon-size, 14px);height:var(--p-checkbox-icon-size, 14px);background-color:var(--p-checkbox-icon-checked-color, #ffffff);mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='currentColor' d='M5.25 10.15l-2.8-2.8-.7.7 3.5 3.5 7.5-7.5-.7-.7z'/%3E%3C/svg%3E\");mask-size:contain;-webkit-mask-size:contain;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-position:center;-webkit-mask-position:center}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate{background:var(--p-checkbox-checked-background, #387382);border-color:var(--p-checkbox-checked-border-color, #387382)}.in-table-checkbox[_ngcontent-%COMP%]:indeterminate:after{content:\"\";display:block;width:calc(var(--p-checkbox-icon-size, 14px) - 2px);height:2px;background-color:var(--p-checkbox-icon-checked-color, #ffffff);margin:auto}.in-table-checkbox[_ngcontent-%COMP%]:hover:not(:checked):not(:indeterminate){border-color:var(--p-checkbox-hover-border-color, #999999)}.p-sortable-column-buttons[_ngcontent-%COMP%]{position:absolute;top:0;right:0;width:18px;height:100%;display:inline-flex;align-items:center;z-index:10000}.p-sortable-column-buttons[_ngcontent-%COMP%] > a[_ngcontent-%COMP%]{position:absolute;top:50%;right:0;left:0;transform:translateY(-50%)}.u-overflow-visible[_ngcontent-%COMP%]{overflow:visible!important}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--colorIcon)}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}"] }); }
2926
2865
  }
2927
2866
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TreeTableComponent, [{
2928
2867
  type: Component,
@@ -3058,11 +2997,11 @@ class RadiobuttonComponent {
3058
2997
  i0.ɵɵtemplate(0, RadiobuttonComponent_ng_container_0_Template, 8, 13, "ng-container", 0);
3059
2998
  } if (rf & 2) {
3060
2999
  i0.ɵɵproperty("ngForOf", ctx.values);
3061
- } }, dependencies: [i1$2.NgForOf], styles: [".in-radiobutton-option[_ngcontent-%COMP%]{display:inline-flex;align-items:center;cursor:pointer}.in-radiobutton-option[_ngcontent-%COMP%] .p-disabled[_ngcontent-%COMP%]{cursor:default}"], changeDetection: 0 }); }
3000
+ } }, dependencies: [i1$3.NgForOf], styles: [".in-radiobutton-option[_ngcontent-%COMP%]{display:inline-flex;align-items:center;cursor:pointer}.in-radiobutton-option[_ngcontent-%COMP%] .p-disabled[_ngcontent-%COMP%]{cursor:default}"], changeDetection: 0 }); }
3062
3001
  }
3063
3002
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RadiobuttonComponent, [{
3064
3003
  type: Component,
3065
- args: [{ standalone: false, selector: 'in-radiobutton', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngFor=\"let element of values\">\n <label class=\"in-radiobutton-option u-margin-left-tiny u-vertical-align-middle field_{{name}}\">\n <span\n class=\"p-radiobutton p-component\"\n [class.p-radiobutton-checked]=\"isSelected(element)\"\n [class.p-disabled]=\"disabled\">\n <input\n class=\"p-radiobutton-input\"\n type=\"radio\"\n [attr.id]=\"name + '-' + element.id\"\n [attr.name]=\"name\"\n [value]=\"element.id\"\n [checked]=\"isSelected(element)\"\n [disabled]=\"disabled\"\n (change)=\"selectElement(element)\">\n <span class=\"p-radiobutton-box\">\n <span class=\"p-radiobutton-icon\"></span>\n </span>\n </span>\n <span class=\"p-radiobutton-label u-vertical-align-middle\">\n {{ element[keyLabel] }}\n </span>\n </label>\n</ng-container>\n", styles: [".in-radiobutton-option{display:inline-flex;align-items:center;cursor:pointer}.in-radiobutton-option .p-disabled{cursor:default}\n"] }]
3004
+ args: [{ standalone: false, selector: 'in-radiobutton', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngFor=\"let element of values\">\r\n <label class=\"in-radiobutton-option u-margin-left-tiny u-vertical-align-middle field_{{name}}\">\r\n <span\r\n class=\"p-radiobutton p-component\"\r\n [class.p-radiobutton-checked]=\"isSelected(element)\"\r\n [class.p-disabled]=\"disabled\">\r\n <input\r\n class=\"p-radiobutton-input\"\r\n type=\"radio\"\r\n [attr.id]=\"name + '-' + element.id\"\r\n [attr.name]=\"name\"\r\n [value]=\"element.id\"\r\n [checked]=\"isSelected(element)\"\r\n [disabled]=\"disabled\"\r\n (change)=\"selectElement(element)\">\r\n <span class=\"p-radiobutton-box\">\r\n <span class=\"p-radiobutton-icon\"></span>\r\n </span>\r\n </span>\r\n <span class=\"p-radiobutton-label u-vertical-align-middle\">\r\n {{ element[keyLabel] }}\r\n </span>\r\n </label>\r\n</ng-container>\r\n", styles: [".in-radiobutton-option{display:inline-flex;align-items:center;cursor:pointer}.in-radiobutton-option .p-disabled{cursor:default}\n"] }]
3066
3005
  }], () => [], { name: [{
3067
3006
  type: Input
3068
3007
  }], label: [{
@@ -3112,7 +3051,7 @@ class PreloaderComponent {
3112
3051
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(2, _c0$f, !ctx.inline, ctx.size === "small"));
3113
3052
  i0.ɵɵadvance(14);
3114
3053
  i0.ɵɵproperty("ngIf", ctx.overlay);
3115
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf], styles: ["@charset \"UTF-8\";.preloader-container[_ngcontent-%COMP%]{display:inline-flex;width:100%;height:64px;position:relative;align-items:center;justify-content:center;z-index:101}.preloader-container.float[_ngcontent-%COMP%]{position:absolute;height:auto;width:auto;top:50%;left:50%;transform:translate(-50%,-50%)}.preloader-container.small[_ngcontent-%COMP%]{width:32px;height:32px}.preloader-container.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%]{color:var(--ids-theme-btn-primary-background);width:32px;height:32px}.lds-spinner[_ngcontent-%COMP%]{color:var(--ids-theme-btn-primary-background);width:64px;height:64px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{transform-origin:32px 32px;animation:_ngcontent-%COMP%_lds-spinner 1.2s linear infinite}.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{transform-origin:16px 16px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:after{content:\" \";display:block;position:absolute;top:3px;left:29px;width:5px;height:14px;border-radius:20%;background:var(--ids-theme-btn-primary-background, #78f4ff)}.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:after{width:3px;height:6px;left:15px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(1){transform:rotate(0);animation-delay:-1.1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(3){transform:rotate(60deg);animation-delay:-.9s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(4){transform:rotate(90deg);animation-delay:-.8s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(5){transform:rotate(120deg);animation-delay:-.7s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(6){transform:rotate(150deg);animation-delay:-.6s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(7){transform:rotate(180deg);animation-delay:-.5s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(8){transform:rotate(210deg);animation-delay:-.4s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(9){transform:rotate(240deg);animation-delay:-.3s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(10){transform:rotate(270deg);animation-delay:-.2s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(11){transform:rotate(300deg);animation-delay:-.1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(12){transform:rotate(330deg);animation-delay:0s}@keyframes _ngcontent-%COMP%_lds-spinner{0%{opacity:1}to{opacity:0}}.overlay[_ngcontent-%COMP%]{position:fixed;left:0;top:0;width:100%;height:100%;background:#000000b3;z-index:100}"] }); }
3054
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf], styles: ["@charset \"UTF-8\";.preloader-container[_ngcontent-%COMP%]{display:inline-flex;width:100%;height:64px;position:relative;align-items:center;justify-content:center;z-index:101}.preloader-container.float[_ngcontent-%COMP%]{position:absolute;height:auto;width:auto;top:50%;left:50%;transform:translate(-50%,-50%)}.preloader-container.small[_ngcontent-%COMP%]{width:32px;height:32px}.preloader-container.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%]{color:var(--ids-theme-btn-primary-background);width:32px;height:32px}.lds-spinner[_ngcontent-%COMP%]{color:var(--ids-theme-btn-primary-background);width:64px;height:64px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{transform-origin:32px 32px;animation:_ngcontent-%COMP%_lds-spinner 1.2s linear infinite}.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]{transform-origin:16px 16px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:after{content:\" \";display:block;position:absolute;top:3px;left:29px;width:5px;height:14px;border-radius:20%;background:var(--ids-theme-btn-primary-background, #78f4ff)}.small[_ngcontent-%COMP%] .lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:after{width:3px;height:6px;left:15px}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(1){transform:rotate(0);animation-delay:-1.1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(2){transform:rotate(30deg);animation-delay:-1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(3){transform:rotate(60deg);animation-delay:-.9s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(4){transform:rotate(90deg);animation-delay:-.8s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(5){transform:rotate(120deg);animation-delay:-.7s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(6){transform:rotate(150deg);animation-delay:-.6s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(7){transform:rotate(180deg);animation-delay:-.5s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(8){transform:rotate(210deg);animation-delay:-.4s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(9){transform:rotate(240deg);animation-delay:-.3s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(10){transform:rotate(270deg);animation-delay:-.2s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(11){transform:rotate(300deg);animation-delay:-.1s}.lds-spinner[_ngcontent-%COMP%] div[_ngcontent-%COMP%]:nth-child(12){transform:rotate(330deg);animation-delay:0s}@keyframes _ngcontent-%COMP%_lds-spinner{0%{opacity:1}to{opacity:0}}.overlay[_ngcontent-%COMP%]{position:fixed;left:0;top:0;width:100%;height:100%;background:#000000b3;z-index:100}"] }); }
3116
3055
  }
3117
3056
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PreloaderComponent, [{
3118
3057
  type: Component,
@@ -3434,7 +3373,7 @@ class ButtonComponent {
3434
3373
  i0.ɵɵproperty("ngIf", !ctx.link && ctx.menuItems.length);
3435
3374
  i0.ɵɵadvance();
3436
3375
  i0.ɵɵproperty("ngIf", !ctx.link && !ctx.menuItems.length);
3437
- } }, dependencies: [i1$2.NgClass, i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, i1$2.NgStyle, i1$3.RouterLink, SvgComponent, PreloaderComponent, i7.NgbDropdown, i7.NgbDropdownToggle, i7.NgbDropdownMenu, ButtonComponent], styles: ["@charset \"UTF-8\";.container[_ngcontent-%COMP%]{display:inline-block}.button-container[_ngcontent-%COMP%]{position:relative;display:inline-block}button[_ngcontent-%COMP%]{outline:none;width:100%}.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-9px}.p-button-text[_ngcontent-%COMP%]{vertical-align:middle}.notify[_ngcontent-%COMP%]{width:8px;height:8px;border-radius:100%;position:absolute;right:8px;top:8px}.notify.warning[_ngcontent-%COMP%]{background:var(--colorWarning)}.notify.success[_ngcontent-%COMP%]{background:var(--colorSuccess)}.notify.error[_ngcontent-%COMP%]{background:var(--colorError)}.notify.critical[_ngcontent-%COMP%]{background:var(--colorCritical)}.p-button[_ngcontent-%COMP%]{margin-right:0;height:36px;display:inline-flex;align-items:center;justify-content:center}.p-button.p-button-pressed[_ngcontent-%COMP%]{background-color:var(--colorBgLevel4)}.p-button.p-button-large[_ngcontent-%COMP%]{height:48px}.p-button.p-button-large[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{font-size:18px;margin-top:-8px}.p-button.p-button-large[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:0 1em 0 48px;margin-top:6px}.p-button-text-icon-left[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:0 1em 0 2.4em}.p-button-text-only[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:.25em 1em}.p-button-icon-only[_ngcontent-%COMP%]{font-size:18px;display:inline-flex;align-items:center;justify-content:center}.p-button-icon-only.p-button-large[_ngcontent-%COMP%]{width:48px;height:48px}.p-button-icon-only.p-button-large[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%], .p-button-icon-only[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%]{display:inline-block;line-height:0}.p-button-transparency[_ngcontent-%COMP%]{background:none;color:currentColor}.p-button-transparency[_ngcontent-%COMP%]:hover{color:currentColor}.p-button-shadowed[_ngcontent-%COMP%]{box-shadow:0 2px 6px #0003}.p-button.p-button-svg.p-button-small[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-4px}.p-button.p-button-svg.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-2px}.p-button.p-button-svg[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{left:6px;transform:translateY(-50%);margin-top:-4px}.p-button.p-button-svg.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{left:auto;width:auto;transform:none;margin-left:0;margin-top:0}.p-button.p-button-svg.p-button-large.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:0}.p-button-material.p-button-icon-only[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:20px}.p-button-material.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-10px;margin-left:-12px}.p-button-material[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:16px}.p-button-material[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-8px;margin-left:-2px}.p-button-material.p-button-small[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-7px}.p-button-material.p-button-small[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:14px}.p-button-material.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-12px;margin-left:-10px}.p-button-material.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:18px}.p-button-material.p-button-large[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:24px}.p-button-material.p-button-large[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-11px}.p-button-material.p-button-large.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-11px;margin-left:-13px}[_nghost-%COMP%] .p-menu[_ngcontent-%COMP%] .p-menuitem-link[_ngcontent-%COMP%]{font-size:16px}.dropdown-menu[_ngcontent-%COMP%]{display:none;background:var(--colorBgLevel3);padding:4px}.dropdown-menu[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:4px;font-size:14px}.dropdown-menu.show[_ngcontent-%COMP%]{display:block}.in-dropdown-menu[_ngcontent-%COMP%]{background:var(--colorBgLevel2);padding:0;position:absolute;display:none;margin-left:0;box-shadow:0 0 3px 1px #0003}.in-dropdown-menu.show[_ngcontent-%COMP%]{display:block}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%]{list-style-type:none;min-width:250px;display:flex;align-items:center;justify-content:flex-start;min-height:48px}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%], .in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] button{width:100%;border-radius:0}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] .p-button[_ngcontent-%COMP%], .in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] button .p-button{justify-content:flex-start}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] .switcher[_ngcontent-%COMP%]{flex:1;display:flex;justify-content:flex-end;padding-right:4px}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] + .in-dropdown-menu-item[_ngcontent-%COMP%]{border-top:1px solid var(--colorBgLevel4)}"], changeDetection: 0 }); }
3376
+ } }, dependencies: [i1$3.NgClass, i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, i1$3.NgStyle, i1$4.RouterLink, SvgComponent, PreloaderComponent, i7.NgbDropdown, i7.NgbDropdownToggle, i7.NgbDropdownMenu, ButtonComponent], styles: ["@charset \"UTF-8\";.container[_ngcontent-%COMP%]{display:inline-block}.button-container[_ngcontent-%COMP%]{position:relative;display:inline-block}button[_ngcontent-%COMP%]{outline:none;width:100%}.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-9px}.p-button-text[_ngcontent-%COMP%]{vertical-align:middle}.notify[_ngcontent-%COMP%]{width:8px;height:8px;border-radius:100%;position:absolute;right:8px;top:8px}.notify.warning[_ngcontent-%COMP%]{background:var(--colorWarning)}.notify.success[_ngcontent-%COMP%]{background:var(--colorSuccess)}.notify.error[_ngcontent-%COMP%]{background:var(--colorError)}.notify.critical[_ngcontent-%COMP%]{background:var(--colorCritical)}.p-button[_ngcontent-%COMP%]{margin-right:0;height:36px;display:inline-flex;align-items:center;justify-content:center}.p-button.p-button-pressed[_ngcontent-%COMP%]{background-color:var(--colorBgLevel4)}.p-button.p-button-large[_ngcontent-%COMP%]{height:48px}.p-button.p-button-large[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{font-size:18px;margin-top:-8px}.p-button.p-button-large[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:0 1em 0 48px;margin-top:6px}.p-button-text-icon-left[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:0 1em 0 2.4em}.p-button-text-only[_ngcontent-%COMP%] .p-button-text[_ngcontent-%COMP%]{padding:.25em 1em}.p-button-icon-only[_ngcontent-%COMP%]{font-size:18px;display:inline-flex;align-items:center;justify-content:center}.p-button-icon-only.p-button-large[_ngcontent-%COMP%]{width:48px;height:48px}.p-button-icon-only.p-button-large[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%], .p-button-icon-only[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%]{display:inline-block;line-height:0}.p-button-transparency[_ngcontent-%COMP%]{background:none;color:currentColor}.p-button-transparency[_ngcontent-%COMP%]:hover{color:currentColor}.p-button-shadowed[_ngcontent-%COMP%]{box-shadow:0 2px 6px #0003}.p-button.p-button-svg.p-button-small[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-4px}.p-button.p-button-svg.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-2px}.p-button.p-button-svg[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{left:6px;transform:translateY(-50%);margin-top:-4px}.p-button.p-button-svg.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{left:auto;width:auto;transform:none;margin-left:0;margin-top:0}.p-button.p-button-svg.p-button-large.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:0}.p-button-material.p-button-icon-only[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:20px}.p-button-material.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-10px;margin-left:-12px}.p-button-material[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:16px}.p-button-material[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-8px;margin-left:-2px}.p-button-material.p-button-small[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-7px}.p-button-material.p-button-small[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:14px}.p-button-material.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-12px;margin-left:-10px}.p-button-material.p-button-small.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:18px}.p-button-material.p-button-large[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:24px}.p-button-material.p-button-large[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-11px}.p-button-material.p-button-large.p-button-icon-only[_ngcontent-%COMP%] .p-button-icon-left[_ngcontent-%COMP%]{margin-top:-11px;margin-left:-13px}[_nghost-%COMP%] .p-menu[_ngcontent-%COMP%] .p-menuitem-link[_ngcontent-%COMP%]{font-size:16px}.dropdown-menu[_ngcontent-%COMP%]{display:none;background:var(--colorBgLevel3);padding:4px}.dropdown-menu[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{padding:4px;font-size:14px}.dropdown-menu.show[_ngcontent-%COMP%]{display:block}.in-dropdown-menu[_ngcontent-%COMP%]{background:var(--colorBgLevel2);padding:0;position:absolute;display:none;margin-left:0;box-shadow:0 0 3px 1px #0003}.in-dropdown-menu.show[_ngcontent-%COMP%]{display:block}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%]{list-style-type:none;min-width:250px;display:flex;align-items:center;justify-content:flex-start;min-height:48px}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%], .in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] button{width:100%;border-radius:0}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] .p-button[_ngcontent-%COMP%], .in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] in-button[_ngcontent-%COMP%] button .p-button{justify-content:flex-start}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] .switcher[_ngcontent-%COMP%]{flex:1;display:flex;justify-content:flex-end;padding-right:4px}.in-dropdown-menu[_ngcontent-%COMP%] .in-dropdown-menu-item[_ngcontent-%COMP%] + .in-dropdown-menu-item[_ngcontent-%COMP%]{border-top:1px solid var(--colorBgLevel4)}"], changeDetection: 0 }); }
3438
3377
  }
3439
3378
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ButtonComponent, [{
3440
3379
  type: Component,
@@ -3515,7 +3454,7 @@ class ComponentContainerComponent {
3515
3454
  i0.ɵɵelementEnd();
3516
3455
  } if (rf & 2) {
3517
3456
  i0.ɵɵproperty("ngClass", ctx.align);
3518
- } }, dependencies: [i1$2.NgClass], styles: ["@charset \"UTF-8\";.inspark-component-container[_ngcontent-%COMP%]{display:flex;gap:8px}@media screen and (min-width:480px){.inspark-component-container[_ngcontent-%COMP%]{padding-bottom:0}}.right[_ngcontent-%COMP%]{justify-content:flex-end}"] }); }
3457
+ } }, dependencies: [i1$3.NgClass], styles: ["@charset \"UTF-8\";.inspark-component-container[_ngcontent-%COMP%]{display:flex;gap:8px}@media screen and (min-width:480px){.inspark-component-container[_ngcontent-%COMP%]{padding-bottom:0}}.right[_ngcontent-%COMP%]{justify-content:flex-end}"] }); }
3519
3458
  }
3520
3459
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ComponentContainerComponent, [{
3521
3460
  type: Component,
@@ -3595,7 +3534,7 @@ class SelectListComponent {
3595
3534
  const regex = new RegExp('(' + text + ')', 'gi');
3596
3535
  return value.replace(regex, '<span class="u-text-highlight">$1</span>');
3597
3536
  }
3598
- static { this.ɵfac = function SelectListComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SelectListComponent)(i0.ɵɵdirectiveInject(i1$4.DynamicDialogRef), i0.ɵɵdirectiveInject(i1$4.DynamicDialogConfig), i0.ɵɵdirectiveInject(InsparkMessageService), i0.ɵɵdirectiveInject(i1$3.Router)); }; }
3537
+ static { this.ɵfac = function SelectListComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SelectListComponent)(i0.ɵɵdirectiveInject(i1$2.DynamicDialogRef), i0.ɵɵdirectiveInject(i1$2.DynamicDialogConfig), i0.ɵɵdirectiveInject(InsparkMessageService), i0.ɵɵdirectiveInject(i1$4.Router)); }; }
3599
3538
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: SelectListComponent, selectors: [["app-select-list"]], standalone: false, decls: 16, vars: 14, consts: [["spinner", ""], [1, "c-panel__heading-title", "h4"], [4, "ngIf"], [1, "container"], [1, "c-form-group", "type_treeblock"], ["style", "overflow: hidden; width: 100%; white-space: nowrap; display: inline-flex;", 4, "ngFor", "ngForOf"], [1, "buttons"], ["id", "close", 3, "click", "label"], ["id", "edit", "type", "submit", "color", "primary", 3, "click", "label", "disabled", "title"], [4, "ngTemplateOutlet"], [2, "overflow", "hidden", "width", "100%", "white-space", "nowrap", "display", "inline-flex"], [1, "c-label", "c-label__content", 2, "width", "100px", "min-height", "30px"], ["type", "checkbox", 1, "c-checkbox__input", 3, "checked"], [1, "p-chkbox-box", "c-checkbox__icon", 3, "click"], [1, "c-spinner"], [1, "in", "in-spinner", "fa-spin"]], template: function SelectListComponent_Template(rf, ctx) { if (rf & 1) {
3600
3539
  const _r1 = i0.ɵɵgetCurrentView();
3601
3540
  i0.ɵɵelementStart(0, "div", 1);
@@ -3628,12 +3567,12 @@ class SelectListComponent {
3628
3567
  i0.ɵɵadvance(2);
3629
3568
  i0.ɵɵpropertyInterpolate("label", i0.ɵɵpipeBind1(12, 10, "Apply"));
3630
3569
  i0.ɵɵproperty("title", i0.ɵɵpipeBind1(13, 12, "Select an action"));
3631
- } }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, ButtonComponent, ComponentContainerComponent, i1.TranslatePipe], styles: [".buttons[_ngcontent-%COMP%]{text-align:right}.buttons[_ngcontent-%COMP%] p-button[_ngcontent-%COMP%]{margin-left:8px}.container[_ngcontent-%COMP%]{padding:12px}[_nghost-%COMP%] .c-select_block{position:relative;left:10px;width:30%}[_nghost-%COMP%] .c-input_small{width:50%}[_nghost-%COMP%] .my-tree{width:100%;display:inline-block;position:relative}[_nghost-%COMP%] .my-tree .c-inputtext{width:500px}"] }); }
3570
+ } }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, ButtonComponent, ComponentContainerComponent, i1.TranslatePipe], styles: [".buttons[_ngcontent-%COMP%]{text-align:right}.buttons[_ngcontent-%COMP%] p-button[_ngcontent-%COMP%]{margin-left:8px}.container[_ngcontent-%COMP%]{padding:12px}[_nghost-%COMP%] .c-select_block{position:relative;left:10px;width:30%}[_nghost-%COMP%] .c-input_small{width:50%}[_nghost-%COMP%] .my-tree{width:100%;display:inline-block;position:relative}[_nghost-%COMP%] .my-tree .c-inputtext{width:500px}"] }); }
3632
3571
  }
3633
3572
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SelectListComponent, [{
3634
3573
  type: Component,
3635
3574
  args: [{ standalone: false, selector: 'app-select-list', template: "<div class=\"c-panel__heading-title h4\">\r\n {{'Select objects for which to execute the command' | translate}}\r\n</div>\r\n<span *ngIf=\"isShowSpinner\"><ng-container *ngTemplateOutlet=\"spinner\"></ng-container></span>\r\n<div class=\"container\">\r\n <div class=\"c-form-group type_treeblock\">\r\n <div style=\"overflow: hidden; width: 100%; white-space: nowrap; display: inline-flex;\" *ngFor=\"let item of options; let i = index\">\r\n <span class=\"c-label c-label__content\" style=\"width: 100px; min-height: 30px;\">{{item.value}}</span>\r\n <input class=\"c-checkbox__input\" type=\"checkbox\" [checked]=\"options[i].checked\" >\r\n <i class=\"p-chkbox-box c-checkbox__icon\" (click)=\"select(i)\"></i>\r\n </div>\r\n\r\n </div>\r\n <div class=\"buttons\">\r\n <in-component-container>\r\n <in-button id=\"close\" (click)=\"closeModal()\"\r\n label=\"{{'Cancel' | translate}}\"></in-button>\r\n <in-button id=\"edit\" (click)=\"applySelection()\" type=\"submit\"\r\n label=\"{{'Apply' | translate}}\"\r\n color=\"primary\" [disabled]=\"\" [title]=\"'Select an action' | translate\"></in-button>\r\n </in-component-container>\r\n </div>\r\n</div>\r\n\r\n<ng-template #spinner><span class=\"c-spinner\">\r\n <i class=\"in in-spinner fa-spin \"></i>\r\n</span></ng-template>\r\n", styles: [".buttons{text-align:right}.buttons p-button{margin-left:8px}.container{padding:12px}:host ::ng-deep .c-select_block{position:relative;left:10px;width:30%}:host ::ng-deep .c-input_small{width:50%}:host ::ng-deep .my-tree{width:100%;display:inline-block;position:relative}:host ::ng-deep .my-tree .c-inputtext{width:500px}\n"] }]
3636
- }], () => [{ type: i1$4.DynamicDialogRef }, { type: i1$4.DynamicDialogConfig }, { type: InsparkMessageService }, { type: i1$3.Router }], null); })();
3575
+ }], () => [{ type: i1$2.DynamicDialogRef }, { type: i1$2.DynamicDialogConfig }, { type: InsparkMessageService }, { type: i1$4.Router }], null); })();
3637
3576
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SelectListComponent, { className: "SelectListComponent", filePath: "components/select-list/select-list.component.ts", lineNumber: 15 }); })();
3638
3577
 
3639
3578
  class ObjectTreeComponent {
@@ -3785,7 +3724,7 @@ class ModalInputTextComponent {
3785
3724
  splited.forEach(s => translated += this.translateService.instant(s) + '\n');
3786
3725
  return translated;
3787
3726
  }
3788
- static { this.ɵfac = function ModalInputTextComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ModalInputTextComponent)(i0.ɵɵdirectiveInject(i1$4.DynamicDialogRef), i0.ɵɵdirectiveInject(i1$4.DynamicDialogConfig), i0.ɵɵdirectiveInject(i1.TranslateService), i0.ɵɵdirectiveInject(InsparkMessageService), i0.ɵɵdirectiveInject(i1$3.Router)); }; }
3727
+ static { this.ɵfac = function ModalInputTextComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ModalInputTextComponent)(i0.ɵɵdirectiveInject(i1$2.DynamicDialogRef), i0.ɵɵdirectiveInject(i1$2.DynamicDialogConfig), i0.ɵɵdirectiveInject(i1.TranslateService), i0.ɵɵdirectiveInject(InsparkMessageService), i0.ɵɵdirectiveInject(i1$4.Router)); }; }
3789
3728
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ModalInputTextComponent, selectors: [["app-modal-input-text"]], standalone: false, decls: 16, vars: 18, consts: [["spinner", ""], [1, "c-panel__heading-title", "h4"], [4, "ngIf"], [1, "container"], ["class", "c-form-group type_treeblock", 4, "ngIf"], ["class", "o-grid o-grid_wrap", 4, "ngIf"], [1, "buttons"], ["id", "close", 3, "click", "label", "name"], ["id", "edit", "type", "submit", "color", "primary", 3, "click", "label", "name", "disabled", "title"], [4, "ngTemplateOutlet"], [1, "c-form-group", "type_treeblock"], [4, "ngFor", "ngForOf"], [1, "c-label", "type_bool", 2, "overflow", "hidden", "width", "100%", "white-space", "nowrap", "display", "inline-flex"], [1, "c-onecolumn-form_label__content", 2, "position", "relative", "top", "5px", "min-height", "30px"], [2, "min-height", "30px"], ["type", "checkbox", 3, "click", "checked"], [1, "p-chkbox-box", "c-checkbox__icon"], [1, "o-grid", "o-grid_wrap"], [1, "o-grid__cell", "o-grid__cell_width-100", "o-grid__cell_width-100@medium", "o-grid__cell_width-100@large"], [1, "c-form-group"], [1, "c-label", "type_varchars"], [1, "c-label__content", 2, "width", "500px", "white-space", "pre-line"], ["type", "text", "maxlength", "60", 3, "ngModelChange", "ngModel"], [1, "c-spinner"], [1, "in", "in-spinner", "fa-spin"]], template: function ModalInputTextComponent_Template(rf, ctx) { if (rf & 1) {
3790
3729
  const _r1 = i0.ɵɵgetCurrentView();
3791
3730
  i0.ɵɵelementStart(0, "div", 1);
@@ -3820,12 +3759,12 @@ class ModalInputTextComponent {
3820
3759
  i0.ɵɵadvance(2);
3821
3760
  i0.ɵɵpropertyInterpolate("label", i0.ɵɵpipeBind1(12, 14, "Apply"));
3822
3761
  i0.ɵɵproperty("name", "Apply")("disabled", ctx.checkSelected())("title", i0.ɵɵpipeBind1(13, 16, "Select an action"));
3823
- } }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i1$2.NgTemplateOutlet, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.MaxLengthValidator, i2$1.NgModel, ButtonComponent, ComponentContainerComponent, i1.TranslatePipe], styles: [".buttons[_ngcontent-%COMP%]{text-align:right}.buttons[_ngcontent-%COMP%] p-button[_ngcontent-%COMP%]{margin-left:8px}.container[_ngcontent-%COMP%]{padding:12px}[_nghost-%COMP%] .c-select_block{position:relative;left:10px;width:30%}[_nghost-%COMP%] .c-input_small{width:50%}[_nghost-%COMP%] .my-tree{width:100%;display:inline-block;position:relative}[_nghost-%COMP%] .my-tree .c-inputtext{width:500px}"] }); }
3762
+ } }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i1$3.NgTemplateOutlet, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.MaxLengthValidator, i2$1.NgModel, ButtonComponent, ComponentContainerComponent, i1.TranslatePipe], styles: [".buttons[_ngcontent-%COMP%]{text-align:right}.buttons[_ngcontent-%COMP%] p-button[_ngcontent-%COMP%]{margin-left:8px}.container[_ngcontent-%COMP%]{padding:12px}[_nghost-%COMP%] .c-select_block{position:relative;left:10px;width:30%}[_nghost-%COMP%] .c-input_small{width:50%}[_nghost-%COMP%] .my-tree{width:100%;display:inline-block;position:relative}[_nghost-%COMP%] .my-tree .c-inputtext{width:500px}"] }); }
3824
3763
  }
3825
3764
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ModalInputTextComponent, [{
3826
3765
  type: Component,
3827
3766
  args: [{ standalone: false, selector: 'app-modal-input-text', template: "<div class=\"c-panel__heading-title h4\">\r\n {{'Enter parameter value' | translate}}\r\n</div>\r\n<span *ngIf=\"isShowSpinner\"><ng-container *ngTemplateOutlet=\"spinner\"></ng-container></span>\r\n<div class=\"container\">\r\n <div *ngIf = this.options class=\"c-form-group type_treeblock\">\r\n <div *ngFor=\"let item of options; let i = index\">\r\n <label class=\"c-label type_bool\" style=\"overflow: hidden; width: 100%; white-space: nowrap; display: inline-flex;\">\r\n <span class=\"c-onecolumn-form_label__content\" [style.width]=\"maxLength + 'px'\" style=\"position: relative; top: 5px; min-height: 30px;\">\r\n {{item.value}}\r\n </span>\r\n <span class=\"c-onecolumn-form_label__content field_{{item.value}}\" style=\"min-height: 30px;\">\r\n <input class=\"c-checkbox__input field_{{item.value}}\" type=\"checkbox\" [checked]=\"options[i].checked\" (click)=\"select(i)\">\r\n <i class=\"p-chkbox-box c-checkbox__icon\" ></i>\r\n </span>\r\n </label>\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=this.param class=\"o-grid o-grid_wrap\">\r\n <div class=\"o-grid__cell o-grid__cell_width-100 o-grid__cell_width-100@medium o-grid__cell_width-100@large\">\r\n <div class=\"c-form-group\">\r\n <label class=\"c-label type_varchars\">\r\n <span class=\"c-label__content\" style=\"width: 500px;white-space: pre-line\">{{translate(param.title)}}</span>\r\n <input [(ngModel)]=\"param.value\" class=\"c-input c-input_block field_{{config.data.command.label}}\" type=\"text\" maxlength=\"60\">\r\n </label>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"buttons\">\r\n <in-component-container>\r\n <in-button id=\"close\" (click)=\"closeModal()\"\r\n label=\"{{'Cancel' | translate}}\"\r\n [name]=\"'Cancel'\"\r\n ></in-button>\r\n <in-button id=\"edit\" (click)=\"applySelection()\" type=\"submit\"\r\n label=\"{{'Apply' | translate}}\"\r\n [name]=\"'Apply'\"\r\n color=\"primary\" [disabled]=\"checkSelected()\" [title]=\"'Select an action' | translate\"></in-button>\r\n </in-component-container>\r\n </div>\r\n</div>\r\n\r\n<ng-template #spinner><span class=\"c-spinner\">\r\n <i class=\"in in-spinner fa-spin \"></i>\r\n</span></ng-template>\r\n", styles: [".buttons{text-align:right}.buttons p-button{margin-left:8px}.container{padding:12px}:host ::ng-deep .c-select_block{position:relative;left:10px;width:30%}:host ::ng-deep .c-input_small{width:50%}:host ::ng-deep .my-tree{width:100%;display:inline-block;position:relative}:host ::ng-deep .my-tree .c-inputtext{width:500px}\n"] }]
3828
- }], () => [{ type: i1$4.DynamicDialogRef }, { type: i1$4.DynamicDialogConfig }, { type: i1.TranslateService }, { type: InsparkMessageService }, { type: i1$3.Router }], null); })();
3767
+ }], () => [{ type: i1$2.DynamicDialogRef }, { type: i1$2.DynamicDialogConfig }, { type: i1.TranslateService }, { type: InsparkMessageService }, { type: i1$4.Router }], null); })();
3829
3768
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ModalInputTextComponent, { className: "ModalInputTextComponent", filePath: "components/modal-input-text/modal-input-text.component.ts", lineNumber: 16 }); })();
3830
3769
 
3831
3770
  class SharedComponentsModule {
@@ -4008,7 +3947,7 @@ class InsparkStickyComponent {
4008
3947
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(9, _c4$1, ctx.isSticky, ctx.isFloated && ctx.isSticky))("ngStyle", i0.ɵɵpureFunction4(12, _c5, ctx.zIndex, ctx.top + "px", ctx.left + "px", ctx.width ? ctx.width + "px" : "auto"));
4009
3948
  i0.ɵɵadvance();
4010
3949
  i0.ɵɵproperty("ngClass", ctx.class + " u-overflow-hidden");
4011
- } }, dependencies: [i1$2.NgClass, i1$2.NgStyle], styles: [".sticky[_ngcontent-%COMP%]{position:fixed;display:inline-block}.floated[_ngcontent-%COMP%]{box-shadow:0 0 4px 2px #0000004d}.inline[_ngcontent-%COMP%]{display:inline-block}"], changeDetection: 0 }); }
3950
+ } }, dependencies: [i1$3.NgClass, i1$3.NgStyle], styles: [".sticky[_ngcontent-%COMP%]{position:fixed;display:inline-block}.floated[_ngcontent-%COMP%]{box-shadow:0 0 4px 2px #0000004d}.inline[_ngcontent-%COMP%]{display:inline-block}"], changeDetection: 0 }); }
4012
3951
  }
4013
3952
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InsparkStickyComponent, [{
4014
3953
  type: Component,
@@ -4241,7 +4180,7 @@ class AutoCompleteComponent {
4241
4180
  i0.ɵɵproperty("styleClass", ctx.styleClass);
4242
4181
  i0.ɵɵtwoWayProperty("ngModel", ctx.value);
4243
4182
  i0.ɵɵproperty("suggestions", ctx.suggestions)("placeholder", ctx.placeholder)("field", ctx.field)("dropdown", ctx.dropdown)("multiple", ctx.multiple)("forceSelection", ctx.forceSelection)("minLength", ctx.minLength)("delay", ctx.delay)("disabled", ctx.disabled)("appendTo", ctx.appendTo)("dropdownMode", ctx.dropdownMode)("virtualScroll", ctx.virtualScroll)("virtualScrollItemSize", ctx.virtualScrollItemSize)("emptyMessage", ctx.emptyMessage)("inputStyle", ctx.inputStyle)("inputStyleClass", ctx.inputStyleClass)("dropdownIcon", ctx.dropdownIcon);
4244
- } }, dependencies: [i1$2.NgIf, i2$1.NgControlStatus, i2$1.NgModel, i3.AutoComplete, i2.PrimeTemplate], styles: ["[_nghost-%COMP%]{display:block}"] }); }
4183
+ } }, dependencies: [i1$3.NgIf, i2$1.NgControlStatus, i2$1.NgModel, i3.AutoComplete, i2.PrimeTemplate], styles: ["[_nghost-%COMP%]{display:block}"] }); }
4245
4184
  }
4246
4185
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AutoCompleteComponent, [{
4247
4186
  type: Component,
@@ -4448,7 +4387,7 @@ class ObjectPieComponent {
4448
4387
  i0.ɵɵproperty("ngForOf", ctx.data);
4449
4388
  i0.ɵɵadvance(2);
4450
4389
  i0.ɵɵtextInterpolate(ctx.count);
4451
- } }, dependencies: [i1$2.NgForOf], styles: [".pie-block[_ngcontent-%COMP%]{width:40px;height:40px;color:var(--text-color)}.pie-block[_ngcontent-%COMP%] text[_ngcontent-%COMP%]{width:20px;height:20px;background:var(--colorBgLevel2);font-size:11px}.pie-block[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{width:40px;height:40px}"], changeDetection: 0 }); }
4390
+ } }, dependencies: [i1$3.NgForOf], styles: [".pie-block[_ngcontent-%COMP%]{width:40px;height:40px;color:var(--text-color)}.pie-block[_ngcontent-%COMP%] text[_ngcontent-%COMP%]{width:20px;height:20px;background:var(--colorBgLevel2);font-size:11px}.pie-block[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{width:40px;height:40px}"], changeDetection: 0 }); }
4452
4391
  }
4453
4392
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ObjectPieComponent, [{
4454
4393
  type: Component,
@@ -4608,7 +4547,7 @@ class InputTextComponent {
4608
4547
  i0.ɵɵadvance();
4609
4548
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(37, _c4, ctx.display));
4610
4549
  i0.ɵɵattribute("title", i0.ɵɵpipeBind1(5, 23, "Reset"));
4611
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf, i1$2.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.MaxLengthValidator, i2$1.NgModel, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.label[_ngcontent-%COMP%]{display:inline-block;margin-bottom:0}.c-input[_ngcontent-%COMP%]{height:36px;width:100%}.c-input_opaque[_ngcontent-%COMP%]{background:var(--colorBgLevel3)}.c-input_shadowed[_ngcontent-%COMP%]{box-shadow:0 2px 6px #0003}.constraints-message__warning[_ngcontent-%COMP%]{color:red}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--ids-theme-btn-default-color, #FFFFFF)}.empty[_ngcontent-%COMP%]{display:none}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}.c-input_margin_padding[_ngcontent-%COMP%]{margin-left:56px;padding-right:10px;max-width:1200px}.c-input_padding_right[_ngcontent-%COMP%]{padding-right:28px}"] }); }
4550
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf, i1$3.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.MaxLengthValidator, i2$1.NgModel, i1.TranslatePipe], styles: ["@charset \"UTF-8\";.label[_ngcontent-%COMP%]{display:inline-block;margin-bottom:0}.c-input[_ngcontent-%COMP%]{height:36px;width:100%}.c-input_opaque[_ngcontent-%COMP%]{background:var(--colorBgLevel3)}.c-input_shadowed[_ngcontent-%COMP%]{box-shadow:0 2px 6px #0003}.constraints-message__warning[_ngcontent-%COMP%]{color:red}.button-reset[_ngcontent-%COMP%]{display:flex;align-items:center;position:absolute;right:6px;top:5px;padding:6px;font-size:15px;border:none;outline:0;cursor:pointer;color:var(--colorTextMuted);background-color:transparent}.button-reset[_ngcontent-%COMP%]:hover{color:var(--ids-theme-btn-default-color, #FFFFFF)}.empty[_ngcontent-%COMP%]{display:none}.input-wrapper[_ngcontent-%COMP%]{position:relative;display:flex;align-items:baseline}.c-input[_ngcontent-%COMP%]:not(:valid) ~ .button-reset[_ngcontent-%COMP%]{display:none}.c-input_margin_padding[_ngcontent-%COMP%]{margin-left:56px;padding-right:10px;max-width:1200px}.c-input_padding_right[_ngcontent-%COMP%]{padding-right:28px}"] }); }
4612
4551
  }
4613
4552
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InputTextComponent, [{
4614
4553
  type: Component,
@@ -4794,7 +4733,7 @@ class TextareaComponent {
4794
4733
  i0.ɵɵclassMapInterpolate1("c-textarea field_", ctx.id, "");
4795
4734
  i0.ɵɵtwoWayProperty("ngModel", ctx.value);
4796
4735
  i0.ɵɵproperty("disabled", ctx.disabled)("id", ctx.id)("name", ctx.name)("ngStyle", i0.ɵɵpureFunction1(11, _c0$9, ctx.minHeight + "px"))("placeholder", ctx.placeholder)("required", ctx.required);
4797
- } }, dependencies: [i1$2.NgIf, i1$2.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.NgModel], encapsulation: 2 }); }
4736
+ } }, dependencies: [i1$3.NgIf, i1$3.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.NgModel], encapsulation: 2 }); }
4798
4737
  }
4799
4738
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextareaComponent, [{
4800
4739
  type: Component,
@@ -4908,7 +4847,7 @@ class CheckboxComponent {
4908
4847
  }
4909
4848
  onTouched() {
4910
4849
  }
4911
- static { this.ɵfac = function CheckboxComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$3.Router)); }; }
4850
+ static { this.ɵfac = function CheckboxComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$4.Router)); }; }
4912
4851
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CheckboxComponent, selectors: [["in-checkbox"]], inputs: { name: "name", label: "label", required: "required", error: "error", placeholder: "placeholder", id: "id", disabled: "disabled" }, standalone: false, features: [i0.ɵɵProvidersFeature([
4913
4852
  {
4914
4853
  provide: NG_VALUE_ACCESSOR,
@@ -4933,7 +4872,7 @@ class CheckboxComponent {
4933
4872
  i0.ɵɵproperty("disabled", ctx.disabled);
4934
4873
  i0.ɵɵadvance(2);
4935
4874
  i0.ɵɵproperty("ngIf", ctx.label);
4936
- } }, dependencies: [i1$2.NgIf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel], styles: ["[_nghost-%COMP%]{width:100%}.c-checkbox[_ngcontent-%COMP%]{margin:0;display:flex;min-width:100%;align-items:center;padding:8px}.c-checkbox[_ngcontent-%COMP%] .c-checkbox__input[_ngcontent-%COMP%] + .c-checkbox__icon[_ngcontent-%COMP%]{padding-left:20px;top:0}.c-checkbox[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]{display:flex;align-items:center}.c-checkbox[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]:not(:empty){display:inline-flex;padding-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}"] }); }
4875
+ } }, dependencies: [i1$3.NgIf, i2$1.CheckboxControlValueAccessor, i2$1.NgControlStatus, i2$1.NgModel], styles: ["[_nghost-%COMP%]{width:100%}.c-checkbox[_ngcontent-%COMP%]{margin:0;display:flex;min-width:100%;align-items:center;padding:8px}.c-checkbox[_ngcontent-%COMP%] .c-checkbox__input[_ngcontent-%COMP%] + .c-checkbox__icon[_ngcontent-%COMP%]{padding-left:20px;top:0}.c-checkbox[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]{display:flex;align-items:center}.c-checkbox[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]:not(:empty){display:inline-flex;padding-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}"] }); }
4937
4876
  }
4938
4877
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckboxComponent, [{
4939
4878
  type: Component,
@@ -4944,7 +4883,7 @@ class CheckboxComponent {
4944
4883
  multi: true,
4945
4884
  }
4946
4885
  ], template: "<label class=\"c-checkbox\">\r\n <input (change)=\"onChange($event)\" (input)=\"onChange($event)\"\r\n (ngModelChange)=\"onChange(value)\"\r\n [(ngModel)]=\"value\"\r\n [disabled]=\"disabled\"\r\n class=\"c-checkbox__input field_{{id}}\"\r\n name=\"element_name\"\r\n type=\"checkbox\"/>\r\n <i class=\"c-checkbox__icon\"></i>\r\n <span *ngIf=\"label\" class=\"label\">{{ label }}</span>\r\n <span class=\"label\"><ng-content></ng-content></span>\r\n</label>\r\n", styles: [":host{width:100%}.c-checkbox{margin:0;display:flex;min-width:100%;align-items:center;padding:8px}.c-checkbox .c-checkbox__input+.c-checkbox__icon{padding-left:20px;top:0}.c-checkbox .label{display:flex;align-items:center}.c-checkbox .label:not(:empty){display:inline-flex;padding-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"] }]
4947
- }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.Router }], { name: [{
4886
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { name: [{
4948
4887
  type: Input
4949
4888
  }], label: [{
4950
4889
  type: Input
@@ -5106,7 +5045,7 @@ class FileComponent {
5106
5045
  i0.ɵɵproperty("ngIf", !ctx.file);
5107
5046
  i0.ɵɵadvance(2);
5108
5047
  i0.ɵɵproperty("accept", ctx.accept);
5109
- } }, dependencies: [i1$2.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".hide[_ngcontent-%COMP%]{display:none}"] }); }
5048
+ } }, dependencies: [i1$3.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".hide[_ngcontent-%COMP%]{display:none}"] }); }
5110
5049
  }
5111
5050
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FileComponent, [{
5112
5051
  type: Component,
@@ -5166,7 +5105,7 @@ class ToolbarComponent {
5166
5105
  this.cdRef.detectChanges();
5167
5106
  }
5168
5107
  }
5169
- static { this.ɵfac = function ToolbarComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToolbarComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$3.Router)); }; }
5108
+ static { this.ɵfac = function ToolbarComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToolbarComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$4.Router)); }; }
5170
5109
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ToolbarComponent, selectors: [["in-toolbar"]], inputs: { title: "title" }, standalone: false, ngContentSelectors: _c0$6, decls: 10, vars: 2, consts: [[1, "toolbar-wrapper"], [3, "top"], [1, "c-panel", "toolbar-container"], [1, "c-toolbar"], [1, "c-toolbar__side-left"], [1, "c-toolbar__title"], [1, "c-toolbar__side-center"], [1, "c-toolbar__side-right"]], template: function ToolbarComponent_Template(rf, ctx) { if (rf & 1) {
5171
5110
  i0.ɵɵprojectionDef();
5172
5111
  i0.ɵɵelementStart(0, "div", 0)(1, "in-sticky", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "div", 5);
@@ -5186,7 +5125,7 @@ class ToolbarComponent {
5186
5125
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ToolbarComponent, [{
5187
5126
  type: Component,
5188
5127
  args: [{ standalone: false, selector: 'in-toolbar', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"toolbar-wrapper\">\r\n <in-sticky [top]=\"60\">\r\n\r\n <div class=\"c-panel toolbar-container\">\r\n <div class=\"c-toolbar\">\r\n <div class=\"c-toolbar__side-left\">\r\n <div class=\"c-toolbar__title\">{{title}}</div>\r\n </div>\r\n <div class=\"c-toolbar__side-center\">\r\n\r\n </div>\r\n <div class=\"c-toolbar__side-right\">\r\n <ng-content></ng-content>\r\n </div>\r\n\r\n </div>\r\n </div>\r\n </in-sticky>\r\n</div>\r\n", styles: [".toolbar-wrapper{padding-bottom:4px}.toolbar-container{padding:8px;position:relative}:host{position:sticky;z-index:2}.c-toolbar{display:inline-flex;width:100%;flex-wrap:wrap}.c-toolbar__side-left{flex:100%;text-align:left}@media screen and (min-width:1200px){.c-toolbar__side-left{flex:1}}.c-toolbar__title{display:inline-flex;vertical-align:middle;font-size:22px}.c-toolbar__side-right{display:flex;text-align:right}.add-widget{position:fixed;right:16px;bottom:16px}.widget-container{position:absolute;inset:40px 0 0;overflow:auto}.widget-block{position:absolute;inset:5px}.sidebar{background:var(--main-background);position:absolute;left:0;top:35px;bottom:0;height:100vh;z-index:100;width:300px;box-shadow:0 0 3px 8px #0000001a;overflow:auto}.right-side{display:flex;align-items:center;justify-content:flex-end;flex:1}.right-side>*{margin-left:5px}.left-side{white-space:nowrap;display:flex;align-items:center;justify-content:flex-start}.left-side>*{margin-right:5px}.controls-panel{height:41px;border-radius:2px;padding:4px 0;margin:0 5px 5px;display:flex}.dashboard-list{position:relative}.title{font-size:22px}\n"] }]
5189
- }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.Router }], { title: [{
5128
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { title: [{
5190
5129
  type: Input
5191
5130
  }] }); })();
5192
5131
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ToolbarComponent, { className: "ToolbarComponent", filePath: "components/toolbar/toolbar.component.ts", lineNumber: 11 }); })();
@@ -5263,7 +5202,7 @@ class BreadcrumbComponent {
5263
5202
  i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 3, "Home"));
5264
5203
  i0.ɵɵadvance(2);
5265
5204
  i0.ɵɵproperty("ngForOf", ctx.items);
5266
- } }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i1$3.RouterLink, i1.TranslateDirective, i1.TranslatePipe], encapsulation: 2, changeDetection: 0 }); }
5205
+ } }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i1$4.RouterLink, i1.TranslateDirective, i1.TranslatePipe], encapsulation: 2, changeDetection: 0 }); }
5267
5206
  }
5268
5207
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BreadcrumbComponent, [{
5269
5208
  type: Component,
@@ -5485,7 +5424,7 @@ class SelectButtonComponent {
5485
5424
  i0.ɵɵproperty("ngIf", ctx.label);
5486
5425
  i0.ɵɵadvance(3);
5487
5426
  i0.ɵɵproperty("ngForOf", ctx.options)("ngForTrackBy", ctx.trackByValue);
5488
- } }, dependencies: [i1$2.NgForOf, i1$2.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".container[_ngcontent-%COMP%]{white-space:nowrap}in-button[_ngcontent-%COMP%] button{outline:none}in-button[_ngcontent-%COMP%]:first-child button{border-bottom-right-radius:0;border-top-right-radius:0;border-right:1px solid #000}in-button[_ngcontent-%COMP%]:not(:first-child):not(:last-child) button{border-radius:0;border-right:1px solid #000}in-button[_ngcontent-%COMP%]:last-child button{border-bottom-left-radius:0;border-top-left-radius:0}.button-none[_ngcontent-%COMP%]{display:none}"] }); }
5427
+ } }, dependencies: [i1$3.NgForOf, i1$3.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".container[_ngcontent-%COMP%]{white-space:nowrap}in-button[_ngcontent-%COMP%] button{outline:none}in-button[_ngcontent-%COMP%]:first-child button{border-bottom-right-radius:0;border-top-right-radius:0;border-right:1px solid #000}in-button[_ngcontent-%COMP%]:not(:first-child):not(:last-child) button{border-radius:0;border-right:1px solid #000}in-button[_ngcontent-%COMP%]:last-child button{border-bottom-left-radius:0;border-top-left-radius:0}.button-none[_ngcontent-%COMP%]{display:none}"] }); }
5489
5428
  }
5490
5429
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SelectButtonComponent, [{
5491
5430
  type: Component,
@@ -5599,7 +5538,7 @@ class InlineMessageComponent {
5599
5538
  i0.ɵɵproperty("ngClass", ctx.align);
5600
5539
  i0.ɵɵadvance();
5601
5540
  i0.ɵɵtextInterpolate1(" ", ctx.message, " ");
5602
- } }, dependencies: [i1$2.NgClass], styles: [".message[_ngcontent-%COMP%]{padding:12px 0;text-align:center;color:#aaa}.message.left[_ngcontent-%COMP%]{text-align:left}.message.right[_ngcontent-%COMP%]{text-align:right}"] }); }
5541
+ } }, dependencies: [i1$3.NgClass], styles: [".message[_ngcontent-%COMP%]{padding:12px 0;text-align:center;color:#aaa}.message.left[_ngcontent-%COMP%]{text-align:left}.message.right[_ngcontent-%COMP%]{text-align:right}"] }); }
5603
5542
  }
5604
5543
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InlineMessageComponent, [{
5605
5544
  type: Component,
@@ -5690,7 +5629,7 @@ class ContentToggleComponent {
5690
5629
  i0.ɵɵtextInterpolate1(" ", ctx.label, " ");
5691
5630
  i0.ɵɵadvance(6);
5692
5631
  i0.ɵɵproperty("ngIf", ctx.isOpen);
5693
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf, SvgComponent], styles: ["@charset \"UTF-8\";.block[_ngcontent-%COMP%]{font-size:12px;text-transform:uppercase;cursor:pointer;display:flex;white-space:nowrap}.block[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{flex:1;display:flex;justify-content:flex-end;align-items:center;-webkit-user-select:none;user-select:none}.block[_ngcontent-%COMP%]:hover{background:var(--colorBgLevel2)}.block[_ngcontent-%COMP%] > span[_ngcontent-%COMP%]{display:inline-block;margin-right:4px}.block[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]{margin-right:8px;display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis}.block[_ngcontent-%COMP%] .counter[_ngcontent-%COMP%]{display:flex;align-items:center;padding-right:8px}.block[_ngcontent-%COMP%] .arrow[_ngcontent-%COMP%]{margin-right:0}.block[_ngcontent-%COMP%] .arrow.close[_ngcontent-%COMP%]{transform:rotate(-90deg)}.label-icon[_ngcontent-%COMP%]{margin-right:4px;width:16px;height:16px}"] }); }
5632
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf, SvgComponent], styles: ["@charset \"UTF-8\";.block[_ngcontent-%COMP%]{font-size:12px;text-transform:uppercase;cursor:pointer;display:flex;white-space:nowrap}.block[_ngcontent-%COMP%] .buttons[_ngcontent-%COMP%]{flex:1;display:flex;justify-content:flex-end;align-items:center;-webkit-user-select:none;user-select:none}.block[_ngcontent-%COMP%]:hover{background:var(--colorBgLevel2)}.block[_ngcontent-%COMP%] > span[_ngcontent-%COMP%]{display:inline-block;margin-right:4px}.block[_ngcontent-%COMP%] .label[_ngcontent-%COMP%]{margin-right:8px;display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis}.block[_ngcontent-%COMP%] .counter[_ngcontent-%COMP%]{display:flex;align-items:center;padding-right:8px}.block[_ngcontent-%COMP%] .arrow[_ngcontent-%COMP%]{margin-right:0}.block[_ngcontent-%COMP%] .arrow.close[_ngcontent-%COMP%]{transform:rotate(-90deg)}.label-icon[_ngcontent-%COMP%]{margin-right:4px;width:16px;height:16px}"] }); }
5694
5633
  }
5695
5634
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContentToggleComponent, [{
5696
5635
  type: Component,
@@ -5854,7 +5793,7 @@ class InputGroupComponent {
5854
5793
  i0.ɵɵproperty("color", "primary")("disabled", ctx.isApplyDisabled())("isIconOnly", true)("name", "apply")("size", "tiny")("title", i0.ɵɵpipeBind1(5, 23, "Apply"));
5855
5794
  i0.ɵɵadvance(2);
5856
5795
  i0.ɵɵproperty("isIconOnly", true)("name", "cancel")("size", "tiny")("title", i0.ɵɵpipeBind1(7, 25, "Cancel"));
5857
- } }, dependencies: [i1$2.NgIf, i1$2.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.MaxLengthValidator, i2$1.NgModel, ButtonComponent, i1.TranslatePipe], encapsulation: 2 }); }
5796
+ } }, dependencies: [i1$3.NgIf, i1$3.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.MaxLengthValidator, i2$1.NgModel, ButtonComponent, i1.TranslatePipe], encapsulation: 2 }); }
5858
5797
  }
5859
5798
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InputGroupComponent, [{
5860
5799
  type: Component,
@@ -6109,7 +6048,7 @@ class LinkComponent {
6109
6048
  i0.ɵɵproperty("ngIf", !ctx.link);
6110
6049
  i0.ɵɵadvance();
6111
6050
  i0.ɵɵproperty("ngIf", ctx.menuItems.length);
6112
- } }, dependencies: [i1$2.NgClass, i1$2.NgIf, i1$2.NgTemplateOutlet, i1$3.RouterLink, i3$1.Menu, SvgComponent], styles: [".p-link[_ngcontent-%COMP%]{text-decoration:none;color:var(--colorLink);cursor:pointer}.p-link.p-link-secondary[_ngcontent-%COMP%]{color:var(--colorTextSecondary)}.p-link[_ngcontent-%COMP%]:hover{color:var(--colorLink)}.p-link[_ngcontent-%COMP%]:hover .p-link-text[_ngcontent-%COMP%]{text-decoration:underline;color:var(--colorLink)}button[_ngcontent-%COMP%]{outline:none}.p-link-icon-only[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{margin-top:-9px}.p-link-text[_ngcontent-%COMP%]{vertical-align:middle}.p-link[_ngcontent-%COMP%]{margin-right:0;display:inline-flex;align-items:center;justify-content:center}.p-link-text-icon-left[_ngcontent-%COMP%] .p-link-text[_ngcontent-%COMP%]{padding-left:.6em}.p-link-icon-only[_ngcontent-%COMP%]{font-size:18px;display:inline-flex;align-items:center;justify-content:center}.p-link-icon-only[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%]{display:inline-block;line-height:0}.p-link-transparency[_ngcontent-%COMP%]{background:none}.p-link.p-link-svg[_ngcontent-%COMP%] .p-clickable[_ngcontent-%COMP%]{height:20px}.p-link.p-link-svg[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{left:6px;margin-top:-2px}.p-link.p-link-svg.p-link-icon-only[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{left:50%;width:auto;transform:translate(-50%,-50%);margin-left:0;margin-top:0}.p-link-material[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:16px}[_nghost-%COMP%] .p-menu[_ngcontent-%COMP%] .p-menuitem-link[_ngcontent-%COMP%]{font-size:16px}"] }); }
6051
+ } }, dependencies: [i1$3.NgClass, i1$3.NgIf, i1$3.NgTemplateOutlet, i1$4.RouterLink, i3$1.Menu, SvgComponent], styles: [".p-link[_ngcontent-%COMP%]{text-decoration:none;color:var(--colorLink);cursor:pointer}.p-link.p-link-secondary[_ngcontent-%COMP%]{color:var(--colorTextSecondary)}.p-link[_ngcontent-%COMP%]:hover{color:var(--colorLink)}.p-link[_ngcontent-%COMP%]:hover .p-link-text[_ngcontent-%COMP%]{text-decoration:underline;color:var(--colorLink)}button[_ngcontent-%COMP%]{outline:none}.p-link-icon-only[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{margin-top:-9px}.p-link-text[_ngcontent-%COMP%]{vertical-align:middle}.p-link[_ngcontent-%COMP%]{margin-right:0;display:inline-flex;align-items:center;justify-content:center}.p-link-text-icon-left[_ngcontent-%COMP%] .p-link-text[_ngcontent-%COMP%]{padding-left:.6em}.p-link-icon-only[_ngcontent-%COMP%]{font-size:18px;display:inline-flex;align-items:center;justify-content:center}.p-link-icon-only[_ngcontent-%COMP%] .svg[_ngcontent-%COMP%]{display:inline-block;line-height:0}.p-link-transparency[_ngcontent-%COMP%]{background:none}.p-link.p-link-svg[_ngcontent-%COMP%] .p-clickable[_ngcontent-%COMP%]{height:20px}.p-link.p-link-svg[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{left:6px;margin-top:-2px}.p-link.p-link-svg.p-link-icon-only[_ngcontent-%COMP%] .p-link-icon-left[_ngcontent-%COMP%]{left:50%;width:auto;transform:translate(-50%,-50%);margin-left:0;margin-top:0}.p-link-material[_ngcontent-%COMP%] .material-icons[_ngcontent-%COMP%]{font-size:16px}[_nghost-%COMP%] .p-menu[_ngcontent-%COMP%] .p-menuitem-link[_ngcontent-%COMP%]{font-size:16px}"] }); }
6113
6052
  }
6114
6053
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LinkComponent, [{
6115
6054
  type: Component,
@@ -6413,7 +6352,7 @@ class DropdownComponent {
6413
6352
  } if (rf & 2) {
6414
6353
  i0.ɵɵproperty("options", ctx.options)("placeholder", ctx.placeholder)("optionLabel", ctx.optionLabel)("optionValue", ctx.optionValue)("dataKey", ctx.dataKey)("filter", ctx.filter)("filterBy", ctx.effectiveFilterBy)("filterMatchMode", ctx.filterMatchMode)("showClear", ctx.showClear)("disabled", ctx.disabled)("appendTo", ctx.appendTo)("editable", ctx.editable)("virtualScroll", ctx.virtualScroll)("virtualScrollItemSize", ctx.virtualScrollItemSize)("loading", ctx.loading)("autoDisplayFirst", ctx.autoDisplayFirst)("emptyMessage", ctx.emptyMessage)("styleClass", ctx.styleClass);
6415
6354
  i0.ɵɵtwoWayProperty("ngModel", ctx.value);
6416
- } }, dependencies: [i1$2.NgIf, i1$2.NgTemplateOutlet, i2$1.NgControlStatus, i2$1.NgModel, i3$2.Select, i2.PrimeTemplate], styles: [".in-dropdown[_ngcontent-%COMP%]{width:100%;margin-bottom:0}"] }); }
6355
+ } }, dependencies: [i1$3.NgIf, i1$3.NgTemplateOutlet, i2$1.NgControlStatus, i2$1.NgModel, i3$2.Select, i2.PrimeTemplate], styles: [".in-dropdown[_ngcontent-%COMP%]{width:100%;margin-bottom:0}"] }); }
6417
6356
  }
6418
6357
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DropdownComponent, [{
6419
6358
  type: Component,
@@ -6539,7 +6478,8 @@ class InsparkComponentsModule {
6539
6478
  LegacyComponentsModule,
6540
6479
  LegacyUiModule,
6541
6480
  InlineSVGModule,
6542
- SvgComponentModule, DropdownComponentModule,
6481
+ SvgComponentModule,
6482
+ DynamicDialogModule, DropdownComponentModule,
6543
6483
  TableComponentModule,
6544
6484
  TreeTableComponentModule,
6545
6485
  MenuModule,
@@ -6599,6 +6539,7 @@ class InsparkComponentsModule {
6599
6539
  LegacyUiModule,
6600
6540
  InlineSVGModule,
6601
6541
  SvgComponentModule,
6542
+ DynamicDialogModule,
6602
6543
  ],
6603
6544
  declarations: [
6604
6545
  PanelComponent,
@@ -6689,7 +6630,8 @@ class InsparkComponentsModule {
6689
6630
  LegacyComponentsModule,
6690
6631
  LegacyUiModule,
6691
6632
  InlineSVGModule,
6692
- SvgComponentModule], exports: [PanelComponent,
6633
+ SvgComponentModule,
6634
+ DynamicDialogModule], exports: [PanelComponent,
6693
6635
  DropdownComponentModule,
6694
6636
  TableComponentModule,
6695
6637
  TreeTableComponentModule,