qms-angular 1.0.75 → 1.0.76
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 +23 -18
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +11 -8
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +5 -3
- package/esm2015/lib/components/related/popup/related-popup.component.js +10 -10
- package/fesm2015/qms-angular.js +23 -18
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.d.ts +2 -2
- package/package.json +1 -1
- package/src/assets/jointjs/scss/rappid.scss +1 -1
- package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +15 -4
- package/src/lib/components/qms-paginator/qms-paginator.component.scss +27 -5
@@ -22,6 +22,7 @@ export declare class QMSNavigationDrawerComponent implements OnInit, OnChanges,
|
|
22
22
|
addFavoriteTooltip: string;
|
23
23
|
deleteFavoriteTooltip: string;
|
24
24
|
addNodeTooltip: string;
|
25
|
+
activeNode: string;
|
25
26
|
activeNodeLocation: Subscription;
|
26
27
|
expandedNodeSet: Set<string>;
|
27
28
|
dragging: boolean;
|
@@ -50,7 +51,6 @@ export declare class QMSNavigationDrawerComponent implements OnInit, OnChanges,
|
|
50
51
|
dataSource: MatTreeFlatDataSource<TreeNode, FlatNode, FlatNode>;
|
51
52
|
hoverNode: any;
|
52
53
|
expandingNodes: FlatNode[];
|
53
|
-
activeNode: string;
|
54
54
|
_transformer(node: TreeNode, level: number): {
|
55
55
|
expandable: boolean;
|
56
56
|
name: string;
|
@@ -64,7 +64,7 @@ export declare class QMSNavigationDrawerComponent implements OnInit, OnChanges,
|
|
64
64
|
hasChild: (_: number, node: FlatNode) => boolean;
|
65
65
|
ngOnChanges(changes: SimpleChanges): void;
|
66
66
|
expandNodeSearched(nodesOrigin: TreeNode[], txtSearch: string): void;
|
67
|
-
onClickNode(node: TreeNode): void;
|
67
|
+
onClickNode(node: TreeNode, setActiveNode?: boolean): void;
|
68
68
|
onOver(node: any): void;
|
69
69
|
addNewNode(nodeId: any, event: any): void;
|
70
70
|
addFavoriteNode(nodeId: any, event: any): void;
|
package/package.json
CHANGED
@@ -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,8 +1,8 @@
|
|
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 {
|
@@ -18,7 +18,7 @@
|
|
18
18
|
filter: opacity(0.5) drop-shadow(0 0 0 #1954A9);
|
19
19
|
}
|
20
20
|
|
21
|
-
&:hover{
|
21
|
+
&:hover {
|
22
22
|
background-color: #E5EEFB !important;
|
23
23
|
}
|
24
24
|
}
|
@@ -74,7 +74,8 @@
|
|
74
74
|
::ng-deep mat-icon {
|
75
75
|
color: #1954A9;
|
76
76
|
}
|
77
|
-
|
77
|
+
|
78
|
+
&:hover {
|
78
79
|
background-color: #E5EEFB !important;
|
79
80
|
}
|
80
81
|
}
|
@@ -192,4 +193,14 @@
|
|
192
193
|
}
|
193
194
|
}
|
194
195
|
|
196
|
+
}
|
197
|
+
|
198
|
+
.node-preview-item {
|
199
|
+
display : flex;
|
200
|
+
background-color: #0000001F;
|
201
|
+
min-width : 272px !important;
|
202
|
+
height : 48px !important;
|
203
|
+
margin : 0 auto;
|
204
|
+
align-items : center;
|
205
|
+
padding : 0px 16px;
|
195
206
|
}
|
@@ -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
|
}
|