@inspark/inspark-components 19.0.46 → 19.0.48

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,
@@ -1430,21 +1369,23 @@ class TableComponent {
1430
1369
  const key = this.dataKey || 'id';
1431
1370
  return this._selectionSet.has(row?.[key] ?? row);
1432
1371
  }
1433
- /** O(1) check avoids p-tableHeaderCheckbox.updateCheckedState() O(N) iteration */
1372
+ /** Checkuses filteredValue when filter is active, full values otherwise */
1434
1373
  _isAllSelected() {
1435
- if (!this.values || this.values.length === 0) {
1374
+ const data = this.dt?.filteredValue ?? this.values;
1375
+ if (!data || data.length === 0) {
1436
1376
  return false;
1437
1377
  }
1438
- return this._selectionSet.size >= this.values.length;
1378
+ const key = this.dataKey || 'id';
1379
+ return data.every(row => this._selectionSet.has(row?.[key] ?? row));
1439
1380
  }
1440
- /** Select/deselect all rows directly via values array — bypasses dt.processedData
1441
- * (O(N log N) sort) used by p-tableHeaderCheckbox.toggleRowsWithCheckbox(). */
1381
+ /** Select/deselect all rows respecting active filter */
1442
1382
  _onHeaderCheckboxChange(event) {
1443
1383
  const checked = event.target.checked;
1444
1384
  const key = this.dataKey || 'id';
1385
+ const data = this.dt?.filteredValue ?? this.values;
1445
1386
  if (checked) {
1446
- this._selectionSet = new Set((this.values || []).map(row => row?.[key] ?? row));
1447
- this._selection = [...(this.values || [])];
1387
+ this._selectionSet = new Set((data || []).map(row => row?.[key] ?? row));
1388
+ this._selection = [...(data || [])];
1448
1389
  }
1449
1390
  else {
1450
1391
  this._selectionSet = new Set();
@@ -1735,7 +1676,7 @@ class TableComponent {
1735
1676
  i0.ɵɵproperty("ngIf", !ctx.bodyTemplate);
1736
1677
  i0.ɵɵadvance();
1737
1678
  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)}"] }); }
1679
+ } }, 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
1680
  }
1740
1681
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableComponent, [{
1741
1682
  type: Component,
@@ -1961,7 +1902,7 @@ class InsparkHeaderComponent {
1961
1902
  i0.ɵɵproperty("ngIf", ctx.level === 5);
1962
1903
  i0.ɵɵadvance();
1963
1904
  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}"] }); }
1905
+ } }, 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
1906
  }
1966
1907
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InsparkHeaderComponent, [{
1967
1908
  type: Component,
@@ -1990,7 +1931,7 @@ class SvgComponent {
1990
1931
  i0.ɵɵelement(0, "span", 0);
1991
1932
  } if (rf & 2) {
1992
1933
  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}"] }); }
1934
+ } }, 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
1935
  }
1995
1936
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SvgComponent, [{
1996
1937
  type: Component,
@@ -2069,7 +2010,7 @@ class StatusCircleComponent {
2069
2010
  i0.ɵɵproperty("ngIf", ctx.content !== "");
2070
2011
  i0.ɵɵadvance();
2071
2012
  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}"] }); }
2013
+ } }, 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
2014
  }
2074
2015
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StatusCircleComponent, [{
2075
2016
  type: Component,
@@ -2239,7 +2180,7 @@ class SwitcherComponent {
2239
2180
  }
2240
2181
  onTouched() {
2241
2182
  }
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)); }; }
2183
+ 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
2184
  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
2185
  {
2245
2186
  provide: NG_VALUE_ACCESSOR,
@@ -2277,7 +2218,7 @@ class SwitcherComponent {
2277
2218
  i0.ɵɵproperty("ngIf", ctx.faIconOn);
2278
2219
  i0.ɵɵadvance();
2279
2220
  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}"] }); }
2221
+ } }, 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
2222
  }
2282
2223
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SwitcherComponent, [{
2283
2224
  type: Component,
@@ -2288,7 +2229,7 @@ class SwitcherComponent {
2288
2229
  multi: true,
2289
2230
  }
2290
2231
  ], 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: [{
2232
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { name: [{
2292
2233
  type: Input
2293
2234
  }], label: [{
2294
2235
  type: Input
@@ -2922,7 +2863,7 @@ class TreeTableComponent {
2922
2863
  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
2864
  i0.ɵɵadvance(5);
2924
2865
  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}"] }); }
2866
+ } }, 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
2867
  }
2927
2868
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TreeTableComponent, [{
2928
2869
  type: Component,
@@ -3058,11 +2999,11 @@ class RadiobuttonComponent {
3058
2999
  i0.ɵɵtemplate(0, RadiobuttonComponent_ng_container_0_Template, 8, 13, "ng-container", 0);
3059
3000
  } if (rf & 2) {
3060
3001
  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 }); }
3002
+ } }, 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
3003
  }
