benivo-ui-library 1.9.61 → 1.9.63
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/autoComplete.less +22 -0
- package/checkbox.less +1 -0
- package/countryFlag.less +5 -0
- package/index.js +1 -1
- package/package.json +1 -1
- package/select.less +6 -0
package/autoComplete.less
CHANGED
|
@@ -41,6 +41,10 @@
|
|
|
41
41
|
vertical-align: -2px;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
+
&.with-country-flag:before {
|
|
45
|
+
content: none;
|
|
46
|
+
}
|
|
47
|
+
|
|
44
48
|
&:last-child {
|
|
45
49
|
border-bottom: solid 1px var(--border-200);
|
|
46
50
|
.border-radius(0 0 @form-border-radius @form-border-radius);
|
|
@@ -72,10 +76,20 @@
|
|
|
72
76
|
vertical-align: -2px;
|
|
73
77
|
}
|
|
74
78
|
|
|
79
|
+
&.with-country-flag:before {
|
|
80
|
+
content: none;
|
|
81
|
+
}
|
|
82
|
+
|
|
75
83
|
&.loading:before {
|
|
76
84
|
content: none;
|
|
77
85
|
}
|
|
78
86
|
|
|
87
|
+
.suggestion-item-content {
|
|
88
|
+
display: inline-flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
gap: 6px;
|
|
91
|
+
}
|
|
92
|
+
|
|
79
93
|
&:last-child {
|
|
80
94
|
border-bottom: solid 1px var(--border-200);
|
|
81
95
|
.border-radius(0 0 @form-border-radius @form-border-radius);
|
|
@@ -85,6 +99,14 @@
|
|
|
85
99
|
.border-radius(@form-border-radius @form-border-radius 0 0);
|
|
86
100
|
}
|
|
87
101
|
}
|
|
102
|
+
|
|
103
|
+
.suggestion-item--active {
|
|
104
|
+
.suggestion-item-content {
|
|
105
|
+
display: inline-flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
gap: 6px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
88
110
|
}
|
|
89
111
|
}
|
|
90
112
|
|
package/checkbox.less
CHANGED
package/countryFlag.less
CHANGED
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
background-repeat: no-repeat;
|
|
10
10
|
display: inline-block;
|
|
11
11
|
vertical-align: bottom;
|
|
12
|
+
width: 32px;
|
|
13
|
+
height: 32px;
|
|
14
|
+
flex-shrink: 0;
|
|
12
15
|
}
|
|
13
16
|
|
|
14
17
|
.country-flag-icon-32-_ASEAN {
|
|
@@ -991,6 +994,7 @@
|
|
|
991
994
|
vertical-align: text-top;
|
|
992
995
|
width: 24px;
|
|
993
996
|
height: 20px;
|
|
997
|
+
flex-shrink: 0;
|
|
994
998
|
}
|
|
995
999
|
|
|
996
1000
|
.country-flag-icon-24-_ASEAN {
|
|
@@ -1975,6 +1979,7 @@
|
|
|
1975
1979
|
vertical-align: bottom;
|
|
1976
1980
|
width: 16px;
|
|
1977
1981
|
height: 16px;
|
|
1982
|
+
flex-shrink: 0;
|
|
1978
1983
|
}
|
|
1979
1984
|
|
|
1980
1985
|
.country-flag-icon-16-_ASEAN {
|