@useblu/ocean-core 1.136.0 → 1.137.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 +13 -0
- package/ocean.css +129 -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,19 @@
|
|
|
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.137.1](https://github.com/ocean-ds/ocean-web/compare/v1.137.0...v1.137.1) (2026-09-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **core:** MR-748 hover das famílias de lista compõe com o fundo do container ([#1254](https://github.com/ocean-ds/ocean-web/issues/1254)) ([516eef0](https://github.com/ocean-ds/ocean-web/commit/516eef02ed0f1a89b1536520c9f01ab33b779ac0))
|
|
11
|
+
|
|
12
|
+
# [1.137.0](https://github.com/ocean-ds/ocean-web/compare/v1.136.0...v1.137.0) (2026-07-27)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add Banner component ([#1251](https://github.com/ocean-ds/ocean-web/issues/1251)) ([a4dfe36](https://github.com/ocean-ds/ocean-web/commit/a4dfe36148b75521725c2b837943f7d9b607c390))
|
|
17
|
+
- **list:** adiciona indicatorPosition nos componentes de lista ([#1253](https://github.com/ocean-ds/ocean-web/issues/1253)) ([e98be1d](https://github.com/ocean-ds/ocean-web/commit/e98be1d8b99faa3c1f3fe7d6d970e914bc8d979a))
|
|
18
|
+
|
|
6
19
|
# [1.136.0](https://github.com/ocean-ds/ocean-web/compare/v1.135.3...v1.136.0) (2026-05-11)
|
|
7
20
|
|
|
8
21
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2115,6 +2115,90 @@
|
|
|
2115
2115
|
padding-top: 0;
|
|
2116
2116
|
}
|
|
2117
2117
|
|
|
2118
|
+
.ods-banner {
|
|
2119
|
+
border-radius: 8px;
|
|
2120
|
+
font-family: "Nunito Sans";
|
|
2121
|
+
overflow: hidden;
|
|
2122
|
+
width: 100%;
|
|
2123
|
+
}
|
|
2124
|
+
.ods-banner--default {
|
|
2125
|
+
background-color: #f3f5fe;
|
|
2126
|
+
}
|
|
2127
|
+
.ods-banner--warning {
|
|
2128
|
+
background-color: #fff7f0;
|
|
2129
|
+
}
|
|
2130
|
+
.ods-banner--negative {
|
|
2131
|
+
background-color: #fff1f4;
|
|
2132
|
+
}
|
|
2133
|
+
.ods-banner--emphasys {
|
|
2134
|
+
background-color: #0025e0;
|
|
2135
|
+
}
|
|
2136
|
+
.ods-banner--emphasys .ods-banner__actions .ods-btn--tertiary {
|
|
2137
|
+
color: white;
|
|
2138
|
+
}
|
|
2139
|
+
.ods-banner--emphasys .ods-typography__description {
|
|
2140
|
+
color: #f3f5fe;
|
|
2141
|
+
}
|
|
2142
|
+
.ods-banner__image-wrapper--top {
|
|
2143
|
+
line-height: 0;
|
|
2144
|
+
width: 100%;
|
|
2145
|
+
}
|
|
2146
|
+
.ods-banner__image-wrapper--top .ods-banner__image {
|
|
2147
|
+
display: block;
|
|
2148
|
+
height: auto;
|
|
2149
|
+
-o-object-fit: cover;
|
|
2150
|
+
object-fit: cover;
|
|
2151
|
+
width: 100%;
|
|
2152
|
+
}
|
|
2153
|
+
.ods-banner__image-wrapper--side {
|
|
2154
|
+
flex-shrink: 0;
|
|
2155
|
+
width: 82px;
|
|
2156
|
+
}
|
|
2157
|
+
.ods-banner__image-wrapper--side .ods-banner__image {
|
|
2158
|
+
display: block;
|
|
2159
|
+
height: 100%;
|
|
2160
|
+
-o-object-fit: cover;
|
|
2161
|
+
object-fit: cover;
|
|
2162
|
+
width: 100%;
|
|
2163
|
+
}
|
|
2164
|
+
.ods-banner__body {
|
|
2165
|
+
align-items: stretch;
|
|
2166
|
+
display: flex;
|
|
2167
|
+
}
|
|
2168
|
+
.ods-banner__content {
|
|
2169
|
+
display: flex;
|
|
2170
|
+
flex: 1;
|
|
2171
|
+
flex-direction: column;
|
|
2172
|
+
padding: 16px;
|
|
2173
|
+
}
|
|
2174
|
+
.ods-banner .ods-typography__heading4 {
|
|
2175
|
+
font-weight: 700;
|
|
2176
|
+
line-height: 1.24;
|
|
2177
|
+
}
|
|
2178
|
+
.ods-banner .ods-typography__description {
|
|
2179
|
+
font-weight: 600;
|
|
2180
|
+
margin-top: 4px;
|
|
2181
|
+
}
|
|
2182
|
+
.ods-banner .ods-btn--sm {
|
|
2183
|
+
min-width: unset;
|
|
2184
|
+
}
|
|
2185
|
+
.ods-banner__actions {
|
|
2186
|
+
display: flex;
|
|
2187
|
+
flex-wrap: wrap;
|
|
2188
|
+
gap: 16px;
|
|
2189
|
+
margin-top: 12px;
|
|
2190
|
+
}
|
|
2191
|
+
.ods-banner--large .ods-banner__body {
|
|
2192
|
+
flex-direction: column;
|
|
2193
|
+
}
|
|
2194
|
+
.ods-banner--large .ods-banner__actions {
|
|
2195
|
+
margin-top: 24px;
|
|
2196
|
+
}
|
|
2197
|
+
.ods-banner--small .ods-banner__body {
|
|
2198
|
+
flex-direction: row;
|
|
2199
|
+
flex-wrap: nowrap;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2118
2202
|
.ods-badge {
|
|
2119
2203
|
display: flex;
|
|
2120
2204
|
font-family: "Nunito Sans";
|
|
@@ -2663,6 +2747,8 @@
|
|
|
2663
2747
|
}
|
|
2664
2748
|
|
|
2665
2749
|
.ods-divider {
|
|
2750
|
+
border-color: #e0e2ee;
|
|
2751
|
+
mix-blend-mode: multiply;
|
|
2666
2752
|
border: 0;
|
|
2667
2753
|
border-top: 1px solid #e0e2ee;
|
|
2668
2754
|
margin: 0;
|
|
@@ -3116,13 +3202,14 @@
|
|
|
3116
3202
|
}
|
|
3117
3203
|
|
|
3118
3204
|
.ods-list {
|
|
3119
|
-
background: white;
|
|
3120
3205
|
border: 1px solid #e0e2ee;
|
|
3121
3206
|
border-radius: 8px;
|
|
3122
3207
|
box-sizing: border-box;
|
|
3123
3208
|
overflow: hidden;
|
|
3124
3209
|
}
|
|
3125
3210
|
.ods-list .ods-transaction-list-item:not(:last-of-type) {
|
|
3211
|
+
border-color: #e0e2ee;
|
|
3212
|
+
mix-blend-mode: multiply;
|
|
3126
3213
|
border-bottom: 1px solid #e0e2ee;
|
|
3127
3214
|
}
|
|
3128
3215
|
.ods-list .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
|
|
@@ -3133,6 +3220,8 @@
|
|
|
3133
3220
|
border-radius: 0;
|
|
3134
3221
|
}
|
|
3135
3222
|
.ods-list .ods-card-list-item:not(:last-of-type) {
|
|
3223
|
+
border-color: #e0e2ee;
|
|
3224
|
+
mix-blend-mode: multiply;
|
|
3136
3225
|
border-bottom: 1px solid #e0e2ee;
|
|
3137
3226
|
}
|
|
3138
3227
|
.ods-list .ods-list-container__content--card {
|
|
@@ -3140,6 +3229,8 @@
|
|
|
3140
3229
|
border-radius: 0;
|
|
3141
3230
|
}
|
|
3142
3231
|
.ods-list .ods-list-container:not(:last-of-type) > .ods-list-container__content--card {
|
|
3232
|
+
border-color: #e0e2ee;
|
|
3233
|
+
mix-blend-mode: multiply;
|
|
3143
3234
|
border-bottom: 1px solid #e0e2ee;
|
|
3144
3235
|
}
|
|
3145
3236
|
.ods-list .ods-list-container:last-of-type > .ods-list-container__content__divider {
|
|
@@ -3159,7 +3250,6 @@
|
|
|
3159
3250
|
}
|
|
3160
3251
|
|
|
3161
3252
|
.ods-transaction-list-item {
|
|
3162
|
-
background-color: white;
|
|
3163
3253
|
cursor: pointer;
|
|
3164
3254
|
display: flex;
|
|
3165
3255
|
flex-direction: column;
|
|
@@ -3167,9 +3257,11 @@
|
|
|
3167
3257
|
}
|
|
3168
3258
|
.ods-transaction-list-item:hover, .ods-transaction-list-item:focus {
|
|
3169
3259
|
background-color: #f3f5fe;
|
|
3260
|
+
mix-blend-mode: multiply;
|
|
3170
3261
|
}
|
|
3171
3262
|
.ods-transaction-list-item:active {
|
|
3172
3263
|
background-color: #ced1e1;
|
|
3264
|
+
mix-blend-mode: multiply;
|
|
3173
3265
|
}
|
|
3174
3266
|
.ods-transaction-list-item.ods-transaction-list-item--readonly {
|
|
3175
3267
|
pointer-events: none;
|
|
@@ -3187,7 +3279,8 @@
|
|
|
3187
3279
|
pointer-events: none;
|
|
3188
3280
|
}
|
|
3189
3281
|
.ods-transaction-list-item--isloading .ods-transaction-list-item__content:hover, .ods-transaction-list-item--isloading .ods-transaction-list-item__content:focus {
|
|
3190
|
-
background-color:
|
|
3282
|
+
background-color: transparent;
|
|
3283
|
+
mix-blend-mode: normal;
|
|
3191
3284
|
}
|
|
3192
3285
|
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
|
|
3193
3286
|
background-color: transparent;
|
|
@@ -3763,7 +3856,6 @@
|
|
|
3763
3856
|
.ods-text-list-item-selectable .ods-checkbox__root,
|
|
3764
3857
|
.ods-text-list-item-selectable .ods-radio__root {
|
|
3765
3858
|
align-items: center;
|
|
3766
|
-
background-color: white;
|
|
3767
3859
|
padding: 16px;
|
|
3768
3860
|
width: 100%;
|
|
3769
3861
|
}
|
|
@@ -3771,6 +3863,7 @@
|
|
|
3771
3863
|
.ods-text-list-item-selectable .ods-radio__root:hover,
|
|
3772
3864
|
.ods-text-list-item-selectable .ods-radio__root:focus {
|
|
3773
3865
|
background-color: #f3f5fe;
|
|
3866
|
+
mix-blend-mode: multiply;
|
|
3774
3867
|
cursor: pointer;
|
|
3775
3868
|
}
|
|
3776
3869
|
.ods-text-list-item-selectable .ods-checkbox__label,
|
|
@@ -3793,7 +3886,6 @@
|
|
|
3793
3886
|
.ods-text-list-item {
|
|
3794
3887
|
align-items: center;
|
|
3795
3888
|
align-items: flex-start;
|
|
3796
|
-
background-color: white;
|
|
3797
3889
|
display: flex;
|
|
3798
3890
|
flex-direction: column;
|
|
3799
3891
|
padding: 16px;
|
|
@@ -3812,6 +3904,7 @@
|
|
|
3812
3904
|
}
|
|
3813
3905
|
.ods-text-list-item--with-action:hover, .ods-text-list-item--with-action:focus {
|
|
3814
3906
|
background-color: #f3f5fe;
|
|
3907
|
+
mix-blend-mode: multiply;
|
|
3815
3908
|
cursor: pointer;
|
|
3816
3909
|
}
|
|
3817
3910
|
.ods-text-list-item--selectable {
|
|
@@ -5410,6 +5503,7 @@
|
|
|
5410
5503
|
}
|
|
5411
5504
|
.ods-card-list-item:hover:not(.ods-card-list-item--disabled, .ods-card-list-item--loading) {
|
|
5412
5505
|
background-color: #f3f5fe;
|
|
5506
|
+
mix-blend-mode: multiply;
|
|
5413
5507
|
}
|
|
5414
5508
|
.ods-card-list-item--disabled {
|
|
5415
5509
|
cursor: not-allowed;
|
|
@@ -6152,6 +6246,16 @@
|
|
|
6152
6246
|
flex-direction: column;
|
|
6153
6247
|
min-width: 0;
|
|
6154
6248
|
}
|
|
6249
|
+
.ods-content-list__indicator {
|
|
6250
|
+
align-self: flex-start;
|
|
6251
|
+
display: flex;
|
|
6252
|
+
}
|
|
6253
|
+
.ods-content-list__indicator--above {
|
|
6254
|
+
margin-bottom: 8px;
|
|
6255
|
+
}
|
|
6256
|
+
.ods-content-list__indicator--below {
|
|
6257
|
+
margin-top: 8px;
|
|
6258
|
+
}
|
|
6155
6259
|
.ods-content-list .ods-typography__paragraph {
|
|
6156
6260
|
color: #393b47;
|
|
6157
6261
|
}
|
|
@@ -6247,8 +6351,6 @@
|
|
|
6247
6351
|
}
|
|
6248
6352
|
.ods-list-container__content {
|
|
6249
6353
|
overflow: hidden;
|
|
6250
|
-
position: relative;
|
|
6251
|
-
z-index: 1;
|
|
6252
6354
|
}
|
|
6253
6355
|
.ods-list-container__content--card {
|
|
6254
6356
|
border: 1px solid #e0e2ee;
|
|
@@ -6258,8 +6360,12 @@
|
|
|
6258
6360
|
border-color: #f5456e;
|
|
6259
6361
|
}
|
|
6260
6362
|
.ods-list-container__content__divider {
|
|
6363
|
+
border-color: #e0e2ee;
|
|
6364
|
+
mix-blend-mode: multiply;
|
|
6261
6365
|
border-bottom: 1px solid #e0e2ee;
|
|
6262
|
-
margin:
|
|
6366
|
+
margin: -1px 16px 0;
|
|
6367
|
+
pointer-events: none;
|
|
6368
|
+
position: relative;
|
|
6263
6369
|
}
|
|
6264
6370
|
.ods-list-container__highlight {
|
|
6265
6371
|
border-radius: 0 0 8px 8px;
|
|
@@ -6269,7 +6375,7 @@
|
|
|
6269
6375
|
|
|
6270
6376
|
.ods-list-action {
|
|
6271
6377
|
align-items: center;
|
|
6272
|
-
background-color:
|
|
6378
|
+
background-color: transparent;
|
|
6273
6379
|
border: 0;
|
|
6274
6380
|
cursor: pointer;
|
|
6275
6381
|
display: flex;
|
|
@@ -6289,8 +6395,9 @@
|
|
|
6289
6395
|
min-width: 0;
|
|
6290
6396
|
transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
6291
6397
|
}
|
|
6292
|
-
.ods-list-action:hover:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
|
|
6398
|
+
.ods-list-action:hover:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open), .ods-list-action:focus-visible:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
|
|
6293
6399
|
background-color: #f3f5fe;
|
|
6400
|
+
mix-blend-mode: multiply;
|
|
6294
6401
|
}
|
|
6295
6402
|
.ods-list-action:focus-visible {
|
|
6296
6403
|
outline: 2px solid #0025e0;
|
|
@@ -6298,6 +6405,7 @@
|
|
|
6298
6405
|
}
|
|
6299
6406
|
.ods-list-action:active:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
|
|
6300
6407
|
background-color: #ced1e1;
|
|
6408
|
+
mix-blend-mode: multiply;
|
|
6301
6409
|
}
|
|
6302
6410
|
.ods-list-action__position {
|
|
6303
6411
|
align-items: center;
|
|
@@ -6371,7 +6479,6 @@
|
|
|
6371
6479
|
|
|
6372
6480
|
.ods-list-readonly {
|
|
6373
6481
|
align-items: center;
|
|
6374
|
-
background-color: white;
|
|
6375
6482
|
box-sizing: border-box;
|
|
6376
6483
|
display: flex;
|
|
6377
6484
|
gap: 12px;
|
|
@@ -6415,7 +6522,6 @@
|
|
|
6415
6522
|
|
|
6416
6523
|
.ods-list-settings {
|
|
6417
6524
|
align-items: center;
|
|
6418
|
-
background-color: white;
|
|
6419
6525
|
box-sizing: border-box;
|
|
6420
6526
|
display: flex;
|
|
6421
6527
|
gap: 12px;
|
|
@@ -6462,7 +6568,6 @@
|
|
|
6462
6568
|
}
|
|
6463
6569
|
|
|
6464
6570
|
.ods-list-expandable {
|
|
6465
|
-
background-color: white;
|
|
6466
6571
|
display: flex;
|
|
6467
6572
|
flex-direction: column;
|
|
6468
6573
|
min-width: 0;
|
|
@@ -6475,8 +6580,12 @@
|
|
|
6475
6580
|
opacity: 0.6;
|
|
6476
6581
|
}
|
|
6477
6582
|
.ods-list-expandable__divider {
|
|
6583
|
+
border-color: #e0e2ee;
|
|
6584
|
+
mix-blend-mode: multiply;
|
|
6478
6585
|
border-bottom: 1px solid #e0e2ee;
|
|
6479
|
-
margin:
|
|
6586
|
+
margin: -1px 16px 0;
|
|
6587
|
+
pointer-events: none;
|
|
6588
|
+
position: relative;
|
|
6480
6589
|
}
|
|
6481
6590
|
.ods-list-expandable--transaction .ods-list-expandable__icon {
|
|
6482
6591
|
color: #aaadc0;
|
|
@@ -6544,15 +6653,16 @@
|
|
|
6544
6653
|
border: 0;
|
|
6545
6654
|
cursor: pointer;
|
|
6546
6655
|
display: flex;
|
|
6547
|
-
gap:
|
|
6656
|
+
gap: 8px;
|
|
6548
6657
|
min-width: 0;
|
|
6549
6658
|
padding: 16px 8px 16px 16px;
|
|
6550
6659
|
text-align: left;
|
|
6551
6660
|
transition: background-color 0.2s ease;
|
|
6552
6661
|
width: 100%;
|
|
6553
6662
|
}
|
|
6554
|
-
.ods-list-expandable__main:hover:not(.ods-list-expandable--loading .ods-list-expandable__main) {
|
|
6663
|
+
.ods-list-expandable__main:hover:not(.ods-list-expandable--loading .ods-list-expandable__main), .ods-list-expandable__main:focus-visible:not(.ods-list-expandable--loading .ods-list-expandable__main) {
|
|
6555
6664
|
background-color: #f3f5fe;
|
|
6665
|
+
mix-blend-mode: multiply;
|
|
6556
6666
|
}
|
|
6557
6667
|
.ods-list-expandable__main:focus-visible {
|
|
6558
6668
|
outline: 2px solid #0025e0;
|
|
@@ -6629,9 +6739,11 @@
|
|
|
6629
6739
|
}
|
|
6630
6740
|
.ods-list-expandable--expanded .ods-list-expandable__main:hover {
|
|
6631
6741
|
background-color: #f3f5fe;
|
|
6742
|
+
mix-blend-mode: multiply;
|
|
6632
6743
|
}
|
|
6633
6744
|
.ods-list-expandable--show-hover .ods-list-expandable__main {
|
|
6634
6745
|
background-color: #f3f5fe;
|
|
6746
|
+
mix-blend-mode: multiply;
|
|
6635
6747
|
}
|
|
6636
6748
|
|
|
6637
6749
|
.ods-list-selectable__indicator {
|
|
@@ -6643,13 +6755,13 @@
|
|
|
6643
6755
|
.ods-list-selectable .ods-checkbox__root,
|
|
6644
6756
|
.ods-list-selectable .ods-radio__root {
|
|
6645
6757
|
align-items: center;
|
|
6646
|
-
background-color: white;
|
|
6647
6758
|
padding: 16px;
|
|
6648
6759
|
}
|
|
6649
6760
|
.ods-list-selectable .ods-checkbox__root:hover, .ods-list-selectable .ods-checkbox__root:focus,
|
|
6650
6761
|
.ods-list-selectable .ods-radio__root:hover,
|
|
6651
6762
|
.ods-list-selectable .ods-radio__root:focus {
|
|
6652
6763
|
background-color: #f3f5fe;
|
|
6764
|
+
mix-blend-mode: multiply;
|
|
6653
6765
|
cursor: pointer;
|
|
6654
6766
|
}
|
|
6655
6767
|
.ods-list-selectable .ods-checkbox__label,
|
|
@@ -6852,10 +6964,6 @@
|
|
|
6852
6964
|
padding: 8px;
|
|
6853
6965
|
}
|
|
6854
6966
|
}
|
|
6855
|
-
.ods-internal-contextual-hero__list > div > button,
|
|
6856
|
-
.ods-internal-contextual-hero__list > div > div {
|
|
6857
|
-
background-color: transparent;
|
|
6858
|
-
}
|
|
6859
6967
|
.ods-internal-contextual-hero__list-item {
|
|
6860
6968
|
display: flex;
|
|
6861
6969
|
gap: 8px;
|