@useblu/ocean-core 1.128.1 → 1.129.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 +6 -0
- package/ocean.css +50 -10
- 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,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.129.0](https://github.com/ocean-ds/ocean-web/compare/v1.128.1...v1.129.0) (2026-02-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- 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))
|
|
11
|
+
|
|
6
12
|
## [1.128.1](https://github.com/ocean-ds/ocean-web/compare/v1.128.0...v1.128.1) (2026-02-04)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -6565,28 +6565,68 @@
|
|
|
6565
6565
|
}
|
|
6566
6566
|
|
|
6567
6567
|
.ods-internal-contextual-hero {
|
|
6568
|
-
background-color: #f3f5fe;
|
|
6569
6568
|
border-radius: 8px;
|
|
6570
6569
|
display: grid;
|
|
6571
6570
|
grid-template-columns: 1fr auto;
|
|
6572
6571
|
grid-template-rows: auto auto;
|
|
6573
6572
|
width: 100%;
|
|
6574
6573
|
}
|
|
6575
|
-
@media (min-width:
|
|
6576
|
-
.ods-internal-contextual-hero {
|
|
6577
|
-
|
|
6574
|
+
@media (min-width: 576px) {
|
|
6575
|
+
.ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image {
|
|
6576
|
+
grid-column: 2;
|
|
6577
|
+
grid-row: 2;
|
|
6578
|
+
justify-self: self-end;
|
|
6578
6579
|
}
|
|
6579
6580
|
}
|
|
6580
|
-
|
|
6581
|
-
|
|
6581
|
+
@media (min-width: 576px) {
|
|
6582
|
+
.ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__content {
|
|
6583
|
+
grid-column: 1/-1;
|
|
6584
|
+
}
|
|
6582
6585
|
}
|
|
6583
|
-
@media (min-width:
|
|
6584
|
-
.ods-internal-contextual-
|
|
6586
|
+
@media (min-width: 576px) {
|
|
6587
|
+
.ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image > img, .ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__image > *:not(img) {
|
|
6588
|
+
border-radius: 0 0 8px 0;
|
|
6589
|
+
}
|
|
6590
|
+
}
|
|
6591
|
+
@media (min-width: 576px) {
|
|
6592
|
+
.ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__list {
|
|
6593
|
+
grid-column: 1;
|
|
6594
|
+
grid-row: 2;
|
|
6595
|
+
}
|
|
6596
|
+
}
|
|
6597
|
+
@media (min-width: 576px) {
|
|
6598
|
+
.ods-internal-contextual-hero--full {
|
|
6599
|
+
display: flex;
|
|
6600
|
+
}
|
|
6601
|
+
}
|
|
6602
|
+
@media (min-width: 576px) {
|
|
6603
|
+
.ods-internal-contextual-hero--full > .ods-internal-contextual-hero__body {
|
|
6585
6604
|
display: flex;
|
|
6586
6605
|
flex: 1;
|
|
6587
6606
|
flex-direction: column;
|
|
6588
6607
|
}
|
|
6589
6608
|
}
|
|
6609
|
+
.ods-internal-contextual-hero--default {
|
|
6610
|
+
background-color: #f3f5fe;
|
|
6611
|
+
}
|
|
6612
|
+
.ods-internal-contextual-hero--default .ods-internal-contextual-hero__list-item-icon {
|
|
6613
|
+
color: #5872f5;
|
|
6614
|
+
}
|
|
6615
|
+
.ods-internal-contextual-hero--warning {
|
|
6616
|
+
background-color: #fff7f0;
|
|
6617
|
+
}
|
|
6618
|
+
.ods-internal-contextual-hero--warning .ods-internal-contextual-hero__list-item-icon {
|
|
6619
|
+
color: #ff8a14;
|
|
6620
|
+
}
|
|
6621
|
+
.ods-internal-contextual-hero--negative {
|
|
6622
|
+
background-color: #fff1f4;
|
|
6623
|
+
}
|
|
6624
|
+
.ods-internal-contextual-hero--negative .ods-internal-contextual-hero__list-item-icon {
|
|
6625
|
+
color: #f5456e;
|
|
6626
|
+
}
|
|
6627
|
+
.ods-internal-contextual-hero__body {
|
|
6628
|
+
display: contents;
|
|
6629
|
+
}
|
|
6590
6630
|
.ods-internal-contextual-hero__content {
|
|
6591
6631
|
display: flex;
|
|
6592
6632
|
flex: 1;
|
|
@@ -6619,11 +6659,11 @@
|
|
|
6619
6659
|
grid-column: 2;
|
|
6620
6660
|
grid-row: 1;
|
|
6621
6661
|
justify-content: flex-end;
|
|
6622
|
-
width:
|
|
6662
|
+
max-width: 92px;
|
|
6623
6663
|
}
|
|
6624
6664
|
@media (min-width: 768px) {
|
|
6625
6665
|
.ods-internal-contextual-hero__image {
|
|
6626
|
-
width: 220px;
|
|
6666
|
+
max-width: 220px;
|
|
6627
6667
|
}
|
|
6628
6668
|
}
|
|
6629
6669
|
.ods-internal-contextual-hero__image > img {
|