qms-angular 1.0.76 → 1.0.80
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 +409 -356
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +3 -3
- package/esm2015/lib/components/related/popup/related-popup.component.js +294 -300
- 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 -30
- 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 +23 -3
- package/esm2015/lib/components/tree/tree.component.js +10 -6
- package/esm2015/lib/components/treeNew/tree.component.js +31 -10
- package/fesm2015/qms-angular.js +406 -353
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/related/popup/related-popup.component.d.ts +2 -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/qms-navigation-drawer/qms-navigation-drawer.component.scss +6 -3
- package/src/lib/components/select-process-document/select-process-document.component.scss +14 -1
- package/src/lib/components/treeNew/tree.component.scss +3 -6
@@ -6,9 +6,8 @@
|
|
6
6
|
}
|
7
7
|
|
8
8
|
.mat-tree-node {
|
9
|
-
min-height
|
10
|
-
margin
|
11
|
-
padding-right: 34px;
|
9
|
+
min-height: 34px;
|
10
|
+
margin : 16px 0px;
|
12
11
|
|
13
12
|
&.active {
|
14
13
|
background-color: #F2F7FD;
|
@@ -193,6 +192,10 @@
|
|
193
192
|
}
|
194
193
|
}
|
195
194
|
|
195
|
+
.pr-34 {
|
196
|
+
padding-right: 34px;
|
197
|
+
}
|
198
|
+
|
196
199
|
}
|
197
200
|
|
198
201
|
.node-preview-item {
|
@@ -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
|
|