@valtimo/decision 13.34.0 → 13.35.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/fesm2022/valtimo-decision.mjs +644 -68
- package/fesm2022/valtimo-decision.mjs.map +1 -1
- package/lib/constants/decision.test-ids.d.ts +7 -0
- package/lib/constants/decision.test-ids.d.ts.map +1 -1
- package/lib/decision-form-modal/decision-form-modal.component.d.ts +38 -0
- package/lib/decision-form-modal/decision-form-modal.component.d.ts.map +1 -0
- package/lib/decision-list/decision-list.component.d.ts +25 -6
- package/lib/decision-list/decision-list.component.d.ts.map +1 -1
- package/lib/decision-modeler/decision-modeler.component.d.ts +21 -6
- package/lib/decision-modeler/decision-modeler.component.d.ts.map +1 -1
- package/lib/decision.module.d.ts +5 -4
- package/lib/decision.module.d.ts.map +1 -1
- package/lib/models/decision.model.d.ts +10 -0
- package/lib/models/decision.model.d.ts.map +1 -1
- package/lib/services/decision.service.d.ts +1 -0
- package/lib/services/decision.service.d.ts.map +1 -1
- package/lib/utils/dmn-template.d.ts +34 -0
- package/lib/utils/dmn-template.d.ts.map +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/public-api.d.ts.map +1 -1
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
export declare const DECISION_LIST_TEST_IDS: {
|
|
2
2
|
readonly uploadButton: "decisionListUploadButton";
|
|
3
|
+
readonly createButton: "decisionListCreateButton";
|
|
3
4
|
};
|
|
4
5
|
export declare const DECISION_UPLOAD_TEST_IDS: {
|
|
5
6
|
readonly submitButton: "decisionUploadModalSubmitButton";
|
|
6
7
|
};
|
|
8
|
+
export declare const DECISION_FORM_TEST_IDS: {
|
|
9
|
+
readonly nameInput: "decisionFormModalNameInput";
|
|
10
|
+
readonly inputVariables: "decisionFormModalInputVariables";
|
|
11
|
+
readonly submitButton: "decisionFormModalSubmitButton";
|
|
12
|
+
};
|
|
7
13
|
export declare const DECISION_MODELER_TEST_IDS: {
|
|
8
14
|
readonly deployButton: "decisionModelerDeployButton";
|
|
9
15
|
readonly backButton: "decisionModelerBackButton";
|
|
16
|
+
readonly readOnlyTag: "decisionModelerReadOnlyTag";
|
|
10
17
|
};
|
|
11
18
|
//# sourceMappingURL=decision.test-ids.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.test-ids.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/constants/decision.test-ids.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"decision.test-ids.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/constants/decision.test-ids.ts"],"names":[],"mappings":"AAgBA,eAAO,MAAM,sBAAsB;;;CAGzB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;CAE3B,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;CAIzB,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;CAI5B,CAAC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormControl } from '@angular/forms';
|
|
3
|
+
import { MultiInputOutput, MultiInputValues } from '@valtimo/components';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { DecisionFormValue } from '../models';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DecisionFormModalComponent {
|
|
8
|
+
private readonly formBuilder;
|
|
9
|
+
titleKey: string;
|
|
10
|
+
submitKey: string;
|
|
11
|
+
submitEvent: EventEmitter<DecisionFormValue>;
|
|
12
|
+
readonly MAX_INPUT_VARIABLES = 100;
|
|
13
|
+
readonly modalOpen$: BehaviorSubject<boolean>;
|
|
14
|
+
readonly defaultInputVariables$: BehaviorSubject<MultiInputValues>;
|
|
15
|
+
/** True when a row has a label but no process variable (the process variable is required). */
|
|
16
|
+
readonly $inputVariablesInvalid: import("@angular/core").WritableSignal<boolean>;
|
|
17
|
+
protected readonly testIds: {
|
|
18
|
+
readonly nameInput: "decisionFormModalNameInput";
|
|
19
|
+
readonly inputVariables: "decisionFormModalInputVariables";
|
|
20
|
+
readonly submitButton: "decisionFormModalSubmitButton";
|
|
21
|
+
};
|
|
22
|
+
readonly form: import("@angular/forms").FormGroup<{
|
|
23
|
+
name: FormControl<string>;
|
|
24
|
+
}>;
|
|
25
|
+
private _inputVariables;
|
|
26
|
+
get name(): FormControl<string>;
|
|
27
|
+
constructor(formBuilder: FormBuilder);
|
|
28
|
+
open(initial?: DecisionFormValue): void;
|
|
29
|
+
/** Convenience used by the "create" trigger, which opens an empty form. */
|
|
30
|
+
openModal(): void;
|
|
31
|
+
closeModal(): void;
|
|
32
|
+
onInputVariablesChange(values: MultiInputOutput): void;
|
|
33
|
+
submit(): void;
|
|
34
|
+
private updateInputVariablesValidity;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DecisionFormModalComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DecisionFormModalComponent, "valtimo-decision-form-modal", never, { "titleKey": { "alias": "titleKey"; "required": false; }; "submitKey": { "alias": "submitKey"; "required": false; }; }, { "submitEvent": "submitEvent"; }, never, never, true, never>;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=decision-form-modal.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"decision-form-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/decision-form-modal/decision-form-modal.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAGL,YAAY,EAIb,MAAM,eAAe,CAAC;AACvB,OAAO,EAAC,WAAW,EAAE,WAAW,EAAkC,MAAM,gBAAgB,CAAC;AAEzF,OAAO,EAEL,gBAAgB,EAChB,gBAAgB,EAGjB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAC,eAAe,EAAC,MAAM,MAAM,CAAC;AAErC,OAAO,EAAC,iBAAiB,EAAwB,MAAM,WAAW,CAAC;;AAEnE,qBAkBa,0BAA0B;IA4BzB,OAAO,CAAC,QAAQ,CAAC,WAAW;IA3BxB,QAAQ,SAAiC;IACzC,SAAS,SAAsB;IAErC,WAAW,kCAAyC;IAE9D,SAAgB,mBAAmB,OAAO;IAE1C,SAAgB,UAAU,2BAAuC;IACjE,SAAgB,sBAAsB,oCAEnC;IAEH,8FAA8F;IAC9F,SAAgB,sBAAsB,kDAA0B;IAEhE,SAAS,CAAC,QAAQ,CAAC,OAAO;;;;MAA0B;IAEpD,SAAgB,IAAI;;OAEjB;IAEH,OAAO,CAAC,eAAe,CAA+B;IAEtD,IAAW,IAAI,IAAI,WAAW,CAAC,MAAM,CAAC,CAErC;gBAE4B,WAAW,EAAE,WAAW;IAE9C,IAAI,CAAC,OAAO,CAAC,EAAE,iBAAiB,GAAG,IAAI;IAe9C,2EAA2E;IACpE,SAAS,IAAI,IAAI;IAIjB,UAAU,IAAI,IAAI;IAUlB,sBAAsB,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAQtD,MAAM,IAAI,IAAI;IAerB,OAAO,CAAC,4BAA4B;yCAnFzB,0BAA0B;2CAA1B,0BAA0B;CA0FtC"}
|
|
@@ -1,39 +1,58 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
|
-
import { Decision } from '../models';
|
|
4
|
+
import { DecisionFormValue, Decision } from '../models';
|
|
5
5
|
import { DecisionService } from '../services/decision.service';
|
|
6
|
-
import {
|
|
6
|
+
import { EditPermissionsService, GlobalNotificationService, ManagementContext } from '@valtimo/shared';
|
|
7
7
|
import { DecisionStateService } from '../services';
|
|
8
8
|
import { DecisionDeployComponent } from '../decision-deploy/decision-deploy.component';
|
|
9
|
+
import { DecisionFormModalComponent } from '../decision-form-modal/decision-form-modal.component';
|
|
10
|
+
import { ActionItem } from '@valtimo/components';
|
|
9
11
|
import { IconService } from 'carbon-components-angular';
|
|
12
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
10
13
|
import * as i0 from "@angular/core";
|
|
11
14
|
export declare class DecisionListComponent {
|
|
12
15
|
private readonly decisionService;
|
|
13
16
|
private readonly iconService;
|
|
14
17
|
private readonly router;
|
|
15
|
-
private readonly configService;
|
|
16
18
|
private readonly stateService;
|
|
17
19
|
private readonly route;
|
|
18
20
|
private readonly cdr;
|
|
19
21
|
private readonly editPermissionsService;
|
|
22
|
+
private readonly notificationService;
|
|
23
|
+
private readonly translateService;
|
|
20
24
|
deploy: DecisionDeployComponent;
|
|
25
|
+
create: DecisionFormModalComponent;
|
|
26
|
+
edit: DecisionFormModalComponent;
|
|
21
27
|
fields: {
|
|
22
28
|
key: string;
|
|
23
29
|
label: string;
|
|
24
30
|
}[];
|
|
31
|
+
readonly ACTION_ITEMS: ActionItem[];
|
|
32
|
+
readonly showDeleteModal$: BehaviorSubject<boolean>;
|
|
25
33
|
readonly loading$: BehaviorSubject<boolean>;
|
|
26
|
-
readonly experimentalEditing$: Observable<boolean>;
|
|
27
34
|
protected readonly testIds: {
|
|
28
35
|
readonly uploadButton: "decisionListUploadButton";
|
|
36
|
+
readonly createButton: "decisionListCreateButton";
|
|
29
37
|
};
|
|
30
38
|
readonly caseManagementRouteParams$: Observable<import("@valtimo/shared").CaseManagementParams>;
|
|
31
39
|
readonly buildingBlockManagementRouteParams$: Observable<import("@valtimo/shared").BuildingBlockManagementParams>;
|
|
32
|
-
readonly context$: Observable<
|
|
40
|
+
readonly context$: Observable<ManagementContext>;
|
|
33
41
|
readonly decisionsLatestVersions$: Observable<Decision[]>;
|
|
34
42
|
readonly hasEditPermissions$: Observable<boolean>;
|
|
35
|
-
|
|
43
|
+
private _editDecision;
|
|
44
|
+
private _editXml;
|
|
45
|
+
private _decisionToDelete;
|
|
46
|
+
private _context;
|
|
47
|
+
constructor(decisionService: DecisionService, iconService: IconService, router: Router, stateService: DecisionStateService, route: ActivatedRoute, cdr: ChangeDetectorRef, editPermissionsService: EditPermissionsService, notificationService: GlobalNotificationService, translateService: TranslateService);
|
|
36
48
|
viewDecisionTable(decision: Decision): void;
|
|
49
|
+
onCreateDecision(value: DecisionFormValue): void;
|
|
50
|
+
openEditModal(decision: Decision): void;
|
|
51
|
+
onEditDecision(value: DecisionFormValue): void;
|
|
52
|
+
onDeleteClick(decision: Decision): void;
|
|
53
|
+
onDeleteConfirm(): void;
|
|
54
|
+
private deployFileForContext;
|
|
55
|
+
private showNotification;
|
|
37
56
|
static ɵfac: i0.ɵɵFactoryDeclaration<DecisionListComponent, never>;
|
|
38
57
|
static ɵcmp: i0.ɵɵComponentDeclaration<DecisionListComponent, "valtimo-decision-list", never, {}, {}, never, never, true, never>;
|
|
39
58
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/decision-list/decision-list.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,iBAAiB,EAAuB,MAAM,eAAe,CAAC;AAEtE,OAAO,EAAC,cAAc,EAAE,MAAM,EAAe,MAAM,iBAAiB,CAAC;AACrE,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAuB,MAAM,MAAM,CAAC;AAC3F,OAAO,EAAC,QAAQ,EAAC,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"decision-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/decision-list/decision-list.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,iBAAiB,EAAuB,MAAM,eAAe,CAAC;AAEtE,OAAO,EAAC,cAAc,EAAE,MAAM,EAAe,MAAM,iBAAiB,CAAC;AACrE,OAAO,EAAC,eAAe,EAAsB,UAAU,EAAuB,MAAM,MAAM,CAAC;AAC3F,OAAO,EAAC,iBAAiB,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAC;AAGtD,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EACL,sBAAsB,EAItB,yBAAyB,EACzB,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAC,oBAAoB,EAAC,MAAM,aAAa,CAAC;AACjD,OAAO,EAAC,uBAAuB,EAAC,MAAM,8CAA8C,CAAC;AACrF,OAAO,EAAC,0BAA0B,EAAC,MAAM,sDAAsD,CAAC;AAEhG,OAAO,EACL,UAAU,EAIX,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAA2B,WAAW,EAAC,MAAM,2BAA2B,CAAC;AAEhF,OAAO,EAAkB,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;;AAEtE,qBAkBa,qBAAqB;IAqF9B,OAAO,CAAC,QAAQ,CAAC,eAAe;IAChC,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ,CAAC,GAAG;IACpB,OAAO,CAAC,QAAQ,CAAC,sBAAsB;IACvC,OAAO,CAAC,QAAQ,CAAC,mBAAmB;IACpC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IA5FN,MAAM,EAAE,uBAAuB,CAAC;IAChC,MAAM,EAAE,0BAA0B,CAAC;IACrC,IAAI,EAAE,0BAA0B,CAAC;IAErD,MAAM;;;QAIX;IAEF,SAAgB,YAAY,EAAE,UAAU,EAAE,CAcxC;IAEF,SAAgB,gBAAgB,2BAAuC;IAEvE,QAAQ,CAAC,QAAQ,2BAAsC;IAEvD,SAAS,CAAC,QAAQ,CAAC,OAAO;;;MAA0B;IAEpD,SAAgB,0BAA0B,6DAA4C;IACtF,SAAgB,mCAAmC,sEACC;IACpD,SAAgB,QAAQ,gCAAoC;IAE5D,QAAQ,CAAC,wBAAwB,yBA8B/B;IAEF,SAAgB,mBAAmB,EAAE,UAAU,CAAC,OAAO,CAAC,CAOtD;IAEF,OAAO,CAAC,aAAa,CAAyB;IAC9C,OAAO,CAAC,QAAQ,CAAuB;IACvC,OAAO,CAAC,iBAAiB,CAAyB;IAClD,OAAO,CAAC,QAAQ,CAAkC;gBAG/B,eAAe,EAAE,eAAe,EAChC,WAAW,EAAE,WAAW,EACxB,MAAM,EAAE,MAAM,EACd,YAAY,EAAE,oBAAoB,EAClC,KAAK,EAAE,cAAc,EACrB,GAAG,EAAE,iBAAiB,EACtB,sBAAsB,EAAE,sBAAsB,EAC9C,mBAAmB,EAAE,yBAAyB,EAC9C,gBAAgB,EAAE,gBAAgB;IAM9C,iBAAiB,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAoB3C,gBAAgB,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;IAwBhD,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAWvC,cAAc,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;IAgB9C,aAAa,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAKvC,eAAe,IAAI,IAAI;IAyB9B,OAAO,CAAC,oBAAoB;IAiC5B,OAAO,CAAC,gBAAgB;yCAzOb,qBAAqB;2CAArB,qBAAqB;CAgPjC"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { DecisionService } from '../services/decision.service';
|
|
2
2
|
import { AfterViewInit, OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
|
-
import { DecisionXml } from '../models';
|
|
4
|
+
import { DecisionFormValue, DecisionXml } from '../models';
|
|
5
|
+
import { DecisionFormModalComponent } from '../decision-form-modal/decision-form-modal.component';
|
|
5
6
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
6
7
|
import { BreadcrumbService, PageHeaderService, PageTitleService, PendingChangesComponent, SelectedValue } from '@valtimo/components';
|
|
7
8
|
import { TranslateService } from '@ngx-translate/core';
|
|
8
9
|
import { IconService } from 'carbon-components-angular';
|
|
9
|
-
import { BuildingBlockManagementParams, CaseManagementParams, EditPermissionsService, GlobalNotificationService, ManagementContext } from '@valtimo/shared';
|
|
10
|
+
import { BuildingBlockManagementParams, CaseManagementParams, DraftVersionService, EditPermissionsService, GlobalNotificationService, ManagementContext } from '@valtimo/shared';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class DecisionModelerComponent extends PendingChangesComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
12
13
|
private readonly decisionService;
|
|
@@ -19,24 +20,32 @@ export declare class DecisionModelerComponent extends PendingChangesComponent im
|
|
|
19
20
|
private readonly pageHeaderService;
|
|
20
21
|
private readonly notificationService;
|
|
21
22
|
private readonly editPermissionsService;
|
|
23
|
+
private readonly draftVersionService;
|
|
24
|
+
edit: DecisionFormModalComponent;
|
|
22
25
|
private CLASS_NAMES;
|
|
23
26
|
protected readonly testIds: {
|
|
24
27
|
readonly deployButton: "decisionModelerDeployButton";
|
|
25
28
|
readonly backButton: "decisionModelerBackButton";
|
|
29
|
+
readonly readOnlyTag: "decisionModelerReadOnlyTag";
|
|
26
30
|
};
|
|
27
31
|
private $container;
|
|
28
32
|
private $tabs;
|
|
29
|
-
private
|
|
33
|
+
private dmnEditor;
|
|
30
34
|
readonly versionSelectionDisabled$: BehaviorSubject<boolean>;
|
|
31
35
|
readonly isCreating$: BehaviorSubject<boolean>;
|
|
32
36
|
readonly selectionId$: BehaviorSubject<string>;
|
|
37
|
+
readonly showDeleteModal$: BehaviorSubject<boolean>;
|
|
38
|
+
private readonly _editorReady$;
|
|
33
39
|
private _fileName;
|
|
40
|
+
private _createSeed;
|
|
41
|
+
private _decisionKey;
|
|
34
42
|
readonly caseManagementRouteParams$: Observable<CaseManagementParams | undefined>;
|
|
35
43
|
readonly buildingBlockManagementRouteParams$: Observable<BuildingBlockManagementParams | undefined>;
|
|
36
44
|
readonly context$: Observable<ManagementContext | null>;
|
|
37
45
|
readonly isIndependent$: Observable<boolean>;
|
|
38
46
|
readonly compactMode$: Observable<boolean>;
|
|
39
47
|
readonly hasEditPermissions$: Observable<boolean>;
|
|
48
|
+
readonly readOnly$: Observable<boolean>;
|
|
40
49
|
private readonly decisionId$;
|
|
41
50
|
readonly decision$: Observable<import("@valtimo/decision").Decision>;
|
|
42
51
|
readonly decisionTitle$: Observable<string>;
|
|
@@ -46,16 +55,22 @@ export declare class DecisionModelerComponent extends PendingChangesComponent im
|
|
|
46
55
|
text: string;
|
|
47
56
|
}[]>;
|
|
48
57
|
readonly decisionXml$: Observable<DecisionXml>;
|
|
49
|
-
constructor(decisionService: DecisionService, route: ActivatedRoute, router: Router, translateService: TranslateService, pageTitleService: PageTitleService, breadcrumbService: BreadcrumbService, iconService: IconService, pageHeaderService: PageHeaderService, notificationService: GlobalNotificationService, editPermissionsService: EditPermissionsService);
|
|
58
|
+
constructor(decisionService: DecisionService, route: ActivatedRoute, router: Router, translateService: TranslateService, pageTitleService: PageTitleService, breadcrumbService: BreadcrumbService, iconService: IconService, pageHeaderService: PageHeaderService, notificationService: GlobalNotificationService, editPermissionsService: EditPermissionsService, draftVersionService: DraftVersionService);
|
|
59
|
+
private extractCreateSeed;
|
|
50
60
|
ngOnInit(): void;
|
|
51
61
|
ngOnDestroy(): void;
|
|
52
62
|
ngAfterViewInit(): void;
|
|
53
63
|
switchVersion(decisionId: string | SelectedValue): void;
|
|
54
64
|
deploy(): void;
|
|
55
65
|
download(): void;
|
|
56
|
-
|
|
66
|
+
openEditModal(): void;
|
|
67
|
+
onEditDecision(value: DecisionFormValue): void;
|
|
68
|
+
onDeleteClick(): void;
|
|
69
|
+
onDeleteConfirm(): void;
|
|
70
|
+
navigateBack(): void;
|
|
57
71
|
private showNotification;
|
|
58
|
-
private
|
|
72
|
+
private initEditor;
|
|
73
|
+
private createEditor;
|
|
59
74
|
private loadEmptyDecisionTable;
|
|
60
75
|
private setTabEvents;
|
|
61
76
|
private setModelerEvents;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision-modeler.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/decision-modeler/decision-modeler.component.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAC7D,OAAO,EAAC,aAAa,EAAa,SAAS,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"decision-modeler.component.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/decision-modeler/decision-modeler.component.ts"],"names":[],"mappings":"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"}
|
package/lib/decision.module.d.ts
CHANGED
|
@@ -6,12 +6,13 @@ import * as i4 from "@angular/common";
|
|
|
6
6
|
import * as i5 from "@angular/forms";
|
|
7
7
|
import * as i6 from "carbon-components-angular";
|
|
8
8
|
import * as i7 from "./decision-deploy/decision-deploy.component";
|
|
9
|
-
import * as i8 from "./decision-
|
|
10
|
-
import * as i9 from "./decision-
|
|
11
|
-
import * as i10 from "./decision-
|
|
9
|
+
import * as i8 from "./decision-form-modal/decision-form-modal.component";
|
|
10
|
+
import * as i9 from "./decision-modeler/decision-modeler.component";
|
|
11
|
+
import * as i10 from "./decision-list/decision-list.component";
|
|
12
|
+
import * as i11 from "./decision-display/decision-display.component";
|
|
12
13
|
export declare class DecisionModule {
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DecisionModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DecisionModule, never, [typeof i1.DecisionRoutingModule, typeof i2.WidgetModule, typeof i3.TranslateModule, typeof i2.ModalModule, typeof i4.CommonModule, typeof i5.FormsModule, typeof i2.SelectModule, typeof i2.SpinnerModule, typeof i2.CarbonListModule, typeof i6.ButtonModule, typeof i6.IconModule, typeof i7.DecisionDeployComponent, typeof i8.
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DecisionModule, never, [typeof i1.DecisionRoutingModule, typeof i2.WidgetModule, typeof i3.TranslateModule, typeof i2.ModalModule, typeof i4.CommonModule, typeof i5.FormsModule, typeof i2.SelectModule, typeof i2.SpinnerModule, typeof i2.CarbonListModule, typeof i6.ButtonModule, typeof i6.IconModule, typeof i7.DecisionDeployComponent, typeof i8.DecisionFormModalComponent, typeof i9.DecisionModelerComponent, typeof i10.DecisionListComponent, typeof i11.DecisionDisplayComponent], [typeof i9.DecisionModelerComponent]>;
|
|
15
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<DecisionModule>;
|
|
16
17
|
}
|
|
17
18
|
//# sourceMappingURL=decision.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/decision/src/lib/decision.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"decision.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/decision/src/lib/decision.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAmCA,qBAqBa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
|
|
@@ -16,4 +16,14 @@ export interface DecisionXml {
|
|
|
16
16
|
id: string;
|
|
17
17
|
dmnXml: string;
|
|
18
18
|
}
|
|
19
|
+
export interface DecisionInputVariable {
|
|
20
|
+
/** Human-readable column header shown in the decision table. */
|
|
21
|
+
label: string;
|
|
22
|
+
/** The process variable / FEEL expression the input column evaluates. */
|
|
23
|
+
expression: string;
|
|
24
|
+
}
|
|
25
|
+
export interface DecisionFormValue {
|
|
26
|
+
name: string;
|
|
27
|
+
inputVariables: DecisionInputVariable[];
|
|
28
|
+
}
|
|
19
29
|
//# sourceMappingURL=decision.model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/models/decision.model.ts"],"names":[],"mappings":"AAgBA,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,gCAAgC,EAAE,MAAM,CAAC;IACzC,iCAAiC,EAAE,MAAM,CAAC;IAC1C,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;CAChB"}
|
|
1
|
+
{"version":3,"file":"decision.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/models/decision.model.ts"],"names":[],"mappings":"AAgBA,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,gCAAgC,EAAE,MAAM,CAAC;IACzC,iCAAiC,EAAE,MAAM,CAAC;IAC1C,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,qBAAqB;IACpC,gEAAgE;IAChE,KAAK,EAAE,MAAM,CAAC;IACd,yEAAyE;IACzE,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,cAAc,EAAE,qBAAqB,EAAE,CAAC;CACzC"}
|
|
@@ -11,6 +11,7 @@ export declare class DecisionService extends BaseApiService {
|
|
|
11
11
|
identifier: string;
|
|
12
12
|
}>;
|
|
13
13
|
getDecisions(): Observable<Decision[]>;
|
|
14
|
+
getUnlinkedDecisions(): Observable<Decision[]>;
|
|
14
15
|
getDecisionById(decisionId: string): Observable<Decision>;
|
|
15
16
|
getLatestDecisionByKey(decisionKey: string): Observable<Decision>;
|
|
16
17
|
getDecisionXml(decisionId: string): Observable<DecisionXml>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"decision.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/services/decision.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAc,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAChC,OAAO,EAAC,cAAc,EAAE,aAAa,EAAkB,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAC,QAAQ,EAAE,WAAW,EAAC,MAAM,WAAW,CAAC;;AAEhD,qBAGa,eAAgB,SAAQ,cAAc;IAE/C,SAAS,CAAC,QAAQ,CAAC,UAAU,EAAE,UAAU;IACzC,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,aAAa;gBAD5B,UAAU,EAAE,UAAU,EACtB,aAAa,EAAE,aAAa;IAK1C,SAAS,CAAC,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAYtD,YAAY,IAAI,UAAU,CAAC,QAAQ,EAAE,CAAC;IAMtC,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAMzD,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAMjE,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC;IAM3D,2BAA2B,CAChC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,GACjB,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQlB,4BAA4B,CACjC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,IAAI,GACR,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAe5B,4BAA4B,CACjC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,EAClB,qBAAqB,EAAE,MAAM,GAC5B,UAAU,CAAC,GAAG,CAAC;IAQX,oCAAoC,CACzC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,GACjB,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQlB,qCAAqC,CAC1C,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,IAAI,GACR,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAe5B,qCAAqC,CAC1C,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,EAClB,qBAAqB,EAAE,MAAM,GAC5B,UAAU,CAAC,GAAG,CAAC;
|
|
1
|
+
{"version":3,"file":"decision.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/services/decision.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAc,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAChC,OAAO,EAAC,cAAc,EAAE,aAAa,EAAkB,MAAM,iBAAiB,CAAC;AAC/E,OAAO,EAAC,QAAQ,EAAE,WAAW,EAAC,MAAM,WAAW,CAAC;;AAEhD,qBAGa,eAAgB,SAAQ,cAAc;IAE/C,SAAS,CAAC,QAAQ,CAAC,UAAU,EAAE,UAAU;IACzC,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,aAAa;gBAD5B,UAAU,EAAE,UAAU,EACtB,aAAa,EAAE,aAAa;IAK1C,SAAS,CAAC,GAAG,EAAE,IAAI,GAAG,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAYtD,YAAY,IAAI,UAAU,CAAC,QAAQ,EAAE,CAAC;IAMtC,oBAAoB,IAAI,UAAU,CAAC,QAAQ,EAAE,CAAC;IAK9C,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAMzD,sBAAsB,CAAC,WAAW,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAMjE,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC;IAM3D,2BAA2B,CAChC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,GACjB,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQlB,4BAA4B,CACjC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,IAAI,GACR,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAe5B,4BAA4B,CACjC,iBAAiB,EAAE,MAAM,EACzB,UAAU,EAAE,MAAM,EAClB,qBAAqB,EAAE,MAAM,GAC5B,UAAU,CAAC,GAAG,CAAC;IAQX,oCAAoC,CACzC,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,GACjB,UAAU,CAAC,QAAQ,EAAE,CAAC;IAQlB,qCAAqC,CAC1C,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,IAAI,GACR,UAAU,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC;IAe5B,qCAAqC,CAC1C,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM,EAClB,qBAAqB,EAAE,MAAM,GAC5B,UAAU,CAAC,GAAG,CAAC;yCA7HP,eAAe;6CAAf,eAAe;CAoI3B"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { DecisionFormValue, DecisionXml } from '../models';
|
|
2
|
+
/**
|
|
3
|
+
* Derives a valid DMN decision key (an XML NCName) from a human-readable name.
|
|
4
|
+
* The decision key doubles as the identifier referenced from a process'
|
|
5
|
+
* business rule task, so it must be a stable, valid identifier.
|
|
6
|
+
*/
|
|
7
|
+
declare function toDecisionKey(name: string): string;
|
|
8
|
+
/**
|
|
9
|
+
* Derives the name of the `.dmn` file that is deployed for a created decision.
|
|
10
|
+
*/
|
|
11
|
+
declare function toDecisionFileName(name: string): string;
|
|
12
|
+
/**
|
|
13
|
+
* Builds a deployable DMN 1.3 decision table seeded with one input column per
|
|
14
|
+
* provided input variable and a single output. Each input column gets its
|
|
15
|
+
* process variable as the input expression and, optionally, a human-readable
|
|
16
|
+
* label as the column header. Seeding this up front means the created table is
|
|
17
|
+
* functional immediately - the user only has to add rules before deploying.
|
|
18
|
+
*/
|
|
19
|
+
declare function createDmnXml({ name, inputVariables }: DecisionFormValue): DecisionXml;
|
|
20
|
+
/**
|
|
21
|
+
* Reads the editable form values (decision name and input columns) from an
|
|
22
|
+
* existing DMN XML document.
|
|
23
|
+
*/
|
|
24
|
+
declare function parseDecisionForm(xml: string): DecisionFormValue;
|
|
25
|
+
/**
|
|
26
|
+
* Patches an existing DMN XML document with a new decision name and set of input
|
|
27
|
+
* columns, while preserving the decision key, outputs, rules and diagram. Input
|
|
28
|
+
* columns are reconciled positionally: existing columns are updated (label +
|
|
29
|
+
* expression), extra columns add an input (and a blank entry to every rule), and
|
|
30
|
+
* removed columns drop the input (and their rule entries).
|
|
31
|
+
*/
|
|
32
|
+
declare function updateDmnXml(xml: string, { name, inputVariables }: DecisionFormValue): string;
|
|
33
|
+
export { createDmnXml, toDecisionKey, toDecisionFileName, parseDecisionForm, updateDmnXml };
|
|
34
|
+
//# sourceMappingURL=dmn-template.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dmn-template.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/decision/src/lib/utils/dmn-template.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,iBAAiB,EAAyB,WAAW,EAAC,MAAM,WAAW,CAAC;AAiBhF;;;;GAIG;AACH,iBAAS,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAS3C;AAED;;GAEG;AACH,iBAAS,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAEhD;AAsBD;;;;;;GAMG;AACH,iBAAS,YAAY,CAAC,EAAC,IAAI,EAAE,cAAc,EAAC,EAAE,iBAAiB,GAAG,WAAW,CAiD5E;AAkBD;;;GAGG;AACH,iBAAS,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,iBAAiB,CAgBzD;AAkDD;;;;;;GAMG;AACH,iBAAS,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,EAAC,IAAI,EAAE,cAAc,EAAC,EAAE,iBAAiB,GAAG,MAAM,CA0DpF;AAED,OAAO,EAAC,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,YAAY,EAAC,CAAC"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ export * from './lib/decision-modeler/decision-modeler.component';
|
|
|
5
5
|
export * from './lib/decision-display/decision-display.component';
|
|
6
6
|
export * from './lib/decision-list/decision-list.component';
|
|
7
7
|
export * from './lib/decision-deploy/decision-deploy.component';
|
|
8
|
+
export * from './lib/decision-form-modal/decision-form-modal.component';
|
|
8
9
|
export * from './lib/constants';
|
|
9
10
|
export * from './lib/utils/decision.utils';
|
|
11
|
+
export * from './lib/utils/dmn-template';
|
|
10
12
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/decision/src/public-api.ts"],"names":[],"mappings":"AAoBA,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC"}
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/decision/src/public-api.ts"],"names":[],"mappings":"AAoBA,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC;AAClE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,yDAAyD,CAAC;AACxE,cAAc,iBAAiB,CAAC;AAChC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC"}
|