qms-angular 1.1.52 → 1.1.54
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 +192 -38
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/banner/qms-banner/qms-banner.component.js +3 -2
- package/esm2015/lib/components/qms-nav-drawer/qms-nav-drawer.component.js +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +5 -1
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +3 -3
- package/esm2015/lib/components/select-department/select-department.component.js +2 -2
- package/esm2015/lib/components/select-department-tree/model/select-department-tree.config.js +2 -1
- package/esm2015/lib/components/select-department-tree/select-department-tree.component.js +169 -34
- package/esm2015/lib/components/select-department-tree/select-department-tree.module.js +4 -2
- package/fesm2015/qms-angular.js +180 -38
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/banner/qms-banner/qms-banner.component.d.ts +1 -0
- package/lib/components/select-department-tree/model/select-department-tree.config.d.ts +1 -0
- package/lib/components/select-department-tree/select-department-tree.component.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/components/qms-paginator/qms-paginator.component.scss +188 -156
- package/src/lib/components/select-department-tree/select-department-tree.component.scss +192 -148
|
@@ -99,6 +99,7 @@ export declare class SelectDepartmentTreeComponent implements OnInit, AfterViewI
|
|
|
99
99
|
hasChild: (_: number, node: QMSFlatNodeTree) => boolean;
|
|
100
100
|
private readonly _handlingLazyObject;
|
|
101
101
|
private lockHandleSelectionChange;
|
|
102
|
+
source_object: QMSTreeNode;
|
|
102
103
|
constructor(cdRef: ChangeDetectorRef, domSanitizer: DomSanitizer, appIconService: QMSIconRegistryService, iconRegistry: MatIconRegistry, eleRef: ElementRef, trans: TranslateLibraryService, overlay: Overlay, viewContainerRef: ViewContainerRef, treeDepartmentService: QMSSelectDepartmentTreeGlobalService);
|
|
103
104
|
ngAfterContentInit(): void;
|
|
104
105
|
ngAfterViewInit(): void;
|
|
@@ -124,6 +125,7 @@ export declare class SelectDepartmentTreeComponent implements OnInit, AfterViewI
|
|
|
124
125
|
onExpandNode(node: QMSFlatNodeTree): void;
|
|
125
126
|
onOptionSearchSelected(value: QMSFlatNodeTree): void;
|
|
126
127
|
onCheckAllRootTreeNode(): void;
|
|
128
|
+
moveToLocation(node: QMSFlatNodeTree, type: string): void;
|
|
127
129
|
onCheckNode(node: QMSFlatNodeTree, fireEventCheckNode?: boolean): void;
|
|
128
130
|
private _handleSelectOne;
|
|
129
131
|
onExpandAllParent(node: QMSFlatNodeTree): void;
|
package/package.json
CHANGED
|
@@ -1,172 +1,204 @@
|
|
|
1
|
-
::ng-deep .customCDKpanel {
|
|
2
|
-
|
|
1
|
+
::ng-deep .customCDKpanel {
|
|
2
|
+
transform: none !important;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
::ng-deep .qms-paginator {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
display: block;
|
|
7
|
+
.qms-paginator-outer-container {
|
|
8
|
+
display: flex;
|
|
9
|
+
}
|
|
10
|
+
.mat-paginator-container {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
justify-content: flex-end;
|
|
14
|
+
padding: 0 8px;
|
|
15
|
+
flex-wrap: wrap-reverse;
|
|
16
|
+
width: 100%;
|
|
17
|
+
.qms-btn-icon {
|
|
18
|
+
width: 40px;
|
|
19
|
+
height: 40px;
|
|
20
|
+
line-height: 40px;
|
|
9
21
|
}
|
|
10
|
-
.mat-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
.mat-select {
|
|
23
|
+
.mat-select-arrow {
|
|
24
|
+
margin-top: 20px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
.qms-total-result {
|
|
28
|
+
margin-right: 24px;
|
|
29
|
+
margin-bottom: 21px;
|
|
30
|
+
span {
|
|
31
|
+
font-family: Open Sans;
|
|
32
|
+
font-weight: normal;
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
line-height: 22px;
|
|
35
|
+
color: rgba(0, 0, 0, 0.6);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.qms-paginator-page-size {
|
|
39
|
+
margin-right: 24px;
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: baseline;
|
|
42
|
+
.qms-pagesize-label {
|
|
43
|
+
font-weight: normal;
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
line-height: 22px;
|
|
46
|
+
color: #323232;
|
|
47
|
+
font-family: Open Sans;
|
|
48
|
+
font-style: normal;
|
|
49
|
+
margin-right: 8px;
|
|
50
|
+
}
|
|
51
|
+
.qms-form-page-size {
|
|
52
|
+
.mat-form-field-flex {
|
|
53
|
+
width: 80px;
|
|
26
54
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
font-size: 14px;
|
|
34
|
-
line-height: 22px;
|
|
35
|
-
color: rgba(0, 0, 0, 0.6);
|
|
36
|
-
}
|
|
55
|
+
}
|
|
56
|
+
.qms-form-select-page-size {
|
|
57
|
+
.mat-form-field-flex {
|
|
58
|
+
width: 51px;
|
|
59
|
+
padding-left: 9px;
|
|
60
|
+
padding-right: 5px;
|
|
37
61
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
font-size: 14px;
|
|
45
|
-
line-height: 22px;
|
|
46
|
-
color: #323232;
|
|
47
|
-
font-family: Open Sans;
|
|
48
|
-
font-style: normal;
|
|
49
|
-
margin-right: 8px;
|
|
50
|
-
}
|
|
51
|
-
.qms-form-page-size {
|
|
52
|
-
.mat-form-field-flex {
|
|
53
|
-
width: 80px;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
.qms-form-select-page-size {
|
|
57
|
-
.mat-form-field-flex {
|
|
58
|
-
width: 51px;
|
|
59
|
-
padding-left: 9px;
|
|
60
|
-
padding-right: 5px;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
.jump-page {
|
|
64
|
-
.mat-form-field-wrapper {
|
|
65
|
-
.mat-form-field-flex {
|
|
66
|
-
width: 55px;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
.mat-form-field-flex {
|
|
71
|
-
height: 40px;
|
|
72
|
-
.mat-form-field-infix {
|
|
73
|
-
padding-top: 4px;
|
|
74
|
-
border-top: 0px;
|
|
75
|
-
padding-bottom: 0px;
|
|
76
|
-
height: 25px;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
62
|
+
}
|
|
63
|
+
.jump-page {
|
|
64
|
+
.mat-form-field-wrapper {
|
|
65
|
+
.mat-form-field-flex {
|
|
66
|
+
width: 55px;
|
|
67
|
+
}
|
|
79
68
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
.qms-3d {
|
|
89
|
-
font-weight: 600;
|
|
90
|
-
font-size: 14px;
|
|
91
|
-
line-height: 22px;
|
|
92
|
-
color: #323232;
|
|
93
|
-
}
|
|
94
|
-
button:not(.qms-btn-disabled) {
|
|
95
|
-
.qms-btn-icon-wrapper {
|
|
96
|
-
color: #323232;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
69
|
+
}
|
|
70
|
+
.mat-form-field-flex {
|
|
71
|
+
height: 40px;
|
|
72
|
+
.mat-form-field-infix {
|
|
73
|
+
padding-top: 4px;
|
|
74
|
+
border-top: 0px;
|
|
75
|
+
padding-bottom: 0px;
|
|
76
|
+
height: 25px;
|
|
99
77
|
}
|
|
78
|
+
}
|
|
100
79
|
}
|
|
101
|
-
.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
80
|
+
.qms-paginator-range-actions {
|
|
81
|
+
display: flex;
|
|
82
|
+
align-items: center;
|
|
83
|
+
margin-bottom: 15px;
|
|
84
|
+
.selected {
|
|
85
|
+
background-color: #e5eefb;
|
|
86
|
+
color: #1954a9;
|
|
87
|
+
}
|
|
88
|
+
.qms-3d {
|
|
89
|
+
font-weight: 600;
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
line-height: 22px;
|
|
92
|
+
color: #323232;
|
|
93
|
+
}
|
|
94
|
+
button:not(.qms-btn-disabled) {
|
|
95
|
+
.qms-btn-icon-wrapper {
|
|
96
|
+
color: #323232;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.nav-list-pagination {
|
|
101
|
+
display: -webkit-box;
|
|
102
|
+
display: -webkit-flex;
|
|
103
|
+
display: -ms-flexbox;
|
|
104
|
+
display: flex;
|
|
105
|
+
-webkit-box-flex-wrap: wrap;
|
|
106
|
+
-webkit-flex-wrap: wrap;
|
|
107
|
+
-ms-flex-wrap: wrap;
|
|
108
|
+
flex-wrap: wrap;
|
|
109
|
+
-webkit-align-items: center;
|
|
110
|
+
-webkit-box-align: center;
|
|
111
|
+
-ms-flex-align: center;
|
|
112
|
+
align-items: center;
|
|
113
|
+
padding: 0;
|
|
114
|
+
margin: 0;
|
|
115
|
+
list-style: none;
|
|
116
|
+
|
|
117
|
+
.nav-item {
|
|
118
|
+
button.qms-btn-icon {
|
|
119
|
+
line-height: 1.43;
|
|
120
|
+
letter-spacing: .01071em;
|
|
121
|
+
border-radius: 20px;
|
|
122
|
+
text-align: center;
|
|
123
|
+
box-sizing: border-box;
|
|
124
|
+
min-width: 40px;
|
|
125
|
+
width: unset;
|
|
126
|
+
height: 40px;
|
|
127
|
+
padding: 0 5px;
|
|
128
|
+
}
|
|
106
129
|
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.mat-paginator-container-mobile {
|
|
134
|
+
.mat-select {
|
|
135
|
+
.mat-select-arrow {
|
|
136
|
+
margin-top: 20px;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
.qms-total-result {
|
|
140
|
+
margin-bottom: 16px;
|
|
141
|
+
span {
|
|
142
|
+
font-family: Open Sans;
|
|
143
|
+
font-style: normal;
|
|
144
|
+
font-weight: normal;
|
|
145
|
+
font-size: 12px;
|
|
146
|
+
line-height: 16px;
|
|
147
|
+
color: rgba(0, 0, 0, 0.6);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
.mat-paginator-container {
|
|
151
|
+
justify-content: flex-start;
|
|
152
|
+
}
|
|
153
|
+
.qms-paginator-page-size {
|
|
154
|
+
margin-right: 24px;
|
|
155
|
+
display: flex;
|
|
156
|
+
align-items: baseline;
|
|
157
|
+
.qms-pagesize-label {
|
|
158
|
+
font-weight: normal;
|
|
159
|
+
font-size: 12px;
|
|
160
|
+
line-height: 22px;
|
|
161
|
+
color: #323232;
|
|
162
|
+
font-family: Open Sans;
|
|
163
|
+
font-style: normal;
|
|
164
|
+
margin-right: 8px;
|
|
165
|
+
}
|
|
166
|
+
.qms-form-page-size {
|
|
167
|
+
.mat-form-field-flex {
|
|
168
|
+
width: 80px;
|
|
117
169
|
}
|
|
118
|
-
|
|
119
|
-
|
|
170
|
+
}
|
|
171
|
+
.qms-form-select-page-size {
|
|
172
|
+
.mat-form-field-flex {
|
|
173
|
+
width: 51px;
|
|
174
|
+
padding-left: 9px;
|
|
175
|
+
padding-right: 5px;
|
|
120
176
|
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
font-size: 12px;
|
|
128
|
-
line-height: 22px;
|
|
129
|
-
color: #323232;
|
|
130
|
-
font-family: Open Sans;
|
|
131
|
-
font-style: normal;
|
|
132
|
-
margin-right: 8px;
|
|
133
|
-
}
|
|
134
|
-
.qms-form-page-size {
|
|
135
|
-
.mat-form-field-flex {
|
|
136
|
-
width: 80px;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
.qms-form-select-page-size {
|
|
140
|
-
.mat-form-field-flex {
|
|
141
|
-
width: 51px;
|
|
142
|
-
padding-left: 9px;
|
|
143
|
-
padding-right: 5px;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
.jump-page {
|
|
147
|
-
.mat-form-field-wrapper {
|
|
148
|
-
.mat-form-field-flex {
|
|
149
|
-
width: 55px;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
.mat-form-field-flex {
|
|
154
|
-
height: 40px;
|
|
155
|
-
.mat-form-field-infix {
|
|
156
|
-
padding-top: 4px;
|
|
157
|
-
border-top: 0px;
|
|
158
|
-
padding-bottom: 0px;
|
|
159
|
-
height: 25px;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
177
|
+
}
|
|
178
|
+
.jump-page {
|
|
179
|
+
.mat-form-field-wrapper {
|
|
180
|
+
.mat-form-field-flex {
|
|
181
|
+
width: 55px;
|
|
182
|
+
}
|
|
162
183
|
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
184
|
+
}
|
|
185
|
+
.mat-form-field-flex {
|
|
186
|
+
height: 40px;
|
|
187
|
+
.mat-form-field-infix {
|
|
188
|
+
padding-top: 4px;
|
|
189
|
+
border-top: 0px;
|
|
190
|
+
padding-bottom: 0px;
|
|
191
|
+
height: 25px;
|
|
167
192
|
}
|
|
193
|
+
}
|
|
168
194
|
}
|
|
169
|
-
|
|
170
|
-
|
|
195
|
+
}
|
|
196
|
+
.size-small {
|
|
197
|
+
.mat-paginator-container {
|
|
198
|
+
justify-content: flex-start;
|
|
171
199
|
}
|
|
172
|
-
}
|
|
200
|
+
}
|
|
201
|
+
.mr-b-size-small {
|
|
202
|
+
margin-bottom: 17px !important;
|
|
203
|
+
}
|
|
204
|
+
}
|