qms-angular 1.0.78 → 1.0.82
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 +226 -142
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/related/popup/related-popup.component.js +50 -57
- package/esm2015/lib/components/select-include-children/select-include-children.component.js +8 -8
- package/esm2015/lib/components/select-one/select-one.component.js +44 -29
- package/esm2015/lib/components/select-process-document/models/pop-up-data.model.js +1 -1
- package/esm2015/lib/components/select-process-document/select-process-document.component.js +86 -35
- package/esm2015/lib/components/tree/tree.component.js +11 -7
- package/esm2015/lib/components/treeNew/tree.component.js +31 -10
- package/fesm2015/qms-angular.js +224 -140
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/select-process-document/models/pop-up-data.model.d.ts +1 -0
- package/lib/components/select-process-document/select-process-document.component.d.ts +3 -0
- package/lib/components/treeNew/tree.component.d.ts +1 -0
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/lib/components/select-process-document/select-process-document.component.scss +14 -1
- package/src/lib/components/treeNew/tree.component.scss +3 -6
- package/src/themes/core/_form.scss +4 -0
@@ -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
|
-
.
|
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
|
-
|
111
|
-
|
112
|
-
.icon-check {
|
113
|
-
color: $primary;
|
114
|
-
}
|
110
|
+
.select-one-checked {
|
111
|
+
color: $primary;
|
115
112
|
}
|
116
113
|
}
|
117
114
|
|