3063
3004
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RadiobuttonComponent, [{
3064
3005
  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"] }]
3006
+ 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
3007
  }], () => [], { name: [{
3067
3008
  type: Input
3068
3009
  }], label: [{
@@ -3112,7 +3053,7 @@ class PreloaderComponent {
3112
3053
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(2, _c0$f, !ctx.inline, ctx.size === "small"));
3113
3054
  i0.ɵɵadvance(14);
3114
3055
  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}"] }); }
3056
+ } }, 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
3057
  }
3117
3058
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PreloaderComponent, [{
3118
3059
  type: Component,
@@ -3434,7 +3375,7 @@ class ButtonComponent {
3434
3375
  i0.ɵɵproperty("ngIf", !ctx.link && ctx.menuItems.length);
3435
3376
  i0.ɵɵadvance();
3436
3377
  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 }); }
3378
+ } }, 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
3379
  }
3439
3380
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ButtonComponent, [{
3440
3381
  type: Component,
@@ -3515,7 +3456,7 @@ class ComponentContainerComponent {
3515
3456
  i0.ɵɵelementEnd();
3516
3457
  } if (rf & 2) {
3517
3458
  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}"] }); }
3459
+ } }, 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
3460
  }
3520
3461
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ComponentContainerComponent, [{
3521
3462
  type: Component,
@@ -3595,7 +3536,7 @@ class SelectListComponent {
3595
3536
  const regex = new RegExp('(' + text + ')', 'gi');
3596
3537
  return value.replace(regex, '<span class="u-text-highlight">$1</span>');
3597
3538
  }
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)); }; }
3539
+ 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
3540
  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
3541
  const _r1 = i0.ɵɵgetCurrentView();
3601
3542
  i0.ɵɵelementStart(0, "div", 1);
@@ -3628,12 +3569,12 @@ class SelectListComponent {
3628
3569
  i0.ɵɵadvance(2);
3629
3570
  i0.ɵɵpropertyInterpolate("label", i0.ɵɵpipeBind1(12, 10, "Apply"));
3630
3571
  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}"] }); }
3572
+ } }, 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
3573
  }
3633
3574
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SelectListComponent, [{
3634
3575
  type: Component,
3635
3576
  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); })();
3577
+ }], () => [{ type: i1$2.DynamicDialogRef }, { type: i1$2.DynamicDialogConfig }, { type: InsparkMessageService }, { type: i1$4.Router }], null); })();
3637
3578
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SelectListComponent, { className: "SelectListComponent", filePath: "components/select-list/select-list.component.ts", lineNumber: 15 }); })();
3638
3579
 
3639
3580
  class ObjectTreeComponent {
@@ -3785,7 +3726,7 @@ class ModalInputTextComponent {
3785
3726
  splited.forEach(s => translated += this.translateService.instant(s) + '\n');
3786
3727
  return translated;
3787
3728
  }
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)); }; }
3729
+ 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
3730
  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
3731
  const _r1 = i0.ɵɵgetCurrentView();
3791
3732
  i0.ɵɵelementStart(0, "div", 1);
@@ -3820,12 +3761,12 @@ class ModalInputTextComponent {
3820
3761
  i0.ɵɵadvance(2);
3821
3762
  i0.ɵɵpropertyInterpolate("label", i0.ɵɵpipeBind1(12, 14, "Apply"));
3822
3763
  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}"] }); }
3764
+ } }, 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
3765
  }
3825
3766
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ModalInputTextComponent, [{
3826
3767
  type: Component,
3827
3768
  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); })();
3769
+ }], () => [{ type: i1$2.DynamicDialogRef }, { type: i1$2.DynamicDialogConfig }, { type: i1.TranslateService }, { type: InsparkMessageService }, { type: i1$4.Router }], null); })();
3829
3770
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ModalInputTextComponent, { className: "ModalInputTextComponent", filePath: "components/modal-input-text/modal-input-text.component.ts", lineNumber: 16 }); })();
3830
3771
 
3831
3772
  class SharedComponentsModule {
@@ -4008,7 +3949,7 @@ class InsparkStickyComponent {
4008
3949
  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
3950
  i0.ɵɵadvance();
4010
3951
  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 }); }
