@kizmann/nano-ui 0.9.1 → 0.9.2
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/package.json
CHANGED
@@ -836,8 +836,16 @@ export default {
|
|
836
836
|
|
837
837
|
renderPopover()
|
838
838
|
{
|
839
|
+
let classList = [
|
840
|
+
'n-popover--select'
|
841
|
+
];
|
842
|
+
|
843
|
+
if ( this.lazy ) {
|
844
|
+
classList.push('n-virtual');
|
845
|
+
}
|
846
|
+
|
839
847
|
let props = {
|
840
|
-
class:
|
848
|
+
class: classList,
|
841
849
|
trigger: 'click',
|
842
850
|
width: - 1,
|
843
851
|
listen: true,
|
@@ -118,13 +118,17 @@
|
|
118
118
|
}
|
119
119
|
|
120
120
|
.n-select__body.n-virtual {
|
121
|
-
min-height:
|
121
|
+
min-height: 210px;
|
122
122
|
}
|
123
123
|
|
124
124
|
.n-select__empty {
|
125
125
|
text-align: center;
|
126
126
|
}
|
127
127
|
|
128
|
+
.n-popover--select.n-virtual {
|
129
|
+
overflow: hidden;
|
130
|
+
}
|
131
|
+
|
128
132
|
@each $suffix, $values in $form {
|
129
133
|
|
130
134
|
$-select-font: map-get($values, 'font');
|