qms-angular 1.1.4 → 1.1.6

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 (77) hide show
  1. package/bundles/qms-angular.umd.js +767 -80
  2. package/bundles/qms-angular.umd.js.map +1 -1
  3. package/esm2015/lib/common/models/qms-flat-node.model.js +3 -0
  4. package/esm2015/lib/common/models/qms-tree-config.model.js +7 -0
  5. package/esm2015/lib/common/models/qms-tree-node.model.js +8 -0
  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/qms-nav-drawer/index.js +2 -0
  9. package/esm2015/lib/components/qms-nav-drawer/models/qms-nav-drawer.model.js +10 -0
  10. package/esm2015/lib/components/qms-nav-drawer/public_api.js +4 -0
  11. package/esm2015/lib/components/qms-nav-drawer/qms-nav-drawer.component.js +167 -0
  12. package/esm2015/lib/components/qms-nav-drawer/qms-nav-drawer.module.js +35 -0
  13. package/esm2015/lib/components/related/popup/related-popup.component.js +3 -3
  14. package/esm2015/lib/components/select-include-children/public_api.js +2 -2
  15. package/esm2015/lib/components/select-include-children/select-include-children.component.js +4 -4
  16. package/esm2015/lib/components/select-include-children/services/select-include-children-global.service.js +17 -0
  17. package/esm2015/lib/components/select-one/common/select-one-next.model.js +7 -0
  18. package/esm2015/lib/components/select-one/public_api.js +3 -1
  19. package/esm2015/lib/components/select-one/select-one-next.component.js +95 -0
  20. package/esm2015/lib/components/select-one/select-one.component.js +3 -3
  21. package/esm2015/lib/components/select-one/select-one.module.js +6 -3
  22. package/esm2015/lib/components/select-process-document/select-process-document.component.js +3 -3
  23. package/esm2015/lib/components/tree/basic-tree.component.js +220 -0
  24. package/esm2015/lib/components/tree/index.js +2 -0
  25. package/esm2015/lib/components/tree/public-api.js +9 -0
  26. package/esm2015/lib/components/tree/tree.component.js +2 -3
  27. package/esm2015/lib/components/tree/tree.module.js +4 -1
  28. package/esm2015/lib/components/treeNew/tree.component.js +1 -1
  29. package/esm2015/lib/directives/form.directive.js +9 -3
  30. package/esm2015/lib/directives/qms-multi-icon.directive.js +75 -0
  31. package/esm2015/lib/qms-angular.module.js +6 -3
  32. package/esm2015/lib/services/qms-tree-global.service.js +29 -0
  33. package/esm2015/public-api.js +8 -8
  34. package/esm2015/qms-angular.js +15 -12
  35. package/fesm2015/qms-angular.js +680 -51
  36. package/fesm2015/qms-angular.js.map +1 -1
  37. package/lib/common/models/qms-flat-node.model.d.ts +9 -0
  38. package/lib/common/models/qms-tree-config.model.d.ts +5 -0
  39. package/lib/common/models/qms-tree-node.model.d.ts +25 -0
  40. package/lib/components/qms-nav-drawer/index.d.ts +1 -0
  41. package/lib/components/qms-nav-drawer/models/qms-nav-drawer.model.d.ts +34 -0
  42. package/lib/components/qms-nav-drawer/public_api.d.ts +3 -0
  43. package/lib/components/qms-nav-drawer/qms-nav-drawer.component.d.ts +67 -0
  44. package/lib/components/qms-nav-drawer/qms-nav-drawer.module.d.ts +2 -0
  45. package/lib/components/select-include-children/public_api.d.ts +1 -1
  46. package/lib/components/select-include-children/select-include-children.component.d.ts +3 -3
  47. package/lib/components/select-include-children/services/{select-global.service.d.ts → select-include-children-global.service.d.ts} +1 -1
  48. package/lib/components/select-one/common/select-one-next.model.d.ts +11 -0
  49. package/lib/components/select-one/public_api.d.ts +2 -0
  50. package/lib/components/select-one/select-one-next.component.d.ts +33 -0
  51. package/lib/components/tree/basic-tree.component.d.ts +79 -0
  52. package/lib/components/tree/index.d.ts +1 -0
  53. package/lib/components/tree/public-api.d.ts +8 -0
  54. package/lib/directives/form.directive.d.ts +1 -0
  55. package/lib/directives/qms-multi-icon.directive.d.ts +15 -0
  56. package/lib/services/qms-tree-global.service.d.ts +13 -0
  57. package/lib.theme.scss +5 -4
  58. package/package.json +1 -1
  59. package/public-api.d.ts +7 -7
  60. package/qms-angular.d.ts +14 -11
  61. package/qms-angular.metadata.json +1 -1
  62. package/src/assets/qms-ckeditor-plugin/package-lock.json +48 -0
  63. package/src/lib/components/list/_list-expansion.scss +1 -1
  64. package/src/lib/components/list/list.scss +2 -2
  65. package/src/lib/components/qms-nav-drawer/qms-nav-drawer.component.scss +101 -0
  66. package/src/lib/components/related/popup/related-popup.component.scss +2 -2
  67. package/src/lib/components/select-include-children/select-include-children.component.scss +1 -1
  68. package/src/lib/components/select-one/select-one-next.component.scss +70 -0
  69. package/src/lib/components/select-one/select-one.component.scss +1 -1
  70. package/src/lib/components/select-process-document/select-process-document.component.scss +1 -1
  71. package/src/lib/components/tree/basic-tree.component.scss +168 -0
  72. package/src/themes/core/_checkbox.scss +18 -3
  73. package/src/themes/core/_radio.scss +18 -0
  74. package/src/themes/core/_slide-toggle.scss +17 -0
  75. package/src/themes/core/_table-pure-gap.scss +31 -3
  76. package/src/themes/theme/_variable.scss +3 -0
  77. package/esm2015/lib/components/select-include-children/services/select-global.service.js +0 -17
