@useblu/ocean-core 1.137.1 → 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 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.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
+
12
+ # [1.139.0](https://github.com/ocean-ds/ocean-web/compare/v1.138.0...v1.139.0) (2026-09-17)
13
+
14
+ ### Features
15
+
16
+ - **drawer:** props para pilha de drawers lado a lado (MR-795) ([#1259](https://github.com/ocean-ds/ocean-web/issues/1259)) ([56d1d04](https://github.com/ocean-ds/ocean-web/commit/56d1d04aaeab16c17349dafbd95e90db49591bf1))
17
+
6
18
  ## [1.137.1](https://github.com/ocean-ds/ocean-web/compare/v1.137.0...v1.137.1) (2026-09-11)
7
19
 
8
20
  ### Bug Fixes
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 0 8px;
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
- margin: 0;
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: 4px;
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;
@@ -4960,6 +4969,11 @@
4960
4969
  visibility: visible;
4961
4970
  z-index: 200;
4962
4971
  }
4972
+ .ods-overlay--transparent {
4973
+ background-color: transparent;
4974
+ opacity: 1;
4975
+ transition: none;
4976
+ }
4963
4977
 
4964
4978
  .ods-drawer {
4965
4979
  background-color: white;
@@ -5005,6 +5019,26 @@
5005
5019
  }
5006
5020
  }
5007
5021
 
5022
+ .ods-drawer--floating {
5023
+ border-radius: 12px;
5024
+ height: calc(100% - (16px * 2));
5025
+ overflow: hidden;
5026
+ top: 16px;
5027
+ transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 340ms;
5028
+ }
5029
+ .ods-drawer--floating.ods-drawer--right {
5030
+ right: 16px;
5031
+ transform: translateX(calc(100% + 16px));
5032
+ }
5033
+ .ods-drawer--floating.ods-drawer--left {
5034
+ left: 16px;
5035
+ transform: translateX(calc(-100% - 16px));
5036
+ }
5037
+ .ods-drawer--floating.ods-drawer--open {
5038
+ transform: translateX(0);
5039
+ transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
5040
+ }
5041
+
5008
5042
  .ods-drawer__content--header {
5009
5043
  display: flex;
5010
5044
  min-height: 48px;