@useblu/ocean-core 1.63.0 → 1.64.0
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 +92 -21
- 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.64.0](https://github.com/ocean-ds/ocean-web/compare/v1.63.1...v1.64.0) (2024-06-26)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- update card list item component ([#1113](https://github.com/ocean-ds/ocean-web/issues/1113)) ([1c8cf3d](https://github.com/ocean-ds/ocean-web/commit/1c8cf3df19e2d0313d11a06975e845fcf23788a4))
|
|
11
|
+
|
|
12
|
+
## [1.63.1](https://github.com/ocean-ds/ocean-web/compare/v1.63.0...v1.63.1) (2024-06-20)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- adjust breadcrumb and typography ([#1110](https://github.com/ocean-ds/ocean-web/issues/1110)) ([75860e4](https://github.com/ocean-ds/ocean-web/commit/75860e4bc7ea0cb8bdead4fbe7f776ad5244d54b))
|
|
17
|
+
|
|
6
18
|
# [1.63.0](https://github.com/ocean-ds/ocean-web/compare/v1.62.2...v1.63.0) (2024-06-20)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3054,6 +3054,7 @@
|
|
|
3054
3054
|
font-family: "Nunito Sans";
|
|
3055
3055
|
font-size: 20px;
|
|
3056
3056
|
font-weight: 700;
|
|
3057
|
+
line-height: 1.5;
|
|
3057
3058
|
}
|
|
3058
3059
|
.ods-typography__description {
|
|
3059
3060
|
color: #67697a;
|
|
@@ -3070,7 +3071,7 @@
|
|
|
3070
3071
|
font-size: 12px;
|
|
3071
3072
|
}
|
|
3072
3073
|
.ods-typography__captionbold {
|
|
3073
|
-
color: #
|
|
3074
|
+
color: #67697a;
|
|
3074
3075
|
font-family: "Nunito Sans";
|
|
3075
3076
|
font-size: 12px;
|
|
3076
3077
|
font-weight: 600;
|
|
@@ -3081,7 +3082,7 @@
|
|
|
3081
3082
|
font-family: "Nunito Sans";
|
|
3082
3083
|
font-size: 12px;
|
|
3083
3084
|
font-weight: 700;
|
|
3084
|
-
letter-spacing:
|
|
3085
|
+
letter-spacing: 1.8px;
|
|
3085
3086
|
line-height: 1.5;
|
|
3086
3087
|
text-transform: uppercase;
|
|
3087
3088
|
}
|
|
@@ -3876,6 +3877,8 @@
|
|
|
3876
3877
|
.ods-breadcrumb {
|
|
3877
3878
|
align-items: center;
|
|
3878
3879
|
display: flex;
|
|
3880
|
+
font-family: "Nunito Sans";
|
|
3881
|
+
font-size: 12px;
|
|
3879
3882
|
gap: 4px;
|
|
3880
3883
|
padding: 6px 0;
|
|
3881
3884
|
}
|
|
@@ -3898,9 +3901,13 @@
|
|
|
3898
3901
|
outline: 1px solid transparent;
|
|
3899
3902
|
padding: 0;
|
|
3900
3903
|
}
|
|
3904
|
+
.ods-breadcrumb button svg {
|
|
3905
|
+
color: #67697a;
|
|
3906
|
+
}
|
|
3901
3907
|
.ods-breadcrumb span,
|
|
3902
3908
|
.ods-breadcrumb button,
|
|
3903
3909
|
.ods-breadcrumb a {
|
|
3910
|
+
background-color: transparent;
|
|
3904
3911
|
color: #aaadc0;
|
|
3905
3912
|
font-family: "Nunito Sans";
|
|
3906
3913
|
font-size: 12px;
|
|
@@ -4413,27 +4420,18 @@
|
|
|
4413
4420
|
.ods-card-list-item {
|
|
4414
4421
|
align-items: center;
|
|
4415
4422
|
border: 1px solid #e0e2ee;
|
|
4416
|
-
border-radius:
|
|
4423
|
+
border-radius: 8px;
|
|
4417
4424
|
box-sizing: border-box;
|
|
4418
4425
|
cursor: pointer;
|
|
4419
4426
|
display: flex;
|
|
4420
4427
|
flex-direction: row;
|
|
4421
|
-
gap:
|
|
4422
|
-
padding: 16px;
|
|
4428
|
+
gap: 12px;
|
|
4429
|
+
padding: 16px 12px 16px 16px;
|
|
4423
4430
|
transition: 200ms;
|
|
4424
4431
|
width: 320px;
|
|
4425
4432
|
}
|
|
4426
|
-
.ods-card-list-item__leading-icon {
|
|
4427
|
-
background-color: #f3f5fe;
|
|
4428
|
-
border-radius: 50%;
|
|
4429
|
-
box-sizing: content-box;
|
|
4430
|
-
color: #5872f5;
|
|
4431
|
-
height: 24px;
|
|
4432
|
-
padding: 8px;
|
|
4433
|
-
transition: 200ms;
|
|
4434
|
-
width: 24px;
|
|
4435
|
-
}
|
|
4436
4433
|
.ods-card-list-item__leading-icon svg {
|
|
4434
|
+
color: #5872f5;
|
|
4437
4435
|
height: 24px;
|
|
4438
4436
|
width: 24px;
|
|
4439
4437
|
}
|
|
@@ -4460,9 +4458,9 @@
|
|
|
4460
4458
|
color: #67697a;
|
|
4461
4459
|
font-family: "Nunito Sans";
|
|
4462
4460
|
font-size: 12px;
|
|
4463
|
-
font-weight:
|
|
4461
|
+
font-weight: 600;
|
|
4464
4462
|
line-height: 1.5;
|
|
4465
|
-
margin-top:
|
|
4463
|
+
margin-top: 8px;
|
|
4466
4464
|
}
|
|
4467
4465
|
.ods-card-list-item__action {
|
|
4468
4466
|
background-color: transparent;
|
|
@@ -4477,12 +4475,9 @@
|
|
|
4477
4475
|
height: 20px;
|
|
4478
4476
|
width: 20px;
|
|
4479
4477
|
}
|
|
4480
|
-
.ods-card-list-item:hover:not(.ods-card-list-item--disabled) {
|
|
4478
|
+
.ods-card-list-item:hover:not(.ods-card-list-item--disabled, .ods-card-list-item--loading) {
|
|
4481
4479
|
background-color: #f3f5fe;
|
|
4482
4480
|
}
|
|
4483
|
-
.ods-card-list-item:hover:not(.ods-card-list-item--disabled):not(.ods-card-list-item--size-small) .ods-card-list-item__leading-icon {
|
|
4484
|
-
background-color: rgba(184, 195, 255, 0.16);
|
|
4485
|
-
}
|
|
4486
4481
|
.ods-card-list-item--disabled {
|
|
4487
4482
|
cursor: not-allowed;
|
|
4488
4483
|
}
|
|
@@ -4505,10 +4500,86 @@
|
|
|
4505
4500
|
background-color: transparent;
|
|
4506
4501
|
padding: 0;
|
|
4507
4502
|
}
|
|
4503
|
+
.ods-card-list-item--size-small .ods-card-list-item__lines {
|
|
4504
|
+
margin-left: 0;
|
|
4505
|
+
}
|
|
4506
|
+
.ods-card-list-item--size-small .ods-card-list-item__circle {
|
|
4507
|
+
height: 20px;
|
|
4508
|
+
min-height: 20px;
|
|
4509
|
+
min-width: 20px;
|
|
4510
|
+
width: 20px;
|
|
4511
|
+
}
|
|
4512
|
+
.ods-card-list-item--size-small .ods-card-list-item__lines__line2 {
|
|
4513
|
+
width: 87px;
|
|
4514
|
+
}
|
|
4515
|
+
.ods-card-list-item--size-small .ods-card-list-item__lines__line2 {
|
|
4516
|
+
width: 260px;
|
|
4517
|
+
}
|
|
4508
4518
|
.ods-card-list-item--full-width {
|
|
4509
4519
|
width: 100%;
|
|
4510
4520
|
}
|
|
4521
|
+
.ods-card-list-item__circle {
|
|
4522
|
+
-webkit-animation: pulse 1.5s infinite ease-in-out;
|
|
4523
|
+
animation: pulse 1.5s infinite ease-in-out;
|
|
4524
|
+
background-color: #f3f5fe;
|
|
4525
|
+
border-radius: 50%;
|
|
4526
|
+
height: 40px;
|
|
4527
|
+
width: 40px;
|
|
4528
|
+
}
|
|
4529
|
+
.ods-card-list-item__lines {
|
|
4530
|
+
display: flex;
|
|
4531
|
+
flex-direction: column;
|
|
4532
|
+
gap: 8px;
|
|
4533
|
+
margin-left: 4px;
|
|
4534
|
+
}
|
|
4535
|
+
.ods-card-list-item__lines__line1 {
|
|
4536
|
+
-webkit-animation: pulse 1.5s infinite ease-in-out;
|
|
4537
|
+
animation: pulse 1.5s infinite ease-in-out;
|
|
4538
|
+
background-color: #f3f5fe;
|
|
4539
|
+
border-radius: 4px;
|
|
4540
|
+
height: 16px;
|
|
4541
|
+
width: 80px;
|
|
4542
|
+
}
|
|
4543
|
+
.ods-card-list-item__lines__line2 {
|
|
4544
|
+
-webkit-animation: pulse 1.5s infinite ease-in-out;
|
|
4545
|
+
animation: pulse 1.5s infinite ease-in-out;
|
|
4546
|
+
background-color: #f3f5fe;
|
|
4547
|
+
border-radius: 4px;
|
|
4548
|
+
height: 16px;
|
|
4549
|
+
width: 236px;
|
|
4550
|
+
}
|
|
4551
|
+
.ods-card-list-item__lines__line3 {
|
|
4552
|
+
-webkit-animation: pulse 1.5s infinite ease-in-out;
|
|
4553
|
+
animation: pulse 1.5s infinite ease-in-out;
|
|
4554
|
+
background-color: #f3f5fe;
|
|
4555
|
+
border-radius: 4px;
|
|
4556
|
+
height: 16px;
|
|
4557
|
+
width: 118px;
|
|
4558
|
+
}
|
|
4511
4559
|
|
|
4560
|
+
@-webkit-keyframes pulse {
|
|
4561
|
+
0% {
|
|
4562
|
+
opacity: 1;
|
|
4563
|
+
}
|
|
4564
|
+
50% {
|
|
4565
|
+
opacity: 0.5;
|
|
4566
|
+
}
|
|
4567
|
+
100% {
|
|
4568
|
+
opacity: 1;
|
|
4569
|
+
}
|
|
4570
|
+
}
|
|
4571
|
+
|
|
4572
|
+
@keyframes pulse {
|
|
4573
|
+
0% {
|
|
4574
|
+
opacity: 1;
|
|
4575
|
+
}
|
|
4576
|
+
50% {
|
|
4577
|
+
opacity: 0.5;
|
|
4578
|
+
}
|
|
4579
|
+
100% {
|
|
4580
|
+
opacity: 1;
|
|
4581
|
+
}
|
|
4582
|
+
}
|
|
4512
4583
|
.ods-chips {
|
|
4513
4584
|
display: inline-block;
|
|
4514
4585
|
position: relative;
|