vcomply-workflow-engine 2.6.19 → 2.6.21

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 (57) hide show
  1. package/bundles/vcomply-workflow-engine.umd.js +420 -612
  2. package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
  3. package/esm2015/lib/add-multiple-responsibility/add-multiple-responsibility.component.js +1 -1
  4. package/esm2015/lib/add-multiple-risk/add-multiple-risk.component.js +1 -1
  5. package/esm2015/lib/confirmation-alert/confirmation-alert.component.js +4 -4
  6. package/esm2015/lib/confirmation-alert/confirmation-alert.component.ngfactory.js +11 -4
  7. package/esm2015/lib/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.js +1 -1
  8. package/esm2015/lib/interfaces/confirmation-alert.js +1 -1
  9. package/esm2015/lib/log-an-issue/log-an-issue.component.js +1 -1
  10. package/esm2015/lib/sharedComponents/assessment-editor/services/editor.service.js +1 -1
  11. package/esm2015/lib/sharedComponents/assessment-editor/services/validator.service.js +6 -4
  12. package/esm2015/lib/sharedComponents/assessment-editor/services/validator.service.ngsummary.json +1 -1
  13. package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.js +3 -8
  14. package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.ngfactory.js +3 -4
  15. package/esm2015/lib/sharedComponents/floating-bar/floating-bar.component.ngsummary.json +1 -1
  16. package/esm2015/lib/sharedComponents/format-and-evidence/format-and-evidence.component.js +1 -1
  17. package/esm2015/lib/sharedComponents/program-listing/program-listing.component.js +40 -220
  18. package/esm2015/lib/sharedComponents/program-listing/program-listing.component.ngfactory.js +70 -78
  19. package/esm2015/lib/sharedComponents/program-listing/program-listing.component.ngsummary.json +1 -1
  20. package/esm2015/lib/sharedComponents/risk-classification/risk-classification.component.js +1 -1
  21. package/esm2015/lib/ui-kit/formgroup/cs-checkbox-indeterminate/cs-checkbox-indeterminate.component.js +1 -1
  22. package/esm2015/lib/workflow-assessment/import-an-assessment/import-an-assessment.component.js +1 -1
  23. package/esm2015/lib/workflow-assessment/workflow-assessment.component.js +1 -1
  24. package/esm2015/lib/workflow-compliance/workflow-compliance.component.js +146 -123
  25. package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngfactory.js +60 -88
  26. package/esm2015/lib/workflow-compliance/workflow-compliance.component.ngsummary.json +1 -1
  27. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.js +14 -3
  28. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngfactory.js +16 -13
  29. package/esm2015/lib/workflow-engine-container/workflow-engine-container.component.ngsummary.json +1 -1
  30. package/esm2015/lib/workflow-engine.module.js +2 -4
  31. package/esm2015/lib/workflow-engine.module.ngfactory.js +1 -1
  32. package/esm2015/lib/workflow-policy/workflow-policy.component.js +1 -1
  33. package/esm2015/lib/workflow-program/create-program-ui/file-pill/file-pill.component.js +1 -1
  34. package/esm2015/lib/workflow-program/create-program-ui/form-field/form-field.component.js +1 -1
  35. package/esm2015/lib/workflow-program/create-program-ui/input-with-pill/input-with-pill.component.js +1 -1
  36. package/esm2015/lib/workflow-program/workflow-program.component.js +1 -1
  37. package/esm2015/lib/workflow-risk/workflow-risk.component.js +3 -3
  38. package/esm2015/lib/workflow-risk/workflow-risk.component.ngfactory.js +38 -39
  39. package/esm2015/lib/workflow-services/responsibility.service.js +3 -8
  40. package/esm2015/lib/workflow-survey-form/workflow-survey-form.component.js +1 -1
  41. package/esm2015/vcomply-workflow-engine.js +188 -189
  42. package/esm2015/vcomply-workflow-engine.ngsummary.json +1 -1
  43. package/fesm2015/vcomply-workflow-engine.js +229 -397
  44. package/fesm2015/vcomply-workflow-engine.js.map +1 -1
  45. package/lib/interfaces/confirmation-alert.d.ts +1 -0
  46. package/lib/sharedComponents/assessment-editor/services/validator.service.d.ts +1 -0
  47. package/lib/sharedComponents/floating-bar/floating-bar.component.d.ts +0 -2
  48. package/lib/sharedComponents/program-listing/program-listing.component.d.ts +1 -54
  49. package/lib/workflow-compliance/workflow-compliance.component.d.ts +103 -16
  50. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  51. package/lib/workflow-services/responsibility.service.d.ts +1 -1
  52. package/package.json +2 -2
  53. package/vcomply-workflow-engine.d.ts +187 -188
  54. package/vcomply-workflow-engine.metadata.json +1 -1
  55. package/esm2015/lib/sharedComponents/pipes/spaceTrim.pipe.js +0 -14
  56. package/esm2015/lib/sharedComponents/pipes/spaceTrim.pipe.ngsummary.json +0 -1
  57. package/lib/sharedComponents/pipes/spaceTrim.pipe.d.ts +0 -4
