@useblu/ocean-core 1.62.2 → 1.63.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 +80 -56
- 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.63.1](https://github.com/ocean-ds/ocean-web/compare/v1.63.0...v1.63.1) (2024-06-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- adjust breadcrumb and typography ([#1110](https://github.com/ocean-ds/ocean-web/issues/1110)) ([75860e4](https://github.com/ocean-ds/ocean-web/commit/75860e4bc7ea0cb8bdead4fbe7f776ad5244d54b))
|
|
11
|
+
|
|
12
|
+
# [1.63.0](https://github.com/ocean-ds/ocean-web/compare/v1.62.2...v1.63.0) (2024-06-20)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- update typography ([#1109](https://github.com/ocean-ds/ocean-web/issues/1109)) ([aed315b](https://github.com/ocean-ds/ocean-web/commit/aed315be06fc0188481a278a5996be6d44d3bb90))
|
|
17
|
+
|
|
6
18
|
## [1.62.2](https://github.com/ocean-ds/ocean-web/compare/v1.62.1...v1.62.2) (2024-06-18)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @useblu/ocean-core
|
package/ocean.css
CHANGED
|
@@ -1093,7 +1093,7 @@
|
|
|
1093
1093
|
font-family: "Nunito Sans";
|
|
1094
1094
|
font-size: 14px;
|
|
1095
1095
|
font-weight: 400;
|
|
1096
|
-
line-height: 1.
|
|
1096
|
+
line-height: 1.24;
|
|
1097
1097
|
margin-bottom: 8px;
|
|
1098
1098
|
}
|
|
1099
1099
|
.ods-form-label--disabled {
|
|
@@ -1324,21 +1324,21 @@
|
|
|
1324
1324
|
align-items: center;
|
|
1325
1325
|
background-color: white;
|
|
1326
1326
|
border: 1px solid #ced1e1;
|
|
1327
|
-
border-radius:
|
|
1327
|
+
border-radius: 8px;
|
|
1328
1328
|
box-sizing: border-box;
|
|
1329
1329
|
display: flex;
|
|
1330
1330
|
height: 48px;
|
|
1331
1331
|
}
|
|
1332
1332
|
.ods-input input {
|
|
1333
1333
|
border: 1px solid transparent;
|
|
1334
|
-
border-radius:
|
|
1334
|
+
border-radius: 8px;
|
|
1335
1335
|
box-sizing: border-box;
|
|
1336
1336
|
color: #393b47;
|
|
1337
1337
|
font-family: "Nunito Sans";
|
|
1338
1338
|
font-size: 16px;
|
|
1339
1339
|
font-weight: 400;
|
|
1340
1340
|
height: 100%;
|
|
1341
|
-
line-height: 1.
|
|
1341
|
+
line-height: 1.24;
|
|
1342
1342
|
outline: none;
|
|
1343
1343
|
padding: 0 16px;
|
|
1344
1344
|
width: 100%;
|
|
@@ -1438,13 +1438,13 @@
|
|
|
1438
1438
|
.ods-textarea {
|
|
1439
1439
|
background-color: white;
|
|
1440
1440
|
border: 1px solid #ced1e1;
|
|
1441
|
-
border-radius:
|
|
1441
|
+
border-radius: 8px;
|
|
1442
1442
|
box-sizing: border-box;
|
|
1443
1443
|
color: #393b47;
|
|
1444
1444
|
font-family: "Nunito Sans";
|
|
1445
1445
|
font-size: 16px;
|
|
1446
1446
|
font-weight: 400;
|
|
1447
|
-
line-height: 1.
|
|
1447
|
+
line-height: 1.24;
|
|
1448
1448
|
outline: none;
|
|
1449
1449
|
padding: 16px;
|
|
1450
1450
|
resize: none;
|
|
@@ -1502,7 +1502,7 @@
|
|
|
1502
1502
|
.ods-checkbox__checkmark {
|
|
1503
1503
|
background-color: white;
|
|
1504
1504
|
border: solid 1px #aaadc0;
|
|
1505
|
-
border-radius:
|
|
1505
|
+
border-radius: 8px;
|
|
1506
1506
|
box-sizing: border-box;
|
|
1507
1507
|
cursor: pointer;
|
|
1508
1508
|
height: 20px;
|
|
@@ -1626,7 +1626,7 @@
|
|
|
1626
1626
|
.ods-switch__slider {
|
|
1627
1627
|
background-color: white;
|
|
1628
1628
|
border: solid 1px #aaadc0;
|
|
1629
|
-
border-radius:
|
|
1629
|
+
border-radius: 56px;
|
|
1630
1630
|
bottom: 0;
|
|
1631
1631
|
box-sizing: border-box;
|
|
1632
1632
|
cursor: pointer;
|
|
@@ -1677,7 +1677,7 @@
|
|
|
1677
1677
|
align-items: center;
|
|
1678
1678
|
background-color: white;
|
|
1679
1679
|
border: solid 1px #ced1e1;
|
|
1680
|
-
border-radius:
|
|
1680
|
+
border-radius: 8px;
|
|
1681
1681
|
color: #393b47;
|
|
1682
1682
|
cursor: pointer;
|
|
1683
1683
|
display: flex;
|
|
@@ -1740,7 +1740,7 @@
|
|
|
1740
1740
|
.ods-select__listbox {
|
|
1741
1741
|
background-color: white;
|
|
1742
1742
|
border: solid 1px #ced1e1;
|
|
1743
|
-
border-radius:
|
|
1743
|
+
border-radius: 8px;
|
|
1744
1744
|
box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
|
|
1745
1745
|
list-style: none;
|
|
1746
1746
|
margin: 0;
|
|
@@ -1764,7 +1764,7 @@
|
|
|
1764
1764
|
font-size: 14px;
|
|
1765
1765
|
font-weight: 400;
|
|
1766
1766
|
height: 40px;
|
|
1767
|
-
line-height: 1.
|
|
1767
|
+
line-height: 1.24;
|
|
1768
1768
|
list-style: none;
|
|
1769
1769
|
margin: 0;
|
|
1770
1770
|
min-width: 0;
|
|
@@ -1788,7 +1788,7 @@
|
|
|
1788
1788
|
.ods-alert {
|
|
1789
1789
|
align-items: flex-start;
|
|
1790
1790
|
background-color: #f3f5fe;
|
|
1791
|
-
border-radius:
|
|
1791
|
+
border-radius: 12px;
|
|
1792
1792
|
color: #67697a;
|
|
1793
1793
|
display: flex;
|
|
1794
1794
|
flex-direction: column;
|
|
@@ -1952,7 +1952,7 @@
|
|
|
1952
1952
|
|
|
1953
1953
|
.ods-btn {
|
|
1954
1954
|
border: 0;
|
|
1955
|
-
border-radius:
|
|
1955
|
+
border-radius: 56px;
|
|
1956
1956
|
cursor: pointer;
|
|
1957
1957
|
font-family: "Nunito Sans";
|
|
1958
1958
|
font-weight: 700;
|
|
@@ -2821,20 +2821,20 @@
|
|
|
2821
2821
|
align-items: center;
|
|
2822
2822
|
background-color: white;
|
|
2823
2823
|
border: 1px solid #ced1e1;
|
|
2824
|
-
border-radius:
|
|
2824
|
+
border-radius: 8px;
|
|
2825
2825
|
display: flex;
|
|
2826
2826
|
height: 46px;
|
|
2827
2827
|
width: 100%;
|
|
2828
2828
|
}
|
|
2829
2829
|
.ods-search input {
|
|
2830
2830
|
border: 0;
|
|
2831
|
-
border-radius:
|
|
2831
|
+
border-radius: 8px;
|
|
2832
2832
|
box-sizing: border-box;
|
|
2833
2833
|
color: #393b47;
|
|
2834
2834
|
font-size: 16px;
|
|
2835
2835
|
font-weight: 400;
|
|
2836
2836
|
height: 100%;
|
|
2837
|
-
line-height: 1.
|
|
2837
|
+
line-height: 1.24;
|
|
2838
2838
|
outline: none;
|
|
2839
2839
|
padding: 0 8px;
|
|
2840
2840
|
width: 100%;
|
|
@@ -2994,57 +2994,53 @@
|
|
|
2994
2994
|
margin: 0;
|
|
2995
2995
|
}
|
|
2996
2996
|
.ods-typography__heading1 {
|
|
2997
|
-
color: #
|
|
2998
|
-
font-family: "
|
|
2997
|
+
color: #393b47;
|
|
2998
|
+
font-family: "Nunito Sans";
|
|
2999
2999
|
font-weight: 800;
|
|
3000
|
-
line-height: 1.1;
|
|
3001
3000
|
font-size: 32px;
|
|
3001
|
+
line-height: 1.24;
|
|
3002
3002
|
}
|
|
3003
3003
|
.ods-typography__heading2 {
|
|
3004
|
-
color: #
|
|
3005
|
-
font-family: "
|
|
3004
|
+
color: #393b47;
|
|
3005
|
+
font-family: "Nunito Sans";
|
|
3006
3006
|
font-weight: 800;
|
|
3007
|
-
line-height: 1.1;
|
|
3008
3007
|
font-size: 24px;
|
|
3008
|
+
line-height: 1.24;
|
|
3009
3009
|
}
|
|
3010
3010
|
.ods-typography__heading3 {
|
|
3011
|
-
color: #
|
|
3012
|
-
font-family: "
|
|
3011
|
+
color: #393b47;
|
|
3012
|
+
font-family: "Nunito Sans";
|
|
3013
3013
|
font-weight: 800;
|
|
3014
|
-
line-height: 1.1;
|
|
3015
3014
|
font-size: 20px;
|
|
3015
|
+
line-height: 1.24;
|
|
3016
3016
|
}
|
|
3017
3017
|
.ods-typography__heading4 {
|
|
3018
|
-
color: #
|
|
3019
|
-
font-family: "
|
|
3018
|
+
color: #393b47;
|
|
3019
|
+
font-family: "Nunito Sans";
|
|
3020
3020
|
font-weight: 800;
|
|
3021
|
-
line-height: 1.1;
|
|
3022
3021
|
font-size: 16px;
|
|
3023
|
-
|
|
3024
|
-
line-height: 1.1;
|
|
3022
|
+
line-height: 1.32;
|
|
3025
3023
|
}
|
|
3026
3024
|
.ods-typography__heading5 {
|
|
3027
|
-
color: #
|
|
3028
|
-
font-family: "
|
|
3025
|
+
color: #393b47;
|
|
3026
|
+
font-family: "Nunito Sans";
|
|
3029
3027
|
font-weight: 800;
|
|
3030
|
-
line-height: 1.1;
|
|
3031
3028
|
font-size: 14px;
|
|
3032
|
-
|
|
3033
|
-
line-height: 1.1;
|
|
3029
|
+
line-height: 1.32;
|
|
3034
3030
|
}
|
|
3035
3031
|
.ods-typography__subtitle1 {
|
|
3036
3032
|
color: #67697a;
|
|
3037
3033
|
font-family: "Nunito Sans";
|
|
3038
3034
|
font-weight: 400;
|
|
3039
|
-
line-height: 1.
|
|
3040
|
-
font-size:
|
|
3035
|
+
line-height: 1.32;
|
|
3036
|
+
font-size: 20px;
|
|
3041
3037
|
}
|
|
3042
3038
|
.ods-typography__subtitle2 {
|
|
3043
3039
|
color: #67697a;
|
|
3044
3040
|
font-family: "Nunito Sans";
|
|
3045
3041
|
font-weight: 400;
|
|
3046
|
-
line-height: 1.
|
|
3047
|
-
font-size:
|
|
3042
|
+
line-height: 1.32;
|
|
3043
|
+
font-size: 16px;
|
|
3048
3044
|
}
|
|
3049
3045
|
.ods-typography__paragraph {
|
|
3050
3046
|
color: #67697a;
|
|
@@ -3058,6 +3054,7 @@
|
|
|
3058
3054
|
font-family: "Nunito Sans";
|
|
3059
3055
|
font-size: 20px;
|
|
3060
3056
|
font-weight: 700;
|
|
3057
|
+
line-height: 1.5;
|
|
3061
3058
|
}
|
|
3062
3059
|
.ods-typography__description {
|
|
3063
3060
|
color: #67697a;
|
|
@@ -3067,12 +3064,28 @@
|
|
|
3067
3064
|
font-size: 14px;
|
|
3068
3065
|
}
|
|
3069
3066
|
.ods-typography__caption {
|
|
3067
|
+
color: #67697a;
|
|
3068
|
+
font-family: "Nunito Sans";
|
|
3069
|
+
font-weight: 400;
|
|
3070
|
+
line-height: 1.5;
|
|
3071
|
+
font-size: 12px;
|
|
3072
|
+
}
|
|
3073
|
+
.ods-typography__captionbold {
|
|
3070
3074
|
color: #67697a;
|
|
3071
3075
|
font-family: "Nunito Sans";
|
|
3072
3076
|
font-size: 12px;
|
|
3073
3077
|
font-weight: 600;
|
|
3074
3078
|
line-height: 1.5;
|
|
3075
3079
|
}
|
|
3080
|
+
.ods-typography__eyebrow {
|
|
3081
|
+
color: #67697a;
|
|
3082
|
+
font-family: "Nunito Sans";
|
|
3083
|
+
font-size: 12px;
|
|
3084
|
+
font-weight: 700;
|
|
3085
|
+
letter-spacing: 1.8px;
|
|
3086
|
+
line-height: 1.5;
|
|
3087
|
+
text-transform: uppercase;
|
|
3088
|
+
}
|
|
3076
3089
|
.ods-typography--inverse {
|
|
3077
3090
|
color: white;
|
|
3078
3091
|
}
|
|
@@ -3337,7 +3350,7 @@
|
|
|
3337
3350
|
}
|
|
3338
3351
|
.ods-topbar-title {
|
|
3339
3352
|
font-weight: 800;
|
|
3340
|
-
line-height: 1.
|
|
3353
|
+
line-height: 1.24;
|
|
3341
3354
|
margin-left: 16px;
|
|
3342
3355
|
margin-right: 16px;
|
|
3343
3356
|
width: 100%;
|
|
@@ -3361,7 +3374,7 @@
|
|
|
3361
3374
|
}
|
|
3362
3375
|
|
|
3363
3376
|
.ods-cross-sell-card {
|
|
3364
|
-
border-radius:
|
|
3377
|
+
border-radius: 12px;
|
|
3365
3378
|
min-height: 156px;
|
|
3366
3379
|
width: 100%;
|
|
3367
3380
|
}
|
|
@@ -3370,7 +3383,7 @@
|
|
|
3370
3383
|
background-color: #0025e0;
|
|
3371
3384
|
border: 1px solid #e0e2ee;
|
|
3372
3385
|
border-bottom: 0;
|
|
3373
|
-
border-radius:
|
|
3386
|
+
border-radius: 12px 12px 0 0;
|
|
3374
3387
|
display: flex;
|
|
3375
3388
|
gap: 16px;
|
|
3376
3389
|
justify-content: center;
|
|
@@ -3385,13 +3398,12 @@
|
|
|
3385
3398
|
min-width: 80px;
|
|
3386
3399
|
}
|
|
3387
3400
|
.ods-cross-sell-card__title {
|
|
3388
|
-
color: #
|
|
3389
|
-
font-family: "
|
|
3401
|
+
color: #393b47;
|
|
3402
|
+
font-family: "Nunito Sans";
|
|
3390
3403
|
font-weight: 800;
|
|
3391
|
-
line-height: 1.1;
|
|
3392
3404
|
color: white;
|
|
3393
3405
|
font-size: 20px;
|
|
3394
|
-
line-height: 1.
|
|
3406
|
+
line-height: 1.24;
|
|
3395
3407
|
}
|
|
3396
3408
|
@media (max-width: 767.98px) {
|
|
3397
3409
|
.ods-cross-sell-card__title {
|
|
@@ -3419,7 +3431,7 @@
|
|
|
3419
3431
|
align-items: center;
|
|
3420
3432
|
background: white;
|
|
3421
3433
|
border: 1px solid #e0e2ee;
|
|
3422
|
-
border-radius: 0 0
|
|
3434
|
+
border-radius: 0 0 12px 12px;
|
|
3423
3435
|
border-top: 0;
|
|
3424
3436
|
color: #0025e0;
|
|
3425
3437
|
display: flex;
|
|
@@ -3515,7 +3527,7 @@
|
|
|
3515
3527
|
.ods-date__calendar {
|
|
3516
3528
|
background-color: white;
|
|
3517
3529
|
border: 1px solid #e0e2ee;
|
|
3518
|
-
border-radius:
|
|
3530
|
+
border-radius: 12px;
|
|
3519
3531
|
box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
|
|
3520
3532
|
box-sizing: border-box;
|
|
3521
3533
|
margin: 0;
|
|
@@ -3805,7 +3817,7 @@
|
|
|
3805
3817
|
font-family: "Nunito Sans";
|
|
3806
3818
|
font-size: 20px;
|
|
3807
3819
|
font-weight: 600;
|
|
3808
|
-
line-height: 1.
|
|
3820
|
+
line-height: 1.24;
|
|
3809
3821
|
text-align: center;
|
|
3810
3822
|
}
|
|
3811
3823
|
.ods-chart__canvas__center-legend .ods-typography__description {
|
|
@@ -3842,7 +3854,7 @@
|
|
|
3842
3854
|
justify-content: center;
|
|
3843
3855
|
}
|
|
3844
3856
|
.ods-chart__legend__row__description-circle {
|
|
3845
|
-
border-radius:
|
|
3857
|
+
border-radius: 12px;
|
|
3846
3858
|
height: 8px;
|
|
3847
3859
|
margin-right: 8px;
|
|
3848
3860
|
width: 8px;
|
|
@@ -3865,9 +3877,16 @@
|
|
|
3865
3877
|
.ods-breadcrumb {
|
|
3866
3878
|
align-items: center;
|
|
3867
3879
|
display: flex;
|
|
3880
|
+
font-family: "Nunito Sans";
|
|
3881
|
+
font-size: 12px;
|
|
3868
3882
|
gap: 4px;
|
|
3869
3883
|
padding: 6px 0;
|
|
3870
3884
|
}
|
|
3885
|
+
@media (max-width: 576px) {
|
|
3886
|
+
.ods-breadcrumb {
|
|
3887
|
+
padding: 10px 0;
|
|
3888
|
+
}
|
|
3889
|
+
}
|
|
3871
3890
|
.ods-breadcrumb svg {
|
|
3872
3891
|
color: #aaadc0;
|
|
3873
3892
|
}
|
|
@@ -3880,10 +3899,15 @@
|
|
|
3880
3899
|
background: none;
|
|
3881
3900
|
border: transparent;
|
|
3882
3901
|
outline: 1px solid transparent;
|
|
3902
|
+
padding: 0;
|
|
3903
|
+
}
|
|
3904
|
+
.ods-breadcrumb button svg {
|
|
3905
|
+
color: #67697a;
|
|
3883
3906
|
}
|
|
3884
3907
|
.ods-breadcrumb span,
|
|
3885
3908
|
.ods-breadcrumb button,
|
|
3886
3909
|
.ods-breadcrumb a {
|
|
3910
|
+
background-color: transparent;
|
|
3887
3911
|
color: #aaadc0;
|
|
3888
3912
|
font-family: "Nunito Sans";
|
|
3889
3913
|
font-size: 12px;
|
|
@@ -4004,7 +4028,7 @@
|
|
|
4004
4028
|
.ods-snackbar {
|
|
4005
4029
|
align-items: center;
|
|
4006
4030
|
background: #393b47;
|
|
4007
|
-
border-radius:
|
|
4031
|
+
border-radius: 8px;
|
|
4008
4032
|
display: flex;
|
|
4009
4033
|
min-height: 56px;
|
|
4010
4034
|
position: fixed;
|
|
@@ -4302,7 +4326,7 @@
|
|
|
4302
4326
|
align-items: flex-start;
|
|
4303
4327
|
background-color: white;
|
|
4304
4328
|
border: 1px solid #e0e2ee;
|
|
4305
|
-
border-radius:
|
|
4329
|
+
border-radius: 12px;
|
|
4306
4330
|
box-sizing: border-box;
|
|
4307
4331
|
cursor: pointer;
|
|
4308
4332
|
display: flex;
|
|
@@ -4396,7 +4420,7 @@
|
|
|
4396
4420
|
.ods-card-list-item {
|
|
4397
4421
|
align-items: center;
|
|
4398
4422
|
border: 1px solid #e0e2ee;
|
|
4399
|
-
border-radius:
|
|
4423
|
+
border-radius: 12px;
|
|
4400
4424
|
box-sizing: border-box;
|
|
4401
4425
|
cursor: pointer;
|
|
4402
4426
|
display: flex;
|
|
@@ -4553,7 +4577,7 @@
|
|
|
4553
4577
|
.ods-chips__options {
|
|
4554
4578
|
background: white;
|
|
4555
4579
|
border: 1px solid #e0e2ee;
|
|
4556
|
-
border-radius:
|
|
4580
|
+
border-radius: 8px;
|
|
4557
4581
|
box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
|
|
4558
4582
|
display: flex;
|
|
4559
4583
|
flex-direction: column;
|
|
@@ -4605,13 +4629,13 @@
|
|
|
4605
4629
|
}
|
|
4606
4630
|
.ods-chips__options--option--selected {
|
|
4607
4631
|
background-color: #f3f5fe;
|
|
4608
|
-
border-radius:
|
|
4632
|
+
border-radius: 8px;
|
|
4609
4633
|
color: #0025e0;
|
|
4610
4634
|
font-weight: 700;
|
|
4611
4635
|
}
|
|
4612
4636
|
.ods-chips__options--option:hover {
|
|
4613
4637
|
background-color: #f3f5fe;
|
|
4614
|
-
border-radius:
|
|
4638
|
+
border-radius: 8px;
|
|
4615
4639
|
color: #0025e0;
|
|
4616
4640
|
}
|
|
4617
4641
|
.ods-chips__options--footer {
|