@valtimo/dossier-management 11.3.2 → 12.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/dossier-management-assignee/dossier-management-assignee.component.mjs +7 -7
- package/esm2022/lib/components/dossier-management-connect-modal/dossier-management-connect-modal.component.mjs +7 -7
- package/esm2022/lib/components/dossier-management-create/dossier-management-create.component.mjs +119 -0
- package/esm2022/lib/components/dossier-management-detail/dossier-management-detail.component.mjs +34 -12
- package/esm2022/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.mjs +114 -36
- package/esm2022/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.component.mjs +159 -0
- package/esm2022/lib/components/dossier-management-document-definition/dossier-management-document-definition.component.mjs +147 -0
- package/esm2022/lib/components/dossier-management-list/dossier-management-list.component.mjs +33 -16
- package/esm2022/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.mjs +12 -11
- package/esm2022/lib/components/dossier-management-processes/dossier-management-processes.component.mjs +7 -7
- package/esm2022/lib/components/dossier-management-remove-modal/dossier-management-remove-modal.component.mjs +7 -7
- package/esm2022/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.mjs +56 -38
- package/esm2022/lib/components/dossier-management-statuses/dossier-management-status-modal/dossier-management-status-modal.component.mjs +285 -0
- package/esm2022/lib/components/dossier-management-statuses/dossier-management-statuses.component.mjs +154 -0
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-add-tab-modal/dossier-management-add-tab-modal.component.mjs +41 -18
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-edit-tab-modal/dossier-management-edit-tab-modal.component.mjs +13 -11
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-tabs.component.mjs +59 -29
- package/esm2022/lib/components/dossier-management-tabs/tab-form/tab-form.component.mjs +49 -16
- package/esm2022/lib/components/dossier-management-upload/dossier-management-upload.component.mjs +14 -17
- package/esm2022/lib/components/dossier-management-upload/dossier-management-upload.constants.mjs +16 -1
- package/esm2022/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.mjs +20 -5
- package/esm2022/lib/components/dossier-management-widget-configurators/collection/dossier-management-widget-collection.component.mjs +218 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/custom/dossier-management-widget-custom.component.mjs +104 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/fields/column/dossier-management-widget-fields-column.component.mjs +194 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/fields/dossier-management-widget-fields.component.mjs +133 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/formio/dossier-management-widget-formio.component.mjs +107 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/index.mjs +21 -0
- package/esm2022/lib/components/dossier-management-widget-configurators/table/dossier-management-widget-table.component.mjs +96 -0
- package/esm2022/lib/components/dossier-management-widget-tab/dossier-management-widget-tab.component.mjs +160 -0
- package/esm2022/lib/components/dossier-management-widget-tab/editor/dossier-management-widgets-editor.component.mjs +208 -0
- package/esm2022/lib/components/dossier-management-widget-tab/json-editor/dossier-management-widgets-json-editor.component.mjs +190 -0
- package/esm2022/lib/components/dossier-management-widget-tab-edit-modal/dossier-management-widget-tab-edit-modal.mjs +110 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/dossier-management-widget-wizard.component.mjs +160 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/steps/index.mjs +26 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.mjs +52 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/steps/widget-wizard-style-step/widget-wizard-style-step.component.mjs +41 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/steps/widget-wizard-type-step/widget-wizard-type-step.component.mjs +45 -0
- package/esm2022/lib/components/dossier-management-widget-wizard/steps/widget-wizard-width-step/widget-wizard-width-step.component.mjs +43 -0
- package/esm2022/lib/dossier-management-routing.module.mjs +23 -8
- package/esm2022/lib/dossier-management.module.mjs +37 -18
- package/esm2022/lib/models/index.mjs +6 -2
- package/esm2022/lib/models/list-column.model.mjs +2 -2
- package/esm2022/lib/models/status.model.mjs +17 -0
- package/esm2022/lib/models/tab.enum.mjs +3 -2
- package/esm2022/lib/models/widget-content.model.mjs +17 -0
- package/esm2022/lib/models/widget-editor.model.mjs +30 -0
- package/esm2022/lib/models/widget-wizard.model.mjs +78 -0
- package/esm2022/lib/services/dossier-detail.service.mjs +18 -11
- package/esm2022/lib/services/dossier-export.service.mjs +7 -7
- package/esm2022/lib/services/dossier-management.service.mjs +38 -0
- package/esm2022/lib/services/index.mjs +9 -5
- package/esm2022/lib/services/tab-management.service.mjs +16 -10
- package/esm2022/lib/services/tab.service.mjs +26 -8
- package/esm2022/lib/services/widget-fields.service.mjs +104 -0
- package/esm2022/lib/services/widget-json-editor.service.mjs +31 -0
- package/esm2022/lib/services/widget-tab-management.service.mjs +26 -0
- package/esm2022/lib/services/widget-wizard.service.mjs +41 -0
- package/esm2022/public-api.mjs +2 -2
- package/fesm2022/valtimo-dossier-management.mjs +4668 -1796
- package/fesm2022/valtimo-dossier-management.mjs.map +1 -1
- package/lib/components/dossier-management-create/dossier-management-create.component.d.ts +26 -0
- package/lib/components/dossier-management-create/dossier-management-create.component.d.ts.map +1 -0
- package/lib/components/dossier-management-detail/dossier-management-detail.component.d.ts +9 -3
- package/lib/components/dossier-management-detail/dossier-management-detail.component.d.ts.map +1 -1
- package/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.d.ts +27 -14
- package/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.d.ts.map +1 -1
- package/lib/components/dossier-management-detail-container-actions/{dossier-management-detail-container-actions.d.ts → dossier-management-detail-container-actions.component.d.ts} +9 -3
- package/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.component.d.ts.map +1 -0
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.component.d.ts +48 -0
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.component.d.ts.map +1 -0
- package/lib/components/dossier-management-list/dossier-management-list.component.d.ts +7 -4
- package/lib/components/dossier-management-list/dossier-management-list.component.d.ts.map +1 -1
- package/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.d.ts +2 -2
- package/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.d.ts.map +1 -1
- package/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.d.ts +10 -4
- package/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.d.ts.map +1 -1
- package/lib/components/dossier-management-statuses/dossier-management-status-modal/dossier-management-status-modal.component.d.ts +78 -0
- package/lib/components/dossier-management-statuses/dossier-management-status-modal/dossier-management-status-modal.component.d.ts.map +1 -0
- package/lib/components/dossier-management-statuses/dossier-management-statuses.component.d.ts +47 -0
- package/lib/components/dossier-management-statuses/dossier-management-statuses.component.d.ts.map +1 -0
- package/lib/components/dossier-management-tabs/dossier-management-add-tab-modal/dossier-management-add-tab-modal.component.d.ts +7 -9
- package/lib/components/dossier-management-tabs/dossier-management-add-tab-modal/dossier-management-add-tab-modal.component.d.ts.map +1 -1
- package/lib/components/dossier-management-tabs/dossier-management-edit-tab-modal/dossier-management-edit-tab-modal.component.d.ts.map +1 -1
- package/lib/components/dossier-management-tabs/dossier-management-tabs.component.d.ts +10 -5
- package/lib/components/dossier-management-tabs/dossier-management-tabs.component.d.ts.map +1 -1
- package/lib/components/dossier-management-tabs/tab-form/tab-form.component.d.ts +13 -4
- package/lib/components/dossier-management-tabs/tab-form/tab-form.component.d.ts.map +1 -1
- package/lib/components/dossier-management-upload/dossier-management-upload.component.d.ts +3 -5
- package/lib/components/dossier-management-upload/dossier-management-upload.component.d.ts.map +1 -1
- package/lib/components/dossier-management-upload/dossier-management-upload.constants.d.ts.map +1 -1
- package/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.d.ts.map +1 -1
- package/lib/components/dossier-management-widget-configurators/collection/dossier-management-widget-collection.component.d.ts +57 -0
- package/lib/components/dossier-management-widget-configurators/collection/dossier-management-widget-collection.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/custom/dossier-management-widget-custom.component.d.ts +40 -0
- package/lib/components/dossier-management-widget-configurators/custom/dossier-management-widget-custom.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/fields/column/dossier-management-widget-fields-column.component.d.ts +50 -0
- package/lib/components/dossier-management-widget-configurators/fields/column/dossier-management-widget-fields-column.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/fields/dossier-management-widget-fields.component.d.ts +38 -0
- package/lib/components/dossier-management-widget-configurators/fields/dossier-management-widget-fields.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/formio/dossier-management-widget-formio.component.d.ts +41 -0
- package/lib/components/dossier-management-widget-configurators/formio/dossier-management-widget-formio.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/index.d.ts +6 -0
- package/lib/components/dossier-management-widget-configurators/index.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-configurators/table/dossier-management-widget-table.component.d.ts +32 -0
- package/lib/components/dossier-management-widget-configurators/table/dossier-management-widget-table.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-tab/dossier-management-widget-tab.component.d.ts +50 -0
- package/lib/components/dossier-management-widget-tab/dossier-management-widget-tab.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-tab/editor/dossier-management-widgets-editor.component.d.ts +40 -0
- package/lib/components/dossier-management-widget-tab/editor/dossier-management-widgets-editor.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-tab/json-editor/dossier-management-widgets-json-editor.component.d.ts +47 -0
- package/lib/components/dossier-management-widget-tab/json-editor/dossier-management-widgets-json-editor.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-tab-edit-modal/dossier-management-widget-tab-edit-modal.d.ts +32 -0
- package/lib/components/dossier-management-widget-tab-edit-modal/dossier-management-widget-tab-edit-modal.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/dossier-management-widget-wizard.component.d.ts +34 -0
- package/lib/components/dossier-management-widget-wizard/dossier-management-widget-wizard.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/steps/index.d.ts +6 -0
- package/lib/components/dossier-management-widget-wizard/steps/index.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.d.ts +15 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-style-step/widget-wizard-style-step.component.d.ts +15 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-style-step/widget-wizard-style-step.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-type-step/widget-wizard-type-step.component.d.ts +15 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-type-step/widget-wizard-type-step.component.d.ts.map +1 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-width-step/widget-wizard-width-step.component.d.ts +16 -0
- package/lib/components/dossier-management-widget-wizard/steps/widget-wizard-width-step/widget-wizard-width-step.component.d.ts.map +1 -0
- package/lib/dossier-management-routing.module.d.ts.map +1 -1
- package/lib/dossier-management.module.d.ts +25 -22
- package/lib/dossier-management.module.d.ts.map +1 -1
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/status.model.d.ts +4 -0
- package/lib/models/status.model.d.ts.map +1 -0
- package/lib/models/tab.enum.d.ts +2 -1
- package/lib/models/tab.enum.d.ts.map +1 -1
- package/lib/models/widget-content.model.d.ts +5 -0
- package/lib/models/widget-content.model.d.ts.map +1 -0
- package/lib/models/widget-editor.model.d.ts +10 -0
- package/lib/models/widget-editor.model.d.ts.map +1 -0
- package/lib/models/widget-wizard.model.d.ts +29 -0
- package/lib/models/widget-wizard.model.d.ts.map +1 -0
- package/lib/services/dossier-detail.service.d.ts +4 -1
- package/lib/services/dossier-detail.service.d.ts.map +1 -1
- package/lib/services/{dossier-import.service.d.ts → dossier-management.service.d.ts} +4 -4
- package/lib/services/dossier-management.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +7 -3
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/tab-management.service.d.ts +3 -1
- package/lib/services/tab-management.service.d.ts.map +1 -1
- package/lib/services/tab.service.d.ts +10 -4
- package/lib/services/tab.service.d.ts.map +1 -1
- package/lib/services/widget-fields.service.d.ts +17 -0
- package/lib/services/widget-fields.service.d.ts.map +1 -0
- package/lib/services/widget-json-editor.service.d.ts +7 -0
- package/lib/services/widget-json-editor.service.d.ts.map +1 -0
- package/lib/services/widget-tab-management.service.d.ts +16 -0
- package/lib/services/widget-tab-management.service.d.ts.map +1 -0
- package/lib/services/widget-wizard.service.d.ts +18 -0
- package/lib/services/widget-wizard.service.d.ts.map +1 -0
- package/package.json +3 -3
- package/esm2022/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.mjs +0 -152
- package/esm2022/lib/components/dossier-management-document-definition/dossier-management-document-definition.mjs +0 -48
- package/esm2022/lib/components/dossier-management-link-process/dossier-management-link-process.component.mjs +0 -84
- package/esm2022/lib/services/dossier-import.service.mjs +0 -38
- package/lib/components/dossier-management-detail-container-actions/dossier-management-detail-container-actions.d.ts.map +0 -1
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.d.ts +0 -15
- package/lib/components/dossier-management-document-definition/dossier-management-document-definition.d.ts.map +0 -1
- package/lib/components/dossier-management-link-process/dossier-management-link-process.component.d.ts +0 -27
- package/lib/components/dossier-management-link-process/dossier-management-link-process.component.d.ts.map +0 -1
- package/lib/services/dossier-import.service.d.ts.map +0 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, TemplateRef } from '@angular/core';
|
|
2
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
-
import { ActionItem, ColumnConfig
|
|
3
|
+
import { ActionItem, ColumnConfig } from '@valtimo/components';
|
|
4
4
|
import { ApiTabItem } from '@valtimo/dossier';
|
|
5
5
|
import { IconService } from 'carbon-components-angular';
|
|
6
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
7
|
import { TabManagementService, TabService } from '../../services';
|
|
8
|
+
import { Router } from '@angular/router';
|
|
9
|
+
import { ConfigService } from '@valtimo/config';
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
11
|
export declare class DossierManagementTabsComponent implements AfterViewInit {
|
|
10
12
|
private readonly cd;
|
|
@@ -12,6 +14,8 @@ export declare class DossierManagementTabsComponent implements AfterViewInit {
|
|
|
12
14
|
private readonly tabManagementService;
|
|
13
15
|
private readonly tabService;
|
|
14
16
|
private readonly translateService;
|
|
17
|
+
private readonly router;
|
|
18
|
+
private readonly configService;
|
|
15
19
|
tabContentColumnTemplate: TemplateRef<any>;
|
|
16
20
|
tabTypeColumnTemplate: TemplateRef<any>;
|
|
17
21
|
moveButtonsTemplate: TemplateRef<any>;
|
|
@@ -26,23 +30,24 @@ export declare class DossierManagementTabsComponent implements AfterViewInit {
|
|
|
26
30
|
readonly loading$: Observable<boolean>;
|
|
27
31
|
readonly openAddModal$: BehaviorSubject<boolean>;
|
|
28
32
|
readonly lastItemIndex$: BehaviorSubject<number>;
|
|
29
|
-
private _tabs;
|
|
30
33
|
readonly tabs$: Observable<ApiTabItem[]>;
|
|
31
34
|
readonly tab$: BehaviorSubject<ApiTabItem>;
|
|
32
|
-
|
|
35
|
+
readonly dragAndDropDisabled: import("@angular/core").WritableSignal<boolean>;
|
|
36
|
+
readonly enableCaseWidgets: boolean;
|
|
37
|
+
constructor(cd: ChangeDetectorRef, iconService: IconService, tabManagementService: TabManagementService, tabService: TabService, translateService: TranslateService, router: Router, configService: ConfigService);
|
|
33
38
|
ngAfterViewInit(): void;
|
|
34
39
|
isTranslated(key: string): boolean;
|
|
35
|
-
onMoveRowClick(event: MoveRowEvent): void;
|
|
36
40
|
openAddTabModal(): void;
|
|
41
|
+
openEditModal(tab: ApiTabItem): void;
|
|
37
42
|
onRowClicked(tab: ApiTabItem): void;
|
|
38
43
|
onCloseAddModalEvent(tab: ApiTabItem | null): void;
|
|
39
44
|
onCloseEditModalEvent(tab: ApiTabItem | null): void;
|
|
40
45
|
openDeleteConfirmationModal(tab: ApiTabItem): void;
|
|
41
46
|
onConfirmEvent(tabKey: string): void;
|
|
47
|
+
onItemsReorderedEvent(reorderedItems: ApiTabItem[]): void;
|
|
42
48
|
private addTab;
|
|
43
49
|
private deleteTab;
|
|
44
50
|
private editTab;
|
|
45
|
-
private swapTabs;
|
|
46
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementTabsComponent, never>;
|
|
47
52
|
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementTabsComponent, "valtimo-dossier-management-tabs", never, { "documentDefinitionName": { "alias": "documentDefinitionName"; "required": false; }; }, {}, never, never, false, never>;
|
|
48
53
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management-tabs.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-tabs/dossier-management-tabs.component.ts"],"names":[],"mappings":"AAeA,OAAO,EACL,aAAa,EAEb,iBAAiB,
|
|
1
|
+
{"version":3,"file":"dossier-management-tabs.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-tabs/dossier-management-tabs.component.ts"],"names":[],"mappings":"AAeA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAIjB,WAAW,EAGZ,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,UAAU,EAAE,YAAY,EAAW,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAC,UAAU,EAAa,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAC,WAAW,EAAC,MAAM,2BAA2B,CAAC;AACtD,OAAO,EAAC,eAAe,EAAO,UAAU,EAAM,MAAM,MAAM,CAAC;AAC3D,OAAO,EAAC,oBAAoB,EAAE,UAAU,EAAC,MAAM,gBAAgB,CAAC;AAChE,OAAO,EAAC,MAAM,EAAC,MAAM,iBAAiB,CAAC;AACvC,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;;AAE9C,qBAOa,8BAA+B,YAAW,aAAa;IAqDhE,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IACrC,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,aAAa;IA1DD,wBAAwB,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IAC9C,qBAAqB,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IAClC,mBAAmB,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IAExE,OAAO,CAAC,uBAAuB,CAAS;IACxC,IAAoB,sBAAsB,CAAC,KAAK,EAAE,MAAM,EAOvD;IACD,IAAW,sBAAsB,IAAI,MAAM,CAE1C;IAEM,WAAW,EAAE,UAAU,EAAE,CAW9B;IACF,SAAgB,aAAa,0BAA4C;IACzE,SAAgB,gBAAgB,EAAE,UAAU,CAAC,OAAO,CAAC,CAEnD;IACF,SAAgB,cAAc,2BAAuC;IACrE,SAAgB,OAAO,kCAA2C;IAClE,SAAgB,QAAQ,EAAE,UAAU,CAAC,OAAO,CAAC,CAAsC;IACnF,SAAgB,aAAa,2BAAuC;IACpE,SAAgB,cAAc,0BAAmC;IAEjE,SAAgB,KAAK,EAAE,UAAU,CAAC,UAAU,EAAE,CAAC,CAO7C;IACF,SAAgB,IAAI,8BAAgD;IACpE,SAAgB,mBAAmB,kDAAiB;IACpD,SAAgB,iBAAiB,UAA4D;gBAG1E,EAAE,EAAE,iBAAiB,EACrB,WAAW,EAAE,WAAW,EACxB,oBAAoB,EAAE,oBAAoB,EAC1C,UAAU,EAAE,UAAU,EACtB,gBAAgB,EAAE,gBAAgB,EAClC,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,aAAa;IAGxC,eAAe,IAAI,IAAI;IAwCvB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIlC,eAAe,IAAI,IAAI;IAIvB,aAAa,CAAC,GAAG,EAAE,UAAU,GAAG,IAAI;IAKpC,YAAY,CAAC,GAAG,EAAE,UAAU,GAAG,IAAI;IAWnC,oBAAoB,CAAC,GAAG,EAAE,UAAU,GAAG,IAAI,GAAG,IAAI;IAUlD,qBAAqB,CAAC,GAAG,EAAE,UAAU,GAAG,IAAI,GAAG,IAAI;IAWnD,2BAA2B,CAAC,GAAG,EAAE,UAAU,GAAG,IAAI;IAIlD,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAIpC,qBAAqB,CAAC,cAAc,EAAE,UAAU,EAAE,GAAG,IAAI;IAUhE,OAAO,CAAC,MAAM;IAMd,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,OAAO;yCA/KJ,8BAA8B;2CAA9B,8BAA8B;CAoL1C"}
|
|
@@ -1,20 +1,29 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup, FormGroupDirective } from '@angular/forms';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormGroup, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { ApiTabType } from '@valtimo/dossier';
|
|
4
4
|
import { ListItem } from 'carbon-components-angular';
|
|
5
5
|
import { TabService } from '../../../services';
|
|
6
|
+
import { ConfigService } from '@valtimo/config';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class TabFormComponent implements OnInit {
|
|
8
|
+
export declare class TabFormComponent implements OnInit, OnDestroy {
|
|
9
|
+
private readonly configService;
|
|
8
10
|
private readonly tabService;
|
|
9
11
|
private readonly formGroupDirective;
|
|
10
12
|
tabType: ApiTabType;
|
|
13
|
+
disableTaskListVisibleToggle: import("@angular/core").WritableSignal<boolean>;
|
|
11
14
|
readonly listItems$: import("rxjs").Observable<any[] | ListItem[]>;
|
|
12
15
|
form: FormGroup;
|
|
16
|
+
showTasks: AbstractControl<boolean>;
|
|
17
|
+
readonly enableCaseWidgets$: import("rxjs").Observable<boolean>;
|
|
13
18
|
private _searchActive;
|
|
14
|
-
|
|
19
|
+
private _subscriptions;
|
|
20
|
+
constructor(configService: ConfigService, tabService: TabService, formGroupDirective: FormGroupDirective);
|
|
15
21
|
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
16
23
|
onSearch(): void;
|
|
17
24
|
onSelected(): void;
|
|
25
|
+
toggleCheckedChange(event: boolean): void;
|
|
26
|
+
private openTaskListToggleSubscription;
|
|
18
27
|
private getListItems;
|
|
19
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabFormComponent, never>;
|
|
20
29
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabFormComponent, "valtimo-tab-form", never, { "tabType": { "alias": "tabType"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab-form.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-tabs/tab-form/tab-form.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAA4C,MAAM,
|
|
1
|
+
{"version":3,"file":"tab-form.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-tabs/tab-form/tab-form.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAA4C,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACnG,OAAO,EAAC,eAAe,EAAE,SAAS,EAAE,kBAAkB,EAAC,MAAM,gBAAgB,CAAC;AAC9E,OAAO,EAAC,UAAU,EAAc,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAEnD,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;;AAE9C,qBAMa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IAsCtD,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAvCrB,OAAO,EAAE,UAAU,CAAC;IAE7B,4BAA4B,kDAAiB;IAEpD,SAAgB,UAAU,gDAmBxB;IAEK,IAAI,EAAG,SAAS,CAAC;IAEjB,SAAS,EAAG,eAAe,CAAC,OAAO,CAAC,CAAC;IAE5C,SAAgB,kBAAkB,qCACmC;IAErE,OAAO,CAAC,aAAa,CAAU;IAE/B,OAAO,CAAC,cAAc,CAAsB;gBAGzB,aAAa,EAAE,aAAa,EAC5B,UAAU,EAAE,UAAU,EACtB,kBAAkB,EAAE,kBAAkB;IAGlD,QAAQ,IAAI,IAAI;IAYhB,WAAW,IAAI,IAAI;IAInB,QAAQ,IAAI,IAAI;IAShB,UAAU,IAAI,IAAI;IAIlB,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAIhD,OAAO,CAAC,8BAA8B;IAatC,OAAO,CAAC,YAAY;yCAzFT,gBAAgB;2CAAhB,gBAAgB;CAqG5B"}
|
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
-
import { ModalComponent } from '@valtimo/components';
|
|
5
4
|
import { DocumentService } from '@valtimo/document';
|
|
6
5
|
import { IconService, NotificationContent } from 'carbon-components-angular';
|
|
7
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
8
|
-
import {
|
|
7
|
+
import { DossierManagementService } from '../../services/dossier-management.service';
|
|
9
8
|
import { UPLOAD_STATUS, UPLOAD_STEP } from './dossier-management-upload.constants';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class DossierManagementUploadComponent implements OnInit, OnDestroy {
|
|
12
11
|
private readonly documentService;
|
|
13
|
-
private readonly
|
|
12
|
+
private readonly dossierManagementService;
|
|
14
13
|
private readonly fb;
|
|
15
14
|
private readonly iconService;
|
|
16
15
|
private readonly translateService;
|
|
17
|
-
modal: ModalComponent;
|
|
18
16
|
open: boolean;
|
|
19
17
|
closeModal: EventEmitter<boolean>;
|
|
20
18
|
acceptedFiles: string[];
|
|
@@ -34,7 +32,7 @@ export declare class DossierManagementUploadComponent implements OnInit, OnDestr
|
|
|
34
32
|
private _checked;
|
|
35
33
|
private readonly _importFile$;
|
|
36
34
|
private readonly _subscriptions;
|
|
37
|
-
constructor(documentService: DocumentService,
|
|
35
|
+
constructor(documentService: DocumentService, dossierManagementService: DossierManagementService, fb: FormBuilder, iconService: IconService, translateService: TranslateService);
|
|
38
36
|
ngOnInit(): void;
|
|
39
37
|
ngOnDestroy(): void;
|
|
40
38
|
onCloseModal(definitionUploaded?: boolean): void;
|
package/lib/components/dossier-management-upload/dossier-management-upload.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management-upload.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/dossier-management-upload.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,
|
|
1
|
+
{"version":3,"file":"dossier-management-upload.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/dossier-management-upload.component.ts"],"names":[],"mappings":"AAeA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAkB,WAAW,EAAE,SAAS,EAAa,MAAM,gBAAgB,CAAC;AAEnF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AAErD,OAAO,EAAkC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AACnF,OAAO,EAAW,WAAW,EAAE,mBAAmB,EAAC,MAAM,2BAA2B,CAAC;AACrF,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAgC,MAAM,MAAM,CAAC;AACpG,OAAO,EAAC,wBAAwB,EAAC,MAAM,2CAA2C,CAAC;AACnF,OAAO,EAAQ,aAAa,EAAE,WAAW,EAAC,MAAM,uCAAuC,CAAC;;AAExF,qBAMa,gCAAiC,YAAW,MAAM,EAAE,SAAS;IA2DtE,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,wBAAwB;IACzC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA9D1B,IAAI,UAAS;IACZ,UAAU,wBAA+B;IAE5C,aAAa,EAAE,MAAM,EAAE,CAAqB;IAC5C,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAEjC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAsC;IAEjE,SAAgB,WAAW,qBAAe;IAC1C,SAAgB,aAAa,uBAAiB;IAC9C,SAAgB,WAAW,+BAAyD;IACpF,SAAgB,kBAAkB,EAAE,UAAU,CAAC,OAAO,CAAC,CAMrD;IACF,SAAgB,kBAAkB,EAAE,UAAU,CAAC,OAAO,CAAC,CAKrD;IACF,SAAgB,gBAAgB,EAAE,UAAU,CAAC,OAAO,CAAC,CAInD;IACF,SAAgB,mBAAmB,EAAE,UAAU,CAAC,OAAO,CAAC,CAGiC;IACzF,SAAgB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,CAAC,CAW/D;IACF,SAAgB,kBAAkB,2BAAuC;IACzE,SAAgB,aAAa,iCAA4D;IAElF,IAAI,EAAE,SAAS,CAEnB;IAEH,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,QAAQ,CAAC,YAAY,CAA8C;IAC3E,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAGlC,eAAe,EAAE,eAAe,EAChC,wBAAwB,EAAE,wBAAwB,EAClD,EAAE,EAAE,WAAW,EACf,WAAW,EAAE,WAAW,EACxB,gBAAgB,EAAE,gBAAgB;IAK9C,QAAQ,IAAI,IAAI;IA0BhB,WAAW,IAAI,IAAI;IAKnB,YAAY,CAAC,kBAAkB,CAAC,EAAE,OAAO,GAAG,IAAI;IAKhD,WAAW,CAAC,UAAU,EAAE,WAAW,GAAG,IAAI;IAS1C,WAAW,CAAC,UAAU,EAAE,WAAW,GAAG,IAAI;IAmB1C,eAAe,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAU9C,OAAO,CAAC,WAAW;IAwBnB,OAAO,CAAC,UAAU;IAelB,OAAO,CAAC,gBAAgB;IAyBxB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,aAAa;IAWrB,OAAO,CAAC,UAAU;yCAtOP,gCAAgC;2CAAhC,gCAAgC;CA6O5C"}
|
package/lib/components/dossier-management-upload/dossier-management-upload.constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management-upload.constants.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/dossier-management-upload.constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dossier-management-upload.constants.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/dossier-management-upload.constants.ts"],"names":[],"mappings":"AAgBA,aAAK,aAAa;IAChB,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,QAAQ,aAAa;CACtB;AAED,aAAK,WAAW;IACd,cAAc,kBAAkB;IAChC,SAAS,cAAc;IACvB,WAAW,eAAe;IAC1B,WAAW,eAAe;IAC1B,OAAO,YAAY;CACpB;AAED,QAAA,MAAM,KAAK,eAMV,CAAC;AAEF,OAAO,EAAC,KAAK,EAAE,aAAa,EAAE,WAAW,EAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management-upload-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"dossier-management-upload-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-upload/step/dossier-management-upload-step.component.ts"],"names":[],"mappings":";AAkBA,qBAKa,oCAAoC;IACtC,YAAY,EAAG,MAAM,CAAC;IACtB,OAAO,EAAG,MAAM,CAAC;IACjB,KAAK,EAAG,MAAM,CAAC;yCAHb,oCAAoC;2CAApC,oCAAoC;CAIhD"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit, WritableSignal } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
5
|
+
import { CaseWidgetDisplayTypeKey, FieldsCaseWidgetValue, WidgetCollectionContent } from '@valtimo/dossier';
|
|
6
|
+
import { ListItem } from 'carbon-components-angular';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { WidgetContentComponent } from '../../../models';
|
|
9
|
+
import { WidgetFieldsService, WidgetWizardService } from '../../../services';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DossierManagementWidgetCollectionComponent implements WidgetContentComponent, OnInit, OnDestroy {
|
|
12
|
+
private readonly cdsThemeService;
|
|
13
|
+
private readonly fb;
|
|
14
|
+
private readonly translateService;
|
|
15
|
+
private readonly widgetWizardService;
|
|
16
|
+
private readonly widgetFieldsService;
|
|
17
|
+
readonly class = "valtimo-dossier-management-widget-collection";
|
|
18
|
+
readonly changeValidEvent: EventEmitter<boolean>;
|
|
19
|
+
readonly widgetForm: FormGroup<{
|
|
20
|
+
title: import("@angular/forms").FormControl<string>;
|
|
21
|
+
defaultPageSize: import("@angular/forms").FormControl<number>;
|
|
22
|
+
collection: import("@angular/forms").FormControl<string>;
|
|
23
|
+
}>;
|
|
24
|
+
readonly cardForm: FormGroup<{
|
|
25
|
+
[x: string]: import("@angular/forms").FormControl<unknown>;
|
|
26
|
+
}>;
|
|
27
|
+
readonly theme$: Observable<CARBON_THEME>;
|
|
28
|
+
readonly CaseWidgetDisplayTypeKey: typeof CaseWidgetDisplayTypeKey;
|
|
29
|
+
readonly content: WritableSignal<WidgetCollectionContent>;
|
|
30
|
+
readonly displayTypeItems: ListItem[];
|
|
31
|
+
WIDTH_ITEMS: ListItem[];
|
|
32
|
+
private readonly _subscriptions;
|
|
33
|
+
private readonly _contentValid;
|
|
34
|
+
constructor(cdsThemeService: CdsThemeService, fb: FormBuilder, translateService: TranslateService, widgetWizardService: WidgetWizardService, widgetFieldsService: WidgetFieldsService);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
onAddEnumValueClick(valuesFormArray: FormArray): void;
|
|
38
|
+
getDisplayItemsSelected(control: AbstractControl): ListItem[];
|
|
39
|
+
getSelectedWidthItem(fieldIndex: number): ListItem[];
|
|
40
|
+
onColumnUpdateEvent(event: {
|
|
41
|
+
data: FieldsCaseWidgetValue[];
|
|
42
|
+
valid: boolean;
|
|
43
|
+
}): void;
|
|
44
|
+
onDeleteRowClick(formArray: FormArray, index: number): void;
|
|
45
|
+
onTypeSelected(formGroup: FormGroup, event: {
|
|
46
|
+
item: ListItem;
|
|
47
|
+
}): void;
|
|
48
|
+
onWidthSelected(event: {
|
|
49
|
+
item: ListItem;
|
|
50
|
+
}, fieldIndex: number): void;
|
|
51
|
+
private initForm;
|
|
52
|
+
private openWidgetFormSubscription;
|
|
53
|
+
private openCardFormSubscription;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetCollectionComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetCollectionComponent, "ng-component", never, {}, { "changeValidEvent": "changeValidEvent"; }, never, never, true, never>;
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=dossier-management-widget-collection.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-collection.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/collection/dossier-management-widget-collection.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAIN,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,eAAe,EACf,SAAS,EACT,WAAW,EACX,SAAS,EAGV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACtE,OAAO,EAAC,YAAY,EAAE,eAAe,EAAqB,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAIL,wBAAwB,EAGxB,qBAAqB,EACrB,uBAAuB,EAExB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAKL,QAAQ,EACT,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAoB,UAAU,EAAe,MAAM,MAAM,CAAC;AAEjE,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,mBAAmB,EAAE,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAG3E,qBAiBa,0CACX,YAAW,sBAAsB,EAAE,MAAM,EAAE,SAAS;IAkElD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IApEtC,SAAsC,KAAK,kDAAkD;IAC7F,SAA0B,gBAAgB,wBAA+B;IAEzE,SAAgB,UAAU;;;;OAUvB;IAEH,SAAgB,QAAQ;;OAmBrB;IAEH,SAAgB,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,CAI9C;IAEF,SAAgB,wBAAwB,kCAA4B;IACpE,SAAgB,OAAO,0CACqC;IAC5D,SAAgB,gBAAgB,EAAE,QAAQ,EAAE,CAA6C;IAElF,WAAW,EAAE,QAAQ,EAAE,CAW5B;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IACrD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA0B;gBAGrC,eAAe,EAAE,eAAe,EAChC,EAAE,EAAE,WAAW,EACf,gBAAgB,EAAE,gBAAgB,EAClC,mBAAmB,EAAE,mBAAmB,EACxC,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ,IAAI,IAAI;IAMhB,WAAW,IAAI,IAAI;IAInB,mBAAmB,CAAC,eAAe,EAAE,SAAS,GAAG,IAAI;IASrD,uBAAuB,CAAC,OAAO,EAAE,eAAe,GAAG,QAAQ,EAAE;IAI7D,oBAAoB,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ,EAAE;IAYpD,mBAAmB,CAAC,KAAK,EAAE;QAAC,IAAI,EAAE,qBAAqB,EAAE,CAAC;QAAC,KAAK,EAAE,OAAO,CAAA;KAAC,GAAG,IAAI;IAiBjF,gBAAgB,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAM3D,cAAc,CAAC,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE;QAAC,IAAI,EAAE,QAAQ,CAAA;KAAC,GAAG,IAAI;IAInE,eAAe,CAAC,KAAK,EAAE;QAAC,IAAI,EAAE,QAAQ,CAAA;KAAC,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI;IAazE,OAAO,CAAC,QAAQ;IAsChB,OAAO,CAAC,0BAA0B;IAqBlC,OAAO,CAAC,wBAAwB;yCAhNrB,0CAA0C;2CAA1C,0CAA0C;CAoPtD"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
3
|
+
import { WidgetContentComponent } from '../../../models';
|
|
4
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
5
|
+
import { WidgetWizardService } from '../../../services';
|
|
6
|
+
import { CustomCaseWidgetConfig } from '@valtimo/dossier';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { ListItem } from 'carbon-components-angular/dropdown/list-item.interface';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class DossierManagementWidgetCustomComponent implements WidgetContentComponent, OnDestroy, OnInit {
|
|
11
|
+
private readonly customCaseWidgetConfig;
|
|
12
|
+
private readonly cdsThemeService;
|
|
13
|
+
private readonly fb;
|
|
14
|
+
private readonly widgetWizardService;
|
|
15
|
+
readonly changeValidEvent: EventEmitter<boolean>;
|
|
16
|
+
readonly form: import("@angular/forms").FormGroup<{
|
|
17
|
+
widgetTitle: import("@angular/forms").FormControl<string>;
|
|
18
|
+
}>;
|
|
19
|
+
get widgetTitle(): AbstractControl<string>;
|
|
20
|
+
readonly theme$: Observable<CARBON_THEME.WHITE | CARBON_THEME.G90>;
|
|
21
|
+
private readonly _selectedCustomComponentKey$;
|
|
22
|
+
private readonly _customCaseWidgetConfig$;
|
|
23
|
+
readonly componentListItems$: Observable<ListItem[]>;
|
|
24
|
+
private readonly _subscriptions;
|
|
25
|
+
constructor(customCaseWidgetConfig: CustomCaseWidgetConfig, cdsThemeService: CdsThemeService, fb: FormBuilder, widgetWizardService: WidgetWizardService);
|
|
26
|
+
componentDropDownChange(event: {
|
|
27
|
+
item: {
|
|
28
|
+
content: string;
|
|
29
|
+
selected: boolean;
|
|
30
|
+
};
|
|
31
|
+
isUpdate: boolean;
|
|
32
|
+
}): void;
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
private openTitleSubscription;
|
|
36
|
+
private prefill;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetCustomComponent, [{ optional: true; }, null, null, null]>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetCustomComponent, "ng-component", never, {}, { "changeValidEvent": "changeValidEvent"; }, never, never, true, never>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=dossier-management-widget-custom.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-custom.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/custom/dossier-management-widget-custom.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AAIvB,OAAO,EAAC,eAAe,EAAE,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAC7F,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,YAAY,EAAE,eAAe,EAAqB,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;AACtD,OAAO,EAEL,sBAAsB,EAEvB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAA8C,UAAU,EAAe,MAAM,MAAM,CAAC;AAC3F,OAAO,EAAC,QAAQ,EAAC,MAAM,wDAAwD,CAAC;;AAEhF,qBAca,sCACX,YAAW,sBAAsB,EAAE,SAAS,EAAE,MAAM;IAuClD,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAxCtC,SAA0B,gBAAgB,wBAA+B;IAEzE,SAAgB,IAAI;;OAEjB;IAEH,IAAW,WAAW,IAAI,eAAe,CAAC,MAAM,CAAC,CAEhD;IAED,SAAgB,MAAM,oDAIpB;IAEF,OAAO,CAAC,QAAQ,CAAC,4BAA4B,CAA4C;IACzF,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAmD;IAE5F,SAAgB,mBAAmB,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAWzD;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAKlC,sBAAsB,EAAE,sBAAsB,EAC9C,eAAe,EAAE,eAAe,EAChC,EAAE,EAAE,WAAW,EACf,mBAAmB,EAAE,mBAAmB;IAKpD,uBAAuB,CAAC,KAAK,EAAE;QACpC,IAAI,EAAE;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,OAAO,CAAA;SAAC,CAAC;QAC3C,QAAQ,EAAE,OAAO,CAAC;KACnB,GAAG,IAAI;IAUD,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,OAAO;yCA9EJ,sCAAsC;2CAAtC,sCAAsC;CAuFlD"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormArray, FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { CdsThemeService, CurrentCarbonTheme } from '@valtimo/components';
|
|
5
|
+
import { CaseWidgetDisplayTypeKey, FieldsCaseWidgetValue } from '@valtimo/dossier';
|
|
6
|
+
import { Dropdown, IconService, ListItem } from 'carbon-components-angular';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { WidgetFieldsService } from '../../../../services';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class DossierManagementWidgetFieldsColumnComponent implements OnInit, OnDestroy {
|
|
11
|
+
private readonly cdsThemeService;
|
|
12
|
+
private readonly cdr;
|
|
13
|
+
private readonly fb;
|
|
14
|
+
private readonly iconService;
|
|
15
|
+
private readonly translateService;
|
|
16
|
+
private readonly widgetFieldsService;
|
|
17
|
+
readonly class = "valtimo-dossier-management-widget-field-column";
|
|
18
|
+
columnData: FieldsCaseWidgetValue[];
|
|
19
|
+
addTranslateKey: string;
|
|
20
|
+
fieldWidthDropdown?: TemplateRef<Dropdown>;
|
|
21
|
+
columnUpdateEvent: EventEmitter<{
|
|
22
|
+
data: FieldsCaseWidgetValue[];
|
|
23
|
+
valid: boolean;
|
|
24
|
+
}>;
|
|
25
|
+
formGroup: FormGroup<{
|
|
26
|
+
rows: FormArray<import("@angular/forms").FormControl<unknown>>;
|
|
27
|
+
}>;
|
|
28
|
+
get formRows(): FormArray | undefined;
|
|
29
|
+
displayTypeItems: ListItem[];
|
|
30
|
+
getDisplayItemsSelected(row: AbstractControl): ListItem[];
|
|
31
|
+
readonly CaseWidgetDisplayTypeKey: typeof CaseWidgetDisplayTypeKey;
|
|
32
|
+
readonly inputTheme$: Observable<CurrentCarbonTheme>;
|
|
33
|
+
private _subscriptions;
|
|
34
|
+
constructor(cdsThemeService: CdsThemeService, cdr: ChangeDetectorRef, fb: FormBuilder, iconService: IconService, translateService: TranslateService, widgetFieldsService: WidgetFieldsService);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
onAddFieldClick(): void;
|
|
38
|
+
onDeleteRowClick(event: Event, formArray: FormArray, index: number): void;
|
|
39
|
+
onTypeSelected(formRow: FormGroup, event: {
|
|
40
|
+
item: ListItem;
|
|
41
|
+
}): void;
|
|
42
|
+
onAddEnumValueClick(valuesFormArray: FormArray): void;
|
|
43
|
+
private typeSelectValidator;
|
|
44
|
+
private getRowForm;
|
|
45
|
+
private initForm;
|
|
46
|
+
private openFormSubscription;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetFieldsColumnComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetFieldsColumnComponent, "valtimo-dossier-management-widget-fields-column", never, { "columnData": { "alias": "columnData"; "required": true; }; "addTranslateKey": { "alias": "addTranslateKey"; "required": false; }; "fieldWidthDropdown": { "alias": "fieldWidthDropdown"; "required": false; }; }, { "columnUpdateEvent": "columnUpdateEvent"; }, never, never, true, never>;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=dossier-management-widget-fields-column.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-fields-column.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/fields/column/dossier-management-widget-fields-column.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,SAAS,EACT,MAAM,EAEN,WAAW,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,eAAe,EACf,SAAS,EACT,WAAW,EACX,SAAS,EAGV,MAAM,gBAAgB,CAAC;AAExB,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACtE,OAAO,EAAC,eAAe,EAAE,kBAAkB,EAAC,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAIL,wBAAwB,EAGxB,qBAAqB,EACtB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAGL,QAAQ,EAGR,WAAW,EAEX,QAAQ,EACT,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAe,UAAU,EAAe,MAAM,MAAM,CAAC;AAC5D,OAAO,EAAC,mBAAmB,EAAC,MAAM,sBAAsB,CAAC;;AAEzD,qBAkBa,4CAA6C,YAAW,MAAM,EAAE,SAAS;IAkClF,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAtCtC,SAAsC,KAAK,oDAAoD;IAC/D,UAAU,EAAE,qBAAqB,EAAE,CAAC;IACpD,eAAe,SAA4C;IAC3D,kBAAkB,CAAC,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC;IAE1C,iBAAiB;cAC1B,qBAAqB,EAAE;eACtB,OAAO;OACX;IAEE,SAAS;;OAEb;IAEH,IAAW,QAAQ,IAAI,SAAS,GAAG,SAAS,CAI3C;IAEM,gBAAgB,EAAE,QAAQ,EAAE,CAA6C;IAEzE,uBAAuB,CAAC,GAAG,EAAE,eAAe,GAAG,QAAQ,EAAE;IAIhE,SAAgB,wBAAwB,kCAA4B;IAEpE,SAAgB,WAAW,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAsC;IAEjG,OAAO,CAAC,cAAc,CAAsB;gBAGzB,eAAe,EAAE,eAAe,EAChC,GAAG,EAAE,iBAAiB,EACtB,EAAE,EAAE,WAAW,EACf,WAAW,EAAE,WAAW,EACxB,gBAAgB,EAAE,gBAAgB,EAClC,mBAAmB,EAAE,mBAAmB;IAKpD,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAKnB,eAAe,IAAI,IAAI;IAevB,gBAAgB,CAAC,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;IAOzE,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE;QAAC,IAAI,EAAE,QAAQ,CAAA;KAAC,GAAG,IAAI;IAIjE,mBAAmB,CAAC,eAAe,EAAE,SAAS,GAAG,IAAI;IAS5D,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,UAAU;IA0DlB,OAAO,CAAC,QAAQ;IAchB,OAAO,CAAC,oBAAoB;yCAxKjB,4CAA4C;2CAA5C,4CAA4C;CAiMxD"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder } from '@angular/forms';
|
|
3
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
4
|
+
import { FieldsCaseWidgetValue } from '@valtimo/dossier';
|
|
5
|
+
import { WidgetContentComponent } from '../../../models';
|
|
6
|
+
import { WidgetWizardService } from '../../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DossierManagementWidgetFieldsComponent implements WidgetContentComponent, OnDestroy, OnInit {
|
|
9
|
+
private readonly cdsThemeService;
|
|
10
|
+
private readonly fb;
|
|
11
|
+
private readonly widgetWizardService;
|
|
12
|
+
readonly class = "valtimo-dossier-management-widget-field";
|
|
13
|
+
readonly changeValidEvent: EventEmitter<boolean>;
|
|
14
|
+
form: import("@angular/forms").FormGroup<{
|
|
15
|
+
widgetTitle: import("@angular/forms").FormControl<string>;
|
|
16
|
+
}>;
|
|
17
|
+
readonly columns: import("@angular/core").WritableSignal<null[]>;
|
|
18
|
+
readonly widgetWidth: import("@valtimo/dossier/lib/models/case-widget.model").CaseWidgetWidth;
|
|
19
|
+
readonly selectedTabIndex = -1;
|
|
20
|
+
readonly theme$: import("rxjs").Observable<CARBON_THEME.WHITE | CARBON_THEME.G90>;
|
|
21
|
+
readonly selectedWidgetContent: import("@angular/core").Signal<{}>;
|
|
22
|
+
readonly activeTab: import("@angular/core").WritableSignal<number>;
|
|
23
|
+
private readonly _subscriptions;
|
|
24
|
+
private readonly _contentValid;
|
|
25
|
+
constructor(cdsThemeService: CdsThemeService, fb: FormBuilder, widgetWizardService: WidgetWizardService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
ngOnDestroy(): void;
|
|
28
|
+
onAddColumnClick(): void;
|
|
29
|
+
onTabSelected(index: number): void;
|
|
30
|
+
onDeleteColumnClick(index: number): void;
|
|
31
|
+
onColumnUpdateEvent(event: {
|
|
32
|
+
data: FieldsCaseWidgetValue[];
|
|
33
|
+
valid: boolean;
|
|
34
|
+
}, columnIndex: number): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetFieldsComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetFieldsComponent, "ng-component", never, {}, { "changeValidEvent": "changeValidEvent"; }, never, never, true, never>;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=dossier-management-widget-fields.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-fields.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/fields/dossier-management-widget-fields.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAIL,YAAY,EAEZ,SAAS,EACT,MAAM,EAIP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAE5E,OAAO,EAAC,YAAY,EAAE,eAAe,EAAqB,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAAC,qBAAqB,EAAsB,MAAM,kBAAkB,CAAC;AAG5E,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAGtD,qBAiBa,sCACX,YAAW,sBAAsB,EAAE,SAAS,EAAE,MAAM;IAgClD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAhCtC,SAAsC,KAAK,6CAA6C;IACxF,SAA0B,gBAAgB,wBAA+B;IAElE,IAAI;;OAER;IAEH,SAAgB,OAAO,iDAA0B;IACjD,SAAgB,WAAW,0EAA0C;IACrE,SAAgB,gBAAgB,MAAM;IACtC,SAAgB,MAAM,mEAIpB;IACF,SAAgB,qBAAqB,qCAQnC;IACF,SAAgB,SAAS,iDAAqB;IAE9C,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IACrD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAA0B;gBAGrC,eAAe,EAAE,eAAe,EAChC,EAAE,EAAE,WAAW,EACf,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ,IAAI,IAAI;IAchB,WAAW,IAAI,IAAI;IAOnB,gBAAgB,IAAI,IAAI;IAKxB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAIlC,mBAAmB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IA6BxC,mBAAmB,CACxB,KAAK,EAAE;QACL,IAAI,EAAE,qBAAqB,EAAE,CAAC;QAC9B,KAAK,EAAE,OAAO,CAAC;KAChB,EACD,WAAW,EAAE,MAAM,GAClB,IAAI;yCAvGI,sCAAsC;2CAAtC,sCAAsC;CAqHlD"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
3
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
4
|
+
import { FormService } from '@valtimo/form';
|
|
5
|
+
import { ListItem } from 'carbon-components-angular/dropdown/list-item.interface';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { WidgetContentComponent } from '../../../models';
|
|
8
|
+
import { WidgetWizardService } from '../../../services';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class DossierManagementWidgetFormioComponent implements WidgetContentComponent, OnDestroy, OnInit {
|
|
11
|
+
private readonly cdsThemeService;
|
|
12
|
+
private readonly fb;
|
|
13
|
+
private readonly widgetWizardService;
|
|
14
|
+
private readonly formService;
|
|
15
|
+
readonly changeValidEvent: EventEmitter<boolean>;
|
|
16
|
+
readonly form: import("@angular/forms").FormGroup<{
|
|
17
|
+
widgetTitle: import("@angular/forms").FormControl<string>;
|
|
18
|
+
}>;
|
|
19
|
+
get widgetTitle(): AbstractControl<string | null> | null;
|
|
20
|
+
readonly theme$: Observable<CARBON_THEME.WHITE | CARBON_THEME.G90>;
|
|
21
|
+
private readonly _selectedFormDefinitionId$;
|
|
22
|
+
private readonly _formDefinitionOptions$;
|
|
23
|
+
readonly formListItems$: Observable<ListItem[]>;
|
|
24
|
+
private readonly _subscriptions;
|
|
25
|
+
constructor(cdsThemeService: CdsThemeService, fb: FormBuilder, widgetWizardService: WidgetWizardService, formService: FormService);
|
|
26
|
+
componentDropDownChange(event: {
|
|
27
|
+
item: {
|
|
28
|
+
id: string;
|
|
29
|
+
selected: boolean;
|
|
30
|
+
};
|
|
31
|
+
isUpdate: boolean;
|
|
32
|
+
}): void;
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
ngOnDestroy(): void;
|
|
35
|
+
private openTitleSubscription;
|
|
36
|
+
private fetchFormDefinition;
|
|
37
|
+
private prefill;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetFormioComponent, never>;
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetFormioComponent, "ng-component", never, {}, { "changeValidEvent": "changeValidEvent"; }, never, never, true, never>;
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=dossier-management-widget-formio.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-formio.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/formio/dossier-management-widget-formio.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAGL,YAAY,EACZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,eAAe,EAAE,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAE7F,OAAO,EAAC,YAAY,EAAE,eAAe,EAAqB,MAAM,qBAAqB,CAAC;AAEtF,OAAO,EAAuB,WAAW,EAAC,MAAM,eAAe,CAAC;AAEhE,OAAO,EAAC,QAAQ,EAAC,MAAM,wDAAwD,CAAC;AAChF,OAAO,EAA8C,UAAU,EAAe,MAAM,MAAM,CAAC;AAC3F,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAEtD,qBAca,sCACX,YAAW,sBAAsB,EAAE,SAAS,EAAE,MAAM;IAuClD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,WAAW;IAxC9B,SAA0B,gBAAgB,wBAA+B;IAEzE,SAAgB,IAAI;;OAEjB;IAEH,IAAW,WAAW,IAAI,eAAe,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,IAAI,CAE9D;IAED,SAAgB,MAAM,oDAIpB;IAEF,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAA4C;IAEvF,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAmD;IAE3F,SAAgB,cAAc,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAYpD;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAGlC,eAAe,EAAE,eAAe,EAChC,EAAE,EAAE,WAAW,EACf,mBAAmB,EAAE,mBAAmB,EACxC,WAAW,EAAE,WAAW;IAGpC,uBAAuB,CAAC,KAAK,EAAE;QACpC,IAAI,EAAE;YAAC,EAAE,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,OAAO,CAAA;SAAC,CAAC;QACtC,QAAQ,EAAE,OAAO,CAAC;KACnB,GAAG,IAAI;IAUD,QAAQ,IAAI,IAAI;IAMhB,WAAW,IAAI,IAAI;IAI1B,OAAO,CAAC,qBAAqB;IAQ7B,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,OAAO;yCAnFJ,sCAAsC;2CAAtC,sCAAsC;CA4FlD"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './fields/dossier-management-widget-fields.component';
|
|
2
|
+
export * from './custom/dossier-management-widget-custom.component';
|
|
3
|
+
export * from './formio/dossier-management-widget-formio.component';
|
|
4
|
+
export * from './table/dossier-management-widget-table.component';
|
|
5
|
+
export * from './collection/dossier-management-widget-collection.component';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,qDAAqD,CAAC;AACpE,cAAc,mDAAmD,CAAC;AAClE,cAAc,6DAA6D,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit, WritableSignal } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { CARBON_THEME, CdsThemeService } from '@valtimo/components';
|
|
4
|
+
import { FieldsCaseWidgetValue, WidgetTableContent } from '@valtimo/dossier';
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
6
|
+
import { WidgetContentComponent } from '../../../models';
|
|
7
|
+
import { WidgetWizardService } from '../../../services';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DossierManagementWidgetTableComponent implements WidgetContentComponent, OnInit, OnDestroy {
|
|
10
|
+
private readonly cdsThemeService;
|
|
11
|
+
private readonly fb;
|
|
12
|
+
private readonly widgetWizardService;
|
|
13
|
+
readonly class = "valtimo-dossier-management-widget-table";
|
|
14
|
+
readonly changeValidEvent: EventEmitter<boolean>;
|
|
15
|
+
readonly form: FormGroup;
|
|
16
|
+
readonly theme$: Observable<CARBON_THEME>;
|
|
17
|
+
readonly content: WritableSignal<WidgetTableContent>;
|
|
18
|
+
readonly checked: import("@angular/core").Signal<boolean>;
|
|
19
|
+
private readonly _contentValid;
|
|
20
|
+
private readonly _subscriptions;
|
|
21
|
+
constructor(cdsThemeService: CdsThemeService, fb: FormBuilder, widgetWizardService: WidgetWizardService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngOnDestroy(): void;
|
|
24
|
+
onColumnUpdateEvent(event: {
|
|
25
|
+
data: FieldsCaseWidgetValue[];
|
|
26
|
+
valid: boolean;
|
|
27
|
+
}): void;
|
|
28
|
+
onCheckedChange(firstColumnAsTitle: boolean): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetTableComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetTableComponent, "ng-component", never, {}, { "changeValidEvent": "changeValidEvent"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=dossier-management-widget-table.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-table.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-configurators/table/dossier-management-widget-table.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAIL,YAAY,EAEZ,SAAS,EACT,MAAM,EAIN,cAAc,EACf,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,WAAW,EAAE,SAAS,EAAkC,MAAM,gBAAgB,CAAC;AAEvF,OAAO,EAAC,YAAY,EAAE,eAAe,EAAqB,MAAM,qBAAqB,CAAC;AACtF,OAAO,EAAC,qBAAqB,EAA2B,kBAAkB,EAAC,MAAM,kBAAkB,CAAC;AAEpG,OAAO,EAAoB,UAAU,EAAe,MAAM,MAAM,CAAC;AACjE,OAAO,EAAC,sBAAsB,EAAC,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAC,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAGtD,qBAgBa,qCACX,YAAW,sBAAsB,EAAE,MAAM,EAAE,SAAS;IAoClD,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IApCtC,SAAsC,KAAK,6CAA6C;IACxF,SAA0B,gBAAgB,wBAA+B;IAEzE,SAAgB,IAAI,EAAE,SAAS,CAa5B;IAEH,SAAgB,MAAM,EAAE,UAAU,CAAC,YAAY,CAAC,CAI9C;IAEF,SAAgB,OAAO,qCACgC;IACvD,SAAgB,OAAO,0CAGrB;IACF,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAwD;IACtF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;gBAGlC,eAAe,EAAE,eAAe,EAChC,EAAE,EAAE,WAAW,EACf,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ,IAAI,IAAI;IAmBhB,WAAW,IAAI,IAAI;IAOnB,mBAAmB,CAAC,KAAK,EAAE;QAAC,IAAI,EAAE,qBAAqB,EAAE,CAAC;QAAC,KAAK,EAAE,OAAO,CAAA;KAAC,GAAG,IAAI;IAUjF,eAAe,CAAC,kBAAkB,EAAE,OAAO,GAAG,IAAI;yCA9E9C,qCAAqC;2CAArC,qCAAqC;CAoFjD"}
|
package/lib/components/dossier-management-widget-tab/dossier-management-widget-tab.component.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
4
|
+
import { BreadcrumbService, ConfirmationModalComponent, PageHeaderService, PageTitleService, PendingChangesComponent } from '@valtimo/components';
|
|
5
|
+
import { ApiTabItem } from '@valtimo/dossier';
|
|
6
|
+
import { IconService } from 'carbon-components-angular';
|
|
7
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
8
|
+
import { WidgetEditorTab } from '../../models';
|
|
9
|
+
import { TabManagementService, WidgetJsonEditorService, WidgetTabManagementService } from '../../services';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class DossierManagementWidgetTabComponent extends PendingChangesComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
12
|
+
private readonly breadcrumbService;
|
|
13
|
+
private readonly iconService;
|
|
14
|
+
private readonly pageTitleService;
|
|
15
|
+
private readonly route;
|
|
16
|
+
private readonly tabManagementService;
|
|
17
|
+
private readonly widgetTabManagementService;
|
|
18
|
+
private readonly translateService;
|
|
19
|
+
private readonly pageHeaderService;
|
|
20
|
+
private readonly widgetJsonEditorService;
|
|
21
|
+
readonly documentDefinitionName$: Observable<string>;
|
|
22
|
+
readonly tabWidgetKey$: Observable<string>;
|
|
23
|
+
private readonly _refreshWidgetTabSubject$;
|
|
24
|
+
readonly showEditWidgetTabModal$: BehaviorSubject<boolean>;
|
|
25
|
+
readonly currentWidgetTabItem$: Observable<ApiTabItem>;
|
|
26
|
+
readonly currentWidgetTab$: Observable<import("@valtimo/dossier/lib/models/case-widget.model").CaseWidgetsRes>;
|
|
27
|
+
readonly WidgetEditorTab: typeof WidgetEditorTab;
|
|
28
|
+
readonly activeTab: import("@angular/core").WritableSignal<WidgetEditorTab>;
|
|
29
|
+
readonly activeContent: import("@angular/core").WritableSignal<WidgetEditorTab>;
|
|
30
|
+
readonly compactMode$: Observable<boolean>;
|
|
31
|
+
private _pendingTab;
|
|
32
|
+
constructor(breadcrumbService: BreadcrumbService, iconService: IconService, pageTitleService: PageTitleService, route: ActivatedRoute, tabManagementService: TabManagementService, widgetTabManagementService: WidgetTabManagementService, translateService: TranslateService, pageHeaderService: PageHeaderService, widgetJsonEditorService: WidgetJsonEditorService);
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
ngAfterViewInit(): void;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
displayBodyComponent(tab: WidgetEditorTab): void;
|
|
37
|
+
editWidgetTab(): void;
|
|
38
|
+
onPendingChangesUpdate(changeActive: boolean): void;
|
|
39
|
+
private showEditWidgetTabModal;
|
|
40
|
+
refreshWidgetTab(): void;
|
|
41
|
+
onCustomModalLoaded(modal: ConfirmationModalComponent): void;
|
|
42
|
+
onJsonCanDeactivate(canDeactivate: boolean): void;
|
|
43
|
+
protected onCancelRedirect(): void;
|
|
44
|
+
protected onConfirmRedirect(): void;
|
|
45
|
+
protected onCanDeactivate(): void;
|
|
46
|
+
private initBreadcrumb;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetTabComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetTabComponent, "valtimo-dossier-management-case-widgets", never, {}, {}, never, never, true, never>;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=dossier-management-widget-tab.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-tab.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-tab/dossier-management-widget-tab.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAGb,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAE/C,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACtE,OAAO,EACL,iBAAiB,EACjB,0BAA0B,EAC1B,iBAAiB,EACjB,gBAAgB,EAChB,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAA2B,WAAW,EAAa,MAAM,2BAA2B,CAAC;AAE5F,OAAO,EAAC,eAAe,EAA8B,UAAU,EAAiB,MAAM,MAAM,CAAC;AAC7F,OAAO,EAAC,eAAe,EAAC,MAAM,cAAc,CAAC;AAC7C,OAAO,EACL,oBAAoB,EACpB,uBAAuB,EACvB,0BAA0B,EAC3B,MAAM,gBAAgB,CAAC;;AAKxB,qBAkBa,mCACX,SAAQ,uBACR,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IAyDzC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IACrC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IA/D1C,SAAgB,uBAAuB,EAAE,UAAU,CAAC,MAAM,CAAC,CAMzD;IAEF,SAAgB,aAAa,EAAE,UAAU,CAAC,MAAM,CAAC,CAG/C;IAEF,OAAO,CAAC,QAAQ,CAAC,yBAAyB,CAAmC;IAC7E,SAAgB,uBAAuB,2BAAuC;IAC9E,SAAgB,qBAAqB,EAAE,UAAU,CAAC,UAAU,CAAC,CAqB3D;IACF,SAAgB,iBAAiB,qFAQ/B;IAEF,SAAgB,eAAe,yBAAmB;IAClD,SAAgB,SAAS,0DAA0D;IACnF,SAAgB,aAAa,0DAA0D;IACvF,SAAgB,YAAY,sBAAuC;IAEnE,OAAO,CAAC,WAAW,CAAgC;gBAGhC,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW,EACxB,gBAAgB,EAAE,gBAAgB,EAClC,KAAK,EAAE,cAAc,EACrB,oBAAoB,EAAE,oBAAoB,EAC1C,0BAA0B,EAAE,0BAA0B,EACtD,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAAE,iBAAiB,EACpC,uBAAuB,EAAE,uBAAuB;IAK5D,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAKvB,WAAW,IAAI,IAAI;IAKnB,oBAAoB,CAAC,GAAG,EAAE,eAAe,GAAG,IAAI;IAWhD,aAAa,IAAI,IAAI;IAIrB,sBAAsB,CAAC,YAAY,EAAE,OAAO,GAAG,IAAI;IAI1D,OAAO,CAAC,sBAAsB;IAIvB,gBAAgB,IAAI,IAAI;IAKxB,mBAAmB,CAAC,KAAK,EAAE,0BAA0B,GAAG,IAAI;IAM5D,mBAAmB,CAAC,aAAa,EAAE,OAAO,GAAG,IAAI;IASxD,SAAS,CAAC,gBAAgB,IAAI,IAAI;IAIlC,SAAS,CAAC,iBAAiB,IAAI,IAAI;IAInC,SAAS,CAAC,eAAe,IAAI,IAAI;IAIjC,OAAO,CAAC,cAAc;yCA7IX,mCAAmC;2CAAnC,mCAAmC;CAsJ/C"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { ActionItem, CarbonListItem, ColumnConfig, KeyGeneratorService } from '@valtimo/components';
|
|
4
|
+
import { BasicCaseWidget, CaseWidget, CaseWidgetsRes } from '@valtimo/dossier';
|
|
5
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
6
|
+
import { WidgetTabManagementService, WidgetWizardService } from '../../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DossierManagementWidgetsEditorComponent {
|
|
9
|
+
private readonly keyGeneratorService;
|
|
10
|
+
private readonly translateService;
|
|
11
|
+
private readonly widgetTabManagementService;
|
|
12
|
+
private readonly widgetWizardService;
|
|
13
|
+
documentDefinitionName: string;
|
|
14
|
+
tabWidgetKey: string;
|
|
15
|
+
private _currentWidgetTab;
|
|
16
|
+
set currentWidgetTab(value: CaseWidgetsRes);
|
|
17
|
+
get currentWidgetTab(): CaseWidgetsRes;
|
|
18
|
+
readonly changeSaved: EventEmitter<any>;
|
|
19
|
+
readonly FIELDS: ColumnConfig[];
|
|
20
|
+
readonly ACTION_ITEMS: ActionItem[];
|
|
21
|
+
private readonly _items$;
|
|
22
|
+
readonly items$: Observable<CarbonListItem[]>;
|
|
23
|
+
readonly isWizardOpen$: BehaviorSubject<boolean>;
|
|
24
|
+
readonly isEditMode: import("@angular/core").WritableSignal<boolean>;
|
|
25
|
+
readonly deleteModalOpen$: BehaviorSubject<boolean>;
|
|
26
|
+
readonly deleteRowKey$: Subject<number>;
|
|
27
|
+
readonly dragAndDropDisabled: import("@angular/core").WritableSignal<boolean>;
|
|
28
|
+
private _usedKeys;
|
|
29
|
+
constructor(keyGeneratorService: KeyGeneratorService, translateService: TranslateService, widgetTabManagementService: WidgetTabManagementService, widgetWizardService: WidgetWizardService);
|
|
30
|
+
editWidget(tabWidget: CaseWidget): void;
|
|
31
|
+
openAddModal(): void;
|
|
32
|
+
onDeleteConfirm(widgetKey: string): void;
|
|
33
|
+
onCloseEvent(widgetResult: BasicCaseWidget, existingWidgets: CaseWidget[]): void;
|
|
34
|
+
onItemsReordered(widgets: CaseWidget[]): void;
|
|
35
|
+
private deleteWidget;
|
|
36
|
+
private getWidthTranslationKey;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetsEditorComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetsEditorComponent, "valtimo-dossier-management-widgets-editor", never, { "documentDefinitionName": { "alias": "documentDefinitionName"; "required": false; }; "tabWidgetKey": { "alias": "tabWidgetKey"; "required": false; }; "currentWidgetTab": { "alias": "currentWidgetTab"; "required": false; }; }, { "changeSaved": "changeSaved"; }, never, never, true, never>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=dossier-management-widgets-editor.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widgets-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-tab/editor/dossier-management-widgets-editor.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAGL,YAAY,EAIb,MAAM,eAAe,CAAC;AACvB,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACtE,OAAO,EACL,UAAU,EACV,cAAc,EAEd,YAAY,EAEZ,mBAAmB,EAEpB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAC,eAAe,EAAE,UAAU,EAAE,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAE7E,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAE,OAAO,EAAO,MAAM,MAAM,CAAC;AAEpF,OAAO,EAAC,0BAA0B,EAAE,mBAAmB,EAAC,MAAM,mBAAmB,CAAC;;AAGlF,qBAgBa,uCAAuC;IAuFhD,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAzFtB,sBAAsB,EAAE,MAAM,CAAC;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrC,OAAO,CAAC,iBAAiB,CAAiB;IAC1C,IAAoB,gBAAgB,CAAC,KAAK,EAAE,cAAc,EAOzD;IACD,IAAW,gBAAgB,IAAI,cAAc,CAE5C;IAED,SAA0B,WAAW,oBAAsB;IAE3D,SAAgB,MAAM,EAAE,YAAY,EAAE,CA0BpC;IAEF,SAAgB,YAAY,EAAE,UAAU,EAAE,CAUxC;IAEF,OAAO,CAAC,QAAQ,CAAC,OAAO,CAA6C;IACrE,SAAgB,MAAM,EAAE,UAAU,CAAC,cAAc,EAAE,CAAC,CAgBlD;IAEF,SAAgB,aAAa,2BAAuC;IACpE,SAAgB,UAAU,kDAAqC;IAC/D,SAAgB,gBAAgB,2BAAuC;IACvE,SAAgB,aAAa,kBAAyB;IAEtD,SAAgB,mBAAmB,kDAAiB;IAEpD,OAAO,CAAC,SAAS,CAAW;gBAGT,mBAAmB,EAAE,mBAAmB,EACxC,gBAAgB,EAAE,gBAAgB,EAClC,0BAA0B,EAAE,0BAA0B,EACtD,mBAAmB,EAAE,mBAAmB;IAGpD,UAAU,CAAC,SAAS,EAAE,UAAU,GAAG,IAAI;IAevC,YAAY,IAAI,IAAI;IAIpB,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAYxC,YAAY,CAAC,YAAY,EAAE,eAAe,EAAE,eAAe,EAAE,UAAU,EAAE,GAAG,IAAI;IA4BhF,gBAAgB,CAAC,OAAO,EAAE,UAAU,EAAE,GAAG,IAAI;IAcpD,OAAO,CAAC,YAAY;IAKpB,OAAO,CAAC,sBAAsB;yCA3KnB,uCAAuC;2CAAvC,uCAAuC;CAyLnD"}
|