@useblu/ocean-core 1.124.0 → 1.125.1

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.125.1](https://github.com/ocean-ds/ocean-web/compare/v1.125.0...v1.125.1) (2026-01-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adjust styles of card list item disabled ([#1219](https://github.com/ocean-ds/ocean-web/issues/1219)) ([0507e8e](https://github.com/ocean-ds/ocean-web/commit/0507e8ee03060df31843d14e6e2598d2490d98de))
11
+
12
+ # [1.125.0](https://github.com/ocean-ds/ocean-web/compare/v1.124.0...v1.125.0) (2026-01-13)
13
+
14
+ ### Features
15
+
16
+ - Introduces a new percentage property to the component to enable loading progress control. ([#1215](https://github.com/ocean-ds/ocean-web/issues/1215)) ([688bf8e](https://github.com/ocean-ds/ocean-web/commit/688bf8e260add9d6e8b042744ddd7d5ecbe686fa))
17
+
6
18
  # [1.124.0](https://github.com/ocean-ds/ocean-web/compare/v1.123.0...v1.124.0) (2026-01-08)
7
19
 
8
20
  ### Features
package/ocean.css CHANGED
@@ -3392,21 +3392,30 @@
3392
3392
  }
3393
3393
  }
3394
3394
 
3395
- .ods-progress svg {
3395
+ .ods-progress--indeterminate svg {
3396
3396
  -webkit-animation: ods-loading-animation 0.8s linear infinite;
3397
3397
  animation: ods-loading-animation 0.8s linear infinite;
3398
3398
  }
3399
- .ods-progress svg circle {
3399
+ .ods-progress--indeterminate svg circle {
3400
3400
  stroke: #b8c3ff;
3401
3401
  }
3402
- .ods-progress svg path {
3402
+ .ods-progress--indeterminate svg path {
3403
3403
  stroke: #0025e0;
3404
3404
  }
3405
- .ods-progress--on-color svg circle {
3406
- stroke: #fff;
3405
+ .ods-progress--determinate .ods-progress__track {
3406
+ stroke: #b8c3ff;
3407
+ }
3408
+ .ods-progress--determinate .ods-progress__fill {
3409
+ stroke: #0025e0;
3410
+ transition: stroke-dashoffset 0.3s ease;
3407
3411
  }
3408
- .ods-progress--on-color svg path {
3409
- stroke: #fff;
3412
+ .ods-progress--on-color svg circle,
3413
+ .ods-progress--on-color .ods-progress__track {
3414
+ stroke: rgba(255, 255, 255, 0.4);
3415
+ }
3416
+ .ods-progress--on-color svg path,
3417
+ .ods-progress--on-color .ods-progress__fill {
3418
+ stroke: white;
3410
3419
  }
3411
3420
  .ods-progress--md, .ods-progress--md svg {
3412
3421
  height: 24px;
@@ -5265,6 +5274,10 @@
5265
5274
  .ods-card-list-item--disabled .ods-card-list-item__action {
5266
5275
  color: #ced1e1;
5267
5276
  }
5277
+ .ods-card-list-item--disabled .ods-card-list-item__leading-icon svg,
5278
+ .ods-card-list-item--disabled .ods-card-list-item__action svg {
5279
+ color: #ced1e1;
5280
+ }
5268
5281
  .ods-card-list-item--size-small .ods-card-list-item__content__title {
5269
5282
  font-size: 14px;
5270
5283
  }