@@ -2115,6 +2115,16 @@
2115
2115
  "node": ">=8"
2116
2116
  }
2117
2117
  },
2118
+ "node_modules/bindings": {
2119
+ "version": "1.5.0",
2120
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
2121
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
2122
+ "dev": true,
2123
+ "optional": true,
2124
+ "dependencies": {
2125
+ "file-uri-to-path": "1.0.0"
2126
+ }
2127
+ },
2118
2128
  "node_modules/bluebird": {
2119
2129
  "version": "3.7.2",
2120
2130
  "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
@@ -4275,6 +4285,13 @@
4275
4285
  "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
4276
4286
  "dev": true
4277
4287
  },
4288
+ "node_modules/file-uri-to-path": {
4289
+ "version": "1.0.0",
4290
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
4291
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
4292
+ "dev": true,
4293
+ "optional": true
4294
+ },
4278
4295
  "node_modules/fill-range": {
4279
4296
  "version": "7.0.1",
4280
4297
  "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
@@ -5770,6 +5787,13 @@
5770
5787
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
5771
5788
  "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
5772
5789
  },
5790
+ "node_modules/nan": {
5791
+ "version": "2.16.0",
5792
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
5793
+ "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==",
5794
+ "dev": true,
5795
+ "optional": true
5796
+ },
5773
5797
  "node_modules/nanoid": {
5774
5798
  "version": "3.1.22",
5775
5799
  "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz",
@@ -14337,6 +14361,16 @@
14337
14361
  "dev": true,
14338
14362
  "optional": true
14339
14363
  },
14364
+ "bindings": {
14365
+ "version": "1.5.0",
14366
+ "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
14367
+ "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
14368
+ "dev": true,
14369
+ "optional": true,
14370
+ "requires": {
14371
+ "file-uri-to-path": "1.0.0"
14372
+ }
14373
+ },
14340
14374
  "bluebird": {
14341
14375
  "version": "3.7.2",
14342
14376
  "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
@@ -16113,6 +16147,13 @@
16113
16147
  "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
16114
16148
  "dev": true
16115
16149
  },
16150
+ "file-uri-to-path": {
16151
+ "version": "1.0.0",
16152
+ "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
16153
+ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
16154
+ "dev": true,
16155
+ "optional": true
16156
+ },
16116
16157
  "fill-range": {
16117
16158
  "version": "7.0.1",
16118
16159
  "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
@@ -17292,6 +17333,13 @@
17292
17333
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
17293
17334
  "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
17294
17335
  },
