bkui-vue 0.0.1-beta.461 → 0.0.1-beta.463
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/dist/index.cjs.js +16 -16
- package/dist/index.esm.js +882 -878
- package/dist/index.umd.js +16 -16
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/date-picker/date-picker.css +3 -0
- package/lib/date-picker/date-picker.less +6 -2
- package/lib/date-picker/date-picker.variable.css +3 -0
- package/lib/date-picker/index.js +1 -1
- package/lib/date-picker/panel/date-range.d.ts +14 -0
- package/lib/input/index.js +1 -1
- package/lib/select/select.css +3 -3
- package/lib/select/select.less +4 -4
- package/lib/select/select.variable.css +3 -3
- package/package.json +1 -1
package/lib/select/select.css
CHANGED
@@ -281,9 +281,8 @@
|
|
281
281
|
padding: 4px 0;
|
282
282
|
}
|
283
283
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option {
|
284
|
-
display: flex;
|
285
|
-
align-items: center;
|
286
284
|
position: relative;
|
285
|
+
display: flex;
|
287
286
|
height: 32px;
|
288
287
|
padding: 0 12px;
|
289
288
|
line-height: 32px;
|
@@ -291,14 +290,15 @@
|
|
291
290
|
text-align: left;
|
292
291
|
cursor: pointer;
|
293
292
|
user-select: none;
|
293
|
+
align-items: center;
|
294
294
|
overflow: hidden;
|
295
295
|
text-overflow: ellipsis;
|
296
296
|
white-space: nowrap;
|
297
297
|
}
|
298
298
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option .bk-select-selected-icon {
|
299
299
|
position: absolute;
|
300
|
-
right: 10px;
|
301
300
|
top: 5px;
|
301
|
+
right: 10px;
|
302
302
|
}
|
303
303
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option .bk-select-checkbox {
|
304
304
|
margin-right: 6px;
|
package/lib/select/select.less
CHANGED
@@ -322,9 +322,8 @@
|
|
322
322
|
}
|
323
323
|
|
324
324
|
.@{bk-prefix}-select-option {
|
325
|
-
display: flex;
|
326
|
-
align-items: center;
|
327
325
|
position: relative;
|
326
|
+
display: flex;
|
328
327
|
height: 32px;
|
329
328
|
padding: 0 12px;
|
330
329
|
line-height: 32px;
|
@@ -332,13 +331,14 @@
|
|
332
331
|
text-align: left;
|
333
332
|
cursor: pointer;
|
334
333
|
user-select: none;
|
334
|
+
align-items: center;
|
335
335
|
|
336
336
|
.ellipsis();
|
337
337
|
|
338
338
|
.@{bk-prefix}-select-selected-icon {
|
339
339
|
position: absolute;
|
340
|
-
|
341
|
-
|
340
|
+
top: 5px;
|
341
|
+
right: 10px
|
342
342
|
}
|
343
343
|
.@{bk-prefix}-select-checkbox {
|
344
344
|
margin-right: 6px;
|
@@ -403,9 +403,8 @@
|
|
403
403
|
padding: 4px 0;
|
404
404
|
}
|
405
405
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option {
|
406
|
-
display: flex;
|
407
|
-
align-items: center;
|
408
406
|
position: relative;
|
407
|
+
display: flex;
|
409
408
|
height: 32px;
|
410
409
|
padding: 0 12px;
|
411
410
|
line-height: 32px;
|
@@ -413,14 +412,15 @@
|
|
413
412
|
text-align: left;
|
414
413
|
cursor: pointer;
|
415
414
|
user-select: none;
|
415
|
+
align-items: center;
|
416
416
|
overflow: hidden;
|
417
417
|
text-overflow: ellipsis;
|
418
418
|
white-space: nowrap;
|
419
419
|
}
|
420
420
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option .bk-select-selected-icon {
|
421
421
|
position: absolute;
|
422
|
-
right: 10px;
|
423
422
|
top: 5px;
|
423
|
+
right: 10px;
|
424
424
|
}
|
425
425
|
.bk-popover.bk-pop2-content.bk-select-popover .bk-select-content-wrapper .bk-select-option .bk-select-checkbox {
|
426
426
|
margin-right: 6px;
|