@useblu/ocean-core 1.139.2 → 1.139.3

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,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.3](https://github.com/ocean-ds/ocean-web/compare/v1.139.2...v1.139.3) (2026-09-18)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **drawer:** entrada da direita e empurrão coordenados com motion Gentle (MR-795) ([#1260](https://github.com/ocean-ds/ocean-web/issues/1260)) ([be61858](https://github.com/ocean-ds/ocean-web/commit/be61858efc2ac22e6085d600fa6259eb672147a8))
11
+
6
12
  ## [1.139.2](https://github.com/ocean-ds/ocean-web/compare/v1.139.1...v1.139.2) (2026-09-18)
7
13
 
8
14
  ### Bug Fixes
package/ocean.css CHANGED
@@ -5014,11 +5014,12 @@
5014
5014
  }
5015
5015
 
5016
5016
  .ods-drawer--floating {
5017
+ --ods-drawer-offset-x: 0px;
5017
5018
  border-radius: 12px;
5018
5019
  height: calc(100% - (16px * 2));
5019
5020
  overflow: hidden;
5020
5021
  top: 16px;
5021
- 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;
5022
+ transition: transform 800ms linear(0, 0.0653, 0.2121, 0.3862, 0.5547, 0.7, 0.8153, 0.9006, 0.9592, 0.9962, 1.0169, 1.0263, 1.0283, 1.0261, 1.0218, 1.0168, 1.0121, 1.0081, 1.0049, 1.0026, 1), box-shadow 800ms linear(0, 0.0653, 0.2121, 0.3862, 0.5547, 0.7, 0.8153, 0.9006, 0.9592, 0.9962, 1.0169, 1.0263, 1.0283, 1.0261, 1.0218, 1.0168, 1.0121, 1.0081, 1.0049, 1.0026, 1), visibility 0s linear 800ms;
5022
5023
  }
5023
5024
  .ods-drawer--floating.ods-drawer--right {
5024
5025
  right: 16px;
@@ -5029,8 +5030,13 @@
5029
5030
  transform: translateX(calc(-100% - 16px));
5030
5031
  }
5031
5032
  .ods-drawer--floating.ods-drawer--open {
5032
- transform: translateX(0);
5033
- transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
5033
+ transition: transform 800ms linear(0, 0.0653, 0.2121, 0.3862, 0.5547, 0.7, 0.8153, 0.9006, 0.9592, 0.9962, 1.0169, 1.0263, 1.0283, 1.0261, 1.0218, 1.0168, 1.0121, 1.0081, 1.0049, 1.0026, 1), box-shadow 800ms linear(0, 0.0653, 0.2121, 0.3862, 0.5547, 0.7, 0.8153, 0.9006, 0.9592, 0.9962, 1.0169, 1.0263, 1.0283, 1.0261, 1.0218, 1.0168, 1.0121, 1.0081, 1.0049, 1.0026, 1), visibility 0s;
5034
+ }
5035
+ .ods-drawer--floating.ods-drawer--open.ods-drawer--right {
5036
+ transform: translateX(calc(-1 * var(--ods-drawer-offset-x)));
5037
+ }
5038
+ .ods-drawer--floating.ods-drawer--open.ods-drawer--left {
5039
+ transform: translateX(var(--ods-drawer-offset-x));
5034
5040
  }
5035
5041
 
5036
5042
  .ods-drawer__content--header {