qms-angular 1.1.1 → 1.1.4

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 (47) hide show
  1. package/README.md +15 -9
  2. package/bundles/qms-angular.umd.js +56 -15
  3. package/bundles/qms-angular.umd.js.map +1 -1
  4. package/esm2015/lib/components/breadcrumb/model/breadcrumb-node.model.js +1 -1
  5. package/esm2015/lib/components/button/button-toggle.js +1 -1
  6. package/esm2015/lib/components/button/button.js +3 -3
  7. package/esm2015/lib/components/list/list.js +2 -2
  8. package/esm2015/lib/components/related/list-other-related/list-related.component.js +3 -3
  9. package/esm2015/lib/components/related/popup/related-popup.component.js +2 -2
  10. package/esm2015/lib/components/related/sidenav/sidenav.component.js +1 -1
  11. package/esm2015/lib/components/rich-text/rich-text.js +1 -1
  12. package/esm2015/lib/components/select-one/select-one.component.js +2 -2
  13. package/esm2015/lib/components/select-process-document/select-process-document.component.js +2 -2
  14. package/esm2015/lib/components/table/table-action.js +1 -1
  15. package/esm2015/lib/components/upload-file-error-dialog/upload-file-error-dialog.js +5 -2
  16. package/esm2015/lib/directives/dialog/dialog.content.directive.js +27 -1
  17. package/esm2015/lib/model/en.js +5 -1
  18. package/esm2015/lib/model/no.js +5 -1
  19. package/esm2015/lib/qms-angular.module.js +4 -2
  20. package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +1 -1
  21. package/fesm2015/qms-angular.js +55 -16
  22. package/fesm2015/qms-angular.js.map +1 -1
  23. package/lib/components/breadcrumb/model/breadcrumb-node.model.d.ts +1 -0
  24. package/lib/components/upload-file-error-dialog/upload-file-error-dialog.d.ts +6 -0
  25. package/lib/directives/dialog/dialog.content.directive.d.ts +7 -0
  26. package/lib/model/en.d.ts +4 -0
  27. package/lib/model/no.d.ts +4 -0
  28. package/lib.theme.scss +2 -0
  29. package/package.json +5 -5
  30. package/qms-angular.metadata.json +1 -1
  31. package/src/assets/qms-ckeditor-plugin/package-lock.json +601 -151
  32. package/src/lib/components/button/button-toggle.scss +1 -1
  33. package/src/lib/components/list/_list-base.scss +1 -1
  34. package/src/lib/components/related/list-other-related/list-related.component.scss +3 -0
  35. package/src/lib/components/rich-text/rich-text.scss +1 -1
  36. package/src/lib/components/substance-conflict/substance-conflict.component.scss +2 -2
  37. package/src/lib/components/table/{table.scss → table-action.scss} +0 -0
  38. package/src/lib/qms-ckeditor-components/qms-ckeditor.component.scss +1 -1
  39. package/src/themes/core/_app-bar.scss +2 -2
  40. package/src/themes/core/_checkbox.scss +6 -0
  41. package/src/themes/core/_dialog-new.scss +32 -0
  42. package/src/themes/core/_table-pure-gap.scss +82 -0
  43. package/src/themes/core/_table.scss +5 -5
  44. package/src/themes/theme/_variable.scss +28 -20
  45. package/src/assets/jointjs/scss/dist/bpmn.css +0 -854
  46. package/src/assets/qms-ckeditor-plugin/src/dist/ckeditor.dev.js +0 -173
  47. package/src/assets/qms-ckeditor-plugin/src/plugins/fullscreen/dist/qmsCKEditorFullscreenPlugin.dev.js +0 -87
@@ -1,5 +1,6 @@
1
1
  import { ItemIconType } from "../../related/common/item-icon-type.enum";
