Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Performance
- Drop usages of `FelaTheme` component and use `React.Context` to get `theme` directly @layershifter ([#1163](https://github.com/stardust-ui/react/pull/1163))
- Use `tslib` to replace helpers with their imports, reduces bundle size @layershifter ([#1184](https://github.com/stardust-ui/react/pull/1184))

### Features
- Add `Reaction` variables to Teams dark and HOC themes @mnajdova ([#1152](https://github.com/stardust-ui/react/pull/1152))
Expand Down
1 change: 1 addition & 0 deletions build/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"types": ["node", "jest"],
"typeRoots": ["../types", "../node_modules/@types"],
"jsx": "react",
"importHelpers": true,
"moduleResolution": "node",
"sourceMap": true,
"allowJs": false,
Expand Down
2 changes: 1 addition & 1 deletion build/tsconfig.es.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "./tsconfig.common.json",
"compilerOptions": {
"module": "esnext",
"module": "esnext"
}
}
3 changes: 2 additions & 1 deletion packages/react-component-event-listener/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"author": "Oleksandr Fediashov <a@fedyashov.com>",
"bugs": "https://github.com/stardust-ui/react/issues",
"dependencies": {
"prop-types": "^15.6.1"
"prop-types": "^15.6.1",
"tslib": "^1.9.3"
},
"files": [
"dist"
Expand Down
3 changes: 2 additions & 1 deletion packages/react-component-nesting-registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"author": "Oleksandr Fediashov <a@fedyashov.com>",
"bugs": "https://github.com/stardust-ui/react/issues",
"dependencies": {
"prop-types": "^15.6.1"
"prop-types": "^15.6.1",
"tslib": "^1.9.3"
},
"files": [
"dist"
Expand Down
3 changes: 2 additions & 1 deletion packages/react-proptypes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"bugs": "https://github.com/stardust-ui/react/issues",
"dependencies": {
"lodash": "^4.17.11",
"prop-types": "^15.6.1"
"prop-types": "^15.6.1",
"tslib": "^1.9.3"
},
"files": [
"dist"
Expand Down
3 changes: 2 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"prop-types": "^15.6.1",
"react-fela": "^10.2.0",
"react-is": "^16.6.3",
"react-popper": "^1.3.2"
"react-popper": "^1.3.2",
"tslib": "^1.9.3"
},
"files": [
"dist"
Expand Down