@useblu/ocean-core 1.135.1 → 1.136.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.136.0](https://github.com/ocean-ds/ocean-web/compare/v1.135.3...v1.136.0) (2026-05-11)
7
+
8
+ ### Features
9
+
10
+ - **list-selectable:** add cornerTag prop with Highlight Corner Tag (MR-490) ([#1244](https://github.com/ocean-ds/ocean-web/issues/1244)) ([d30ed92](https://github.com/ocean-ds/ocean-web/commit/d30ed92d41b2837a42749ca0056314b6cda9243f)), closes [/github.com/Pagnet/pagnet/issues/16178#issuecomment-4343595459](https://github.com//github.com/Pagnet/pagnet/issues/16178/issues/issuecomment-4343595459)
11
+
12
+ ## [1.135.2](https://github.com/ocean-ds/ocean-web/compare/v1.135.1...v1.135.2) (2026-04-30)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **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)
17
+
6
18
  ## [1.135.1](https://github.com/ocean-ds/ocean-web/compare/v1.135.0...v1.135.1) (2026-04-14)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -6251,7 +6251,7 @@
6251
6251
  z-index: 1;
6252
6252
  }
6253
6253
  .ods-list-container__content--card {
6254
- border: 1px solid #ced1e1;
6254
+ border: 1px solid #e0e2ee;
6255
6255
  border-radius: 8px;
6256
6256
  }
6257
6257
  .ods-list-container__content--card--error {
@@ -6689,6 +6689,31 @@
6689
6689
  cursor: not-allowed;
6690
6690
  }
6691
6691
 
6692
+ .ods-corner-tag {
6693
+ align-items: center;
6694
+ border-radius: 0 0 0 8px;
6695
+ color: white;
6696
+ display: inline-flex;
6697
+ font-family: "Nunito Sans";
6698
+ font-size: 10px;
6699
+ font-weight: 800;
6700
+ height: 20px;
6701
+ justify-content: flex-end;
6702
+ line-height: 100%;
6703
+ padding: 0 8px;
6704
+ position: absolute;
6705
+ right: 0;
6706
+ text-align: right;
6707
+ top: 0;
6708
+ z-index: 2;
6709
+ }
6710
+ .ods-corner-tag--primaryDown {
6711
+ background-color: #5872f5;
6712
+ }
6713
+ .ods-corner-tag--complementaryPure {
6714
+ background-color: #13bdbd;
6715
+ }
6716
+
6692
6717
  .ods-internal-contextual-hero {
6693
6718
  border-radius: 8px;
6694
6719
  display: grid;