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.
- package/bundles/qms-angular.umd.js +24 -6
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-bpmn/models/shape-connection-detail.model.js +4 -1
- package/esm2015/lib/components/qms-bpmn/qms-bpmn.component.js +17 -6
- package/fesm2015/qms-angular.js +21 -7
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-bpmn/models/shape-connection-detail.model.d.ts +10 -0
- package/lib/components/qms-bpmn/qms-bpmn.component.d.ts +2 -1
- package/lib.theme.scss +0 -1
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/assets/jointjs/js/joint-plus.js +2 -2
- package/src/assets/jointjs/scss/bpmn.css +829 -829
- package/src/assets/jointjs/scss/joint-plus.min.css +14 -0
- package/src/lib/components/qms-bpmn/qms-bpmn.component.scss +43 -18
- package/src/assets/jointjs/scss/joint-plus.css +0 -8695
@@ -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(
|
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';
|