1
0
Fork 0

🔖 v2.0.2

- Added bandLength option to fit optiongroup (it was missing)

 - [#104](https://github.com/freesewing/freesewing.org/issues/104): Changed `onDragEnd` to `onChangeCommitted` in slider element (change in material-ui API when slider came out of beta)
 - Workbench now also lets you preload a `withBreasts` set of measurements
 - DraftConfigurator now properly styles pattern options 3 levels deep
 - [#105](https://github.com/freesewing/freesewing.org/issues/105): Moved state change in render loop to useEffect

 - Updated dependencies

 - Added missing `file-saver` dependency

 - Updated styles for DraftConfigurator component for pattern options 3 levels deep

 - [#90](https://github.com/freesewing/freesewing/issues/90): Added missing option translations for Benjamin, Florent, Sandy, Shin, and Theo

 - [#76](https://github.com/freesewing/freesewing.org/issues/76): Fixed a typo in Jaeger that was causing the side vent length to be wrong

 - [#100](https://github.com/freesewing/freesewing.org/issues/100): Updated simon with more sensible defaults for ease options
This commit is contained in:
Joost De Cock 2019-09-06 19:05:07 +02:00
parent 968ac14e60
commit 48c83f1710
132 changed files with 1188 additions and 882 deletions

View file

@ -6,6 +6,14 @@
**Note:** Version bump only for package components
## 2.0.2 (2019-09-06)
### Fixed
- [#104](https://github.com/freesewing/freesewing.org/issues/104): Changed `onDragEnd` to `onChangeCommitted` in slider element (change in material-ui API when slider came out of beta)
- Workbench now also lets you preload a `withBreasts` set of measurements
- DraftConfigurator now properly styles pattern options 3 levels deep
- [#105](https://github.com/freesewing/freesewing.org/issues/105): Moved state change in render loop to useEffect
## 2.0.1 (2019-09-01)
**Note:** Version bump only for package components

View file

@ -1,6 +1,6 @@
{
"name": "@freesewing/components",
"version": "2.0.1",
"version": "2.0.2",
"description": "A collection of React components for FreeSewing web UIs",
"author": "Joost De Cock <joost@decock.org> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@ -28,18 +28,18 @@
"peerDependencies": {
"react": "^16.8",
"prop-types": "15.7.2",
"@freesewing/pattern-info": "^2.0.1",
"@freesewing/mui-theme": "^2.0.1",
"@freesewing/css-theme": "^2.0.1",
"@freesewing/plugin-theme": "^2.0.1",
"@freesewing/core": "^2.0.1",
"@freesewing/models": "^2.0.1",
"@freesewing/examples": "^2.0.1",
"@freesewing/rendertest": "^2.0.1",
"@freesewing/tutorial": "^2.0.1",
"@freesewing/pattern-info": "^2.0.2",
"@freesewing/mui-theme": "^2.0.2",
"@freesewing/css-theme": "^2.0.2",
"@freesewing/plugin-theme": "^2.0.2",
"@freesewing/core": "^2.0.2",
"@freesewing/models": "^2.0.2",
"@freesewing/examples": "^2.0.2",
"@freesewing/rendertest": "^2.0.2",
"@freesewing/tutorial": "^2.0.2",
"typeface-roboto-condensed": "latest",
"@freesewing/i18n": "^2.0.1",
"@freesewing/utils": "^2.0.1",
"@freesewing/i18n": "^2.0.2",
"@freesewing/utils": "^2.0.2",
"react-intl": "^2.8.0",
"@material-ui/core": "^4.0.1",
"@material-ui/icons": "^4.0.1",
@ -71,7 +71,7 @@
],
"publishConfig": {
"access": "public",
"tag": "beta"
"tag": "latest"
},
"engines": {
"node": ">=8.0.0",