@useblu/ocean-core 1.126.0 → 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 +6 -0
- package/ocean.css +12 -0
- 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.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
|
+
|
|
6
12
|
# [1.126.0](https://github.com/ocean-ds/ocean-web/compare/v1.125.1...v1.126.0) (2026-01-14)
|
|
7
13
|
|
|
8
14
|
### Features
|
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
|
}
|