2
2
  export declare class BreadcrumbNode {
3
+ id: string;
3
4
  icon: string;
4
5
  iconColor: string;
5
6
  itemIcon: string;
@@ -3,6 +3,9 @@ import { TranslateLibraryService } from "../../services/translation-registry.ser
3
3
  export declare class UploadErrorData {
4
4
  fileNames: string[];
5
5
  acceptedExtension: string[];
6
+ overLimitFiles: string[];
7
+ fileSizeLimit: number;
8
+ fileSizeLimitUnit: string;
6
9
  }
7
10
  export declare class QMSUploadFileErrorDialog {
8
11
  dialogRef: MatDialogRef<QMSUploadFileErrorDialog>;
@@ -10,6 +13,9 @@ export declare class QMSUploadFileErrorDialog {
10
13
  data: UploadErrorData;
11
14
  unsupportedFiles: string[];
12
15
  supportedExtensions: string[];
16
+ overLimitFiles: string[];
17
+ fileSizeLimit: number;
18
+ fileSizeLimitUnit: string;
13
19
  LANG: any;
14
20
  constructor(dialogRef: MatDialogRef<QMSUploadFileErrorDialog>, trans: TranslateLibraryService, data: UploadErrorData);
15
21
  ok(): void;
@@ -6,6 +6,13 @@ export declare class QMSDialogContainer {
6
6
  constructor(el: ElementRef);
7
7
  ngOnInit(): void;
8
8
  }
9
+ export declare class QMSDialogContainerV2 {
10
+ private el;
11
+ min: string;
12
+ max: string;
13
+ constructor(el: ElementRef);
14
+ ngOnInit(): void;
15
+ }
9
16
  export declare class QMSDialogHeader implements OnInit {
10
17
  private el;
11
18
  height: string;
package/lib/model/en.d.ts CHANGED
@@ -49,6 +49,10 @@ export declare const en: {
49
49
  CHOOSE_ALL: string;
50
50
  BREADCRUMB: string;
51
51
  NAVIGATE_TO: string;
52
+ FILE_SIZE_LIMIT: string;
53
+ SUPPORTED_EXTENSIONS: string;
54
+ FILES_ARE_NOT_SUPPORTED: string;
55
+ FILES_EXCEED_UPLOAD_LIMIT: string;
52
56
  ERROR: {
53
57
  SELECT_DANGER: string;
54
58
  };
package/lib/model/no.d.ts CHANGED
@@ -49,6 +49,10 @@ export declare const no: {
49
49
  CHOOSE_ALL: string;
50
50
  BREADCRUMB: string;
51
51
  NAVIGATE_TO: string;
52
+ FILE_SIZE_LIMIT: string;
53
+ SUPPORTED_EXTENSIONS: string;
54
+ FILES_ARE_NOT_SUPPORTED: string;
55
+ FILES_EXCEED_UPLOAD_LIMIT: string;
52
56
  ERROR: {
53
57
  SELECT_DANGER: string;
54
58
  };
package/lib.theme.scss CHANGED
@@ -32,6 +32,8 @@
32
32
  @import './src/themes/core/app-bar';
33
33
  @import './src/themes/core/table.scss';
34
34
  @import './src/themes/core/dialog';
35
+ @import './src/themes/core/dialog-new';
36
+ @import './src/themes/core/table-pure-gap.scss';
35
37
 
36
38
 
37
39
  /* cyrillic-ext */
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "qms-angular",
3
- "version": "1.1.1",
3
+ "version": "1.1.4",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },
7
7
  "peerDependencies": {
8
+ "@angular/cdk": "~12.0.4",
8
9
  "@angular/common": "~12.0.5",
9
10
  "@angular/core": "~12.0.5",
10
11
  "@angular/material": "~12.0.4",
11
- "@ngx-translate/core": "~13.0.0",
12
- "@angular/cdk": "~12.0.4",
13
12
  "@ckeditor/ckeditor5-angular": "~2.0.1",
14
13
  "@ckeditor/ckeditor5-build-classic": "~27.1.0",
15
- "ngx-mat-select-search": "^3.3.0",
14
+ "@ngx-translate/core": "~13.0.0",
16
15
  "bootstrap": "^5.1.3",
17
- "material-icons": "^1.10.6"
16
+ "material-icons": "^1.10.6",
17
+ "ngx-mat-select-search": "^3.3.0"
18
18
  },
19
19
  "main": "bundles/qms-angular.umd.js",
20
20
  "module": "fesm2015/qms-angular.js",