qms-angular 1.1.64 → 1.1.66

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 (69) hide show
  1. package/bundles/qms-angular.umd.js +1974 -1657
  2. package/bundles/qms-angular.umd.js.map +1 -1
  3. package/esm2015/lib/common/enum/bpmn-add-connection-type.enum.js +6 -0
  4. package/esm2015/lib/common/enum/data-type.enum.js +2 -1
  5. package/esm2015/lib/common/enum/shape-connection-action.enum.js +7 -0
  6. package/esm2015/lib/common/enum/shape-targets.enum.js +6 -0
  7. package/esm2015/lib/common/qms-icon.const.js +13 -1
  8. package/esm2015/lib/components/app-icon/icon-registry.service.js +17 -2
  9. package/esm2015/lib/components/qms-bpmn/models/change-document-anchor-for-shape-event.model.js +3 -0
  10. package/esm2015/lib/components/qms-bpmn/models/flow-chart-shape/activity-related-items.js +2 -1
  11. package/esm2015/lib/components/qms-bpmn/models/remove-shape-connection-item-event.model.js +5 -0
  12. package/esm2015/lib/components/qms-bpmn/models/shape-connection-action-event.model.js +3 -0
  13. package/esm2015/lib/components/qms-bpmn/models/shape-connection-action.model.js +3 -0
  14. package/esm2015/lib/components/qms-bpmn/models/shape-connection-detail.model.js +32 -0
  15. package/esm2015/lib/components/qms-bpmn/models/shape-flow-chart-connection-detail.model.js +7 -0
  16. package/esm2015/lib/components/qms-bpmn/qms-bpmn.component.js +120 -16
  17. package/esm2015/lib/components/qms-bpmn/qms-bpmn.module.js +15 -5
  18. package/esm2015/lib/components/related/list-other-related/list-related.component.js +6 -3
  19. package/esm2015/lib/components/select-access-dialog/select-access-dialog.component.js +2 -2
  20. package/esm2015/lib/components/select-process-data/select-process-data.component.js +2 -3
  21. package/esm2015/lib/components/select-process-data-tree/select-process-data-tree.component.js +1 -1
  22. package/esm2015/lib/components/select-process-document/select-process-document.component.js +3 -3
  23. package/esm2015/lib/components/treeNew/tree.component.js +3 -3
  24. package/esm2015/lib/model/en.js +8 -2
  25. package/esm2015/lib/model/no.js +8 -2
  26. package/esm2015/lib/qms-ckeditor-components/common/enums/shape-flow-chart-connection-type.js +4 -1
  27. package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.js +38 -34
  28. package/esm2015/lib/qms-ckeditor-components/models/connect-type.model.js +1 -1
  29. package/esm2015/lib/qms-ckeditor-components/models/qms-bpmn-config.model.js +2 -1
  30. package/esm2015/lib/services/qms-bpmn.service.js +24 -1
  31. package/esm2015/public-api.js +11 -1
  32. package/esm2015/qms-angular.js +3 -1
  33. package/fesm2015/qms-angular.js +2150 -1905
  34. package/fesm2015/qms-angular.js.map +1 -1
  35. package/lib/common/enum/bpmn-add-connection-type.enum.d.ts +4 -0
  36. package/lib/common/enum/data-type.enum.d.ts +2 -1
  37. package/lib/common/enum/shape-connection-action.enum.d.ts +5 -0
  38. package/lib/common/enum/shape-targets.enum.d.ts +4 -0
  39. package/lib/common/qms-icon.const.d.ts +5 -0
  40. package/lib/components/app-icon/icon-registry.service.d.ts +5 -0
  41. package/lib/components/qms-bpmn/models/change-document-anchor-for-shape-event.model.d.ts +5 -0
  42. package/lib/components/qms-bpmn/models/flow-chart-shape/activity-related-items.d.ts +1 -0
  43. package/lib/components/qms-bpmn/models/remove-shape-connection-item-event.model.d.ts +13 -0
  44. package/lib/components/qms-bpmn/models/shape-connection-action-event.model.d.ts +7 -0
  45. package/lib/components/qms-bpmn/models/shape-connection-action.model.d.ts +5 -0
  46. package/lib/components/qms-bpmn/models/shape-connection-detail.model.d.ts +71 -0
  47. package/lib/components/qms-bpmn/models/shape-flow-chart-connection-detail.model.d.ts +6 -0
  48. package/lib/components/qms-bpmn/qms-bpmn.component.d.ts +51 -10
  49. package/lib/components/related/list-other-related/list-related.component.d.ts +1 -1
  50. package/lib/model/en.d.ts +6 -0
  51. package/lib/model/no.d.ts +6 -0
  52. package/lib/qms-ckeditor-components/common/enums/shape-flow-chart-connection-type.d.ts +4 -1
  53. package/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.d.ts +19 -19
  54. package/lib/qms-ckeditor-components/models/connect-type.model.d.ts +2 -0
  55. package/lib/qms-ckeditor-components/models/qms-bpmn-config.model.d.ts +4 -0
  56. package/lib.theme.scss +0 -1
  57. package/package.json +1 -1
  58. package/public-api.d.ts +10 -0
  59. package/qms-angular.d.ts +2 -0
  60. package/qms-angular.metadata.json +1 -1
  61. package/src/assets/jointjs/scss/bpmn.css +829 -829
  62. package/src/assets/jointjs/scss/joint-plus.min.css +14 -0
  63. package/src/lib/components/qms-bpmn/qms-bpmn.component.scss +819 -556
  64. package/src/lib/components/related/list-other-related/list-related.component.scss +201 -197
  65. package/src/lib/components/select-process-data/select-process-data.component.scss +0 -2
  66. package/src/lib/components/select-process-data-tree/select-process-data-tree.component.scss +0 -1
  67. package/src/lib/components/select-process-document/select-process-document.component.scss +4 -0
  68. package/src/lib/components/treeNew/tree.component.scss +4 -0
  69. package/src/assets/jointjs/scss/joint-plus.css +0 -8695
