@useblu/ocean-core 1.139.2 → 1.139.4
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 +12 -0
- package/ocean.css +13 -3
- 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,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.4](https://github.com/ocean-ds/ocean-web/compare/v1.139.3...v1.139.4) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **drawer:** overlay transparente não intercepta o ponteiro (MR-795) ([#1261](https://github.com/ocean-ds/ocean-web/issues/1261)) ([a8fe950](https://github.com/ocean-ds/ocean-web/commit/a8fe950ae37848acf5d1897c5b412e024c8db97d))
|
|
11
|
+
|
|
12
|
+
## [1.139.3](https://github.com/ocean-ds/ocean-web/compare/v1.139.2...v1.139.3) (2026-09-18)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **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))
|
|
17
|
+
|
|
6
18
|
## [1.139.2](https://github.com/ocean-ds/ocean-web/compare/v1.139.1...v1.139.2) (2026-09-18)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -4966,8 +4966,12 @@
|
|
|
4966
4966
|
.ods-overlay--transparent {
|
|
4967
4967
|
background-color: transparent;
|
|
4968
4968
|
opacity: 1;
|
|
4969
|
+
pointer-events: none;
|
|
4969
4970
|
transition: none;
|
|
4970
4971
|
}
|
|
4972
|
+
.ods-overlay--transparent > .ods-drawer {
|
|
4973
|
+
pointer-events: auto;
|
|
4974
|
+
}
|
|
4971
4975
|
|
|
4972
4976
|
.ods-drawer {
|
|
4973
4977
|
background-color: white;
|
|
@@ -5014,11 +5018,12 @@
|
|
|
5014
5018
|
}
|
|
5015
5019
|
|
|
5016
5020
|
.ods-drawer--floating {
|
|
5021
|
+
--ods-drawer-offset-x: 0px;
|
|
5017
5022
|
border-radius: 12px;
|
|
5018
5023
|
height: calc(100% - (16px * 2));
|
|
5019
5024
|
overflow: hidden;
|
|
5020
5025
|
top: 16px;
|
|
5021
|
-
transition: transform
|
|
5026
|
+
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
5027
|
}
|
|
5023
5028
|
.ods-drawer--floating.ods-drawer--right {
|
|
5024
5029
|
right: 16px;
|
|
@@ -5029,8 +5034,13 @@
|
|
|
5029
5034
|
transform: translateX(calc(-100% - 16px));
|
|
5030
5035
|
}
|
|
5031
5036
|
.ods-drawer--floating.ods-drawer--open {
|
|
5032
|
-
|
|
5033
|
-
|
|
5037
|
+
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;
|
|
5038
|
+
}
|
|
5039
|
+
.ods-drawer--floating.ods-drawer--open.ods-drawer--right {
|
|
5040
|
+
transform: translateX(calc(-1 * var(--ods-drawer-offset-x)));
|
|
5041
|
+
}
|
|
5042
|
+
.ods-drawer--floating.ods-drawer--open.ods-drawer--left {
|
|
5043
|
+
transform: translateX(var(--ods-drawer-offset-x));
|
|
5034
5044
|
}
|
|
5035
5045
|
|
|
5036
5046
|
.ods-drawer__content--header {
|