@useblu/ocean-core 1.72.0 → 1.75.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,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.75.0](https://github.com/ocean-ds/ocean-web/compare/v1.74.0...v1.75.0) (2025-01-28)
7
+
8
+ ### Features
9
+
10
+ - update button ([#1128](https://github.com/ocean-ds/ocean-web/issues/1128)) ([cade258](https://github.com/ocean-ds/ocean-web/commit/cade258f64c4a9a3dcaec1b6e80e5af3c027d6e4))
11
+
12
+ # [1.73.0](https://github.com/ocean-ds/ocean-web/compare/v1.72.0...v1.73.0) (2024-12-26)
13
+
14
+ ### Features
15
+
16
+ - 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))
17
+
6
18
  # [1.72.0](https://github.com/ocean-ds/ocean-web/compare/v1.71.0...v1.72.0) (2024-12-06)
7
19
 
8
20
  ### 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 {
@@ -2298,10 +2300,13 @@
2298
2300
  visibility: hidden;
2299
2301
  }
2300
2302
  .ods-btn:disabled, .ods-btn:disabled .ods-btn:hover {
2301
- background-color: #e0e2ee;
2303
+ background-color: #f3f5fe;
2302
2304
  color: #aaadc0;
2303
2305
  cursor: not-allowed;
2304
2306
  }
2307
+ .ods-btn--text:disabled, .ods-btn--text-critical:disabled, .ods-btn--text-tertiary:disabled, .ods-btn--text-tertiary-critical:disabled {
2308
+ background-color: transparent;
2309
+ }
2305
2310
 
2306
2311
  .ods-carousel.columns-5, .ods-carousel.columns-4, .ods-carousel.columns-3, .ods-carousel.columns-2 {
2307
2312
  overflow: hidden;
@@ -3206,6 +3211,7 @@
3206
3211
  align-items: center;
3207
3212
  background-color: white;
3208
3213
  padding: 16px;
3214
+ width: 100%;
3209
3215
  }
3210
3216
  .ods-text-list-item-selectable .ods-checkbox__root:hover, .ods-text-list-item-selectable .ods-checkbox__root:focus,
3211
3217
  .ods-text-list-item-selectable .ods-radio__root:hover,
@@ -3219,6 +3225,17 @@
3219
3225
  width: 100%;
3220
3226
  }
3221
3227
 
3228
+ .ods-text-list-item-selectable--disabled {
3229
+ background-color: transparent;
3230
+ cursor: not-allowed;
3231
+ }
3232
+ .ods-text-list-item-selectable--disabled .ods-checkbox__root:hover, .ods-text-list-item-selectable--disabled .ods-checkbox__root:focus,
3233
+ .ods-text-list-item-selectable--disabled .ods-radio__root:hover,
3234
+ .ods-text-list-item-selectable--disabled .ods-radio__root:focus {
3235
+ background-color: transparent;
3236
+ cursor: not-allowed;
3237
+ }
3238
+
3222
3239
  .ods-text-list-item {
3223
3240
  align-items: center;
3224
3241
  align-items: flex-start;
@@ -3283,6 +3300,16 @@
3283
3300
  max-height: 20px;
3284
3301
  }
3285
3302
 
3303
+ .ods-text-list-item__default-content--disabled {
3304
+ cursor: not-allowed;
3305
+ }
3306
+ .ods-text-list-item__default-content--disabled .ods-typography__paragraph {
3307
+ color: #aaadc0;
3308
+ }
3309
+ .ods-text-list-item__default-content--disabled .ods-typography__description {
3310
+ color: #ced1e1;
3311
+ }
3312
+
3286
3313
  .ods-text-list-item--button {
3287
3314
  background-color: transparent;
3288
3315
  border: hidden;