17336
+ "nan": {
17337
+ "version": "2.16.0",
17338
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
17339
+ "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==",
17340
+ "dev": true,
17341
+ "optional": true
17342
+ },
17295
17343
  "nanoid": {
17296
17344
  "version": "3.1.22",
17297
17345
  "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz",
@@ -4,7 +4,7 @@
4
4
  @import "../../../themes/theme/mixins";
5
5
 
6
6
  .mat-expansion-panel {
7
- &.qms-expansion {
7
+ &.qms-expansion:not([class*=mat-elevation-z]) {
8
8
  background-color: transparent;
9
9
  box-shadow: none;
10
10
  border-bottom: 1px solid $border-bottom-item;
@@ -70,13 +70,13 @@
70
70
  }
71
71
  }
72
72
 
73
- &:not([disabled]):hover, &:not([disabled]):focus {
73
+ &:not([disabled], .qms-list-item-disabled):hover, &:not([disabled], .qms-list-item-disabled):focus {
74
74
  cursor: pointer;
75
75
  background-color: black(0.08);
76
76
  outline: none;
77
77
  }
78
78
 
79
- &:not([disabled]):active {
79
+ &:not([disabled], .qms-list-item-disabled):active {
80
80
  cursor: pointer;
81
81
  background-color: black(0.12);
82
82
  }
@@ -0,0 +1,101 @@
1
+ @import "../../../themes/core/variables";
2
+ @import "../../../themes/theme/variable";
3
+ @import "../../../themes/theme/mixins";
4
+ @import "../../../themes/qms-icon-font";
5
+
6
+ .mat-tree.qms-nav-drawer-container {
7
+ font-family: Open Sans;
8
+
9
+ .mat-tree-node {
10
+ &:hover {
11
+ background: black(0.08);
12
+ }
13
+
14
+ &:active {
15
+ background: black(0.12);
16
+ }
17
+
18
+ &.active {
19
+ color: theme-apply($primary);
20
+ background: theme-apply($primary-light-6-opacity);
21
+
22
+ &:active {
23
+ background: theme-apply($primary-light-12-opacity);
24
+ }
25
+
26
+ button,
27
+ .mat-icon-rtl-mirror,
28
+ .type-icon,
29
+ .text-name {
30
+ color: theme-apply($primary);
31
+ }
32
+ }
33
+ }
34
+
35
+ .mat-tree-node.collapse-node {
36
+ &.active {
37
+ button,
38
+ .mat-icon-rtl-mirror,
39
+ .type-icon,
40
+ .text-name {
41
+ color: theme-apply($primary);
42
+ }
43
+ &:hover {
44
+ background: theme-apply($primary-light-6-opacity);
45
+ }
46
+
47
+ &:active {
48
+ background: theme-apply($primary-light-12-opacity);
49
+ }
50
+ }
51
+ }
52
+
53
+ .mat-tree-node.expand-node {
54
+ color: theme-apply($primary);
55
+ button,
56
+ .mat-icon-rtl-mirror,
57
+ .type-icon,
58
+ .text-name {
59
+ color: theme-apply($primary);
60
+ }
61
+
62
+ &:hover {
63
+ background: theme-apply($primary-light-6-opacity);
64
+ }
65
+
66
+ &:active {
67
+ background: theme-apply($primary-light-12-opacity);
68
+ }
69
+ }
70
+
71
+ .type-icon {
72
+ margin-right: 5px;
73
+ color: theme-apply($ws-action-active);
74
+ }
75
+
76
+ .text-name {
77
+ color: theme-apply($default-color);
78
+ }
79
+
80
+ .mat-icon-rtl-mirror {
81
+ color: black(0.6);
82
+ }
83
+ }
84
+
85
+ .text-name {
86
+ position: relative;
87
+ overflow: hidden;
88
+ text-overflow: ellipsis;
89
+ display: -webkit-box;
90
+ -webkit-line-clamp: 2;
91
+ -webkit-box-orient: vertical;
92
+ cursor: pointer;
93
+ }
94
+
95
+ .cursor-pointer {
96
+ cursor: pointer;
97
+ }
98
+
99
+ .ml-5 {
100
+ margin-left: 10px;
101
+ }
@@ -260,7 +260,7 @@ cdk-virtual-scroll-viewport {
260
260
  border-bottom: none;
261
261
  }
262
262
 
263
- .breadcrumb-containe {
263
+ .breadcrumb-container {
264
264
  .qms-breadcrumb-item {
265
265
  .mat-icon {
266
266
  font-size: 16px!important;
@@ -279,7 +279,7 @@ cdk-virtual-scroll-viewport {
279
279
  color: $disabled-color;
280
280
  }
281
281
 
282
- .breadcrumb-containe {
282
+ .breadcrumb-container {
283
283
  .qms-breadcrumb-item {
284
284
  .mat-icon {
285
285
  color: $disabled-color;
@@ -269,7 +269,7 @@ cdk-virtual-scroll-viewport {
269
269
  border-bottom: none;
270
270
  }
271
271
 
272
- .breadcrumb-containe {
272
+ .breadcrumb-container {
273
273
  .qms-breadcrumb-item {
274
274
  .mat-icon {
275
275
  font-size: 16px!important;
@@ -0,0 +1,70 @@
1
+ @import "../../../themes/theme/variable";
2
+ @import "../../../themes/theme/mixins";
3
+ @import "../../../themes/core/scrollbar.scss";
4
+ @import "../../../themes/core/button.scss";
5
+ @import "../../../themes/core/dialog-new";
6
+ @import "../../../themes/qms-icon-font";
7
+
8
+ .search-field {
9
+ display: flex;
10
+ align-items: center;
11
+
12
+ input {
13
+ width: 100%;
14
+ padding: 10px;
15
+ outline: none;
16
+ border: none;
17
+ background: theme-apply($background-input-text);
18
+ }
19
+
20
+ .mat-icon {
21
+ margin-left: -30px;
22
+ cursor: pointer;
23
+ vertical-align: middle;
24
+ }
25
+ }
26
+
27
+ .title-header {
28
+ font-size: 1rem;
29
+ margin-top: 0;
30
+ margin-bottom: 0.5rem;
31
+ font-weight: 500;
32
+ line-height: 1.2;
33
+ }
34
+
35
+ .btn-close-icon.qms-btn-icon {
36
+ width: 36px;
37
+ height: 36px;
38
+ line-height: 36px;
39
+ }
40
+
41
+ .qms-dialog-header {
42
+ border-bottom: 1px solid #ccc;
43
+ padding-bottom: 10px;
44
+ }
45
+
46
+ .search-module__option.mat-option.mat-active {
47
+ background-color: transparent;
48
+ }
49
+
50
+ .qms-dialog-content {
51
+ margin-top: 10px !important;
52
+ }
53
+
54
+ .qms-dialog-footer {
55
+ border-top: 1px solid #ccc;
56
+ padding-top: 10px;
57
+ }
58
+
59
+ ::ng-deep .image-square.wrap-image {
60
+ width: 2.5rem !important;
61
+ height: 100% !important;
62
+ background: transparent;
63
+ align-self: center;
64
+ margin-right: 0;
65
+ }
66
+
67
+ ::ng-deep .mat-option:hover:not(.mat-option-disabled),
68
+ .mat-option:focus:not(.mat-option-disabled) {
69
+ background: transparent !important;
70
+ }
@@ -201,7 +201,7 @@ cdk-virtual-scroll-viewport {
201
201
  border-bottom: none;
202
202
  }
203
203
 
204
- .breadcrumb-containe {
204
+ .breadcrumb-container {
205
205
  .qms-breadcrumb-item {
206
206
  .mat-icon {
207
207
  font-size: 16px!important;
@@ -272,7 +272,7 @@ cdk-virtual-scroll-viewport {
272
272
  border-bottom: none;
273
273
  }
274
274
 
275
- .breadcrumb-containe {
275
+ .breadcrumb-container {
276
276
  .qms-breadcrumb-item {
277
277
  .mat-icon {
278
278
  font-size: 16px!important;
@@ -0,0 +1,168 @@
1
+ @import "../../../themes/core/variables";
2
+ @import "../../../themes/theme/variable";
3
+ @import "../../../themes/theme/mixins";
4
+ @import "../../../themes/qms-icon-font";
5
+
6
+ .mat-tree.basic-tree-container {
7
+ font-family: Open Sans;
8
+
9
+ .mat-tree-node {
10
+ &:hover {
11
+ background: black(0.08);
12
+ }
13
+
14
+ &:active {
15
+ background: black(0.12);
16
+ }
17
+
18
+ &.active {
19
+ color: theme-apply($primary);
20
+ background: theme-apply($primary-light-6-opacity);
21
+
22
+ &:active {
23
+ background: theme-apply($primary-light-12-opacity);
24
+ }
25
+
26
+ button,
27
+ .mat-icon-rtl-mirror,
28
+ .type-icon,
29
+ .text-name {
30
+ color: theme-apply($primary);
31
+ }
32
+ }
33
+ }
34
+
35
+ .mat-tree-node.collapse-node {
36
+ &.active {
37
+ button,
38
+ .mat-icon-rtl-mirror,
39
+ .type-icon,
40
+ .text-name {
41
+ color: theme-apply($primary);
42
+ }
43
+ &:hover {
44
+ background: theme-apply($primary-light-6-opacity);
45
+ }
46
+
47
+ &:active {
48
+ background: theme-apply($primary-light-12-opacity);
49
+ }
50
+ }
51
+ }
52
+
53
+ .mat-tree-node.expand-node {
54
+ color: theme-apply($primary);
55
+ button,
56
+ .mat-icon-rtl-mirror,
57
+ .type-icon,
58
+ .text-name {
59
+ color: theme-apply($primary);
60
+ }
61
+
62
+ &:hover {
63
+ background: theme-apply($primary-light-6-opacity);
64
+ }
65
+
66
+ &:active {
67
+ background: theme-apply($primary-light-12-opacity);
68
+ }
69
+ }
70
+
71
+ .type-icon {
72
+ margin-right: 5px;
73
+ color: theme-apply($ws-action-active);
74
+ }
75
+
76
+ .text-name {
77
+ color: theme-apply($default-color);
78
+ }
79
+
80
+ .mat-icon-rtl-mirror {
81
+ color: black(0.6);
82
+ }
83
+
84
+ .mat-icon-button.btn-toggle {
85
+ width: 35px;
86
+ height: 35px;
87
+ line-height: 35px;
88
+ }
89
+
90
+ .mat-tree-node {
91
+ &.mat-tree-node-disabled-all {
92
+ cursor: default !important;
93
+ pointer-events: none;
94
+ user-select: none;
95
+
96
+ button.mat-button-disabled,
97
+ .mat-icon-rtl-mirror,
98
+ .type-icon {
99
+ color: black(0.38);
100
+ }
101
+
102
+ .text-name {
103
+ &.disabled {
104
+ color: black(0.38);
105
+ cursor: default !important;
106
+ pointer-events: none;
107
+ user-select: none;
108
+ }
109
+ }
110
+
111
+ &.active {
112
+ background-color: transparent;
113
+ }
114
+ }
115
+
116
+ &.mat-tree-node-disabled {
117
+ button.mat-button-disabled,
118
+ .type-icon {
119
+ color: black(0.38);
120
+ }
121
+
122
+ .text-name {
123
+ &.disabled {
124
+ color: black(0.38);
125
+ cursor: default !important;
126
+ pointer-events: none;
127
+ user-select: none;
128
+ }
129
+ }
130
+
131
+ &.active,
132
+ &:hover,
133
+ &:active,
134
+ &.expand-node:hover,
135
+ &.expand-node:active {
136
+ background-color: transparent;
137
+ }
138
+ }
139
+ }
140
+ }
141
+
142
+ .text-name {
143
+ position: relative;
144
+ overflow: hidden;
145
+ text-overflow: ellipsis;
146
+ display: -webkit-box;
147
+ -webkit-line-clamp: 2;
148
+ -webkit-box-orient: vertical;
149
+ cursor: pointer;
150
+ }
151
+
152
+ .cursor-pointer {
153
+ cursor: pointer;
154
+ }
155
+
156
+ .ml-5 {
157
+ margin-left: 10px;
158
+ }
159
+
160
+ ::ng-deep .mat-checkbox.qms-group-options.flex-direction-row {
161
+ .mat-checkbox-layout {
162
+ white-space: normal;
163
+ }
164
+ .mat-checkbox-label {
165
+ flex-direction: row;
166
+ align-items: center;
167
+ }
168
+ }
@@ -14,6 +14,10 @@
14
14
 
15
15
  .mat-checkbox-inner-container {
16
16
  margin-right: 19px;
17
+
18
+ &.mat-checkbox-inner-container-no-side-margin {
19
+ margin-right: 0px;
20
+ }
17
21
  }
18
22
 
19
23
  &:hover:not(.mat-checkbox-disabled) {
@@ -22,7 +26,7 @@
22
26
 
23
27
  &:active:not(.mat-checkbox-disabled) {
24
28
  background-color: black(0.12);
25
- }
29
+ }
26
30
 
27
31
  .mat-checkbox-label {
28
32
  display: flex;
@@ -102,8 +106,19 @@
102
106
 
103
107
  &.mat-checkbox-indeterminate {
104
108
  .mat-checkbox-background {
105
- background-color: theme-apply($primary);
109
+ background-color: theme-apply($primary);
106
110
  }
107
- }
111
+ }
112
+
113
+ //-------------------Start No Label-----------------------------//
114
+ &.none-label {
115
+ &:hover:not(.mat-checkbox-disabled),
116
+ &:active:not(.mat-checkbox-disabled),
117
+ &.cdk-keyboard-focused,
118
+ &.mat-checkbox-checked {
119
+ background-color: transparent;
120
+ }
121
+ }
122
+ //-------------------End No Label-----------------------------//
108
123
  }
109
124
  }
@@ -97,5 +97,23 @@
97
97
  .mat-radio-inner-circle {
98
98
  background-color: theme-apply($primary);
99
99
  }
100
+
101
+ //-------------------Start No Label-----------------------------//
102
+ &.none-label {
103
+ .mat-radio-container {
104
+ margin-right: 0;
105
+ }
106
+ .mat-radio-label-content {
107
+ display: none;
108
+ }
109
+
110
+ &:hover:not(.mat-radio-disabled),
111
+ &:active:not(.mat-radio-disabled),
112
+ &.cdk-keyboard-focused,
113
+ &.mat-radio-checked {
114
+ background-color: transparent;
115
+ }
116
+ }
117
+ //-------------------End No Label-----------------------------//
100
118
  }
101
119
  }
@@ -113,5 +113,22 @@
113
113
  background-color: theme-apply($primary);
114
114
  }
115
115
  }
116
+
117
+
118
+ //-------------------Start No Label-----------------------------//
119
+ &.none-label {
120
+ .mat-slide-toggle-bar {
121
+ margin-right: 0;
122
+ }
123
+
124
+ &:hover:not(.mat-disabled),
125
+ &:active:not(.mat-disabled),
126
+ &.cdk-keyboard-focused,
127
+ &.mat-checked {
128
+ background-color: transparent;
129
+ }
130
+ }
131
+ //-------------------End No Label-----------------------------//
132
+
116
133
  }
117
134
  }
@@ -2,32 +2,60 @@
2
2
  @import "../theme/mixins";
3
3
  @import "typography";
4
4
 
5
+
6
+ .table-scroll-container {
7
+ position: relative;
8
+ padding-top: 35px;
9
+ overflow: hidden;
10
+ }
11
+ .table-scroll-area {
12
+ height: 100%;
13
+ overflow-x: auto;
14
+ overflow-y: auto;
15
+ -webkit-overflow-scrolling: auto;
16
+ }
17
+
18
+
19
+
5
20
  table.mat-table {
6
21
  &.qms-table {
7
22
  width: 100%;
8
23
  border-collapse: separate;
9
24
  border-spacing: 0 8px;
25
+ margin-top: -16px;
26
+ padding-right: 5px;
10
27
  background-color: transparent;
11
28
  font-family: Open Sans;
29
+ overflow-x: auto;
30
+ overflow-y: auto;
31
+ margin-bottom: 0;
32
+ border: none;
12
33
 
13
34
  .mat-header-cell {
14
35
  font-size: 14px;
15
36
  font-weight: 600;
16
37
  color: theme-apply($ws-text-secondary);
38
+ vertical-align: middle;
17
39
 
18
40
  .mat-checkbox.qms-group-options {
19
- padding: 5px 15px 5px 5px;
41
+ padding: 5px;
20
42
  }
21
43
  }
22
44
 
23
45
  .mat-header-row {
24
- height: 32px;
46
+ height: unset;
25
47
  }
26
48
 
27
49
  th {
28
- border-bottom: none;
50
+ border: none !important;
51
+ min-width: 40px;
29
52
  }
30
53
 
54
+ .th-title {
55
+ position: absolute;
56
+ top: 0;
57
+ }
58
+
31
59
  td {
32
60
  border-top: 1px solid theme-apply($disabled);
33
61
  }
@@ -106,6 +106,7 @@ $qms-app-bar-light-background-color: --qms-app-bar-light-background-color;
106
106
 
107
107
  $ws-text-secondary: --ws-text-secondary;
108
108
  $ws-text-primary: --ws-text-primary;
109
+ $ws-action-active: --ws-action-active;
109
110
 
110
111
  @function black($opacity) {
111
112
  @return rgba(black, $opacity);
@@ -215,6 +216,7 @@ $qms-theme-default: (
215
216
  $other-divider: #e0e0e0,
216
217
  $ws-text-secondary: #5a5a5a,
217
218
  $ws-text-primary: #242424,
219
+ $ws-action-active: #707070
218
220
  );
219
221
 
220
222
  $qms-theme-pink: (
@@ -317,4 +319,5 @@ $qms-theme-pink: (
317
319
  $other-divider: #e0e0e0,
318
320
  $ws-text-secondary: #5a5a5a,
319
321
  $ws-text-primary: #242424,
322
+ $ws-action-active: #707070
320
323
  );
@@ -1,17 +0,0 @@
1
- import { Injectable } from "@angular/core";
2
- import { BehaviorSubject } from "rxjs";
3
- import * as i0 from "@angular/core";
4
- export class QMSSelectGlobalService {
5
- constructor() {
6
- this.searchSelect = new BehaviorSubject([]);
7
- }
8
- setSearchResult(result) {
9
- this.searchSelect.next(result);
10
- }
11
- }
12
- QMSSelectGlobalService.ɵprov = i0.ɵɵdefineInjectable({ factory: function QMSSelectGlobalService_Factory() { return new QMSSelectGlobalService(); }, token: QMSSelectGlobalService, providedIn: "root" });
13
- QMSSelectGlobalService.decorators = [
14
- { type: Injectable, args: [{ providedIn: 'root' },] }
15
- ];
16
- QMSSelectGlobalService.ctorParameters = () => [];
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LWdsb2JhbC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcW1zLWFuZ3VsYXIvc3JjL2xpYi9jb21wb25lbnRzL3NlbGVjdC1pbmNsdWRlLWNoaWxkcmVuL3NlcnZpY2VzL3NlbGVjdC1nbG9iYWwuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBS3ZDLE1BQU0sT0FBTyxzQkFBc0I7SUFHL0I7UUFGQSxpQkFBWSxHQUFHLElBQUksZUFBZSxDQUF1QixFQUFFLENBQUMsQ0FBQztJQUU3QyxDQUFDO0lBRWpCLGVBQWUsQ0FBQyxNQUE0QjtRQUN4QyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUNuQyxDQUFDOzs7O1lBUkosVUFBVSxTQUFDLEVBQUMsVUFBVSxFQUFFLE1BQU0sRUFBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xyXG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tIFwicnhqc1wiO1xyXG5pbXBvcnQgeyBTZWxlY3RPcHRpb24gfSBmcm9tIFwiLi4vbW9kZWwvc2VsZWN0LW9wdGlvbi5tb2RlbFwiXHJcbmltcG9ydCB7IFNlbGVjdFNlYXJjaE9wdGlvbiB9IGZyb20gXCIuLi9tb2RlbC9zZWxlY3Qtc2VhcmNoLW9wdGlvbi5tb2RlbFwiO1xyXG5cclxuQEluamVjdGFibGUoe3Byb3ZpZGVkSW46ICdyb290J30pXHJcbmV4cG9ydCBjbGFzcyBRTVNTZWxlY3RHbG9iYWxTZXJ2aWNlIHtcclxuICAgIHNlYXJjaFNlbGVjdCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8U2VsZWN0U2VhcmNoT3B0aW9uW10+KFtdKTtcclxuXHJcbiAgICBjb25zdHJ1Y3RvcigpIHsgfVxyXG5cclxuICAgIHNldFNlYXJjaFJlc3VsdChyZXN1bHQ6IFNlbGVjdFNlYXJjaE9wdGlvbltdKSB7XHJcbiAgICAgICAgdGhpcy5zZWFyY2hTZWxlY3QubmV4dChyZXN1bHQpO1xyXG4gICAgfVxyXG5cclxufVxyXG4gICJdfQ==