@useblu/ocean-core 1.130.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 +6 -0
- package/ocean.css +36 -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,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.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
|
+
|
|
6
12
|
# [1.130.0](https://github.com/ocean-ds/ocean-web/compare/v1.129.0...v1.130.0) (2026-02-12)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -4445,6 +4445,42 @@
|
|
|
4445
4445
|
.ods-date_calendar_m2 {
|
|
4446
4446
|
top: 72px;
|
|
4447
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
|
+
}
|
|
4448
4484
|
@media (max-width: 321px) {
|
|
4449
4485
|
.ods-date_calendar_m2 {
|
|
4450
4486
|
top: 150px;
|