@useblu/ocean-core 1.128.1 → 1.130.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.130.0](https://github.com/ocean-ds/ocean-web/compare/v1.129.0...v1.130.0) (2026-02-12)
7
+
8
+ ### Features
9
+
10
+ - add action badge color on cardgroup ([#1226](https://github.com/ocean-ds/ocean-web/issues/1226)) ([527aaa4](https://github.com/ocean-ds/ocean-web/commit/527aaa494be3914d60b3046c63b0763f88909cc2))
11
+
12
+ # [1.129.0](https://github.com/ocean-ds/ocean-web/compare/v1.128.1...v1.129.0) (2026-02-05)
13
+
14
+ ### Features
15
+
16
+ - create new properties to internal contextual hero ([#1223](https://github.com/ocean-ds/ocean-web/issues/1223)) ([5e2103c](https://github.com/ocean-ds/ocean-web/commit/5e2103cc6d2f16c6f06cf702686409381d4e99d6))
17
+
6
18
  ## [1.128.1](https://github.com/ocean-ds/ocean-web/compare/v1.128.0...v1.128.1) (2026-02-04)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -2178,6 +2178,9 @@
2178
2178
  .ods-badge--neutral .ods-badge__content {
2179
2179
  background-color: #aaadc0;
2180
2180
  }
2181
+ .ods-badge--highlight .ods-badge__content {
2182
+ background-color: #ff726e;
2183
+ }
2181
2184
 
2182
2185
  .ods-btn {
2183
2186
  border: 0;
@@ -6565,28 +6568,68 @@
6565
6568
  }
6566
6569
 
6567
6570
  .ods-internal-contextual-hero {
6568
- background-color: #f3f5fe;
6569
6571
  border-radius: 8px;
6570
6572
  display: grid;
6571
6573
  grid-template-columns: 1fr auto;
6572
6574
  grid-template-rows: auto auto;
6573
6575
  width: 100%;
6574
6576
  }
6575
- @media (min-width: 768px) {
6576
- .ods-internal-contextual-hero {
6577
- display: flex;
6577
+ @media (min-width: 576px) {
6578
+ .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image {
6579
+ grid-column: 2;
6580
+ grid-row: 2;
6581
+ justify-self: self-end;
6578
6582
  }
6579
6583
  }
6580
- .ods-internal-contextual-hero__body {
6581
- display: contents;
6584
+ @media (min-width: 576px) {
6585
+ .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__content {
6586
+ grid-column: 1/-1;
6587
+ }
6582
6588
  }
6583
- @media (min-width: 768px) {
6584
- .ods-internal-contextual-hero__body {
6589
+ @media (min-width: 576px) {
6590
+ .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image > img, .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image > *:not(img) {
6591
+ border-radius: 0 0 8px 0;
6592
+ }
6593
+ }
6594
+ @media (min-width: 576px) {
6595
+ .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__list {
6596
+ grid-column: 1;
6597
+ grid-row: 2;
6598
+ }
6599
+ }
6600
+ @media (min-width: 576px) {
6601
+ .ods-internal-contextual-hero--full {
6602
+ display: flex;
6603
+ }
6604
+ }
6605
+ @media (min-width: 576px) {
6606
+ .ods-internal-contextual-hero--full > .ods-internal-contextual-hero__body {
6585
6607
  display: flex;
6586
6608
  flex: 1;
6587
6609
  flex-direction: column;
6588
6610
  }
6589
6611
  }
6612
+ .ods-internal-contextual-hero--default {
6613
+ background-color: #f3f5fe;
6614
+ }
6615
+ .ods-internal-contextual-hero--default .ods-internal-contextual-hero__list-item-icon {
6616
+ color: #5872f5;
6617
+ }
6618
+ .ods-internal-contextual-hero--warning {
6619
+ background-color: #fff7f0;
6620
+ }
6621
+ .ods-internal-contextual-hero--warning .ods-internal-contextual-hero__list-item-icon {
6622
+ color: #ff8a14;
6623
+ }
6624
+ .ods-internal-contextual-hero--negative {
6625
+ background-color: #fff1f4;
6626
+ }
6627
+ .ods-internal-contextual-hero--negative .ods-internal-contextual-hero__list-item-icon {
6628
+ color: #f5456e;
6629
+ }
6630
+ .ods-internal-contextual-hero__body {
6631
+ display: contents;
6632
+ }
6590
6633
  .ods-internal-contextual-hero__content {
6591
6634
  display: flex;
6592
6635
  flex: 1;
@@ -6619,11 +6662,11 @@
6619
6662
  grid-column: 2;
6620
6663
  grid-row: 1;
6621
6664
  justify-content: flex-end;
6622
- width: 82px;
6665
+ max-width: 92px;
6623
6666
  }
6624
6667
  @media (min-width: 768px) {
6625
6668
  .ods-internal-contextual-hero__image {
6626
- width: 220px;
6669
+ max-width: 220px;
6627
6670
  }
6628
6671
  }
6629
6672
  .ods-internal-contextual-hero__image > img {