@useblu/ocean-core 1.137.0 → 1.139.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 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.139.0](https://github.com/ocean-ds/ocean-web/compare/v1.138.0...v1.139.0) (2026-09-17)
7
+
8
+ ### Features
9
+
10
+ - **drawer:** props para pilha de drawers lado a lado (MR-795) ([#1259](https://github.com/ocean-ds/ocean-web/issues/1259)) ([56d1d04](https://github.com/ocean-ds/ocean-web/commit/56d1d04aaeab16c17349dafbd95e90db49591bf1))
11
+
12
+ ## [1.137.1](https://github.com/ocean-ds/ocean-web/compare/v1.137.0...v1.137.1) (2026-09-11)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **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))
17
+
6
18
  # [1.137.0](https://github.com/ocean-ds/ocean-web/compare/v1.136.0...v1.137.0) (2026-07-27)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -2747,6 +2747,8 @@
2747
2747
  }
2748
2748
 
2749
2749
  .ods-divider {
2750
+ border-color: #e0e2ee;
2751
+ mix-blend-mode: multiply;
2750
2752
  border: 0;
2751
2753
  border-top: 1px solid #e0e2ee;
2752
2754
  margin: 0;
@@ -3200,13 +3202,14 @@
3200
3202
  }
3201
3203
 
3202
3204
  .ods-list {
3203
- background: white;
3204
3205
  border: 1px solid #e0e2ee;
3205
3206
  border-radius: 8px;
3206
3207
  box-sizing: border-box;
3207
3208
  overflow: hidden;
3208
3209
  }
3209
3210
  .ods-list .ods-transaction-list-item:not(:last-of-type) {
3211
+ border-color: #e0e2ee;
3212
+ mix-blend-mode: multiply;
3210
3213
  border-bottom: 1px solid #e0e2ee;
3211
3214
  }
3212
3215
  .ods-list .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
@@ -3217,6 +3220,8 @@
3217
3220
  border-radius: 0;
3218
3221
  }
3219
3222
  .ods-list .ods-card-list-item:not(:last-of-type) {
3223
+ border-color: #e0e2ee;
3224
+ mix-blend-mode: multiply;
3220
3225
  border-bottom: 1px solid #e0e2ee;
3221
3226
  }
3222
3227
  .ods-list .ods-list-container__content--card {
@@ -3224,6 +3229,8 @@
3224
3229
  border-radius: 0;
3225
3230
  }
3226
3231
  .ods-list .ods-list-container:not(:last-of-type) > .ods-list-container__content--card {
3232
+ border-color: #e0e2ee;
3233
+ mix-blend-mode: multiply;
3227
3234
  border-bottom: 1px solid #e0e2ee;
3228
3235
  }
3229
3236
  .ods-list .ods-list-container:last-of-type > .ods-list-container__content__divider {
@@ -3243,7 +3250,6 @@
3243
3250
  }
3244
3251
 
3245
3252
  .ods-transaction-list-item {
3246
- background-color: white;
3247
3253
  cursor: pointer;
3248
3254
  display: flex;
3249
3255
  flex-direction: column;
@@ -3251,9 +3257,11 @@
3251
3257
  }
3252
3258
  .ods-transaction-list-item:hover, .ods-transaction-list-item:focus {
3253
3259
  background-color: #f3f5fe;
3260
+ mix-blend-mode: multiply;
3254
3261
  }
3255
3262
  .ods-transaction-list-item:active {
3256
3263
  background-color: #ced1e1;
3264
+ mix-blend-mode: multiply;
3257
3265
  }
3258
3266
  .ods-transaction-list-item.ods-transaction-list-item--readonly {
3259
3267
  pointer-events: none;
@@ -3271,7 +3279,8 @@
3271
3279
  pointer-events: none;
3272
3280
  }
3273
3281
  .ods-transaction-list-item--isloading .ods-transaction-list-item__content:hover, .ods-transaction-list-item--isloading .ods-transaction-list-item__content:focus {
3274
- background-color: white;
3282
+ background-color: transparent;
3283
+ mix-blend-mode: normal;
3275
3284
  }
3276
3285
  .ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
3277
3286
  background-color: transparent;
@@ -3847,7 +3856,6 @@
3847
3856
  .ods-text-list-item-selectable .ods-checkbox__root,
3848
3857
  .ods-text-list-item-selectable .ods-radio__root {
3849
3858
  align-items: center;
3850
- background-color: white;
3851
3859
  padding: 16px;
3852
3860
  width: 100%;
3853
3861
  }
@@ -3855,6 +3863,7 @@
3855
3863
  .ods-text-list-item-selectable .ods-radio__root:hover,
3856
3864
  .ods-text-list-item-selectable .ods-radio__root:focus {
3857
3865
  background-color: #f3f5fe;
3866
+ mix-blend-mode: multiply;
3858
3867
  cursor: pointer;
3859
3868
  }
3860
3869
  .ods-text-list-item-selectable .ods-checkbox__label,
@@ -3877,7 +3886,6 @@
3877
3886
  .ods-text-list-item {
3878
3887
  align-items: center;
3879
3888
  align-items: flex-start;
3880
- background-color: white;
3881
3889
  display: flex;
3882
3890
  flex-direction: column;
3883
3891
  padding: 16px;
@@ -3896,6 +3904,7 @@
3896
3904
  }
3897
3905
  .ods-text-list-item--with-action:hover, .ods-text-list-item--with-action:focus {
3898
3906
  background-color: #f3f5fe;
3907
+ mix-blend-mode: multiply;
3899
3908
  cursor: pointer;
3900
3909
  }
3901
3910
  .ods-text-list-item--selectable {
@@ -4951,6 +4960,11 @@
4951
4960
  visibility: visible;
4952
4961
  z-index: 200;
4953
4962
  }
4963
+ .ods-overlay--transparent {
4964
+ background-color: transparent;
4965
+ opacity: 1;
4966
+ transition: none;
4967
+ }
4954
4968
 
4955
4969
  .ods-drawer {
4956
4970
  background-color: white;
@@ -4996,6 +5010,26 @@
4996
5010
  }
4997
5011
  }
