@useblu/ocean-core 1.59.0 → 1.59.2
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 +47 -15
- 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.59.2](https://github.com/ocean-ds/ocean-web/compare/v1.59.1...v1.59.2) (2024-06-05)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- transaction list item ([#1102](https://github.com/ocean-ds/ocean-web/issues/1102)) ([94768d5](https://github.com/ocean-ds/ocean-web/commit/94768d5f50d45ca5f3779c92b6496f87952c20b2))
|
|
11
|
+
|
|
12
|
+
## [1.59.1](https://github.com/ocean-ds/ocean-web/compare/v1.59.0...v1.59.1) (2024-05-29)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- adjust on transaction list item ([#1101](https://github.com/ocean-ds/ocean-web/issues/1101)) ([a8fd429](https://github.com/ocean-ds/ocean-web/commit/a8fd42946502676a556e93897d1167139b34ef8e))
|
|
17
|
+
|
|
6
18
|
# [1.59.0](https://github.com/ocean-ds/ocean-web/compare/v1.58.0...v1.59.0) (2024-05-16)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2435,14 +2435,9 @@
|
|
|
2435
2435
|
|
|
2436
2436
|
.ods-transaction-list-item__icon {
|
|
2437
2437
|
align-items: center;
|
|
2438
|
-
background-color: #f3f5fe;
|
|
2439
|
-
border-radius: 40px;
|
|
2440
2438
|
color: #aaadc0;
|
|
2441
2439
|
display: flex;
|
|
2442
|
-
height: 40px;
|
|
2443
2440
|
justify-content: center;
|
|
2444
|
-
min-width: 40px;
|
|
2445
|
-
width: 40px;
|
|
2446
2441
|
}
|
|
2447
2442
|
@media (max-width: 575.98px) {
|
|
2448
2443
|
.ods-transaction-list-item__icon {
|
|
@@ -2460,14 +2455,26 @@
|
|
|
2460
2455
|
.ods-transaction-list-item:hover, .ods-transaction-list-item:focus {
|
|
2461
2456
|
background-color: #f3f5fe;
|
|
2462
2457
|
}
|
|
2463
|
-
.ods-transaction-list-item:hover .ods-transaction-list-item__icon, .ods-transaction-list-item:focus .ods-transaction-list-item__icon {
|
|
2464
|
-
background-color: #e0e2ee;
|
|
2465
|
-
}
|
|
2466
2458
|
.ods-transaction-list-item:active {
|
|
2467
2459
|
background-color: #ced1e1;
|
|
2468
2460
|
}
|
|
2469
|
-
.ods-transaction-list-item
|
|
2470
|
-
|
|
2461
|
+
.ods-transaction-list-item.ods-transaction-list-item--readonly {
|
|
2462
|
+
pointer-events: none;
|
|
2463
|
+
}
|
|
2464
|
+
.ods-transaction-list-item.ods-transaction-list-item--readonly:hover {
|
|
2465
|
+
background-color: inherit;
|
|
2466
|
+
}
|
|
2467
|
+
.ods-transaction-list-item--chevron .ods-transaction-list-item__content {
|
|
2468
|
+
padding: 16px 8px 16px 16px;
|
|
2469
|
+
}
|
|
2470
|
+
.ods-transaction-list-item--readonly .ods-transaction-list-item__content {
|
|
2471
|
+
padding: 16px;
|
|
2472
|
+
}
|
|
2473
|
+
.ods-transaction-list-item--isloading {
|
|
2474
|
+
pointer-events: none;
|
|
2475
|
+
}
|
|
2476
|
+
.ods-transaction-list-item--isloading .ods-transaction-list-item__content:hover, .ods-transaction-list-item--isloading .ods-transaction-list-item__content:focus {
|
|
2477
|
+
background-color: white;
|
|
2471
2478
|
}
|
|
2472
2479
|
.ods-transaction-list-item .ods-transaction-list-item__sub-itens .ods-transaction-list-item {
|
|
2473
2480
|
background-color: transparent;
|
|
@@ -2498,8 +2505,6 @@
|
|
|
2498
2505
|
.ods-transaction-list-item__content {
|
|
2499
2506
|
align-items: center;
|
|
2500
2507
|
box-sizing: border-box;
|
|
2501
|
-
-moz-column-gap: 8px;
|
|
2502
|
-
column-gap: 8px;
|
|
2503
2508
|
cursor: pointer;
|
|
2504
2509
|
display: flex;
|
|
2505
2510
|
justify-content: center;
|
|
@@ -2513,9 +2518,19 @@
|
|
|
2513
2518
|
}
|
|
2514
2519
|
|
|
2515
2520
|
.ods-transaction-list-item__information {
|
|
2521
|
+
margin: 0 16px 0 0;
|
|
2516
2522
|
overflow: hidden;
|
|
2517
2523
|
width: 100%;
|
|
2518
2524
|
}
|
|
2525
|
+
@media (max-width: 575.98px) {
|
|
2526
|
+
.ods-transaction-list-item__information {
|
|
2527
|
+
margin: 0 8px 0 0;
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
.ods-transaction-list-item__information--with-icon {
|
|
2532
|
+
margin: 0 16px 0 12px;
|
|
2533
|
+
}
|
|
2519
2534
|
|
|
2520
2535
|
.ods-transaction-list-item__sub-information {
|
|
2521
2536
|
text-align: right;
|
|
@@ -2525,7 +2540,7 @@
|
|
|
2525
2540
|
color: #0c0d14;
|
|
2526
2541
|
font-family: "Nunito Sans";
|
|
2527
2542
|
font-size: 16px;
|
|
2528
|
-
font-weight:
|
|
2543
|
+
font-weight: 400;
|
|
2529
2544
|
margin-bottom: 4px;
|
|
2530
2545
|
}
|
|
2531
2546
|
|
|
@@ -2557,7 +2572,7 @@
|
|
|
2557
2572
|
}
|
|
2558
2573
|
|
|
2559
2574
|
.ods-transaction-list-item__level3 {
|
|
2560
|
-
color: #
|
|
2575
|
+
color: #67697a;
|
|
2561
2576
|
font-family: "Nunito Sans";
|
|
2562
2577
|
font-size: 12px;
|
|
2563
2578
|
font-weight: 600;
|
|
@@ -2575,10 +2590,15 @@
|
|
|
2575
2590
|
color: #0c0d14;
|
|
2576
2591
|
font-family: "Nunito Sans";
|
|
2577
2592
|
font-size: 16px;
|
|
2578
|
-
font-weight:
|
|
2593
|
+
font-weight: 600;
|
|
2579
2594
|
margin-bottom: 4px;
|
|
2580
2595
|
white-space: nowrap;
|
|
2581
2596
|
}
|
|
2597
|
+
@media (max-width: 575.98px) {
|
|
2598
|
+
.ods-transaction-list-item__value {
|
|
2599
|
+
font-size: 14px;
|
|
2600
|
+
}
|
|
2601
|
+
}
|
|
2582
2602
|
.ods-transaction-list-item__value--positive {
|
|
2583
2603
|
color: #2da94f;
|
|
2584
2604
|
}
|
|
@@ -2598,6 +2618,18 @@
|
|
|
2598
2618
|
font-weight: 600;
|
|
2599
2619
|
}
|
|
2600
2620
|
|
|
2621
|
+
.ods-transaction-list-item__chevron {
|
|
2622
|
+
color: #aaadc0;
|
|
2623
|
+
margin-left: 12px;
|
|
2624
|
+
min-height: 20px;
|
|
2625
|
+
min-width: 20px;
|
|
2626
|
+
}
|
|
2627
|
+
@media (max-width: 575.98px) {
|
|
2628
|
+
.ods-transaction-list-item__chevron {
|
|
2629
|
+
margin-left: 8px;
|
|
2630
|
+
}
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2601
2633
|
.ods-modal__overlay {
|
|
2602
2634
|
background: rgba(57, 59, 71, 0.4);
|
|
2603
2635
|
bottom: 0;
|