@useblu/ocean-core 1.135.0 → 1.135.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 +3 -1
- 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.135.2](https://github.com/ocean-ds/ocean-web/compare/v1.135.1...v1.135.2) (2026-04-30)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **list-container:** card border color should match Figma spec ([#1245](https://github.com/ocean-ds/ocean-web/issues/1245)) não ([fabf3ba](https://github.com/ocean-ds/ocean-web/commit/fabf3baa989c4fe270cd9292d6e47d074eac5807)), closes [#CED1E1](https://github.com/ocean-ds/ocean-web/issues/CED1E1) [#E0E2](https://github.com/ocean-ds/ocean-web/issues/E0E2)
|
|
11
|
+
|
|
12
|
+
## [1.135.1](https://github.com/ocean-ds/ocean-web/compare/v1.135.0...v1.135.1) (2026-04-14)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- swap colors in isInverted mode (BAN-52) ([#1239](https://github.com/ocean-ds/ocean-web/issues/1239)) ([99382da](https://github.com/ocean-ds/ocean-web/commit/99382da8ceedb0d219a6562855bd47670634f56a))
|
|
17
|
+
|
|
6
18
|
# [1.135.0](https://github.com/ocean-ds/ocean-web/compare/v1.134.1...v1.135.0) (2026-04-14)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3344,9 +3344,11 @@
|
|
|
3344
3344
|
}
|
|
3345
3345
|
|
|
3346
3346
|
.ods-transaction-list-item--inverted .ods-transaction-list-item__level1 {
|
|
3347
|
+
color: #67697a;
|
|
3347
3348
|
font-size: 14px;
|
|
3348
3349
|
}
|
|
3349
3350
|
.ods-transaction-list-item--inverted .ods-transaction-list-item__level2 {
|
|
3351
|
+
color: #393b47;
|
|
3350
3352
|
font-size: 16px;
|
|
3351
3353
|
}
|
|
3352
3354
|
|
|
@@ -6249,7 +6251,7 @@
|
|
|
6249
6251
|
z-index: 1;
|
|
6250
6252
|
}
|
|
6251
6253
|
.ods-list-container__content--card {
|
|
6252
|
-
border: 1px solid #
|
|
6254
|
+
border: 1px solid #e0e2ee;
|
|
6253
6255
|
border-radius: 8px;
|
|
6254
6256
|
}
|
|
6255
6257
|
.ods-list-container__content--card--error {
|