@useblu/ocean-core 1.137.1 → 1.139.0
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 +25 -0
- 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.0](https://github.com/ocean-ds/ocean-web/compare/v1.138.0...v1.139.0) (2026-09-17)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **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))
|
|
11
|
+
|
|
6
12
|
## [1.137.1](https://github.com/ocean-ds/ocean-web/compare/v1.137.0...v1.137.1) (2026-09-11)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -4960,6 +4960,11 @@
|
|
|
4960
4960
|
visibility: visible;
|
|
4961
4961
|
z-index: 200;
|
|
4962
4962
|
}
|
|
4963
|
+
.ods-overlay--transparent {
|
|
4964
|
+
background-color: transparent;
|
|
4965
|
+
opacity: 1;
|
|
4966
|
+
transition: none;
|
|
4967
|
+
}
|
|
4963
4968
|
|
|
4964
4969
|
.ods-drawer {
|
|
4965
4970
|
background-color: white;
|
|
@@ -5005,6 +5010,26 @@
|
|
|
5005
5010
|
}
|
|
5006
5011
|
}
|
|
5007
5012
|
|
|
5013
|
+
.ods-drawer--floating {
|
|
5014
|
+
border-radius: 12px;
|
|
5015
|
+
height: calc(100% - (16px * 2));
|
|
5016
|
+
overflow: hidden;
|
|
5017
|
+
top: 16px;
|
|
5018
|
+
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;
|
|
5019
|
+
}
|
|
5020
|
+
.ods-drawer--floating.ods-drawer--right {
|
|
5021
|
+
right: 16px;
|
|
5022
|
+
transform: translateX(calc(100% + 16px));
|
|
5023
|
+
}
|
|
5024
|
+
.ods-drawer--floating.ods-drawer--left {
|
|
5025
|
+
left: 16px;
|
|
5026
|
+
transform: translateX(calc(-100% - 16px));
|
|
5027
|
+
}
|
|
5028
|
+
.ods-drawer--floating.ods-drawer--open {
|
|
5029
|
+
transform: translateX(0);
|
|
5030
|
+
transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
|
|
5031
|
+
}
|
|
5032
|
+
|
|
5008
5033
|
.ods-drawer__content--header {
|
|
5009
5034
|
display: flex;
|
|
5010
5035
|
min-height: 48px;
|