qms-angular 1.1.82 → 1.1.83
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 +25 -7
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/model/en.js +6 -2
- package/esm2015/lib/model/nn.js +6 -2
- package/esm2015/lib/model/no.js +6 -2
- package/esm2015/lib/qms-ckeditor-components/common/models/qms-ckeditor-bpmn.model.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/common/models/qms-ckeditor-flowchart.model.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.js +5 -3
- package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-flowchart/qms-ckeditor-flowchart.component.js +5 -3
- package/esm2015/lib/qms-ckeditor-components/models/qms-ckeditor-bpmn-data.model.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +3 -1
- package/fesm2015/qms-angular.js +25 -7
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/model/en.d.ts +4 -0
- package/lib/model/nn.d.ts +4 -0
- package/lib/model/no.d.ts +4 -0
- package/lib/qms-ckeditor-components/common/models/qms-ckeditor-bpmn.model.d.ts +1 -0
- package/lib/qms-ckeditor-components/common/models/qms-ckeditor-flowchart.model.d.ts +1 -0
- package/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.d.ts +1 -0
- package/lib/qms-ckeditor-components/components/qms-ckeditor-flowchart/qms-ckeditor-flowchart.component.d.ts +1 -0
- package/lib/qms-ckeditor-components/models/qms-ckeditor-bpmn-data.model.d.ts +1 -0
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
package/lib/model/en.d.ts
CHANGED
@@ -583,6 +583,10 @@ export declare const en: {
|
|
583
583
|
DELETE_TEMPLATE: string;
|
584
584
|
SAVE_AS_TEMPLATE: string;
|
585
585
|
RESET_TO_LAST_SAVE: string;
|
586
|
+
CHANGE_THEME: string;
|
587
|
+
MODERN: string;
|
588
|
+
DARK: string;
|
589
|
+
MATERIAL: string;
|
586
590
|
};
|
587
591
|
INTERCONNECTED_PROCESSES: string;
|
588
592
|
PLACE_NEXT_TO: string;
|
package/lib/model/nn.d.ts
CHANGED
@@ -583,6 +583,10 @@ export declare const nn: {
|
|
583
583
|
DELETE_TEMPLATE: string;
|
584
584
|
SAVE_AS_TEMPLATE: string;
|
585
585
|
RESET_TO_LAST_SAVE: string;
|
586
|
+
CHANGE_THEME: string;
|
587
|
+
MODERN: string;
|
588
|
+
DARK: string;
|
589
|
+
MATERIAL: string;
|
586
590
|
};
|
587
591
|
INTERCONNECTED_PROCESSES: string;
|
588
592
|
PLACE_NEXT_TO: string;
|
package/lib/model/no.d.ts
CHANGED
@@ -583,6 +583,10 @@ export declare const no: {
|
|
583
583
|
DELETE_TEMPLATE: string;
|
584
584
|
SAVE_AS_TEMPLATE: string;
|
585
585
|
RESET_TO_LAST_SAVE: string;
|
586
|
+
CHANGE_THEME: string;
|
587
|
+
MODERN: string;
|
588
|
+
DARK: string;
|
589
|
+
MATERIAL: string;
|
586
590
|
};
|
587
591
|
INTERCONNECTED_PROCESSES: string;
|
588
592
|
PLACE_NEXT_TO: string;
|
@@ -58,6 +58,7 @@ export declare class QMSCKEditorFlowchartComponent extends QMSCKEditorBaseCompon
|
|
58
58
|
rappid: RappidService;
|
59
59
|
id: string;
|
60
60
|
entityId: string;
|
61
|
+
documentId: number;
|
61
62
|
flowchart: QMSCKEditorFlowchart;
|
62
63
|
flowchartTemplates: QMSCKEditorFlowchartTemplate[];
|
63
64
|
toolbarConfig: any;
|