@useblu/ocean-core 1.139.0 → 1.139.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 +6 -0
- package/ocean.css +21 -12
- 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.139.1](https://github.com/ocean-ds/ocean-web/compare/v1.139.0...v1.139.1) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **core:** MR-772 calendário do DateRange/DatePicker na largura dos dois campos ([#1257](https://github.com/ocean-ds/ocean-web/issues/1257)) ([0e533a5](https://github.com/ocean-ds/ocean-web/commit/0e533a55eed990e8a0bdd9f9c871934825362d3e))
|
|
11
|
+
|
|
6
12
|
# [1.139.0](https://github.com/ocean-ds/ocean-web/compare/v1.138.0...v1.139.0) (2026-09-17)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -4452,7 +4452,17 @@
|
|
|
4452
4452
|
width: 100%;
|
|
4453
4453
|
}
|
|
4454
4454
|
.ods-date__calendar-container {
|
|
4455
|
+
left: 0;
|
|
4456
|
+
position: absolute;
|
|
4457
|
+
right: 0;
|
|
4458
|
+
top: 100%;
|
|
4459
|
+
width: 100%;
|
|
4460
|
+
z-index: 1;
|
|
4461
|
+
}
|
|
4462
|
+
.ods-date__calendar-container--inline {
|
|
4455
4463
|
position: relative;
|
|
4464
|
+
top: auto;
|
|
4465
|
+
z-index: auto;
|
|
4456
4466
|
}
|
|
4457
4467
|
.ods-date:active, .ods-date:focus,
|
|
4458
4468
|
.ods-date *:active,
|
|
@@ -4463,9 +4473,11 @@
|
|
|
4463
4473
|
display: grid;
|
|
4464
4474
|
gap: 8px;
|
|
4465
4475
|
grid-template-columns: repeat(2, 1fr);
|
|
4476
|
+
position: relative;
|
|
4466
4477
|
width: 100%;
|
|
4467
4478
|
}
|
|
4468
4479
|
.ods-date__form-row-datepicker {
|
|
4480
|
+
position: relative;
|
|
4469
4481
|
width: 100%;
|
|
4470
4482
|
}
|
|
4471
4483
|
.ods-date__form-controls {
|
|
@@ -4473,12 +4485,15 @@
|
|
|
4473
4485
|
margin: 0;
|
|
4474
4486
|
}
|
|
4475
4487
|
.ods-date__form-controls > label {
|
|
4488
|
+
align-items: center;
|
|
4476
4489
|
color: #67697a;
|
|
4490
|
+
display: flex;
|
|
4477
4491
|
font-family: "Nunito Sans";
|
|
4478
4492
|
font-size: 14px;
|
|
4479
4493
|
font-weight: 400;
|
|
4480
4494
|
line-height: 15px;
|
|
4481
|
-
margin: 0
|
|
4495
|
+
margin: 0 4px 8px 0;
|
|
4496
|
+
min-height: 22px;
|
|
4482
4497
|
padding: 0;
|
|
4483
4498
|
text-transform: none;
|
|
4484
4499
|
}
|
|
@@ -4506,19 +4521,18 @@
|
|
|
4506
4521
|
border-radius: 12px;
|
|
4507
4522
|
box-shadow: 0 8px 16px rgba(12, 13, 20, 0.08);
|
|
4508
4523
|
box-sizing: border-box;
|
|
4509
|
-
|
|
4524
|
+
left: 0;
|
|
4525
|
+
margin: 4px 0 0;
|
|
4510
4526
|
padding: 0 0 16px;
|
|
4511
4527
|
position: absolute;
|
|
4528
|
+
right: 0;
|
|
4512
4529
|
width: 100%;
|
|
4513
4530
|
}
|
|
4514
4531
|
.ods-date__calendar .rdp-vhidden {
|
|
4515
4532
|
display: none;
|
|
4516
4533
|
}
|
|
4517
|
-
.ods-date_calendar_m1 {
|
|
4518
|
-
top:
|
|
4519
|
-
}
|
|
4520
|
-
.ods-date_calendar_m2 {
|
|
4521
|
-
top: 4px;
|
|
4534
|
+
.ods-date_calendar_m1, .ods-date_calendar_m2 {
|
|
4535
|
+
top: 0;
|
|
4522
4536
|
}
|
|
4523
4537
|
.ods-date__disabled-tooltip {
|
|
4524
4538
|
background-color: #393b47;
|
|
@@ -4558,11 +4572,6 @@
|
|
|
4558
4572
|
.ods-date__inline-calendar .rdp-vhidden {
|
|
4559
4573
|
display: none;
|
|
4560
4574
|
}
|
|
4561
|
-
@media (max-width: 321px) {
|
|
4562
|
-
.ods-date_calendar_m2 {
|
|
4563
|
-
top: 150px;
|
|
4564
|
-
}
|
|
4565
|
-
}
|
|
4566
4575
|
.ods-date__caption {
|
|
4567
4576
|
align-items: center;
|
|
4568
4577
|
color: #393b47;
|