@useblu/ocean-core 1.128.0 → 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 +12 -0
- package/ocean.css +50 -11
- 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.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
|
+
|
|
12
|
+
## [1.128.1](https://github.com/ocean-ds/ocean-web/compare/v1.128.0...v1.128.1) (2026-02-04)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- remove `cursor: not-allowed` from disabled list item styles ([#1224](https://github.com/ocean-ds/ocean-web/issues/1224)) ([4ac64b3](https://github.com/ocean-ds/ocean-web/commit/4ac64b3065534e0a16d726e24b729575b27565a1))
|
|
17
|
+
|
|
6
18
|
# [1.128.0](https://github.com/ocean-ds/ocean-web/compare/v1.127.0...v1.128.0) (2026-02-04)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -6323,7 +6323,6 @@
|
|
|
6323
6323
|
pointer-events: none;
|
|
6324
6324
|
}
|
|
6325
6325
|
.ods-list-readonly--disabled {
|
|
6326
|
-
cursor: not-allowed;
|
|
6327
6326
|
opacity: 0.6;
|
|
6328
6327
|
}
|
|
6329
6328
|
|
|
@@ -6566,28 +6565,68 @@
|
|
|
6566
6565
|
}
|
|
6567
6566
|
|
|
6568
6567
|
.ods-internal-contextual-hero {
|
|
6569
|
-
background-color: #f3f5fe;
|
|
6570
6568
|
border-radius: 8px;
|
|
6571
6569
|
display: grid;
|
|
6572
6570
|
grid-template-columns: 1fr auto;
|
|
6573
6571
|
grid-template-rows: auto auto;
|
|
6574
6572
|
width: 100%;
|
|
6575
6573
|
}
|
|
6576
|
-
@media (min-width:
|
|
6577
|
-
.ods-internal-contextual-hero {
|
|
6578
|
-
|
|
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;
|
|
6579
6579
|
}
|
|
6580
6580
|
}
|
|
6581
|
-
|
|
6582
|
-
|
|
6581
|
+
@media (min-width: 576px) {
|
|
6582
|
+
.ods-internal-contextual-hero--bottom .ods-internal-contextual-hero__content {
|
|
6583
|
+
grid-column: 1/-1;
|
|
6584
|
+
}
|
|
6583
6585
|
}
|
|
6584
|
-
@media (min-width:
|
|
6585
|
-
.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 {
|
|
6586
6604
|
display: flex;
|
|
6587
6605
|
flex: 1;
|
|
6588
6606
|
flex-direction: column;
|
|
6589
6607
|
}
|
|
6590
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
|
+
}
|
|
6591
6630
|
.ods-internal-contextual-hero__content {
|
|
6592
6631
|
display: flex;
|
|
6593
6632
|
flex: 1;
|
|
@@ -6620,11 +6659,11 @@
|
|
|
6620
6659
|
grid-column: 2;
|
|
6621
6660
|
grid-row: 1;
|
|
6622
6661
|
justify-content: flex-end;
|
|
6623
|
-
width:
|
|
6662
|
+
max-width: 92px;
|
|
6624
6663
|
}
|
|
6625
6664
|
@media (min-width: 768px) {
|
|
6626
6665
|
.ods-internal-contextual-hero__image {
|
|
6627
|
-
width: 220px;
|
|
6666
|
+
max-width: 220px;
|
|
6628
6667
|
}
|
|
6629
6668
|
}
|
|
6630
6669
|
.ods-internal-contextual-hero__image > img {
|