@valtimo/dossier-management 12.0.0 → 12.1.1
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-detail-container/dossier-management-detail-container.component.mjs +8 -5
- package/esm2022/lib/components/dossier-management-document-definition/dossier-management-document-definition.component.mjs +3 -3
- package/esm2022/lib/components/dossier-management-list/dossier-management-list.component.mjs +1 -1
- package/esm2022/lib/components/dossier-management-list-columns/dossier-management-list-columns.component.mjs +1 -1
- package/esm2022/lib/components/dossier-management-processes/dossier-management-processes.component.mjs +1 -1
- package/esm2022/lib/components/dossier-management-search-fields/dossier-management-search-fields.component.mjs +8 -11
- package/esm2022/lib/components/dossier-management-statuses/dossier-management-status-modal/dossier-management-status-modal.component.mjs +2 -2
- package/esm2022/lib/components/dossier-management-statuses/dossier-management-statuses.component.mjs +3 -3
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-add-tab-modal/dossier-management-add-tab-modal.component.mjs +39 -17
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-edit-tab-modal/dossier-management-edit-tab-modal.component.mjs +4 -3
- package/esm2022/lib/components/dossier-management-tabs/dossier-management-tabs.component.mjs +57 -27
- package/esm2022/lib/components/dossier-management-tabs/tab-form/tab-form.component.mjs +47 -14
- 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 +14 -1
- package/esm2022/lib/dossier-management.module.mjs +7 -3
- package/esm2022/lib/models/index.mjs +5 -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/index.mjs +8 -4
- package/esm2022/lib/services/tab-management.service.mjs +12 -6
- package/esm2022/lib/services/tab.service.mjs +2 -1
- 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/fesm2022/valtimo-dossier-management.mjs +4568 -2461
- package/fesm2022/valtimo-dossier-management.mjs.map +1 -1
- package/lib/components/dossier-management-detail-container/dossier-management-detail-container.component.d.ts.map +1 -1
- 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 +1 -0
- package/lib/components/dossier-management-statuses/dossier-management-status-modal/dossier-management-status-modal.component.d.ts.map +1 -1
- 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-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 +2 -1
- package/lib/dossier-management.module.d.ts.map +1 -1
- package/lib/models/index.d.ts +4 -1
- package/lib/models/index.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/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 +1 -0
- 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 +1 -1
|
@@ -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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { AfterViewInit, EventEmitter, Signal } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { ConfirmationModalComponent, EditorModel } from '@valtimo/components';
|
|
4
|
+
import { CaseWidgetsRes } from '@valtimo/dossier';
|
|
5
|
+
import { IconService, NotificationService } from 'carbon-components-angular';
|
|
6
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
7
|
+
import { WidgetJsonEditorService, WidgetTabManagementService } from '../../../services';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class DossierManagementWidgetsJsonEditorComponent implements AfterViewInit {
|
|
10
|
+
private readonly iconService;
|
|
11
|
+
private readonly notificationService;
|
|
12
|
+
private readonly translateService;
|
|
13
|
+
private readonly widgetJsonEditorService;
|
|
14
|
+
private readonly widgetTabManagementService;
|
|
15
|
+
pendingChangesModal: ConfirmationModalComponent;
|
|
16
|
+
private _currentWidgetTab;
|
|
17
|
+
set currentWidgetTab(value: CaseWidgetsRes);
|
|
18
|
+
readonly customModalLoaded: EventEmitter<ConfirmationModalComponent>;
|
|
19
|
+
readonly canDeactivate: EventEmitter<boolean>;
|
|
20
|
+
readonly pendingChangesUpdate: EventEmitter<boolean>;
|
|
21
|
+
readonly changeSaved: EventEmitter<any>;
|
|
22
|
+
readonly jsonModel: import("@angular/core").WritableSignal<EditorModel>;
|
|
23
|
+
readonly editActive: import("@angular/core").WritableSignal<boolean>;
|
|
24
|
+
readonly showPendingModal$: Observable<boolean>;
|
|
25
|
+
readonly showSaveConfirmation$: BehaviorSubject<boolean>;
|
|
26
|
+
private readonly _widgetConfig;
|
|
27
|
+
private _editorInit;
|
|
28
|
+
private _pendingChanges;
|
|
29
|
+
private readonly _jsonValid;
|
|
30
|
+
private readonly _jsonSchemaInvalid;
|
|
31
|
+
readonly saveButtonDisabled: Signal<boolean>;
|
|
32
|
+
constructor(iconService: IconService, notificationService: NotificationService, translateService: TranslateService, widgetJsonEditorService: WidgetJsonEditorService, widgetTabManagementService: WidgetTabManagementService);
|
|
33
|
+
ngAfterViewInit(): void;
|
|
34
|
+
downloadConfig(): void;
|
|
35
|
+
keepEditing(): void;
|
|
36
|
+
discardChanges(): void;
|
|
37
|
+
save(): void;
|
|
38
|
+
onCancelClick(): void;
|
|
39
|
+
onEditClick(): void;
|
|
40
|
+
onSaveClick(): void;
|
|
41
|
+
onValidEvent(valid: boolean): void;
|
|
42
|
+
onValueChangeEvent(value: string): void;
|
|
43
|
+
private setPendingChanges;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetsJsonEditorComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetsJsonEditorComponent, "valtimo-dossier-management-widgets-json-editor", never, { "currentWidgetTab": { "alias": "currentWidgetTab"; "required": false; }; }, { "customModalLoaded": "customModalLoaded"; "canDeactivate": "canDeactivate"; "pendingChangesUpdate": "pendingChangesUpdate"; "changeSaved": "changeSaved"; }, never, never, true, never>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=dossier-management-widgets-json-editor.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widgets-json-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-tab/json-editor/dossier-management-widgets-json-editor.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,aAAa,EAIb,YAAY,EAGZ,MAAM,EAGP,MAAM,eAAe,CAAC;AAGvB,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACtE,OAAO,EAEL,0BAA0B,EAE1B,WAAW,EAEZ,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAkB,cAAc,EAAC,MAAM,kBAAkB,CAAC;AACjE,OAAO,EAGL,WAAW,EACX,mBAAmB,EACpB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAC,eAAe,EAAE,UAAU,EAAO,MAAM,MAAM,CAAC;AACvD,OAAO,EAAC,uBAAuB,EAAE,0BAA0B,EAAC,MAAM,mBAAmB,CAAC;;AAEtF,qBAgBa,2CAA4C,YAAW,aAAa;IAqC7E,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IACxC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAxCJ,mBAAmB,EAAE,0BAA0B,CAAC;IAEzF,OAAO,CAAC,iBAAiB,CAAiB;IAC1C,IAAoB,gBAAgB,CAAC,KAAK,EAAE,cAAc,EAOzD;IAED,SAA0B,iBAAiB,2CAAkD;IAC7F,SAA0B,aAAa,wBAA+B;IACtE,SAA0B,oBAAoB,wBAA+B;IAC7E,SAA0B,WAAW,oBAAsB;IAE3D,SAAgB,SAAS,sDAAoC;IAC7D,SAAgB,UAAU,kDAA0B;IAEpD,SAAgB,iBAAiB,EAAE,UAAU,CAAC,OAAO,CAAC,CAEpD;IACF,SAAgB,qBAAqB,2BAAuC;IAE5E,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAuC;IAErE,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAA0B;IACrD,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAA0B;IAC7D,SAAgB,kBAAkB,EAAE,MAAM,CAAC,OAAO,CAAC,CAEjD;gBAGiB,WAAW,EAAE,WAAW,EACxB,mBAAmB,EAAE,mBAAmB,EACxC,gBAAgB,EAAE,gBAAgB,EAClC,uBAAuB,EAAE,uBAAuB,EAChD,0BAA0B,EAAE,0BAA0B;IAKlE,eAAe,IAAI,IAAI;IAIvB,cAAc,IAAI,IAAI;IAiBtB,WAAW,IAAI,IAAI;IAMnB,cAAc,IAAI,IAAI;IAWtB,IAAI,IAAI,IAAI;IAmCZ,aAAa,IAAI,IAAI;IASrB,WAAW,IAAI,IAAI;IAInB,WAAW,IAAI,IAAI;IAInB,YAAY,CAAC,KAAK,EAAE,OAAO;IAI3B,kBAAkB,CAAC,KAAK,EAAE,MAAM;IAwBvC,OAAO,CAAC,iBAAiB;yCApKd,2CAA2C;2CAA3C,2CAA2C;CA6KvD"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractControl, FormBuilder } from '@angular/forms';
|
|
3
|
+
import { TabManagementService } from '../../services';
|
|
4
|
+
import { ApiTabItem } from '@valtimo/dossier';
|
|
5
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DossierManagementWidgetTabEditModalComponent implements OnInit, OnDestroy {
|
|
8
|
+
private readonly fb;
|
|
9
|
+
private readonly tabManagementService;
|
|
10
|
+
showModal$: Observable<boolean>;
|
|
11
|
+
tabItem: ApiTabItem;
|
|
12
|
+
saveEvent: EventEmitter<any>;
|
|
13
|
+
readonly open$: BehaviorSubject<boolean>;
|
|
14
|
+
readonly disabled$: BehaviorSubject<boolean>;
|
|
15
|
+
readonly editWidgetTabForm: import("@angular/forms").FormGroup<{
|
|
16
|
+
name: import("@angular/forms").FormControl<string>;
|
|
17
|
+
}>;
|
|
18
|
+
get widgetTabName(): AbstractControl<string | null, string | null> | null;
|
|
19
|
+
private _openSubscription;
|
|
20
|
+
constructor(fb: FormBuilder, tabManagementService: TabManagementService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
closeModal(): void;
|
|
24
|
+
saveWidgetTab(): void;
|
|
25
|
+
private setEditWidgetTabForm;
|
|
26
|
+
private openOpenSubscription;
|
|
27
|
+
private disable;
|
|
28
|
+
private enable;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetTabEditModalComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetTabEditModalComponent, "valtimo-dossier-management-widget-tab-edit-modal", never, { "showModal$": { "alias": "showModal$"; "required": false; }; "tabItem": { "alias": "tabItem"; "required": false; }; }, { "saveEvent": "saveEvent"; }, never, never, true, never>;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=dossier-management-widget-tab-edit-modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-tab-edit-modal.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-tab-edit-modal/dossier-management-widget-tab-edit-modal.ts"],"names":[],"mappings":"AAeA,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,eAAe,EAAE,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAE7F,OAAO,EAAC,oBAAoB,EAAC,MAAM,gBAAgB,CAAC;AACpD,OAAO,EAAC,UAAU,EAAa,MAAM,kBAAkB,CAAC;AAOxD,OAAO,EAAC,eAAe,EAAE,UAAU,EAAe,MAAM,MAAM,CAAC;;AAI/D,qBAkBa,4CAA6C,YAAW,MAAM,EAAE,SAAS;IAkBlF,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;IAlBvB,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAChC,OAAO,EAAE,UAAU,CAAC;IACnB,SAAS,oBAA2B;IAErD,SAAgB,KAAK,2BAAuC;IAC5D,SAAgB,SAAS,2BAAuC;IAChE,SAAgB,iBAAiB;;OAE9B;IAEH,IAAW,aAAa,IAAI,eAAe,CAAC,MAAM,GAAG,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC,GAAG,IAAI,CAE/E;IAED,OAAO,CAAC,iBAAiB,CAAgB;gBAGtB,EAAE,EAAE,WAAW,EACf,oBAAoB,EAAE,oBAAoB;IAGtD,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,UAAU,IAAI,IAAI;IAQlB,aAAa,IAAI,IAAI;IAmB5B,OAAO,CAAC,oBAAoB;IAQ5B,OAAO,CAAC,oBAAoB;IAO5B,OAAO,CAAC,OAAO;IAIf,OAAO,CAAC,MAAM;yCA5EH,4CAA4C;2CAA5C,4CAA4C;CA+ExD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EventEmitter, Signal } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { Step } from 'carbon-components-angular';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { WidgetWizardStep } from '../../models';
|
|
6
|
+
import { WidgetWizardService } from '../../services';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DossierManagementWidgetWizardComponent {
|
|
9
|
+
private readonly translateService;
|
|
10
|
+
private readonly widgetWizardService;
|
|
11
|
+
open: boolean;
|
|
12
|
+
set editMode(value: boolean);
|
|
13
|
+
closeEvent: EventEmitter<any>;
|
|
14
|
+
readonly WidgetWizardSteps: typeof WidgetWizardStep;
|
|
15
|
+
private readonly _secondaryLabels;
|
|
16
|
+
readonly steps$: Observable<Step[]>;
|
|
17
|
+
private readonly _contentStepValid;
|
|
18
|
+
readonly currentStep: import("@angular/core").WritableSignal<WidgetWizardStep>;
|
|
19
|
+
readonly backButtonDisabled: Signal<boolean>;
|
|
20
|
+
nextButtonDisabled: Signal<boolean>;
|
|
21
|
+
constructor(translateService: TranslateService, widgetWizardService: WidgetWizardService);
|
|
22
|
+
onStepSelected(event: {
|
|
23
|
+
step: Step;
|
|
24
|
+
index: WidgetWizardStep;
|
|
25
|
+
}): void;
|
|
26
|
+
onNextButtonClick(): void;
|
|
27
|
+
onBackButtonClick(): void;
|
|
28
|
+
onClose(): void;
|
|
29
|
+
onContentValidEvent(valid: boolean): void;
|
|
30
|
+
private resetWizard;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementWidgetWizardComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DossierManagementWidgetWizardComponent, "valtimo-dossier-management-widget-wizard", never, { "open": { "alias": "open"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; }, { "closeEvent": "closeEvent"; }, never, never, true, never>;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=dossier-management-widget-wizard.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dossier-management-widget-wizard.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-wizard/dossier-management-widget-wizard.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAIL,YAAY,EAGZ,MAAM,EAGP,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AAEtE,OAAO,EAAqD,IAAI,EAAC,MAAM,2BAA2B,CAAC;AACnG,OAAO,EAAqB,UAAU,EAAC,MAAM,MAAM,CAAC;AACpD,OAAO,EAA2C,gBAAgB,EAAC,MAAM,cAAc,CAAC;AACxF,OAAO,EAAC,mBAAmB,EAAC,MAAM,gBAAgB,CAAC;;AAGnD,qBAgBa,sCAAsC;IAuF/C,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAvFtB,IAAI,UAAS;IAC7B,IAAoB,QAAQ,CAAC,KAAK,EAAE,OAAO,EAI1C;IACgB,UAAU,oBAA2B;IAEtD,SAAgB,iBAAiB,0BAAoB;IACrD,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAY9B;IAEH,SAAgB,MAAM,EAAE,UAAU,CAAC,IAAI,EAAE,CAAC,CAsCxC;IAEF,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA0B;IAC5D,SAAgB,WAAW,2DAAmD;IAC9E,SAAgB,kBAAkB,EAAE,MAAM,CAAC,OAAO,CAAC,CAIjD;IACK,kBAAkB,kBAatB;gBAGgB,gBAAgB,EAAE,gBAAgB,EAClC,mBAAmB,EAAE,mBAAmB;IAGpD,cAAc,CAAC,KAAK,EAAE;QAAC,IAAI,EAAE,IAAI,CAAC;QAAC,KAAK,EAAE,gBAAgB,CAAA;KAAC,GAAG,IAAI;IAIlE,iBAAiB,IAAI,IAAI;IAUzB,iBAAiB,IAAI,IAAI;IAIzB,OAAO,IAAI,IAAI;IAKf,mBAAmB,CAAC,KAAK,EAAE,OAAO,GAAG,IAAI;IAIhD,OAAO,CAAC,WAAW;yCAtHR,sCAAsC;2CAAtC,sCAAsC;CA4HlD"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { WidgetWizardContentStepComponent } from './widget-wizard-content-step/widget-wizard-content-step.component';
|
|
2
|
+
import { WidgetWizardStyleStepComponent } from './widget-wizard-style-step/widget-wizard-style-step.component';
|
|
3
|
+
import { WidgetWizardTypeStepComponent } from './widget-wizard-type-step/widget-wizard-type-step.component';
|
|
4
|
+
import { WidgetWizardWidthStepComponent } from './widget-wizard-width-step/widget-wizard-width-step.component';
|
|
5
|
+
export declare const WIDGET_STEPS: (typeof WidgetWizardContentStepComponent | typeof WidgetWizardStyleStepComponent | typeof WidgetWizardTypeStepComponent | typeof WidgetWizardWidthStepComponent)[];
|
|
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-wizard/steps/index.ts"],"names":[],"mappings":"AAeA,OAAO,EAAC,gCAAgC,EAAC,MAAM,mEAAmE,CAAC;AACnH,OAAO,EAAC,8BAA8B,EAAC,MAAM,+DAA+D,CAAC;AAC7G,OAAO,EAAC,6BAA6B,EAAC,MAAM,6DAA6D,CAAC;AAC1G,OAAO,EAAC,8BAA8B,EAAC,MAAM,+DAA+D,CAAC;AAE7G,eAAO,MAAM,YAAY,oKAKxB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { WidgetWizardService } from '../../../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WidgetWizardContentStepComponent implements OnInit {
|
|
5
|
+
private readonly cdr;
|
|
6
|
+
private readonly widgetWizardService;
|
|
7
|
+
private readonly _vcr;
|
|
8
|
+
contentValidEvent: EventEmitter<boolean>;
|
|
9
|
+
constructor(cdr: ChangeDetectorRef, widgetWizardService: WidgetWizardService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
private renderComponent;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardContentStepComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetWizardContentStepComponent, "valtimo-widget-wizard-content-step", never, {}, { "contentValidEvent": "contentValidEvent"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=widget-wizard-content-step.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard-content-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-wizard/steps/widget-wizard-content-step/widget-wizard-content-step.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EACZ,MAAM,EAKP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,mBAAmB,EAAC,MAAM,sBAAsB,CAAC;;AAEzD,qBAQa,gCAAiC,YAAW,MAAM;IAO3D,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IANtC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAmB;IAEvB,iBAAiB,wBAA+B;gBAG9C,GAAG,EAAE,iBAAiB,EACtB,mBAAmB,EAAE,mBAAmB;IAGpD,QAAQ,IAAI,IAAI;IAIvB,OAAO,CAAC,eAAe;yCAfZ,gCAAgC;2CAAhC,gCAAgC;CA6B5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WidgetWizardService } from '../../../../services';
|
|
2
|
+
import { WidgetStyle } from '../../../../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WidgetWizardStyleStepComponent {
|
|
5
|
+
private readonly widgetWizardService;
|
|
6
|
+
readonly WidgetStyle: typeof WidgetStyle;
|
|
7
|
+
readonly widgetStyle: import("@angular/core").WritableSignal<WidgetStyle>;
|
|
8
|
+
constructor(widgetWizardService: WidgetWizardService);
|
|
9
|
+
onSelectedEvent(event: {
|
|
10
|
+
value: WidgetStyle;
|
|
11
|
+
}): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardStyleStepComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetWizardStyleStepComponent, "valtimo-widget-wizard-style-step", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=widget-wizard-style-step.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard-style-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-wizard/steps/widget-wizard-style-step/widget-wizard-style-step.component.ts"],"names":[],"mappings":"AAoBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAC,WAAW,EAAC,MAAM,oBAAoB,CAAC;;AAE/C,qBAOa,8BAA8B;IAI7B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAHhD,SAAgB,WAAW,qBAAe;IAC1C,SAAgB,WAAW,sDAAwC;gBAEtC,mBAAmB,EAAE,mBAAmB;IAE9D,eAAe,CAAC,KAAK,EAAE;QAAC,KAAK,EAAE,WAAW,CAAA;KAAC,GAAG,IAAI;yCAN9C,8BAA8B;2CAA9B,8BAA8B;CAS1C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { WidgetTypeSelection } from '../../../../models';
|
|
2
|
+
import { WidgetWizardService } from '../../../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class WidgetWizardTypeStepComponent {
|
|
5
|
+
private readonly widgetWizardService;
|
|
6
|
+
readonly availableWidgets: WidgetTypeSelection[];
|
|
7
|
+
readonly selectedWidget: import("@angular/core").WritableSignal<WidgetTypeSelection>;
|
|
8
|
+
constructor(widgetWizardService: WidgetWizardService);
|
|
9
|
+
onSelectedEvent(event: {
|
|
10
|
+
value: WidgetTypeSelection;
|
|
11
|
+
}): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardTypeStepComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetWizardTypeStepComponent, "valtimo-widget-wizard-type-step", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=widget-wizard-type-step.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard-type-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-wizard/steps/widget-wizard-type-step/widget-wizard-type-step.component.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAoB,mBAAmB,EAAC,MAAM,oBAAoB,CAAC;AAE1E,OAAO,EAAC,mBAAmB,EAAC,MAAM,sBAAsB,CAAC;;AAEzD,qBAQa,6BAA6B;IAI5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAHhD,SAAgB,gBAAgB,wBAAqB;IACrD,SAAgB,cAAc,8DAA2C;gBAE5C,mBAAmB,EAAE,mBAAmB;IAE9D,eAAe,CAAC,KAAK,EAAE;QAAC,KAAK,EAAE,mBAAmB,CAAA;KAAC,GAAG,IAAI;yCANtD,6BAA6B;2CAA7B,6BAA6B;CAczC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { CaseWidgetWidth } from '@valtimo/dossier';
|
|
3
|
+
import { WidgetWizardService } from '../../../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class WidgetWizardWidthStepComponent {
|
|
6
|
+
private readonly widgetWizardService;
|
|
7
|
+
readonly fieldsColumnsLength: Signal<number>;
|
|
8
|
+
readonly widgetWidth: import("@angular/core").WritableSignal<CaseWidgetWidth>;
|
|
9
|
+
constructor(widgetWizardService: WidgetWizardService);
|
|
10
|
+
onSelectedEvent(event: {
|
|
11
|
+
value: CaseWidgetWidth;
|
|
12
|
+
}): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardWidthStepComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetWizardWidthStepComponent, "valtimo-widget-wizard-width-step", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=widget-wizard-width-step.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard-width-step.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/dossier-management/src/lib/components/dossier-management-widget-wizard/steps/widget-wizard-width-step/widget-wizard-width-step.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAA+C,MAAM,EAAC,MAAM,eAAe,CAAC;AAEnF,OAAO,EAAiB,eAAe,EAAC,MAAM,kBAAkB,CAAC;AAEjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,sBAAsB,CAAC;;AAEzD,qBAOa,8BAA8B;IAQ7B,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IAPhD,SAAgB,mBAAmB,EAAE,MAAM,CAAC,MAAM,CAAC,CAIjD;IACF,SAAgB,WAAW,0DAAwC;gBAEtC,mBAAmB,EAAE,mBAAmB;IAE9D,eAAe,CAAC,KAAK,EAAE;QAAC,KAAK,EAAE,eAAe,CAAA;KAAC,GAAG,IAAI;yCAVlD,8BAA8B;2CAA9B,8BAA8B;CAa1C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management-routing.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management-routing.module.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"dossier-management-routing.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management-routing.module.ts"],"names":[],"mappings":";;AAoDA,qBAKa,8BAA8B;yCAA9B,8BAA8B;0CAA9B,8BAA8B;0CAA9B,8BAA8B;CAAG"}
|
|
@@ -27,9 +27,10 @@ import * as i25 from "@ngx-translate/core";
|
|
|
27
27
|
import * as i26 from "@valtimo/config";
|
|
28
28
|
import * as i27 from "@ng-bootstrap/ng-bootstrap";
|
|
29
29
|
import * as i28 from "carbon-components-angular";
|
|
30
|
+
import * as i29 from "./components/dossier-management-widget-tab/editor/dossier-management-widgets-editor.component";
|
|
30
31
|
export declare class DossierManagementModule {
|
|
31
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<DossierManagementModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierManagementModule, [typeof i1.DossierManagementListComponent, typeof i2.DossierManagementDetailComponent, typeof i3.DossierManagementConnectModalComponent, typeof i4.DossierManagementRemoveModalComponent, typeof i5.DossierManagementUploadComponent, typeof i6.DossierManagementSearchFieldsComponent, typeof i7.DossierManagementDetailContainerComponent, typeof i8.DossierManagementAssigneeComponent, typeof i9.DossierManagementListColumnsComponent, typeof i10.DossierManagementTabsComponent, typeof i11.DossierManagementAddTabModalComponent, typeof i12.TabFormComponent, typeof i13.DossierManagementEditTabModalComponent, typeof i14.DossierManagementDetailContainerActionsComponent, typeof i15.DossierManagementDocumentDefinitionComponent, typeof i16.DossierManagementProcessesComponent, typeof i17.DossierManagementUploadStepComponent, typeof i18.DossierManagementStatusesComponent, typeof i19.DossierManagementStatusModalComponent, typeof i20.DossierManagementCreateComponent], [typeof i21.CommonModule, typeof i22.WidgetModule, typeof i22.DropzoneModule, typeof i22.ListModule, typeof i23.DossierManagementRoutingModule, typeof i24.FormsModule, typeof i25.TranslateModule, typeof i22.ModalModule, typeof i26.ConfigModule, typeof i27.NgbTooltipModule, typeof i22.MultiselectDropdownModule, typeof i22.ParagraphModule, typeof i22.SelectModule, typeof i22.SpinnerModule, typeof i22.InputModule, typeof i22.SelectModule, typeof i22.FormModule, typeof i28.NotificationModule, typeof i28.ButtonModule, typeof i28.IconModule, typeof i28.ModalModule, typeof i28.InputModule, typeof i24.ReactiveFormsModule, typeof i28.DropdownModule, typeof i28.CheckboxModule, typeof i22.TooltipIconModule, typeof i22.CarbonMultiInputModule, typeof i28.LoadingModule, typeof i28.LinkModule, typeof i22.ConfirmationModalModule, typeof i22.TableModule, typeof i22.ValtimoCdsModalDirectiveModule, typeof i22.CarbonListModule, typeof i28.ComboBoxModule, typeof i22.RenderInPageHeaderDirectiveModule, typeof i28.DialogModule, typeof i22.ValtimoCdsOverflowButtonDirectiveModule, typeof i28.NotificationModule, typeof i22.EditorModule, typeof i22.CarbonListModule, typeof i28.TabsModule, typeof i28.TagModule, typeof i28.FileUploaderModule, typeof i28.ProgressBarModule, typeof i22.ConfirmationModalModule, typeof i28.ToggleModule, typeof i28.TooltipModule], never>;
|
|
33
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DossierManagementModule, [typeof i1.DossierManagementListComponent, typeof i2.DossierManagementDetailComponent, typeof i3.DossierManagementConnectModalComponent, typeof i4.DossierManagementRemoveModalComponent, typeof i5.DossierManagementUploadComponent, typeof i6.DossierManagementSearchFieldsComponent, typeof i7.DossierManagementDetailContainerComponent, typeof i8.DossierManagementAssigneeComponent, typeof i9.DossierManagementListColumnsComponent, typeof i10.DossierManagementTabsComponent, typeof i11.DossierManagementAddTabModalComponent, typeof i12.TabFormComponent, typeof i13.DossierManagementEditTabModalComponent, typeof i14.DossierManagementDetailContainerActionsComponent, typeof i15.DossierManagementDocumentDefinitionComponent, typeof i16.DossierManagementProcessesComponent, typeof i17.DossierManagementUploadStepComponent, typeof i18.DossierManagementStatusesComponent, typeof i19.DossierManagementStatusModalComponent, typeof i20.DossierManagementCreateComponent], [typeof i21.CommonModule, typeof i22.WidgetModule, typeof i22.DropzoneModule, typeof i22.ListModule, typeof i23.DossierManagementRoutingModule, typeof i24.FormsModule, typeof i25.TranslateModule, typeof i22.ModalModule, typeof i26.ConfigModule, typeof i27.NgbTooltipModule, typeof i22.MultiselectDropdownModule, typeof i22.ParagraphModule, typeof i22.SelectModule, typeof i22.SpinnerModule, typeof i22.InputModule, typeof i22.SelectModule, typeof i22.FormModule, typeof i28.NotificationModule, typeof i28.ButtonModule, typeof i28.IconModule, typeof i28.ModalModule, typeof i28.InputModule, typeof i24.ReactiveFormsModule, typeof i28.DropdownModule, typeof i28.CheckboxModule, typeof i22.TooltipIconModule, typeof i22.CarbonMultiInputModule, typeof i28.LoadingModule, typeof i28.LinkModule, typeof i22.ConfirmationModalModule, typeof i22.TableModule, typeof i22.ValtimoCdsModalDirectiveModule, typeof i22.CarbonListModule, typeof i28.ComboBoxModule, typeof i22.RenderInPageHeaderDirectiveModule, typeof i28.DialogModule, typeof i22.ValtimoCdsOverflowButtonDirectiveModule, typeof i28.NotificationModule, typeof i22.EditorModule, typeof i22.CarbonListModule, typeof i28.TabsModule, typeof i28.TagModule, typeof i28.FileUploaderModule, typeof i28.ProgressBarModule, typeof i22.ConfirmationModalModule, typeof i28.ToggleModule, typeof i28.TooltipModule, typeof i29.DossierManagementWidgetsEditorComponent], never>;
|
|
33
34
|
static ɵinj: i0.ɵɵInjectorDeclaration<DossierManagementModule>;
|
|
34
35
|
}
|
|
35
36
|
//# sourceMappingURL=dossier-management.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dossier-management.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dossier-management.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/dossier-management/src/lib/dossier-management.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsFA,qBA2Ea,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from './list-column.model';
|
|
2
|
-
export * from './tab.enum';
|
|
3
2
|
export * from './status.model';
|
|
3
|
+
export * from './tab.enum';
|
|
4
|
+
export * from './widget-content.model';
|
|
5
|
+
export * from './widget-editor.model';
|
|
6
|
+
export * from './widget-wizard.model';
|
|
4
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC;AACpC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-content.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/widget-content.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAE3C,MAAM,WAAW,sBAAsB;IACrC,gBAAgB,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;CACzC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TagType } from 'carbon-components-angular';
|
|
2
|
+
declare enum WidgetEditorTab {
|
|
3
|
+
VISUAL = "visual",
|
|
4
|
+
JSON = "json"
|
|
5
|
+
}
|
|
6
|
+
declare const WidgetTypeTags: {
|
|
7
|
+
[key: string]: TagType;
|
|
8
|
+
};
|
|
9
|
+
export { WidgetEditorTab, WidgetTypeTags };
|
|
10
|
+
//# sourceMappingURL=widget-editor.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-editor.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/widget-editor.model.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAElD,aAAK,eAAe;IAClB,MAAM,WAAW;IACjB,IAAI,SAAS;CACd;AAED,QAAA,MAAM,cAAc,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAM5C,CAAC;AAEF,OAAO,EAAC,eAAe,EAAE,cAAc,EAAC,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { WidgetContentComponent } from './widget-content.model';
|
|
3
|
+
import { CaseWidgetType } from '@valtimo/dossier';
|
|
4
|
+
declare enum WidgetWizardStep {
|
|
5
|
+
TYPE = 0,
|
|
6
|
+
WIDTH = 1,
|
|
7
|
+
STYLE = 2,
|
|
8
|
+
CONTENT = 3
|
|
9
|
+
}
|
|
10
|
+
declare enum WidgetStyle {
|
|
11
|
+
DEFAULT = "default",
|
|
12
|
+
HIGH_CONTRAST = "high-contrast"
|
|
13
|
+
}
|
|
14
|
+
interface WidgetTypeSelection {
|
|
15
|
+
titleKey: string;
|
|
16
|
+
descriptionKey: string;
|
|
17
|
+
illustrationUrl: string;
|
|
18
|
+
type: CaseWidgetType;
|
|
19
|
+
component: Type<WidgetContentComponent>;
|
|
20
|
+
}
|
|
21
|
+
declare const AVAILABLE_WIDGETS: WidgetTypeSelection[];
|
|
22
|
+
declare const WIDGET_WIDTH_LABELS: {
|
|
23
|
+
[key: number]: string;
|
|
24
|
+
};
|
|
25
|
+
declare const WIDGET_STYLE_LABELS: {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
export { WidgetWizardStep, WidgetTypeSelection, AVAILABLE_WIDGETS, WidgetStyle, WIDGET_WIDTH_LABELS, WIDGET_STYLE_LABELS, };
|
|
29
|
+
//# sourceMappingURL=widget-wizard.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/models/widget-wizard.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AACnC,OAAO,EAAC,sBAAsB,EAAC,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAShD,aAAK,gBAAgB;IACnB,IAAI,IAAA;IACJ,KAAK,IAAA;IACL,KAAK,IAAA;IACL,OAAO,IAAA;CACR;AAED,aAAK,WAAW;IACd,OAAO,YAAY;IACnB,aAAa,kBAAkB;CAChC;AAED,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,cAAc,CAAC;IACrB,SAAS,EAAE,IAAI,CAAC,sBAAsB,CAAC,CAAC;CACzC;AAED,QAAA,MAAM,iBAAiB,EAAE,mBAAmB,EAoC3C,CAAC;AAEF,QAAA,MAAM,mBAAmB,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAKhD,CAAC;AAEF,QAAA,MAAM,mBAAmB,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAGhD,CAAC;AAEF,OAAO,EACL,gBAAgB,EAChB,mBAAmB,EACnB,iBAAiB,EACjB,WAAW,EACX,mBAAmB,EACnB,mBAAmB,GACpB,CAAC"}
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
export * from './tab.service';
|
|
2
|
-
export * from './tab-management.service';
|
|
3
|
-
export * from './dossier-export.service';
|
|
4
1
|
export * from './dossier-detail.service';
|
|
2
|
+
export * from './dossier-export.service';
|
|
3
|
+
export * from './tab-management.service';
|
|
4
|
+
export * from './tab.service';
|
|
5
|
+
export * from './widget-json-editor.service';
|
|
6
|
+
export * from './widget-tab-management.service';
|
|
7
|
+
export * from './widget-wizard.service';
|
|
8
|
+
export * from './widget-fields.service';
|
|
5
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,0BAA0B,CAAC;AACzC,cAAc,eAAe,CAAC;AAC9B,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iCAAiC,CAAC;AAChD,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC"}
|
|
@@ -8,7 +8,8 @@ export declare class TabManagementService {
|
|
|
8
8
|
private readonly http;
|
|
9
9
|
private _valtimoEndpointUri;
|
|
10
10
|
private _caseDefinitionId;
|
|
11
|
-
readonly
|
|
11
|
+
private readonly _tabs$;
|
|
12
|
+
get tabs$(): Observable<ApiTabItem[]>;
|
|
12
13
|
readonly loading$: BehaviorSubject<boolean>;
|
|
13
14
|
constructor(configService: ConfigService, http: HttpClient);
|
|
14
15
|
loadTabs(): void;
|
|
@@ -18,6 +19,7 @@ export declare class TabManagementService {
|
|
|
18
19
|
editTab(tab: Partial<ApiTabItem>, tabKey: string): Observable<ApiTabItem>;
|
|
19
20
|
editTabsOrder(tabList: ApiTabItem[]): Observable<ApiTabItem[]>;
|
|
20
21
|
setCaseDefinitionId(caseDefinitionId: string): void;
|
|
22
|
+
getTab(tabKey: string): Observable<ApiTabItem>;
|
|
21
23
|
private getTabList;
|
|
22
24
|
private getTabDto;
|
|
23
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabManagementService, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab-management.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab-management.service.ts"],"names":[],"mappings":"AAeA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEhD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,
|
|
1
|
+
{"version":3,"file":"tab-management.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab-management.service.ts"],"names":[],"mappings":"AAeA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEhD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EACL,eAAe,EAIf,UAAU,EAKX,MAAM,MAAM,CAAC;;AAEd,qBACa,oBAAoB;IAiB7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,IAAI;IAjBvB,OAAO,CAAC,mBAAmB,CAAS;IACpC,OAAO,CAAC,iBAAiB,CAAS;IAElC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAyC;IAEhE,IAAW,KAAK,IAAI,UAAU,CAAC,UAAU,EAAE,CAAC,CAM3C;IAED,SAAgB,QAAQ,2BAAuC;gBAG5C,aAAa,EAAE,aAAa,EAC5B,IAAI,EAAE,UAAU;IAK5B,QAAQ,IAAI,IAAI;IAehB,cAAc,CAAC,YAAY,EAAE,UAAU,CAAC,UAAU,GAAG,UAAU,EAAE,GAAG,IAAI,CAAC,GAAG,IAAI;IAwBhF,MAAM,CAAC,GAAG,EAAE,OAAO,CAAC,UAAU,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC;IAOxD,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,IAAI,CAAC;IAM3C,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,UAAU,CAAC;IAOzE,aAAa,CAAC,OAAO,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;IAO9D,mBAAmB,CAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI;IAInD,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,UAAU,CAAC;IAMrD,OAAO,CAAC,UAAU;IAIlB,OAAO,CAAC,SAAS;yCAvGN,oBAAoB;6CAApB,oBAAoB;CA8GhC"}
|
|
@@ -27,6 +27,7 @@ export declare class TabService {
|
|
|
27
27
|
standard: boolean;
|
|
28
28
|
custom: boolean;
|
|
29
29
|
formIO: boolean;
|
|
30
|
+
widgets: boolean;
|
|
30
31
|
}>;
|
|
31
32
|
constructor(caseTabConfig: CaseTabConfig, caseManagementTabConfig: CaseManagementTabConfig[], formService: FormService, translateService: TranslateService);
|
|
32
33
|
private setInjectedCaseManagementTabs;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAiB,aAAa,EAAc,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAuB,WAAW,EAAC,MAAM,eAAe,CAAC;AAChE,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAC,MAAM,MAAM,CAAC;AACrE,OAAO,EAAC,OAAO,EAAC,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAA4B,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;;AAEnF,qBAGa,UAAU;
|
|
1
|
+
{"version":3,"file":"tab.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/tab.service.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAiB,aAAa,EAAc,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAuB,WAAW,EAAC,MAAM,eAAe,CAAC;AAChE,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAC,MAAM,MAAM,CAAC;AACrE,OAAO,EAAC,OAAO,EAAC,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAA4B,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;;AAEnF,qBAGa,UAAU;IAiFiB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAGlE,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IACxC,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IArF5B,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAEnC,OAAO,CAAC,4BAA4B,CAAsD;IAE1F,IAAW,2BAA2B,IAAI,UAAU,CAAC,uBAAuB,EAAE,CAAC,CAE9E;IAED,OAAO,CAAC,YAAY,CAA2D;IAC/E,IAAW,WAAW,IAAI,UAAU,CAAC,OAAO,GAAG,MAAM,CAAC,CAErD;IACD,IAAW,UAAU,CAAC,GAAG,EAAE,OAAO,GAAG,MAAM,EAE1C;IAED,OAAO,CAAC,uBAAuB,CAAqC;IACpE,IAAW,sBAAsB,IAAI,UAAU,CAAC,MAAM,EAAE,CAAC,CAExD;IACD,IAAW,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,EAE/C;IAED,SAAgB,gBAAgB,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAUpD;IAEJ,SAAgB,oBAAoB,8BAQlC;IAEF,SAAgB,YAAY,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,CAQlD;IAEF,SAAgB,eAAe,EAAE,UAAU,CAAC;QAC1C,QAAQ,EAAE,OAAO,CAAC;QAClB,MAAM,EAAE,OAAO,CAAC;QAChB,MAAM,EAAE,OAAO,CAAC;QAChB,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC,CAgBA;gBAGqD,aAAa,EAAE,aAAa,EAGhE,uBAAuB,EAAE,uBAAuB,EAAE,EAClD,WAAW,EAAE,WAAW,EACxB,gBAAgB,EAAE,gBAAgB;IAKrD,OAAO,CAAC,6BAA6B;yCA3F1B,UAAU;6CAAV,UAAU;CAoGtB"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AbstractControl, FormBuilder, FormGroup } from '@angular/forms';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { ListItem } from 'carbon-components-angular';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class WidgetFieldsService {
|
|
6
|
+
private readonly fb;
|
|
7
|
+
private readonly translateService;
|
|
8
|
+
readonly displayTypeItems: ListItem[];
|
|
9
|
+
constructor(fb: FormBuilder, translateService: TranslateService);
|
|
10
|
+
getDisplayItemsSelected(control: AbstractControl): ListItem[];
|
|
11
|
+
onDisplayTypeSelected(mainKeysArray: string[], formGroup: FormGroup, event: {
|
|
12
|
+
item: ListItem;
|
|
13
|
+
}): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFieldsService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetFieldsService>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=widget-fields.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-fields.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/widget-fields.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,eAAe,EAAE,WAAW,EAAE,SAAS,EAAa,MAAM,gBAAgB,CAAC;AACnF,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AAErD,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;;AAEnD,qBAGa,mBAAmB;IA6D5B,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA7DnC,SAAgB,gBAAgB,EAAE,QAAQ,EAAE,CAyD1C;gBAGiB,EAAE,EAAE,WAAW,EACf,gBAAgB,EAAE,gBAAgB;IAG9C,uBAAuB,CAAC,OAAO,EAAE,eAAe,GAAG,QAAQ,EAAE;IAW7D,qBAAqB,CAC1B,aAAa,EAAE,MAAM,EAAE,EACvB,SAAS,EAAE,SAAS,EACpB,KAAK,EAAE;QAAC,IAAI,EAAE,QAAQ,CAAA;KAAC,GACtB,IAAI;yCAhFI,mBAAmB;6CAAnB,mBAAmB;CA0H/B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class WidgetJsonEditorService {
|
|
3
|
+
readonly showPendingModal: import("@angular/core").WritableSignal<boolean>;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetJsonEditorService, never>;
|
|
5
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetJsonEditorService>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=widget-json-editor.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-json-editor.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/widget-json-editor.service.ts"],"names":[],"mappings":";AAkBA,qBAGa,uBAAuB;IAClC,SAAgB,gBAAgB,kDAA0B;yCAD/C,uBAAuB;6CAAvB,uBAAuB;CAEnC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ConfigService } from '@valtimo/config';
|
|
3
|
+
import { CaseWidgetsRes } from '@valtimo/dossier';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class WidgetTabManagementService {
|
|
7
|
+
private readonly http;
|
|
8
|
+
private readonly configService;
|
|
9
|
+
private readonly valtimoEndpointUri;
|
|
10
|
+
constructor(http: HttpClient, configService: ConfigService);
|
|
11
|
+
getWidgetTabConfiguration(caseDefinitionName: string, widgetTabKey: string): Observable<CaseWidgetsRes>;
|
|
12
|
+
updateWidgets(tab: CaseWidgetsRes): Observable<any>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetTabManagementService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetTabManagementService>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=widget-tab-management.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-tab-management.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/widget-tab-management.service.ts"],"names":[],"mappings":"AAeA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEhD,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;;AAEhC,qBAGa,0BAA0B;IAInC,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,aAAa;IAJhC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAS;gBAGzB,IAAI,EAAE,UAAU,EAChB,aAAa,EAAE,aAAa;IAKxC,yBAAyB,CAC9B,kBAAkB,EAAE,MAAM,EAC1B,YAAY,EAAE,MAAM,GACnB,UAAU,CAAC,cAAc,CAAC;IAMtB,aAAa,CAAC,GAAG,EAAE,cAAc,GAAG,UAAU,CAAC,GAAG,CAAC;yCAnB/C,0BAA0B;6CAA1B,0BAA0B;CAyBtC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Signal, WritableSignal } from '@angular/core';
|
|
2
|
+
import { WidgetStyle, WidgetTypeSelection } from '../models';
|
|
3
|
+
import { BasicCaseWidget, CaseWidgetWidth, WidgetContentProperties } from '@valtimo/dossier';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class WidgetWizardService {
|
|
6
|
+
readonly selectedWidget: WritableSignal<WidgetTypeSelection | null>;
|
|
7
|
+
readonly widgetWidth: WritableSignal<CaseWidgetWidth | null>;
|
|
8
|
+
readonly widgetStyle: WritableSignal<WidgetStyle | null>;
|
|
9
|
+
readonly widgetContent: WritableSignal<WidgetContentProperties | null>;
|
|
10
|
+
readonly widgetTitle: WritableSignal<string | null>;
|
|
11
|
+
readonly widgetKey: WritableSignal<string | null>;
|
|
12
|
+
readonly widgetsConfig: Signal<BasicCaseWidget>;
|
|
13
|
+
readonly editMode: WritableSignal<boolean>;
|
|
14
|
+
resetWizard(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetWizardService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetWizardService>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=widget-wizard.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"widget-wizard.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/dossier-management/src/lib/services/widget-wizard.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,MAAM,EAAU,cAAc,EAAC,MAAM,eAAe,CAAC;AACnF,OAAO,EAAC,WAAW,EAAE,mBAAmB,EAAC,MAAM,WAAW,CAAC;AAC3D,OAAO,EACL,eAAe,EAEf,eAAe,EACf,uBAAuB,EACxB,MAAM,kBAAkB,CAAC;;AAG1B,qBAGa,mBAAmB;IAC9B,SAAgB,cAAc,EAAE,cAAc,CAAC,mBAAmB,GAAG,IAAI,CAAC,CAAgB;IAE1F,SAAgB,WAAW,EAAE,cAAc,CAAC,eAAe,GAAG,IAAI,CAAC,CAAgB;IAEnF,SAAgB,WAAW,EAAE,cAAc,CAAC,WAAW,GAAG,IAAI,CAAC,CAAgB;IAE/E,SAAgB,aAAa,EAAE,cAAc,CAAC,uBAAuB,GAAG,IAAI,CAAC,CAAgB;IAE7F,SAAgB,WAAW,EAAE,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAgB;IAE1E,SAAgB,SAAS,EAAE,cAAc,CAAC,MAAM,GAAG,IAAI,CAAC,CAAgB;IAExE,SAAgB,aAAa,EAAE,MAAM,CAAC,eAAe,CAAC,CAOlD;IAEJ,SAAgB,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAiB;IAE3D,WAAW,IAAI,IAAI;yCAxBf,mBAAmB;6CAAnB,mBAAmB;CAiC/B"}
|