Skip to content

Commit

Permalink
Merge pull request #43 from perimetre/3.0.7
Browse files Browse the repository at this point in the history
3.0.7
  • Loading branch information
dgonzalez-perimetre authored Jun 21, 2021
2 parents 20fc578 + 285b00b commit 3050969
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [3.0.6] - 2021-06-21
## [3.0.7] - 2021-06-21

### Changes

Modify `hideBackdrop` logic to make backdrop transparent instead of hidden

## [3.0.6] - 2021-06-21

### Added

- Added minHeight at default-present with default spacing.
Expand All @@ -39,14 +43,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [3.0.5] - 2021-06-21

### Changes

### Added

- Added `size` property to WYSIWYG input component.

### Fixed

## [3.0.4] - 2021-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perimetre/ui",
"description": "A component library made by @perimetre",
"version": "3.0.6",
"version": "3.0.7",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/ui.git"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Drawer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const DrawerWrapper: React.FC<DrawerWrapperProps> = ({

{/* The backdrop overlay that appears behind the drawer */}
<motion.div
className={classnames('z-10 fixed inset-0 bg-black', { hidden: hideBackdrop })}
className={classnames('z-10 fixed inset-0', hideBackdrop ? 'bg-transparent' : 'bg-black')}
style={
{
'--tw-bg-opacity': 0.4
Expand Down

0 comments on commit 3050969

Please sign in to comment.