qms-angular 1.1.49 → 1.1.51
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 +13425 -13210
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/breadcrumb/breadcrumb.js +2 -2
- package/esm2015/lib/components/qms-nav-drawer/models/qms-nav-drawer.model.js +2 -2
- package/esm2015/lib/components/qms-nav-drawer/qms-nav-drawer.component.js +34 -13
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +12 -12
- package/esm2015/lib/components/select-department-tree/select-department-tree.component.js +4 -4
- package/esm2015/lib/qms-ckeditor-components/common/constants/ckeditorLink.constant.js +3 -1
- package/esm2015/lib/qms-ckeditor-components/common/models/qms-ckeditor-data.model.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.js +217 -29
- package/esm2015/lib/qms-ckeditor-components/models/qms-ckeditor-bpmn-data.model.js +1 -1
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +3 -1
- package/esm2015/qms-angular.js +7 -6
- package/fesm2015/qms-angular.js +12783 -12571
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-nav-drawer/models/qms-nav-drawer.model.d.ts +4 -1
- package/lib/components/qms-nav-drawer/qms-nav-drawer.component.d.ts +14 -3
- package/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.d.ts +5 -5
- package/lib/qms-ckeditor-components/common/constants/ckeditorLink.constant.d.ts +2 -0
- package/lib/qms-ckeditor-components/common/models/qms-ckeditor-data.model.d.ts +2 -0
- package/lib/qms-ckeditor-components/components/qms-ckeditor-bpmn/qms-ckeditor-bpmn.component.d.ts +17 -7
- package/lib/qms-ckeditor-components/models/qms-ckeditor-bpmn-data.model.d.ts +2 -0
- package/package.json +1 -1
- package/qms-angular.d.ts +6 -5
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +1 -1
- package/src/lib/components/qms-nav-drawer/qms-nav-drawer.component.scss +25 -5
- package/src/lib/components/select-department-tree/select-department-tree.component.scss +4 -0
|
@@ -5,10 +5,17 @@
|
|
|
5
5
|
|
|
6
6
|
.mat-tree.qms-nav-drawer-container {
|
|
7
7
|
font-family: Open Sans;
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
.mat-tree-node {
|
|
10
|
-
&:hover
|
|
10
|
+
&:hover,
|
|
11
|
+
&:active,
|
|
12
|
+
&:focus {
|
|
11
13
|
background: black(0.08);
|
|
14
|
+
padding-right: 5px;
|
|
15
|
+
|
|
16
|
+
.btn-action {
|
|
17
|
+
display: block;
|
|
18
|
+
}
|
|
12
19
|
}
|
|
13
20
|
|
|
14
21
|
&:active {
|
|
@@ -71,15 +78,23 @@
|
|
|
71
78
|
.type-icon {
|
|
72
79
|
margin-right: 5px;
|
|
73
80
|
color: theme-apply($ws-action-active);
|
|
81
|
+
font-size: 18px;
|
|
74
82
|
}
|
|
75
83
|
|
|
76
84
|
.text-name {
|
|
77
85
|
color: theme-apply($default-color);
|
|
78
86
|
}
|
|
79
87
|
|
|
80
|
-
.mat-icon-rtl-mirror
|
|
88
|
+
.mat-icon-rtl-mirror,
|
|
89
|
+
.mat-icon {
|
|
81
90
|
color: black(0.6);
|
|
82
91
|
}
|
|
92
|
+
|
|
93
|
+
button.qms-btn-icon {
|
|
94
|
+
width: 40px;
|
|
95
|
+
height: 40px;
|
|
96
|
+
line-height: 40px;
|
|
97
|
+
}
|
|
83
98
|
}
|
|
84
99
|
|
|
85
100
|
.text-name {
|
|
@@ -91,12 +106,17 @@
|
|
|
91
106
|
-webkit-box-orient: vertical;
|
|
92
107
|
cursor: pointer;
|
|
93
108
|
width: 100%;
|
|
109
|
+
min-width: 20px;
|
|
94
110
|
}
|
|
95
111
|
|
|
96
112
|
.cursor-pointer {
|
|
97
113
|
cursor: pointer;
|
|
98
114
|
}
|
|
99
115
|
|
|
100
|
-
.
|
|
101
|
-
|
|
116
|
+
.btn-action {
|
|
117
|
+
display: none;
|
|
118
|
+
|
|
119
|
+
.material-icons-outlined.primary {
|
|
120
|
+
color: theme-apply($checkbox-color);
|
|
121
|
+
}
|
|
102
122
|
}
|