qms-angular 1.0.75 → 1.0.79

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 (25) hide show
  1. package/bundles/qms-angular.umd.js +421 -359
  2. package/bundles/qms-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +11 -8
  4. package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +5 -3
  5. package/esm2015/lib/components/related/popup/related-popup.component.js +295 -301
  6. package/esm2015/lib/components/select-include-children/select-include-children.component.js +8 -8
  7. package/esm2015/lib/components/select-one/select-one.component.js +44 -26
  8. package/esm2015/lib/components/select-process-document/models/pop-up-data.model.js +1 -1
  9. package/esm2015/lib/components/select-process-document/select-process-document.component.js +23 -3
  10. package/esm2015/lib/components/tree/tree.component.js +9 -5
  11. package/esm2015/lib/components/treeNew/tree.component.js +31 -10
  12. package/fesm2015/qms-angular.js +418 -356
  13. package/fesm2015/qms-angular.js.map +1 -1
  14. package/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.d.ts +2 -2
  15. package/lib/components/related/popup/related-popup.component.d.ts +2 -1
  16. package/lib/components/select-process-document/models/pop-up-data.model.d.ts +1 -0
  17. package/lib/components/select-process-document/select-process-document.component.d.ts +3 -0
  18. package/lib/components/treeNew/tree.component.d.ts +1 -0
  19. package/package.json +1 -1
  20. package/qms-angular.metadata.json +1 -1
  21. package/src/assets/jointjs/scss/rappid.scss +1 -1
  22. package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +21 -7
  23. package/src/lib/components/qms-paginator/qms-paginator.component.scss +27 -5
  24. package/src/lib/components/select-process-document/select-process-document.component.scss +14 -1
  25. package/src/lib/components/treeNew/tree.component.scss +3 -6
@@ -6099,7 +6099,7 @@ Important note: Presentation attributes have a lower precedence over CSS style r
6099
6099
  }