@@ -1,197 +1,201 @@
1
- @import "../../../../themes/theme/variable";
2
- @import "../../../../themes/theme/mixins";
3
- @import "../../../../themes/core/typography";
4
-
5
- .list-related {
6
- font-family: "Open Sans";
7
- font-style: normal;
8
- font-weight: normal;
9
- color: theme-apply($default-color);
10
-
11
- .list-related__title {
12
- font-weight: 600;
13
- font-size: 0.875rem;
14
- line-height: 22px;
15
- margin-bottom: 1rem;
16
- }
17
-
18
- .list-related__body {
19
- .list-related__body-parent {
20
-
21
- .qms-list-item {
22
- height: unset !important;
23
- }
24
-
25
- .qms-list-item.mat-2-line.image-item {
26
- height: auto;
27
- }
28
-
29
- .qms-list-item.image-item .qms-list-item-content {
30
- margin: 0;
31
- }
32
-
33
- .wrap-image.image-square,
34
- .wrap-image.image-square img {
35
- background: transparent;
36
- margin: auto;
37
- height: 24px;
38
- width: 24px;
39
- }
40
-
41
- .qms-list-item.image-item .qms-list-text,
42
- .qms-list-item.image-item .trailing-box {
43
- margin-left: 1.5rem;
44
- border-bottom: none;
45
- padding-bottom: 7px;
46
- padding-top: 7px;
47
-
48
- .material-icons-outlined {
49
- font-size: 13px;
50
- height: 13px;
51
- width: 13px;
52
- }
53
- }
54
-
55
- min-height: 48px;
56
- display: flex;
57
- align-items: center;
58
- justify-content: space-between;
59
- border-bottom: 1px solid #ddd;
60
-
61
- .block {
62
- font-weight: normal;
63
- font-size: 1rem;
64
- line-height: 28px;
65
- display: flex;
66
- align-items: center;
67
-
68
- .title {
69
- margin-left: 1.5rem;
70
- padding-top: 5px;
71
- padding-bottom: 5px;
72
-
73
- .caption {
74
- color: black(0.6);
75
- font-size: 0.75rem;
76
- line-height: 22px;
77
- }
78
- }
79
-
80
- mat-icon {
81
- color: black(0.6);
82
- padding: 0;
83
- }
84
-
85
- button.qms-btn-icon {
86
- width: 40px;
87
- height: 40px;
88
- line-height: 40px;
89
- }
90
- }
91
- }
92
-
93
- .list-related__body-child {
94
- font-weight: normal;
95
- font-size: 0.875rem;
96
- line-height: 22px;
97
-
98
- .default {
99
- min-height: 48px;
100
- display: flex;
101
- align-items: center;
102
- justify-content: space-between;
103
- border-bottom: 1px solid #ddd;
104
-
105
- .title {
106
- margin-left: 3rem;
107
- }
108
-
109
- .group-button {
110
- margin-right: 2rem;
111
- display: flex;
112
- }
113
- }
114
- }
115
-
116
- .remain {
117
- font-weight: 600;
118
- font-size: 0.875rem;
119
- line-height: 22px;
120
-
121
- display: flex;
122
- align-items: center;
123
- justify-content: space-between;
124
- background-color: #fafafa;
125
-
126
- border-bottom: 1px solid #ddd;
127
- color: theme-apply($primary);
128
- min-height: 48px;
129
- border-bottom: 1px solid #ddd;
130
-
131
- .title {
132
- margin-left: 3rem;
133
- }
134
- }
135
-
136
- .qms-line {
137
- display: flex;
138
- align-items: center;
139
- }
140
-
141
- .breadcrumb-container .qms-breadcrumb-item {
142
- cursor: inherit;
143
- line-height: 16px;
144
- font-size: 0.75rem;
145
- color: black(0.6);
146
- font-weight: 400;
147
- line-height: 22px;
148
- margin: 0;
149
- }
150
-
151
- .trailing-box {
152
- display: flex;
153
- align-items: center;
154
-
155
- button {
156
- height: 24px;
157
- width: 24px;
158
- line-height: 24px;
159
- }
160
- }
161
- }
162
- }
163
-
164
- .label-red,
165
- .label-yellow,
166
- .label-green {
167
- font-family: Open Sans;
168
- font-style: normal;
169
- font-weight: 600;
170
- display: inline-block;
171
- text-align: center;
172
- margin-left: 1rem;
173
- width: 24px;
174
- height: 24px;
175
-
176
- font-size: 0.75rem;
177
- border-radius: 1px;
178
- }
179
-
180
- .label-red {
181
- background-color: theme-apply($secondary);
182
- color: white;
183
- }
184
-
185
- .label-yellow {
186
- background-color: theme-apply($risk-yellow);
187
- color: black(0.87);
188
- }
189
-
190
- .label-green {
191
- background-color: theme-apply($risk-green);
192
- color: white;
193
- }
194
-
195
- .cursor {
196
- cursor: pointer;
197
- }
1
+ @import "../../../../themes/theme/variable";
2
+ @import "../../../../themes/theme/mixins";
3
+ @import "../../../../themes/core/typography";
4
+
5
+ .list-related {
6
+ font-family: "Open Sans";
7
+ font-style: normal;
8
+ font-weight: normal;
9
+ color: theme-apply($default-color);
10
+
11
+ .list-related__title {
12
+ font-weight: 600;
13
+ font-size: 0.875rem;
14
+ line-height: 22px;
15
+ margin-bottom: 1rem;
16
+ }
17
+
18
+ .list-related__body {
19
+ .list-related__body-parent {
20
+
21
+ .qms-list-item {
22
+ height: unset !important;
23
+ }
24
+
25
+ .qms-list-item.mat-2-line.image-item {
26
+ height: auto;
27
+ }
28
+
29
+ .qms-list-item.image-item .qms-list-item-content {
30
+ margin: 0;
31
+ }
32
+
33
+ .wrap-image.image-square,
34
+ .wrap-image.image-square img {
35
+ background: transparent;
36
+ margin: auto;
37
+ height: 24px;
38
+ width: 24px;
39
+ }
40
+
41
+ .qms-list-item.image-item .qms-list-text,
42
+ .qms-list-item.image-item .trailing-box {
43
+ margin-left: 1.5rem;
44
+ border-bottom: none;
45
+ padding-bottom: 7px;
46
+ padding-top: 7px;
47
+
48
+ .material-icons-outlined {
49
+ font-size: 13px;
50
+ height: 13px;
51
+ width: 13px;
52
+ }
53
+ }
54
+
55
+ min-height: 48px;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: space-between;
59
+ border-bottom: 1px solid #ddd;
60
+
61
+ .block {
62
+ font-weight: normal;
63
+ font-size: 1rem;
64
+ line-height: 28px;
65
+ display: flex;
66
+ align-items: center;
67
+
68
+ .title {
69
+ margin-left: 1.5rem;
70
+ padding-top: 5px;
71
+ padding-bottom: 5px;
72
+
73
+ .caption {
74
+ color: black(0.6);
75
+ font-size: 0.75rem;
76
+ line-height: 22px;
77
+ }
78
+ }
79
+
80
+ mat-icon {
81
+ color: black(0.6);
82
+ padding: 0;
83
+ }
84
+
85
+ button.qms-btn-icon {
86
+ width: 40px;
87
+ height: 40px;
88
+ line-height: 40px;
89
+ }
90
+ }
91
+ }
92
+
93
+ .list-related__body-child {
94
+ font-weight: normal;
95
+ font-size: 0.875rem;
96
+ line-height: 22px;
97
+
98
+ .default {
99
+ min-height: 48px;
100
+ display: flex;
101
+ align-items: center;
102
+ justify-content: space-between;
103
+ border-bottom: 1px solid #ddd;
104
+
105
+ .title {
106
+ margin-left: 3rem;
107
+ }
108
+
109
+ .group-button {
110
+ margin-right: 2rem;
111
+ display: flex;
112
+ }
113
+ }
114
+ }
115
+
116
+ .remain {
117
+ font-weight: 600;
118
+ font-size: 0.875rem;
119
+ line-height: 22px;
120
+
121
+ display: flex;
122
+ align-items: center;
123
+ justify-content: space-between;
124
+ background-color: #fafafa;
125
+
126
+ border-bottom: 1px solid #ddd;
127
+ color: theme-apply($primary);
128
+ min-height: 48px;
129
+ border-bottom: 1px solid #ddd;
130
+
131
+ .title {
132
+ margin-left: 3rem;
133
+ }
134
+ }
135
+
136
+ .qms-line {
137
+ display: flex;
138
+ align-items: center;
139
+ }
140
+
141
+ .breadcrumb-container .qms-breadcrumb-item {
142
+ cursor: inherit;
143
+ line-height: 16px;
144
+ font-size: 0.75rem;
145
+ color: black(0.6);
146
+ font-weight: 400;
147
+ line-height: 22px;
148
+ margin: 0;
149
+ }
150
+
151
+ .trailing-box {
152
+ display: flex;
153
+ align-items: center;
154
+
155
+ button {
156
+ height: 24px;
157
+ width: 24px;
158
+ line-height: 24px;
159
+ }
160
+ }
161
+ }
162
+
163
+ .unset-vertical-align {
164
+ vertical-align: unset;
165
+ }
166
+ }
167
+
168
+ .label-red,
169
+ .label-yellow,
170
+ .label-green {
171
+ font-family: Open Sans;
172
+ font-style: normal;
173
+ font-weight: 600;
174
+ display: inline-block;
175
+ text-align: center;
176
+ margin-left: 1rem;
177
+ width: 24px;
178
+ height: 24px;
179
+
180
+ font-size: 0.75rem;
181
+ border-radius: 1px;
182
+ }
183
+
184
+ .label-red {
185
+ background-color: theme-apply($secondary);
186
+ color: white;
187
+ }
188
+
189
+ .label-yellow {
190
+ background-color: theme-apply($risk-yellow);
191
+ color: black(0.87);
192
+ }
193
+
194
+ .label-green {
195
+ background-color: theme-apply($risk-green);
196
+ color: white;
197
+ }
198
+
199
+ .cursor {
200
+ cursor: pointer;
201
+ }
@@ -1,8 +1,6 @@
1
1
  @import "../../../themes/core/variables";
