qms-angular 1.1.73 → 1.1.74
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 +88 -28
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/select-access-dialog/select-access-dialog.component.js +56 -8
- package/esm2015/lib/components/select-access-dialog/select-access-dialog.module.js +6 -2
- package/esm2015/lib/components/select-department/select-department.component.js +3 -3
- package/esm2015/lib/components/select-department-tree/select-department-tree.component.js +24 -18
- package/esm2015/lib/model/en.js +3 -1
- package/esm2015/lib/model/no.js +4 -2
- package/fesm2015/qms-angular.js +88 -28
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/select-access-dialog/select-access-dialog.component.d.ts +10 -0
- package/lib/components/select-department-tree/select-department-tree.component.d.ts +2 -0
- package/lib/model/en.d.ts +2 -0
- package/lib/model/no.d.ts +2 -0
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/assets/jointjs/scss/bpmn.css +821 -829
- package/src/lib/components/select-access-dialog/select-access-dialog.component.scss +86 -0
- package/src/lib/components/select-department/select-department.component.scss +44 -1
- package/src/lib/components/select-department-tree/select-department-tree.component.scss +18 -1
@@ -11,6 +11,9 @@
|
|
11
11
|
|
12
12
|
.select-access-dialog-container {
|
13
13
|
font-family: 'Open Sans';
|
14
|
+
&.h-75 {
|
15
|
+
height: 75vh;
|
16
|
+
}
|
14
17
|
.mat-expansion-panel .mat-expansion-panel-body {
|
15
18
|
padding-top: 0px !important;
|
16
19
|
}
|
@@ -395,4 +398,87 @@
|
|
395
398
|
background-color: unset !important;
|
396
399
|
color: unset !important;
|
397
400
|
}
|
401
|
+
|
402
|
+
.d-flex {
|
403
|
+
display: flex;
|
404
|
+
}
|
405
|
+
|
406
|
+
.align-items-center {
|
407
|
+
align-items: center;
|
408
|
+
}
|
409
|
+
|
410
|
+
.justify-content-between {
|
411
|
+
justify-content: space-between;
|
412
|
+
}
|
413
|
+
|
414
|
+
.mobile-view {
|
415
|
+
overflow-x: hidden;
|
416
|
+
::ng-deep {
|
417
|
+
.mat-expansion-panel-header-title {
|
418
|
+
font-family: 'Open sans';
|
419
|
+
}
|
420
|
+
|
421
|
+
.mat-tab-body-wrapper {
|
422
|
+
overflow-x: hidden;
|
423
|
+
overflow-y: scroll;
|
424
|
+
}
|
425
|
+
.mat-dialog-content {
|
426
|
+
min-height: 50vh;
|
427
|
+
}
|
428
|
+
}
|
429
|
+
.height-360 {
|
430
|
+
height: 360px;
|
431
|
+
}
|
432
|
+
}
|
433
|
+
|
434
|
+
.result-body {
|
435
|
+
::ng-deep .mat-expansion-panel-content .mat-expansion-panel-body {
|
436
|
+
height: 80px !important;
|
437
|
+
overflow-y: scroll;
|
438
|
+
padding: 0 12px 16px;
|
439
|
+
}
|
440
|
+
}
|
441
|
+
|
442
|
+
.content-break {
|
443
|
+
display: inline-block !important;
|
444
|
+
word-wrap: break-word !important;
|
445
|
+
word-break: break-word !important;
|
446
|
+
white-space: normal !important;
|
447
|
+
}
|
448
|
+
|
449
|
+
.selected-containter {
|
450
|
+
font-family: 'Open Sans';
|
451
|
+
height: 127px !important;
|
452
|
+
overflow-y: scroll;
|
453
|
+
overflow-x: hidden;
|
454
|
+
padding: 0 12px 16px;
|
455
|
+
.mat-chip.qms-chip {
|
456
|
+
height: auto !important;
|
457
|
+
}
|
458
|
+
}
|
459
|
+
|
460
|
+
::ng-deep .tab-body-container {
|
461
|
+
overflow-x: hidden;
|
462
|
+
overflow-y: scroll;
|
463
|
+
.mat-expansion-panel-header {
|
464
|
+
font-family: 'Open Sans';
|
465
|
+
}
|
466
|
+
}
|
467
|
+
::ng-deep .mat-tab-body {
|
468
|
+
height: 466px !important;
|
469
|
+
}
|
470
|
+
}
|
471
|
+
|
472
|
+
|
473
|
+
|
474
|
+
@media screen and (max-width: 1100px) {
|
475
|
+
.select-access-dialog-container .chip-item-result {
|
476
|
+
max-width: 200px;
|
477
|
+
}
|
398
478
|
}
|
479
|
+
|
480
|
+
@media screen and (max-width: 900px) {
|
481
|
+
.select-access-dialog-container .chip-item-result {
|
482
|
+
max-width: 150px;
|
483
|
+
}
|
484
|
+
}
|
@@ -53,7 +53,7 @@
|
|
53
53
|
border-bottom: 1px solid #ccc;
|
54
54
|
height: 1px;
|
55
55
|
margin-top: 10px;
|
56
|
-
min-width: 300px;
|
56
|
+
// min-width: 300px;
|
57
57
|
max-width: 100%;
|
58
58
|
}
|
59
59
|
|
@@ -68,6 +68,7 @@
|
|
68
68
|
.mat-expansion-panel-header-title {
|
69
69
|
align-items: center;
|
70
70
|
margin-left: 12px;
|
71
|
+
font-family: 'Open sans';
|
71
72
|
}
|
72
73
|
}
|
73
74
|
|
@@ -208,7 +209,49 @@
|
|
208
209
|
background-color: unset !important;
|
209
210
|
color: unset !important;
|
210
211
|
}
|
212
|
+
|
213
|
+
::ng-deep .mat-expansion-indicator {
|
214
|
+
margin-right: 10px !important;
|
215
|
+
}
|
216
|
+
|
217
|
+
::ng-deep .mat-expansion-panel-header {
|
218
|
+
height: 48px !important;
|
219
|
+
}
|
220
|
+
|
221
|
+
.chips-container-mobile {
|
222
|
+
display: flex;
|
223
|
+
flex-direction: column;
|
224
|
+
height: 100px !important;
|
225
|
+
overflow-x: hidden;
|
226
|
+
overflow-y: scroll;
|
227
|
+
.mat-chip-list-wrapper {
|
228
|
+
span {
|
229
|
+
display: inline-block;
|
230
|
+
word-wrap: break-word;
|
231
|
+
word-break: break-all;
|
232
|
+
white-space: normal;
|
233
|
+
}
|
234
|
+
}
|
235
|
+
}
|
236
|
+
|
237
|
+
.deparment-tree-mobile-view {
|
238
|
+
overflow-x: hidden;
|
239
|
+
}
|
240
|
+
|
241
|
+
span.content-break {
|
242
|
+
& > span:nth-child(1){
|
243
|
+
display: inline-block !important;
|
244
|
+
word-break: break-all;
|
245
|
+
word-wrap: break-word;
|
246
|
+
white-space: normal !important;
|
247
|
+
}
|
248
|
+
}
|
249
|
+
.height-auto {
|
250
|
+
height: auto;
|
251
|
+
}
|
252
|
+
|
211
253
|
}
|
254
|
+
|
212
255
|
.qms-spinner-wrapper{
|
213
256
|
display: inline-block;
|
214
257
|
width: 22px;
|
@@ -48,6 +48,14 @@
|
|
48
48
|
justify-content: flex-end;
|
49
49
|
}
|
50
50
|
|
51
|
+
.justify-content-between {
|
52
|
+
justify-content: space-between;
|
53
|
+
}
|
54
|
+
|
55
|
+
.flex-col {
|
56
|
+
flex-direction: column;
|
57
|
+
}
|
58
|
+
|
51
59
|
.text-selected {
|
52
60
|
color: black(0.6);
|
53
61
|
font-size: 12px;
|
@@ -123,7 +131,7 @@
|
|
123
131
|
}
|
124
132
|
|
125
133
|
.tree-department-wrapper {
|
126
|
-
padding-right: 4px;
|
134
|
+
// padding-right: 4px;
|
127
135
|
overflow: hidden;
|
128
136
|
position: relative;
|
129
137
|
transition: height 0.3s ease-in-out;
|
@@ -337,6 +345,15 @@
|
|
337
345
|
}
|
338
346
|
}
|
339
347
|
|
348
|
+
.content-break {
|
349
|
+
display: inline-block !important;
|
350
|
+
word-wrap: break-word !important;
|
351
|
+
word-break: break-word !important;
|
352
|
+
white-space: normal !important;
|
353
|
+
max-width: 186px !important;
|
354
|
+
width: auto;
|
355
|
+
}
|
356
|
+
|
340
357
|
.mat-checkbox-label {
|
341
358
|
flex-direction: row;
|
342
359
|
align-items: center;
|