6100
6100
  .joint-select-box.joint-theme-dark .select-box-selection:after {
6101
6101
  width: 33px;
6102
- height: calc(100%-2px);
6102
+ height: calc(100% - 2px);
6103
6103
  border: 1px solid #42474a;
6104
6104
  border-top-right-radius: 3px;
6105
6105
  border-bottom-right-radius: 3px;
@@ -1,14 +1,13 @@
1
1
  ::ng-deep mat-tree.qms-navigation-drawer-container {
2
2
 
3
3
  .mat-tree-node {
4
- width : 272px !important;
5
- height: 48px !important;
4
+ min-width: 272px !important;
5
+ height : 48px !important;
6
6
  }
7
7
 
8
8
  .mat-tree-node {
9
- min-height : 34px;
10
- margin : 16px 0px;
11
- padding-right: 34px;
9
+ min-height: 34px;
10
+ margin : 16px 0px;
12
11
 
13
12
  &.active {
14
13
  background-color: #F2F7FD;
@@ -18,7 +17,7 @@
18
17
  filter: opacity(0.5) drop-shadow(0 0 0 #1954A9);
19
18
  }
20
19
 
21
- &:hover{
20
+ &:hover {
22
21
  background-color: #E5EEFB !important;
23
22
  }
24
23
  }
@@ -74,7 +73,8 @@
74
73
  ::ng-deep mat-icon {
75
74
  color: #1954A9;
76
75
  }
77
- &:hover{
76
+
77
+ &:hover {
78
78
  background-color: #E5EEFB !important;
79
79
  }
80
80
  }
@@ -192,4 +192,18 @@
192
192
  }
193
193
  }
194
194
 
195
+ .pr-34 {
196
+ padding-right: 34px;
197
+ }
198
+
199
+ }
200
+
201
+ .node-preview-item {
202
+ display : flex;
203
+ background-color: #0000001F;
204
+ min-width : 272px !important;
205
+ height : 48px !important;
206
+ margin : 0 auto;
207
+ align-items : center;
208
+ padding : 0px 16px;
195
209
  }
@@ -10,15 +10,21 @@
10
10
  padding: 0 8px;
11
11
  flex-wrap: wrap-reverse;
12
12
  width: 100%;
13
+ .qms-btn-icon {
14
+ width: 40px;
15
+ height: 40px;
16
+ line-height: 40px;
17
+ }
13
18
  .mat-select {
14
19
  .mat-select-arrow {
15
- margin-top: 17.5px;
20
+ margin-top: 20px;
16
21
  }
17
22
  }
18
23
  .qms-total-result {
19
24
  margin-right: 24px;
20
- margin-bottom: 15px;
25
+ margin-bottom: 20px;
21
26
  span {
27
+ font-family: Open Sans;
22
28
  font-weight: normal;
23
29
  font-size: 14px;
24
30
  line-height: 22px;
@@ -43,6 +49,13 @@
43
49
  width: 80px;
44
50
  }
45
51
  }
52
+ .qms-form-select-page-size {
53
+ .mat-form-field-flex {
54
+ width: 51px;
55
+ padding-left: 9px;
56
+ padding-right: 5px;
57
+ }
58
+ }
46
59
  .jump-page {
47
60
  .mat-form-field-wrapper {
48
61
  .mat-form-field-flex {
@@ -53,9 +66,10 @@
53
66
  .mat-form-field-flex {
54
67
  height: 40px;
55
68
  .mat-form-field-infix {
56
- padding-top: 7px;
69
+ padding-top: 4px;
57
70
  border-top: 0px;
58
71
  padding-bottom: 0px;
72
+ height: 25px;
59
73
  }
60
74
  }
61
75
  }
@@ -83,7 +97,7 @@
83
97
  .mat-paginator-container-mobile {
84
98
  .mat-select {
85
99
  .mat-select-arrow {
86
- margin-top: 17.5px;
100
+ margin-top: 20px;
87
101
  }
88
102
  }
89
103
  .qms-total-result {
@@ -118,6 +132,13 @@
118
132
  width: 80px;
119
133
  }
120
134
  }
135
+ .qms-form-select-page-size {
136
+ .mat-form-field-flex {
137
+ width: 51px;
138
+ padding-left: 9px;
139
+ padding-right: 5px;
140
+ }
141
+ }
121
142
  .jump-page {
122
143
  .mat-form-field-wrapper {
123
144
  .mat-form-field-flex {
@@ -128,9 +149,10 @@
128
149
  .mat-form-field-flex {
129
150
  height: 40px;
130
151
  .mat-form-field-infix {
131
- padding-top: 7px;
152
+ padding-top: 4px;
132
153
  border-top: 0px;
133
154
  padding-bottom: 0px;
155
+ height: 25px;
134
156
  }
135
157
  }
136
158
  }
@@ -1,6 +1,7 @@
1
1
  @import "../../../themes/color.scss";
2
2
  @import "../../../themes/core/scrollbar.scss";
3
3
  @import "../../../themes/core/button.scss";
4
+ @import "../../../themes/core/colors";
4
5
 
5
6
  .qmslib__related__popup__container {
6
7
  .input__field {
@@ -166,7 +167,7 @@
166
167
  display: flex;
167
168
  align-items: center;
168
169
  min-height: 40px;
169
-
170
+
170
171
  .mat-icon {
171
172
  color: black(0.6);
172
173
  margin-right: 17px;
@@ -177,6 +178,18 @@
177
178
  min-width: fit-content;
178
179
  }
179
180
  }
181
+ .text-node-item {
182
+ margin-left: 8px;
183
+ display: flex;
184
+ align-items: center;
185
+ min-height: 32px;
186
+ justify-content: space-between;
187
+ width: 100%;
188
+
189
+ .select-one-checked {
190
+ color: $primary;
191
+ }
192
+ }
180
193
  }
181
194
  }
182
195
  }
@@ -84,7 +84,7 @@
84
84
 
85
85
  &.bgSelected {
86
86
 
87
- .icon-check {
87
+ .select-one-checked {
88
88
  color: $primary;
89
89
  }
90
90
  }
@@ -107,11 +107,8 @@
107
107
 
108
108
  cursor: pointer;
109
109
 
110
- &.bgSelected {
111
-
112
- .icon-check {
113
- color: $primary;
114
- }
110
+ .select-one-checked {
111
+ color: $primary;
115
112
  }
116
113
  }
117
114