qms-angular 1.0.68 → 1.0.69
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/README.md +21 -2
- package/bundles/qms-angular.umd.js +86 -28
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/badges/qms-badges.component.js +3 -2
- package/esm2015/lib/components/banner/index.js +2 -0
- package/esm2015/lib/components/banner/public_api.js +8 -0
- package/esm2015/lib/components/banner/qms-banner/qms-banner.component.js +2 -2
- package/esm2015/lib/components/button/button.js +5 -5
- package/esm2015/lib/components/comment/comment-log.model.js +2 -0
- package/esm2015/lib/components/comment/comment.js +6 -2
- package/esm2015/lib/components/qms-status-dropdown/index.js +4 -0
- package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.component.js +33 -0
- package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.model.js +10 -0
- package/esm2015/lib/components/qms-status-dropdown/qms-status-dropdown.module.js +28 -0
- package/esm2015/lib/components/related/popup/related-popup.component.js +2 -2
- package/esm2015/lib/qms-angular.module.js +1 -4
- package/esm2015/public-api.js +4 -9
- package/fesm2015/qms-angular.js +78 -28
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/badges/qms-badges.component.d.ts +1 -1
- package/lib/components/banner/index.d.ts +1 -0
- package/lib/components/banner/public_api.d.ts +7 -0
- package/lib/components/banner/qms-banner/qms-banner.component.d.ts +2 -2
- package/lib/components/button/button.d.ts +1 -1
- package/lib/components/comment/comment-log.model.d.ts +10 -0
- package/lib/components/comment/comment.d.ts +5 -11
- package/lib/components/qms-status-dropdown/index.d.ts +3 -0
- package/lib/components/qms-status-dropdown/qms-status-dropdown.component.d.ts +10 -0
- package/lib/components/qms-status-dropdown/qms-status-dropdown.model.d.ts +10 -0
- package/lib/components/qms-status-dropdown/qms-status-dropdown.module.d.ts +2 -0
- package/lib.theme.scss +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -8
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/package-lock.json +9 -12177
- package/src/lib/components/qms-status-dropdown/qms-status-dropdown.component.scss +148 -0
- package/src/themes/core/_qms-label.scss +32 -0
- package/esm2015/lib/components/test-only/test-only.component.js +0 -17
- package/lib/components/test-only/test-only.component.d.ts +0 -3
- package/src/assets/jointjs/scss/dist/bpmn.css +0 -854
- package/src/assets/qms-ckeditor-plugin/src/dist/ckeditor.dev.js +0 -173
- package/src/assets/qms-ckeditor-plugin/src/plugins/fullscreen/dist/qmsCKEditorFullscreenPlugin.dev.js +0 -87
- package/src/lib/components/test-only/test-only.component.scss +0 -10
@@ -0,0 +1,148 @@
|
|
1
|
+
.qms-status-dropdown-container {
|
2
|
+
::ng-deep .material-custom-multiselect {
|
3
|
+
height: 40px;
|
4
|
+
|
5
|
+
.mat-form-field-flex {
|
6
|
+
border-radius: 2px;
|
7
|
+
padding: 0 17.5px 0 16px;
|
8
|
+
width: 100%;
|
9
|
+
height: 40px;
|
10
|
+
|
11
|
+
.mat-select-min-line {
|
12
|
+
font-family: "Open Sans";
|
13
|
+
font-size: 14px;
|
14
|
+
font-weight: 600;
|
15
|
+
line-height: 16px;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
.mat-form-field-infix {
|
20
|
+
padding-top: 0;
|
21
|
+
border-top: 10px solid transparent;
|
22
|
+
|
23
|
+
.mat-select-value-text {
|
24
|
+
line-height: 16px;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
.mat-form-field-wrapper {
|
29
|
+
.mat-form-field-underline {
|
30
|
+
display: none;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
&.warning {
|
36
|
+
::ng-deep .material-custom-multiselect {
|
37
|
+
.mat-form-field-flex {
|
38
|
+
background-color: #E4CF53;
|
39
|
+
|
40
|
+
.mat-select-arrow-wrapper {
|
41
|
+
.mat-select-arrow {
|
42
|
+
color: rgba(0, 0, 0, 0.6);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
.mat-select-value {
|
48
|
+
color: #323232;
|
49
|
+
font-weight: 600;
|
50
|
+
}
|
51
|
+
.mat-select-arrow {
|
52
|
+
color: #323232;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
&.light {
|
58
|
+
::ng-deep .material-custom-multiselect {
|
59
|
+
.mat-form-field-flex {
|
60
|
+
background-color: rgba(0, 0, 0, 0.1);
|
61
|
+
|
62
|
+
.mat-select-arrow-wrapper {
|
63
|
+
.mat-select-arrow {
|
64
|
+
color: rgba(0, 0, 0, 0.6);
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
.mat-select-value {
|
70
|
+
color: #323232;
|
71
|
+
font-weight: 600;
|
72
|
+
}
|
73
|
+
.mat-select-arrow {
|
74
|
+
color: #323232;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
&.danger {
|
80
|
+
::ng-deep .material-custom-multiselect {
|
81
|
+
.mat-form-field-flex {
|
82
|
+
background-color: #9E360F;
|
83
|
+
|
84
|
+
.mat-select-arrow-wrapper {
|
85
|
+
.mat-select-arrow {
|
86
|
+
color: rgba(255, 255, 255, 0.6);
|
87
|
+
}
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
.mat-select-value {
|
92
|
+
color: #fff;
|
93
|
+
}
|
94
|
+
|
95
|
+
.mat-select-arrow {
|
96
|
+
color: #fff;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
&.success {
|
102
|
+
::ng-deep .material-custom-multiselect {
|
103
|
+
.mat-form-field-flex {
|
104
|
+
background-color: #005832;
|
105
|
+
}
|
106
|
+
|
107
|
+
.mat-select-value {
|
108
|
+
color: #fff;
|
109
|
+
}
|
110
|
+
|
111
|
+
.mat-select-arrow {
|
112
|
+
color: #fff;
|
113
|
+
}
|
114
|
+
|
115
|
+
.mat-select-arrow-wrapper {
|
116
|
+
.mat-select-arrow {
|
117
|
+
color: rgba(255, 255, 255, 0.6);
|
118
|
+
}
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
::ng-deep {
|
124
|
+
mat-select {
|
125
|
+
.mat-select-value {
|
126
|
+
font-size: 14px;
|
127
|
+
line-height: 16px;
|
128
|
+
color: #323232;
|
129
|
+
font-weight: 500;
|
130
|
+
}
|
131
|
+
|
132
|
+
.mat-select-arrow-wrapper {
|
133
|
+
padding-top: 17.5px;
|
134
|
+
|
135
|
+
.mat-select-arrow {
|
136
|
+
border-top: 4px solid;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
mat-option .mat-option-custom .mat-pseudo-checkbox-checked::after {
|
142
|
+
top: 3px;
|
143
|
+
width: 11px;
|
144
|
+
height: 5px;
|
145
|
+
border-left: 3px solid currentColor;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
label {
|
2
|
+
&.qms-label {
|
3
|
+
font-size: 14px;
|
4
|
+
line-height: 16px;
|
5
|
+
font-family: "Open Sans";
|
6
|
+
padding: 4px 6px;
|
7
|
+
border-radius: 4px;
|
8
|
+
font-weight: 600;
|
9
|
+
margin-bottom: 0;
|
10
|
+
height: 24px;
|
11
|
+
|
12
|
+
&.qms-label-success {
|
13
|
+
background: linear-gradient(0deg, rgba(0, 128, 76, 0.1), rgba(0, 128, 76, 0.1)), #FFFFFF;
|
14
|
+
color: #005935;
|
15
|
+
}
|
16
|
+
|
17
|
+
&.qms-label-warning {
|
18
|
+
background: linear-gradient(0deg, rgba(228, 207, 83, 0.3), rgba(228, 207, 83, 0.3)), #FFFFFF;
|
19
|
+
color: #726729;
|
20
|
+
}
|
21
|
+
|
22
|
+
&.qms-label-light {
|
23
|
+
background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #FFFFFF;;
|
24
|
+
color: #525252;
|
25
|
+
}
|
26
|
+
|
27
|
+
&.qms-label-danger {
|
28
|
+
background: linear-gradient(0deg, rgba(149, 39, 2, 0.1), rgba(149, 39, 2, 0.1)), #FFFFFF;
|
29
|
+
color: #74280B;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { Component, Input } from "@angular/core";
|
2
|
-
export class TestOnlyComponent {
|
3
|
-
constructor() {
|
4
|
-
this.text = "";
|
5
|
-
}
|
6
|
-
}
|
7
|
-
TestOnlyComponent.decorators = [
|
8
|
-
{ type: Component, args: [{
|
9
|
-
selector: 'qms-test-only',
|
10
|
-
template: "<div class=\"test-container\">\r\n <h1 class=\"content\">{{ text }}</h1>\r\n</div>",
|
11
|
-
styles: [".test-container .content{background-color:#f4e9e5;max-height:36vw;overflow-y:scroll;overflow-x:hidden}"]
|
12
|
-
},] }
|
13
|
-
];
|
14
|
-
TestOnlyComponent.propDecorators = {
|
15
|
-
text: [{ type: Input }]
|
16
|
-
};
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC1vbmx5LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Ftcy1hbmd1bGFyL3NyYy9saWIvY29tcG9uZW50cy90ZXN0LW9ubHkvdGVzdC1vbmx5LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQU9qRCxNQUFNLE9BQU8saUJBQWlCO0lBTDlCO1FBTWEsU0FBSSxHQUFXLEVBQUUsQ0FBQztJQUMvQixDQUFDOzs7WUFQQSxTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLGVBQWU7Z0JBRXpCLGlHQUF5Qzs7YUFDNUM7OzttQkFFSSxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICAgIHNlbGVjdG9yOiAncW1zLXRlc3Qtb25seScsXHJcbiAgICBzdHlsZVVybHM6IFsnLi90ZXN0LW9ubHkuY29tcG9uZW50LnNjc3MnXSxcclxuICAgIHRlbXBsYXRlVXJsOiAnLi90ZXN0LW9ubHkuY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBUZXN0T25seUNvbXBvbmVudCB7XHJcbiAgICBASW5wdXQoKSB0ZXh0OiBzdHJpbmcgPSBcIlwiO1xyXG59Il19
|