qms-angular 1.0.64 → 1.0.65

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 (27) hide show
  1. package/bundles/qms-angular.umd.js +122 -72
  2. package/bundles/qms-angular.umd.js.map +1 -1
  3. package/esm2015/lib/components/breadcrumb/breadcrumb.js +1 -1
  4. package/esm2015/lib/components/qms-app-bar/qms-app-bar.component.js +3 -3
  5. package/esm2015/lib/components/related/model/related-data.model.js +3 -1
  6. package/esm2015/lib/components/related/popup/related-popup.component.js +29 -9
  7. package/esm2015/lib/components/related/risk/analysis/analysis.component.js +1 -3
  8. package/esm2015/lib/components/select-include-children/select-include-children.component.js +7 -8
  9. package/esm2015/lib/components/select-one/select-one.component.js +10 -2
  10. package/esm2015/lib/components/tree/model/tree-config.model.js +1 -1
  11. package/esm2015/lib/components/tree/tree.component.js +33 -28
  12. package/esm2015/lib/model/en.js +3 -3
  13. package/esm2015/lib/model/no.js +3 -3
  14. package/fesm2015/qms-angular.js +93 -60
  15. package/fesm2015/qms-angular.js.map +1 -1
  16. package/lib/components/related/model/related-data.model.d.ts +3 -0
  17. package/lib/components/related/popup/related-popup.component.d.ts +7 -3
  18. package/lib/components/select-include-children/select-include-children.component.d.ts +8 -9
  19. package/lib/components/select-one/select-one.component.d.ts +1 -0
  20. package/lib/components/tree/model/tree-config.model.d.ts +2 -2
  21. package/lib/components/tree/tree.component.d.ts +1 -2
  22. package/package.json +1 -1
  23. package/qms-angular.metadata.json +1 -1
  24. package/src/lib/components/breadcrumb/breadcrumb.scss +1 -1
  25. package/src/lib/components/qms-app-bar/qms-app-bar.component.scss +16 -2
  26. package/src/lib/components/related/popup/related-popup.component.scss +22 -1
  27. package/src/lib/components/tree/tree.component.scss +4 -6
@@ -26,7 +26,7 @@
26
26
  margin-right: 2px;
27
27
  }
28
28
  .qms-breadcrumb-item{
29
- cursor: pointer;
29
+ cursor: inherit;
30
30
  .qms-btn-icon{
31
31
  width: 1.5rem;
32
32
  height: 1.5rem;
@@ -20,8 +20,11 @@
20
20
  }
21
21
 
22
22
  .right-content {
23
- .mr-22 {
24
- margin-right: 22px;
23
+ button{
24
+ line-height: 16px !important;
25
+ }
26
+ .mr-10 {
27
+ margin-right: 10px;
25
28
  }
26
29
  }
27
30
 
@@ -38,6 +41,7 @@
38
41
  flex-shrink: 0;
39
42
  line-height: 40px;
40
43
  border-radius: 50%;
44
+ margin-right: 11px;
41
45
  }
42
46
 
43
47
  .content-title {
@@ -68,5 +72,15 @@
68
72
  height: 40px;
69
73
  padding: 2px;
70
74
  }
75
+ .right-icon button:last-child{
76
+ min-width: unset !important;
77
+ }
78
+ ::ng-deep .mat-badge-warn .mat-badge-content{
79
+ background-color: #9E360F !important;
80
+ }
81
+ }
82
+
83
+ .pr-8{
84
+ padding-right: 8px;
71
85
  }
72
86
  }
@@ -271,6 +271,27 @@ cdk-virtual-scroll-viewport {
271
271
  }
272
272
  }
273
273
 
274
+
275
+ .mat-option[aria-disabled=true] {
276
+ $disabled-color: rgba($color: #000000, $alpha: 0.38);
277
+
278
+ .subtitle {
279
+ color: $disabled-color;
280
+ }
281
+
282
+ .breadcrumb-containe {
283
+ .qms-breadcrumb-item {
284
+ .mat-icon {
285
+ color: $disabled-color;
286
+ }
287
+ }
288
+
289
+ .qms-breadcrumb-item-text {
290
+ color: $disabled-color;
291
+ }
292
+ }
293
+ }
294
+
274
295
  svg {
275
296
  display: block;
276
297
  }
@@ -295,6 +316,6 @@ cdk-virtual-scroll-viewport {
295
316
  width: 100%;
296
317
  }
297
318
  .related-viewport {
298
- min-height: 10.25rem;
319
+ min-height: 300px;
299
320
  }
300
321
  }
@@ -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
 
@@ -173,3 +170,4 @@ svg {
173
170
  }
174
171
 
175
172
 
173
+