@useblu/ocean-core 1.125.1 → 1.127.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 +31 -1
- 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.127.0](https://github.com/ocean-ds/ocean-web/compare/v1.126.0...v1.127.0) (2026-01-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- include error message on radio ([#1216](https://github.com/ocean-ds/ocean-web/issues/1216)) ([6159438](https://github.com/ocean-ds/ocean-web/commit/6159438dadcf7058674da365e2b0d3b974859baf))
|
|
11
|
+
|
|
12
|
+
# [1.126.0](https://github.com/ocean-ds/ocean-web/compare/v1.125.1...v1.126.0) (2026-01-14)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- include icon prop on SubHeader ([#1218](https://github.com/ocean-ds/ocean-web/issues/1218)) ([793d4e6](https://github.com/ocean-ds/ocean-web/commit/793d4e61168d107b7361c344c0d9d4b252603464))
|
|
17
|
+
|
|
6
18
|
## [1.125.1](https://github.com/ocean-ds/ocean-web/compare/v1.125.0...v1.125.1) (2026-01-13)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -1628,6 +1628,11 @@
|
|
|
1628
1628
|
position: absolute;
|
|
1629
1629
|
width: 0;
|
|
1630
1630
|
}
|
|
1631
|
+
.ods-radio__root-container {
|
|
1632
|
+
display: flex;
|
|
1633
|
+
flex-direction: column;
|
|
1634
|
+
gap: 8px;
|
|
1635
|
+
}
|
|
1631
1636
|
.ods-radio__root {
|
|
1632
1637
|
display: flex;
|
|
1633
1638
|
-webkit-user-select: none;
|
|
@@ -1657,6 +1662,13 @@
|
|
|
1657
1662
|
.ods-radio__checkmark--error {
|
|
1658
1663
|
border-color: #f5456e;
|
|
1659
1664
|
}
|
|
1665
|
+
.ods-radio__error-message {
|
|
1666
|
+
color: #f5456e;
|
|
1667
|
+
font-family: "Nunito Sans";
|
|
1668
|
+
font-size: 12px;
|
|
1669
|
+
font-weight: 600;
|
|
1670
|
+
line-height: 1;
|
|
1671
|
+
}
|
|
1660
1672
|
.ods-radio:checked ~ .ods-radio__checkmark {
|
|
1661
1673
|
border-width: 6px;
|
|
1662
1674
|
}
|
|
@@ -3458,11 +3470,23 @@
|
|
|
3458
3470
|
box-sizing: border-box;
|
|
3459
3471
|
display: flex;
|
|
3460
3472
|
justify-content: space-between;
|
|
3461
|
-
min-height: 40px;
|
|
3462
3473
|
padding: 8px 16px;
|
|
3463
3474
|
width: 100%;
|
|
3464
3475
|
}
|
|
3465
3476
|
|
|
3477
|
+
.ods-sub-header--small {
|
|
3478
|
+
height: 32px;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
.ods-sub-header--medium {
|
|
3482
|
+
height: 40px;
|
|
3483
|
+
}
|
|
3484
|
+
|
|
3485
|
+
.ods-sub-header__icon {
|
|
3486
|
+
align-items: center;
|
|
3487
|
+
display: flex;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3466
3490
|
.ods-sub-header__subtitle,
|
|
3467
3491
|
.ods-sub-header__title {
|
|
3468
3492
|
color: #67697a;
|
|
@@ -3476,6 +3500,12 @@
|
|
|
3476
3500
|
font-weight: 900;
|
|
3477
3501
|
}
|
|
3478
3502
|
|
|
3503
|
+
.ods-sub-header__title {
|
|
3504
|
+
align-items: center;
|
|
3505
|
+
display: flex;
|
|
3506
|
+
gap: 8px;
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3479
3509
|
.ods-search {
|
|
3480
3510
|
align-items: center;
|
|
3481
3511
|
background-color: white;
|