@valtimo/process-link 0.0.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.
Files changed (86) hide show
  1. package/README.md +32 -0
  2. package/fesm2022/valtimo-process-link.mjs +2985 -0
  3. package/fesm2022/valtimo-process-link.mjs.map +1 -0
  4. package/index.d.ts +6 -0
  5. package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts +12 -0
  6. package/lib/components/choose-process-link-type/choose-process-link-type.component.d.ts.map +1 -0
  7. package/lib/components/choose-process-link-type/index.d.ts +2 -0
  8. package/lib/components/choose-process-link-type/index.d.ts.map +1 -0
  9. package/lib/components/form-display-configuration/form-display-configuration.component.d.ts +42 -0
  10. package/lib/components/form-display-configuration/form-display-configuration.component.d.ts.map +1 -0
  11. package/lib/components/form-flow/form-flow.component.d.ts +54 -0
  12. package/lib/components/form-flow/form-flow.component.d.ts.map +1 -0
  13. package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts +30 -0
  14. package/lib/components/form-flow-configuration-container/form-flow-configuration-container.component.d.ts.map +1 -0
  15. package/lib/components/form-flow-configuration-container/index.d.ts +2 -0
  16. package/lib/components/form-flow-configuration-container/index.d.ts.map +1 -0
  17. package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts +34 -0
  18. package/lib/components/form-link-process-diagram/form-link-process-diagram.component.d.ts.map +1 -0
  19. package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts +48 -0
  20. package/lib/components/import-plugin-configuration/import-plugin-configuration.component.d.ts.map +1 -0
  21. package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts +39 -0
  22. package/lib/components/plugin-action-configuration/plugin-action-configuration.component.d.ts.map +1 -0
  23. package/lib/components/process-link/process-link.component.d.ts +14 -0
  24. package/lib/components/process-link/process-link.component.d.ts.map +1 -0
  25. package/lib/components/process-link-modal/process-link-modal.component.d.ts +38 -0
  26. package/lib/components/process-link-modal/process-link-modal.component.d.ts.map +1 -0
  27. package/lib/components/select-form/index.d.ts +2 -0
  28. package/lib/components/select-form/index.d.ts.map +1 -0
  29. package/lib/components/select-form/select-form.component.d.ts +42 -0
  30. package/lib/components/select-form/select-form.component.d.ts.map +1 -0
  31. package/lib/components/select-form-flow/index.d.ts +2 -0
  32. package/lib/components/select-form-flow/index.d.ts.map +1 -0
  33. package/lib/components/select-form-flow/select-form-flow.component.d.ts +40 -0
  34. package/lib/components/select-form-flow/select-form-flow.component.d.ts.map +1 -0
  35. package/lib/components/select-plugin-action/select-plugin-action.component.d.ts +29 -0
  36. package/lib/components/select-plugin-action/select-plugin-action.component.d.ts.map +1 -0
  37. package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts +29 -0
  38. package/lib/components/select-plugin-configuration/select-plugin-configuration.component.d.ts.map +1 -0
  39. package/lib/components/select-ui-component/select-ui-component.component.d.ts +28 -0
  40. package/lib/components/select-ui-component/select-ui-component.component.d.ts.map +1 -0
  41. package/lib/constants/index.d.ts +3 -0
  42. package/lib/constants/index.d.ts.map +1 -0
  43. package/lib/constants/injection-tokens.d.ts +6 -0
  44. package/lib/constants/injection-tokens.d.ts.map +1 -0
  45. package/lib/constants/process.link.d.ts +5 -0
  46. package/lib/constants/process.link.d.ts.map +1 -0
  47. package/lib/models/form-custom-component.model.d.ts +16 -0
  48. package/lib/models/form-custom-component.model.d.ts.map +1 -0
  49. package/lib/models/form-flow.model.d.ts +18 -0
  50. package/lib/models/form-flow.model.d.ts.map +1 -0
  51. package/lib/models/form-link.model.d.ts +57 -0
  52. package/lib/models/form-link.model.d.ts.map +1 -0
  53. package/lib/models/index.d.ts +5 -0
  54. package/lib/models/index.d.ts.map +1 -0
  55. package/lib/models/process-link-url.model.d.ts +5 -0
  56. package/lib/models/process-link-url.model.d.ts.map +1 -0
  57. package/lib/models/process-link.model.d.ts +178 -0
  58. package/lib/models/process-link.model.d.ts.map +1 -0
  59. package/lib/process-link-routing.module.d.ts +8 -0
  60. package/lib/process-link-routing.module.d.ts.map +1 -0
  61. package/lib/process-link.module.d.ts +28 -0
  62. package/lib/process-link.module.d.ts.map +1 -0
  63. package/lib/services/form-flow-component.service.d.ts +13 -0
  64. package/lib/services/form-flow-component.service.d.ts.map +1 -0
  65. package/lib/services/form-flow.service.d.ts +20 -0
  66. package/lib/services/form-flow.service.d.ts.map +1 -0
  67. package/lib/services/index.d.ts +10 -0
  68. package/lib/services/index.d.ts.map +1 -0
  69. package/lib/services/plugin-state.service.d.ts +29 -0
  70. package/lib/services/plugin-state.service.d.ts.map +1 -0
  71. package/lib/services/process-link-button.service.d.ts +37 -0
  72. package/lib/services/process-link-button.service.d.ts.map +1 -0
  73. package/lib/services/process-link-state.service.d.ts +66 -0
  74. package/lib/services/process-link-state.service.d.ts.map +1 -0
  75. package/lib/services/process-link-step.service.d.ts +44 -0
  76. package/lib/services/process-link-step.service.d.ts.map +1 -0
  77. package/lib/services/process-link.service.d.ts +28 -0
  78. package/lib/services/process-link.service.d.ts.map +1 -0
  79. package/lib/services/url-resolver.service.d.ts +7 -0
  80. package/lib/services/url-resolver.service.d.ts.map +1 -0
  81. package/lib/services/url-validator.service.d.ts +11 -0
  82. package/lib/services/url-validator.service.d.ts.map +1 -0
  83. package/package.json +24 -0
  84. package/public-api.d.ts +12 -0
  85. package/public-api.d.ts.map +1 -0
  86. package/valtimo-process-link.d.ts.map +1 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select-ui-component.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/process-link/src/lib/components/select-ui-component/select-ui-component.component.ts"],"names":[],"mappings":"AAgBA,OAAO,EAIL,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAIL,UAAU,EAKX,MAAM,MAAM,CAAC;AACd,OAAO,EACL,yBAAyB,EAG1B,MAAM,cAAc,CAAC;AACtB,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AACnD,OAAO,EACL,wBAAwB,EACxB,kBAAkB,EAClB,uBAAuB,EACxB,MAAM,gBAAgB,CAAC;;AAGxB,qBAOa,0BAA2B,YAAW,MAAM,EAAE,SAAS;IA4BhE,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IAGnC,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAhC5C,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CAEtC;IAEN,SAAgB,6BAA6B,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAgBxE;IAEF,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAsB;IAErD,OAAO,CAAC,wBAAwB,CAAW;gBAGxB,YAAY,EAAE,uBAAuB,EACrC,aAAa,EAAE,wBAAwB,EACvC,kBAAkB,EAAE,kBAAkB,EAGtC,yBAAyB,EAAE,yBAAyB;IAKhE,QAAQ,IAAI,IAAI;IAKhB,WAAW,IAAI,IAAI;IAInB,qBAAqB,CAAC,uBAAuB,EAAE,QAAQ,GAAG,IAAI;IAOrE,OAAO,CAAC,0BAA0B;IAQlC,OAAO,CAAC,0BAA0B;IASlC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,iBAAiB;IAoBzB,OAAO,CAAC,kBAAkB;yCAjGf,0BAA0B;2CAA1B,0BAA0B;CA2HtC"}
