@useblu/ocean-core 1.139.1 → 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,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.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
+
12
+ ## [1.139.2](https://github.com/ocean-ds/ocean-web/compare/v1.139.1...v1.139.2) (2026-09-18)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **tag:** tipografia definida só pelo size e highlight neutral em brandPrimaryPure (MR-802) ([#1258](https://github.com/ocean-ds/ocean-web/issues/1258)) ([2167d99](https://github.com/ocean-ds/ocean-web/commit/2167d99da9383c40e1499d24dcb18648f50ab6a6))
17
+
6
18
  ## [1.139.1](https://github.com/ocean-ds/ocean-web/compare/v1.139.0...v1.139.1) (2026-09-18)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -3777,19 +3777,13 @@
3777
3777
  }
3778
3778
  .ods-tag--highlight__important {
3779
3779
  color: white;
3780
- font-size: 10px;
3781
- font-weight: 800;
3782
- line-height: 10px;
3783
3780
  padding: 4px 8px;
3784
3781
  background-color: #ff726e;
3785
3782
  }
3786
3783
  .ods-tag--highlight__neutral {
3787
3784
  color: white;
3788
- font-size: 10px;
3789
- font-weight: 800;
3790
- line-height: 10px;
3791
3785
  padding: 4px 8px;
3792
- background-color: #5872f5;
3786
+ background-color: #0025e0;
3793
3787
  }
3794
3788
  .ods-tag--negative {
3795
3789
  background-color: #fff1f4;
@@ -5020,11 +5014,12 @@
5020
5014
  }
5021
5015
 
5022
5016
  .ods-drawer--floating {
5017
+ --ods-drawer-offset-x: 0px;
5023
5018
  border-radius: 12px;
5024
5019
  height: calc(100% - (16px * 2));
5025
5020
  overflow: hidden;
5026
5021
  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;
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;
5028
5023
  }
5029
5024
  .ods-drawer--floating.ods-drawer--right {
5030
5025
  right: 16px;
@@ -5035,8 +5030,13 @@
5035
5030
  transform: translateX(calc(-100% - 16px));
5036
5031
  }
5037
5032
  .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;
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));
5040
5040
  }
5041
5041
 
5042
5042
  .ods-drawer__content--header {