File tree Expand file tree Collapse file tree 9 files changed +22
-16
lines changed
Expand file tree Collapse file tree 9 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.28.1] [ ] - 2020-12-03
11+
1012### Fixed
1113
1214- Fixed ClickAwayProvider initialization error using deferred initialization.
@@ -805,3 +807,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
805807[ 0.27.0 ] : https://github.com/lumapps/design-system/tree/v0.27.0
806808[ unreleased ] : https://github.com/lumapps/design-system/compare/v0.28.0...HEAD
807809[ 0.28.0 ] : https://github.com/lumapps/design-system/tree/v0.28.0
810+ [ unreleased ] : https://github.com/lumapps/design-system/compare/v0.28.1...HEAD
811+ [ 0.28.1 ] : https://github.com/lumapps/design-system/tree/v0.28.1
Original file line number Diff line number Diff line change 1010 "message" : " chore(release): release %s"
1111 }
1212 },
13- "version" : " 0.28.0 " ,
13+ "version" : " 0.28.1 " ,
1414 "useWorkspaces" : true ,
1515 "npmClient" : " yarn"
1616}
Original file line number Diff line number Diff line change 66 "url" : " https://github.com/lumapps/design-system/issues"
77 },
88 "dependencies" : {
9- "@lumx/core" : " ^0.28.0 " ,
10- "@lumx/icons" : " ^0.28.0 " ,
9+ "@lumx/core" : " ^0.28.1 " ,
10+ "@lumx/icons" : " ^0.28.1 " ,
1111 "focus-visible" : " ^5.0.2" ,
1212 "lodash" : " 4.17.19" ,
1313 "popper.js" : " ^1.16.0"
4040 "prepare" : " install-peers" ,
4141 "prepublishOnly" : " yarn build"
4242 },
43- "version" : " 0.28.0 " ,
43+ "version" : " 0.28.1 " ,
4444 "devDependencies" : {
4545 "@babel/core" : " ^7.8.3" ,
4646 "@babel/plugin-proposal-class-properties" : " ^7.8.3" ,
Original file line number Diff line number Diff line change 4242 "prepublishOnly" : " yarn build"
4343 },
4444 "sideEffects" : false ,
45- "version" : " 0.28.0 " ,
45+ "version" : " 0.28.1 " ,
4646 "devDependencies" : {
4747 "@babel/core" : " ^7.8.3" ,
4848 "@babel/plugin-proposal-class-properties" : " ^7.8.3" ,
Original file line number Diff line number Diff line change 2121 "url" : " git+https://github.com/lumapps/design-system.git"
2222 },
2323 "sideEffects" : false ,
24- "version" : " 0.28.0 "
24+ "version" : " 0.28.1 "
2525}
Original file line number Diff line number Diff line change 66 "url" : " https://github.com/lumapps/design-system/issues"
77 },
88 "dependencies" : {
9- "@lumx/core" : " ^0.28.0 " ,
10- "@lumx/icons" : " ^0.28.0 " ,
9+ "@lumx/core" : " ^0.28.1 " ,
10+ "@lumx/icons" : " ^0.28.1 " ,
1111 "@popperjs/core" : " ^2.4.0" ,
1212 "body-scroll-lock" : " ^2.6.4" ,
1313 "classnames" : " ^2.2.6" ,
124124 "storybook" : " start-storybook -p 9000"
125125 },
126126 "sideEffects" : false ,
127- "version" : " 0.28.0 "
127+ "version" : " 0.28.1 "
128128}
Original file line number Diff line number Diff line change @@ -107,7 +107,9 @@ const ListItem: React.FC<ListItemProps> = (props) => {
107107 listItemRef,
108108 ...forwardedProps
109109 } = props ;
110- const onKeyDown = useMemo ( ( ) => ( onItemSelected ? onEnterPressed ( onItemSelected ) : undefined ) , [ onItemSelected ] ) ;
110+ const onKeyDown = useMemo ( ( ) => ( onItemSelected ? onEnterPressed ( onItemSelected as any ) : undefined ) , [
111+ onItemSelected ,
112+ ] ) ;
111113
112114 const content = (
113115 < >
Original file line number Diff line number Diff line change 11{
22 "name" : " lumx-site-demo" ,
3- "version" : " 0.28.0 " ,
3+ "version" : " 0.28.1 " ,
44 "private" : true ,
55 "description" : " The official LumApps Design System (LumX) demo site" ,
66 "bugs" : {
2020 "start" : " NODE_OPTIONS=--no-warnings gatsby develop"
2121 },
2222 "dependencies" : {
23- "@lumx/angularjs" : " ^0.28.0 " ,
24- "@lumx/core" : " ^0.28.0 " ,
25- "@lumx/icons" : " ^0.28.0 " ,
26- "@lumx/react" : " ^0.28.0 " ,
23+ "@lumx/angularjs" : " ^0.28.1 " ,
24+ "@lumx/core" : " ^0.28.1 " ,
25+ "@lumx/icons" : " ^0.28.1 " ,
26+ "@lumx/react" : " ^0.28.1 " ,
2727 "@mdx-js/mdx" : " ^1.6.19" ,
2828 "@mdx-js/react" : " ^1.6.19" ,
2929 "classnames" : " ^2.2.6" ,
Original file line number Diff line number Diff line change 1212 "main" : " generators/index.js" ,
1313 "name" : " generator-lumx-component" ,
1414 "private" : true ,
15- "version" : " 0.28.0 "
15+ "version" : " 0.28.1 "
1616}
You can’t perform that action at this time.
0 commit comments