@c10t/nice-component-library 0.0.1-beta
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/components/base/base-add-edit.component.d.ts +28 -0
- package/components/base/base-search.component.d.ts +62 -0
- package/components/base/base-table.component.d.ts +16 -0
- package/components/cva-breadcrumb.component.d.ts +14 -0
- package/components/cva-counter-input.component.d.ts +42 -0
- package/components/cva-custom-dialog.component.d.ts +30 -0
- package/components/cva-input.component.d.ts +60 -0
- package/components/cva-loader.component.d.ts +9 -0
- package/components/cva-multi-select-autocomplete.d.ts +64 -0
- package/components/cva-quill-editor.component.d.ts +66 -0
- package/components/cva-radiobutton.component.d.ts +32 -0
- package/components/cva-tree.component.d.ts +38 -0
- package/components/datepicker/cva-date-picker.component.d.ts +43 -0
- package/components/datepicker/cva-range-date-picker.component.d.ts +64 -0
- package/components/table/cva-header-expand-button.component.d.ts +22 -0
- package/components/table/cva-smart-table.component.d.ts +72 -0
- package/components/table/cva-table.component.d.ts +62 -0
- package/components/tree/cva-flat-tree-node-left.component.d.ts +22 -0
- package/components/tree/cva-flat-tree-node-right.component.d.ts +18 -0
- package/components/tree/cva-flat-tree.component.d.ts +96 -0
- package/components/upload/cva-dialog-import-file.component.d.ts +30 -0
- package/components/upload/cva-multi-upload-img.component.d.ts +24 -0
- package/components/upload/cva-multi-upload.component.d.ts +30 -0
- package/components/upload/cva-upload-file.component.d.ts +70 -0
- package/directives/drag-drop.directive.d.ts +12 -0
- package/directives/format-datepicker.d.ts +8 -0
- package/directives/format-input.directive.d.ts +29 -0
- package/directives/multi-language-table-paginator.d.ts +12 -0
- package/directives/pattern.directive.d.ts +16 -0
- package/directives/style-paginator.directive.d.ts +31 -0
- package/enums/action-type.enum.d.ts +5 -0
- package/enums/align.enum.d.ts +5 -0
- package/enums/column-type.enum.d.ts +14 -0
- package/enums/dialog-type.enum.d.ts +5 -0
- package/enums/file-type.enum.d.ts +13 -0
- package/enums/icon-type.enum.d.ts +4 -0
- package/fesm2022/c10t-nice-component-library.mjs +9024 -0
- package/fesm2022/c10t-nice-component-library.mjs.map +1 -0
- package/index.d.ts +75 -0
- package/models/base.model.d.ts +5 -0
- package/models/button-click.event.d.ts +6 -0
- package/models/components/bread-crumb.model.d.ts +5 -0
- package/models/components/button.model.d.ts +16 -0
- package/models/components/checkbox.model.d.ts +7 -0
- package/models/components/column.model.d.ts +37 -0
- package/models/components/custom-dialog-data-config.model.d.ts +16 -0
- package/models/components/dialog-import-file-config.model.d.ts +9 -0
- package/models/components/flat-tree-config.model.d.ts +5 -0
- package/models/components/flat-tree-node.model.d.ts +16 -0
- package/models/components/flat-tree.model.d.ts +7 -0
- package/models/components/range-date-picker.model.d.ts +7 -0
- package/models/components/select.model.d.ts +7 -0
- package/models/components/table-footer.model.d.ts +10 -0
- package/models/components/table-paging-request.model.d.ts +6 -0
- package/models/components/table-paging-response.model.d.ts +6 -0
- package/models/components/upload.model.d.ts +11 -0
- package/models/menu.model.d.ts +10 -0
- package/models/navigator.model.d.ts +10 -0
- package/models/nice-component-library.config.d.ts +13 -0
- package/models/oauth/authority.d.ts +3 -0
- package/models/oauth/oAuth2AuthenticationDto.d.ts +7 -0
- package/models/oauth/principal.d.ts +10 -0
- package/models/oauth/user.authentication.d.ts +4 -0
- package/models/permission.model.d.ts +7 -0
- package/models/role.model.d.ts +12 -0
- package/models/ui.state.d.ts +5 -0
- package/modules/angular-material.module.d.ts +45 -0
- package/modules/nice-component-library.module.d.ts +46 -0
- package/package.json +59 -0
- package/pipes/secure.pipe.d.ts +13 -0
- package/services/MultiTranslateHttpLoader.d.ts +13 -0
- package/services/api.service.d.ts +42 -0
- package/services/authorities.resolver.service.d.ts +18 -0
- package/services/authorities.service.d.ts +12 -0
- package/services/date-util.service.d.ts +23 -0
- package/services/flat.tree.service.d.ts +7 -0
- package/services/form-state.service.d.ts +9 -0
- package/services/jsog.http.interceptor.d.ts +11 -0
- package/services/loader.interceptor.d.ts +13 -0
- package/services/loader.service.d.ts +7 -0
- package/services/ns-validator.service.d.ts +48 -0
- package/services/singleton.translate.service.d.ts +8 -0
- package/services/table.service.d.ts +24 -0
- package/services/utils.service.d.ts +47 -0
- package/src/styles/base.theme.scss +3112 -0
- package/src/styles/components/cva-breadcrumb.scss +38 -0
- package/src/styles/components/cva-counter-input.scss +45 -0
- package/src/styles/components/cva-custom-dialog.scss +7 -0
- package/src/styles/components/cva-date-picker.scss +16 -0
- package/src/styles/components/cva-date-range-picker.scss +22 -0
- package/src/styles/components/cva-flat-tree.scss +171 -0
- package/src/styles/components/cva-input.scss +120 -0
- package/src/styles/components/cva-loader.scss +36 -0
- package/src/styles/components/cva-multi-select-autocomplete.scss +128 -0
- package/src/styles/components/cva-multi-upload.scss +145 -0
- package/src/styles/components/cva-radio-button.scss +58 -0
- package/src/styles/components/cva-smart-table.scss +129 -0
- package/src/styles/components/cva-table.scss +98 -0
- package/src/styles/components/cva-tree.scss +76 -0
- package/src/styles/fonts/Comfortaa-Medium.ttf +0 -0
- package/src/styles/fonts/Exo-Regular.ttf +0 -0
- package/src/styles/fonts/Mali-Medium.ttf +0 -0
- package/src/styles/fonts/VarelaRound-Regular.ttf +0 -0
- package/src/styles/fonts/fa-brands-400.eot +0 -0
- package/src/styles/fonts/fa-brands-400.svg +3570 -0
- package/src/styles/fonts/fa-brands-400.ttf +0 -0
- package/src/styles/fonts/fa-brands-400.woff +0 -0
- package/src/styles/fonts/fa-brands-400.woff2 +0 -0
- package/src/styles/fonts/fa-duotone-900.eot +0 -0
- package/src/styles/fonts/fa-duotone-900.svg +15055 -0
- package/src/styles/fonts/fa-duotone-900.ttf +0 -0
- package/src/styles/fonts/fa-duotone-900.woff +0 -0
- package/src/styles/fonts/fa-duotone-900.woff2 +0 -0
- package/src/styles/fonts/fa-light-300.eot +0 -0
- package/src/styles/fonts/fa-light-300.svg +12330 -0
- package/src/styles/fonts/fa-light-300.ttf +0 -0
- package/src/styles/fonts/fa-light-300.woff +0 -0
- package/src/styles/fonts/fa-light-300.woff2 +0 -0
- package/src/styles/fonts/fa-regular-400.eot +0 -0
- package/src/styles/fonts/fa-regular-400.svg +11256 -0
- package/src/styles/fonts/fa-regular-400.ttf +0 -0
- package/src/styles/fonts/fa-regular-400.woff +0 -0
- package/src/styles/fonts/fa-regular-400.woff2 +0 -0
- package/src/styles/fonts/fa-solid-900.eot +0 -0
- package/src/styles/fonts/fa-solid-900.svg +9588 -0
- package/src/styles/fonts/fa-solid-900.ttf +0 -0
- package/src/styles/fonts/fa-solid-900.woff +0 -0
- package/src/styles/fonts/fa-solid-900.woff2 +0 -0
- package/src/styles/fonts/fontawesome-webfont.eot +0 -0
- package/src/styles/fonts/fontawesome-webfont.svg +2671 -0
- package/src/styles/fonts/fontawesome-webfont.ttf +0 -0
- package/src/styles/fonts/fontawesome-webfont.woff +0 -0
- package/src/styles/fonts/fontawesome-webfont.woff2 +0 -0
- package/src/styles/fonts/glyphter.eot +0 -0
- package/src/styles/fonts/glyphter.svg +1 -0
- package/src/styles/fonts/glyphter.ttf +0 -0
- package/src/styles/fonts/glyphter.woff +0 -0
- package/src/styles/themes/athena.theme.scss +1684 -0
- package/src/styles/themes/button-default.style.scss +961 -0
- package/src/styles/themes/default.theme.scss +939 -0
- package/src/styles/themes/fonts-awesome.scss +12756 -0
- package/src/styles/themes/glyphter.scss +27 -0
- package/src/styles/themes/hera.theme.scss +1600 -0
- package/src/styles/themes/poseidon.theme.scss +1639 -0
- package/src/styles/themes/zeus.theme.scss +1655 -0
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
.cva-multi-upload {
|
|
2
|
+
background-color: transparent;
|
|
3
|
+
margin: 0;
|
|
4
|
+
border: none;
|
|
5
|
+
|
|
6
|
+
button {
|
|
7
|
+
border-radius: 0;
|
|
8
|
+
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.required-label-outside {
|
|
12
|
+
color: red;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.uploadArea {
|
|
16
|
+
margin-bottom: 15px;
|
|
17
|
+
|
|
18
|
+
input[type="file"] {
|
|
19
|
+
display: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
mat-card {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
border: none;
|
|
25
|
+
height: 100%;
|
|
26
|
+
margin: 0;
|
|
27
|
+
padding: 0;
|
|
28
|
+
box-shadow: none !important;
|
|
29
|
+
|
|
30
|
+
mat-card-actions {
|
|
31
|
+
height: 100%;
|
|
32
|
+
padding: 0;
|
|
33
|
+
margin: 0;
|
|
34
|
+
|
|
35
|
+
button {
|
|
36
|
+
height: 100%;
|
|
37
|
+
width: 100%;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
mat-label {
|
|
41
|
+
word-break: break-word;
|
|
42
|
+
margin-bottom: 20px;
|
|
43
|
+
max-width: 128px;
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.upload-button {
|
|
50
|
+
background-color: transparent;
|
|
51
|
+
border: 1px dashed #3366FF;
|
|
52
|
+
border-radius: 10px;
|
|
53
|
+
width: 150px;
|
|
54
|
+
height: 150px;
|
|
55
|
+
float: left;
|
|
56
|
+
min-height: 45px;
|
|
57
|
+
margin-bottom: 10px;
|
|
58
|
+
padding: 10px;
|
|
59
|
+
|
|
60
|
+
.mat-button-wrapper {
|
|
61
|
+
height: 100%;
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
place-content: center;
|
|
65
|
+
align-items: center;
|
|
66
|
+
|
|
67
|
+
.preview-image {
|
|
68
|
+
background-size: contain;
|
|
69
|
+
background-repeat: no-repeat;
|
|
70
|
+
background-position: center;
|
|
71
|
+
width: 100%;
|
|
72
|
+
height: 100%;
|
|
73
|
+
border-radius: 10px;
|
|
74
|
+
z-index: 1;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
mat-icon {
|
|
79
|
+
color: #3366FF;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
mat-label {
|
|
83
|
+
display: block;
|
|
84
|
+
width: 150px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.fa-plus {
|
|
88
|
+
color: #3366FF;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.fa-file-alt {
|
|
92
|
+
position: absolute;
|
|
93
|
+
top: 20px;
|
|
94
|
+
left: 20px;
|
|
95
|
+
color: rgba(51, 102, 255, 0.4);
|
|
96
|
+
font-size: 90px;
|
|
97
|
+
font-weight: 100;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.fa-eye {
|
|
101
|
+
position: absolute;
|
|
102
|
+
bottom: 5px;
|
|
103
|
+
left: 5px;
|
|
104
|
+
color: #3366ff;
|
|
105
|
+
font-size: 16px;
|
|
106
|
+
font-weight: bold;
|
|
107
|
+
background-color: #FFF0EF;
|
|
108
|
+
border: 1px solid #E6F2FC;
|
|
109
|
+
border-radius: 50%;
|
|
110
|
+
height: 32px;
|
|
111
|
+
width: 32px;
|
|
112
|
+
display: flex;
|
|
113
|
+
place-content: center;
|
|
114
|
+
align-items: center;
|
|
115
|
+
z-index: 2;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.fa-eye:hover {
|
|
119
|
+
border: 1px solid #0088f8;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.fa-trash-alt {
|
|
123
|
+
position: absolute;
|
|
124
|
+
bottom: 5px;
|
|
125
|
+
right: 5px;
|
|
126
|
+
color: #ff837d;
|
|
127
|
+
font-size: 16px;
|
|
128
|
+
font-weight: bold;
|
|
129
|
+
background-color: #FFF0EF;
|
|
130
|
+
border: 1px solid #E6F2FC;
|
|
131
|
+
border-radius: 50%;
|
|
132
|
+
height: 32px;
|
|
133
|
+
width: 32px;
|
|
134
|
+
display: flex;
|
|
135
|
+
place-content: center;
|
|
136
|
+
align-items: center;
|
|
137
|
+
z-index: 2;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.fa-trash-alt:hover {
|
|
141
|
+
border: 1px solid #ff4036;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
.cva-radiobutton {
|
|
2
|
+
.required-label-outside {
|
|
3
|
+
color: red;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
div:first-child {
|
|
7
|
+
align-items: center;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.label {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.mat-radio-group {
|
|
15
|
+
&.example-radio-group {
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
margin: 15px 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
mat-radio-button {
|
|
22
|
+
&.example-radio-button {
|
|
23
|
+
margin-right: 15px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
label.mat-radio-label {
|
|
27
|
+
-webkit-user-select: none;
|
|
28
|
+
-moz-user-select: none;
|
|
29
|
+
-ms-user-select: none;
|
|
30
|
+
user-select: none;
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
display: inline-flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
vertical-align: middle;
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
mat-hint {
|
|
41
|
+
color: red!important;
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.labelOutside {
|
|
46
|
+
label {
|
|
47
|
+
height: 48px;
|
|
48
|
+
display: flex;
|
|
49
|
+
place-content: center;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
mat-radio-group {
|
|
53
|
+
height: 48px;
|
|
54
|
+
align-items: center;
|
|
55
|
+
margin: 0 0 15px 0 !important;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
.cva-smart-table {
|
|
2
|
+
mat-header-cell {
|
|
3
|
+
padding-left: 0.5rem;
|
|
4
|
+
|
|
5
|
+
div {
|
|
6
|
+
width: 100%;
|
|
7
|
+
color: rgb(99, 94, 94);
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
font-weight: 700;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
mat-cell {
|
|
14
|
+
padding-left: 0.5rem;
|
|
15
|
+
font-size: small;
|
|
16
|
+
display: flex;
|
|
17
|
+
|
|
18
|
+
.viewData {
|
|
19
|
+
width: 100%;
|
|
20
|
+
min-width: 100%;
|
|
21
|
+
overflow: hidden !important;
|
|
22
|
+
text-overflow: ellipsis;
|
|
23
|
+
|
|
24
|
+
display: flex;
|
|
25
|
+
place-content: flex-start;
|
|
26
|
+
align-content: center;
|
|
27
|
+
|
|
28
|
+
white-space: pre-line;
|
|
29
|
+
word-break: break-word;
|
|
30
|
+
|
|
31
|
+
&.break-word-style-view {
|
|
32
|
+
word-break: initial;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.inputNumber {
|
|
37
|
+
width: 100%;
|
|
38
|
+
min-width: 100%;
|
|
39
|
+
overflow: hidden !important;
|
|
40
|
+
text-overflow: ellipsis;
|
|
41
|
+
|
|
42
|
+
display: flex;
|
|
43
|
+
place-content: center;
|
|
44
|
+
align-content: center;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.multiSelectAutocomplete {
|
|
48
|
+
min-width: 100%;
|
|
49
|
+
width: 100%;
|
|
50
|
+
overflow: hidden !important;
|
|
51
|
+
text-overflow: ellipsis;
|
|
52
|
+
display: flex;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
mat-footer-cell {
|
|
57
|
+
padding-left: 0.5rem;
|
|
58
|
+
font-size: small;
|
|
59
|
+
display: flex;
|
|
60
|
+
|
|
61
|
+
.viewData {
|
|
62
|
+
width: 100%;
|
|
63
|
+
min-width: 100%;
|
|
64
|
+
overflow: hidden !important;
|
|
65
|
+
text-overflow: ellipsis;
|
|
66
|
+
|
|
67
|
+
display: flex;
|
|
68
|
+
place-content: flex-start;
|
|
69
|
+
align-content: center;
|
|
70
|
+
|
|
71
|
+
white-space: pre-line;
|
|
72
|
+
word-break: break-word;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
mat-header-cell, mat-cell, mat-footer-cell {
|
|
77
|
+
&:first-child {
|
|
78
|
+
padding-left: 0.5rem;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.mat-column-stt, .mat-column-STT {
|
|
83
|
+
//max-width: 5%;
|
|
84
|
+
padding: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
mat-checkbox {
|
|
88
|
+
width: 1rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.checkbox-cell {
|
|
92
|
+
width: 100%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.img-view.viewData img {
|
|
96
|
+
height: 40px;
|
|
97
|
+
width: 40px;
|
|
98
|
+
border: 1px solid #D3D3D3;
|
|
99
|
+
border-radius: 6px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
mat-form-field {
|
|
103
|
+
.mat-form-field-wrapper {
|
|
104
|
+
margin: 0 !important;
|
|
105
|
+
padding: 0 !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
cva-smart-table {
|
|
111
|
+
&.flashSaleRangeTime {
|
|
112
|
+
.mat-header-cell {
|
|
113
|
+
background-color: #E6F6F3 !important;
|
|
114
|
+
|
|
115
|
+
> div {
|
|
116
|
+
color: #222222 !important;
|
|
117
|
+
font-weight: 500 !important;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.mat-row {
|
|
122
|
+
background-color: white !important;
|
|
123
|
+
|
|
124
|
+
.mat-cell {
|
|
125
|
+
border: 1px solid #E9E9E9;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
.cva-table {
|
|
2
|
+
.mat-column-stt, .mat-column-STT {
|
|
3
|
+
max-width: 5%;
|
|
4
|
+
padding: 0;
|
|
5
|
+
|
|
6
|
+
.viewData {
|
|
7
|
+
min-width: 100%;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
mat-header-cell {
|
|
12
|
+
padding-left: 0.5rem;
|
|
13
|
+
place-content: center;
|
|
14
|
+
align-items: center;
|
|
15
|
+
|
|
16
|
+
.viewData {
|
|
17
|
+
width: 100%;
|
|
18
|
+
color: rgb(99, 94, 94);
|
|
19
|
+
font-size: small;
|
|
20
|
+
font-weight: 700;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
mat-checkbox {
|
|
24
|
+
width: 100%;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
mat-cell {
|
|
29
|
+
padding-left: 0.5rem;
|
|
30
|
+
|
|
31
|
+
.viewData {
|
|
32
|
+
font-size: small;
|
|
33
|
+
width: 100%;
|
|
34
|
+
overflow: hidden !important;
|
|
35
|
+
text-overflow: ellipsis;
|
|
36
|
+
display: flex;
|
|
37
|
+
place-content: center;
|
|
38
|
+
align-content: center;
|
|
39
|
+
white-space: pre-line;
|
|
40
|
+
|
|
41
|
+
&.break-word-style-view {
|
|
42
|
+
word-break: break-word;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
mat-checkbox {
|
|
47
|
+
width: 100%;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
mat-cell:first-child, mat-header-cell:first-child {
|
|
52
|
+
max-width: 5%;
|
|
53
|
+
padding: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
mat-cell:last-of-type, mat-header-cell:last-of-type {
|
|
57
|
+
padding-right: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
cva-header-expand-button {
|
|
61
|
+
.expand-column-header-button {
|
|
62
|
+
z-index: 2;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.img-view.viewData img {
|
|
67
|
+
height: 4rem;
|
|
68
|
+
width: 4rem;
|
|
69
|
+
border-radius: 6px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
:host ::ng-deep h2 {
|
|
74
|
+
padding: 1rem 0.5rem 1rem 0.5rem;
|
|
75
|
+
margin: 0px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
:host ::ng-deep .mat-custom-page {
|
|
79
|
+
display: flex;
|
|
80
|
+
place-content: center;
|
|
81
|
+
align-items: center;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:host ::ng-deep .expand-column-header-button {
|
|
85
|
+
position: absolute;
|
|
86
|
+
right: 1rem !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
:host ::ng-deep .menu-expand-column {
|
|
90
|
+
height: 27rem;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
:host ::ng-deep .menu-expand-column .header-menu-expand {
|
|
94
|
+
position: sticky;
|
|
95
|
+
top: 0;
|
|
96
|
+
z-index: 1;
|
|
97
|
+
background: white
|
|
98
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
.cva-tree {
|
|
2
|
+
.example-tree-invisible {
|
|
3
|
+
display: none;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.example-tree ul,
|
|
7
|
+
.example-tree li {
|
|
8
|
+
margin-top: 0;
|
|
9
|
+
margin-bottom: 0;
|
|
10
|
+
list-style-type: none;
|
|
11
|
+
height: 100%;
|
|
12
|
+
width: 100%;
|
|
13
|
+
width: -moz-available; /* WebKit-based browsers will ignore this. */
|
|
14
|
+
width: -webkit-fill-available; /* Mozilla-based browsers will ignore this. */
|
|
15
|
+
width: fill-available;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.parent-mat-tree {
|
|
19
|
+
min-height: calc(100% - 53px);
|
|
20
|
+
max-height: calc(100% - 53px);
|
|
21
|
+
overflow: auto;
|
|
22
|
+
transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
23
|
+
margin: 1px;
|
|
24
|
+
border-radius: 2px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.parent-mat-tree mat-tree {
|
|
28
|
+
height: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.parent-mat-tree mat-tree mat-nested-tree-node {
|
|
32
|
+
height: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
mat-tree mat-nested-tree-node div.mat-tree-node {
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
min-height: 36px;
|
|
39
|
+
height: 36px;
|
|
40
|
+
flex: 1;
|
|
41
|
+
word-wrap: break-word;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
mat-tree mat-nested-tree-node ul mat-tree-node.mat-tree-node {
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
min-height: 36px;
|
|
48
|
+
height: 36px;
|
|
49
|
+
flex: 1;
|
|
50
|
+
word-wrap: break-word;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.box-search {
|
|
54
|
+
margin: 1px;
|
|
55
|
+
border-radius: 2px;
|
|
56
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
|
|
57
|
+
transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
58
|
+
display: flex;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.box-search .expand_collapse button {
|
|
62
|
+
padding-top: 6px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.box-search cva-multi-select-autocomplete {
|
|
66
|
+
flex: 1;
|
|
67
|
+
border: none;
|
|
68
|
+
outline: none;
|
|
69
|
+
padding-left: 1rem;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
label.item-focused {
|
|
73
|
+
font-weight: bold;
|
|
74
|
+
color: #ff9800;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|