4998
5012
 
5013
+ .ods-drawer--floating {
5014
+ border-radius: 12px;
5015
+ height: calc(100% - (16px * 2));
5016
+ overflow: hidden;
5017
+ top: 16px;
5018
+ transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 340ms;
5019
+ }
5020
+ .ods-drawer--floating.ods-drawer--right {
5021
+ right: 16px;
5022
+ transform: translateX(calc(100% + 16px));
5023
+ }
5024
+ .ods-drawer--floating.ods-drawer--left {
5025
+ left: 16px;
5026
+ transform: translateX(calc(-100% - 16px));
5027
+ }
5028
+ .ods-drawer--floating.ods-drawer--open {
5029
+ transform: translateX(0);
5030
+ transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
5031
+ }
5032
+
4999
5033
  .ods-drawer__content--header {
5000
5034
  display: flex;
5001
5035
  min-height: 48px;
@@ -5494,6 +5528,7 @@
5494
5528
  }
5495
5529
  .ods-card-list-item:hover:not(.ods-card-list-item--disabled, .ods-card-list-item--loading) {
5496
5530
  background-color: #f3f5fe;
5531
+ mix-blend-mode: multiply;
5497
5532
  }
5498
5533
  .ods-card-list-item--disabled {
5499
5534
  cursor: not-allowed;
@@ -6341,8 +6376,6 @@
6341
6376
  }
6342
6377
  .ods-list-container__content {
6343
6378
  overflow: hidden;
6344
- position: relative;
6345
- z-index: 1;
6346
6379
  }
6347
6380
  .ods-list-container__content--card {
6348
6381
  border: 1px solid #e0e2ee;
@@ -6352,8 +6385,12 @@
6352
6385
  border-color: #f5456e;
6353
6386
  }
6354
6387
  .ods-list-container__content__divider {
6388
+ border-color: #e0e2ee;
6389
+ mix-blend-mode: multiply;
6355
6390
  border-bottom: 1px solid #e0e2ee;
6356
- margin: 0 16px;
6391
+ margin: -1px 16px 0;
6392
+ pointer-events: none;
6393
+ position: relative;
6357
6394
  }
6358
6395
  .ods-list-container__highlight {
6359
6396
  border-radius: 0 0 8px 8px;
@@ -6363,7 +6400,7 @@
6363
6400
 
6364
6401
  .ods-list-action {
6365
6402
  align-items: center;
6366
- background-color: white;
6403
+ background-color: transparent;
6367
6404
  border: 0;
6368
6405
  cursor: pointer;
6369
6406
  display: flex;
@@ -6383,8 +6420,9 @@
6383
6420
  min-width: 0;
6384
6421
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
6385
6422
  }
6386
- .ods-list-action:hover:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
6423
+ .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) {
6387
6424
  background-color: #f3f5fe;
6425
+ mix-blend-mode: multiply;
6388
6426
  }
