qms-angular 1.0.73 → 1.0.74
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 +204 -198
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/button/button.js +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +3 -3
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.module.js +4 -2
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +3 -3
- package/esm2015/lib/components/side-sheet/directives/drawer-content.directive.js +20 -0
- package/esm2015/lib/components/side-sheet/directives/drawer-header-action.directive.js +20 -0
- package/esm2015/lib/components/side-sheet/directives/drawer-header.directive.js +20 -0
- package/esm2015/lib/components/side-sheet/directives/drawer.directive.js +20 -0
- package/esm2015/lib/components/side-sheet/index.js +2 -0
- package/esm2015/lib/components/side-sheet/public-api.js +6 -0
- package/esm2015/lib/components/side-sheet/side-sheet.module.js +28 -0
- package/esm2015/lib/directives/table/table-row.directive.js +42 -0
- package/esm2015/lib/directives/table/table.directive.js +13 -60
- package/esm2015/lib/qms-angular.module.js +5 -18
- package/esm2015/lib/qms-ckeditor-components/qms-ckeditor.component.js +1 -1
- package/esm2015/public-api.js +3 -5
- package/esm2015/qms-angular.js +13 -12
- package/fesm2015/qms-angular.js +161 -154
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/button/button.d.ts +1 -1
- package/lib/{directives/side-sheet → components/side-sheet/directives}/drawer-content.directive.d.ts +0 -0
- package/lib/{directives/side-sheet → components/side-sheet/directives}/drawer-header-action.directive.d.ts +0 -0
- package/lib/{directives/side-sheet → components/side-sheet/directives}/drawer-header.directive.d.ts +0 -0
- package/lib/{directives/side-sheet → components/side-sheet/directives}/drawer.directive.d.ts +0 -0
- package/lib/components/side-sheet/index.d.ts +1 -0
- package/lib/components/side-sheet/public-api.d.ts +5 -0
- package/lib/components/side-sheet/side-sheet.module.d.ts +2 -0
- package/lib/directives/table/table-row.directive.d.ts +13 -0
- package/lib/directives/table/table.directive.d.ts +1 -11
- package/package.json +1 -1
- package/public-api.d.ts +1 -4
- package/qms-angular.d.ts +12 -11
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js.map +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/de.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/gl.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/hu.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/it.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/ru.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/translations/zh.js +1 -1
- package/src/assets/qms-ckeditor-plugin/src/ckeditor.js +3 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/contexts.json +3 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/de.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/en.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/gl.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/hu.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/it.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/ru.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/lang/translations/zh.po +21 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/src/index.js +10 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/src/sourceediting.js +386 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/src/utils/formathtml.js +142 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/theme/icons/source-editing.svg +1 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/ckeditor5-source-editing/theme/sourceediting.css +48 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/fullscreen/qmsCKEditorFullscreenPlugin.js +1 -5
- package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +27 -21
- package/src/lib/components/qms-paginator/qms-paginator.component.scss +15 -0
- package/src/lib/qms-ckeditor-components/qms-ckeditor.component.scss +11 -11
- package/src/themes/core/_side-sheet.scss +2 -2
- package/src/themes/core/_table.scss +157 -37
- package/esm2015/lib/directives/side-sheet/drawer-content.directive.js +0 -20
- package/esm2015/lib/directives/side-sheet/drawer-header-action.directive.js +0 -20
- package/esm2015/lib/directives/side-sheet/drawer-header.directive.js +0 -20
- package/esm2015/lib/directives/side-sheet/drawer.directive.js +0 -20
@@ -12,12 +12,18 @@
|
|
12
12
|
|
13
13
|
&.active {
|
14
14
|
background-color: #F2F7FD;
|
15
|
+
color : #1954A9 !important;
|
16
|
+
|
17
|
+
img {
|
18
|
+
filter: opacity(0.5) drop-shadow(0 0 0 #1954A9);
|
19
|
+
}
|
15
20
|
}
|
16
21
|
|
17
22
|
.tree-content {
|
18
|
-
width
|
19
|
-
position: relative;
|
20
|
-
cursor: pointer;
|
23
|
+
width : 100%;
|
24
|
+
position : relative;
|
25
|
+
cursor : pointer;
|
26
|
+
align-items: center;
|
21
27
|
}
|
22
28
|
|
23
29
|
.arrow-icon {
|
@@ -26,14 +32,13 @@
|
|
26
32
|
|
27
33
|
.collapse-expand-icon {
|
28
34
|
color: #3e57b7;
|
35
|
+
|
29
36
|
&:hover {
|
30
37
|
background: rgba(0, 0, 0, 0.08);
|
31
38
|
}
|
32
39
|
}
|
33
40
|
|
34
41
|
.add-icon {
|
35
|
-
color: #3e57b7;
|
36
|
-
|
37
42
|
&:hover {
|
38
43
|
background: rgba(0, 0, 0, 0.08);
|
39
44
|
}
|
@@ -87,10 +92,11 @@
|
|
87
92
|
}
|
88
93
|
|
89
94
|
.tree-content {
|
95
|
+
display: flex;
|
90
96
|
|
91
97
|
.button-icon {
|
92
|
-
width :
|
93
|
-
height :
|
98
|
+
width : 40px;
|
99
|
+
height : 40px;
|
94
100
|
line-height : 30px !important;
|
95
101
|
border-radius: 50%;
|
96
102
|
|
@@ -106,18 +112,20 @@
|
|
106
112
|
|
107
113
|
.add-icon {
|
108
114
|
position: absolute;
|
109
|
-
top : -2px;
|
110
115
|
right : -34px;
|
111
116
|
|
117
|
+
|
112
118
|
mat-icon {
|
113
119
|
top : 3px;
|
114
120
|
right : 3px;
|
115
121
|
border-radius: 50%;
|
122
|
+
color : rgba(0, 0, 0, 0.6);
|
116
123
|
}
|
124
|
+
|
117
125
|
}
|
118
126
|
|
119
127
|
.favorite {
|
120
|
-
color: #b13514;
|
128
|
+
color: #b13514 !important;
|
121
129
|
}
|
122
130
|
|
123
131
|
.not-favorite {
|
@@ -125,7 +133,7 @@
|
|
125
133
|
}
|
126
134
|
|
127
135
|
.btn-favorite {
|
128
|
-
right:
|
136
|
+
right: 6px;
|
129
137
|
color: unset;
|
130
138
|
}
|
131
139
|
|
@@ -139,19 +147,11 @@
|
|
139
147
|
position : relative;
|
140
148
|
overflow : hidden;
|
141
149
|
text-overflow : ellipsis;
|
142
|
-
padding-left :
|
143
|
-
max-width: calc(100% - 56px);
|
150
|
+
padding-left : 7px;
|
151
|
+
max-width : calc(100% - 56px);
|
144
152
|
display : -webkit-box;
|
145
153
|
-webkit-line-clamp: 2;
|
146
154
|
-webkit-box-orient: vertical;
|
147
|
-
// position: relative;
|
148
|
-
// max-width: 100%;
|
149
|
-
// white-space: nowrap;
|
150
|
-
// overflow: hidden;
|
151
|
-
// text-overflow: ellipsis;
|
152
|
-
// margin-top: 5px;
|
153
|
-
// padding-left: 34px;
|
154
|
-
// width: 95%;
|
155
155
|
}
|
156
156
|
|
157
157
|
.span-text:after {
|
@@ -159,8 +159,8 @@
|
|
159
159
|
display: block;
|
160
160
|
clear : both;
|
161
161
|
}
|
162
|
-
|
163
162
|
}
|
163
|
+
|
164
164
|
}
|
165
165
|
|
166
166
|
.mat-tree-node:first-child {
|
@@ -179,4 +179,10 @@
|
|
179
179
|
background: #F2F7FD;
|
180
180
|
}
|
181
181
|
|
182
|
+
.mat-tree-node:hover {
|
183
|
+
.span-text {
|
184
|
+
max-width: calc(100% - 96px);
|
185
|
+
}
|
186
|
+
}
|
187
|
+
|
182
188
|
}
|
@@ -10,6 +10,11 @@
|
|
10
10
|
padding: 0 8px;
|
11
11
|
flex-wrap: wrap-reverse;
|
12
12
|
width: 100%;
|
13
|
+
.mat-select {
|
14
|
+
.mat-select-arrow {
|
15
|
+
margin-top: 17.5px;
|
16
|
+
}
|
17
|
+
}
|
13
18
|
.qms-total-result {
|
14
19
|
margin-right: 24px;
|
15
20
|
margin-bottom: 15px;
|
@@ -68,9 +73,19 @@
|
|
68
73
|
line-height: 22px;
|
69
74
|
color: #323232;
|
70
75
|
}
|
76
|
+
button:not(.qms-btn-disabled) {
|
77
|
+
.qms-btn-icon-wrapper {
|
78
|
+
color: #323232;
|
79
|
+
}
|
80
|
+
}
|
71
81
|
}
|
72
82
|
}
|
73
83
|
.mat-paginator-container-mobile {
|
84
|
+
.mat-select {
|
85
|
+
.mat-select-arrow {
|
86
|
+
margin-top: 17.5px;
|
87
|
+
}
|
88
|
+
}
|
74
89
|
.qms-total-result {
|
75
90
|
margin-bottom: 16px;
|
76
91
|
span {
|
@@ -106,20 +106,20 @@
|
|
106
106
|
right: 0;
|
107
107
|
overflow: auto;
|
108
108
|
background: white;
|
109
|
-
}
|
110
109
|
|
111
|
-
|
112
|
-
|
113
|
-
display:
|
114
|
-
|
115
|
-
}
|
110
|
+
.qms-ckeditor {
|
111
|
+
height: 98%;
|
112
|
+
display: block;
|
113
|
+
width: 100%;
|
114
|
+
}
|
116
115
|
|
117
|
-
.
|
118
|
-
|
119
|
-
}
|
116
|
+
.ck.ck-editor__main {
|
117
|
+
height: 98%;
|
118
|
+
}
|
120
119
|
|
121
|
-
.
|
122
|
-
|
120
|
+
.ck.ck-editor__editable {
|
121
|
+
height: inherit;
|
122
|
+
}
|
123
123
|
}
|
124
124
|
|
125
125
|
.sub-container {
|
@@ -3,7 +3,7 @@
|
|
3
3
|
width: 354px;
|
4
4
|
overflow: hidden;
|
5
5
|
.qms-drawer-header{
|
6
|
-
padding: 16px
|
6
|
+
padding: 16px 0px;
|
7
7
|
height: 68px;
|
8
8
|
display: flex;
|
9
9
|
align-items: center;
|
@@ -26,7 +26,7 @@
|
|
26
26
|
}
|
27
27
|
|
28
28
|
.qms-drawer-content{
|
29
|
-
padding: 0px
|
29
|
+
padding: 0px;
|
30
30
|
max-height: calc(100% - 68px);
|
31
31
|
overflow: auto;
|
32
32
|
}
|
@@ -2,54 +2,174 @@
|
|
2
2
|
@import "colors";
|
3
3
|
|
4
4
|
.qms-table {
|
5
|
-
.qms-
|
6
|
-
|
5
|
+
.mat-checkbox.qms-group-options {
|
6
|
+
.mat-checkbox-inner-container {
|
7
|
+
margin: 0 !important;
|
8
|
+
}
|
9
|
+
|
10
|
+
&.mat-checkbox-indeterminate .mat-checkbox-background, &.mat-checkbox-checked .mat-checkbox-background {
|
11
|
+
background-color: $primary !important;
|
12
|
+
}
|
13
|
+
|
14
|
+
&.mat-checkbox-checked {
|
15
|
+
background: unset;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
.mat-header-cell:first-child {
|
20
|
+
padding-left: 20px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.qms-table-row {
|
24
|
+
padding: 8px 0 8px 20px;
|
7
25
|
background: #FFFFFF;
|
8
26
|
border: 1px solid #E0E0E0;
|
9
27
|
border-radius: 4px;
|
10
28
|
margin-top: 8px;
|
29
|
+
min-height: 56px;
|
30
|
+
|
31
|
+
mat-cell:first-of-type {
|
32
|
+
padding: 0;
|
33
|
+
}
|
34
|
+
|
35
|
+
&:focus {
|
36
|
+
border: 2px solid $primary;
|
37
|
+
}
|
38
|
+
|
39
|
+
&:hover {
|
40
|
+
background: rgba(0, 0, 0, 0.08)!important;
|
41
|
+
}
|
42
|
+
|
43
|
+
&-selected {
|
44
|
+
background: $tab-focus-background;
|
45
|
+
}
|
46
|
+
|
47
|
+
&-disabled {
|
48
|
+
background: #E4E4E4;
|
49
|
+
color: rgba(0, 0, 0, 0.38);
|
50
|
+
pointer-events: none;
|
51
|
+
|
52
|
+
mat-cell {
|
53
|
+
opacity: 0.38;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
&-draft {
|
57
|
+
border: 2px dashed rgba(0, 0, 0, 0.12);
|
58
|
+
}
|
11
59
|
cursor: pointer;
|
12
60
|
}
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
61
|
+
|
62
|
+
//padding for table types
|
63
|
+
&.qms-checkbox-table {
|
64
|
+
.mat-header-cell:first-child {
|
65
|
+
align-items: stretch!important;
|
66
|
+
flex: unset;
|
67
|
+
padding-left: 4px;
|
68
|
+
|
69
|
+
.qms-row-checkbox {
|
70
|
+
padding: 0 19px;
|
71
|
+
display: flex;
|
72
|
+
align-items: center;
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
.qms-table-row {
|
77
|
+
padding-left: 4px;
|
78
|
+
|
79
|
+
.qms-row-checkbox-container:first-child {
|
80
|
+
align-items: stretch!important;
|
81
|
+
flex: unset;
|
82
|
+
|
83
|
+
.qms-row-checkbox {
|
84
|
+
padding: 0 19px;
|
85
|
+
display: flex;
|
86
|
+
align-items: center;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
23
90
|
}
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
.
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
91
|
+
|
92
|
+
&.qms-expand-table {
|
93
|
+
.mat-header-cell {
|
94
|
+
padding-left: 0;
|
95
|
+
|
96
|
+
.expand-icon-header {
|
97
|
+
margin-left: 15px;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
.qms-table-row {
|
102
|
+
padding-left: 4px;
|
103
|
+
|
104
|
+
.expand-icon {
|
105
|
+
margin: 0 10px;
|
106
|
+
}
|
107
|
+
|
108
|
+
&.qms-row-expanded {
|
109
|
+
background: #F2F7FD;
|
110
|
+
border-left: 4px solid $primary-light-32-opacity;
|
111
|
+
|
112
|
+
.expand-icon {
|
113
|
+
transform: rotate(180deg);
|
114
|
+
}
|
115
|
+
|
116
|
+
mat-icon {
|
117
|
+
color: $primary;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
.qms-row-detail {
|
123
|
+
border: 1px solid #E0E0E0;
|
124
|
+
border-top: none;
|
44
125
|
}
|
45
126
|
}
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
127
|
+
|
128
|
+
&.qms-group-table {
|
129
|
+
.qms-table-row {
|
130
|
+
padding-left: 0 !important;
|
131
|
+
border-left: 4px solid $primary-light-32-opacity;
|
132
|
+
|
133
|
+
&.expandable-group {
|
134
|
+
border-radius: 4px 4px 0 0;
|
135
|
+
}
|
136
|
+
}
|
137
|
+
|
138
|
+
.qms-collapse-group {
|
139
|
+
border: 1px solid #E0E0E0;
|
140
|
+
border-left: 4px solid $primary-light-32-opacity;
|
50
141
|
border-bottom-left-radius: 4px;
|
51
142
|
border-bottom-right-radius: 4px;
|
143
|
+
border-top: none;
|
144
|
+
padding-left: 12px;
|
145
|
+
padding-top: 6px;
|
146
|
+
background: $background-area;
|
147
|
+
|
148
|
+
cursor: pointer;
|
149
|
+
|
150
|
+
.mat-icon {
|
151
|
+
color: $primary;
|
152
|
+
}
|
153
|
+
.qms-text-collapse {
|
154
|
+
vertical-align: super;
|
155
|
+
color: $primary;
|
156
|
+
font-weight: 600;
|
157
|
+
font-size: 12px;
|
158
|
+
line-height: 16px;
|
159
|
+
font-family: Open Sans;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
.qms-row-children {
|
164
|
+
margin-top: unset;
|
165
|
+
border-radius: unset;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
|
169
|
+
&.qms-checkbox-table.qms-expand-table {
|
170
|
+
.qms-table-row .qms-row-checkbox {
|
171
|
+
border-right: 1px solid rgba(0, 0, 0, 0.12);
|
172
|
+
border-radius: 0;
|
52
173
|
}
|
53
174
|
}
|
54
|
-
|
55
175
|
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef } from '@angular/core';
|
2
|
-
export class QMSDrawerContentDirective {
|
3
|
-
constructor(ele) {
|
4
|
-
this.ele = ele;
|
5
|
-
}
|
6
|
-
ngOnInit() {
|
7
|
-
if (this.ele) {
|
8
|
-
this.ele.nativeElement.classList.add('qms-drawer-content');
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
QMSDrawerContentDirective.decorators = [
|
13
|
-
{ type: Directive, args: [{
|
14
|
-
selector: '[qms-drawer-content]',
|
15
|
-
},] }
|
16
|
-
];
|
17
|
-
QMSDrawerContentDirective.ctorParameters = () => [
|
18
|
-
{ type: ElementRef }
|
19
|
-
];
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyLWNvbnRlbnQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcW1zLWFuZ3VsYXIvc3JjL2xpYi9kaXJlY3RpdmVzL3NpZGUtc2hlZXQvZHJhd2VyLWNvbnRlbnQuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFTLE1BQU0sZUFBZSxDQUFDO0FBSzdELE1BQU0sT0FBTyx5QkFBeUI7SUFDbEMsWUFBb0IsR0FBZTtRQUFmLFFBQUcsR0FBSCxHQUFHLENBQVk7SUFDbkMsQ0FBQztJQUNELFFBQVE7UUFDSixJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDVixJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLG9CQUFvQixDQUFDLENBQUM7U0FDOUQ7SUFDTCxDQUFDOzs7WUFWSixTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjthQUNuQzs7O1lBSm1CLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICAgIHNlbGVjdG9yOiAnW3Ftcy1kcmF3ZXItY29udGVudF0nLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgUU1TRHJhd2VyQ29udGVudERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIGVsZTogRWxlbWVudFJlZikge1xyXG4gICAgfVxyXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAgICAgaWYgKHRoaXMuZWxlKSB7XHJcbiAgICAgICAgICAgIHRoaXMuZWxlLm5hdGl2ZUVsZW1lbnQuY2xhc3NMaXN0LmFkZCgncW1zLWRyYXdlci1jb250ZW50Jyk7XHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG59XHJcbiJdfQ==
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef } from '@angular/core';
|
2
|
-
export class QMSDrawerHeaderActionDirective {
|
3
|
-
constructor(ele) {
|
4
|
-
this.ele = ele;
|
5
|
-
}
|
6
|
-
ngOnInit() {
|
7
|
-
if (this.ele) {
|
8
|
-
this.ele.nativeElement.classList.add('qms-drawer-header__action');
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
QMSDrawerHeaderActionDirective.decorators = [
|
13
|
-
{ type: Directive, args: [{
|
14
|
-
selector: '[qms-drawer-header-action]',
|
15
|
-
},] }
|
16
|
-
];
|
17
|
-
QMSDrawerHeaderActionDirective.ctorParameters = () => [
|
18
|
-
{ type: ElementRef }
|
19
|
-
];
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyLWhlYWRlci1hY3Rpb24uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcW1zLWFuZ3VsYXIvc3JjL2xpYi9kaXJlY3RpdmVzL3NpZGUtc2hlZXQvZHJhd2VyLWhlYWRlci1hY3Rpb24uZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFTLE1BQU0sZUFBZSxDQUFDO0FBSzdELE1BQU0sT0FBTyw4QkFBOEI7SUFDdkMsWUFBb0IsR0FBZTtRQUFmLFFBQUcsR0FBSCxHQUFHLENBQVk7SUFDbkMsQ0FBQztJQUVELFFBQVE7UUFDSixJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUU7WUFDVixJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsQ0FBQyxTQUFTLENBQUMsR0FBRyxDQUFDLDJCQUEyQixDQUFDLENBQUM7U0FDckU7SUFDTCxDQUFDOzs7WUFYSixTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLDRCQUE0QjthQUN6Qzs7O1lBSm1CLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICAgIHNlbGVjdG9yOiAnW3Ftcy1kcmF3ZXItaGVhZGVyLWFjdGlvbl0nLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgUU1TRHJhd2VySGVhZGVyQWN0aW9uRGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgZWxlOiBFbGVtZW50UmVmKSB7XHJcbiAgICB9XHJcblxyXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAgICAgaWYgKHRoaXMuZWxlKSB7XHJcbiAgICAgICAgICAgIHRoaXMuZWxlLm5hdGl2ZUVsZW1lbnQuY2xhc3NMaXN0LmFkZCgncW1zLWRyYXdlci1oZWFkZXJfX2FjdGlvbicpO1xyXG4gICAgICAgIH1cclxuICAgIH1cclxufVxyXG4iXX0=
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef } from '@angular/core';
|
2
|
-
export class QMSDrawerHeaderDirective {
|
3
|
-
constructor(ele) {
|
4
|
-
this.ele = ele;
|
5
|
-
}
|
6
|
-
ngOnInit() {
|
7
|
-
if (this.ele) {
|
8
|
-
this.ele.nativeElement.classList.add('qms-drawer-header');
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
QMSDrawerHeaderDirective.decorators = [
|
13
|
-
{ type: Directive, args: [{
|
14
|
-
selector: '[qms-drawer-header]',
|
15
|
-
},] }
|
16
|
-
];
|
17
|
-
QMSDrawerHeaderDirective.ctorParameters = () => [
|
18
|
-
{ type: ElementRef }
|
19
|
-
];
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyLWhlYWRlci5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9xbXMtYW5ndWxhci9zcmMvbGliL2RpcmVjdGl2ZXMvc2lkZS1zaGVldC9kcmF3ZXItaGVhZGVyLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBUyxNQUFNLGVBQWUsQ0FBQztBQUs3RCxNQUFNLE9BQU8sd0JBQXdCO0lBQ2pDLFlBQW9CLEdBQWU7UUFBZixRQUFHLEdBQUgsR0FBRyxDQUFZO0lBQ25DLENBQUM7SUFFRCxRQUFRO1FBQ0osSUFBSSxJQUFJLENBQUMsR0FBRyxFQUFFO1lBQ1YsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1NBQzdEO0lBQ0wsQ0FBQzs7O1lBWEosU0FBUyxTQUFDO2dCQUNQLFFBQVEsRUFBRSxxQkFBcUI7YUFDbEM7OztZQUptQixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBPbkluaXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcbiAgICBzZWxlY3RvcjogJ1txbXMtZHJhd2VyLWhlYWRlcl0nLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgUU1TRHJhd2VySGVhZGVyRGlyZWN0aXZlIGltcGxlbWVudHMgT25Jbml0IHtcclxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgZWxlOiBFbGVtZW50UmVmKSB7XHJcbiAgICB9XHJcblxyXG4gICAgbmdPbkluaXQoKTogdm9pZCB7XHJcbiAgICAgICAgaWYgKHRoaXMuZWxlKSB7XHJcbiAgICAgICAgICAgIHRoaXMuZWxlLm5hdGl2ZUVsZW1lbnQuY2xhc3NMaXN0LmFkZCgncW1zLWRyYXdlci1oZWFkZXInKTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcbn1cclxuIl19
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { Directive, ElementRef } from '@angular/core';
|
2
|
-
export class QMSDrawerDirective {
|
3
|
-
constructor(ele) {
|
4
|
-
this.ele = ele;
|
5
|
-
}
|
6
|
-
ngOnInit() {
|
7
|
-
if (this.ele) {
|
8
|
-
this.ele.nativeElement.classList.add('qms-drawer');
|
9
|
-
}
|
10
|
-
}
|
11
|
-
}
|
12
|
-
QMSDrawerDirective.decorators = [
|
13
|
-
{ type: Directive, args: [{
|
14
|
-
selector: '[qms-drawer]',
|
15
|
-
},] }
|
16
|
-
];
|
17
|
-
QMSDrawerDirective.ctorParameters = () => [
|
18
|
-
{ type: ElementRef }
|
19
|
-
];
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Ftcy1hbmd1bGFyL3NyYy9saWIvZGlyZWN0aXZlcy9zaWRlLXNoZWV0L2RyYXdlci5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQVMsTUFBTSxlQUFlLENBQUM7QUFLN0QsTUFBTSxPQUFPLGtCQUFrQjtJQUMzQixZQUFvQixHQUFlO1FBQWYsUUFBRyxHQUFILEdBQUcsQ0FBWTtJQUNuQyxDQUFDO0lBQ0QsUUFBUTtRQUNKLElBQUksSUFBSSxDQUFDLEdBQUcsRUFBRTtZQUNWLElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDdEQ7SUFDTCxDQUFDOzs7WUFWSixTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLGNBQWM7YUFDM0I7OztZQUptQixVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBPbkluaXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQERpcmVjdGl2ZSh7XHJcbiAgICBzZWxlY3RvcjogJ1txbXMtZHJhd2VyXScsXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBRTVNEcmF3ZXJEaXJlY3RpdmUgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gICAgY29uc3RydWN0b3IocHJpdmF0ZSBlbGU6IEVsZW1lbnRSZWYpIHtcclxuICAgIH1cclxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgICAgIGlmICh0aGlzLmVsZSkge1xyXG4gICAgICAgICAgICB0aGlzLmVsZS5uYXRpdmVFbGVtZW50LmNsYXNzTGlzdC5hZGQoJ3Ftcy1kcmF3ZXInKTtcclxuICAgICAgICB9XHJcbiAgICB9XHJcbn1cclxuIl19
|