@useblu/ocean-core 1.129.0 → 1.131.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 +39 -0
- 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.131.0](https://github.com/ocean-ds/ocean-web/compare/v1.130.0...v1.131.0) (2026-03-03)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- update data picker ([#1229](https://github.com/ocean-ds/ocean-web/issues/1229)) ([ac6c26c](https://github.com/ocean-ds/ocean-web/commit/ac6c26cd1199f556c0bc3d48f94408b8916c09cd))
|
|
11
|
+
|
|
12
|
+
# [1.130.0](https://github.com/ocean-ds/ocean-web/compare/v1.129.0...v1.130.0) (2026-02-12)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add action badge color on cardgroup ([#1226](https://github.com/ocean-ds/ocean-web/issues/1226)) ([527aaa4](https://github.com/ocean-ds/ocean-web/commit/527aaa494be3914d60b3046c63b0763f88909cc2))
|
|
17
|
+
|
|
6
18
|
# [1.129.0](https://github.com/ocean-ds/ocean-web/compare/v1.128.1...v1.129.0) (2026-02-05)
|
|
7
19
|
|
|
8
20
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2178,6 +2178,9 @@
|
|
|
2178
2178
|
.ods-badge--neutral .ods-badge__content {
|
|
2179
2179
|
background-color: #aaadc0;
|
|
2180
2180
|
}
|
|
2181
|
+
.ods-badge--highlight .ods-badge__content {
|
|
2182
|
+
background-color: #ff726e;
|
|
2183
|
+
}
|
|
2181
2184
|
|
|
2182
2185
|
.ods-btn {
|
|
2183
2186
|
border: 0;
|
|
@@ -4442,6 +4445,42 @@
|
|
|
4442
4445
|
.ods-date_calendar_m2 {
|
|
4443
4446
|
top: 72px;
|
|
4444
4447
|
}
|
|
4448
|
+
.ods-date__disabled-tooltip {
|
|
4449
|
+
background-color: #393b47;
|
|
4450
|
+
border-radius: 8px;
|
|
4451
|
+
box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
|
|
4452
|
+
color: white;
|
|
4453
|
+
font-family: "Nunito Sans";
|
|
4454
|
+
font-size: 12px;
|
|
4455
|
+
font-weight: 400;
|
|
4456
|
+
line-height: 1.5;
|
|
4457
|
+
margin: 0 16px;
|
|
4458
|
+
padding: 12px 16px;
|
|
4459
|
+
position: absolute;
|
|
4460
|
+
text-align: center;
|
|
4461
|
+
top: 68px;
|
|
4462
|
+
z-index: 10;
|
|
4463
|
+
}
|
|
4464
|
+
.ods-date__disabled-tooltip::after {
|
|
4465
|
+
border: 7px solid transparent;
|
|
4466
|
+
border-top-color: #393b47;
|
|
4467
|
+
bottom: -14px;
|
|
4468
|
+
content: "";
|
|
4469
|
+
left: 50%;
|
|
4470
|
+
position: absolute;
|
|
4471
|
+
transform: translateX(-50%);
|
|
4472
|
+
}
|
|
4473
|
+
.ods-date__inline-calendar {
|
|
4474
|
+
background-color: white;
|
|
4475
|
+
border-radius: 12px;
|
|
4476
|
+
box-sizing: border-box;
|
|
4477
|
+
margin: 0;
|
|
4478
|
+
padding: 0 0 16px;
|
|
4479
|
+
width: 100%;
|
|
4480
|
+
}
|
|
4481
|
+
.ods-date__inline-calendar .rdp-vhidden {
|
|
4482
|
+
display: none;
|
|
4483
|
+
}
|
|
4445
4484
|
@media (max-width: 321px) {
|
|
4446
4485
|
.ods-date_calendar_m2 {
|
|
4447
4486
|
top: 150px;
|