@useblu/ocean-core 1.43.0 → 1.44.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 +12 -4
- 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.44.0](https://github.com/ocean-ds/ocean-web/compare/v1.43.0...v1.44.0) (2023-06-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add attach mode to drawer ([#1067](https://github.com/ocean-ds/ocean-web/issues/1067)) ([2edfd28](https://github.com/ocean-ds/ocean-web/commit/2edfd28eb6ba53242b83d656f8c4f455e2ba5da9))
|
|
11
|
+
|
|
6
12
|
# [1.43.0](https://github.com/ocean-ds/ocean-web/compare/v1.42.0...v1.43.0) (2023-02-24)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3739,6 +3739,7 @@
|
|
|
3739
3739
|
background-color: rgba(0, 0, 0, 0.5);
|
|
3740
3740
|
height: 100%;
|
|
3741
3741
|
opacity: 0;
|
|
3742
|
+
overflow: hidden;
|
|
3742
3743
|
position: fixed;
|
|
3743
3744
|
right: 0;
|
|
3744
3745
|
top: 0;
|
|
@@ -3758,16 +3759,23 @@
|
|
|
3758
3759
|
flex-direction: column;
|
|
3759
3760
|
flex-shrink: 0;
|
|
3760
3761
|
height: 100%;
|
|
3761
|
-
left: auto;
|
|
3762
3762
|
outline: 0;
|
|
3763
|
-
position:
|
|
3764
|
-
right: 0;
|
|
3763
|
+
position: absolute;
|
|
3765
3764
|
top: 0;
|
|
3766
|
-
transform: translateX(100%);
|
|
3767
3765
|
transition: all 335ms ease-out 0ms;
|
|
3768
3766
|
visibility: hidden;
|
|
3769
3767
|
width: 378px;
|
|
3770
3768
|
}
|
|
3769
|
+
.ods-drawer--right {
|
|
3770
|
+
left: auto;
|
|
3771
|
+
right: 0;
|
|
3772
|
+
transform: translateX(100%);
|
|
3773
|
+
}
|
|
3774
|
+
.ods-drawer--left {
|
|
3775
|
+
left: 0;
|
|
3776
|
+
right: auto;
|
|
3777
|
+
transform: translateX(-100%);
|
|
3778
|
+
}
|
|
3771
3779
|
.ods-drawer--open {
|
|
3772
3780
|
box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
3773
3781
|
transform: translateX(0);
|