@useblu/ocean-core 1.135.2 → 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,12 @@
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
+
6
12
  ## [1.135.2](https://github.com/ocean-ds/ocean-web/compare/v1.135.1...v1.135.2) (2026-04-30)
7
13
 
8
14
  ### Bug Fixes
package/ocean.css CHANGED
@@ -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;