2
2
  @import "../../../themes/theme/variable";
3
3
  @import "../../../themes/theme/mixins";
4
- @import "../../../themes/qms-icon-font";
5
-
6
4
 
7
5
  .qms-select-department {
8
6
  font-family: 'Open Sans', sans-serif;
@@ -1,7 +1,6 @@
1
1
  @import "../../../themes/core/variables";
2
2
  @import "../../../themes/theme/variable";
3
3
  @import "../../../themes/theme/mixins";
4
- @import "../../../themes/qms-icon-font";
5
4
 
6
5
  .qms-select-department-tree-container {
7
6
  font-family: 'Open Sans', sans-serif;
@@ -197,6 +197,10 @@
197
197
  }
198
198
  }
199
199
  }
200
+
201
+ .unset-vertical-align {
202
+ vertical-align: unset;
203
+ }
200
204
  }
201
205
 
202
206
  cdk-virtual-scroll-viewport {
@@ -126,6 +126,10 @@
126
126
  .mat-checkbox.qms-group-options.mat-checkbox-checked {
127
127
  background: transparent !important;
128
128
  }
129
+
130
+ .unset-vertical-align {
131
+ vertical-align: unset;
132
+ }
129
133
  }
130
134
 
131
135
  ::ng-deep .mat-tree {