@@ -1,14 +0,0 @@
1
- import { Pipe } from '@angular/core';
2
- export class SpaceTrimPipe {
3
- transform(value, ...args) {
4
- let text = value;
5
- return text === null || text === void 0 ? void 0 : text.replace(/\ /g, '').trim();
6
- }
7
- }
8
- SpaceTrimPipe.decorators = [
9
- { type: Pipe, args: [{
10
- name: 'spaceTrim',
11
- pure: false
12
- },] }
13
- ];
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3BhY2VUcmltLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy92eC13b3JrZmxvdy1lbmdpbmUvc3JjL2xpYi9zaGFyZWRDb21wb25lbnRzL3BpcGVzL3NwYWNlVHJpbS5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBT3BELE1BQU0sT0FBTyxhQUFhO0lBRXhCLFNBQVMsQ0FBQyxLQUFVLEVBQUUsR0FBRyxJQUFXO1FBQ2xDLElBQUksSUFBSSxHQUFHLEtBQUssQ0FBQztRQUNqQixPQUFPLElBQUksYUFBSixJQUFJLHVCQUFKLElBQUksQ0FBRSxPQUFPLENBQUMsVUFBVSxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsQ0FBQztJQUM5QyxDQUFDOzs7WUFURixJQUFJLFNBQUM7Z0JBQ0osSUFBSSxFQUFFLFdBQVc7Z0JBQ2pCLElBQUksRUFBQyxLQUFLO2FBQ1giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5cclxuQFBpcGUoe1xyXG4gIG5hbWU6ICdzcGFjZVRyaW0nLFxyXG4gIHB1cmU6ZmFsc2VcclxufSlcclxuZXhwb3J0IGNsYXNzIFNwYWNlVHJpbVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcclxuXHJcbiAgdHJhbnNmb3JtKHZhbHVlOiBhbnksIC4uLmFyZ3M6IGFueVtdKTogYW55IHtcclxuICAgIGxldCB0ZXh0ID0gdmFsdWU7XHJcbiAgICByZXR1cm4gdGV4dD8ucmVwbGFjZSgvXFwmbmJzcDsvZywgJycpLnRyaW0oKTtcclxuICB9XHJcblxyXG59XHJcbiJdfQ==
@@ -1 +0,0 @@
1
- {"moduleName":null,"summaries":[{"symbol":{"__symbol":0,"members":[]},"metadata":{"__symbolic":"class","members":{"transform":[{"__symbolic":"method"}]}},"type":{"summaryKind":0,"type":{"reference":{"__symbol":0,"members":[]},"diDeps":[],"lifecycleHooks":[]},"name":"spaceTrim","pure":false}}],"symbols":[{"__symbol":0,"name":"SpaceTrimPipe","filePath":"./spaceTrim.pipe"}]}
@@ -1,4 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- export declare class SpaceTrimPipe implements PipeTransform {
3
- transform(value: any, ...args: any[]): any;
4
- }