@useblu/ocean-core 1.72.0 → 1.73.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 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.73.0](https://github.com/ocean-ds/ocean-web/compare/v1.72.0...v1.73.0) (2024-12-26)
7
+
8
+ ### Features
9
+
10
+ - add disabled text list item ([#1125](https://github.com/ocean-ds/ocean-web/issues/1125)) ([56e6bba](https://github.com/ocean-ds/ocean-web/commit/56e6bba63a60f55798de64d9abdeb16340269d16))
11
+
6
12
  # [1.72.0](https://github.com/ocean-ds/ocean-web/compare/v1.71.0...v1.72.0) (2024-12-06)
7
13
 
8
14
  ### Features
package/ocean.css CHANGED
@@ -1630,6 +1630,8 @@
1630
1630
  box-sizing: border-box;
1631
1631
  cursor: pointer;
1632
1632
  height: 20px;
1633
+ min-height: 20px;
1634
+ min-width: 20px;
1633
1635
  width: 20px;
1634
1636
  }
1635
1637
  .ods-radio:checked ~ .ods-radio__checkmark {
@@ -3206,6 +3208,7 @@
3206
3208
  align-items: center;
3207
3209
  background-color: white;
3208
3210
  padding: 16px;
3211
+ width: 100%;
3209
3212
  }
3210
3213
  .ods-text-list-item-selectable .ods-checkbox__root:hover, .ods-text-list-item-selectable .ods-checkbox__root:focus,
3211
3214
  .ods-text-list-item-selectable .ods-radio__root:hover,
@@ -3219,6 +3222,17 @@
3219
3222
  width: 100%;
3220
3223
  }
3221
3224
 
3225
+ .ods-text-list-item-selectable--disabled {
3226
+ background-color: transparent;
3227
+ cursor: not-allowed;
3228
+ }
3229
+ .ods-text-list-item-selectable--disabled .ods-checkbox__root:hover, .ods-text-list-item-selectable--disabled .ods-checkbox__root:focus,
3230
+ .ods-text-list-item-selectable--disabled .ods-radio__root:hover,
3231
+ .ods-text-list-item-selectable--disabled .ods-radio__root:focus {
3232
+ background-color: transparent;
3233
+ cursor: not-allowed;
3234
+ }
3235
+
3222
3236
  .ods-text-list-item {
3223
3237
  align-items: center;
3224
3238
  align-items: flex-start;
@@ -3283,6 +3297,16 @@
3283
3297
  max-height: 20px;
3284
3298
  }
3285
3299
 
3300
+ .ods-text-list-item__default-content--disabled {
3301
+ cursor: not-allowed;
3302
+ }
3303
+ .ods-text-list-item__default-content--disabled .ods-typography__paragraph {
3304
+ color: #aaadc0;
3305
+ }
3306
+ .ods-text-list-item__default-content--disabled .ods-typography__description {
3307
+ color: #ced1e1;
3308
+ }
3309
+
3286
3310
  .ods-text-list-item--button {
3287
3311
  background-color: transparent;
3288
3312
  border: hidden;