@useblu/ocean-core 1.36.2 → 1.37.1
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/CHANGELOG.md +12 -0
- package/ocean.css +76 -47
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.37.1](https://github.com/ocean-ds/ocean-web/compare/v1.37.0...v1.37.1) (2022-10-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- component link with icons ([#1032](https://github.com/ocean-ds/ocean-web/issues/1032)) ([5ea2bbb](https://github.com/ocean-ds/ocean-web/commit/5ea2bbbc32482a0e0c8224bbdcd2decb30aa6517))
|
|
11
|
+
|
|
12
|
+
# [1.37.0](https://github.com/ocean-ds/ocean-web/compare/v1.36.3...v1.37.0) (2022-10-20)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- dateclass ([#1030](https://github.com/ocean-ds/ocean-web/issues/1030)) ([6302611](https://github.com/ocean-ds/ocean-web/commit/63026116df2678e41d4ad03e08081641eefa4d70))
|
|
17
|
+
|
|
6
18
|
## [1.36.2](https://github.com/ocean-ds/ocean-web/compare/v1.36.1...v1.36.2) (2022-10-11)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @useblu/ocean-core
|
package/ocean.css
CHANGED
|
@@ -2328,7 +2328,6 @@
|
|
|
2328
2328
|
align-items: center;
|
|
2329
2329
|
display: flex;
|
|
2330
2330
|
flex-direction: row;
|
|
2331
|
-
justify-content: center;
|
|
2332
2331
|
}
|
|
2333
2332
|
.ods-link svg {
|
|
2334
2333
|
margin-left: 4px;
|
|
@@ -3285,7 +3284,7 @@
|
|
|
3285
3284
|
color: #0025e0;
|
|
3286
3285
|
}
|
|
3287
3286
|
|
|
3288
|
-
.ods-
|
|
3287
|
+
.ods-date-background {
|
|
3289
3288
|
background: transparent;
|
|
3290
3289
|
bottom: 0;
|
|
3291
3290
|
content: " ";
|
|
@@ -3295,7 +3294,7 @@
|
|
|
3295
3294
|
top: 0;
|
|
3296
3295
|
}
|
|
3297
3296
|
|
|
3298
|
-
.ods-
|
|
3297
|
+
.ods-date {
|
|
3299
3298
|
display: flex;
|
|
3300
3299
|
position: relative;
|
|
3301
3300
|
-webkit-user-select: none;
|
|
@@ -3304,22 +3303,25 @@
|
|
|
3304
3303
|
user-select: none;
|
|
3305
3304
|
width: 100%;
|
|
3306
3305
|
}
|
|
3307
|
-
.ods-
|
|
3308
|
-
.ods-
|
|
3309
|
-
.ods-
|
|
3306
|
+
.ods-date:active, .ods-date:focus,
|
|
3307
|
+
.ods-date *:active,
|
|
3308
|
+
.ods-date *:focus {
|
|
3310
3309
|
outline: none;
|
|
3311
3310
|
}
|
|
3312
|
-
.ods-
|
|
3311
|
+
.ods-date__form-row {
|
|
3313
3312
|
display: grid;
|
|
3314
3313
|
gap: 8px;
|
|
3315
3314
|
grid-template-columns: repeat(2, 1fr);
|
|
3316
3315
|
width: 100%;
|
|
3317
3316
|
}
|
|
3318
|
-
.ods-
|
|
3317
|
+
.ods-date__form-row-datepicker {
|
|
3318
|
+
width: 100%;
|
|
3319
|
+
}
|
|
3320
|
+
.ods-date__form-controls {
|
|
3319
3321
|
cursor: pointer;
|
|
3320
3322
|
margin: 0;
|
|
3321
3323
|
}
|
|
3322
|
-
.ods-
|
|
3324
|
+
.ods-date__form-controls > label {
|
|
3323
3325
|
color: #67697a;
|
|
3324
3326
|
font-family: "Nunito Sans";
|
|
3325
3327
|
font-size: 14px;
|
|
@@ -3329,17 +3331,17 @@
|
|
|
3329
3331
|
padding: 0;
|
|
3330
3332
|
text-transform: none;
|
|
3331
3333
|
}
|
|
3332
|
-
.ods-
|
|
3334
|
+
.ods-date__form-controls input {
|
|
3333
3335
|
caret-color: #0025e0;
|
|
3334
3336
|
cursor: pointer;
|
|
3335
3337
|
}
|
|
3336
|
-
.ods-
|
|
3338
|
+
.ods-date__form-controls .date-field-focussed {
|
|
3337
3339
|
border-color: #5872f5;
|
|
3338
3340
|
border-width: 2px;
|
|
3339
3341
|
margin: 0;
|
|
3340
3342
|
}
|
|
3341
3343
|
@media (max-width: 321px) {
|
|
3342
|
-
.ods-
|
|
3344
|
+
.ods-date__form-row {
|
|
3343
3345
|
display: grid;
|
|
3344
3346
|
gap: 8px;
|
|
3345
3347
|
grid-template-columns: 1fr;
|
|
@@ -3347,7 +3349,7 @@
|
|
|
3347
3349
|
width: 100%;
|
|
3348
3350
|
}
|
|
3349
3351
|
}
|
|
3350
|
-
.ods-
|
|
3352
|
+
.ods-date__calendar {
|
|
3351
3353
|
background-color: white;
|
|
3352
3354
|
border: 1px solid #ebecf5;
|
|
3353
3355
|
border-radius: 8px;
|
|
@@ -3358,21 +3360,21 @@
|
|
|
3358
3360
|
position: absolute;
|
|
3359
3361
|
width: 100%;
|
|
3360
3362
|
}
|
|
3361
|
-
.ods-
|
|
3363
|
+
.ods-date__calendar .rdp-vhidden {
|
|
3362
3364
|
display: none;
|
|
3363
3365
|
}
|
|
3364
|
-
.ods-
|
|
3366
|
+
.ods-date_calendar_m1 {
|
|
3365
3367
|
top: 72px;
|
|
3366
3368
|
}
|
|
3367
|
-
.ods-
|
|
3369
|
+
.ods-date_calendar_m2 {
|
|
3368
3370
|
top: 72px;
|
|
3369
3371
|
}
|
|
3370
3372
|
@media (max-width: 321px) {
|
|
3371
|
-
.ods-
|
|
3373
|
+
.ods-date_calendar_m2 {
|
|
3372
3374
|
top: 150px;
|
|
3373
3375
|
}
|
|
3374
3376
|
}
|
|
3375
|
-
.ods-
|
|
3377
|
+
.ods-date__caption {
|
|
3376
3378
|
align-items: center;
|
|
3377
3379
|
color: #393b47;
|
|
3378
3380
|
display: flex;
|
|
@@ -3381,7 +3383,7 @@
|
|
|
3381
3383
|
margin: 16px 8px;
|
|
3382
3384
|
position: relative;
|
|
3383
3385
|
}
|
|
3384
|
-
.ods-
|
|
3386
|
+
.ods-date__caption h2 {
|
|
3385
3387
|
font-family: "Avenir";
|
|
3386
3388
|
font-size: 16px;
|
|
3387
3389
|
font-weight: 700;
|
|
@@ -3390,7 +3392,7 @@
|
|
|
3390
3392
|
text-align: center;
|
|
3391
3393
|
text-transform: capitalize;
|
|
3392
3394
|
}
|
|
3393
|
-
.ods-
|
|
3395
|
+
.ods-date__navButtons {
|
|
3394
3396
|
background-color: transparent;
|
|
3395
3397
|
border: 0;
|
|
3396
3398
|
color: #0025e0;
|
|
@@ -3401,38 +3403,44 @@
|
|
|
3401
3403
|
position: absolute;
|
|
3402
3404
|
top: 0;
|
|
3403
3405
|
}
|
|
3404
|
-
.ods-
|
|
3406
|
+
.ods-date__navButtons:hover {
|
|
3405
3407
|
background: #f7f9ff;
|
|
3406
3408
|
}
|
|
3407
|
-
.ods-
|
|
3409
|
+
.ods-date__navButtonPrev {
|
|
3408
3410
|
left: 17px;
|
|
3409
3411
|
}
|
|
3410
3412
|
@media (max-width: 321px) {
|
|
3411
|
-
.ods-
|
|
3413
|
+
.ods-date__navButtonPrev {
|
|
3412
3414
|
left: 0;
|
|
3413
3415
|
}
|
|
3414
3416
|
}
|
|
3415
|
-
.ods-datepicker
|
|
3417
|
+
.ods-date__navButtonPrev-datepicker {
|
|
3418
|
+
left: 0;
|
|
3419
|
+
}
|
|
3420
|
+
.ods-date__navButtonNext {
|
|
3416
3421
|
right: 17px;
|
|
3417
3422
|
}
|
|
3418
3423
|
@media (max-width: 321px) {
|
|
3419
|
-
.ods-
|
|
3424
|
+
.ods-date__navButtonNext {
|
|
3420
3425
|
right: 0;
|
|
3421
3426
|
}
|
|
3422
3427
|
}
|
|
3423
|
-
.ods-datepicker
|
|
3428
|
+
.ods-date__navButtonNext-datepicker {
|
|
3429
|
+
right: 0;
|
|
3430
|
+
}
|
|
3431
|
+
.ods-date__navIcon {
|
|
3424
3432
|
box-sizing: border-box;
|
|
3425
3433
|
width: 12px;
|
|
3426
3434
|
}
|
|
3427
|
-
.ods-
|
|
3435
|
+
.ods-date__table {
|
|
3428
3436
|
display: flex;
|
|
3429
3437
|
flex-direction: column;
|
|
3430
3438
|
}
|
|
3431
|
-
.ods-
|
|
3439
|
+
.ods-date__head {
|
|
3432
3440
|
margin-bottom: 8px;
|
|
3433
3441
|
padding: 0 8px;
|
|
3434
3442
|
}
|
|
3435
|
-
.ods-
|
|
3443
|
+
.ods-date__headRow {
|
|
3436
3444
|
color: #b6b9cc;
|
|
3437
3445
|
display: grid;
|
|
3438
3446
|
font-family: "Nunito Sans";
|
|
@@ -3441,18 +3449,18 @@
|
|
|
3441
3449
|
grid-template-columns: repeat(7, 1fr);
|
|
3442
3450
|
text-transform: capitalize;
|
|
3443
3451
|
}
|
|
3444
|
-
.ods-
|
|
3452
|
+
.ods-date__body {
|
|
3445
3453
|
padding: 0 8px;
|
|
3446
3454
|
}
|
|
3447
|
-
.ods-
|
|
3455
|
+
.ods-date__row {
|
|
3448
3456
|
display: grid;
|
|
3449
3457
|
grid-template-columns: repeat(7, 1fr);
|
|
3450
3458
|
}
|
|
3451
|
-
.ods-
|
|
3459
|
+
.ods-date .rdp-head_cell {
|
|
3452
3460
|
border: 0;
|
|
3453
3461
|
text-align: center;
|
|
3454
3462
|
}
|
|
3455
|
-
.ods-
|
|
3463
|
+
.ods-date__cell {
|
|
3456
3464
|
border: 0;
|
|
3457
3465
|
display: flex;
|
|
3458
3466
|
height: 40px;
|
|
@@ -3463,16 +3471,16 @@
|
|
|
3463
3471
|
text-align: center;
|
|
3464
3472
|
width: 100%;
|
|
3465
3473
|
}
|
|
3466
|
-
.ods-
|
|
3474
|
+
.ods-date__cell .ods-date__selectedStart {
|
|
3467
3475
|
background: linear-gradient(to left, rgba(176, 245, 245, 0.24) 50%, white 50%);
|
|
3468
3476
|
}
|
|
3469
|
-
.ods-
|
|
3477
|
+
.ods-date__cell .ods-date__selectedEnd {
|
|
3470
3478
|
background: linear-gradient(to right, rgba(176, 245, 245, 0.24) 50%, white 50%);
|
|
3471
3479
|
}
|
|
3472
|
-
.ods-
|
|
3480
|
+
.ods-date__selectedStart.ods-date__selectedEnd {
|
|
3473
3481
|
background: transparent;
|
|
3474
3482
|
}
|
|
3475
|
-
.ods-
|
|
3483
|
+
.ods-date__day {
|
|
3476
3484
|
align-items: center;
|
|
3477
3485
|
background-color: transparent;
|
|
3478
3486
|
border: 0;
|
|
@@ -3489,7 +3497,7 @@
|
|
|
3489
3497
|
text-align: center;
|
|
3490
3498
|
width: 100%;
|
|
3491
3499
|
}
|
|
3492
|
-
.ods-
|
|
3500
|
+
.ods-date__day:hover::after {
|
|
3493
3501
|
align-items: center;
|
|
3494
3502
|
border: 1px solid #b6b9cc;
|
|
3495
3503
|
border-radius: 20px;
|
|
@@ -3505,17 +3513,17 @@
|
|
|
3505
3513
|
width: 40px;
|
|
3506
3514
|
z-index: 1;
|
|
3507
3515
|
}
|
|
3508
|
-
.ods-
|
|
3516
|
+
.ods-date__today {
|
|
3509
3517
|
color: #0025e0;
|
|
3510
3518
|
}
|
|
3511
|
-
.ods-
|
|
3519
|
+
.ods-date__disabled {
|
|
3512
3520
|
color: #d8dae8;
|
|
3513
3521
|
}
|
|
3514
|
-
.ods-
|
|
3522
|
+
.ods-date__selected {
|
|
3515
3523
|
background-color: rgba(176, 245, 245, 0.24);
|
|
3516
3524
|
position: relative;
|
|
3517
3525
|
}
|
|
3518
|
-
.ods-
|
|
3526
|
+
.ods-date__selected:hover::after {
|
|
3519
3527
|
align-items: center;
|
|
3520
3528
|
border: 1px solid #b6b9cc;
|
|
3521
3529
|
border-radius: 20px;
|
|
@@ -3530,12 +3538,33 @@
|
|
|
3530
3538
|
width: 40px;
|
|
3531
3539
|
z-index: 1;
|
|
3532
3540
|
}
|
|
3533
|
-
.ods-datepicker
|
|
3541
|
+
.ods-date__selected-datepicker {
|
|
3542
|
+
background: transparent;
|
|
3543
|
+
color: white;
|
|
3544
|
+
position: relative;
|
|
3545
|
+
z-index: 1;
|
|
3546
|
+
}
|
|
3547
|
+
.ods-date__selected-datepicker ::after {
|
|
3548
|
+
align-items: center;
|
|
3549
|
+
background-color: #13bdbd;
|
|
3550
|
+
border-radius: 20px;
|
|
3551
|
+
content: "";
|
|
3552
|
+
display: flex;
|
|
3553
|
+
height: 40px;
|
|
3554
|
+
justify-content: center;
|
|
3555
|
+
left: 50%;
|
|
3556
|
+
position: absolute;
|
|
3557
|
+
top: 50%;
|
|
3558
|
+
transform: translate(-50%, -50%);
|
|
3559
|
+
width: 40px;
|
|
3560
|
+
z-index: -1;
|
|
3561
|
+
}
|
|
3562
|
+
.ods-date__selectedStart {
|
|
3534
3563
|
color: white;
|
|
3535
3564
|
position: relative;
|
|
3536
3565
|
z-index: 1;
|
|
3537
3566
|
}
|
|
3538
|
-
.ods-
|
|
3567
|
+
.ods-date__selectedStart ::after {
|
|
3539
3568
|
align-items: center;
|
|
3540
3569
|
background-color: #13bdbd;
|
|
3541
3570
|
border-radius: 20px;
|
|
@@ -3550,12 +3579,12 @@
|
|
|
3550
3579
|
width: 40px;
|
|
3551
3580
|
z-index: -1;
|
|
3552
3581
|
}
|
|
3553
|
-
.ods-
|
|
3582
|
+
.ods-date__selectedEnd {
|
|
3554
3583
|
color: white;
|
|
3555
3584
|
position: relative;
|
|
3556
3585
|
z-index: 1;
|
|
3557
3586
|
}
|
|
3558
|
-
.ods-
|
|
3587
|
+
.ods-date__selectedEnd ::after {
|
|
3559
3588
|
align-items: center;
|
|
3560
3589
|
background-color: #13bdbd;
|
|
3561
3590
|
border-radius: 20px;
|
|
@@ -3570,7 +3599,7 @@
|
|
|
3570
3599
|
width: 40px;
|
|
3571
3600
|
z-index: -1;
|
|
3572
3601
|
}
|
|
3573
|
-
.ods-
|
|
3602
|
+
.ods-date__selectedMiddle {
|
|
3574
3603
|
background-color: rgba(176, 245, 245, 0.24);
|
|
3575
3604
|
}
|
|
3576
3605
|
/*# sourceMappingURL=ocean.css.map */
|