@@ -0,0 +1,3 @@
1
+ export * from './injection-tokens';
2
+ export * from './process.link';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/constants/index.ts"],"names":[],"mappings":"AAgBA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { FormCustomComponentConfig, FormFlowCustomComponentDefinition } from '../models';
3
+ declare const FORM_FLOW_COMPONENT_TOKEN: InjectionToken<FormFlowCustomComponentDefinition[]>;
4
+ declare const FORM_CUSTOM_COMPONENT_TOKEN: InjectionToken<FormCustomComponentConfig>;
5
+ export { FORM_FLOW_COMPONENT_TOKEN, FORM_CUSTOM_COMPONENT_TOKEN };
6
+ //# sourceMappingURL=injection-tokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"injection-tokens.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/constants/injection-tokens.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,yBAAyB,EAAE,iCAAiC,EAAC,MAAM,WAAW,CAAC;AAEvF,QAAA,MAAM,yBAAyB,qDAG9B,CAAC;AAEF,QAAA,MAAM,2BAA2B,2CAEhC,CAAC;AAEF,OAAO,EAAC,yBAAyB,EAAE,2BAA2B,EAAC,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { FormSize } from '../models';
2
+ import { CarbonModalSize } from '@valtimo/components';
3
+ declare const formSizeToCarbonModalSizeMap: Record<FormSize, CarbonModalSize>;
4
+ export { formSizeToCarbonModalSizeMap };
5
+ //# sourceMappingURL=process.link.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process.link.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/constants/process.link.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,QAAQ,EAAC,MAAM,WAAW,CAAC;AACnC,OAAO,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC;AAEpD,QAAA,MAAM,4BAA4B,EAAE,MAAM,CAAC,QAAQ,EAAE,eAAe,CAKnE,CAAC;AAEF,OAAO,EAAC,4BAA4B,EAAC,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { EventEmitter, Type } from '@angular/core';
2
+ interface FormCustomComponent {
3
+ taskInstanceId: string | null;
4
+ processDefinitionKey: string | null;
5
+ documentDefinitionName: string | null;
6
+ submittedEvent: EventEmitter<any>;
7
+ }
8
+ interface FormCustomComponentDefinition {
9
+ id: string;
10
+ component: FormCustomComponent;
11
+ }
12
+ interface FormCustomComponentConfig {
13
+ [id: string]: Type<FormCustomComponentDefinition>;
14
+ }
15
+ export { FormCustomComponent, FormCustomComponentDefinition, FormCustomComponentConfig };
16
+ //# sourceMappingURL=form-custom-component.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-custom-component.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/form-custom-component.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,YAAY,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AAEjD,UAAU,mBAAmB;IAC3B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC,cAAc,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;CACnC;AAED,UAAU,6BAA6B;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,mBAAmB,CAAC;CAChC;AAED,UAAU,yBAAyB;IACjC,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC,6BAA6B,CAAC,CAAC;CACnD;AAED,OAAO,EAAC,mBAAmB,EAAE,6BAA6B,EAAE,yBAAyB,EAAC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { EventEmitter, Type } from '@angular/core';
2
+ import { FormioSubmission } from '@valtimo/components';
3
+ interface ChangeEvent {
4
+ data: object;
5
+ }
6
+ interface FormFlowCustomComponent {
7
+ formFlowInstanceId: string;
8
+ componentId?: string;
9
+ disabled: boolean;
10
+ changeEvent: EventEmitter<ChangeEvent>;
11
+ submitEvent: EventEmitter<FormioSubmission>;
12
+ }
13
+ interface FormFlowCustomComponentDefinition {
14
+ id: string;
15
+ component: Type<FormFlowCustomComponent>;
16
+ }
17
+ export { FormFlowCustomComponentDefinition, FormFlowCustomComponent, ChangeEvent };
18
+ //# sourceMappingURL=form-flow.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-flow.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/form-flow.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,YAAY,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AACjD,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AAErD,UAAU,WAAW;IACnB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,uBAAuB;IAC/B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC;IACvC,WAAW,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAC;CAC7C;AAED,UAAU,iCAAiC;IACzC,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,IAAI,CAAC,uBAAuB,CAAC,CAAC;CAC1C;AAED,OAAO,EAAC,iCAAiC,EAAE,uBAAuB,EAAE,WAAW,EAAC,CAAC"}
@@ -0,0 +1,57 @@
1
+ import { ListItem } from 'carbon-components-angular';
2
+ interface FormSubmissionResult {
3
+ errors: string[];
4
+ documentId?: string;
5
+ }
6
+ interface BpmnElement {
7
+ id: string;
8
+ type: string;
9
+ activityListenerType?: string;
10
+ activityType?: string;
11
+ name?: string;
12
+ }
13
+ interface FormFlowDefinition {
14
+ id: string;
15
+ name: string;
16
+ }
17
+ interface FormFlowInstance {
18
+ id: string;
19
+ step?: FormFlowStep;
20
+ }
21
+ interface FormFlowCreateRequest {
22
+ documentId: string | null;
23
+ documentDefinitionName: string | null;
24
+ }
25
+ interface FormFlowCreateResult {
26
+ formFlowInstanceId: string;
27
+ }
28
+ type FormFlowStepType = 'form' | 'custom-component';
29
+ interface FormFlowStep {
30
+ id: string;
31
+ type: FormFlowStepType;
32
+ typeProperties: FormTypeProperties;
33
+ }
34
+ interface FormTypeProperties {
35
+ definition?: any;
36
+ id?: string;
37
+ }
38
+ interface ModalParams {
39
+ element: BpmnElement;
40
+ processDefinitionKey: string;
41
+ processDefinitionId: string;
42
+ }
43
+ interface FormDefinitionListItem extends ListItem {
44
+ id: string;
45
+ }
46
+ interface FormFlowBreadcrumbs extends ListItem {
47
+ currentStepIndex: number;
48
+ breadcrumbs: Array<FormFlowBreadcrumb>;
49
+ }
50
+ interface FormFlowBreadcrumb extends ListItem {
51
+ title: string;
52
+ key: string;
53
+ stepInstanceId: string;
54
+ completed: boolean;
55
+ }
56
+ export { FormSubmissionResult, BpmnElement, FormFlowDefinition, FormFlowInstance, FormFlowStepType, FormFlowStep, FormTypeProperties, FormFlowCreateResult, FormFlowCreateRequest, ModalParams, FormDefinitionListItem, FormFlowBreadcrumbs, FormFlowBreadcrumb, };
57
+ //# sourceMappingURL=form-link.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-link.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/form-link.model.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,QAAQ,EAAC,MAAM,2BAA2B,CAAC;AAEnD,UAAU,oBAAoB;IAC5B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,UAAU,WAAW;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,UAAU,kBAAkB;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,gBAAgB;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,YAAY,CAAC;CACrB;AAED,UAAU,qBAAqB;IAC7B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;CACvC;AAED,UAAU,oBAAoB;IAC5B,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAED,KAAK,gBAAgB,GAAG,MAAM,GAAG,kBAAkB,CAAC;AAEpD,UAAU,YAAY;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,gBAAgB,CAAC;IACvB,cAAc,EAAE,kBAAkB,CAAC;CACpC;AAED,UAAU,kBAAkB;IAC1B,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED,UAAU,WAAW;IACnB,OAAO,EAAE,WAAW,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,mBAAmB,EAAE,MAAM,CAAC;CAC7B;AAED,UAAU,sBAAuB,SAAQ,QAAQ;IAC/C,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,UAAU,mBAAoB,SAAQ,QAAQ;IAC5C,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;CACxC;AAED,UAAU,kBAAmB,SAAQ,QAAQ;IAC3C,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,OAAO,EACL,oBAAoB,EACpB,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,YAAY,EACZ,kBAAkB,EAClB,oBAAoB,EACpB,qBAAqB,EACrB,WAAW,EACX,sBAAsB,EACtB,mBAAmB,EACnB,kBAAkB,GACnB,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from './form-link.model';
2
+ export * from './process-link.model';
3
+ export * from './form-flow.model';
4
+ export * from './form-custom-component.model';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,mBAAmB,CAAC;AAClC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,+BAA+B,CAAC"}
@@ -0,0 +1,5 @@
1
+ interface URLVariables {
2
+ variables: Map<string, string>;
3
+ }
4
+ export { URLVariables };
5
+ //# sourceMappingURL=process-link-url.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link-url.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/process-link-url.model.ts"],"names":[],"mappings":"AAgBA,UAAU,YAAY;IACpB,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAChC;AAED,OAAO,EAAC,YAAY,EAAC,CAAC"}
@@ -0,0 +1,178 @@
1
+ import { ProcessInstanceTask } from '@valtimo/process';
2
+ interface ProcessLink {
3
+ id: string;
4
+ processDefinitionId: string;
5
+ activityId: string;
6
+ activityType: string;
7
+ processLinkType: string;
8
+ pluginConfigurationId?: string;
9
+ pluginActionDefinitionKey?: string;
10
+ actionProperties?: {
11
+ [key: string]: any;
12
+ };
13
+ formDefinitionId?: string;
14
+ formFlowDefinitionKey?: string;
15
+ viewModelEnabled?: boolean;
16
+ url?: string;
17
+ formDisplayType?: FormDisplayType;
18
+ formSize?: FormSize;
19
+ subtitles?: string[];
20
+ componentKey?: string;
21
+ }
22
+ type GetProcessLinkResponse = Array<ProcessLink>;
23
+ interface GetProcessLinkRequest {
24
+ activityId?: string;
25
+ processDefinitionId: string;
26
+ }
27
+ interface ProcessLinkType {
28
+ enabled: boolean;
29
+ processLinkType: string;
30
+ }
31
+ type ProcessLinkConfigurationStep = 'chooseProcessLinkType' | 'choosePluginConfiguration' | 'choosePluginAction' | 'configurePluginAction' | 'selectForm' | 'selectFormFlow' | 'empty';
32
+ interface FormProcessLinkCreateRequestDto {
33
+ processDefinitionId: string;
34
+ activityId: string;
35
+ activityType: string;
36
+ processLinkType: string;
37
+ formDefinitionId: string;
38
+ viewModelEnabled: boolean;
39
+ formDisplayType?: string;
40
+ formSize?: string;
41
+ subtitles?: string[];
42
+ }
43
+ interface FormFlowProcessLinkCreateRequestDto {
44
+ processDefinitionId: string;
45
+ activityId: string;
46
+ activityType: string;
47
+ processLinkType: string;
48
+ formFlowDefinitionKey: string;
49
+ subtitles: string[];
50
+ }
51
+ interface PluginProcessLinkCreateDto {
52
+ processDefinitionId: string;
53
+ activityId: string;
54
+ activityType: string;
55
+ processLinkType: string;
56
+ pluginConfigurationId: string;
57
+ pluginActionDefinitionKey: string;
58
+ actionProperties: object;
59
+ }
60
+ interface PluginProcessLinkUpdateDto {
61
+ id: string;
62
+ activityId: string;
63
+ pluginConfigurationId: string;
64
+ pluginActionDefinitionKey: string;
65
+ actionProperties: {
66
+ [key: string]: any;
67
+ };
68
+ }
69
+ interface FormFlowProcessLinkUpdateRequestDto {
70
+ id: string;
71
+ activityId: string;
72
+ formFlowDefinitionId: string;
73
+ formDisplayType?: string;
74
+ formSize?: string;
75
+ }
76
+ interface FormProcessLinkUpdateRequestDto {
77
+ id: string;
78
+ activityId: string;
79
+ formDefinitionId: string;
80
+ viewModelEnabled: boolean;
81
+ formDisplayType?: string;
82
+ formSize?: string;
83
+ subtitles?: string[];
84
+ }
85
+ type FormDisplayType = 'modal' | 'panel';
86
+ type FormSize = 'extraSmall' | 'small' | 'medium' | 'large';
87
+ interface UIComponentProcessLinkCreateRequestDto {
88
+ componentKey: string;
89
+ activityId: string;
90
+ activityType: string;
91
+ processLinkType: string;
92
+ processDefinitionId: string;
93
+ }
94
+ interface UIComponentProcessLinkUpdateRequestDto {
95
+ id: string;
96
+ componentKey: string;
97
+ activityId: string;
98
+ }
99
+ interface URLProcessLinkCreateDto {
100
+ url: string;
101
+ activityId: string;
102
+ activityType: string;
103
+ processLinkType: string;
104
+ }
105
+ interface URLProcessLinkUpdateRequestDto {
106
+ url: string;
107
+ id: string;
108
+ activityId: string;
109
+ }
110
+ interface UIComponentProcessLinkCreateRequestDto {
111
+ componentKey: string;
112
+ activityId: string;
113
+ activityType: string;
114
+ processLinkType: string;
115
+ processDefinitionId: string;
116
+ }
117
+ interface UIComponentProcessLinkUpdateRequestDto {
118
+ id: string;
119
+ componentKey: string;
120
+ }
121
+ type TaskProcessLinkType = 'form' | 'form-flow' | 'form-view-model' | 'url' | 'ui-component';
122
+ interface TaskProcessLinkResult {
123
+ processLinkId: string;
124
+ type: TaskProcessLinkType;
125
+ properties: {
126
+ formFlowInstanceId?: string;
127
+ formDefinitionId?: string;
128
+ prefilledForm?: any;
129
+ formDefinition?: any;
130
+ formName?: string;
131
+ url?: string;
132
+ formDisplayType?: FormDisplayType;
133
+ formSize?: FormSize;
134
+ componentKey?: string;
135
+ };
136
+ }
137
+ interface TaskWithProcessLink {
138
+ task: ProcessInstanceTask;
139
+ processLinkActivityResult: TaskProcessLinkResult;
140
+ }
141
+ type ProcessLinkUpdateEvent = PluginProcessLinkUpdateDto | FormFlowProcessLinkUpdateRequestDto | FormProcessLinkUpdateRequestDto | URLProcessLinkUpdateRequestDto | UIComponentProcessLinkUpdateRequestDto;
142
+ interface ProcessLinkDeleteEvent {
143
+ activityId: string;
144
+ }
145
+ interface CompatibleProcessVersion {
146
+ version: string;
147
+ processLinks: ProcessLink[];
148
+ }
149
+ interface CompatiblePluginProcessLinks {
150
+ processDefinitionKey: string;
151
+ versions: CompatibleProcessVersion[];
152
+ }
153
+ type ProcessLinkCreateEvent = FormProcessLinkCreateRequestDto | FormFlowProcessLinkCreateRequestDto | PluginProcessLinkCreateDto | URLProcessLinkCreateDto | UIComponentProcessLinkCreateRequestDto;
154
+ interface ProcessLinkDeleteEvent {
155
+ activityId: string;
156
+ }
157
+ declare enum ProcessLinkEditMode {
158
+ SAVE_TO_BACKEND = 0,
159
+ EMIT_EVENTS = 1
160
+ }
161
+ interface CompatibleProcessVersion {
162
+ version: string;
163
+ processLinks: ProcessLink[];
164
+ }
165
+ interface CompatiblePluginProcessLinks {
166
+ processDefinitionKey: string;
167
+ versions: CompatibleProcessVersion[];
168
+ }
169
+ interface CompatibleProcessVersion {
170
+ version: string;
171
+ processLinks: ProcessLink[];
172
+ }
173
+ interface CompatiblePluginProcessLinks {
174
+ processDefinitionKey: string;
175
+ versions: CompatibleProcessVersion[];
176
+ }
177
+ export { CompatiblePluginProcessLinks, CompatibleProcessVersion, FormDisplayType, FormFlowProcessLinkCreateRequestDto, FormFlowProcessLinkUpdateRequestDto, FormProcessLinkCreateRequestDto, FormProcessLinkUpdateRequestDto, FormSize, GetProcessLinkRequest, GetProcessLinkResponse, PluginProcessLinkCreateDto, PluginProcessLinkUpdateDto, ProcessLink, ProcessLinkConfigurationStep, ProcessLinkCreateEvent, ProcessLinkDeleteEvent, ProcessLinkEditMode, ProcessLinkType, ProcessLinkUpdateEvent, TaskProcessLinkResult, TaskProcessLinkType, TaskWithProcessLink, UIComponentProcessLinkCreateRequestDto, UIComponentProcessLinkUpdateRequestDto, URLProcessLinkCreateDto, URLProcessLinkUpdateRequestDto, };
178
+ //# sourceMappingURL=process-link.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link.model.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/models/process-link.model.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class ProcessLinkRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessLinkRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProcessLinkRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProcessLinkRoutingModule>;
7
+ }
8
+ //# sourceMappingURL=process-link-routing.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link-routing.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/process-link/src/lib/process-link-routing.module.ts"],"names":[],"mappings":";;AA+BA,qBAKa,wBAAwB;yCAAxB,wBAAwB;0CAAxB,wBAAwB;0CAAxB,wBAAwB;CAAG"}
@@ -0,0 +1,28 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/process-link/process-link.component";
3
+ import * as i2 from "./components/form-link-process-diagram/form-link-process-diagram.component";
4
+ import * as i3 from "./components/select-plugin-configuration/select-plugin-configuration.component";
5
+ import * as i4 from "./components/select-plugin-action/select-plugin-action.component";
6
+ import * as i5 from "./components/plugin-action-configuration/plugin-action-configuration.component";
7
+ import * as i6 from "./components/process-link-modal/process-link-modal.component";
8
+ import * as i7 from "./components/choose-process-link-type/choose-process-link-type.component";
9
+ import * as i8 from "./components/select-form/select-form.component";
10
+ import * as i9 from "./components/form-flow/form-flow.component";
11
+ import * as i10 from "./components/select-form-flow/select-form-flow.component";
12
+ import * as i11 from "./components/form-flow-configuration-container/form-flow-configuration-container.component";
13
+ import * as i12 from "./components/form-display-configuration/form-display-configuration.component";
14
+ import * as i13 from "./components/select-ui-component/select-ui-component.component";
15
+ import * as i14 from "./components/import-plugin-configuration/import-plugin-configuration.component";
16
+ import * as i15 from "@angular/common";
17
+ import * as i16 from "./process-link-routing.module";
18
+ import * as i17 from "@angular/forms";
19
+ import * as i18 from "@valtimo/components";
20
+ import * as i19 from "@ngx-translate/core";
21
+ import * as i20 from "@valtimo/plugin";
22
+ import * as i21 from "carbon-components-angular";
23
+ export declare class ProcessLinkModule {
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessLinkModule, never>;
25
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProcessLinkModule, [typeof i1.ProcessLinkComponent, typeof i2.FormLinkProcessDiagramComponent, typeof i3.SelectPluginConfigurationComponent, typeof i4.SelectPluginActionComponent, typeof i5.PluginActionConfigurationComponent, typeof i6.ProcessLinkModalComponent, typeof i7.ChooseProcessLinkTypeComponent, typeof i8.SelectFormComponent, typeof i9.FormFlowComponent, typeof i10.SelectFormFlowComponent, typeof i11.FormFlowConfigurationContainerComponent, typeof i12.FormDisplayConfigurationComponent, typeof i13.SelectUIComponentComponent, typeof i14.ImportPluginConfigurationComponent], [typeof i15.CommonModule, typeof i16.ProcessLinkRoutingModule, typeof i17.FormsModule, typeof i17.ReactiveFormsModule, typeof i18.ModalModule, typeof i18.SearchableDropdownSelectModule, typeof i19.TranslateModule, typeof i18.StepperModule, typeof i18.VModalModule, typeof i20.PluginTranslatePipeModule, typeof i18.ParagraphModule, typeof i20.PluginConfigurationContainerModule, typeof i21.ModalModule, typeof i21.ProgressIndicatorModule, typeof i21.ButtonModule, typeof i21.IconModule, typeof i18.TooltipModule, typeof i21.ComboBoxModule, typeof i21.InputModule, typeof i18.TooltipIconModule, typeof i21.LoadingModule, typeof i18.FormIoModule, typeof i18.ValtimoCdsModalDirective, typeof i21.StructuredListModule, typeof i21.TilesModule, typeof i18.RenderInPageHeaderDirective, typeof i21.SelectModule, typeof i21.ToggleModule, typeof i18.CarbonMultiInputModule, typeof i21.LayerModule, typeof i21.ToggletipModule, typeof i21.ComboBoxModule, typeof i19.TranslateModule, typeof i21.LayerModule, typeof i21.ToggletipModule, typeof i18.RemoveClassnamesDirective, typeof i17.ReactiveFormsModule], [typeof i1.ProcessLinkComponent, typeof i3.SelectPluginConfigurationComponent, typeof i4.SelectPluginActionComponent, typeof i5.PluginActionConfigurationComponent, typeof i6.ProcessLinkModalComponent, typeof i9.FormFlowComponent]>;
26
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProcessLinkModule>;
27
+ }
28
+ //# sourceMappingURL=process-link.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link.module.d.ts","sourceRoot":"","sources":["../../../../projects/valtimo/process-link/src/lib/process-link.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAoEA,qBAkEa,iBAAiB;yCAAjB,iBAAiB;0CAAjB,iBAAiB;0CAAjB,iBAAiB;CAAG"}
@@ -0,0 +1,13 @@
1
+ import { Observable } from 'rxjs';
2
+ import { FormFlowCustomComponentDefinition } from '../models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FormFlowComponentService {
5
+ private readonly supportedCustomComponents;
6
+ private readonly _supportedComponents$;
7
+ get supportedComponents$(): Observable<Array<FormFlowCustomComponentDefinition>>;
8
+ constructor(supportedCustomComponents: Array<FormFlowCustomComponentDefinition>);
9
+ private setSupportedComponents;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFlowComponentService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<FormFlowComponentService>;
12
+ }
13
+ //# sourceMappingURL=form-flow-component.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-flow-component.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/form-flow-component.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAA0B,UAAU,EAAC,MAAM,MAAM,CAAC;AACzD,OAAO,EAAC,iCAAiC,EAAC,MAAM,WAAW,CAAC;;AAG5D,qBAGa,wBAAwB;IAUjC,OAAO,CAAC,QAAQ,CAAC,yBAAyB;IAT5C,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CACuC;IAE7E,IAAW,oBAAoB,IAAI,UAAU,CAAC,KAAK,CAAC,iCAAiC,CAAC,CAAC,CAEtF;gBAIkB,yBAAyB,EAAE,KAAK,CAAC,iCAAiC,CAAC;IAKtF,OAAO,CAAC,sBAAsB;yCAfnB,wBAAwB;6CAAxB,wBAAwB;CAoBpC"}
@@ -0,0 +1,20 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { FormFlowBreadcrumbs, FormFlowCreateRequest, FormFlowCreateResult, FormFlowInstance } from '../models';
4
+ import { ConfigService, BaseApiService } from '@valtimo/shared';
5
+ import * as i0 from "@angular/core";
6
+ export declare class FormFlowService extends BaseApiService {
7
+ protected readonly httpClient: HttpClient;
8
+ protected readonly configService: ConfigService;
9
+ constructor(httpClient: HttpClient, configService: ConfigService);
10
+ createInstanceForNewProcess(processDefinitionKey: string, request: FormFlowCreateRequest): Observable<FormFlowCreateResult>;
11
+ getFormFlowStep(formFlowInstanceId: string): Observable<FormFlowInstance>;
12
+ submitStep(formFlowInstanceId: string, stepInstanceId: string, submissionData: any): Observable<FormFlowInstance>;
13
+ back(formFlowInstanceId: string, submissionData: any): Observable<FormFlowInstance>;
14
+ save(formFlowInstanceId: string, submissionData: any): Observable<null>;
15
+ getBreadcrumbs(formFlowInstanceId: string): Observable<FormFlowBreadcrumbs>;
16
+ navigateToStep(instanceId: string, currentStepInstanceId: string, targetStepInstanceId: any, submissionData: any): Observable<FormFlowInstance>;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFlowService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<FormFlowService>;
19
+ }
20
+ //# sourceMappingURL=form-flow.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form-flow.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/form-flow.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAChC,OAAO,EACL,mBAAmB,EACnB,qBAAqB,EACrB,oBAAoB,EAEpB,gBAAgB,EACjB,MAAM,WAAW,CAAC;AACnB,OAAO,EAAC,aAAa,EAAE,cAAc,EAAC,MAAM,iBAAiB,CAAC;;AAE9D,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,2BAA2B,CAChC,oBAAoB,EAAE,MAAM,EAC5B,OAAO,EAAE,qBAAqB,GAC7B,UAAU,CAAC,oBAAoB,CAAC;IAO5B,eAAe,CAAC,kBAAkB,EAAE,MAAM,GAAG,UAAU,CAAC,gBAAgB,CAAC;IAMzE,UAAU,CACf,kBAAkB,EAAE,MAAM,EAC1B,cAAc,EAAE,MAAM,EACtB,cAAc,EAAE,GAAG,GAClB,UAAU,CAAC,gBAAgB,CAAC;IAOxB,IAAI,CAAC,kBAAkB,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,GAAG,UAAU,CAAC,gBAAgB,CAAC;IAOnF,IAAI,CAAC,kBAAkB,EAAE,MAAM,EAAE,cAAc,EAAE,GAAG,GAAG,UAAU,CAAC,IAAI,CAAC;IAOvE,cAAc,CAAC,kBAAkB,EAAE,MAAM,GAAG,UAAU,CAAC,mBAAmB,CAAC;IAM3E,cAAc,CACnB,UAAU,EAAE,MAAM,EAClB,qBAAqB,EAAE,MAAM,EAC7B,oBAAoB,KAAA,EACpB,cAAc,EAAE,GAAG,GAClB,UAAU,CAAC,gBAAgB,CAAC;yCA5DpB,eAAe;6CAAf,eAAe;CAoE3B"}
@@ -0,0 +1,10 @@
1
+ export * from './form-flow.service';
2
+ export * from './plugin-state.service';
3
+ export * from './process-link.service';
4
+ export * from './process-link-state.service';
5
+ export * from './process-link-step.service';
6
+ export * from './process-link-button.service';
7
+ export * from './form-flow-component.service';
8
+ export * from './url-resolver.service';
9
+ export * from './url-validator.service';
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,wBAAwB,CAAC;AACvC,cAAc,yBAAyB,CAAC"}
@@ -0,0 +1,29 @@
1
+ import { Observable } from 'rxjs';
2
+ import { PluginConfiguration, PluginDefinition, PluginFunction, PluginManagementService, PluginService } from '@valtimo/plugin';
3
+ import { ProcessLink } from '../models';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PluginStateService {
6
+ private readonly pluginManagementService;
7
+ private readonly pluginService;
8
+ private readonly _selectedPluginDefinition$;
9
+ private readonly _selectedPluginConfiguration$;
10
+ private readonly _selectedPluginFunction$;
11
+ private readonly _save$;
12
+ private readonly _selectedProcessLink$;
13
+ constructor(pluginManagementService: PluginManagementService, pluginService: PluginService);
14
+ get selectedPluginDefinition$(): Observable<PluginDefinition>;
15
+ get selectedPluginConfiguration$(): Observable<PluginConfiguration>;
16
+ get selectedPluginFunction$(): Observable<PluginFunction>;
17
+ get save$(): Observable<any>;
18
+ get functionKey$(): Observable<string>;
19
+ get pluginDefinitionKey$(): Observable<string>;
20
+ selectPluginDefinition(definition: PluginDefinition): void;
21
+ selectPluginConfiguration(configuration: PluginConfiguration): void;
22
+ selectPluginFunction(pluginFunction: PluginFunction): void;
23
+ selectProcessLink(processLink: ProcessLink): void;
24
+ deselectProcessLink(): void;
25
+ save(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<PluginStateService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<PluginStateService>;
28
+ }
29
+ //# sourceMappingURL=plugin-state.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin-state.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/plugin-state.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAiC,UAAU,EAAyB,MAAM,MAAM,CAAC;AAExF,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACd,uBAAuB,EACvB,aAAa,EACd,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAC,WAAW,EAAC,MAAM,WAAW,CAAC;;AAEtC,qBAGa,kBAAkB;IAU3B,OAAO,CAAC,QAAQ,CAAC,uBAAuB;IACxC,OAAO,CAAC,QAAQ,CAAC,aAAa;IAVhC,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAAoD;IAC/F,OAAO,CAAC,QAAQ,CAAC,6BAA6B,CAE5C;IACF,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAkD;IAC3F,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuB;IAC9C,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAA+C;gBAGlE,uBAAuB,EAAE,uBAAuB,EAChD,aAAa,EAAE,aAAa;IAG/C,IAAI,yBAAyB,IAAI,UAAU,CAAC,gBAAgB,CAAC,CAE5D;IAED,IAAI,4BAA4B,IAAI,UAAU,CAAC,mBAAmB,CAAC,CAElE;IAED,IAAI,uBAAuB,IAAI,UAAU,CAAC,cAAc,CAAC,CAExD;IAED,IAAI,KAAK,IAAI,UAAU,CAAC,GAAG,CAAC,CAE3B;IAED,IAAI,YAAY,IAAI,UAAU,CAAC,MAAM,CAAC,CAQrC;IAED,IAAI,oBAAoB,IAAI,UAAU,CAAC,MAAM,CAAC,CAwB7C;IAED,sBAAsB,CAAC,UAAU,EAAE,gBAAgB,GAAG,IAAI;IAI1D,yBAAyB,CAAC,aAAa,EAAE,mBAAmB,GAAG,IAAI;IAInE,oBAAoB,CAAC,cAAc,EAAE,cAAc,GAAG,IAAI;IAI1D,iBAAiB,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI;IAIjD,mBAAmB,IAAI,IAAI;IAI3B,IAAI,IAAI,IAAI;yCAtFD,kBAAkB;6CAAlB,kBAAkB;CAyF9B"}
@@ -0,0 +1,37 @@
1
+ import { Observable } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ProcessLinkButtonService {
4
+ private readonly _showSaveButton$;
5
+ private readonly _enableSaveButton$;
6
+ private readonly _enableNextButton$;
7
+ private readonly _showBackButton$;
8
+ private readonly _showNextButton$;
9
+ private readonly _backButtonClick$;
10
+ private readonly _saveButtonClick$;
11
+ private readonly _nextButtonClick$;
12
+ get showSaveButton$(): Observable<boolean>;
13
+ get enableSaveButton$(): Observable<boolean>;
14
+ get showNextButton$(): Observable<boolean>;
15
+ get enableNextButton$(): Observable<boolean>;
16
+ get showBackButton$(): Observable<boolean>;
17
+ get backButtonClick$(): Observable<null>;
18
+ get saveButtonClick$(): Observable<null>;
19
+ get nextButtonClick$(): Observable<null>;
20
+ showSaveButton(): void;
21
+ hideSaveButton(): void;
22
+ showNextButton(): void;
23
+ hideNextButton(): void;
24
+ enableNextButton(): void;
25
+ disableNextButton(): void;
26
+ enableSaveButton(): void;
27
+ disableSaveButton(): void;
28
+ showBackButton(): void;
29
+ hideBackButton(): void;
30
+ clickBackButton(): void;
31
+ clickSaveButton(): void;
32
+ clickNextButton(): void;
33
+ resetButtons(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessLinkButtonService, never>;
35
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProcessLinkButtonService>;
36
+ }
37
+ //# sourceMappingURL=process-link-button.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link-button.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/process-link-button.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAkB,UAAU,EAAU,MAAM,MAAM,CAAC;;AAE1D,qBAGa,wBAAwB;IACnC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAuC;IACxE,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAuC;IAC1E,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAAuC;IAC1E,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAuC;IACxE,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAuC;IACxE,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAuB;IACzD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAuB;IACzD,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAuB;IAEzD,IAAI,eAAe,IAAI,UAAU,CAAC,OAAO,CAAC,CAEzC;IACD,IAAI,iBAAiB,IAAI,UAAU,CAAC,OAAO,CAAC,CAE3C;IACD,IAAI,eAAe,IAAI,UAAU,CAAC,OAAO,CAAC,CAEzC;IACD,IAAI,iBAAiB,IAAI,UAAU,CAAC,OAAO,CAAC,CAE3C;IACD,IAAI,eAAe,IAAI,UAAU,CAAC,OAAO,CAAC,CAEzC;IACD,IAAI,gBAAgB,IAAI,UAAU,CAAC,IAAI,CAAC,CAEvC;IACD,IAAI,gBAAgB,IAAI,UAAU,CAAC,IAAI,CAAC,CAEvC;IACD,IAAI,gBAAgB,IAAI,UAAU,CAAC,IAAI,CAAC,CAEvC;IAED,cAAc,IAAI,IAAI;IAItB,cAAc,IAAI,IAAI;IAItB,cAAc,IAAI,IAAI;IAItB,cAAc,IAAI,IAAI;IAItB,gBAAgB,IAAI,IAAI;IAIxB,iBAAiB,IAAI,IAAI;IAIzB,gBAAgB,IAAI,IAAI;IAIxB,iBAAiB,IAAI,IAAI;IAIzB,cAAc,IAAI,IAAI;IAItB,cAAc,IAAI,IAAI;IAItB,eAAe,IAAI,IAAI;IAIvB,eAAe,IAAI,IAAI;IAIvB,eAAe,IAAI,IAAI;IAIvB,YAAY,IAAI,IAAI;yCAvFT,wBAAwB;6CAAxB,wBAAwB;CA8FpC"}
@@ -0,0 +1,66 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { FormCustomComponentConfig, ModalParams, ProcessLink, ProcessLinkCreateEvent, ProcessLinkDeleteEvent, ProcessLinkEditMode, ProcessLinkType, ProcessLinkUpdateEvent } from '../models';
4
+ import { PluginStateService } from './plugin-state.service';
5
+ import { ProcessLinkButtonService } from './process-link-button.service';
6
+ import { ProcessLinkStepService } from './process-link-step.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ProcessLinkStateService implements OnDestroy {
9
+ private readonly processLinkStepService;
10
+ private readonly buttonService;
11
+ private readonly pluginStateService;
12
+ private readonly formCustomComponentConfig;
13
+ private readonly _showModal$;
14
+ private readonly _availableProcessLinkTypes$;
15
+ private readonly _elementName$;
16
+ private readonly _selectedProcessLinkTypeId$;
17
+ private readonly _viewModelEnabled$;
18
+ private readonly _url$;
19
+ private readonly _saving$;
20
+ private readonly _modalParams$;
21
+ private readonly _selectedProcessLink$;
22
+ private readonly _processLinkEditMode$;
23
+ private readonly _processLinkUpdateEvents$;
24
+ private readonly _processLinkCreateEvents$;
25
+ private readonly _processLinkDeleteEvents$;
26
+ get processLinkUpdateEvents$(): Observable<ProcessLinkUpdateEvent>;
27
+ get processLinkCreateEvents$(): Observable<ProcessLinkCreateEvent>;
28
+ get processLinkDeleteEvents$(): Observable<ProcessLinkDeleteEvent>;
29
+ get showModal$(): Observable<boolean>;
30
+ get elementName$(): Observable<string>;
31
+ get availableProcessLinkTypes$(): Observable<ProcessLinkType[]>;
32
+ get hideProgressIndicator$(): Observable<boolean>;
33
+ get selectedProcessLinkTypeId$(): Observable<string>;
34
+ get saving$(): Observable<boolean>;
35
+ get modalParams$(): Observable<ModalParams>;
36
+ get selectedProcessLink$(): Observable<ProcessLink>;
37
+ get typeOfSelectedProcessLink$(): Observable<string>;
38
+ get processLinkEditMode(): ProcessLinkEditMode;
39
+ get viewModelEnabled$(): Observable<boolean>;
40
+ get url$(): Observable<string>;
41
+ private _availableProcessLinkTypesSubscription;
42
+ constructor(processLinkStepService: ProcessLinkStepService, buttonService: ProcessLinkButtonService, pluginStateService: PluginStateService, formCustomComponentConfig: FormCustomComponentConfig);
43
+ ngOnDestroy(): void;
44
+ setAvailableProcessLinkTypes(processLinkTypes: Array<ProcessLinkType>): void;
45
+ setElementName(name: string): void;
46
+ showModal(): void;
47
+ closeModal(): void;
48
+ selectProcessLinkType(processLinkTypeId: string, hasOneOption?: boolean): void;
49
+ setViewModelEnabled(viewModelEnabled: boolean): void;
50
+ clearSelectedProcessLinkType(): void;
51
+ startSaving(): void;
52
+ stopSaving(): void;
53
+ setInitial(): void;
54
+ setModalParams(params: ModalParams): void;
55
+ selectProcessLink(processLink: ProcessLink | undefined): void;
56
+ deselectProcessLink(): void;
57
+ setEditMode(editMode: ProcessLinkEditMode): void;
58
+ sendProcessLinkUpdateEvent(event: ProcessLinkUpdateEvent): void;
59
+ sendProcessLinkCreateEvent(event: ProcessLinkCreateEvent): void;
60
+ sendProcessLinkDeleteEvent(event: ProcessLinkDeleteEvent): void;
61
+ private openAvailableProcessLinkTypesSubscription;
62
+ private reset;
63
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessLinkStateService, [null, null, null, { optional: true; }]>;
64
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProcessLinkStateService>;
65
+ }
66
+ //# sourceMappingURL=process-link-state.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"process-link-state.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/process-link/src/lib/services/process-link-state.service.ts"],"names":[],"mappings":"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"}