@useblu/ocean-core 1.123.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 +12 -0
- package/ocean.css +17 -8
- 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,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.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
|
+
|
|
12
|
+
# [1.124.0](https://github.com/ocean-ds/ocean-web/compare/v1.123.0...v1.124.0) (2026-01-08)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- card list item ([#1213](https://github.com/ocean-ds/ocean-web/issues/1213)) ([1f6344b](https://github.com/ocean-ds/ocean-web/commit/1f6344bfd098f60bbc48e9c905ee406a674644fa))
|
|
17
|
+
|
|
6
18
|
# [1.123.0](https://github.com/ocean-ds/ocean-web/compare/v1.122.0...v1.123.0) (2025-12-22)
|
|
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--
|
|
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;
|
|
3407
3411
|
}
|
|
3408
|
-
.ods-progress--on-color svg
|
|
3409
|
-
|
|
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;
|
|
@@ -5216,7 +5225,7 @@
|
|
|
5216
5225
|
width: 100%;
|
|
5217
5226
|
}
|
|
5218
5227
|
.ods-card-list-item__content__title {
|
|
5219
|
-
color: #
|
|
5228
|
+
color: #393b47;
|
|
5220
5229
|
font-family: "Nunito Sans";
|
|
5221
5230
|
font-size: 16px;
|
|
5222
5231
|
font-weight: 400;
|