Skip to content

Commit

Permalink
Merge pull request #63 from CinCoders/develop
Browse files Browse the repository at this point in the history
Version 1.0.1
  • Loading branch information
dcruzb authored Jul 24, 2023
2 parents abda342 + 76cadd9 commit b97b75a
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 18 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2023-07-24

### Fixed

- [buffer] Buffer polyfill in webpack 5
- [MainDiv] Default height

## [1.0.0] - 2023-07-21

### Added
Expand Down Expand Up @@ -93,7 +100,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Empty SideMenu
- Issue template

[unreleased]: https://github.com/CinCoders/cinnamon/compare/version/v1.0.0...develop
[unreleased]: https://github.com/CinCoders/cinnamon/compare/version/v1.0.1...develop
[1.0.1]: https://github.com/CinCoders/cinnamon/compare/version/v1.0.0...version/v1.0.1
[1.0.0]: https://github.com/CinCoders/cinnamon/compare/version/v0.4.0...version/v1.0.0
[0.4.0]: https://github.com/CinCoders/cinnamon/compare/version/v0.3.0...version/v0.4.0
[0.3.0]: https://github.com/CinCoders/cinnamon/compare/version/v0.2.1...version/v0.3.0
Expand Down
63 changes: 48 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cincoders/cinnamon",
"version": "1.0.0",
"version": "1.0.1",
"description": "A collection components for standardized system appearance and functionality, easing development in web applications.",
"license": "MIT",
"author": "CInCoders <[email protected]> (https://cincoders.cin.ufpe.br)",
Expand Down Expand Up @@ -96,7 +96,8 @@
"react-oidc-context": "^2.2.2",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.0"
"styled-components": "^5.3.0",
"buffer": "^6.0.3"
},
"overrides": {
"chokidar": "3.5.3",
Expand Down
1 change: 1 addition & 0 deletions src/lib-components/Page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export function Page({
<MainDiv
style={{
minHeight: `calc(100vh - ${diff}px)`,
height: `calc(100vh - ${diff}px)`,
alignItems: centralized ? 'center' : 'normal',
justifyContent: centralized ? 'center' : 'normal',
flexDirection: column ? 'column' : 'row'
Expand Down
7 changes: 7 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
resolve: {
fallback: {
buffer: require.resolve('buffer')
}
}
};

0 comments on commit b97b75a

Please sign in to comment.