qms-angular 1.1.65 → 1.1.67

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.
@@ -16,6 +16,7 @@ export declare class ShapeConnectionDetailModel {
16
16
  shapeLink: ShapeLink[];
17
17
  target: ShapeTarget;
18
18
  attachment: Attachment[];
19
+ complianceRequirementOriginSource: ComplianceRequirement[];
19
20
  constructor(shapeId?: string, flowChartId?: any, description?: ConnectionDescription, fields?: any[], documentAndProcess?: any[], risk?: any[], riskData?: ConnectionRisk, deviation?: any[], checklist?: any[], compliance?: any[], shapeLink?: any[], target?: ShapeTarget);
20
21
  }
21
22
  export declare class ConnectionDescription {
@@ -69,3 +70,12 @@ export declare class Attachment {
69
70
  isDraft: boolean;
70
71
  urlIcon: string;
71
72
  }
73
+ export declare class ComplianceRequirement {
74
+ id: string;
75
+ categoryId: string;
76
+ categoryName?: string;
77
+ complianceId: string;
78
+ complianceName?: string;
79
+ name: string;
80
+ disabled?: boolean;
81
+ }
@@ -125,9 +125,10 @@ export declare class QMSBPMNComponent implements OnInit, OnDestroy, OnChanges {
125
125
  selectShapeFieldConnectionAction(field: ConnectionField, actionType: ShapeConnectionActionEnum): void;
126
126
  removeRelatedItemForShape(item: ActivityRelatedItems, connectionType: ShapeFlowChartConnectionType): void;
127
127
  getAnchorForDocument(documentId: any): void;
128
- changeDocumentAnchorForShape(anchor: Anchor): void;
128
+ changeDocumentAnchorForShape(anchorId: number): void;
129
129
  removeRelatedLinkForShape(item: ShapeLink, connectionType: ShapeFlowChartConnectionType): void;
130
130
  onUpdateDataOther(event: any): void;
131
131
  private filterAnchors;
132
+ isShowAddConnectionTab(): boolean;
132
133
  }
133
134
  export {};
package/lib.theme.scss CHANGED
@@ -28,7 +28,6 @@
28
28
  @import './src/themes/core/chip-input';
29
29
  @import './src/themes/core/qms-label';
30
30
  @import './src/assets/jointjs/scss/bpmn';
31
- @import './src/assets/jointjs/scss/joint-plus';
32
31
  @import './src/themes/core/app-bar';
33
32
  @import './src/themes/core/table';
34
33
  @import './src/themes/core/dialog';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qms-angular",
3
- "version": "1.1.65",
3
+ "version": "1.1.67",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },