qms-angular 1.0.96 → 1.0.97
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 +136 -28
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/breadcrumb/breadcrumb.js +32 -18
- package/esm2015/lib/components/breadcrumb/breadcrumb.module.js +6 -2
- package/esm2015/lib/components/breadcrumb/enum/breadcrumb-type.js +7 -0
- package/esm2015/lib/components/breadcrumb/model/breadcrumb-node.model.js +1 -1
- package/esm2015/lib/components/comment/comment.js +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +3 -2
- package/esm2015/lib/directives/chip-input/chip-input-select-dropdown.directive.js +4 -4
- package/esm2015/lib/model/en.js +3 -1
- package/esm2015/lib/model/no.js +3 -1
- package/esm2015/lib/qms-angular.module.js +4 -4
- package/esm2015/lib/utils/qms-mfe.utils.js +56 -0
- package/esm2015/public-api.js +4 -1
- package/fesm2015/qms-angular.js +107 -26
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/breadcrumb/breadcrumb.d.ts +10 -5
- package/lib/components/breadcrumb/enum/breadcrumb-type.d.ts +5 -0
- package/lib/directives/chip-input/chip-input-select-dropdown.directive.d.ts +1 -1
- package/lib/model/en.d.ts +2 -0
- package/lib/model/no.d.ts +2 -0
- package/lib/utils/qms-mfe.utils.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/qms-angular.metadata.json +1 -1
- package/src/lib/components/breadcrumb/breadcrumb.scss +174 -81
@@ -1,103 +1,196 @@
|
|
1
1
|
@import "../../../themes/theme/variable";
|
2
2
|
@import "../../../themes/theme/mixins";
|
3
3
|
|
4
|
-
.breadcrumb-container{
|
4
|
+
.breadcrumb-container {
|
5
|
+
display: flex;
|
6
|
+
font-family: Open Sans;
|
7
|
+
font-size: 14px;
|
8
|
+
font-weight: 600;
|
9
|
+
color: #323232;
|
10
|
+
.qms-breadcrumb-item,
|
11
|
+
.qms-breadcrumb-direction-icon {
|
5
12
|
display: flex;
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
color: #323232;
|
10
|
-
.qms-breadcrumb-item, .qms-breadcrumb-direction-icon{
|
11
|
-
display: flex;
|
12
|
-
align-items: center;
|
13
|
-
padding: 3px 0 2px 0;
|
14
|
-
}
|
13
|
+
align-items: center;
|
14
|
+
padding: 3px 0 2px 0;
|
15
|
+
}
|
15
16
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
}
|
17
|
+
.qms-breadcrumb-direction-icon {
|
18
|
+
.mat-icon {
|
19
|
+
width: 18px;
|
20
|
+
height: 18px;
|
21
|
+
font-size: 18px;
|
22
|
+
margin-left: 0.5rem;
|
23
|
+
margin-right: 0.5rem;
|
24
24
|
}
|
25
|
+
}
|
26
|
+
|
27
|
+
.item-icon {
|
28
|
+
margin-right: 2px;
|
29
|
+
}
|
30
|
+
.qms-breadcrumb-item {
|
31
|
+
cursor: inherit;
|
32
|
+
margin: 8px 8px 8px 0;
|
25
33
|
|
26
|
-
.
|
27
|
-
|
34
|
+
.qms-btn-icon {
|
35
|
+
width: 1.5rem;
|
36
|
+
height: 1.5rem;
|
37
|
+
line-height: 2rem;
|
28
38
|
}
|
29
|
-
.qms-breadcrumb-item{
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
line-height: 2rem;
|
35
|
-
}
|
36
|
-
.qms-breadcrumb-item-overflow {
|
37
|
-
max-width: 240px;
|
38
|
-
text-overflow: ellipsis;
|
39
|
-
overflow: hidden;
|
40
|
-
white-space: nowrap;
|
41
|
-
}
|
42
|
-
|
43
|
-
.breadcrumb__dropdown-btn{
|
44
|
-
width: 2rem;
|
45
|
-
height: 2rem;
|
46
|
-
svg{
|
47
|
-
display: block;
|
48
|
-
}
|
49
|
-
}
|
39
|
+
.qms-breadcrumb-item-overflow {
|
40
|
+
max-width: 240px;
|
41
|
+
text-overflow: ellipsis;
|
42
|
+
overflow: hidden;
|
43
|
+
white-space: nowrap;
|
50
44
|
}
|
51
45
|
|
52
|
-
.
|
46
|
+
.breadcrumb__dropdown-btn {
|
47
|
+
width: 2rem;
|
48
|
+
height: 2rem;
|
49
|
+
svg {
|
50
|
+
display: block;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
.qms-breadcrumb-last-item {
|
56
|
+
color: black(0.6);
|
57
|
+
font-weight: 400;
|
58
|
+
cursor: not-allowed;
|
59
|
+
}
|
60
|
+
|
61
|
+
.mat-drawer-container {
|
62
|
+
z-index: 3;
|
63
|
+
background-color: transparent;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
.qms-breadcrumb-table {
|
68
|
+
.breadcrumb-container {
|
69
|
+
.qms-breadcrumb-direction-icon {
|
70
|
+
.mat-icon {
|
71
|
+
width: 12px;
|
72
|
+
height: 12px;
|
73
|
+
font-size: 12px;
|
74
|
+
margin-left: 0.25rem;
|
75
|
+
margin-right: 0.25rem;
|
53
76
|
color: black(0.6);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
.item-icon {
|
81
|
+
margin-right: 1px;
|
82
|
+
}
|
83
|
+
|
84
|
+
.qms-breadcrumb-item {
|
85
|
+
.qms-breadcrumb-item-text {
|
86
|
+
font-size: 12px;
|
54
87
|
font-weight: 400;
|
55
|
-
|
88
|
+
color: black(0.6);
|
89
|
+
}
|
90
|
+
.qms-breadcrumb-item-overflow {
|
91
|
+
max-width: 200px;
|
92
|
+
text-overflow: ellipsis;
|
93
|
+
overflow: hidden;
|
94
|
+
white-space: nowrap;
|
95
|
+
}
|
56
96
|
}
|
97
|
+
}
|
57
98
|
}
|
58
99
|
|
59
|
-
.qms-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
width: 12px;
|
64
|
-
height: 12px;
|
65
|
-
font-size: 12px;
|
66
|
-
margin-left: 0.25rem;
|
67
|
-
margin-right: 0.25rem;
|
68
|
-
color: black(0.6);
|
69
|
-
}
|
70
|
-
}
|
71
|
-
|
72
|
-
.item-icon{
|
73
|
-
margin-right: 1px;
|
74
|
-
}
|
75
|
-
|
76
|
-
.qms-breadcrumb-item{
|
77
|
-
.qms-breadcrumb-item-text {
|
78
|
-
font-size: 12px;
|
79
|
-
font-weight: 400;
|
80
|
-
color: black(0.6);
|
81
|
-
}
|
82
|
-
.qms-breadcrumb-item-overflow {
|
83
|
-
max-width: 200px;
|
84
|
-
text-overflow: ellipsis;
|
85
|
-
overflow: hidden;
|
86
|
-
white-space: nowrap;
|
87
|
-
}
|
88
|
-
}
|
89
|
-
}
|
100
|
+
.qms-breadcrumb__multi-line {
|
101
|
+
.breadcrumb-container {
|
102
|
+
flex-wrap: wrap;
|
103
|
+
}
|
90
104
|
}
|
91
105
|
|
92
|
-
.qms-
|
93
|
-
|
94
|
-
|
95
|
-
|
106
|
+
.qms-breadcrumb-menu {
|
107
|
+
.qms-dropdown-menu-item {
|
108
|
+
border: none;
|
109
|
+
}
|
96
110
|
}
|
97
111
|
|
112
|
+
.breadcrumb-sidenav {
|
113
|
+
display: flex;
|
114
|
+
align-items: center;
|
115
|
+
justify-content: center;
|
116
|
+
width: 100%;
|
117
|
+
background: white;
|
118
|
+
z-index: 3;
|
119
|
+
|
120
|
+
.header {
|
121
|
+
font-family: "Open Sans";
|
122
|
+
font-style: normal;
|
123
|
+
background-color: theme-apply($background-area);
|
124
|
+
height: 71px;
|
125
|
+
display: flex;
|
126
|
+
justify-content: space-between;
|
127
|
+
padding: 16px;
|
128
|
+
|
129
|
+
p {
|
130
|
+
font-weight: 600;
|
131
|
+
font-size: 18px;
|
132
|
+
line-height: 25px;
|
133
|
+
color: theme-apply($default-color);
|
134
|
+
margin-bottom: 0;
|
135
|
+
}
|
98
136
|
|
99
|
-
.
|
100
|
-
|
101
|
-
|
137
|
+
.sub {
|
138
|
+
font-weight: 400;
|
139
|
+
font-size: 14px;
|
140
|
+
line-height: 22px;
|
141
|
+
color: #5a5a5a;
|
102
142
|
}
|
143
|
+
}
|
144
|
+
|
145
|
+
.content {
|
146
|
+
padding: 0 16px 16px 16px;
|
147
|
+
height: calc(100vh - 71px);
|
148
|
+
overflow: auto;
|
149
|
+
|
150
|
+
.qms-list-option {
|
151
|
+
height: unset !important;
|
152
|
+
|
153
|
+
.mat-list-text {
|
154
|
+
padding-right: 0 !important;
|
155
|
+
padding-left: 0 !important;
|
156
|
+
}
|
157
|
+
|
158
|
+
.mat-list-item-content {
|
159
|
+
border-bottom: 1px solid #e0e0e0;
|
160
|
+
padding: 8px;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
.content-text-name {
|
166
|
+
display: flex;
|
167
|
+
align-items: center;
|
168
|
+
justify-content: space-between;
|
169
|
+
|
170
|
+
.content-text-name-heading {
|
171
|
+
display: flex;
|
172
|
+
align-items: center;
|
173
|
+
color: theme-apply($default-color);
|
174
|
+
|
175
|
+
.item-icon {
|
176
|
+
margin-right: 10px;
|
177
|
+
color: theme-apply($tab-border);
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
.color-gray {
|
182
|
+
color: theme-apply($tab-border);
|
183
|
+
}
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
187
|
+
.more_horiz-btn.qms-btn-icon {
|
188
|
+
width: 1.5rem;
|
189
|
+
height: 1.5rem;
|
190
|
+
line-height: 2rem;
|
191
|
+
margin: 8px 0px 8px 8px;
|
192
|
+
}
|
193
|
+
|
194
|
+
.subdirectory_arrow_right {
|
195
|
+
color: #0163b2;
|
103
196
|
}
|