@blueking/date-picker 0.0.13 → 0.0.15
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/vue2-full.css +69 -18
- package/dist/vue2-full.es.js +9801 -17739
- package/dist/vue3-full.css +69 -18
- package/dist/vue3-full.es.js +9741 -17679
- package/dist/vue3-light.css +69 -18
- package/dist/vue3-light.es.js +4752 -12690
- package/package.json +22 -5
package/dist/vue3-full.css
CHANGED
|
@@ -2342,6 +2342,22 @@ optgroup {
|
|
|
2342
2342
|
color: #63656e;
|
|
2343
2343
|
border: 1px solid #c4c6cc;
|
|
2344
2344
|
border-radius: 2px;
|
|
2345
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
2346
|
+
}
|
|
2347
|
+
.__bk_date_picker__ div::-webkit-scrollbar,
|
|
2348
|
+
.__bk_date_picker__ ul::-webkit-scrollbar,
|
|
2349
|
+
.__bk_date_picker__ section::-webkit-scrollbar,
|
|
2350
|
+
.__bk_date_picker__ article::-webkit-scrollbar {
|
|
2351
|
+
width: 4px;
|
|
2352
|
+
height: 4px;
|
|
2353
|
+
}
|
|
2354
|
+
.__bk_date_picker__ div::-webkit-scrollbar-thumb,
|
|
2355
|
+
.__bk_date_picker__ ul::-webkit-scrollbar-thumb,
|
|
2356
|
+
.__bk_date_picker__ section::-webkit-scrollbar-thumb,
|
|
2357
|
+
.__bk_date_picker__ article::-webkit-scrollbar-thumb {
|
|
2358
|
+
background: #ddd;
|
|
2359
|
+
border-radius: 20px;
|
|
2360
|
+
box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
|
|
2345
2361
|
}
|
|
2346
2362
|
.__bk_date_picker__ .date-icon {
|
|
2347
2363
|
display: flex;
|
|
@@ -2368,6 +2384,29 @@ optgroup {
|
|
|
2368
2384
|
cursor: pointer;
|
|
2369
2385
|
background-color: #f0f1f5;
|
|
2370
2386
|
}
|
|
2387
|
+
.__bk_date_picker__.is-simplicity {
|
|
2388
|
+
border-color: transparent;
|
|
2389
|
+
}
|
|
2390
|
+
.__bk_date_picker__.is-simplicity .date-icon {
|
|
2391
|
+
background-color: transparent;
|
|
2392
|
+
}
|
|
2393
|
+
.__bk_date_picker__.is-simplicity .date-icon:hover {
|
|
2394
|
+
cursor: pointer;
|
|
2395
|
+
background-color: #f0f1f5;
|
|
2396
|
+
}
|
|
2397
|
+
.__bk_date_picker__.is-disabled {
|
|
2398
|
+
color: #c4c6cc;
|
|
2399
|
+
cursor: not-allowed;
|
|
2400
|
+
/* stylelint-disable-next-line no-descending-specificity */
|
|
2401
|
+
}
|
|
2402
|
+
.__bk_date_picker__.is-disabled .date-icon {
|
|
2403
|
+
color: #c4c6cc;
|
|
2404
|
+
pointer-events: none;
|
|
2405
|
+
}
|
|
2406
|
+
.__bk_date_picker__.is-disabled .date-content {
|
|
2407
|
+
pointer-events: none;
|
|
2408
|
+
cursor: not-allowed;
|
|
2409
|
+
}
|
|
2371
2410
|
.__bk_date_picker__ .date-content {
|
|
2372
2411
|
display: flex;
|
|
2373
2412
|
align-items: center;
|
|
@@ -2391,24 +2430,6 @@ optgroup {
|
|
|
2391
2430
|
cursor: pointer;
|
|
2392
2431
|
background: #f5f7fa;
|
|
2393
2432
|
}
|
|
2394
|
-
.__bk_date_picker__.is-simplicity {
|
|
2395
|
-
border-color: transparent;
|
|
2396
|
-
}
|
|
2397
|
-
.__bk_date_picker__.is-simplicity .date-icon {
|
|
2398
|
-
background-color: transparent;
|
|
2399
|
-
}
|
|
2400
|
-
.__bk_date_picker__.is-disabled {
|
|
2401
|
-
color: #c4c6cc;
|
|
2402
|
-
cursor: not-allowed;
|
|
2403
|
-
}
|
|
2404
|
-
.__bk_date_picker__.is-disabled .date-icon {
|
|
2405
|
-
color: #c4c6cc;
|
|
2406
|
-
pointer-events: none;
|
|
2407
|
-
}
|
|
2408
|
-
.__bk_date_picker__.is-disabled .date-content {
|
|
2409
|
-
pointer-events: none;
|
|
2410
|
-
cursor: not-allowed;
|
|
2411
|
-
}
|
|
2412
2433
|
.__bk-date-picker-popover__ {
|
|
2413
2434
|
/* stylelint-disable-next-line declaration-no-important */
|
|
2414
2435
|
padding: 0 !important;
|
|
@@ -2417,6 +2438,21 @@ optgroup {
|
|
|
2417
2438
|
/* stylelint-disable-next-line declaration-no-important */
|
|
2418
2439
|
color: #63656e !important;
|
|
2419
2440
|
}
|
|
2441
|
+
.__bk-date-picker-popover__ div::-webkit-scrollbar,
|
|
2442
|
+
.__bk-date-picker-popover__ ul::-webkit-scrollbar,
|
|
2443
|
+
.__bk-date-picker-popover__ section::-webkit-scrollbar,
|
|
2444
|
+
.__bk-date-picker-popover__ article::-webkit-scrollbar {
|
|
2445
|
+
width: 4px;
|
|
2446
|
+
height: 4px;
|
|
2447
|
+
}
|
|
2448
|
+
.__bk-date-picker-popover__ div::-webkit-scrollbar-thumb,
|
|
2449
|
+
.__bk-date-picker-popover__ ul::-webkit-scrollbar-thumb,
|
|
2450
|
+
.__bk-date-picker-popover__ section::-webkit-scrollbar-thumb,
|
|
2451
|
+
.__bk-date-picker-popover__ article::-webkit-scrollbar-thumb {
|
|
2452
|
+
background: #ddd;
|
|
2453
|
+
border-radius: 20px;
|
|
2454
|
+
box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
|
|
2455
|
+
}
|
|
2420
2456
|
.__bk-date-picker-popover__ ul {
|
|
2421
2457
|
padding: 0;
|
|
2422
2458
|
margin: 0;
|
|
@@ -2432,6 +2468,21 @@ optgroup {
|
|
|
2432
2468
|
max-width: 156px;
|
|
2433
2469
|
line-height: 20px;
|
|
2434
2470
|
}
|
|
2471
|
+
.__date-tooltips__ div::-webkit-scrollbar,
|
|
2472
|
+
.__date-tooltips__ ul::-webkit-scrollbar,
|
|
2473
|
+
.__date-tooltips__ section::-webkit-scrollbar,
|
|
2474
|
+
.__date-tooltips__ article::-webkit-scrollbar {
|
|
2475
|
+
width: 4px;
|
|
2476
|
+
height: 4px;
|
|
2477
|
+
}
|
|
2478
|
+
.__date-tooltips__ div::-webkit-scrollbar-thumb,
|
|
2479
|
+
.__date-tooltips__ ul::-webkit-scrollbar-thumb,
|
|
2480
|
+
.__date-tooltips__ section::-webkit-scrollbar-thumb,
|
|
2481
|
+
.__date-tooltips__ article::-webkit-scrollbar-thumb {
|
|
2482
|
+
background: #ddd;
|
|
2483
|
+
border-radius: 20px;
|
|
2484
|
+
box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
|
|
2485
|
+
}
|
|
2435
2486
|
.__date-tooltips__ .date-tooltips-timezone {
|
|
2436
2487
|
display: flex;
|
|
2437
2488
|
align-items: center;
|