qms-angular 1.0.74 → 1.0.78
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 +428 -475
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/comment/comment.js +2 -2
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +12 -8
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +5 -3
- package/esm2015/lib/components/qms-stepper/qms-stepper.component.js +1 -1
- package/esm2015/lib/components/related/popup/related-popup.component.js +294 -301
- package/esm2015/lib/components/select-include-children/select-include-children.component.js +2 -2
- package/esm2015/lib/components/select-one/select-one.component.js +3 -3
- package/esm2015/lib/components/select-process-document/select-process-document.component.js +64 -143
- package/esm2015/lib/components/tree/tree.component.js +2 -2
- package/esm2015/lib/directives/table/table-row.directive.js +9 -1
- package/esm2015/lib/directives/table/table.directive.js +6 -2
- package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.js +1 -1
- package/esm2015/public-api.js +2 -1
- package/esm2015/qms-angular.js +12 -13
- package/fesm2015/qms-angular.js +392 -460
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.d.ts +2 -2
- package/lib/components/related/popup/related-popup.component.d.ts +2 -1
- package/lib/components/select-process-document/select-process-document.component.d.ts +3 -0
- package/lib/directives/table/table.directive.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/qms-angular.d.ts +11 -12
- package/qms-angular.metadata.json +1 -1
- package/src/assets/jointjs/scss/rappid.scss +1 -1
- package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +26 -5
- package/src/lib/components/qms-paginator/qms-paginator.component.scss +27 -5
- package/src/lib/components/qms-stepper/qms-stepper.component.scss +2 -1
- package/src/lib/components/select-process-document/select-process-document.component.scss +2 -2
- package/src/lib/qms-ckeditor-components/components/qms-ckeditor-imagemap/qms-ckeditor-imagemap.component.scss +0 -1
- package/src/themes/core/_table.scss +28 -9
@@ -6099,7 +6099,7 @@ Important note: Presentation attributes have a lower precedence over CSS style r
|
|
6099
6099
|
}
|
6100
6100
|
.joint-select-box.joint-theme-dark .select-box-selection:after {
|
6101
6101
|
width: 33px;
|
6102
|
-
height: calc(100
|
6102
|
+
height: calc(100% - 2px);
|
6103
6103
|
border: 1px solid #42474a;
|
6104
6104
|
border-top-right-radius: 3px;
|
6105
6105
|
border-bottom-right-radius: 3px;
|
@@ -1,14 +1,13 @@
|
|
1
1
|
::ng-deep mat-tree.qms-navigation-drawer-container {
|
2
2
|
|
3
3
|
.mat-tree-node {
|
4
|
-
width
|
5
|
-
height: 48px !important;
|
4
|
+
min-width: 272px !important;
|
5
|
+
height : 48px !important;
|
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;
|
@@ -17,6 +16,10 @@
|
|
17
16
|
img {
|
18
17
|
filter: opacity(0.5) drop-shadow(0 0 0 #1954A9);
|
19
18
|
}
|
19
|
+
|
20
|
+
&:hover {
|
21
|
+
background-color: #E5EEFB !important;
|
22
|
+
}
|
20
23
|
}
|
21
24
|
|
22
25
|
.tree-content {
|
@@ -70,6 +73,10 @@
|
|
70
73
|
::ng-deep mat-icon {
|
71
74
|
color: #1954A9;
|
72
75
|
}
|
76
|
+
|
77
|
+
&:hover {
|
78
|
+
background-color: #E5EEFB !important;
|
79
|
+
}
|
73
80
|
}
|
74
81
|
|
75
82
|
&.collapse-node {
|
@@ -185,4 +192,18 @@
|
|
185
192
|
}
|
186
193
|
}
|
187
194
|
|
195
|
+
.pr-34 {
|
196
|
+
padding-right: 34px;
|
197
|
+
}
|
198
|
+
|
199
|
+
}
|
200
|
+
|
201
|
+
.node-preview-item {
|
202
|
+
display : flex;
|
203
|
+
background-color: #0000001F;
|
204
|
+
min-width : 272px !important;
|
205
|
+
height : 48px !important;
|
206
|
+
margin : 0 auto;
|
207
|
+
align-items : center;
|
208
|
+
padding : 0px 16px;
|
188
209
|
}
|
@@ -10,15 +10,21 @@
|
|
10
10
|
padding: 0 8px;
|
11
11
|
flex-wrap: wrap-reverse;
|
12
12
|
width: 100%;
|
13
|
+
.qms-btn-icon {
|
14
|
+
width: 40px;
|
15
|
+
height: 40px;
|
16
|
+
line-height: 40px;
|
17
|
+
}
|
13
18
|
.mat-select {
|
14
19
|
.mat-select-arrow {
|
15
|
-
margin-top:
|
20
|
+
margin-top: 20px;
|
16
21
|
}
|
17
22
|
}
|
18
23
|
.qms-total-result {
|
19
24
|
margin-right: 24px;
|
20
|
-
margin-bottom:
|
25
|
+
margin-bottom: 20px;
|
21
26
|
span {
|
27
|
+
font-family: Open Sans;
|
22
28
|
font-weight: normal;
|
23
29
|
font-size: 14px;
|
24
30
|
line-height: 22px;
|
@@ -43,6 +49,13 @@
|
|
43
49
|
width: 80px;
|
44
50
|
}
|
45
51
|
}
|
52
|
+
.qms-form-select-page-size {
|
53
|
+
.mat-form-field-flex {
|
54
|
+
width: 51px;
|
55
|
+
padding-left: 9px;
|
56
|
+
padding-right: 5px;
|
57
|
+
}
|
58
|
+
}
|
46
59
|
.jump-page {
|
47
60
|
.mat-form-field-wrapper {
|
48
61
|
.mat-form-field-flex {
|
@@ -53,9 +66,10 @@
|
|
53
66
|
.mat-form-field-flex {
|
54
67
|
height: 40px;
|
55
68
|
.mat-form-field-infix {
|
56
|
-
padding-top:
|
69
|
+
padding-top: 4px;
|
57
70
|
border-top: 0px;
|
58
71
|
padding-bottom: 0px;
|
72
|
+
height: 25px;
|
59
73
|
}
|
60
74
|
}
|
61
75
|
}
|
@@ -83,7 +97,7 @@
|
|
83
97
|
.mat-paginator-container-mobile {
|
84
98
|
.mat-select {
|
85
99
|
.mat-select-arrow {
|
86
|
-
margin-top:
|
100
|
+
margin-top: 20px;
|
87
101
|
}
|
88
102
|
}
|
89
103
|
.qms-total-result {
|
@@ -118,6 +132,13 @@
|
|
118
132
|
width: 80px;
|
119
133
|
}
|
120
134
|
}
|
135
|
+
.qms-form-select-page-size {
|
136
|
+
.mat-form-field-flex {
|
137
|
+
width: 51px;
|
138
|
+
padding-left: 9px;
|
139
|
+
padding-right: 5px;
|
140
|
+
}
|
141
|
+
}
|
121
142
|
.jump-page {
|
122
143
|
.mat-form-field-wrapper {
|
123
144
|
.mat-form-field-flex {
|
@@ -128,9 +149,10 @@
|
|
128
149
|
.mat-form-field-flex {
|
129
150
|
height: 40px;
|
130
151
|
.mat-form-field-infix {
|
131
|
-
padding-top:
|
152
|
+
padding-top: 4px;
|
132
153
|
border-top: 0px;
|
133
154
|
padding-bottom: 0px;
|
155
|
+
height: 25px;
|
134
156
|
}
|
135
157
|
}
|
136
158
|
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
color: #FFFFFF;
|
9
9
|
|
10
10
|
&.mat-horizontal-stepper-header {
|
11
|
-
width:
|
11
|
+
min-width: fit-content;
|
12
12
|
}
|
13
13
|
|
14
14
|
&.mat-vertical-stepper-header {
|
@@ -32,6 +32,7 @@
|
|
32
32
|
.title-step {
|
33
33
|
font-weight: 600 !important;
|
34
34
|
outline: none !important;
|
35
|
+
-webkit-font-smoothing: antialiased !important;
|
35
36
|
}
|
36
37
|
}
|
37
38
|
|
@@ -4,6 +4,8 @@
|
|
4
4
|
.qms-table {
|
5
5
|
.mat-checkbox.qms-group-options {
|
6
6
|
.mat-checkbox-inner-container {
|
7
|
+
width: 18px;
|
8
|
+
height: 18px;
|
7
9
|
margin: 0 !important;
|
8
10
|
}
|
9
11
|
|
@@ -26,22 +28,30 @@
|
|
26
28
|
border: 1px solid #E0E0E0;
|
27
29
|
border-radius: 4px;
|
28
30
|
margin-top: 8px;
|
29
|
-
min-height:
|
31
|
+
min-height: 40px;
|
32
|
+
font-size: 14px;
|
33
|
+
font-family: 'Open Sans';
|
34
|
+
font-weight: normal;
|
35
|
+
color: #323232;
|
30
36
|
|
31
37
|
mat-cell:first-of-type {
|
32
38
|
padding: 0;
|
33
39
|
}
|
34
40
|
|
35
|
-
|
36
|
-
|
41
|
+
&[tabindex]:focus-visible {
|
42
|
+
outline: 2px auto $primary;
|
37
43
|
}
|
38
44
|
|
39
|
-
&:hover {
|
40
|
-
background: rgba(0, 0, 0, 0.08)
|
45
|
+
&:active, &:hover {
|
46
|
+
background: rgba(0, 0, 0, 0.08);
|
41
47
|
}
|
42
48
|
|
43
49
|
&-selected {
|
44
50
|
background: $tab-focus-background;
|
51
|
+
|
52
|
+
&:hover {
|
53
|
+
background: rgba(40, 115, 223, 0.06);
|
54
|
+
}
|
45
55
|
}
|
46
56
|
|
47
57
|
&-disabled {
|
@@ -53,6 +63,7 @@
|
|
53
63
|
opacity: 0.38;
|
54
64
|
}
|
55
65
|
}
|
66
|
+
|
56
67
|
&-draft {
|
57
68
|
border: 2px dashed rgba(0, 0, 0, 0.12);
|
58
69
|
}
|
@@ -102,14 +113,21 @@
|
|
102
113
|
padding-left: 4px;
|
103
114
|
|
104
115
|
.expand-icon {
|
116
|
+
transition: transform 0.2s;
|
105
117
|
margin: 0 10px;
|
106
118
|
}
|
107
119
|
|
108
120
|
&.qms-row-expanded {
|
109
121
|
background: #F2F7FD;
|
110
|
-
border-left:
|
122
|
+
border-bottom-left-radius: 0;
|
123
|
+
border-bottom-right-radius: 0;
|
124
|
+
|
125
|
+
&:hover {
|
126
|
+
background: rgba(40, 115, 223, 0.06);
|
127
|
+
}
|
111
128
|
|
112
129
|
.expand-icon {
|
130
|
+
transition: transform 0.2s;
|
113
131
|
transform: rotate(180deg);
|
114
132
|
}
|
115
133
|
|
@@ -127,10 +145,9 @@
|
|
127
145
|
|
128
146
|
&.qms-group-table {
|
129
147
|
.qms-table-row {
|
130
|
-
padding-left: 0 !important;
|
131
|
-
border-left: 4px solid $primary-light-32-opacity;
|
132
|
-
|
133
148
|
&.expandable-group {
|
149
|
+
padding-left: 0!important;
|
150
|
+
border-left: 4px solid $primary-light-32-opacity;
|
134
151
|
border-radius: 4px 4px 0 0;
|
135
152
|
}
|
136
153
|
}
|
@@ -163,6 +180,8 @@
|
|
163
180
|
.qms-row-children {
|
164
181
|
margin-top: unset;
|
165
182
|
border-radius: unset;
|
183
|
+
padding-left: 0!important;
|
184
|
+
border-left: 4px solid $primary-light-32-opacity;
|
166
185
|
}
|
167
186
|
}
|
168
187
|
|