@useblu/ocean-core 1.115.0 → 1.116.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 +73 -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,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.116.0](https://github.com/ocean-ds/ocean-web/compare/v1.115.0...v1.116.0) (2025-12-08)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- create text list selectable component ([#1199](https://github.com/ocean-ds/ocean-web/issues/1199)) ([b92601d](https://github.com/ocean-ds/ocean-web/commit/b92601d0702cc23c58b9ad749ab5f097c4d4051f))
|
|
11
|
+
|
|
6
12
|
# [1.115.0](https://github.com/ocean-ds/ocean-web/compare/v1.114.0...v1.115.0) (2025-12-04)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1608,7 +1608,7 @@
|
|
|
1608
1608
|
width: 0;
|
|
1609
1609
|
}
|
|
1610
1610
|
.ods-radio__root {
|
|
1611
|
-
display:
|
|
1611
|
+
display: flex;
|
|
1612
1612
|
-webkit-user-select: none;
|
|
1613
1613
|
-moz-user-select: none;
|
|
1614
1614
|
-ms-user-select: none;
|
|
@@ -1633,6 +1633,9 @@
|
|
|
1633
1633
|
min-width: 20px;
|
|
1634
1634
|
width: 20px;
|
|
1635
1635
|
}
|
|
1636
|
+
.ods-radio__checkmark--error {
|
|
1637
|
+
border-color: #f5456e;
|
|
1638
|
+
}
|
|
1636
1639
|
.ods-radio:checked ~ .ods-radio__checkmark {
|
|
1637
1640
|
border-width: 6px;
|
|
1638
1641
|
}
|
|
@@ -1647,6 +1650,7 @@
|
|
|
1647
1650
|
cursor: not-allowed;
|
|
1648
1651
|
}
|
|
1649
1652
|
.ods-radio:disabled:not(:checked) ~ .ods-radio__checkmark {
|
|
1653
|
+
background-color: white;
|
|
1650
1654
|
border-color: #ced1e1;
|
|
1651
1655
|
}
|
|
1652
1656
|
|
|
@@ -3004,6 +3008,9 @@
|
|
|
3004
3008
|
.ods-list .ods-card-list-action:not(:last-of-type) {
|
|
3005
3009
|
border-bottom: 1px solid #e0e2ee;
|
|
3006
3010
|
}
|
|
3011
|
+
.ods-list .ods-list-selectable__root:last-of-type .ods-list-selectable__root--text--divider {
|
|
3012
|
+
display: none;
|
|
3013
|
+
}
|
|
3007
3014
|
|
|
3008
3015
|
.ods-transaction-list-item__icon {
|
|
3009
3016
|
align-items: center;
|
|
@@ -5935,6 +5942,71 @@
|
|
|
5935
5942
|
text-decoration: line-through;
|
|
5936
5943
|
}
|
|
5937
5944
|
|
|
5945
|
+
.ods-list-selectable__indicator {
|
|
5946
|
+
margin-left: 12px;
|
|
5947
|
+
}
|
|
5948
|
+
.ods-list-selectable__indicator--app {
|
|
5949
|
+
margin-right: 8px;
|
|
5950
|
+
}
|
|
5951
|
+
.ods-list-selectable .ods-checkbox__root,
|
|
5952
|
+
.ods-list-selectable .ods-radio__root {
|
|
5953
|
+
align-items: center;
|
|
5954
|
+
background-color: white;
|
|
5955
|
+
padding: 16px;
|
|
5956
|
+
}
|
|
5957
|
+
.ods-list-selectable .ods-checkbox__root:hover, .ods-list-selectable .ods-checkbox__root:focus,
|
|
5958
|
+
.ods-list-selectable .ods-radio__root:hover,
|
|
5959
|
+
.ods-list-selectable .ods-radio__root:focus {
|
|
5960
|
+
background-color: #f3f5fe;
|
|
5961
|
+
cursor: pointer;
|
|
5962
|
+
}
|
|
5963
|
+
.ods-list-selectable .ods-checkbox__label,
|
|
5964
|
+
.ods-list-selectable .ods-radio__label {
|
|
5965
|
+
align-items: center;
|
|
5966
|
+
display: flex;
|
|
5967
|
+
padding-left: 16px;
|
|
5968
|
+
width: 100%;
|
|
5969
|
+
}
|
|
5970
|
+
.ods-list-selectable--loading {
|
|
5971
|
+
cursor: default;
|
|
5972
|
+
display: flex;
|
|
5973
|
+
flex-direction: column;
|
|
5974
|
+
gap: 8px;
|
|
5975
|
+
pointer-events: none;
|
|
5976
|
+
}
|
|
5977
|
+
.ods-list-selectable--app .ods-checkbox__root,
|
|
5978
|
+
.ods-list-selectable--app .ods-radio__root {
|
|
5979
|
+
display: flex;
|
|
5980
|
+
flex-direction: row-reverse;
|
|
5981
|
+
}
|
|
5982
|
+
|
|
5983
|
+
.ods-list-selectable--disabled {
|
|
5984
|
+
background-color: transparent;
|
|
5985
|
+
cursor: not-allowed;
|
|
5986
|
+
}
|
|
5987
|
+
.ods-list-selectable--disabled .ods-checkbox__root:hover, .ods-list-selectable--disabled .ods-checkbox__root:focus,
|
|
5988
|
+
.ods-list-selectable--disabled .ods-radio__root:hover,
|
|
5989
|
+
.ods-list-selectable--disabled .ods-radio__root:focus {
|
|
5990
|
+
background-color: transparent;
|
|
5991
|
+
cursor: not-allowed;
|
|
5992
|
+
}
|
|
5993
|
+
|
|
5994
|
+
.ods-list-selectable__root {
|
|
5995
|
+
overflow: hidden;
|
|
5996
|
+
}
|
|
5997
|
+
.ods-list-selectable__root--card {
|
|
5998
|
+
border: 1px solid #e0e2ee;
|
|
5999
|
+
border-radius: 8px;
|
|
6000
|
+
}
|
|
6001
|
+
.ods-list-selectable__root--card--error {
|
|
6002
|
+
border-color: #f5456e;
|
|
6003
|
+
}
|
|
6004
|
+
.ods-list-selectable__root--text--divider {
|
|
6005
|
+
background-color: #e0e2ee;
|
|
6006
|
+
height: 1px;
|
|
6007
|
+
margin: 0 16px;
|
|
6008
|
+
}
|
|
6009
|
+
|
|
5938
6010
|
.ods-card-list-action {
|
|
5939
6011
|
align-items: center;
|
|
5940
6012
|
background-color: white;
|