3952
+ } }, 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
3953
  }
4013
3954
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InsparkStickyComponent, [{
4014
3955
  type: Component,
@@ -4241,7 +4182,7 @@ class AutoCompleteComponent {
4241
4182
  i0.ɵɵproperty("styleClass", ctx.styleClass);
4242
4183
  i0.ɵɵtwoWayProperty("ngModel", ctx.value);
4243
4184
  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}"] }); }
4185
+ } }, dependencies: [i1$3.NgIf, i2$1.NgControlStatus, i2$1.NgModel, i3.AutoComplete, i2.PrimeTemplate], styles: ["[_nghost-%COMP%]{display:block}"] }); }
4245
4186
  }
4246
4187
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AutoCompleteComponent, [{
4247
4188
  type: Component,
@@ -4448,7 +4389,7 @@ class ObjectPieComponent {
4448
4389
  i0.ɵɵproperty("ngForOf", ctx.data);
4449
4390
  i0.ɵɵadvance(2);
4450
4391
  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 }); }
4392
+ } }, 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
4393
  }
4453
4394
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ObjectPieComponent, [{
4454
4395
  type: Component,
@@ -4608,7 +4549,7 @@ class InputTextComponent {
4608
4549
  i0.ɵɵadvance();
4609
4550
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(37, _c4, ctx.display));
4610
4551
  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}"] }); }
4552
+ } }, 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
4553
  }
4613
4554
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InputTextComponent, [{
4614
4555
  type: Component,
@@ -4794,7 +4735,7 @@ class TextareaComponent {
4794
4735
  i0.ɵɵclassMapInterpolate1("c-textarea field_", ctx.id, "");
4795
4736
  i0.ɵɵtwoWayProperty("ngModel", ctx.value);
4796
4737
  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 }); }
4738
+ } }, dependencies: [i1$3.NgIf, i1$3.NgStyle, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.RequiredValidator, i2$1.NgModel], encapsulation: 2 }); }
4798
4739
  }
4799
4740
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TextareaComponent, [{
4800
4741
  type: Component,
@@ -4908,7 +4849,7 @@ class CheckboxComponent {
4908
4849
  }
4909
4850
  onTouched() {
4910
4851
  }
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)); }; }
4852
+ 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
4853
  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
4854
  {
4914
4855
  provide: NG_VALUE_ACCESSOR,
@@ -4933,7 +4874,7 @@ class CheckboxComponent {
4933
4874
  i0.ɵɵproperty("disabled", ctx.disabled);
4934
4875
  i0.ɵɵadvance(2);
4935
4876
  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}"] }); }
4877
+ } }, 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
4878
  }
4938
4879
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckboxComponent, [{
4939
4880
  type: Component,
@@ -4944,7 +4885,7 @@ class CheckboxComponent {
4944
4885
  multi: true,
4945
4886
  }
4946
4887
  ], 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: [{
4888
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { name: [{
4948
4889
  type: Input
4949
4890
  }], label: [{
4950
4891
  type: Input
@@ -5106,7 +5047,7 @@ class FileComponent {
5106
5047
  i0.ɵɵproperty("ngIf", !ctx.file);
5107
5048
  i0.ɵɵadvance(2);
5108
5049
  i0.ɵɵproperty("accept", ctx.accept);
5109
- } }, dependencies: [i1$2.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".hide[_ngcontent-%COMP%]{display:none}"] }); }
5050
+ } }, dependencies: [i1$3.NgIf, ButtonComponent, i1.TranslatePipe], styles: [".hide[_ngcontent-%COMP%]{display:none}"] }); }
5110
5051
  }
5111
5052
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(FileComponent, [{
5112
5053
  type: Component,
@@ -5166,7 +5107,7 @@ class ToolbarComponent {
5166
5107
  this.cdRef.detectChanges();
5167
5108
  }
5168
5109
  }
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)); }; }
5110
+ 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
5111
  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
5112
  i0.ɵɵprojectionDef();
5172
5113
  i0.ɵɵelementStart(0, "div", 0)(1, "in-sticky", 1)(2, "div", 2)(3, "div", 3)(4, "div", 4)(5, "div", 5);
@@ -5186,7 +5127,7 @@ class ToolbarComponent {
5186
5127
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ToolbarComponent, [{
5187
5128
  type: Component,
5188
5129
  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: [{
5130
+ }], () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Router }], { title: [{
5190
5131
  type: Input
5191
5132
  }] }); })();
