@useblu/ocean-core 1.124.0 → 1.125.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 +16 -7
- 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.125.0](https://github.com/ocean-ds/ocean-web/compare/v1.124.0...v1.125.0) (2026-01-13)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- 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))
|
|
11
|
+
|
|
6
12
|
# [1.124.0](https://github.com/ocean-ds/ocean-web/compare/v1.123.0...v1.124.0) (2026-01-08)
|
|
7
13
|
|
|
8
14
|
### 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--
|
|
3406
|
-
stroke: #
|
|
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;
|
|
3411
|
+
}
|
|
3412
|
+
.ods-progress--on-color svg circle,
|
|
3413
|
+
.ods-progress--on-color .ods-progress__track {
|
|
3414
|
+
stroke: rgba(255, 255, 255, 0.4);
|
|
3407
3415
|
}
|
|
3408
|
-
.ods-progress--on-color svg path
|
|
3409
|
-
|
|
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;
|