ecabs-components 1.0.81 → 1.0.82
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 +2 -0
- package/esm2022/lib/ecabs-checkbox-toggle/ecabs-checkbox-toggle.component.mjs +2 -2
- package/fesm2022/ecabs-components.mjs +2 -2
- package/fesm2022/ecabs-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/styles/material/overrides/_phone.scss +7 -2
- package/src/assets/styles/material/overrides/_select.scss +32 -31
- package/src/assets/styles/scss/modules/_form.scss +1 -4
- package/src/assets/styles/scss/modules/_select.scss +0 -12
package/package.json
CHANGED
|
@@ -27,8 +27,13 @@ ecabs-phone {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.disabled {
|
|
30
|
-
input {
|
|
31
|
-
|
|
30
|
+
.ngx-mat-tel-input-container {
|
|
31
|
+
background-color: var(--color-white-opacity-05);
|
|
32
|
+
border-color: var(--color-gray-300);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.country-selector:disabled {
|
|
36
|
+
color: inherit;
|
|
32
37
|
}
|
|
33
38
|
|
|
34
39
|
button {
|
|
@@ -3,48 +3,49 @@
|
|
|
3
3
|
.mat-mdc-select {
|
|
4
4
|
&, &.form-field__select {
|
|
5
5
|
@extend .select;
|
|
6
|
-
}
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
.mat-mdc-select-arrow {
|
|
8
|
+
border-left: 0;
|
|
9
|
+
border-right: 0;
|
|
10
|
+
}
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
.mat-mdc-select-arrow-wrapper {
|
|
13
|
+
width: calc-rem(16px);
|
|
14
|
+
display: unset;
|
|
15
|
+
vertical-align: auto;
|
|
16
|
+
transform: none;
|
|
17
|
+
padding-top: 0.375rem;
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
opacity: 1 !important;
|
|
20
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDcuNDEwMTZMMCAxLjQxMDE2TDEuNDEgMC4wMDAxNTY0MDNMNiA0LjU4MDE2TDEwLjU5IDAuMDAwMTU2NDAzTDEyIDEuNDEwMTZMNiA3LjQxMDE2WiIgZmlsbD0iIzZCNkQ3MyIvPgo8L3N2Zz4K);
|
|
21
|
+
background-size: calc-rem(12px 7.41px);
|
|
22
|
+
background-position: right center;
|
|
23
|
+
background-repeat: no-repeat;
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
.mat-mdc-select-arrow {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
28
|
}
|
|
29
|
-
}
|
|
30
29
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
&-panel-wrap {
|
|
31
|
+
.mat-mdc-select-panel,
|
|
32
|
+
.mat-mdc-select-panel:not([class*='mat-elevation-z']) {
|
|
33
|
+
box-shadow: 0 0 15px rgba(#6b6d73, 0.24);
|
|
35
34
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
&[aria-multiselectable='true'] {
|
|
36
|
+
transform: translate(1.5rem, 0rem) !important;
|
|
37
|
+
}
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
.mat-mdc-select-search-input {
|
|
40
|
+
background-color: var(--color-white);
|
|
41
|
+
}
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
|
-
}
|
|
45
44
|
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
&.mat-mdc-select-disabled {
|
|
46
|
+
background-color: var(--color-white-opacity-05);
|
|
47
|
+
border-color: var(--color-gray-300);
|
|
48
|
+
}
|
|
48
49
|
}
|
|
49
50
|
}
|
|
50
51
|
|
|
@@ -192,6 +192,7 @@ form {
|
|
|
192
192
|
&.disabled input,
|
|
193
193
|
.disabled textarea {
|
|
194
194
|
background-color: var(--color-white-opacity-05);
|
|
195
|
+
border-color: var(--color-gray-300);
|
|
195
196
|
}
|
|
196
197
|
|
|
197
198
|
.spinner {
|
|
@@ -229,10 +230,6 @@ form {
|
|
|
229
230
|
width: auto;
|
|
230
231
|
}
|
|
231
232
|
|
|
232
|
-
.mat-mdc-form-field-type-mat-date-range-input .mat-mdc-form-field-infix {
|
|
233
|
-
width: auto;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
233
|
.mat-mdc-text-field-wrapper {
|
|
237
234
|
padding-bottom: 0;
|
|
238
235
|
}
|
|
@@ -15,15 +15,3 @@ $border-radius: 0.25rem;
|
|
|
15
15
|
border-color: var(--color-brand-dark);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
.mat-mdc-select-placeholder {
|
|
20
|
-
color: rgba(0, 0, 0, 0.42) !important;
|
|
21
|
-
-webkit-text-fill-color: rgba(0, 0, 0, 0.42) !important;
|
|
22
|
-
font-size: 18px !important;
|
|
23
|
-
line-height: 1.5rem !important;
|
|
24
|
-
font-family: $font-family-primary;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.mat-mdc-form-field-label {
|
|
28
|
-
display: none !important;
|
|
29
|
-
}
|