5192
5133
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ToolbarComponent, { className: "ToolbarComponent", filePath: "components/toolbar/toolbar.component.ts", lineNumber: 11 }); })();
@@ -5263,7 +5204,7 @@ class BreadcrumbComponent {
5263
5204
  i0.ɵɵtextInterpolate(i0.ɵɵpipeBind1(5, 3, "Home"));
5264
5205
  i0.ɵɵadvance(2);
5265
5206
  i0.ɵɵproperty("ngForOf", ctx.items);
5266
- } }, dependencies: [i1$2.NgForOf, i1$2.NgIf, i1$3.RouterLink, i1.TranslateDirective, i1.TranslatePipe], encapsulation: 2, changeDetection: 0 }); }
5207
+ } }, dependencies: [i1$3.NgForOf, i1$3.NgIf, i1$4.RouterLink, i1.TranslateDirective, i1.TranslatePipe], encapsulation: 2, changeDetection: 0 }); }
5267
5208
  }
5268
5209
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BreadcrumbComponent, [{
5269
5210
  type: Component,
@@ -5485,7 +5426,7 @@ class SelectButtonComponent {
5485
5426
  i0.ɵɵproperty("ngIf", ctx.label);
5486
5427
  i0.ɵɵadvance(3);
5487
5428
  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}"] }); }
5429
+ } }, 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
5430
  }
5490
5431
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SelectButtonComponent, [{
5491
5432
  type: Component,
@@ -5599,7 +5540,7 @@ class InlineMessageComponent {
5599
5540
  i0.ɵɵproperty("ngClass", ctx.align);
5600
5541
  i0.ɵɵadvance();
5601
5542
  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}"] }); }
5543
+ } }, 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
5544
  }
5604
5545
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InlineMessageComponent, [{
5605
5546
  type: Component,
@@ -5690,7 +5631,7 @@ class ContentToggleComponent {
5690
5631
  i0.ɵɵtextInterpolate1(" ", ctx.label, " ");
5691
5632
  i0.ɵɵadvance(6);
5692
5633
  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}"] }); }
5634
+ } }, 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
5635
  }
5695
5636
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContentToggleComponent, [{
5696
5637
  type: Component,
@@ -5854,7 +5795,7 @@ class InputGroupComponent {
5854
5795
  i0.ɵɵproperty("color", "primary")("disabled", ctx.isApplyDisabled())("isIconOnly", true)("name", "apply")("size", "tiny")("title", i0.ɵɵpipeBind1(5, 23, "Apply"));
5855
5796
  i0.ɵɵadvance(2);
5856
5797
  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 }); }
5798
+ } }, 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
5799
  }
5859
5800
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(InputGroupComponent, [{
5860
5801
  type: Component,
@@ -6109,7 +6050,7 @@ class LinkComponent {
6109
6050
  i0.ɵɵproperty("ngIf", !ctx.link);
6110
6051
  i0.ɵɵadvance();
6111
6052
  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}"] }); }
6053
+ } }, 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
6054
  }
6114
6055
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LinkComponent, [{
6115
6056
  type: Component,
@@ -6413,7 +6354,7 @@ class DropdownComponent {
6413
6354
  } if (rf & 2) {
6414
6355
  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
6356
  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}"] }); }
6357
+ } }, 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
6358
  }
6418
6359
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DropdownComponent, [{
6419
6360
  type: Component,
@@ -6539,7 +6480,8 @@ class InsparkComponentsModule {
6539
6480
  LegacyComponentsModule,
6540
6481
  LegacyUiModule,
6541
6482
  InlineSVGModule,
6542
- SvgComponentModule, DropdownComponentModule,
6483
+ SvgComponentModule,
6484
+ DynamicDialogModule, DropdownComponentModule,
6543
6485
  TableComponentModule,
6544
6486
  TreeTableComponentModule,
6545
6487
  MenuModule,
@@ -6599,6 +6541,7 @@ class InsparkComponentsModule {
6599
6541
  LegacyUiModule,
6600
6542
  InlineSVGModule,
6601
6543
  SvgComponentModule,
6544
+ DynamicDialogModule,
6602
6545
  ],
6603
6546
  declarations: [
6604
6547
  PanelComponent,
@@ -6689,7 +6632,8 @@ class InsparkComponentsModule {
6689
6632
  LegacyComponentsModule,
6690
6633
  LegacyUiModule,
6691
6634
  InlineSVGModule,
6692
- SvgComponentModule], exports: [PanelComponent,
6635
+ SvgComponentModule,
6636
+ DynamicDialogModule], exports: [PanelComponent,
6693
6637
  DropdownComponentModule,
6694
6638
  TableComponentModule,
6695
6639
  TreeTableComponentModule,