6389
6427
  .ods-list-action:focus-visible {
6390
6428
  outline: 2px solid #0025e0;
@@ -6392,6 +6430,7 @@
6392
6430
  }
6393
6431
  .ods-list-action:active:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
6394
6432
  background-color: #ced1e1;
6433
+ mix-blend-mode: multiply;
6395
6434
  }
6396
6435
  .ods-list-action__position {
6397
6436
  align-items: center;
@@ -6465,7 +6504,6 @@
6465
6504
 
6466
6505
  .ods-list-readonly {
6467
6506
  align-items: center;
6468
- background-color: white;
6469
6507
  box-sizing: border-box;
6470
6508
  display: flex;
6471
6509
  gap: 12px;
@@ -6509,7 +6547,6 @@
6509
6547
 
6510
6548
  .ods-list-settings {
6511
6549
  align-items: center;
6512
- background-color: white;
6513
6550
  box-sizing: border-box;
6514
6551
  display: flex;
6515
6552
  gap: 12px;
@@ -6556,7 +6593,6 @@
6556
6593
  }
6557
6594
 
6558
6595
  .ods-list-expandable {
6559
- background-color: white;
6560
6596
  display: flex;
6561
6597
  flex-direction: column;
6562
6598
  min-width: 0;
@@ -6569,8 +6605,12 @@
6569
6605
  opacity: 0.6;
6570
6606
  }
6571
6607
  .ods-list-expandable__divider {
6608
+ border-color: #e0e2ee;
6609
+ mix-blend-mode: multiply;
6572
6610
  border-bottom: 1px solid #e0e2ee;
6573
- margin: 0 16px;
6611
+ margin: -1px 16px 0;
6612
+ pointer-events: none;
6613
+ position: relative;
6574
6614
  }
6575
6615
  .ods-list-expandable--transaction .ods-list-expandable__icon {
6576
6616
  color: #aaadc0;
@@ -6645,8 +6685,9 @@
6645
6685
  transition: background-color 0.2s ease;
6646
6686
  width: 100%;
6647
6687
  }
6648
- .ods-list-expandable__main:hover:not(.ods-list-expandable--loading .ods-list-expandable__main) {
6688
+ .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) {
6649
6689
  background-color: #f3f5fe;
6690
+ mix-blend-mode: multiply;
6650
6691
  }
6651
6692
  .ods-list-expandable__main:focus-visible {
6652
6693
  outline: 2px solid #0025e0;
@@ -6723,9 +6764,11 @@
6723
6764
  }
6724
6765
  .ods-list-expandable--expanded .ods-list-expandable__main:hover {
6725
6766
  background-color: #f3f5fe;
6767
+ mix-blend-mode: multiply;
6726
6768
  }
6727
6769
  .ods-list-expandable--show-hover .ods-list-expandable__main {
6728
6770
  background-color: #f3f5fe;
6771
+ mix-blend-mode: multiply;
6729
6772
  }
6730
6773
 
6731
6774
  .ods-list-selectable__indicator {
@@ -6737,13 +6780,13 @@
6737
6780
  .ods-list-selectable .ods-checkbox__root,
6738
6781
  .ods-list-selectable .ods-radio__root {
6739
6782
  align-items: center;
6740
- background-color: white;
6741
6783
  padding: 16px;
6742
6784
  }
6743
6785
  .ods-list-selectable .ods-checkbox__root:hover, .ods-list-selectable .ods-checkbox__root:focus,
6744
6786
  .ods-list-selectable .ods-radio__root:hover,
6745
6787
  .ods-list-selectable .ods-radio__root:focus {
6746
6788
  background-color: #f3f5fe;
6789
+ mix-blend-mode: multiply;
6747
6790
  cursor: pointer;
6748
6791
  }
6749
6792
  .ods-list-selectable .ods-checkbox__label,
@@ -6946,10 +6989,6 @@
6946
6989
  padding: 8px;
6947
6990
  }
6948
6991
  }
6949
- .ods-internal-contextual-hero__list > div > button,
6950
- .ods-internal-contextual-hero__list > div > div {
6951
- background-color: transparent;
6952
- }
6953
6992
  .ods-internal-contextual-hero__list-item {
6954
6993
  display: flex;
6955
6994
  gap: 8px;