@useblu/ocean-core 1.131.0 → 1.133.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.133.0](https://github.com/ocean-ds/ocean-web/compare/v1.132.0...v1.133.0) (2026-03-05)
7
+
8
+ ### Features
9
+
10
+ - create TransactionListExpandable ([#1228](https://github.com/ocean-ds/ocean-web/issues/1228)) ([2bb4832](https://github.com/ocean-ds/ocean-web/commit/2bb48326df10a830d940990d7881070ddde1d805))
11
+
12
+ # [1.132.0](https://github.com/ocean-ds/ocean-web/compare/v1.131.0...v1.132.0) (2026-03-03)
13
+
14
+ ### Features
15
+
16
+ - update data picker adding tooltip list ([#1230](https://github.com/ocean-ds/ocean-web/issues/1230)) ([e0d2fc6](https://github.com/ocean-ds/ocean-web/commit/e0d2fc63ad1a3f592db66155276a147a77bca3b1))
17
+
6
18
  # [1.131.0](https://github.com/ocean-ds/ocean-web/compare/v1.130.0...v1.131.0) (2026-03-03)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -4379,6 +4379,9 @@
4379
4379
  user-select: none;
4380
4380
  width: 100%;
4381
4381
  }
4382
+ .ods-date__calendar-container {
4383
+ position: relative;
4384
+ }
4382
4385
  .ods-date:active, .ods-date:focus,
4383
4386
  .ods-date *:active,
4384
4387
  .ods-date *:focus {
@@ -4440,35 +4443,37 @@
4440
4443
  display: none;
4441
4444
  }
4442
4445
  .ods-date_calendar_m1 {
4443
- top: 72px;
4446
+ top: 4px;
4444
4447
  }
4445
4448
  .ods-date_calendar_m2 {
4446
- top: 72px;
4449
+ top: 4px;
4447
4450
  }
4448
4451
  .ods-date__disabled-tooltip {
4449
4452
  background-color: #393b47;
4450
4453
  border-radius: 8px;
4451
4454
  box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
4455
+ box-sizing: border-box;
4452
4456
  color: white;
4453
4457
  font-family: "Nunito Sans";
4454
- font-size: 12px;
4458
+ font-size: 14px;
4455
4459
  font-weight: 400;
4460
+ left: 0;
4456
4461
  line-height: 1.5;
4457
- margin: 0 16px;
4458
4462
  padding: 12px 16px;
4459
4463
  position: absolute;
4464
+ right: 0;
4460
4465
  text-align: center;
4461
- top: 68px;
4466
+ transform: translateY(-100%);
4462
4467
  z-index: 10;
4463
4468
  }
4464
- .ods-date__disabled-tooltip::after {
4469
+ .ods-date__disabled-tooltip__arrow {
4465
4470
  border: 7px solid transparent;
4466
4471
  border-top-color: #393b47;
4467
4472
  bottom: -14px;
4468
- content: "";
4469
- left: 50%;
4473
+ height: 0;
4470
4474
  position: absolute;
4471
4475
  transform: translateX(-50%);
4476
+ width: 0;
4472
4477
  }
4473
4478
  .ods-date__inline-calendar {
4474
4479
  background-color: white;
@@ -6205,6 +6210,59 @@
6205
6210
  text-decoration: line-through;
6206
6211
  }
6207
6212
 
6213
+ .ods-amount-details {
6214
+ align-items: flex-end;
6215
+ display: flex;
6216
+ flex-direction: column;
6217
+ flex-shrink: 0;
6218
+ gap: 4px;
6219
+ }
6220
+ .ods-amount-details__main {
6221
+ align-items: flex-end;
6222
+ display: flex;
6223
+ flex-direction: column;
6224
+ }
6225
+ .ods-amount-details__amount {
6226
+ color: #67697a;
6227
+ font-family: "Nunito Sans";
6228
+ font-size: 14px;
6229
+ font-weight: 600;
6230
+ line-height: 1.5;
6231
+ margin: 0;
6232
+ text-align: right;
6233
+ white-space: nowrap;
6234
+ }
6235
+ .ods-amount-details__amount--positive {
6236
+ color: #2da94f;
6237
+ }
6238
+ .ods-amount-details__amount-row {
6239
+ align-items: center;
6240
+ display: flex;
6241
+ flex-direction: row;
6242
+ gap: 4px;
6243
+ justify-content: flex-end;
6244
+ }
6245
+ .ods-amount-details__amount-sign {
6246
+ color: #67697a;
6247
+ font-family: "Nunito Sans";
6248
+ font-size: 14px;
6249
+ font-weight: 600;
6250
+ line-height: 1.5;
6251
+ }
6252
+ .ods-amount-details__caption {
6253
+ text-align: right;
6254
+ white-space: nowrap;
6255
+ }
6256
+ .ods-amount-details__indicator {
6257
+ display: flex;
6258
+ }
6259
+ .ods-amount-details__indicator--medium .ods-tag {
6260
+ font-size: 12px;
6261
+ font-weight: 600;
6262
+ line-height: 12px;
6263
+ padding: 4px 8px;
6264
+ }
6265
+
6208
6266
  .ods-list-action {
6209
6267
  align-items: center;
6210
6268
  background-color: white;
@@ -6239,7 +6297,6 @@
6239
6297
  border-radius: 0;
6240
6298
  }
6241
6299
  .ods-list-action__divider {
6242
- border-bottom: 1px solid #e0e2ee;
6243
6300
  margin: 0 16px;
6244
6301
  }
6245
6302
  .ods-list-action:hover:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
@@ -6252,6 +6309,23 @@
6252
6309
  .ods-list-action:active:not(.ods-list-action--disabled):not(.ods-list-action--loading):not(.ods-list-action--swipe-open) {
6253
6310
  background-color: #ced1e1;
6254
6311
  }
6312
+ .ods-list-action__position {
6313
+ align-items: center;
6314
+ align-self: stretch;
6315
+ display: flex;
6316
+ flex-direction: column;
6317
+ flex-shrink: 0;
6318
+ margin-bottom: -16px;
6319
+ margin-top: -16px;
6320
+ width: 24px;
6321
+ }
6322
+ .ods-list-action__position-line {
6323
+ flex: 1;
6324
+ width: 1px;
6325
+ }
6326
+ .ods-list-action__position-line--visible {
6327
+ background-color: #e0e2ee;
6328
+ }
6255
6329
  .ods-list-action__icon {
6256
6330
  align-items: center;
6257
6331
  color: #5872f5;
@@ -6454,6 +6528,65 @@
6454
6528
  border: 0;
6455
6529
  border-radius: 0;
6456
6530
  }
6531
+ .ods-list-expandable--transaction .ods-list-expandable__icon {
6532
+ color: #aaadc0;
6533
+ }
6534
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content {
6535
+ align-items: center;
6536
+ display: flex;
6537
+ flex: 1;
6538
+ gap: 12px;
6539
+ min-width: 0;
6540
+ }
6541
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-content-list {
6542
+ flex: 1;
6543
+ min-width: 0;
6544
+ }
6545
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-amount-details {
6546
+ flex-shrink: 0;
6547
+ }
6548
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-amount-details__amount:not(.ods-amount-details__amount--positive),
6549
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-amount-details__amount-sign {
6550
+ color: #393b47;
6551
+ }
6552
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-amount-details__amount,
6553
+ .ods-list-expandable--transaction .ods-list-expandable__transaction-content .ods-amount-details__amount-sign {
6554
+ font-size: 16px;
6555
+ }
6556
+ .ods-list-expandable--transaction .ods-list-expandable__content--transaction .ods-list-action {
6557
+ padding: 12px 8px 12px 16px;
6558
+ }
6559
+ .ods-list-expandable--transaction .ods-list-expandable__content--transaction .ods-list-action__icon {
6560
+ padding: 4px;
6561
+ }
6562
+ .ods-list-expandable--transaction .ods-list-expandable__content--transaction .ods-typography__paragraph {
6563
+ font-size: 14px;
6564
+ }
6565
+ .ods-list-expandable--transaction .ods-list-expandable__content--transaction .ods-typography__description {
6566
+ font-size: 12px;
6567
+ }
6568
+ .ods-list-expandable--transaction .ods-list-expandable__skeleton.ods-list-expandable__transaction-content {
6569
+ flex-direction: row;
6570
+ gap: 12px;
6571
+ }
6572
+ .ods-list-expandable--transaction .ods-list-expandable__skeleton.ods-list-expandable__transaction-content .ods-skeleton-bar {
6573
+ width: auto;
6574
+ }
6575
+ .ods-list-expandable--transaction .ods-list-expandable__skeleton-list {
6576
+ display: flex;
6577
+ flex: 1;
6578
+ flex-direction: column;
6579
+ gap: 8px;
6580
+ min-width: 0;
6581
+ }
6582
+ .ods-list-expandable--transaction .ods-list-expandable__skeleton-amount {
6583
+ align-items: flex-end;
6584
+ display: flex;
6585
+ flex-direction: column;
6586
+ flex-shrink: 0;
6587
+ gap: 8px;
6588
+ width: 86px;
6589
+ }
6457
6590
  .ods-list-expandable__main {
6458
6591
  align-items: center;
6459
6592
  background-color: transparent;
@@ -6467,7 +6600,7 @@
6467
6600
  transition: background-color 0.2s ease;
6468
6601
  width: 100%;
6469
6602
  }
6470
- .ods-list-expandable__main:hover:not(.ods-card-list-expandable--loading .ods-list-expandable__main) {
6603
+ .ods-list-expandable__main:hover:not(.ods-list-expandable--loading .ods-list-expandable__main) {
6471
6604
  background-color: #f3f5fe;
6472
6605
  }
6473
6606
  .ods-list-expandable__main:focus-visible {
@@ -6510,6 +6643,20 @@
6510
6643
  width: 100%;
6511
6644
  word-wrap: break-word;
6512
6645
  }
6646
+ .ods-list-expandable__footer {
6647
+ align-items: center;
6648
+ color: #aaadc0;
6649
+ display: flex;
6650
+ flex-direction: column;
6651
+ font-family: "Nunito Sans";
6652
+ font-size: 12px;
6653
+ font-weight: 600;
6654
+ justify-content: center;
6655
+ line-height: 1.5;
6656
+ padding: 12px 0 24px;
6657
+ text-align: center;
6658
+ width: 100%;
6659
+ }
6513
6660
  .ods-list-expandable__skeleton {
6514
6661
  box-sizing: border-box;
6515
6662
  display: flex;
@@ -6526,11 +6673,15 @@
6526
6673
  box-sizing: border-box;
6527
6674
  cursor: default;
6528
6675
  overflow: hidden;
6676
+ padding: 16px;
6529
6677
  pointer-events: none;
6530
6678
  }
6531
6679
  .ods-list-expandable--expanded .ods-list-expandable__main:hover {
6532
6680
  background-color: #f3f5fe;
6533
6681
  }
6682
+ .ods-list-expandable--show-hover .ods-list-expandable__main {
6683
+ background-color: #f3f5fe;
6684
+ }
6534
6685
 
6535
6686
  .ods-list-selectable__indicator {
6536
6687
  margin-left: 12px;