@hipay/hipay-material-ui 1.0.0-beta.8 → 2.0.0-beta.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1922 -21
- package/HiAlertModal/HiAlertModal.js +185 -210
- package/HiAlertModal/index.js +6 -7
- package/HiAppBar/HiAppBar.js +199 -0
- package/HiAppBar/index.js +15 -0
- package/HiBadge/HiBadge.js +119 -95
- package/HiBadge/index.js +6 -7
- package/HiBreadcrumb/HiBreadcrumb.js +90 -115
- package/HiBreadcrumb/HiStep.js +155 -98
- package/HiBreadcrumb/HiStepConnector.js +170 -109
- package/HiBreadcrumb/HiStepContent.js +108 -0
- package/HiBreadcrumb/HiStepIcon.js +166 -123
- package/HiBreadcrumb/HiStepLabel.js +209 -172
- package/HiBreadcrumb/HiStepper.js +76 -104
- package/HiBreadcrumb/index.js +6 -7
- package/HiButton/HiButton.js +192 -136
- package/HiButton/index.js +6 -7
- package/HiCheckbox/HiCheckbox.js +190 -147
- package/HiCheckbox/index.js +6 -7
- package/HiChip/HiChip.js +254 -174
- package/HiChip/HiChipSwitch.js +279 -289
- package/HiChip/index.js +10 -12
- package/HiColoredLabel/HiColoredLabel.js +179 -100
- package/HiColoredLabel/index.js +6 -7
- package/HiDatePicker/Caption.js +77 -82
- package/HiDatePicker/Caption.spec.js +88 -0
- package/HiDatePicker/HiDatePicker.js +369 -373
- package/HiDatePicker/ListPicker.js +137 -148
- package/HiDatePicker/ListPicker.spec.js +68 -0
- package/HiDatePicker/NavBar.js +146 -0
- package/HiDatePicker/NavBar.spec.js +56 -0
- package/HiDatePicker/Overlays/CustomOverlayLayout.js +113 -132
- package/HiDatePicker/Overlays/MonthPickerOverlay.js +95 -115
- package/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +74 -0
- package/HiDatePicker/Overlays/Overlay.js +102 -94
- package/HiDatePicker/Overlays/Overlay.spec.js +38 -0
- package/HiDatePicker/Overlays/TimePickerOverlay.js +242 -281
- package/HiDatePicker/Overlays/TimePickerOverlay.spec.js +71 -0
- package/HiDatePicker/Overlays/YearPickerOverlay.js +124 -144
- package/HiDatePicker/Overlays/YearPickerOverlay.spec.js +127 -0
- package/HiDatePicker/Overlays/index.js +22 -27
- package/HiDatePicker/Weekday.js +20 -23
- package/HiDatePicker/stylesheet.js +198 -181
- package/HiExpansionPanel/HiExpansionPanel.js +153 -204
- package/HiExpansionPanel/index.js +6 -7
- package/HiForm/HiEmailField.js +90 -102
- package/HiForm/HiFormControl.js +319 -341
- package/HiForm/HiFormLabel.js +129 -152
- package/HiForm/HiInput.js +519 -481
- package/HiForm/HiPasswordField.js +93 -103
- package/HiForm/HiSearchField.js +158 -163
- package/HiForm/HiTextField.js +143 -134
- package/HiForm/index.js +30 -37
- package/HiIcon/HiIcon.js +194 -0
- package/HiIcon/index.js +15 -0
- package/HiIconButton/HiIconButton.js +120 -0
- package/HiIconButton/index.js +15 -0
- package/HiLoader/HiLoader.js +53 -39
- package/HiLoader/index.js +6 -7
- package/HiPin/HiPin.js +117 -0
- package/HiPin/index.js +15 -0
- package/HiSelect/HiSelect.js +901 -744
- package/HiSelect/HiSelectField.js +88 -104
- package/HiSelect/HiSuggestSelect.js +288 -240
- package/HiSelect/HiSuggestSelectField.js +76 -92
- package/HiSelect/SelectInput.js +293 -298
- package/HiSelect/index.js +34 -28
- package/HiSelectNew/HiDynamicSelect.js +238 -0
- package/HiSelectNew/HiNestedSelect.js +453 -0
- package/HiSelectNew/HiSelect.js +698 -0
- package/HiSelectNew/HiSelectField.js +146 -0
- package/HiSelectNew/HiSelectInput.js +349 -0
- package/HiSelectNew/index.js +39 -0
- package/HiSelectableList/HiSelectableList.js +188 -228
- package/HiSelectableList/HiSelectableListHierarchic.js +233 -0
- package/HiSelectableList/HiSelectableListItem.js +430 -521
- package/HiSelectableList/index.js +18 -12
- package/HiSwitch/HiSwitch.js +228 -200
- package/HiSwitch/HiSwitchState.js +206 -216
- package/HiSwitch/index.js +9 -17
- package/README.md +100 -185
- package/es/HiAlertModal/HiAlertModal.js +158 -173
- package/es/HiAppBar/HiAppBar.js +151 -0
- package/es/HiAppBar/index.js +1 -0
- package/es/HiBadge/HiBadge.js +106 -64
- package/es/HiBreadcrumb/HiBreadcrumb.js +58 -59
- package/es/HiBreadcrumb/HiStep.js +112 -80
- package/es/HiBreadcrumb/HiStepConnector.js +141 -67
- package/es/HiBreadcrumb/HiStepContent.js +66 -0
- package/es/HiBreadcrumb/HiStepIcon.js +134 -64
- package/es/HiBreadcrumb/HiStepLabel.js +173 -138
- package/es/HiBreadcrumb/HiStepper.js +41 -49
- package/es/HiButton/HiButton.js +187 -114
- package/es/HiCheckbox/HiCheckbox.js +157 -84
- package/es/HiChip/HiChip.js +231 -132
- package/es/HiChip/HiChipSwitch.js +239 -226
- package/es/HiColoredLabel/HiColoredLabel.js +158 -67
- package/es/HiDatePicker/Caption.js +59 -57
- package/es/HiDatePicker/Caption.spec.js +68 -0
- package/es/HiDatePicker/HiDatePicker.js +307 -276
- package/es/HiDatePicker/ListPicker.js +93 -92
- package/es/HiDatePicker/ListPicker.spec.js +51 -0
- package/es/HiDatePicker/NavBar.js +117 -0
- package/es/HiDatePicker/NavBar.spec.js +40 -0
- package/es/HiDatePicker/Overlays/CustomOverlayLayout.js +90 -100
- package/es/HiDatePicker/Overlays/MonthPickerOverlay.js +66 -65
- package/es/HiDatePicker/Overlays/MonthPickerOverlay.spec.js +53 -0
- package/es/HiDatePicker/Overlays/Overlay.js +84 -64
- package/es/HiDatePicker/Overlays/Overlay.spec.js +27 -0
- package/es/HiDatePicker/Overlays/TimePickerOverlay.js +178 -192
- package/es/HiDatePicker/Overlays/TimePickerOverlay.spec.js +53 -0
- package/es/HiDatePicker/Overlays/YearPickerOverlay.js +92 -89
- package/es/HiDatePicker/Overlays/YearPickerOverlay.spec.js +92 -0
- package/es/HiDatePicker/Overlays/index.js +1 -0
- package/es/HiDatePicker/Weekday.js +14 -9
- package/es/HiDatePicker/stylesheet.js +188 -172
- package/es/HiExpansionPanel/HiExpansionPanel.js +121 -154
- package/es/HiForm/HiEmailField.js +58 -51
- package/es/HiForm/HiFormControl.js +283 -285
- package/es/HiForm/HiFormLabel.js +96 -103
- package/es/HiForm/HiInput.js +471 -415
- package/es/HiForm/HiPasswordField.js +59 -51
- package/es/HiForm/HiSearchField.js +120 -107
- package/es/HiForm/HiTextField.js +70 -47
- package/es/HiForm/index.js +2 -2
- package/es/HiIcon/HiIcon.js +173 -0
- package/es/HiIcon/index.js +1 -0
- package/es/HiIconButton/HiIconButton.js +100 -0
- package/es/HiIconButton/index.js +1 -0
- package/es/HiLoader/HiLoader.js +45 -22
- package/es/HiPin/HiPin.js +101 -0
- package/es/HiPin/index.js +1 -0
- package/es/HiSelect/HiSelect.js +857 -659
- package/es/HiSelect/HiSelectField.js +39 -36
- package/es/HiSelect/HiSuggestSelect.js +247 -179
- package/es/HiSelect/HiSuggestSelectField.js +36 -33
- package/es/HiSelect/SelectInput.js +260 -254
- package/es/HiSelect/index.js +4 -10
- package/es/HiSelectNew/HiDynamicSelect.js +203 -0
- package/es/HiSelectNew/HiNestedSelect.js +401 -0
- package/es/HiSelectNew/HiSelect.js +619 -0
- package/es/HiSelectNew/HiSelectField.js +111 -0
- package/es/HiSelectNew/HiSelectInput.js +307 -0
- package/es/HiSelectNew/index.js +4 -0
- package/es/HiSelectableList/HiSelectableList.js +144 -184
- package/es/HiSelectableList/HiSelectableListHierarchic.js +175 -0
- package/es/HiSelectableList/HiSelectableListItem.js +392 -445
- package/es/HiSelectableList/index.js +2 -1
- package/es/HiSwitch/HiSwitch.js +199 -124
- package/es/HiSwitch/HiSwitchState.js +182 -151
- package/es/HiSwitch/index.js +0 -1
- package/es/hi-svg-icons/HiAccount.js +38 -0
- package/es/hi-svg-icons/HiAll.js +43 -0
- package/es/hi-svg-icons/HiBilling.js +38 -0
- package/es/hi-svg-icons/HiBriefcaseRescue.js +14 -0
- package/es/hi-svg-icons/HiCatalog.js +38 -0
- package/es/hi-svg-icons/HiCustomer.js +38 -0
- package/es/hi-svg-icons/HiFinance.js +38 -0
- package/es/hi-svg-icons/HiRoute.js +38 -0
- package/es/hi-svg-icons/HiSettlement.js +38 -0
- package/es/hi-svg-icons/HiSizeLarge.js +25 -0
- package/es/hi-svg-icons/HiSizeMedium.js +25 -0
- package/es/hi-svg-icons/HiSizeSmall.js +25 -0
- package/es/hi-svg-icons/HiTransaction.js +38 -0
- package/es/hi-svg-icons/HiUser.js +38 -0
- package/es/hi-svg-icons/HiWidget.js +43 -0
- package/es/{svg-icons → hi-svg-icons}/index.js +4 -0
- package/es/hi-svg-icons/index.text.js +41 -0
- package/es/index.js +16 -63
- package/es/styles/MuiThemeProvider.js +36 -26
- package/es/styles/colorManipulator.js +71 -43
- package/es/styles/createBreakpoints.js +5 -6
- package/es/styles/createGenerateClassName.js +29 -27
- package/es/styles/createMixins.js +4 -4
- package/es/styles/createMuiTheme.js +26 -17
- package/es/styles/createPalette.js +111 -30
- package/es/styles/createStyles.js +3 -0
- package/es/styles/createTypography.js +91 -33
- package/es/styles/getStylesCreator.js +14 -7
- package/es/styles/getThemeProps.js +14 -0
- package/es/styles/index.js +2 -2
- package/es/styles/jssPreset.js +2 -3
- package/es/styles/mergeClasses.js +29 -0
- package/es/styles/shadows.js +0 -1
- package/es/styles/shape.js +4 -0
- package/es/styles/spacing.js +4 -3
- package/es/styles/themeListener.js +2 -5
- package/es/styles/transitions.js +15 -19
- package/es/styles/withStyles.js +115 -98
- package/es/styles/withTheme.js +29 -10
- package/es/styles/zIndex.js +0 -1
- package/es/test-utils/createMount.js +9 -10
- package/es/test-utils/createRender.js +8 -8
- package/es/test-utils/createShallow.js +23 -23
- package/es/test-utils/getClasses.js +4 -8
- package/es/test-utils/until.js +14 -10
- package/es/test-utils/unwrap.js +0 -2
- package/es/transitions/utils.js +4 -3
- package/es/utils/exactProp.js +17 -10
- package/es/utils/helpers.js +102 -40
- package/es/utils/ownerDocument.js +5 -0
- package/es/utils/ownerWindow.js +8 -0
- package/es/utils/reactHelpers.js +10 -12
- package/es/utils/requirePropFactory.js +7 -3
- package/es/utils/unsupportedProp.js +16 -0
- package/es/withMobileDialog/index.js +1 -0
- package/es/{Dialog → withMobileDialog}/withMobileDialog.js +9 -6
- package/es/withWidth/index.js +2 -0
- package/es/withWidth/withWidth.js +176 -0
- package/hi-svg-icons/HiAccount.js +52 -0
- package/hi-svg-icons/HiAll.js +57 -0
- package/hi-svg-icons/HiBilling.js +52 -0
- package/hi-svg-icons/HiBriefcaseRescue.js +27 -0
- package/hi-svg-icons/HiCatalog.js +52 -0
- package/hi-svg-icons/HiCustomer.js +52 -0
- package/hi-svg-icons/HiFinance.js +52 -0
- package/hi-svg-icons/HiRoute.js +52 -0
- package/hi-svg-icons/HiSettlement.js +52 -0
- package/hi-svg-icons/HiSizeLarge.js +36 -0
- package/hi-svg-icons/HiSizeMedium.js +36 -0
- package/hi-svg-icons/HiSizeSmall.js +36 -0
- package/hi-svg-icons/HiTransaction.js +52 -0
- package/hi-svg-icons/HiUser.js +52 -0
- package/hi-svg-icons/HiWidget.js +57 -0
- package/hi-svg-icons/index.js +127 -0
- package/hi-svg-icons/index.text.js +51 -0
- package/index.es.js +17 -64
- package/index.js +64 -733
- package/package.json +36 -41
- package/styles/MuiThemeProvider.js +78 -93
- package/styles/colorManipulator.js +88 -57
- package/styles/createBreakpoints.js +18 -23
- package/styles/createGenerateClassName.js +36 -38
- package/styles/createMixins.js +11 -17
- package/styles/createMuiTheme.js +51 -65
- package/styles/createPalette.js +146 -76
- package/styles/createStyles.js +10 -0
- package/styles/createTypography.js +103 -56
- package/styles/getStylesCreator.js +22 -23
- package/styles/getThemeProps.js +20 -0
- package/styles/index.js +30 -37
- package/styles/jssPreset.js +13 -23
- package/styles/mergeClasses.js +41 -0
- package/styles/shadows.js +5 -4
- package/styles/shape.js +11 -0
- package/styles/spacing.js +6 -3
- package/styles/themeListener.js +11 -15
- package/styles/transitions.js +41 -47
- package/styles/withStyles.js +162 -200
- package/styles/withTheme.js +58 -59
- package/styles/zIndex.js +3 -2
- package/test-utils/createMount.js +12 -21
- package/test-utils/createRender.js +10 -17
- package/test-utils/createShallow.js +36 -48
- package/test-utils/getClasses.js +15 -26
- package/test-utils/index.js +22 -27
- package/test-utils/until.js +14 -19
- package/test-utils/unwrap.js +0 -1
- package/transitions/utils.js +7 -5
- package/umd/hipay-material-ui.development.js +75471 -100230
- package/umd/hipay-material-ui.production.min.js +5 -20
- package/utils/exactProp.js +28 -25
- package/utils/helpers.js +125 -55
- package/utils/ownerDocument.js +13 -0
- package/utils/ownerWindow.js +19 -0
- package/utils/reactHelpers.js +17 -8
- package/utils/requirePropFactory.js +15 -6
- package/utils/unsupportedProp.js +24 -0
- package/withMobileDialog/index.js +15 -0
- package/withMobileDialog/withMobileDialog.js +45 -0
- package/withWidth/index.js +27 -0
- package/withWidth/withWidth.js +229 -0
- package/AppBar/AppBar.js +0 -144
- package/AppBar/index.js +0 -16
- package/Avatar/Avatar.js +0 -165
- package/Avatar/index.js +0 -16
- package/Badge/Badge.js +0 -142
- package/Badge/index.js +0 -16
- package/BottomNavigation/BottomNavigation.js +0 -113
- package/BottomNavigation/BottomNavigationAction.js +0 -219
- package/BottomNavigation/index.js +0 -25
- package/Button/Button.js +0 -298
- package/Button/index.js +0 -16
- package/ButtonBase/ButtonBase.js +0 -446
- package/ButtonBase/Ripple.js +0 -162
- package/ButtonBase/TouchRipple.js +0 -359
- package/ButtonBase/createRippleHandler.js +0 -28
- package/ButtonBase/index.js +0 -16
- package/Card/Card.js +0 -48
- package/Card/CardActions.js +0 -94
- package/Card/CardContent.js +0 -76
- package/Card/CardHeader.js +0 -150
- package/Card/CardMedia.js +0 -113
- package/Card/index.js +0 -52
- package/Checkbox/Checkbox.js +0 -160
- package/Checkbox/index.js +0 -16
- package/Chip/Chip.js +0 -322
- package/Chip/index.js +0 -16
- package/Dialog/Dialog.js +0 -271
- package/Dialog/DialogActions.js +0 -94
- package/Dialog/DialogContent.js +0 -77
- package/Dialog/DialogContentText.js +0 -72
- package/Dialog/DialogTitle.js +0 -91
- package/Dialog/index.js +0 -61
- package/Dialog/withMobileDialog.js +0 -49
- package/Divider/Divider.js +0 -113
- package/Divider/index.js +0 -16
- package/Drawer/Drawer.js +0 -325
- package/Drawer/index.js +0 -16
- package/ExpansionPanel/ExpansionPanel.js +0 -257
- package/ExpansionPanel/ExpansionPanelActions.js +0 -79
- package/ExpansionPanel/ExpansionPanelDetails.js +0 -73
- package/ExpansionPanel/ExpansionPanelSummary.js +0 -250
- package/ExpansionPanel/index.js +0 -43
- package/Form/FormControl.js +0 -291
- package/Form/FormControlLabel.js +0 -168
- package/Form/FormGroup.js +0 -94
- package/Form/FormHelperText.js +0 -139
- package/Form/FormLabel.js +0 -158
- package/Form/index.js +0 -52
- package/Grid/Grid.js +0 -372
- package/Grid/index.js +0 -16
- package/GridList/GridList.js +0 -122
- package/GridList/GridListTile.js +0 -239
- package/GridList/GridListTileBar.js +0 -176
- package/GridList/index.js +0 -34
- package/HI-CHANGELOG.md +0 -42
- package/HiDatePicker/HiDateRangePicker.js +0 -715
- package/HiDatePicker/HiDateRangeSelector.js +0 -422
- package/HiDatePicker/HiWeekPicker.js +0 -389
- package/HiDatePicker/Navbar.js +0 -169
- package/HiDatePicker/index.js +0 -33
- package/HiPins/HiPins.js +0 -98
- package/HiPins/index.js +0 -16
- package/HiRadio/HiRadio.js +0 -99
- package/HiRadio/index.js +0 -16
- package/HiTable/BodyCellBuilder.js +0 -398
- package/HiTable/BodyCells/CellAccount.js +0 -100
- package/HiTable/BodyCells/CellAccountNumber.js +0 -220
- package/HiTable/BodyCells/CellAddress.js +0 -199
- package/HiTable/BodyCells/CellCountry.js +0 -172
- package/HiTable/BodyCells/CellDate.js +0 -177
- package/HiTable/BodyCells/CellIcon.js +0 -148
- package/HiTable/BodyCells/CellImage.js +0 -177
- package/HiTable/BodyCells/CellLayout.js +0 -285
- package/HiTable/BodyCells/CellNumeric.js +0 -135
- package/HiTable/BodyCells/CellRate.js +0 -197
- package/HiTable/BodyCells/CellSentinel.js +0 -213
- package/HiTable/BodyCells/CellStatus.js +0 -140
- package/HiTable/BodyCells/CellText.js +0 -268
- package/HiTable/BodyCells/CellThirdPartySecurity.js +0 -144
- package/HiTable/BodyCells/index.js +0 -133
- package/HiTable/BodyRow.js +0 -388
- package/HiTable/ChildRow.js +0 -432
- package/HiTable/ColumnFilter.js +0 -494
- package/HiTable/HeaderCell.js +0 -463
- package/HiTable/HiStickyRow.js +0 -300
- package/HiTable/HiTable.js +0 -1019
- package/HiTable/HiTableBody.js +0 -557
- package/HiTable/HiTableContextMenu.js +0 -214
- package/HiTable/HiTableFooterScroll.js +0 -202
- package/HiTable/HiTableHead.js +0 -489
- package/HiTable/OrderColumns.js +0 -561
- package/HiTable/constants.js +0 -105
- package/HiTable/index.js +0 -25
- package/HiTopBar/HiTopBar.js +0 -553
- package/HiTopBar/index.js +0 -16
- package/Hidden/Hidden.js +0 -130
- package/Hidden/HiddenCss.js +0 -175
- package/Hidden/HiddenJs.js +0 -149
- package/Hidden/index.js +0 -16
- package/Icon/Icon.js +0 -109
- package/Icon/index.js +0 -16
- package/IconButton/IconButton.js +0 -146
- package/IconButton/index.js +0 -16
- package/Input/Input.js +0 -682
- package/Input/InputAdornment.js +0 -116
- package/Input/InputLabel.js +0 -163
- package/Input/Textarea.js +0 -301
- package/Input/index.js +0 -34
- package/List/List.js +0 -167
- package/List/ListItem.js +0 -279
- package/List/ListItemAvatar.js +0 -100
- package/List/ListItemIcon.js +0 -77
- package/List/ListItemSecondaryAction.js +0 -76
- package/List/ListItemText.js +0 -145
- package/List/ListSubheader.js +0 -127
- package/List/index.js +0 -70
- package/Menu/Menu.js +0 -274
- package/Menu/MenuItem.js +0 -113
- package/Menu/MenuList.js +0 -253
- package/Menu/index.js +0 -34
- package/MobileStepper/MobileStepper.js +0 -173
- package/MobileStepper/index.js +0 -16
- package/Modal/Backdrop.js +0 -102
- package/Modal/Modal.js +0 -502
- package/Modal/ModalManager.js +0 -210
- package/Modal/index.js +0 -34
- package/Modal/isOverflowing.js +0 -43
- package/Modal/manageAriaHidden.js +0 -45
- package/Paper/Paper.js +0 -111
- package/Paper/index.js +0 -16
- package/Popover/Popover.js +0 -564
- package/Popover/index.js +0 -16
- package/Portal/LegacyPortal.js +0 -158
- package/Portal/Portal.js +0 -144
- package/Portal/index.js +0 -21
- package/Progress/CircularProgress.js +0 -228
- package/Progress/LinearProgress.js +0 -258
- package/Progress/index.js +0 -25
- package/Radio/Radio.js +0 -155
- package/Radio/RadioGroup.js +0 -168
- package/Radio/index.js +0 -25
- package/Reboot/Reboot.js +0 -106
- package/Reboot/index.js +0 -16
- package/Select/Select.js +0 -229
- package/Select/SelectInput.js +0 -502
- package/Select/index.js +0 -16
- package/Snackbar/Snackbar.js +0 -451
- package/Snackbar/SnackbarContent.js +0 -135
- package/Snackbar/index.js +0 -25
- package/Stepper/Step.js +0 -151
- package/Stepper/StepButton.js +0 -143
- package/Stepper/StepConnector.js +0 -118
- package/Stepper/StepContent.js +0 -153
- package/Stepper/StepIcon.js +0 -86
- package/Stepper/StepLabel.js +0 -200
- package/Stepper/StepPositionIcon.js +0 -95
- package/Stepper/Stepper.js +0 -161
- package/Stepper/index.js +0 -61
- package/SvgIcon/SvgIcon.js +0 -147
- package/SvgIcon/index.js +0 -16
- package/Switch/Switch.js +0 -215
- package/Switch/index.js +0 -16
- package/Table/Table.js +0 -127
- package/Table/TableBody.js +0 -121
- package/Table/TableCell.js +0 -181
- package/Table/TableFooter.js +0 -93
- package/Table/TableHead.js +0 -121
- package/Table/TablePagination.js +0 -310
- package/Table/TablePaginationActions.js +0 -183
- package/Table/TableRow.js +0 -127
- package/Table/TableSortLabel.js +0 -145
- package/Table/index.js +0 -79
- package/Tabs/Tab.js +0 -340
- package/Tabs/TabIndicator.js +0 -95
- package/Tabs/TabScrollButton.js +0 -112
- package/Tabs/Tabs.js +0 -530
- package/Tabs/index.js +0 -25
- package/TextField/TextField.js +0 -290
- package/TextField/index.js +0 -16
- package/Toolbar/Toolbar.js +0 -89
- package/Toolbar/index.js +0 -16
- package/Tooltip/Tooltip.js +0 -514
- package/Tooltip/index.js +0 -16
- package/Typography/Typography.js +0 -192
- package/Typography/index.js +0 -16
- package/colors/amber.js +0 -23
- package/colors/blue.js +0 -23
- package/colors/blueGrey.js +0 -23
- package/colors/brown.js +0 -23
- package/colors/common.js +0 -11
- package/colors/cyan.js +0 -23
- package/colors/deepOrange.js +0 -23
- package/colors/deepPurple.js +0 -23
- package/colors/green.js +0 -23
- package/colors/grey.js +0 -23
- package/colors/index.js +0 -187
- package/colors/indigo.js +0 -23
- package/colors/lightBlue.js +0 -23
- package/colors/lightGreen.js +0 -23
- package/colors/lime.js +0 -23
- package/colors/orange.js +0 -23
- package/colors/pink.js +0 -23
- package/colors/purple.js +0 -23
- package/colors/red.js +0 -23
- package/colors/teal.js +0 -23
- package/colors/yellow.js +0 -23
- package/es/AppBar/AppBar.js +0 -106
- package/es/AppBar/index.js +0 -1
- package/es/Avatar/Avatar.js +0 -136
- package/es/Avatar/index.js +0 -1
- package/es/Badge/Badge.js +0 -112
- package/es/Badge/index.js +0 -1
- package/es/BottomNavigation/BottomNavigation.js +0 -86
- package/es/BottomNavigation/BottomNavigationAction.js +0 -153
- package/es/BottomNavigation/index.js +0 -2
- package/es/Button/Button.js +0 -274
- package/es/Button/index.js +0 -1
- package/es/ButtonBase/ButtonBase.js +0 -358
- package/es/ButtonBase/Ripple.js +0 -102
- package/es/ButtonBase/TouchRipple.js +0 -268
- package/es/ButtonBase/createRippleHandler.js +0 -23
- package/es/ButtonBase/index.js +0 -1
- package/es/Card/Card.js +0 -27
- package/es/Card/CardActions.js +0 -58
- package/es/Card/CardContent.js +0 -45
- package/es/Card/CardHeader.js +0 -120
- package/es/Card/CardMedia.js +0 -76
- package/es/Card/index.js +0 -5
- package/es/Checkbox/Checkbox.js +0 -117
- package/es/Checkbox/index.js +0 -1
- package/es/Chip/Chip.js +0 -241
- package/es/Chip/index.js +0 -1
- package/es/Dialog/Dialog.js +0 -231
- package/es/Dialog/DialogActions.js +0 -58
- package/es/Dialog/DialogContent.js +0 -48
- package/es/Dialog/DialogContentText.js +0 -41
- package/es/Dialog/DialogTitle.js +0 -57
- package/es/Dialog/index.js +0 -6
- package/es/Divider/Divider.js +0 -83
- package/es/Divider/index.js +0 -1
- package/es/Drawer/Drawer.js +0 -252
- package/es/Drawer/index.js +0 -1
- package/es/ExpansionPanel/ExpansionPanel.js +0 -194
- package/es/ExpansionPanel/ExpansionPanelActions.js +0 -47
- package/es/ExpansionPanel/ExpansionPanelDetails.js +0 -42
- package/es/ExpansionPanel/ExpansionPanelSummary.js +0 -182
- package/es/ExpansionPanel/index.js +0 -4
- package/es/Form/FormControl.js +0 -214
- package/es/Form/FormControlLabel.js +0 -137
- package/es/Form/FormGroup.js +0 -62
- package/es/Form/FormHelperText.js +0 -110
- package/es/Form/FormLabel.js +0 -132
- package/es/Form/index.js +0 -5
- package/es/Grid/Grid.js +0 -353
- package/es/Grid/index.js +0 -1
- package/es/GridList/GridList.js +0 -97
- package/es/GridList/GridListTile.js +0 -153
- package/es/GridList/GridListTileBar.js +0 -152
- package/es/GridList/index.js +0 -3
- package/es/HiDatePicker/HiDateRangePicker.js +0 -567
- package/es/HiDatePicker/HiDateRangeSelector.js +0 -345
- package/es/HiDatePicker/HiWeekPicker.js +0 -296
- package/es/HiDatePicker/Navbar.js +0 -130
- package/es/HiDatePicker/index.js +0 -7
- package/es/HiPins/HiPins.js +0 -65
- package/es/HiPins/index.js +0 -1
- package/es/HiRadio/HiRadio.js +0 -41
- package/es/HiRadio/index.js +0 -1
- package/es/HiTable/BodyCellBuilder.js +0 -345
- package/es/HiTable/BodyCells/CellAccount.js +0 -40
- package/es/HiTable/BodyCells/CellAccountNumber.js +0 -166
- package/es/HiTable/BodyCells/CellAddress.js +0 -129
- package/es/HiTable/BodyCells/CellCountry.js +0 -107
- package/es/HiTable/BodyCells/CellDate.js +0 -111
- package/es/HiTable/BodyCells/CellIcon.js +0 -83
- package/es/HiTable/BodyCells/CellImage.js +0 -115
- package/es/HiTable/BodyCells/CellLayout.js +0 -202
- package/es/HiTable/BodyCells/CellNumeric.js +0 -71
- package/es/HiTable/BodyCells/CellRate.js +0 -131
- package/es/HiTable/BodyCells/CellSentinel.js +0 -153
- package/es/HiTable/BodyCells/CellStatus.js +0 -77
- package/es/HiTable/BodyCells/CellText.js +0 -189
- package/es/HiTable/BodyCells/CellThirdPartySecurity.js +0 -89
- package/es/HiTable/BodyCells/index.js +0 -16
- package/es/HiTable/BodyRow.js +0 -314
- package/es/HiTable/ChildRow.js +0 -345
- package/es/HiTable/ColumnFilter.js +0 -398
- package/es/HiTable/HeaderCell.js +0 -376
- package/es/HiTable/HiStickyRow.js +0 -217
- package/es/HiTable/HiTable.js +0 -883
- package/es/HiTable/HiTableBody.js +0 -464
- package/es/HiTable/HiTableContextMenu.js +0 -150
- package/es/HiTable/HiTableFooterScroll.js +0 -144
- package/es/HiTable/HiTableHead.js +0 -403
- package/es/HiTable/OrderColumns.js +0 -441
- package/es/HiTable/constants.js +0 -180
- package/es/HiTable/index.js +0 -2
- package/es/HiTopBar/HiTopBar.js +0 -458
- package/es/HiTopBar/index.js +0 -1
- package/es/Hidden/Hidden.js +0 -107
- package/es/Hidden/HiddenCss.js +0 -151
- package/es/Hidden/HiddenJs.js +0 -129
- package/es/Hidden/index.js +0 -1
- package/es/Icon/Icon.js +0 -74
- package/es/Icon/index.js +0 -1
- package/es/IconButton/IconButton.js +0 -106
- package/es/IconButton/index.js +0 -1
- package/es/Input/Input.js +0 -616
- package/es/Input/InputAdornment.js +0 -83
- package/es/Input/InputLabel.js +0 -138
- package/es/Input/Textarea.js +0 -234
- package/es/Input/index.js +0 -3
- package/es/List/List.js +0 -106
- package/es/List/ListItem.js +0 -212
- package/es/List/ListItemAvatar.js +0 -63
- package/es/List/ListItemIcon.js +0 -46
- package/es/List/ListItemSecondaryAction.js +0 -45
- package/es/List/ListItemText.js +0 -114
- package/es/List/ListSubheader.js +0 -90
- package/es/List/index.js +0 -7
- package/es/Menu/Menu.js +0 -205
- package/es/Menu/MenuItem.js +0 -75
- package/es/Menu/MenuList.js +0 -168
- package/es/Menu/index.js +0 -3
- package/es/MobileStepper/MobileStepper.js +0 -137
- package/es/MobileStepper/index.js +0 -1
- package/es/Modal/Backdrop.js +0 -67
- package/es/Modal/Modal.js +0 -398
- package/es/Modal/ModalManager.js +0 -162
- package/es/Modal/index.js +0 -3
- package/es/Modal/isOverflowing.js +0 -25
- package/es/Modal/manageAriaHidden.js +0 -33
- package/es/Paper/Paper.js +0 -81
- package/es/Paper/index.js +0 -1
- package/es/Popover/Popover.js +0 -455
- package/es/Popover/index.js +0 -1
- package/es/Portal/LegacyPortal.js +0 -97
- package/es/Portal/Portal.js +0 -82
- package/es/Portal/index.js +0 -5
- package/es/Progress/CircularProgress.js +0 -201
- package/es/Progress/LinearProgress.js +0 -235
- package/es/Progress/index.js +0 -2
- package/es/Radio/Radio.js +0 -113
- package/es/Radio/RadioGroup.js +0 -101
- package/es/Radio/index.js +0 -2
- package/es/Reboot/Reboot.js +0 -55
- package/es/Reboot/index.js +0 -1
- package/es/Select/Select.js +0 -199
- package/es/Select/SelectInput.js +0 -414
- package/es/Select/index.js +0 -1
- package/es/Snackbar/Snackbar.js +0 -370
- package/es/Snackbar/SnackbarContent.js +0 -96
- package/es/Snackbar/index.js +0 -2
- package/es/Stepper/Step.js +0 -120
- package/es/Stepper/StepButton.js +0 -111
- package/es/Stepper/StepConnector.js +0 -85
- package/es/Stepper/StepContent.js +0 -116
- package/es/Stepper/StepIcon.js +0 -54
- package/es/Stepper/StepLabel.js +0 -170
- package/es/Stepper/StepPositionIcon.js +0 -64
- package/es/Stepper/Stepper.js +0 -126
- package/es/Stepper/index.js +0 -6
- package/es/SvgIcon/SvgIcon.js +0 -117
- package/es/SvgIcon/index.js +0 -1
- package/es/Switch/Switch.js +0 -178
- package/es/Switch/index.js +0 -1
- package/es/Table/Table.js +0 -64
- package/es/Table/TableBody.js +0 -61
- package/es/Table/TableCell.js +0 -153
- package/es/Table/TableFooter.js +0 -44
- package/es/Table/TableHead.js +0 -61
- package/es/Table/TablePagination.js +0 -224
- package/es/Table/TablePaginationActions.js +0 -116
- package/es/Table/TableRow.js +0 -99
- package/es/Table/TableSortLabel.js +0 -101
- package/es/Table/index.js +0 -8
- package/es/Tabs/Tab.js +0 -271
- package/es/Tabs/TabIndicator.js +0 -63
- package/es/Tabs/TabScrollButton.js +0 -70
- package/es/Tabs/Tabs.js +0 -425
- package/es/Tabs/index.js +0 -2
- package/es/TextField/TextField.js +0 -259
- package/es/TextField/index.js +0 -1
- package/es/Toolbar/Toolbar.js +0 -55
- package/es/Toolbar/index.js +0 -1
- package/es/Tooltip/Tooltip.js +0 -425
- package/es/Tooltip/index.js +0 -1
- package/es/Typography/Typography.js +0 -164
- package/es/Typography/index.js +0 -1
- package/es/colors/amber.js +0 -18
- package/es/colors/blue.js +0 -18
- package/es/colors/blueGrey.js +0 -18
- package/es/colors/brown.js +0 -18
- package/es/colors/common.js +0 -6
- package/es/colors/cyan.js +0 -18
- package/es/colors/deepOrange.js +0 -18
- package/es/colors/deepPurple.js +0 -18
- package/es/colors/green.js +0 -18
- package/es/colors/grey.js +0 -18
- package/es/colors/index.js +0 -20
- package/es/colors/indigo.js +0 -18
- package/es/colors/lightBlue.js +0 -18
- package/es/colors/lightGreen.js +0 -18
- package/es/colors/lime.js +0 -18
- package/es/colors/orange.js +0 -18
- package/es/colors/pink.js +0 -18
- package/es/colors/purple.js +0 -18
- package/es/colors/red.js +0 -18
- package/es/colors/teal.js +0 -18
- package/es/colors/yellow.js +0 -18
- package/es/internal/RefHolder.js +0 -20
- package/es/internal/SwitchBase.js +0 -219
- package/es/internal/svg-icons/ArrowDownward.js +0 -20
- package/es/internal/svg-icons/ArrowDropDown.js +0 -20
- package/es/internal/svg-icons/Cancel.js +0 -19
- package/es/internal/svg-icons/CheckBox.js +0 -19
- package/es/internal/svg-icons/CheckBoxOutlineBlank.js +0 -19
- package/es/internal/svg-icons/CheckCircle.js +0 -19
- package/es/internal/svg-icons/IndeterminateCheckBox.js +0 -19
- package/es/internal/svg-icons/KeyboardArrowLeft.js +0 -19
- package/es/internal/svg-icons/KeyboardArrowRight.js +0 -19
- package/es/internal/svg-icons/RadioButtonChecked.js +0 -19
- package/es/internal/svg-icons/RadioButtonUnchecked.js +0 -19
- package/es/styles/createHiMuiTheme.js +0 -300
- package/es/svg-icons/ArrowDownward.js +0 -20
- package/es/svg-icons/ArrowDropDown.js +0 -20
- package/es/svg-icons/Cancel.js +0 -19
- package/es/svg-icons/CheckBox.js +0 -19
- package/es/svg-icons/CheckBoxOutlineBlank.js +0 -19
- package/es/svg-icons/CheckCircle.js +0 -19
- package/es/svg-icons/HiAccount.js +0 -33
- package/es/svg-icons/HiAll.js +0 -43
- package/es/svg-icons/HiBilling.js +0 -33
- package/es/svg-icons/HiCatalog.js +0 -33
- package/es/svg-icons/HiCustomer.js +0 -39
- package/es/svg-icons/HiFinance.js +0 -33
- package/es/svg-icons/HiRoute.js +0 -33
- package/es/svg-icons/HiSettlement.js +0 -36
- package/es/svg-icons/HiSizeLarge.js +0 -19
- package/es/svg-icons/HiSizeMedium.js +0 -19
- package/es/svg-icons/HiSizeSmall.js +0 -19
- package/es/svg-icons/HiTransaction.js +0 -33
- package/es/svg-icons/HiUser.js +0 -39
- package/es/svg-icons/HiWidget.js +0 -43
- package/es/svg-icons/IndeterminateCheckBox.js +0 -19
- package/es/svg-icons/KeyboardArrowLeft.js +0 -19
- package/es/svg-icons/KeyboardArrowRight.js +0 -19
- package/es/svg-icons/RadioButtonChecked.js +0 -19
- package/es/svg-icons/RadioButtonUnchecked.js +0 -19
- package/es/transitions/Collapse.js +0 -245
- package/es/transitions/Fade.js +0 -132
- package/es/transitions/Grow.js +0 -173
- package/es/transitions/Slide.js +0 -291
- package/es/transitions/Zoom.js +0 -129
- package/es/transitions/index.js +0 -5
- package/es/utils/ClickAwayListener.js +0 -65
- package/es/utils/HiIconBuilder.js +0 -107
- package/es/utils/addEventListener.js +0 -11
- package/es/utils/hiGetMdiIcon.js +0 -12
- package/es/utils/hiHelpers.js +0 -173
- package/es/utils/keyboardFocus.js +0 -51
- package/es/utils/manageAriaHidden.js +0 -33
- package/es/utils/withWidth.js +0 -141
- package/hmu/images/countries/ad.svg +0 -151
- package/hmu/images/countries/ae.svg +0 -6
- package/hmu/images/countries/af.svg +0 -83
- package/hmu/images/countries/ag.svg +0 -15
- package/hmu/images/countries/ai.svg +0 -767
- package/hmu/images/countries/al.svg +0 -5
- package/hmu/images/countries/am.svg +0 -5
- package/hmu/images/countries/ao.svg +0 -13
- package/hmu/images/countries/aq.svg +0 -6
- package/hmu/images/countries/ar.svg +0 -32
- package/hmu/images/countries/as.svg +0 -33
- package/hmu/images/countries/at.svg +0 -6
- package/hmu/images/countries/au.svg +0 -9
- package/hmu/images/countries/aw.svg +0 -186
- package/hmu/images/countries/ax.svg +0 -18
- package/hmu/images/countries/az.svg +0 -8
- package/hmu/images/countries/ba.svg +0 -12
- package/hmu/images/countries/bb.svg +0 -6
- package/hmu/images/countries/bd.svg +0 -4
- package/hmu/images/countries/be.svg +0 -7
- package/hmu/images/countries/bf.svg +0 -7
- package/hmu/images/countries/bg.svg +0 -7
- package/hmu/images/countries/bh.svg +0 -11
- package/hmu/images/countries/bi.svg +0 -15
- package/hmu/images/countries/bj.svg +0 -14
- package/hmu/images/countries/bl.svg +0 -7
- package/hmu/images/countries/bm.svg +0 -99
- package/hmu/images/countries/bn.svg +0 -36
- package/hmu/images/countries/bo.svg +0 -686
- package/hmu/images/countries/bq.svg +0 -5
- package/hmu/images/countries/br.svg +0 -45
- package/hmu/images/countries/bs.svg +0 -13
- package/hmu/images/countries/bt.svg +0 -89
- package/hmu/images/countries/bv.svg +0 -13
- package/hmu/images/countries/bw.svg +0 -7
- package/hmu/images/countries/by.svg +0 -61
- package/hmu/images/countries/bz.svg +0 -146
- package/hmu/images/countries/ca.svg +0 -4
- package/hmu/images/countries/cc.svg +0 -19
- package/hmu/images/countries/cd.svg +0 -5
- package/hmu/images/countries/cf.svg +0 -15
- package/hmu/images/countries/cg.svg +0 -12
- package/hmu/images/countries/ch.svg +0 -9
- package/hmu/images/countries/ci.svg +0 -7
- package/hmu/images/countries/ck.svg +0 -9
- package/hmu/images/countries/cl.svg +0 -13
- package/hmu/images/countries/cm.svg +0 -15
- package/hmu/images/countries/cn.svg +0 -11
- package/hmu/images/countries/co.svg +0 -7
- package/hmu/images/countries/cr.svg +0 -7
- package/hmu/images/countries/cu.svg +0 -13
- package/hmu/images/countries/cv.svg +0 -13
- package/hmu/images/countries/cw.svg +0 -14
- package/hmu/images/countries/cx.svg +0 -15
- package/hmu/images/countries/cy.svg +0 -6
- package/hmu/images/countries/cz.svg +0 -12
- package/hmu/images/countries/de.svg +0 -5
- package/hmu/images/countries/dj.svg +0 -13
- package/hmu/images/countries/dk.svg +0 -5
- package/hmu/images/countries/dm.svg +0 -152
- package/hmu/images/countries/do.svg +0 -6745
- package/hmu/images/countries/dz.svg +0 -5
- package/hmu/images/countries/ec.svg +0 -141
- package/hmu/images/countries/ee.svg +0 -7
- package/hmu/images/countries/eg.svg +0 -38
- package/hmu/images/countries/eh.svg +0 -15
- package/hmu/images/countries/er.svg +0 -8
- package/hmu/images/countries/es-ct.svg +0 -4
- package/hmu/images/countries/es.svg +0 -581
- package/hmu/images/countries/et.svg +0 -14
- package/hmu/images/countries/eu.svg +0 -28
- package/hmu/images/countries/fi.svg +0 -5
- package/hmu/images/countries/fj.svg +0 -124
- package/hmu/images/countries/fk.svg +0 -90
- package/hmu/images/countries/fm.svg +0 -11
- package/hmu/images/countries/fo.svg +0 -12
- package/hmu/images/countries/fr.svg +0 -7
- package/hmu/images/countries/ga.svg +0 -7
- package/hmu/images/countries/gb-eng.svg +0 -5
- package/hmu/images/countries/gb-nir.svg +0 -137
- package/hmu/images/countries/gb-sct.svg +0 -4
- package/hmu/images/countries/gb-wls.svg +0 -9
- package/hmu/images/countries/gb.svg +0 -15
- package/hmu/images/countries/gd.svg +0 -27
- package/hmu/images/countries/ge.svg +0 -6
- package/hmu/images/countries/gf.svg +0 -5
- package/hmu/images/countries/gg.svg +0 -9
- package/hmu/images/countries/gh.svg +0 -6
- package/hmu/images/countries/gi.svg +0 -33
- package/hmu/images/countries/gl.svg +0 -4
- package/hmu/images/countries/gm.svg +0 -14
- package/hmu/images/countries/gn.svg +0 -7
- package/hmu/images/countries/gp.svg +0 -7
- package/hmu/images/countries/gq.svg +0 -23
- package/hmu/images/countries/gr.svg +0 -22
- package/hmu/images/countries/gs.svg +0 -205
- package/hmu/images/countries/gt.svg +0 -204
- package/hmu/images/countries/gu.svg +0 -39
- package/hmu/images/countries/gw.svg +0 -13
- package/hmu/images/countries/gy.svg +0 -9
- package/hmu/images/countries/hk.svg +0 -32
- package/hmu/images/countries/hm.svg +0 -9
- package/hmu/images/countries/hn.svg +0 -18
- package/hmu/images/countries/hr.svg +0 -59
- package/hmu/images/countries/ht.svg +0 -122
- package/hmu/images/countries/hu.svg +0 -7
- package/hmu/images/countries/id.svg +0 -6
- package/hmu/images/countries/ie.svg +0 -7
- package/hmu/images/countries/il.svg +0 -14
- package/hmu/images/countries/im.svg +0 -36
- package/hmu/images/countries/in.svg +0 -25
- package/hmu/images/countries/io.svg +0 -148
- package/hmu/images/countries/iq.svg +0 -10
- package/hmu/images/countries/ir.svg +0 -219
- package/hmu/images/countries/is.svg +0 -12
- package/hmu/images/countries/it.svg +0 -7
- package/hmu/images/countries/je.svg +0 -32
- package/hmu/images/countries/jm.svg +0 -8
- package/hmu/images/countries/jo.svg +0 -16
- package/hmu/images/countries/jp.svg +0 -11
- package/hmu/images/countries/ke.svg +0 -23
- package/hmu/images/countries/kg.svg +0 -15
- package/hmu/images/countries/kh.svg +0 -69
- package/hmu/images/countries/ki.svg +0 -36
- package/hmu/images/countries/km.svg +0 -16
- package/hmu/images/countries/kn.svg +0 -14
- package/hmu/images/countries/kp.svg +0 -15
- package/hmu/images/countries/kr.svg +0 -24
- package/hmu/images/countries/kw.svg +0 -13
- package/hmu/images/countries/ky.svg +0 -63
- package/hmu/images/countries/kz.svg +0 -23
- package/hmu/images/countries/la.svg +0 -12
- package/hmu/images/countries/lb.svg +0 -15
- package/hmu/images/countries/lc.svg +0 -8
- package/hmu/images/countries/li.svg +0 -43
- package/hmu/images/countries/lk.svg +0 -22
- package/hmu/images/countries/lr.svg +0 -14
- package/hmu/images/countries/ls.svg +0 -8
- package/hmu/images/countries/lt.svg +0 -7
- package/hmu/images/countries/lu.svg +0 -5
- package/hmu/images/countries/lv.svg +0 -6
- package/hmu/images/countries/ly.svg +0 -13
- package/hmu/images/countries/ma.svg +0 -4
- package/hmu/images/countries/mc.svg +0 -6
- package/hmu/images/countries/md.svg +0 -72
- package/hmu/images/countries/me.svg +0 -118
- package/hmu/images/countries/mf.svg +0 -7
- package/hmu/images/countries/mg.svg +0 -7
- package/hmu/images/countries/mh.svg +0 -7
- package/hmu/images/countries/mk.svg +0 -5
- package/hmu/images/countries/ml.svg +0 -7
- package/hmu/images/countries/mm.svg +0 -16
- package/hmu/images/countries/mn.svg +0 -13
- package/hmu/images/countries/mo.svg +0 -9
- package/hmu/images/countries/mp.svg +0 -86
- package/hmu/images/countries/mq.svg +0 -7
- package/hmu/images/countries/mr.svg +0 -6
- package/hmu/images/countries/ms.svg +0 -39
- package/hmu/images/countries/mt.svg +0 -49
- package/hmu/images/countries/mu.svg +0 -8
- package/hmu/images/countries/mv.svg +0 -6
- package/hmu/images/countries/mw.svg +0 -10
- package/hmu/images/countries/mx.svg +0 -385
- package/hmu/images/countries/my.svg +0 -15
- package/hmu/images/countries/mz.svg +0 -21
- package/hmu/images/countries/na.svg +0 -16
- package/hmu/images/countries/nc.svg +0 -7
- package/hmu/images/countries/ne.svg +0 -6
- package/hmu/images/countries/nf.svg +0 -9
- package/hmu/images/countries/ng.svg +0 -6
- package/hmu/images/countries/ni.svg +0 -131
- package/hmu/images/countries/nl.svg +0 -7
- package/hmu/images/countries/no.svg +0 -7
- package/hmu/images/countries/np.svg +0 -14
- package/hmu/images/countries/nr.svg +0 -12
- package/hmu/images/countries/nu.svg +0 -26
- package/hmu/images/countries/nz.svg +0 -41
- package/hmu/images/countries/om.svg +0 -116
- package/hmu/images/countries/pa.svg +0 -14
- package/hmu/images/countries/pe.svg +0 -279
- package/hmu/images/countries/pf.svg +0 -19
- package/hmu/images/countries/pg.svg +0 -9
- package/hmu/images/countries/ph.svg +0 -28
- package/hmu/images/countries/pk.svg +0 -15
- package/hmu/images/countries/pl.svg +0 -6
- package/hmu/images/countries/pm.svg +0 -7
- package/hmu/images/countries/pn.svg +0 -62
- package/hmu/images/countries/pr.svg +0 -13
- package/hmu/images/countries/ps.svg +0 -15
- package/hmu/images/countries/pt.svg +0 -57
- package/hmu/images/countries/pw.svg +0 -11
- package/hmu/images/countries/py.svg +0 -157
- package/hmu/images/countries/qa.svg +0 -4
- package/hmu/images/countries/re.svg +0 -7
- package/hmu/images/countries/ro.svg +0 -7
- package/hmu/images/countries/rs.svg +0 -292
- package/hmu/images/countries/ru.svg +0 -7
- package/hmu/images/countries/rw.svg +0 -13
- package/hmu/images/countries/sa.svg +0 -26
- package/hmu/images/countries/sb.svg +0 -13
- package/hmu/images/countries/sc.svg +0 -14
- package/hmu/images/countries/sd.svg +0 -13
- package/hmu/images/countries/se.svg +0 -16
- package/hmu/images/countries/sg.svg +0 -13
- package/hmu/images/countries/sh.svg +0 -74
- package/hmu/images/countries/si.svg +0 -18
- package/hmu/images/countries/sj.svg +0 -7
- package/hmu/images/countries/sk.svg +0 -9
- package/hmu/images/countries/sl.svg +0 -7
- package/hmu/images/countries/sm.svg +0 -91
- package/hmu/images/countries/sn.svg +0 -8
- package/hmu/images/countries/so.svg +0 -11
- package/hmu/images/countries/sr.svg +0 -6
- package/hmu/images/countries/ss.svg +0 -8
- package/hmu/images/countries/st.svg +0 -16
- package/hmu/images/countries/sv.svg +0 -618
- package/hmu/images/countries/sx.svg +0 -56
- package/hmu/images/countries/sy.svg +0 -6
- package/hmu/images/countries/sz.svg +0 -45
- package/hmu/images/countries/tc.svg +0 -67
- package/hmu/images/countries/td.svg +0 -7
- package/hmu/images/countries/tf.svg +0 -15
- package/hmu/images/countries/tg.svg +0 -14
- package/hmu/images/countries/th.svg +0 -7
- package/hmu/images/countries/tj.svg +0 -22
- package/hmu/images/countries/tk.svg +0 -5
- package/hmu/images/countries/tl.svg +0 -13
- package/hmu/images/countries/tm.svg +0 -213
- package/hmu/images/countries/tn.svg +0 -13
- package/hmu/images/countries/to.svg +0 -10
- package/hmu/images/countries/tr.svg +0 -8
- package/hmu/images/countries/tt.svg +0 -5
- package/hmu/images/countries/tv.svg +0 -27
- package/hmu/images/countries/tw.svg +0 -14
- package/hmu/images/countries/tz.svg +0 -13
- package/hmu/images/countries/ua.svg +0 -6
- package/hmu/images/countries/ug.svg +0 -30
- package/hmu/images/countries/um.svg +0 -23
- package/hmu/images/countries/un.svg +0 -16
- package/hmu/images/countries/us.svg +0 -12
- package/hmu/images/countries/uy.svg +0 -28
- package/hmu/images/countries/uz.svg +0 -30
- package/hmu/images/countries/va.svg +0 -483
- package/hmu/images/countries/vc.svg +0 -8
- package/hmu/images/countries/ve.svg +0 -26
- package/hmu/images/countries/vg.svg +0 -133
- package/hmu/images/countries/vi.svg +0 -31
- package/hmu/images/countries/vn.svg +0 -11
- package/hmu/images/countries/vu.svg +0 -18
- package/hmu/images/countries/wf.svg +0 -7
- package/hmu/images/countries/ws.svg +0 -7
- package/hmu/images/countries/ye.svg +0 -7
- package/hmu/images/countries/yt.svg +0 -7
- package/hmu/images/countries/za.svg +0 -17
- package/hmu/images/countries/zm.svg +0 -27
- package/hmu/images/countries/zw.svg +0 -21
- package/hmu/images/hipay-white-logo.svg +0 -42
- package/hmu/images/logo_visa_75wx45h.gif +0 -0
- package/internal/RefHolder.js +0 -64
- package/internal/SwitchBase.js +0 -287
- package/internal/svg-icons/ArrowDownward.js +0 -37
- package/internal/svg-icons/ArrowDropDown.js +0 -37
- package/internal/svg-icons/Cancel.js +0 -36
- package/internal/svg-icons/CheckBox.js +0 -36
- package/internal/svg-icons/CheckBoxOutlineBlank.js +0 -36
- package/internal/svg-icons/CheckCircle.js +0 -36
- package/internal/svg-icons/IndeterminateCheckBox.js +0 -36
- package/internal/svg-icons/KeyboardArrowLeft.js +0 -36
- package/internal/svg-icons/KeyboardArrowRight.js +0 -36
- package/internal/svg-icons/RadioButtonChecked.js +0 -36
- package/internal/svg-icons/RadioButtonUnchecked.js +0 -36
- package/styles/createHiMuiTheme.js +0 -332
- package/svg-icons/ArrowDownward.js +0 -37
- package/svg-icons/ArrowDropDown.js +0 -37
- package/svg-icons/Cancel.js +0 -36
- package/svg-icons/CheckBox.js +0 -36
- package/svg-icons/CheckBoxOutlineBlank.js +0 -36
- package/svg-icons/CheckCircle.js +0 -36
- package/svg-icons/HiAccount.js +0 -52
- package/svg-icons/HiAll.js +0 -62
- package/svg-icons/HiBilling.js +0 -52
- package/svg-icons/HiCatalog.js +0 -52
- package/svg-icons/HiCustomer.js +0 -58
- package/svg-icons/HiFinance.js +0 -52
- package/svg-icons/HiRoute.js +0 -52
- package/svg-icons/HiSettlement.js +0 -52
- package/svg-icons/HiSizeLarge.js +0 -36
- package/svg-icons/HiSizeMedium.js +0 -36
- package/svg-icons/HiSizeSmall.js +0 -36
- package/svg-icons/HiTransaction.js +0 -52
- package/svg-icons/HiUser.js +0 -58
- package/svg-icons/HiWidget.js +0 -62
- package/svg-icons/IndeterminateCheckBox.js +0 -36
- package/svg-icons/KeyboardArrowLeft.js +0 -36
- package/svg-icons/KeyboardArrowRight.js +0 -36
- package/svg-icons/RadioButtonChecked.js +0 -36
- package/svg-icons/RadioButtonUnchecked.js +0 -36
- package/svg-icons/index.js +0 -106
- package/transitions/Collapse.js +0 -324
- package/transitions/Fade.js +0 -207
- package/transitions/Grow.js +0 -251
- package/transitions/Slide.js +0 -381
- package/transitions/Zoom.js +0 -204
- package/transitions/index.js +0 -52
- package/utils/ClickAwayListener.js +0 -122
- package/utils/HiIconBuilder.js +0 -178
- package/utils/addEventListener.js +0 -26
- package/utils/hiGetMdiIcon.js +0 -20
- package/utils/hiHelpers.js +0 -195
- package/utils/keyboardFocus.js +0 -75
- package/utils/manageAriaHidden.js +0 -49
- package/utils/withWidth.js +0 -214
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,1907 @@
|
|
|
1
|
-
|
|
1
|
+
<a name="2.0.0-beta.35"></a>
|
|
2
|
+
# 2.0.0-beta.35 (2018-09-14)
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **BodyRow:** add locale vars to child BodyRow ([9252382](https://gitlab.hipay.org/backend/hipay-material-ui/commit/9252382))
|
|
8
|
+
* **CellDate:** Handle date with moment & use prop format ([7fa8bf5](https://gitlab.hipay.org/backend/hipay-material-ui/commit/7fa8bf5))
|
|
9
|
+
* **CellIcon:** add label ellipsis ([b91913e](https://gitlab.hipay.org/backend/hipay-material-ui/commit/b91913e))
|
|
10
|
+
* **HeaderCell:** set sort icons always on the right of the title ([0704619](https://gitlab.hipay.org/backend/hipay-material-ui/commit/0704619))
|
|
11
|
+
* **HiDateRangePicker:** Keep focus on change dateTo if user types directly into the input to see date selection into calendar ([e998c60](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e998c60))
|
|
12
|
+
* **HiDateRangePicker:** Reset date range picker input to ([b1a66f3](https://gitlab.hipay.org/backend/hipay-material-ui/commit/b1a66f3))
|
|
13
|
+
* **HiDateRangeSelector:** UPD select value from parent component (defaultPreset property) ([90bb994](https://gitlab.hipay.org/backend/hipay-material-ui/commit/90bb994))
|
|
14
|
+
* **HiFormControl:** add error on disabled fields ([87ef0b6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/87ef0b6))
|
|
15
|
+
* **HiInput:** Keep focus on reset HiInput ([a84edab](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a84edab))
|
|
16
|
+
* **HiPins:** Add theme business primary color as default background color for HiPins and fix line-height ([23aa2d9](https://gitlab.hipay.org/backend/hipay-material-ui/commit/23aa2d9))
|
|
17
|
+
* **HiSelect:** add dynamic prop to handle dynamic select with initial options ([c668b90](https://gitlab.hipay.org/backend/hipay-material-ui/commit/c668b90))
|
|
18
|
+
* **HiSelect:** Display option label instead of all for selects with 1 option ([e47574a](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e47574a))
|
|
19
|
+
* **HiSelect:** Don't try to display unique selected options item when still loading ([116a72a](https://gitlab.hipay.org/backend/hipay-material-ui/commit/116a72a))
|
|
20
|
+
* **HiSelect:** Enable to handle hierarchic padding via options prop level ([dc4e5d8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/dc4e5d8))
|
|
21
|
+
* **HiSelect:** Handle unique and undefined selected item ([8dbb542](https://gitlab.hipay.org/backend/hipay-material-ui/commit/8dbb542))
|
|
22
|
+
* **HiSelectableList:** item displayed only if item.displayed != false ([e65b865](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e65b865))
|
|
23
|
+
* **HiTable:** Add default translations object to HeaderCell ([4ed766f](https://gitlab.hipay.org/backend/hipay-material-ui/commit/4ed766f))
|
|
24
|
+
* **HiTable:** Background color in hover ([95322f7](https://gitlab.hipay.org/backend/hipay-material-ui/commit/95322f7))
|
|
25
|
+
* **HiTable:** Performance optimization ([3ca60d3](https://gitlab.hipay.org/backend/hipay-material-ui/commit/3ca60d3))
|
|
26
|
+
* **HiTable:** remove anchorEls from state to remove circular structure in JSON compares ([c064ce9](https://gitlab.hipay.org/backend/hipay-material-ui/commit/c064ce9))
|
|
27
|
+
* **SelectInput:** selected choice label not overflowing on right arrow of HiSelect ([a7d7058](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a7d7058))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* **CellText:** add color props ([ff2bba8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/ff2bba8))
|
|
33
|
+
* **HiChip:** enable to display tooltip on HiChip via the prop 'title' ([6b15ca6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/6b15ca6))
|
|
34
|
+
* **HiDateRangePicker:** Add onBlur prop function to handle date errors properly ([df79494](https://gitlab.hipay.org/backend/hipay-material-ui/commit/df79494))
|
|
35
|
+
* **HiSelect:** Add (NEW) HiSelect, HiNestedSelect, HiDynamicSelect ([4c6447e](https://gitlab.hipay.org/backend/hipay-material-ui/commit/4c6447e))
|
|
36
|
+
* **HiTable:** Add no result message ([5265ba8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/5265ba8))
|
|
37
|
+
* **HiTableContextMenu:** handle hide lookup/exclude menu item for each column ([03e00cb](https://gitlab.hipay.org/backend/hipay-material-ui/commit/03e00cb))
|
|
38
|
+
* **workflow:** Add HI-CHANGELOG generation from commits ([edee0f6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/edee0f6))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Performance Improvements
|
|
42
|
+
|
|
43
|
+
* **HiTable:** Remove components Tooltips in table cells, add simple HTML attr title. Fix ellipsis i ([90e66cd](https://gitlab.hipay.org/backend/hipay-material-ui/commit/90e66cd))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### BREAKING CHANGES
|
|
47
|
+
|
|
48
|
+
* **HiSelect:** HiSelect API change, use HiNestedSelect or HiDynamicSelect relative to situation
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
<a name="2.0.0-beta.35"></a>
|
|
53
|
+
# 2.0.0-beta.35 (2018-09-12)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Bug Fixes
|
|
57
|
+
|
|
58
|
+
* **BodyRow:** add locale vars to child BodyRow ([9252382](https://gitlab.hipay.org/backend/hipay-material-ui/commit/9252382))
|
|
59
|
+
* **CellDate:** Handle date with moment & use prop format ([7fa8bf5](https://gitlab.hipay.org/backend/hipay-material-ui/commit/7fa8bf5))
|
|
60
|
+
* **CellIcon:** add label ellipsis ([b91913e](https://gitlab.hipay.org/backend/hipay-material-ui/commit/b91913e))
|
|
61
|
+
* **HeaderCell:** set sort icons always on the right of the title ([0704619](https://gitlab.hipay.org/backend/hipay-material-ui/commit/0704619))
|
|
62
|
+
* **HiDateRangePicker:** Keep focus on change dateTo if user types directly into the input to see date selection into calendar ([e998c60](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e998c60))
|
|
63
|
+
* **HiDateRangePicker:** Reset date range picker input to ([b1a66f3](https://gitlab.hipay.org/backend/hipay-material-ui/commit/b1a66f3))
|
|
64
|
+
* **HiDateRangeSelector:** UPD select value from parent component (defaultPreset property) ([90bb994](https://gitlab.hipay.org/backend/hipay-material-ui/commit/90bb994))
|
|
65
|
+
* **HiFormControl:** add error on disabled fields ([87ef0b6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/87ef0b6))
|
|
66
|
+
* **HiInput:** Keep focus on reset HiInput ([a84edab](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a84edab))
|
|
67
|
+
* **HiPins:** Add theme business primary color as default background color for HiPins and fix line-height ([23aa2d9](https://gitlab.hipay.org/backend/hipay-material-ui/commit/23aa2d9))
|
|
68
|
+
* **HiSelect:** add dynamic prop to handle dynamic select with initial options ([c668b90](https://gitlab.hipay.org/backend/hipay-material-ui/commit/c668b90))
|
|
69
|
+
* **HiSelect:** Display option label instead of all for selects with 1 option ([e47574a](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e47574a))
|
|
70
|
+
* **HiSelect:** Don't try to display unique selected options item when still loading ([116a72a](https://gitlab.hipay.org/backend/hipay-material-ui/commit/116a72a))
|
|
71
|
+
* **HiSelect:** Enable to handle hierarchic padding via options prop level ([dc4e5d8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/dc4e5d8))
|
|
72
|
+
* **HiSelect:** Handle unique and undefined selected item ([8dbb542](https://gitlab.hipay.org/backend/hipay-material-ui/commit/8dbb542))
|
|
73
|
+
* **HiSelectableList:** item displayed only if item.displayed != false ([e65b865](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e65b865))
|
|
74
|
+
* **HiTable:** Add default translations object to HeaderCell ([4ed766f](https://gitlab.hipay.org/backend/hipay-material-ui/commit/4ed766f))
|
|
75
|
+
* **HiTable:** Background color in hover ([95322f7](https://gitlab.hipay.org/backend/hipay-material-ui/commit/95322f7))
|
|
76
|
+
* **HiTable:** Performance optimization ([3ca60d3](https://gitlab.hipay.org/backend/hipay-material-ui/commit/3ca60d3))
|
|
77
|
+
* **HiTable:** remove anchorEls from state to remove circular structure in JSON compares ([c064ce9](https://gitlab.hipay.org/backend/hipay-material-ui/commit/c064ce9))
|
|
78
|
+
* **SelectInput:** selected choice label not overflowing on right arrow of HiSelect ([a7d7058](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a7d7058))
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Features
|
|
82
|
+
|
|
83
|
+
* **CellText:** add color props ([ff2bba8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/ff2bba8))
|
|
84
|
+
* **HiChip:** enable to display tooltip on HiChip via the prop 'title' ([6b15ca6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/6b15ca6))
|
|
85
|
+
* **HiDateRangePicker:** Add onBlur prop function to handle date errors properly ([df79494](https://gitlab.hipay.org/backend/hipay-material-ui/commit/df79494))
|
|
86
|
+
* **HiTable:** Add no result message ([5265ba8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/5265ba8))
|
|
87
|
+
* **HiTableContextMenu:** handle hide lookup/exclude menu item for each column ([03e00cb](https://gitlab.hipay.org/backend/hipay-material-ui/commit/03e00cb))
|
|
88
|
+
* **workflow:** Add HI-CHANGELOG generation from commits ([edee0f6](https://gitlab.hipay.org/backend/hipay-material-ui/commit/edee0f6))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Performance Improvements
|
|
92
|
+
|
|
93
|
+
* **HiTable:** Remove components Tooltips in table cells, add simple HTML attr title. Fix ellipsis i ([90e66cd](https://gitlab.hipay.org/backend/hipay-material-ui/commit/90e66cd))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
<a name="2.0.0-beta.35"></a>
|
|
98
|
+
# [2.0.0-beta.35](https://gitlab.hipay.org/backend/hipay-material-ui/compare/v3.0.1...v2.0.0-beta.35) (2018-09-06)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Features
|
|
102
|
+
|
|
103
|
+
* **HiIcon & HiChips:** Add HiIcon & HiChip component ([a2a3868](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a2a3868))
|
|
104
|
+
* Initiate hipay-material-ui project (core & docs) ([a58e271](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a58e271))
|
|
105
|
+
* Remove inherited material-ui components & fixs tests imports. ([8db4c97](https://gitlab.hipay.org/backend/hipay-material-ui/commit/8db4c97))
|
|
106
|
+
* **HiAlertModal:** Add HiAlertModal component & tests ([52f2b2e](https://gitlab.hipay.org/backend/hipay-material-ui/commit/52f2b2e))
|
|
107
|
+
* **HiBadge:** add HiBadge component ([e88b09c](https://gitlab.hipay.org/backend/hipay-material-ui/commit/e88b09c))
|
|
108
|
+
* **HiBreadcrumb:** Add HiBreadcrumb & HiPin components ([6a4820c](https://gitlab.hipay.org/backend/hipay-material-ui/commit/6a4820c))
|
|
109
|
+
* **HiButton:** Add HiButton & HiIconButton ([f45a57d](https://gitlab.hipay.org/backend/hipay-material-ui/commit/f45a57d))
|
|
110
|
+
* **HiColoredLabel:** Add HiColoredLabel component ([31312d8](https://gitlab.hipay.org/backend/hipay-material-ui/commit/31312d8))
|
|
111
|
+
* **HiExpansionPanel:** Add HiExpansionPanel ([dda6fb3](https://gitlab.hipay.org/backend/hipay-material-ui/commit/dda6fb3))
|
|
112
|
+
* **HiLoader:** Add HiLoader ([23beca0](https://gitlab.hipay.org/backend/hipay-material-ui/commit/23beca0))
|
|
113
|
+
* **HiSwitch:** Add HiSwitch & HiSwitchState component ([4767266](https://gitlab.hipay.org/backend/hipay-material-ui/commit/4767266))
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### BREAKING CHANGES
|
|
117
|
+
|
|
118
|
+
* **HiSwitch:** Primary color is not the default one anymore, required prop color and accept new
|
|
119
|
+
colors.
|
|
120
|
+
* **HiIcon & HiChips:** Replace HiIconBuilder by HiIcon. Icon name may have changed as we now rely on
|
|
121
|
+
material-ui-icons.
|
|
122
|
+
* **HiBreadcrumb:** Replace HiPin prop color to handle predefined colors
|
|
123
|
+
* **HiAlertModal:** HiAlertModal prop submitColor replace props positive/negative and allow new values
|
|
124
|
+
* **HiButton:** remove positive & negative props, replaced by colors
|
|
125
|
+
* Many breaking changes, change theme.palette.business.primary ->
|
|
126
|
+
theme.palette.primary, theme.***.normal -> theme.***.main
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
<a name="2.0.0-beta.35"></a>
|
|
131
|
+
# [2.0.0-beta.35](https://gitlab.hipay.org/backend/hipay-material-ui/compare/v3.0.1...v2.0.0-beta.35) (2018-08-31)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* Initiate hipay-material-ui project (core & docs) ([a58e271](https://gitlab.hipay.org/backend/hipay-material-ui/commit/a58e271))
|
|
137
|
+
* **HiButton:** Add HiButton & HiIconButton ([f45a57d](https://gitlab.hipay.org/backend/hipay-material-ui/commit/f45a57d))
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### BREAKING CHANGES
|
|
141
|
+
|
|
142
|
+
* **HiButton:** remove positive & negative props, replaced by colors
|
|
143
|
+
* Many breaking changes, change theme.palette.business.primary ->
|
|
144
|
+
theme.palette.primary, theme.***.normal -> theme.***.main
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
Material-UI strictly follows [Semantic Versioning 2.0.0](http://semver.org/).
|
|
149
|
+
|
|
150
|
+
#### Release Schedule
|
|
151
|
+
|
|
152
|
+
- Weekly release: patch or minor version at the end of every week for routine bugfix or new features (anytime for urgent bugfix).
|
|
153
|
+
- Major version release is not included in this schedule for breaking change and new features.
|
|
154
|
+
|
|
155
|
+
## 3.0.1
|
|
156
|
+
###### *Aug 28, 2018*
|
|
157
|
+
|
|
158
|
+
Big thanks to the 10 contributors who made this release possible!
|
|
159
|
+
|
|
160
|
+
We are making a quick release after v3.0.0 to patch an incorrect peer dependency.
|
|
161
|
+
It's also a good opportunity to upgrade to the stable release of Babel 7.
|
|
162
|
+
|
|
163
|
+
### `@material-ui/core@v3.0.1`
|
|
164
|
+
|
|
165
|
+
- [Checkbox] Improve indeterminate status (#12671) @hareaca
|
|
166
|
+
- [StepLabel] Fix custom icon spacing (#12694) @JiayuanDeng
|
|
167
|
+
- [Chip] Add outlined variant (#12680) @orporan
|
|
168
|
+
- [Stepper] Add a new test case (#12684) @Anugraha123
|
|
169
|
+
- [core] Upgrade the dependencies (#12693) @oliviertassinari
|
|
170
|
+
|
|
171
|
+
### `@material-ui/icons@v3.0.1`
|
|
172
|
+
|
|
173
|
+
- [core] Fix for incorrect peer dependency version warning (#12677) @xaviergonz
|
|
174
|
+
- [core] Upgrade the dependencies (#12693) @oliviertassinari
|
|
175
|
+
|
|
176
|
+
### `@material-ui/lab@v3.0.0-alpha.13`
|
|
177
|
+
|
|
178
|
+
- [core] Fix for incorrect peer dependency version warning (#12677) @xaviergonz
|
|
179
|
+
- [core] Upgrade the dependencies (#12693) @oliviertassinari
|
|
180
|
+
|
|
181
|
+
### Docs
|
|
182
|
+
|
|
183
|
+
- [docs] Typo (#12675) @nazartokar
|
|
184
|
+
- [docs] Update notification link for release 3.0.0 (#12681) @lumatijev
|
|
185
|
+
- [docs] Warn about using withRoot HOC more than one time per page (#12692) @oorestisime
|
|
186
|
+
|
|
187
|
+
### Core
|
|
188
|
+
|
|
189
|
+
- [core] Fix for incorrect peer dependency version warning (#12677) @xaviergonz
|
|
190
|
+
- [core] Upgrade the dependencies (#12693) @oliviertassinari
|
|
191
|
+
|
|
192
|
+
## 3.0.0
|
|
193
|
+
###### *Aug 27, 2018*
|
|
194
|
+
|
|
195
|
+
Big thanks to the 27 contributors who made this release possible!
|
|
196
|
+
|
|
197
|
+
We are upgrading the major version of `@material-ui/core` to match the version of `@material-ui/icons`.
|
|
198
|
+
The next major release is planned for [Q1, 2019](https://github.com/mui-org/material-ui/milestone/25).
|
|
199
|
+
|
|
200
|
+
### Breaking change
|
|
201
|
+
|
|
202
|
+
- [icons] Save 22 Megabytes from the package (#12662)
|
|
203
|
+
|
|
204
|
+
Cut the package size by half.
|
|
205
|
+
It should make the npm installation twice as fast.
|
|
206
|
+
It's not OK to have some installation timeout.
|
|
207
|
+
We have removed the `/es` folder.
|
|
208
|
+
|
|
209
|
+
```diff
|
|
210
|
+
-import AccessAlarm from '@material-ui/icons/es/AccessAlarm';
|
|
211
|
+
+import AccessAlarm from '@material-ui/icons/AccessAlarm';
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
- [core] Drop Firefox 45 support (#12669)
|
|
215
|
+
|
|
216
|
+
Firefox 52 is the last version supported by Windows XP.
|
|
217
|
+
The market share of Firefox 45 is 0.03%.
|
|
218
|
+
We use the same strategy for Chrome.
|
|
219
|
+
|
|
220
|
+
#### Component Fixes / Enhancements
|
|
221
|
+
|
|
222
|
+
- [Input] Improve type checking for inputProps (#12591) @eps1lon
|
|
223
|
+
- [ClickAwayListener] Prevent rerendering (#12613) @shcherbyakdev
|
|
224
|
+
- [Chip] Add missing ChipClassKey values (#12625) @IvanCoronado
|
|
225
|
+
- [Dialog] Add 'lg' support to maxWidth (#12626) @TheMoonDawg
|
|
226
|
+
- [TableSortLabel] Support custom icon component (#12630) @wolfejw86
|
|
227
|
+
- [SvgIcon] Add Icon suffix to SVG icons (#12634) @yordis
|
|
228
|
+
- [Collapse] Fix document for style wrapperInner (#12638) @peter50216
|
|
229
|
+
- [Input] Extract helpers to their own module (#12657) @Pajn
|
|
230
|
+
- [Chip] Add onKeyUp handler for correct behavior (#12660) @markselby9
|
|
231
|
+
- [CardActionArea] Add CardActionArea component (#12624) @yuchi
|
|
232
|
+
- [ListItem] Move the selected prop from MenuItem to ListItem (#12602) @the-question
|
|
233
|
+
|
|
234
|
+
#### Docs
|
|
235
|
+
|
|
236
|
+
- [examples] Update ts example to be closer to the official docs (#12593) @eps1lon
|
|
237
|
+
- [docs] Fix a display issue on IE11 (#12599) @oliviertassinari
|
|
238
|
+
- [docs] Warn about checking for version mismatch (#12601) @hluedeke
|
|
239
|
+
- [docs] Consistent content height in Albumn layout example (#12556) @mbrookes
|
|
240
|
+
- [example] Support Gatsby v2 (#12331) @blukai
|
|
241
|
+
- [docs] xlarge = extra-large (#12619) @FarzadSole
|
|
242
|
+
- [docs] Add "Insights" by justaskusers.com to the list of showcases (#12620) @mattes3
|
|
243
|
+
- [docs] Use public api of jss instead of private vars (#12629) @eps1lon
|
|
244
|
+
- [docs] Improve Autocomplete filtering suggestions (#12641) @jorgegorka
|
|
245
|
+
- [docs] Fix IE 11 support (#12650) @
|
|
246
|
+
- [docs] Fix typos (#12652) @dandv
|
|
247
|
+
- [docs] Use the event.target.checked API systematically (#12644) @chellem
|
|
248
|
+
- [docs] Correct `by and enum` typo in api.md (#12663) @G-Rath
|
|
249
|
+
- [docs] Autocomplete react-select dropdown overlay (#12664) @gerhat
|
|
250
|
+
- [docs] Fix typo in usage.md (#12666) @DeveloperDavo
|
|
251
|
+
|
|
252
|
+
#### Core
|
|
253
|
+
|
|
254
|
+
- [core] Better Windows support for the API generation (#12584) @adeelibr
|
|
255
|
+
- [TypeScript] Update SnackbarContent type def to accept action prop as array (#12595) @cngraf
|
|
256
|
+
- [test] Fix the missing libxcursor1 binary (#12611) @oliviertassinari
|
|
257
|
+
- [core] Fix recompose version (#12605) @yamachu
|
|
258
|
+
- [typescript] Fix AnyComponent for functional components (#12589) @vierbergenlars
|
|
259
|
+
- [core] Let's see if the CI catch the issue (#12615) @oliviertassinari
|
|
260
|
+
- [typescript] Use interfaces for typography types (#12616) @pelotom
|
|
261
|
+
- [ci] Consider only files changed on the built branch (#12627) @eps1lon
|
|
262
|
+
- [test] Lint typescript definitions (#12637) @eps1lon
|
|
263
|
+
- [core] Upgrade dev dependencies (#12658) @
|
|
264
|
+
|
|
265
|
+
#### Lab
|
|
266
|
+
|
|
267
|
+
- [Slider] Fix memory leaks (#12537) @eps1lon
|
|
268
|
+
- [Slider] Fix transitions (#12531) @eps1lon
|
|
269
|
+
|
|
270
|
+
## 1.5.1
|
|
271
|
+
###### *Aug 19, 2018*
|
|
272
|
+
|
|
273
|
+
Big thanks to the 22 contributors who made this release possible!
|
|
274
|
+
|
|
275
|
+
Here are some highlights ✨:
|
|
276
|
+
- Upgrade Babel to `v7.0.0-rc.1` (#12581).
|
|
277
|
+
- Document the meta viewport (#12541).
|
|
278
|
+
- And many more bug fixes 🐛 and documentation improvements 📝.
|
|
279
|
+
|
|
280
|
+
### Breaking change
|
|
281
|
+
|
|
282
|
+
N/A
|
|
283
|
+
|
|
284
|
+
#### Component Fixes / Enhancements
|
|
285
|
+
|
|
286
|
+
- [Tab] Fix fullWidth CSS (#12495) @jankjr
|
|
287
|
+
- [TextField] Fix disabled prop only affecting the Input component (#12489) @WreckedArrow
|
|
288
|
+
- [Table] Sync typings (#12503) @franklixuefei
|
|
289
|
+
- [Table] Remove padding from getting spread to native element (#12505) @JoshuaLicense
|
|
290
|
+
- [Select] Accept boolean (#12522) @oliviertassinari
|
|
291
|
+
- [Avatar] Prepare Preact support (#12519) @jorgegorka
|
|
292
|
+
- [Drawer] Change height from 100vh to 100% (#12528) @joemaffei
|
|
293
|
+
- [TextField] Accept boolean (#12538) @palaniichukdmytro
|
|
294
|
+
- [withWidth] Remove broken innerRef (#12542) @oliviertassinari
|
|
295
|
+
- [CardMedia] Add an example with the component property (#12481) @adeelibr
|
|
296
|
+
- [ListSubheader] Add a disableGutters property (#12570) @johannwagner
|
|
297
|
+
- [Dialog] Simplify the DialogContentText implementation (#12577) @oliviertassinari
|
|
298
|
+
- [Popover] Fix wrong getContentAnchorEl definition (#12562) @duvet86
|
|
299
|
+
|
|
300
|
+
#### Docs
|
|
301
|
+
|
|
302
|
+
- [docs] Tweak dashboard example nav list heading (#12501) @JoshuaLicense
|
|
303
|
+
- [docs] Fix a typo in the Modal page (#12502) @melaniebcohen
|
|
304
|
+
- [docs] Don't load the ad on mobile (#12509) @oliviertassinari
|
|
305
|
+
- [docs] Fix typo (suot to suit) (#12513) @ratanachai
|
|
306
|
+
- [docs] Fix typo in the icons section (#12514) @PolGuixe
|
|
307
|
+
- [docs] Document breakpoint argument for withMobileDialog (#12521) @nxtman123
|
|
308
|
+
- [docs] Increase SEO potential (#12525) @oliviertassinari
|
|
309
|
+
- [docs] "codestyle" comment typo fix (#12511) @nasiscoe
|
|
310
|
+
- [docs] Document the meta viewport (#12541) @oliviertassinari
|
|
311
|
+
- [docs] Throttle the active toc instead of debouncing (#12543) @oliviertassinari
|
|
312
|
+
- [docs] Add material-ui-next-pickers (#12547) @chingyawhao
|
|
313
|
+
- [docs] Fix the broken Table sorting logic (#12569) @oliviertassinari
|
|
314
|
+
- [docs] Link a new Menu demo (#12574) @pierrelstan
|
|
315
|
+
- [docs] Improve typescript issue assistance (#12560) @eps1lon
|
|
316
|
+
- [docs] Add notistack in the related projects (#12578) @oliviertassinari
|
|
317
|
+
|
|
318
|
+
#### Core
|
|
319
|
+
|
|
320
|
+
- [typescript] Style typing improvements (#12492) @pelotom
|
|
321
|
+
- [core] Should run the tests when needed (#12510) @oliviertassinari
|
|
322
|
+
- [core] Add MuiTableBody to theme overrides (#12550) @pvdstel
|
|
323
|
+
- [test] Disable CircleCI cache (#12573) @oliviertassinari
|
|
324
|
+
- [test] Introduce prettier into CI pipeline (#12564) @eps1lon
|
|
325
|
+
- [test] Fix prettier ci task with multiple changed files (#12579) @eps1lon
|
|
326
|
+
- [core] Upgrade to babel@rc.1 (#12581) @oliviertassinari
|
|
327
|
+
|
|
328
|
+
#### Lab
|
|
329
|
+
|
|
330
|
+
- [SpeedDial] Fix invalid prop direction supplied (#12533) @eps1lon
|
|
331
|
+
- [SpeedDial] Remove dead code from test (#12545) @mbrookes
|
|
332
|
+
- [Slider] Fix failing handler test (#12535) @eps1lon
|
|
333
|
+
|
|
334
|
+
## 1.5.0
|
|
335
|
+
###### *Aug 12, 2018*
|
|
336
|
+
|
|
337
|
+
Big thanks to the 23 contributors who made this release possible!
|
|
338
|
+
This is a dense release!
|
|
339
|
+
|
|
340
|
+
Here are some highlights ✨:
|
|
341
|
+
- Introduce a "page layout examples" section in the documentation. Don't miss it! (#12410) @mbrookes.
|
|
342
|
+
- Add a Table Of Contents for each page of the documentation (#12368).
|
|
343
|
+
- Improve the TypeScript autocomplete for CSS properties (#12456) @eps1lon.
|
|
344
|
+
- And many more bug fixes 🐛 and documentation improvements 📝.
|
|
345
|
+
|
|
346
|
+
### Breaking change
|
|
347
|
+
|
|
348
|
+
N/A
|
|
349
|
+
|
|
350
|
+
#### Component Fixes / Enhancements
|
|
351
|
+
|
|
352
|
+
- [Select] Accept boolean (#12429) @oliviertassinari
|
|
353
|
+
- [icons] Resize svg icons (#12356) @the-question
|
|
354
|
+
- [Collapse] Add all class keys to the types (#12436) @stuharvey
|
|
355
|
+
- [Table] Padding feature (#12415) @aseem191
|
|
356
|
+
- [icons] Remove clip-path from all icons (#12452) @kevinnorris
|
|
357
|
+
- [Input] Use the color from the theme (#12458) @adeelibr
|
|
358
|
+
- [NoSrr] Add a defer property (#12462) @oliviertassinari
|
|
359
|
+
- [icons] Remove unused clipPath definitions from icons (#12465) @kevinnorris
|
|
360
|
+
- [Popover] Allow to pass repeated props to modal (#12459) @davibq
|
|
361
|
+
- [SelectInput] Add "name" to event.target for onBlur callback (#12467) @hassan-zaheer
|
|
362
|
+
- [Button] Make the outlined variant better leverage the color (#12473) @essuraj
|
|
363
|
+
- [Tooltip] Hide the tooltip as soon as an exit event triggers (#12488) @oliviertassinari
|
|
364
|
+
|
|
365
|
+
#### Docs
|
|
366
|
+
|
|
367
|
+
- [docs] Fix react-select multiselection wrapping (#12412) @henkvhest
|
|
368
|
+
- [docs] Add some Render Props demos (#12366) @jedwards1211
|
|
369
|
+
- [docs] Add example layouts (#12410) @mbrookes
|
|
370
|
+
- [core] Fix some errors when porting demos to TypeScript (#12417) @PavelPZ
|
|
371
|
+
- [docs] Standardise the wording between icon docs and readme (#12425) @mbrookes
|
|
372
|
+
- [docs] Improve the withTheme example (#12428) @oliviertassinari
|
|
373
|
+
- [docs] Rename layouts to page-layout-examples + minor fixes (#12430) @mbrookes
|
|
374
|
+
- [docs] Ensure `inputRef` is wired up to react-number-format's input (#12444) @NMinhNguyen
|
|
375
|
+
- [docs] Expand on the JSS and class name generator docs (#12447) @atrauzzi
|
|
376
|
+
- [docs] Better autocomplete docs (#12451) @oliviertassinari
|
|
377
|
+
- [docs] Fix typo (#12454) @metropt
|
|
378
|
+
- [docs] Better descriptive Table demos (#12464) @bala121286
|
|
379
|
+
- [README] New iteration on the backers (#12475) @oliviertassinari
|
|
380
|
+
- [docs] Font vs SVG. Which approach to use? (#12466) @PolGuixe
|
|
381
|
+
- [docs] Add a Table Of Contents (#12368) @oliviertassinari
|
|
382
|
+
- [docs] Fix link to twitter account (#12482) @patcito
|
|
383
|
+
- [docs] Try CodeFund over Carbon (#12484) @oliviertassinari
|
|
384
|
+
|
|
385
|
+
#### Core
|
|
386
|
+
|
|
387
|
+
- [typescript] Synced with PR #12373 (#12439) @franklixuefei
|
|
388
|
+
- [core] Add hoverOpacity to TypeAction interface (#12455) @hassan-zaheer
|
|
389
|
+
- [core] Save some bytes in the super() logic (#12476) @oliviertassinari
|
|
390
|
+
- [core] Upgrade the dependencies (#12477) @oliviertassinari
|
|
391
|
+
- [typescript] improve autocomplete for css properties in createStyles (#12456) @eps1lon
|
|
392
|
+
|
|
393
|
+
#### Lab
|
|
394
|
+
|
|
395
|
+
- [SpeedDialAction] Allow a tooltip placement prop (#12244) @seanchambo
|
|
396
|
+
- [lab] Depend on @babel/runtime (#12470) @goto-bus-stop
|
|
397
|
+
|
|
398
|
+
## 1.4.3
|
|
399
|
+
###### *Aug 4, 2018*
|
|
400
|
+
|
|
401
|
+
Big thanks to the 15 contributors who made this release possible!
|
|
402
|
+
This release focuses on bug fixes 🐛.
|
|
403
|
+
|
|
404
|
+
### Breaking change
|
|
405
|
+
|
|
406
|
+
N/A
|
|
407
|
+
|
|
408
|
+
#### Component Fixes / Enhancements
|
|
409
|
+
|
|
410
|
+
- [Tooltip] Add default css max-width and customization demo (#12338) @simoami
|
|
411
|
+
- [Step] Add completed class to the root (#12339) @kylezinter
|
|
412
|
+
- [Drawer] Add touchAction: 'none' on the Overlay to disable scrolling (#12350) @jlascoleassi
|
|
413
|
+
- [Chip] Remove reference to checked prop in the docs (#12375) @DavidThorpe71
|
|
414
|
+
- [styles] Improve the dangerouslyUseGlobalCSS story (#12389) @oliviertassinari
|
|
415
|
+
- [Tooltip] Fix autoFocus issue (#12372) @Mangatt
|
|
416
|
+
- [FormLabel] [FormHelperText] classes keys (#12373) @Mangatt
|
|
417
|
+
- [Chip] Add color prop to chip component (#12378) @itelo
|
|
418
|
+
- [Tooltip] Fix hover issues (#12394) @aseem191
|
|
419
|
+
- [palette] Better defensive logic (#12402) @oliviertassinari
|
|
420
|
+
- [MobileStepper] Add a LinearProgressProps property (#12404) @oliviertassinari
|
|
421
|
+
- [Textarea] Add back defensive branch logic (#12406) @kanzelm3
|
|
422
|
+
|
|
423
|
+
#### Docs
|
|
424
|
+
|
|
425
|
+
- [docs] Add markdown code to Interactive Grid (#12333) @itelo
|
|
426
|
+
- [docs] Document how to use the Select with a label and a placeholder (#12342) @oliviertassinari
|
|
427
|
+
- [docs] Improve the Table sorting logic (#12348) @xkenmon
|
|
428
|
+
- [docs] Fix contast => contrast typo (#12395) @chayeoi
|
|
429
|
+
- [docs] Fix two typos in Lists.md (#12397) @adl
|
|
430
|
+
- [docs] Fix ChipPlayground generated code (#12401) @mbrookes
|
|
431
|
+
- [docs] Add Tomahawk boilerplate to the related projects (#12393) @goemen
|
|
432
|
+
|
|
433
|
+
#### Core
|
|
434
|
+
|
|
435
|
+
- [core] Upgrade the dependencies (#12409) @oliviertassinari
|
|
436
|
+
|
|
437
|
+
#### Lab
|
|
438
|
+
|
|
439
|
+
- [ToggleButton] Fix TypeScript definition (#12360) @itskibo
|
|
440
|
+
|
|
441
|
+
## 1.4.2
|
|
442
|
+
###### *Jul 29, 2018*
|
|
443
|
+
|
|
444
|
+
Big thanks to the 22 contributors who made this release possible!
|
|
445
|
+
I hope we will soon beat our previous record: 30 contributors in a single week.
|
|
446
|
+
|
|
447
|
+
Here are some highlights ✨:
|
|
448
|
+
- Upgrade the react-select demo to v2 (#12307) @oliviertassinari.
|
|
449
|
+
- Document a new "No SSR" component (#12317) @oliviertassinari.
|
|
450
|
+
- Add a label placement property for FormControlLabel (#12303) @mbrookes.
|
|
451
|
+
- And many more bug fixes 🐛 and documentation improvements 📝.
|
|
452
|
+
|
|
453
|
+
### Breaking change
|
|
454
|
+
|
|
455
|
+
N/A
|
|
456
|
+
|
|
457
|
+
#### Component Fixes / Enhancements
|
|
458
|
+
|
|
459
|
+
- [Tabs] Reduce the bundle size (#12256) @oliviertassinari
|
|
460
|
+
- [Menu] Add null as acceptable value of anchorEl (#12249) @LAITONEN
|
|
461
|
+
- [Popper] Increase the minimal required version of popper.js (#12258) @Tuaniwan
|
|
462
|
+
- [TablePagination] Add missing selectIcon ClassKey definition (#12267) @spallister
|
|
463
|
+
- [Tooltip] Add some docs for disabled elements (#12265) @kamranayub
|
|
464
|
+
- [Tabs] Prevent unwanted auto-move in scrolling tabs (#12276) @novascreen
|
|
465
|
+
- [Button] Fix icon positioning on Safari iOS (#12278) @KevinAsher
|
|
466
|
+
- [Modal] Add onRendered to ModalProps (#12284) @rynobax
|
|
467
|
+
- [Card] Align icons with ListItem (#12292) @mbrookes
|
|
468
|
+
- [TextField] Improve onChange type definition (#12294) @t49tran
|
|
469
|
+
- [DialogContentText] Inherit TypographyProps in type definition (#12301) @charlieduong94
|
|
470
|
+
- [FormControlLabel] Add labelPlacement prop (#12303) @mbrookes
|
|
471
|
+
- [FormControlLabel] Correct the style description (#12304) @mbrookes
|
|
472
|
+
- [Typography] Add color=textPrimary option (#12310) @oliviertassinari
|
|
473
|
+
- [Tooltip] Remove an undocumented API (#12312) @oliviertassinari
|
|
474
|
+
- [RootRef] Apply the same logic as React Ref (#12311) @oliviertassinari
|
|
475
|
+
- [Grid] Document the nested capability (#12313) @oliviertassinari
|
|
476
|
+
- [SwipeableDrawer] Fix SSR issue on iOS (#12314) @oliviertassinari
|
|
477
|
+
- [Snackbar] Fix anchorOrigin types (#12316) @nmchaves
|
|
478
|
+
- [LinearProgress] Fix wrong style rule usage (#12319) @agentmilindu
|
|
479
|
+
- [Popper] Fix modifiers appearing as attribute of div (#12329) @skeithtan
|
|
480
|
+
|
|
481
|
+
#### Docs
|
|
482
|
+
|
|
483
|
+
- [docs] Fix typo (#12248) @johnjacobkenny
|
|
484
|
+
- [docs] Add typekev.com to showcase page (#12243) @typekev
|
|
485
|
+
- [docs] Fix escape "|" char (#12254) @TheRusskiy
|
|
486
|
+
- [docs] Fix logo in the README (#12273) @antoinerousseau
|
|
487
|
+
- [docs] Add an example with Popper and react-autosuggest (#12280) @oliviertassinari
|
|
488
|
+
- [docs] Add Complementary Project - create-mui-theme (#12269) @UsulPro
|
|
489
|
+
- [docs] Add a note on the name option and dangerouslyUseGlobalCSS (#12281) @oliviertassinari
|
|
490
|
+
- [docs] Improve ListItem and BottomNavigationAction docs (#12295) @vkentta
|
|
491
|
+
- [docs] Add placeholder for search bar (#12296) @DheenodaraRao
|
|
492
|
+
- [docs] Upgrade react-select (#12307) @oliviertassinari
|
|
493
|
+
- [docs] Use data to improve the ranking (#12315) @oliviertassinari
|
|
494
|
+
- [docs] Document NoSsr (#12317) @oliviertassinari
|
|
495
|
+
- [docs] Improve the docs to have matches (#12322) @oliviertassinari
|
|
496
|
+
|
|
497
|
+
#### Core
|
|
498
|
+
|
|
499
|
+
- [core] Upgrade dev dependencies (#12323) @oliviertassinari
|
|
500
|
+
|
|
501
|
+
#### Lab
|
|
502
|
+
|
|
503
|
+
- [Slider] Increase color specification conformance (#12245) @eps1lon
|
|
504
|
+
- [SpeedDial] Prevent opening when hovering closed actions (#12241) @mbrookes
|
|
505
|
+
- [Slider] Remove visual zero state from thumb (#12242) @eps1lon
|
|
506
|
+
|
|
507
|
+
## 1.4.1
|
|
508
|
+
###### *Jul 22, 2018*
|
|
509
|
+
|
|
510
|
+
Big thanks to the 15 contributors who made this release possible!
|
|
511
|
+
|
|
512
|
+
Here are some highlights ✨:
|
|
513
|
+
- The CSS API is now fully documented (#12174) @mbrookes.
|
|
514
|
+
|
|
515
|
+
| Name | Description |
|
|
516
|
+
|:-----|:------------|
|
|
517
|
+
| <span class="prop-name">root</span> | Styles applied to the root element.
|
|
518
|
+
| <span class="prop-name">label</span> | Styles applied to the span element that wraps the children.
|
|
519
|
+
| … | …
|
|
520
|
+
|
|
521
|
+
- After many iterations, we are happy to announce `@material-ui/icons` v2.0.0 💃.
|
|
522
|
+
With this version, you can take advantage of all the icons recently released by Google:
|
|
523
|
+
https://material.io/tools/icons/. There are more than 5,000 icons.
|
|
524
|
+
(#12016, #12036, #12170, #12111, #12225)
|
|
525
|
+
|
|
526
|
+
- The 1.4.0 release of Material-UI has introduced a new implementation of the Tooltip and Popper component.
|
|
527
|
+
This release fixes a lot of issues following the rewrite (#12168, #12161, #12194, #12223, #12218).
|
|
528
|
+
Thank you for reporting all these problems 🐛. Hopefully, it's very stable now.
|
|
529
|
+
|
|
530
|
+
- Creative Tim has just completed [their second Material-UI theme](https://www.creative-tim.com/product/material-kit-pro-react?partner=104080) 💅.
|
|
531
|
+
It's an important milestone for the themability of Material-UI.
|
|
532
|
+
We are going to keep working on adding more themes to the list.
|
|
533
|
+
|
|
534
|
+
### Breaking change
|
|
535
|
+
|
|
536
|
+
@material-ui/icons@2.0.0 allows React users to take advantage of the icons revamp the Material Design Team has been recently released. Some icons have been removed, ~150 new icons have been added, and some icons have been renamed. There are also currently some issues with the size of certain icons. Please refer to #12016 for further details.
|
|
537
|
+
|
|
538
|
+
#### Component Fixes / Enhancements
|
|
539
|
+
|
|
540
|
+
- [Tab] Fix maxWidth issue with fullWidth mode (#12158) @chenop
|
|
541
|
+
- [Popper] Update TypeScript definitions (#12161) @Slessi
|
|
542
|
+
- [CardHeader] Add typography/props controls like in ListItemText (#12166) @chenop
|
|
543
|
+
- [Tooltip] Fix some new issues (#12168) @oliviertassinari
|
|
544
|
+
- [icons] New iteration (#12170) @oliviertassinari
|
|
545
|
+
- [icons] Remove fill attribute from some icons (#12111) @ChristiaanScheermeijer
|
|
546
|
+
- [Popper] Fix the transition in the demos (#12194) @oliviertassinari
|
|
547
|
+
- [Modal] Ignore if the event prevent default is called (#12202) @oliviertassinari
|
|
548
|
+
- [Grid] Add "space-evenly" value for justify prop (#12213) @iain-b
|
|
549
|
+
- [Grow] Fix scroll on entered (#12199) @stephenway
|
|
550
|
+
- [Popper] Fix update logic (#12218) @oliviertassinari
|
|
551
|
+
- [Badge] Increase readability (#12221) @oliviertassinari
|
|
552
|
+
- [styles] Increase the class name lenght limit before raising (#12222) @oliviertassinari
|
|
553
|
+
- [icons] Fix SVG path precision issue (#12225) @ChristiaanScheermeijer
|
|
554
|
+
- [Popper] Typing and documentation (#12223) @dispix
|
|
555
|
+
- [Select] Simpler onChange event.target logic (#12231) @oliviertassinari
|
|
556
|
+
- [input] Forward required, readOnly and autoFocus (#12234) @sakulstra
|
|
557
|
+
- [HOC] Add `innerRef` to withWidth and withTheme (#12236) @itelo
|
|
558
|
+
- [Textarea] Simplification of the code (#12238) @oliviertassinari
|
|
559
|
+
- [Tabs] Small changes investigating #11624 (#12239) @oliviertassinari
|
|
560
|
+
|
|
561
|
+
#### Docs
|
|
562
|
+
|
|
563
|
+
- [docs] Add Toggle Selection Control to 'Migration From v0.x' Document (#12149) @shabareesh
|
|
564
|
+
- [docs] Add Menu Item to 'Migration From v0.x' Document (#12150) @shabareesh
|
|
565
|
+
- [docs] New ISSUE_TEMPLATE (#12148) @oliviertassinari
|
|
566
|
+
- [docs] Add Font Icon to 'Migration From v0.x' Document (#12151) @shabareesh
|
|
567
|
+
- [docs] copyedit: typo in testing.md (#12155) @cldellow
|
|
568
|
+
- [docs] Document the CSS API (#12174) @mbrookes
|
|
569
|
+
- [docs] An iteration on the SSR Troubleshooting section (#12229) @oliviertassinari
|
|
570
|
+
|
|
571
|
+
#### Core
|
|
572
|
+
|
|
573
|
+
- [core] Upgrade dev dependencies (#12156) @oliviertassinari
|
|
574
|
+
- [core] Add missing unwrap export to test-utils type definition (#12184) @kallebornemark
|
|
575
|
+
- [test] Conditional tests (#12191) @oliviertassinari
|
|
576
|
+
- [core] Fix babel plugin name (#12209) @oliviertassinari
|
|
577
|
+
- [core] Upgrade the dev dependencies (#12220) @oliviertassinari
|
|
578
|
+
- [core] Rename node to ref (#12235) @oliviertassinari
|
|
579
|
+
|
|
580
|
+
#### Lab
|
|
581
|
+
|
|
582
|
+
- [Slider] Fix typescript typings (#12173) @eps1lon
|
|
583
|
+
- [SpeedDial] Fix SpeedDialAction dark theme (#12230) @mbrookes
|
|
584
|
+
- [lab] Build and export fixes (#12233) @goto-bus-stop
|
|
585
|
+
|
|
586
|
+
## 1.4.0
|
|
587
|
+
###### *Jul 14, 2018*
|
|
588
|
+
|
|
589
|
+
Big thanks to the 21 contributors who made this release possible.
|
|
590
|
+
Here are some highlights ✨:
|
|
591
|
+
- Rework the Tooltip implementation (#12085)
|
|
592
|
+
|
|
593
|
+
The component is -1kB gzipped smaller and much faster.
|
|
594
|
+
You can render 100 of them on a page with no issue.
|
|
595
|
+
It's also introducing a new component: Popper, an abstraction on top of [Popper.js](https://github.com/FezVrasta/popper.js).
|
|
596
|
+
|
|
597
|
+
- Add color selector (#12053) @mbrookes
|
|
598
|
+
|
|
599
|
+
People can now dynamically change the theme of the whole documentation.
|
|
600
|
+
|
|
601
|
+
- Add a new toggle buttons component (#10144) @phallguy
|
|
602
|
+
- And many more bug fixes and documentation improvements.
|
|
603
|
+
|
|
604
|
+
### Breaking change
|
|
605
|
+
|
|
606
|
+
N/A
|
|
607
|
+
|
|
608
|
+
#### Component Fixes / Enhancements
|
|
609
|
+
|
|
610
|
+
- [Icons] Misc fixes and optimizations (#12036) @mbrookes
|
|
611
|
+
- [Tooltip] Rework the implementation (#12085) @oliviertassinari
|
|
612
|
+
- [Snackbar] Fix SnackbarOrigin TypeScript definition (#12083) @tzfrs
|
|
613
|
+
- [Dialog] Fix action width issue (#12081) @mim-Armand
|
|
614
|
+
- [theme] Use `isPlainObject` to avoid dropping prototypes (#12100) @kivlor
|
|
615
|
+
- [Popper] Add a modifiers property (#12108) @oliviertassinari
|
|
616
|
+
- [Button] Fix IE11 support of CSS 'width:initial' (#12119) @koshea
|
|
617
|
+
- [FormControlLabel] Add a failing test case and fix it (#12141) @oliviertassinari
|
|
618
|
+
- [Toolbar] Add dense variant (#12075) @srilman
|
|
619
|
+
- [Typography] Fix display2 cuts off the bottom of a 'g' (#12146) @Skaronator
|
|
620
|
+
|
|
621
|
+
#### Docs
|
|
622
|
+
|
|
623
|
+
- [docs] Fix typo (#12046) @AlexanderLukin
|
|
624
|
+
- [docs] Fix wrong icon names (#12042) @AlexanderLukin
|
|
625
|
+
- [docs] Fix typo (#12050) @AlexanderLukin
|
|
626
|
+
- [docs] Fix Typo (#12064) @johnjacobkenny
|
|
627
|
+
- [docs] Add known issues/limitations for progress animations (#12062) @HRK44
|
|
628
|
+
- [docs] Correct the normalize-function (#12066) @fauskanger
|
|
629
|
+
- [docs] Add react-media-material-ui in the related projects (#12068) @jedwards1211
|
|
630
|
+
- [docs] Fix SSR example to support production mode (#12080)
|
|
631
|
+
- [docs] Fix Theme nesting demo in codesandbox (#12097) @oliviertassinari
|
|
632
|
+
- [docs] Use the de-structured "children" variable (#12104) @jzhang729
|
|
633
|
+
- [docs] Add Tidelift banner (#12099) @oliviertassinari
|
|
634
|
+
- [docs] Fix some broken links (#12107) @oliviertassinari
|
|
635
|
+
- [docs] Preconnect to load the fonts (#12113) @oliviertassinari
|
|
636
|
+
- [docs] Improve grid demo descriptions (#12112) @mbrookes
|
|
637
|
+
- [docs] Add color selector (#12053) @mbrookes
|
|
638
|
+
- [docs] Add Tentu in the showcase (#12122) @urkopineda
|
|
639
|
+
- [docs] Add Subheader to v0.x migration guide (#12144) @shabareesh
|
|
640
|
+
- [docs] Add a comment that React 16.3.0 is a peer dependency (#12145) @chenop
|
|
641
|
+
- [Table] Document the CSS API (#12147) @chenop
|
|
642
|
+
|
|
643
|
+
#### Core
|
|
644
|
+
|
|
645
|
+
- [core] Upgrade the dev dependencies (#12049) @oliviertassinari
|
|
646
|
+
- [core] Improve the prop-types of shape (#12098) @oliviertassinari
|
|
647
|
+
- [core] Upgrade dev dependencies (#12117) @oliviertassinari
|
|
648
|
+
- [core] Error typo fix (#12118) @TheRusskiy
|
|
649
|
+
- [test] Fix Argos-CI flakyness (#12142) @oliviertassinari
|
|
650
|
+
|
|
651
|
+
#### Lab
|
|
652
|
+
|
|
653
|
+
- [ToggleButtons] Add toggle buttons (#10144) @phallguy
|
|
654
|
+
- [Slider] Make interaction easier, fix thumb overflow (#11889) @ValentinH
|
|
655
|
+
- [SpeedDial] Inline the Add icon (#12128) @mbrookes
|
|
656
|
+
|
|
657
|
+
## 1.3.1
|
|
658
|
+
###### *Jul 2, 2018*
|
|
659
|
+
|
|
660
|
+
Big thanks to the 13 contributors who made this release possible.
|
|
661
|
+
|
|
662
|
+
Here are some highlights ✨:
|
|
663
|
+
- Document the scroll property of the Dialog (#12025).
|
|
664
|
+
- Add a demo with Font Awesome (#12027).
|
|
665
|
+
- And many more bug fixes and documentation improvements.
|
|
666
|
+
|
|
667
|
+
### Breaking change
|
|
668
|
+
|
|
669
|
+
N/A
|
|
670
|
+
|
|
671
|
+
#### Component Fixes / Enhancements
|
|
672
|
+
|
|
673
|
+
- [Select] Fix some W3C issues (#11983) @oliviertassinari
|
|
674
|
+
- [Icon] Add a fontSize prop which accepts default and inherit (#11986) @sakulstra
|
|
675
|
+
- [Menu] Add prop to disable auto focus (#11984) @th317erd
|
|
676
|
+
- [SvgIcon] Add component property (#11987) @stephenway
|
|
677
|
+
- [GridList] Clean the rendering logic (#11998) @oliviertassinari
|
|
678
|
+
- [Snackbar] Add check for autoHideDuration if equals 0 (#12002) @C-Rodg
|
|
679
|
+
- [Menu] Fix scrolling issue (#12003) @stephenway
|
|
680
|
+
- [Stepper] Merge StepPositionIcon in StepIcon (#12026) @bousejin
|
|
681
|
+
- [Input] Add read only demo (#12024) @oliviertassinari
|
|
682
|
+
- [ExpansionPanelSummary] Add IconButtonProps property (#12035) @dakotamurphyucf
|
|
683
|
+
- [Dialog] Document the scroll property (#12025) @oliviertassinari
|
|
684
|
+
|
|
685
|
+
#### Docs
|
|
686
|
+
|
|
687
|
+
- [docs] Use _app.js instead of wrapping every page by withRoot() (#11989) @NikitaVlaznev
|
|
688
|
+
- [docs] Link RootRef in the FAQ (#12005) @scottastrophic
|
|
689
|
+
- [docs] Add Core UI (#12015) @oliviertassinari
|
|
690
|
+
- [docs] Switch autosuggest highlighting (#12019) @TheRusskiy
|
|
691
|
+
- [docs] Small spelling fix (#12028) @danh293
|
|
692
|
+
- [docs] Add a demo with Font Awesome (#12027) @oliviertassinari
|
|
693
|
+
|
|
694
|
+
#### Core
|
|
695
|
+
|
|
696
|
+
- [typescript] [createMuiTheme] Fix typings & deepmerge shape (#11993) @franklixuefei
|
|
697
|
+
- [core] Warn about Children.map & Fragment (#12021) @oliviertassinari
|
|
698
|
+
- [core] Remove usage of theme.spacing.unit (#12022) @oliviertassinari
|
|
699
|
+
|
|
700
|
+
#### Lab
|
|
701
|
+
|
|
702
|
+
N/A
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
## 1.3.0
|
|
706
|
+
###### *Jun 26, 2018*
|
|
707
|
+
|
|
708
|
+
Big thanks to the 10 contributors who made this release possible.
|
|
709
|
+
|
|
710
|
+
Here are some highlights ✨:
|
|
711
|
+
- 🔥 Add extended Floating Action Button variant (#11941) @mbrookes.
|
|
712
|
+
- 🔥 Add scroll body handling for the dialog (#11974).
|
|
713
|
+
- 📝 Work on SEO for the components (#11963).
|
|
714
|
+
|
|
715
|
+
### Breaking change
|
|
716
|
+
|
|
717
|
+
N/A
|
|
718
|
+
|
|
719
|
+
#### Component Fixes / Enhancements
|
|
720
|
+
|
|
721
|
+
- [FormControl] Correct minor typo in text (#11931) @FluentSynergyDW
|
|
722
|
+
- [Grid] Add `auto` to TypeScript definitions (#11933) @woobianca
|
|
723
|
+
- [styles] Safer prefix logic (#11943) @oliviertassinari
|
|
724
|
+
- [Button] Add extended FAB variant (#11941) @mbrookes
|
|
725
|
+
- [styles] Warn when the first argument is wrong (#11953) @oliviertassinari
|
|
726
|
+
- [ClickAwayListener] Handle null child (#11955) @oliviertassinari
|
|
727
|
+
- [theme] Add border-radius to the theme (#11847) @itelo
|
|
728
|
+
- [Dialog] Add a scroll property (#11974) @oliviertassinari
|
|
729
|
+
|
|
730
|
+
#### Docs
|
|
731
|
+
|
|
732
|
+
- [Showcase] Add posters galore (react-admin) (#11939) @fzaninotto
|
|
733
|
+
- [docs] Update ts example (#11949) @kevinhughes27
|
|
734
|
+
- [docs] Add Outline docs (#11960) @tomasdev
|
|
735
|
+
- [docs] Do SEO for the components (#11963) @oliviertassinari
|
|
736
|
+
- [docs] Better API wording (#11973) @oliviertassinari
|
|
737
|
+
- [docs] In Typescript doc, add missing `createStyles` to import (#11975) @Sylphony
|
|
738
|
+
|
|
739
|
+
#### Core
|
|
740
|
+
|
|
741
|
+
- [typescript] Fix Typings for disableTouchRipple and allVariants (#11944) @franklixuefei
|
|
742
|
+
- [core] Upgrade the dev dependencies (#11954) @oliviertassinari
|
|
743
|
+
- [core] Upgrade eslint (#11957) @oliviertassinari
|
|
744
|
+
- [core] Upgrade preval (#11958) @oliviertassinari
|
|
745
|
+
- [core] Use Chrome Headless for the tests over PhantomJS (#11961) @oliviertassinari
|
|
746
|
+
|
|
747
|
+
#### Lab
|
|
748
|
+
|
|
749
|
+
N/A
|
|
750
|
+
|
|
751
|
+
## 1.2.3
|
|
752
|
+
###### *Jun 20, 2018*
|
|
753
|
+
|
|
754
|
+
Big thanks to the 6 contributors who made this release possible.
|
|
755
|
+
|
|
756
|
+
This release fixes some important regressions.
|
|
757
|
+
We are making it outside of the normal schedule.
|
|
758
|
+
|
|
759
|
+
### Breaking change
|
|
760
|
+
|
|
761
|
+
N/A
|
|
762
|
+
|
|
763
|
+
#### Component Fixes / Enhancements
|
|
764
|
+
|
|
765
|
+
- [ButtonBase] Fix exception (#11905) @oliviertassinari
|
|
766
|
+
- [NoSSR] Add a fallback property (#11907) @oliviertassinari
|
|
767
|
+
- [Dialog] Add max-height back (#11914) @oliviertassinari
|
|
768
|
+
- [Tooltip] Revert update react-popper (#11920) @oliviertassinari
|
|
769
|
+
- [Select] Fix classes merge issue (#11904) @C-Rodg
|
|
770
|
+
|
|
771
|
+
#### Docs
|
|
772
|
+
|
|
773
|
+
- [docs] Document jss-nested rule reference feature (#11901) @i8ramin
|
|
774
|
+
- [docs] Correct markdown example from svg icon (#11922) @GabrielDuarteM
|
|
775
|
+
- [docs] TS decorating reword (#11923) @swpease
|
|
776
|
+
|
|
777
|
+
#### Core
|
|
778
|
+
|
|
779
|
+
N/A
|
|
780
|
+
|
|
781
|
+
#### Lab
|
|
782
|
+
|
|
783
|
+
- [Slider] Add TypeScript definitions (#11747) @epodivilov
|
|
784
|
+
|
|
785
|
+
## 1.2.2
|
|
786
|
+
###### *Jun 18, 2018*
|
|
787
|
+
|
|
788
|
+
Big thanks to the 16 contributors who made this release possible.
|
|
789
|
+
|
|
790
|
+
Here are some highlights ✨:
|
|
791
|
+
- 📝 Document the dynamic override alternatives (#11782) @adeelibr
|
|
792
|
+
- 📝 Document the ClickAwayListener component (#11801).
|
|
793
|
+
- And many more bug fixes 🐛 and documentation improvements 📝.
|
|
794
|
+
|
|
795
|
+
### Breaking change
|
|
796
|
+
|
|
797
|
+
N/A
|
|
798
|
+
|
|
799
|
+
#### Component Fixes / Enhancements
|
|
800
|
+
|
|
801
|
+
- [ClickAwayListener] Add a demo (#11801) @oliviertassinari
|
|
802
|
+
- [Grid] Add support a auto value (#11804) @oliviertassinari
|
|
803
|
+
- [StepButton] Fix IE 11 flexbox (#11814) @paulnta
|
|
804
|
+
- [styles] Re-add default parameter of string for WithStyles (#11808) @pelotom
|
|
805
|
+
- [SwipeableDrawer] Allow custom style (#11805) @Johann-S
|
|
806
|
+
- [ButtonBase] Corrected the type definitions for the TouchRipple classes (#11818) @C-Rodg
|
|
807
|
+
- [RootRef] Updated main index.js to include RootRef export (#11817) @C-Rodg
|
|
808
|
+
- [typography] Add a `allVariants` key in the theme (#11802) @oliviertassinari
|
|
809
|
+
- [ButtonBase] Add a disableTouchRipple property (#11820) @oliviertassinari
|
|
810
|
+
- [Tabs] Fix calculating tab indicator position (#11825) @ljani
|
|
811
|
+
- [Tabs] Fix IE11 support (#11832) @oliviertassinari
|
|
812
|
+
- [withWidth] Reading initialWidth from the theme (#11831) @kleyson
|
|
813
|
+
- [Tabs] Add support for a `component` property (#11844) @C-Rodg
|
|
814
|
+
- [ListItemText] Detect and avoid re-wrapping Typography (#11849) @jedwards1211
|
|
815
|
+
- [ListItemText] Add primaryTypographyProps and secondaryTypographyProps (#11858) @jedwards1211
|
|
816
|
+
- [Tooltip] Update react-popper (#11862) @oliviertassinari
|
|
817
|
+
- [TableCell] Fix property name (#11870) @marutanm
|
|
818
|
+
- [Modal] Fix removeEventListener (#11875) @DominikSerafin
|
|
819
|
+
- [CircularProgress] Fix wobble (#11886) @oliviertassinari
|
|
820
|
+
- [CircularProgress] End of line shape: use butt (#11888) @Modestas
|
|
821
|
+
- [Select] Fix reflow in render (#11891) @oliviertassinari
|
|
822
|
+
|
|
823
|
+
#### Docs
|
|
824
|
+
|
|
825
|
+
- [docs] Add structured data (#11798) @oliviertassinari
|
|
826
|
+
- [docs] Add a link to a CSS-in-JS egghead.io course (98168a2c749d8da2376d6a997145e3622df71bff) @kof
|
|
827
|
+
- [Table] Derive sorted rows from state at render time in demo (#11828) @charlax
|
|
828
|
+
- [docs] Document the dynamic override alternatives (#11782) @adeelibr
|
|
829
|
+
- [docs] Add a Select required example (#11838) @oliviertassinari
|
|
830
|
+
- [docs] Better class names conflict FAQ (#11846) @oliviertassinari
|
|
831
|
+
- [docs] Add a link toward dx-react-chart-material-ui (#11859) @Krijovnick
|
|
832
|
+
- [docs] Fix the Gatsby example (d7fe8c79dc097105fd1c6035b76a4d30666e9080) @oliviertassinari
|
|
833
|
+
- [docs] Update npm downloads badge to point to @material-ui/core (#11590) @davidcalhoun
|
|
834
|
+
- [examples] Add Server Rendering implementation (#11880) @oliviertassinari
|
|
835
|
+
- [docs] Update react-swipeable-views to fix a warning (#11890) @oliviertassinari
|
|
836
|
+
|
|
837
|
+
#### Core
|
|
838
|
+
|
|
839
|
+
- [core] Misc (#11797) @oliviertassinari
|
|
840
|
+
- [core] Better `component` prop types (#11863) @jedwards1211
|
|
841
|
+
- [core] Remove some unneeded code (#11873) @oliviertassinari
|
|
842
|
+
- [core] Fix the UMD release (#11878) @oliviertassinari
|
|
843
|
+
- [core] Document the non supported children properties (#11879) @oliviertassinari
|
|
844
|
+
|
|
845
|
+
#### Labs
|
|
846
|
+
|
|
847
|
+
N/A
|
|
848
|
+
|
|
849
|
+
## 1.2.1
|
|
850
|
+
###### *Jun 10, 2018*
|
|
851
|
+
|
|
852
|
+
Big thanks to the 15 contributors who made this release possible.
|
|
853
|
+
|
|
854
|
+
Here are some highlights ✨:
|
|
855
|
+
- A lot of bug fixes 🐛!
|
|
856
|
+
- Add full `React.createRef` support ⚛️ (#11757) @t49tran.
|
|
857
|
+
- Document the `withWidth()` helper
|
|
858
|
+
|
|
859
|
+
### Breaking change
|
|
860
|
+
|
|
861
|
+
N/A
|
|
862
|
+
|
|
863
|
+
#### Component Fixes / Enhancements
|
|
864
|
+
|
|
865
|
+
- [Select] Add a placeholder demo (#11706) @oliviertassinari
|
|
866
|
+
- [RootRef] Update RootRef.d.ts (#11708) @franklixuefei
|
|
867
|
+
- [ButtonBase] Document the `type` property (#11728) @C-Rodg
|
|
868
|
+
- [Popover] Fix default value (#11729) @oliviertassinari
|
|
869
|
+
- [withWidth] Second iteration on the component (#11730) @oliviertassinari
|
|
870
|
+
- [transition] Fix IE11 issue in dev mode (#11743) @adeelibr
|
|
871
|
+
- [Tabs] Better flex layout (#11748) @adeelibr
|
|
872
|
+
- [core] Add React.createRef support (#11757) @t49tran
|
|
873
|
+
- [Grid] Improve the dev warnings (#11765) @oliviertassinari
|
|
874
|
+
- [CircularProgress] Fix centering (#11781) @adeelibr
|
|
875
|
+
- [TextField] Bind the focus/blur explicitly (#11789) @oliviertassinari
|
|
876
|
+
- [RadioGroup] Fix onChange chaining (#11793) @oliviertassinari
|
|
877
|
+
|
|
878
|
+
#### Docs
|
|
879
|
+
|
|
880
|
+
- [docs] Property !== attribute (#11694) @adeelibr
|
|
881
|
+
- [docs] Add Trafikito.com to showcase (#11716) @liesislukas
|
|
882
|
+
- [docs] Update meetingku image (#11724) @liganok
|
|
883
|
+
- [docs] Improve docs:dev init by ~2 s and HMR by ~200 ms (#11752) @tal952
|
|
884
|
+
- [docs] Change app bar to button on the getting started (#11756) @Simperfit
|
|
885
|
+
- [docs] Add React Most Wanted to related projects (#11753) @TarikHuber
|
|
886
|
+
- [docs] Error in example in Migration From v0.x Guide (#11771) @AkselsLedins
|
|
887
|
+
- [docs] Simple Grammar Fix (#11785) @jeff-kilbride
|
|
888
|
+
- [docs] Fix typo (#11787) @BenDiuguid
|
|
889
|
+
- [docs] Better troubleshooting action for the hydration mismatch (#11792) @oliviertassinari
|
|
890
|
+
|
|
891
|
+
#### Core
|
|
892
|
+
|
|
893
|
+
- [core] Remove parser specification to fix JSON issue (#11763) @ryanpcmcquen
|
|
894
|
+
- [core] Throw if react >= 16.3.0 requirement isn't matched (#11779) @oliviertassinari
|
|
895
|
+
- [core] Better warnings for class names duplicates (#11788) @oliviertassinari
|
|
896
|
+
- [core] Remove dead code (#11791) @oliviertassinari
|
|
897
|
+
|
|
898
|
+
#### Labs
|
|
899
|
+
|
|
900
|
+
- [Slider] Fix for IE11 (#11727) @epodivilov
|
|
901
|
+
- [Slider] Value can still be updated while disabled (#11744) @epodivilov
|
|
902
|
+
|
|
903
|
+
## 1.2.0
|
|
904
|
+
###### *Jun 3, 2018*
|
|
905
|
+
|
|
906
|
+
Big thanks to the 23 contributors who made this release possible.
|
|
907
|
+
|
|
908
|
+
Here are some highlights ✨:
|
|
909
|
+
- Start upgrading the button component to match the new Material specification (#11497) @mbrookes.
|
|
910
|
+
- Fix some regressions (#11614, #11689).
|
|
911
|
+
- And many more bug fixes and documentation improvements.
|
|
912
|
+
|
|
913
|
+
### Breaking change
|
|
914
|
+
|
|
915
|
+
N/A
|
|
916
|
+
|
|
917
|
+
#### Component Fixes / Enhancements
|
|
918
|
+
|
|
919
|
+
- [Snackbar] Add customization example (#11597) @mbrn
|
|
920
|
+
- [Menu] Fix a regression on Edge (#11614) @oliviertassinari
|
|
921
|
+
- [TextField] Replace underline content text with nbsp (#11617) @Jdubedition
|
|
922
|
+
- [TextField] Fix grammar for docs (#11633) @RobBednark
|
|
923
|
+
- [ListItem] Fix typings for ListItem (#11645) @franklixuefei
|
|
924
|
+
- [Button] Add text and contained variants (#11497) @mbrookes
|
|
925
|
+
- [Chip] Add `clickable` property (#11613) @vilvaathibanpb
|
|
926
|
+
- [Popover] Add timeout prop to TransitionComponent (#11657) @C-Rodg
|
|
927
|
+
- [styles] Better class name conflict warning (#11685) @oliviertassinari
|
|
928
|
+
- [Grid] Better support for theme.props (#11688) @oliviertassinari
|
|
929
|
+
- [ListItemText] Fix primary={0} display (#11686) @helfi92
|
|
930
|
+
- [SwipeableDrawer] Fix a regression introduced in React 16.4.0 (#11689) @oliviertassinari
|
|
931
|
+
- [RootRef] Allow using React.createRef api with RootRef component (#11681) @TrySound
|
|
932
|
+
|
|
933
|
+
#### Docs
|
|
934
|
+
|
|
935
|
+
- [docs] Better API spread section (#11598) @oliviertassinari
|
|
936
|
+
- [docs] Update Wertarbyte components link (#11603) @leMaik
|
|
937
|
+
- [docs] Add a changelog page (#11604) @oliviertassinari
|
|
938
|
+
- [docs] Keep the current version into account (#11595) @oliviertassinari
|
|
939
|
+
- [ROADMAP] Update the roadmap (#11606) @oliviertassinari
|
|
940
|
+
- [example] Fix missing brackets typescript (#11623) @Ilaiwi
|
|
941
|
+
- [docs] Update overrides.md (#11630) @risafletcher
|
|
942
|
+
- [docs] Styled API Example (5 lines) (#11620) @mssngr
|
|
943
|
+
- [docs] Mention view port size in SVGIcon documentation (#11639) @JesusCrow
|
|
944
|
+
- [docs] Update README for codemod (#11647) @sacdallago
|
|
945
|
+
- [docs] Update link to flow-typed definitions (#11674) @jessrosenfield
|
|
946
|
+
- [docs] Minor grammitcal error (#11691) @NeuTrix
|
|
947
|
+
|
|
948
|
+
#### Core
|
|
949
|
+
|
|
950
|
+
- [typescript] Depend directly on CSSType (#11608) @pelotom
|
|
951
|
+
- [core] Upgrade dependencies (#11616) @oliviertassinari
|
|
952
|
+
- [typescript] createStyles and improved WithStyles helpers (#11609) @pelotom
|
|
953
|
+
- [core] Add cross-env back (#11638) @lookfirst
|
|
954
|
+
- [typescript] Fix keyof for typescript@2.9 (#11669) @mctep
|
|
955
|
+
- [core] Some fixes looking into issues (#11676) @oliviertassinari
|
|
956
|
+
- [core] Upgrade dependencies (#11684) @oliviertassinari
|
|
957
|
+
|
|
958
|
+
#### Labs
|
|
959
|
+
|
|
960
|
+
- [SpeedDial] Fix classes prop description (#11599) @mbrookes
|
|
961
|
+
- [Slider] Misc fixes towards standard MUI patterns (#11605) @mbrookes
|
|
962
|
+
- [Slider] Fire the right event on mouseDown (#11642) @acroyear
|
|
963
|
+
- [SpeedDial] Add type definitions to lab, so SpeedDial can be use with TypeScript project (#11542) @TR3MIC
|
|
964
|
+
|
|
965
|
+
## 1.1.0
|
|
966
|
+
###### *May 26, 2018*
|
|
967
|
+
|
|
968
|
+
Big thanks to the 30 contributors who made this release possible.
|
|
969
|
+
|
|
970
|
+
Here are some highlights ✨:
|
|
971
|
+
- A smaller bundle, saved 5 kB gzipped (#11511, #11492, #11521, #11523) @TrySound
|
|
972
|
+
- A new Slider component in the lab (#11040) @epodivilov.
|
|
973
|
+
- And many more bug fixes and documentation improvements.
|
|
974
|
+
|
|
975
|
+
### Breaking change
|
|
976
|
+
|
|
977
|
+
N/A
|
|
978
|
+
|
|
979
|
+
#### Component Fixes / Enhancements
|
|
980
|
+
|
|
981
|
+
- [ListSubheader] Fix demo import path (#11468) @Hocdoc
|
|
982
|
+
- [Backdrop] Fix export paths (#11481) @brandonhall
|
|
983
|
+
- [ListItem] Take the focusVisibleClassName property into account (#11451) @rdemirov
|
|
984
|
+
- [Grid] Allow shrink in items so text will wrap by default (#11411) @ShaneMcX
|
|
985
|
+
- [StepLabel] Allow StepIcon customization (#11446) @jargot
|
|
986
|
+
- [StepConnector] Exposes the component (#11478) @racingrebel
|
|
987
|
+
- [Tabs] Fix TabIndicatorProps merge (#11494) @adeelibr
|
|
988
|
+
- [ButtonBase] Fix React propTypes buttonRef warning (#11519) @t49tran
|
|
989
|
+
- [ListItemText] Shouldn't be a heading by default (#11544) @adeelibr
|
|
990
|
+
- [GridListTileBar] Add missing title and subtitle keys (#11570) @ljani
|
|
991
|
+
- [TableCell] Fix padding for last TableCell if checkbox (#11568) @gfpacheco
|
|
992
|
+
- [Button][ButtonBase] Take advantage of defaultProps for component prop (#11574) @cherniavskii
|
|
993
|
+
- [StepConnector] Add to default export from @material-ui/core (#11583) @OsipovIgor
|
|
994
|
+
- [ButtonBase] Improve enter & space handling (#11585) @TheBear44
|
|
995
|
+
|
|
996
|
+
#### Docs
|
|
997
|
+
|
|
998
|
+
- [examples] Fix imports for Dialog (#11469) @sboles
|
|
999
|
+
- [docs] Add v0 subdirectory redirects (#11470) @mbrookes
|
|
1000
|
+
- [docs] Remove trailing slash on progress-indicators link (#11473) @srt32
|
|
1001
|
+
- [docs] Add HSTS header (#11475) @mbrookes
|
|
1002
|
+
- [docs] Add missing word to documentation (#11476) @Skn0tt
|
|
1003
|
+
- [docs] Specify correct corner to locate directional toggle (#11479) @jacquesporveau
|
|
1004
|
+
- [examples] Fix create-react-app-with-jss theme object (#11485) @Dror88
|
|
1005
|
+
- [docs] Add Snippets Chrome extension to showcase (#11487) @richardscarrott
|
|
1006
|
+
- [docs] Fix hyphen for iOS (#11490) @mbrookes
|
|
1007
|
+
- [docs] Prevent content-type: application/octet-stream (#11501) @oliviertassinari
|
|
1008
|
+
- [docs] Add Customized Switches section (#11505) @mbrookes
|
|
1009
|
+
- [docs] Remove Firebase config file & deploy script (#11516) @mbrookes
|
|
1010
|
+
- [docs] Pull versions from github API (#11522) @mbrookes
|
|
1011
|
+
- [docs] Removed references to Grid's hidden property (#11529) @lfalke
|
|
1012
|
+
- [docs] Remove background grid from Typography variants demo (#11562) @mbrookes
|
|
1013
|
+
- [docs] Finish incomplete list-item-text.md documentation (#11559) @codeheroics
|
|
1014
|
+
- [docs] Add outlined buttons to ButtonSizes demo (#11509) @mbrookes
|
|
1015
|
+
- [docs] Add a Troubleshooting section for SSR (#11579) @oliviertassinari
|
|
1016
|
+
- [docs] Fix a little typo in typescript docs (#11580) @saculbr
|
|
1017
|
+
- [docs] Add react-admin to related projects (#11582) @fzaninotto
|
|
1018
|
+
- [docs] Update the showcase (#11578) @mbrookes
|
|
1019
|
+
|
|
1020
|
+
#### Core
|
|
1021
|
+
|
|
1022
|
+
- [typescript] Make TypographyStyle assignable to CSSProperties, misc other typing fixes (#11456) @pelotom
|
|
1023
|
+
- [core] Cut the head of the snake 🐍 (#11477) @oliviertassinari
|
|
1024
|
+
- [core] Add esm bundle to start tracking treeshakability (#11489) @TrySound
|
|
1025
|
+
- [core] More aggressive transpilation (#11492) @oliviertassinari
|
|
1026
|
+
- [core] Enable loose mode for staged featues (#11511) @TrySound
|
|
1027
|
+
- [core] Simplify the babel docs config (#11514) @oliviertassinari
|
|
1028
|
+
- [core] Remove lodash 💃 (#11521) @oliviertassinari
|
|
1029
|
+
- [core] Internalize ScrollbarSize (#11523) @oliviertassinari
|
|
1030
|
+
- [typescript] Add sample with return types (#11512) @yacut
|
|
1031
|
+
|
|
1032
|
+
#### Labs
|
|
1033
|
+
|
|
1034
|
+
- [SpeedDial] Clean up SpeedDialIcon transition (#11513) @mbrookes
|
|
1035
|
+
- [Slider] Port component (#11040) @epodivilov
|
|
1036
|
+
|
|
1037
|
+
## 1.0.0
|
|
1038
|
+
###### *May 17, 2018*
|
|
1039
|
+
|
|
1040
|
+
Our first stable v1 release! 🎉
|
|
1041
|
+
|
|
1042
|
+
It has taken us two years to do it, but Material-UI v1 has finally arrived!
|
|
1043
|
+
We are so excited about this release, as it's setting a new course for the project. Thank you to *everyone*, especially to [the team](https://material-ui.com/discover-more/team/), and to everyone who's contributed code, issue triage, and support. **Thank you**.
|
|
1044
|
+
|
|
1045
|
+
Some statistics with v1 while it was in alpha and beta:
|
|
1046
|
+
- 304 contributors
|
|
1047
|
+
- 2390 commits
|
|
1048
|
+
- From 0 downloads/month to 300k downloads/month
|
|
1049
|
+
- From 0 users/month to 90k users/month
|
|
1050
|
+
|
|
1051
|
+
## 1.0.0-rc.1
|
|
1052
|
+
###### *May 15, 2018*
|
|
1053
|
+
|
|
1054
|
+
Big thanks to the 10 contributors who made this release possible.
|
|
1055
|
+
|
|
1056
|
+
Here are some highlights ✨:
|
|
1057
|
+
- Thanks for trying out v1.0.0-rc.0! This release focus on fixing the reported bugs 🐛.
|
|
1058
|
+
- Great focus on the performance (#11358, #11360, #11364) @goto-bus-stop, @TrySound
|
|
1059
|
+
We will have more time to work on that topic post v1.
|
|
1060
|
+
|
|
1061
|
+
### Breaking change
|
|
1062
|
+
|
|
1063
|
+
N/A
|
|
1064
|
+
|
|
1065
|
+
#### Component Fixes / Enhancements
|
|
1066
|
+
|
|
1067
|
+
- [codemod] Revert the codemod inception on the tests (#11376) @oliviertassinari
|
|
1068
|
+
- [typescript] Fix DialogContent export (#11378) @ljvanschie
|
|
1069
|
+
- [Dialog] Fix content export (#11393) @stefensuhat
|
|
1070
|
+
- [icons] Remove deadcode (#11400) @oliviertassinari
|
|
1071
|
+
- [NativeSelect] New component (#11364) @oliviertassinari
|
|
1072
|
+
- [Popover] Fix max height issue in some mobile browsers (#11349) @gaborcs
|
|
1073
|
+
|
|
1074
|
+
#### Docs
|
|
1075
|
+
|
|
1076
|
+
- [docs] Update notifications for v1.0.0-rc.0 (#11351) @simsim0709
|
|
1077
|
+
- [Snackbar] Fix transition directions demo (#11391) @serendipity1004
|
|
1078
|
+
- [docs] Remove react@15 message (#11399) @deltaskelta
|
|
1079
|
+
- [docs] Better netlify cache control (#11404) @oliviertassinari
|
|
1080
|
+
|
|
1081
|
+
#### Core
|
|
1082
|
+
|
|
1083
|
+
- [core] Do not include polyfills in the ES modules build (#11358) @goto-bus-stop
|
|
1084
|
+
- [core] Workaround a Babel regression (#11398) @oliviertassinari
|
|
1085
|
+
- [core] Fix size-limit for the new Next path (#11401) @oliviertassinari
|
|
1086
|
+
- [core] Require node >=8.0.0 to work on the project (#11407) @netdeamon
|
|
1087
|
+
- [core] Bundle UMD with rollup (#11360) @TrySound
|
|
1088
|
+
|
|
1089
|
+
## 0.20.1
|
|
1090
|
+
###### *May 13, 2018*
|
|
1091
|
+
|
|
1092
|
+
Big thanks to the 14 contributors who made this release possible.
|
|
1093
|
+
|
|
1094
|
+
#### Component Fixes / Enhancements
|
|
1095
|
+
|
|
1096
|
+
- [Tabs] Add support for inline style override for parent container of InkBar (#9598) @PharaohMaster
|
|
1097
|
+
- Popover does not listen to events unless it is open at the moment (#9482) @romanzenka
|
|
1098
|
+
- [EnhancedButton] Fix onClick event being fired twice on "Enter Key" press (#9439) @karaggeorge
|
|
1099
|
+
- [Slider] Fix handle case where ref is null (#10006) @jony89
|
|
1100
|
+
- [RaisedButton] Conditionally apply overlay backgroundColor (#9811) @walwoodr
|
|
1101
|
+
- [Snackbar] Static properties for reason string constants (#10300) @RavenHursT
|
|
1102
|
+
- [TextField] Fix caret position issue (#10214) @MaratFaskhiev
|
|
1103
|
+
- Add sideEffects: false for webpack 4 (#11167) @matthoffner
|
|
1104
|
+
|
|
1105
|
+
#### Docs
|
|
1106
|
+
|
|
1107
|
+
- [docs] Adding smpl to showcase (#9386) @Bonitis
|
|
1108
|
+
- [docs] Remove HEAD in versions list (#9391) @HZooly
|
|
1109
|
+
- Add Governance Document (#9423) @hai-cea
|
|
1110
|
+
- [docs] Add v1 recommendation to home page (#9727) @mbrookes
|
|
1111
|
+
- [docs] Remove BrainBOK from showcase (#11292) @brainbok
|
|
1112
|
+
|
|
1113
|
+
## 1.0.0-rc.0
|
|
1114
|
+
###### *May 13, 2018*
|
|
1115
|
+
|
|
1116
|
+
Big thanks to the 11 contributors who made this release possible.
|
|
1117
|
+
|
|
1118
|
+
Here are some highlights ✨:
|
|
1119
|
+
- Introduce the last planned breaking changes before stable v1
|
|
1120
|
+
|
|
1121
|
+
### Breaking change
|
|
1122
|
+
|
|
1123
|
+
- [core] Move material-ui to @material-ui/core (#11310) @oliviertassinari
|
|
1124
|
+
|
|
1125
|
+
```diff
|
|
1126
|
+
-import { withStyles } from 'material-ui/styles';
|
|
1127
|
+
+import { withStyles } from '@material-ui/core/styles';
|
|
1128
|
+
```
|
|
1129
|
+
|
|
1130
|
+
- [core] Flatten the import path (#11330) @oliviertassinari
|
|
1131
|
+
|
|
1132
|
+
#### Motivation
|
|
1133
|
+
|
|
1134
|
+
1. It's a simple pattern to learn. People won't need to go back and forth with the documentation to learn the import paths 💭.
|
|
1135
|
+
2. People bundle size will decrease 🚀.
|
|
1136
|
+
3. In an ideal world, we would import everything from the root module and tree sharking would be taken care of for us. This change doesn't matter in this world ☮️.
|
|
1137
|
+
```jsx
|
|
1138
|
+
import {
|
|
1139
|
+
Table,
|
|
1140
|
+
TableBody,
|
|
1141
|
+
TableCell,
|
|
1142
|
+
TableFooter,
|
|
1143
|
+
TablePagination,
|
|
1144
|
+
TableRow,
|
|
1145
|
+
} from 'material-ui';
|
|
1146
|
+
```
|
|
1147
|
+
|
|
1148
|
+
#### The diff
|
|
1149
|
+
|
|
1150
|
+
```diff
|
|
1151
|
+
-import CircularProgress from '@material-ui/core/Progress/CircularProgress';
|
|
1152
|
+
+import CircularProgress from '@material-ui/core/CircularProgress';
|
|
1153
|
+
```
|
|
1154
|
+
|
|
1155
|
+
```diff
|
|
1156
|
+
-import { ListItem } from '@material-ui/core/List';
|
|
1157
|
+
+import ListItem from '@material-ui/core/ListItem';
|
|
1158
|
+
```
|
|
1159
|
+
|
|
1160
|
+
#### Upgrade path
|
|
1161
|
+
|
|
1162
|
+
We provide a codemod to automate the migration: https://github.com/mui-org/material-ui/tree/master/packages/material-ui-codemod#import-path. I have used it to upgrade all the demos in the documentation :).
|
|
1163
|
+
|
|
1164
|
+
- [core] Require React 16.3.0 or greater (#11347, #11361) @oliviertassinari
|
|
1165
|
+
- [Grid] Remove the hidden property (#11348) @oliviertassinari
|
|
1166
|
+
|
|
1167
|
+
Split the responsabilities between the different components. Help with tree-shaking.
|
|
1168
|
+
|
|
1169
|
+
```diff
|
|
1170
|
+
- <Grid item xs hidden={{ xlUp: true }}>
|
|
1171
|
+
- <Paper>xlUp</Paper>
|
|
1172
|
+
- </Grid>
|
|
1173
|
+
+ <Hidden xlUp>
|
|
1174
|
+
+ <Grid item xs>
|
|
1175
|
+
+ <Paper>xlUp</Paper>
|
|
1176
|
+
+ </Grid>
|
|
1177
|
+
+ </Hidden>
|
|
1178
|
+
```
|
|
1179
|
+
|
|
1180
|
+
- [TextField] change underline approach to prevent browser zoom issue (#11181) @Jdubedition
|
|
1181
|
+
|
|
1182
|
+
The text underline color customization change:
|
|
1183
|
+
```diff
|
|
1184
|
+
underline: {
|
|
1185
|
+
'&:after': {
|
|
1186
|
+
- backgroundColor: purple[500],
|
|
1187
|
+
+ borderBottomColor: purple[500],
|
|
1188
|
+
},
|
|
1189
|
+
},
|
|
1190
|
+
```
|
|
1191
|
+
|
|
1192
|
+
#### Component Fixes / Enhancements
|
|
1193
|
+
|
|
1194
|
+
- [CircularProgress] Add transition for static variant (#11313) @oliviertassinari
|
|
1195
|
+
- [createTypography] Add primary text color to 'button' typography variant (#11322) @ValentineStone
|
|
1196
|
+
- [styles] Fix typings for FontStyle (#11326) @vkentta
|
|
1197
|
+
- [Grid] Add 32px gutter to grid spacing (#11338) @abnersajr
|
|
1198
|
+
- [Button] Add outlined variant (#11346) @leMaik
|
|
1199
|
+
|
|
1200
|
+
#### Docs
|
|
1201
|
+
|
|
1202
|
+
- [docs] v0 redirect (#11303) @mbrookes
|
|
1203
|
+
- [docs] Add a new premium-theme (#11300) @oliviertassinari
|
|
1204
|
+
- [docs] Prepare the v1 release (#11317) @oliviertassinari
|
|
1205
|
+
- [docs] Add HIJUP.com to the showcase site (#11328) @fikriauliya
|
|
1206
|
+
- [docs] Update material.io URLs (#11334) @mbrookes
|
|
1207
|
+
- [docs] Make the button examples consistent (#11352) @mbrookes
|
|
1208
|
+
- [docs] Eradicate 'Useful to' (#11353) @mbrookes
|
|
1209
|
+
- [docs] Move v1-beta to master (#11354) @oliviertassinari
|
|
1210
|
+
- [docs] Install with yarn (#11357) @Xakher
|
|
1211
|
+
|
|
1212
|
+
#### Core
|
|
1213
|
+
|
|
1214
|
+
- [typescript] Add CreateMuiTheme props Typescript definition (#11296) @abnersajr
|
|
1215
|
+
- [typescript] Fix color type in augmentColor function (#11302) @AiusDa
|
|
1216
|
+
- Make WithStylesOptions extend the options argument of createStyleSheet (#11325) @pelotom
|
|
1217
|
+
- [core] Update the dev dependencies (#11355) @oliviertassinari
|
|
1218
|
+
|
|
1219
|
+
## 1.0.0-beta.47
|
|
1220
|
+
###### *May 9, 2018*
|
|
1221
|
+
|
|
1222
|
+
Big thanks to the 4 contributors who made this release possible.
|
|
1223
|
+
|
|
1224
|
+
Here are some highlights ✨:
|
|
1225
|
+
- Fix an important regression (Babel upgrade)
|
|
1226
|
+
|
|
1227
|
+
### Breaking change
|
|
1228
|
+
|
|
1229
|
+
- [typescript] Fix withStyles edge cases (#11280) @pelotom
|
|
1230
|
+
|
|
1231
|
+
If you are using TypeScript, 2.8 or later is required.
|
|
1232
|
+
|
|
1233
|
+
#### Component Fixes / Enhancements
|
|
1234
|
+
|
|
1235
|
+
- [withStyles] Support createRef() (#11293) @rolandjitsu
|
|
1236
|
+
- [InputLabel] Remove the width style property (#11297) @C-Rodg
|
|
1237
|
+
|
|
1238
|
+
#### Docs
|
|
1239
|
+
|
|
1240
|
+
N/A
|
|
1241
|
+
|
|
1242
|
+
#### Core
|
|
1243
|
+
|
|
1244
|
+
- [core] Add @babel/runtime as a dependency (#11298) @oliviertassinari
|
|
1245
|
+
|
|
1246
|
+
## 1.0.0-beta.46
|
|
1247
|
+
###### *May 8, 2018*
|
|
1248
|
+
|
|
1249
|
+
Big thanks to the 7 contributors who made this release possible.
|
|
1250
|
+
|
|
1251
|
+
Here are some highlights ✨:
|
|
1252
|
+
- Fix an important regression (npm dependency)
|
|
1253
|
+
|
|
1254
|
+
### Breaking change
|
|
1255
|
+
|
|
1256
|
+
N/A
|
|
1257
|
+
|
|
1258
|
+
#### Component Fixes / Enhancements
|
|
1259
|
+
|
|
1260
|
+
- [Table] Add table-footer-group CSS (#11264) @t49tran
|
|
1261
|
+
- [ButtonBase] Add a focusVisible action (#9712) @tkvw
|
|
1262
|
+
- [ButtonBase] Better performance (#11277) @oliviertassinari
|
|
1263
|
+
- [Tabs] Add a TabIndicatorProps property (#11254) @adeelibr
|
|
1264
|
+
|
|
1265
|
+
#### Docs
|
|
1266
|
+
|
|
1267
|
+
- [docs] Improve the table examples' accessibility (#11256) @mbrookes
|
|
1268
|
+
- [docs] Add Pilcro to showcase apps (#11274) @hugowoodhead
|
|
1269
|
+
|
|
1270
|
+
#### Core
|
|
1271
|
+
|
|
1272
|
+
- [typescript] Fix type definitions for Snackbar and CircularProgress (#11265) @franklixuefei
|
|
1273
|
+
- [core] Upgrade Babel 6 to Babel 7 (#10964) @oliviertassinari
|
|
1274
|
+
- [core] npm shouldn't be a dependency (#11263) @oliviertassinari
|
|
1275
|
+
|
|
1276
|
+
## 1.0.0-beta.45
|
|
1277
|
+
###### *May 6, 2018*
|
|
1278
|
+
|
|
1279
|
+
Big thanks to the 12 contributors who made this release possible.
|
|
1280
|
+
|
|
1281
|
+
Here are some highlights ✨:
|
|
1282
|
+
- A release date. We will release Material-UI v1 May 17th.
|
|
1283
|
+
- Improve the performance of withStyles by adding memoization (#11202) @CharlesStover.
|
|
1284
|
+
- Standardization of the component injection pattern (#11204) @oliviertassinari
|
|
1285
|
+
- And many more bug fixes and documentation improvements.
|
|
1286
|
+
|
|
1287
|
+
### Breaking change
|
|
1288
|
+
|
|
1289
|
+
- [core] Standardize the component injection pattern (#11204) @oliviertassinari
|
|
1290
|
+
|
|
1291
|
+
I couldn't find a clean way to support the render props pattern.
|
|
1292
|
+
Doing such would require to greatly reduce the usage of JSX.
|
|
1293
|
+
It would really harm source code readability.
|
|
1294
|
+
|
|
1295
|
+
Instead, I have been focusing on standardizing our component injection story.
|
|
1296
|
+
This way, we can go back to the render props after stable v1 is released and see if source code readability worth be sacrificed for the render prop pattern.
|
|
1297
|
+
|
|
1298
|
+
```diff
|
|
1299
|
+
<Tabs
|
|
1300
|
+
- TabScrollButton={TabScrollButtonWrapped}
|
|
1301
|
+
+ ScrollButtonComponent={TabScrollButtonWrapped}
|
|
1302
|
+
```
|
|
1303
|
+
|
|
1304
|
+
```diff
|
|
1305
|
+
<TablePagination
|
|
1306
|
+
- Actions={TablePaginationActionsWrapped}
|
|
1307
|
+
+ ActionsComponent={TablePaginationActionsWrapped}
|
|
1308
|
+
```
|
|
1309
|
+
|
|
1310
|
+
```diff
|
|
1311
|
+
<Dialog
|
|
1312
|
+
- transition={Transition}
|
|
1313
|
+
+ TransitionComponent={Transition}
|
|
1314
|
+
```
|
|
1315
|
+
|
|
1316
|
+
```diff
|
|
1317
|
+
<Menu
|
|
1318
|
+
- transition={Transition}
|
|
1319
|
+
+ TransitionComponent={Transition}
|
|
1320
|
+
```
|
|
1321
|
+
|
|
1322
|
+
```diff
|
|
1323
|
+
<Snackbar
|
|
1324
|
+
- transition={Transition}
|
|
1325
|
+
+ TransitionComponent={Transition}
|
|
1326
|
+
```
|
|
1327
|
+
|
|
1328
|
+
```diff
|
|
1329
|
+
<Popover
|
|
1330
|
+
- transition={Transition}
|
|
1331
|
+
+ TransitionComponent={Transition}
|
|
1332
|
+
```
|
|
1333
|
+
|
|
1334
|
+
```diff
|
|
1335
|
+
<StepContent
|
|
1336
|
+
- transition={Transition}
|
|
1337
|
+
+ TransitionComponent={Transition}
|
|
1338
|
+
```
|
|
1339
|
+
|
|
1340
|
+
- [Snackbar] Rename SnackbarContentProps (#11203) @oliviertassinari
|
|
1341
|
+
|
|
1342
|
+
This change is for consistency with the other components. No need to repeat the component name in the property.
|
|
1343
|
+
|
|
1344
|
+
```diff
|
|
1345
|
+
<Snackbar
|
|
1346
|
+
- SnackbarContentProps={{ 'aria-describedby': 'notification-message' }}
|
|
1347
|
+
+ ContentProps={{ 'aria-describedby': 'notification-message' }}
|
|
1348
|
+
```
|
|
1349
|
+
|
|
1350
|
+
- [CircularProgress] Remove min & max props (#11211) @mbrookes
|
|
1351
|
+
|
|
1352
|
+
Makes the API consistant with LinearProgress
|
|
1353
|
+
|
|
1354
|
+
```diff
|
|
1355
|
+
<CircularProgress
|
|
1356
|
+
- min={10}
|
|
1357
|
+
- max={20}
|
|
1358
|
+
- value={15}
|
|
1359
|
+
+ value={(15 - 10) / (20 - 10) * 100}
|
|
1360
|
+
/>
|
|
1361
|
+
```
|
|
1362
|
+
|
|
1363
|
+
- [ButtonBase] Complete the focusVisible rename (#11188) @oliviertassinari
|
|
1364
|
+
|
|
1365
|
+
The rename started with #11090. I should have taken the time to complete it in the first place. This way, we are fully consistent with the spec: https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo :)
|
|
1366
|
+
|
|
1367
|
+
```diff
|
|
1368
|
+
<ButtonBase
|
|
1369
|
+
- onKeyboardFocus={this.handleVisible}
|
|
1370
|
+
+ onFocusVisible={this.handleVisible}
|
|
1371
|
+
```
|
|
1372
|
+
|
|
1373
|
+
#### Component Fixes / Enhancements
|
|
1374
|
+
|
|
1375
|
+
- [ButtonBase] Update TypeScript to sync with the implementation (#11189) @franklixuefei
|
|
1376
|
+
- [styles] Simpler outline reset (#11199) @oliviertassinari
|
|
1377
|
+
- [Transition] Add a TransitionProps (#11201) @oliviertassinari
|
|
1378
|
+
- [TablePagination] Allow the MenuItem customization (#11200) @oliviertassinari
|
|
1379
|
+
- [ListItemIcon] Take advantage of CSS inheritance (#11206) @xiaoyu-tamu
|
|
1380
|
+
- [StepButton] Allow null to be assigned to icon prop (#11221) @franklixuefei
|
|
1381
|
+
- [TextField] Increase shrunk label width to match 100% input width (#11215) @pandaiolo
|
|
1382
|
+
- [Select] Add IconComponent property (#11136) @sepehr1313
|
|
1383
|
+
- [withStyles] Memoization the classes property (#11202) @CharlesStover
|
|
1384
|
+
- [NProgress] Better RTL support and closer to YouTube version (#11246) @oliviertassinari
|
|
1385
|
+
- [Stepper] Swipeable demo integration (#11241) @Klynger
|
|
1386
|
+
- [codemod] Prepare the import path breaking change (#11249) @oliviertassinari
|
|
1387
|
+
- [codemod] Support the private and direct imports (#11253) @oliviertassinari
|
|
1388
|
+
- [Table] Fix Typescript classes support (#11255) @t49tran
|
|
1389
|
+
|
|
1390
|
+
#### Docs
|
|
1391
|
+
|
|
1392
|
+
- [docs] Fix typo in comparison.md (#11185) @morleytatro
|
|
1393
|
+
- [docs] Fix dark theme display (#11194) @oliviertassinari
|
|
1394
|
+
- [example] Revert wrong change (#11195) @oliviertassinari
|
|
1395
|
+
- [docs] Improve server-rendering, replace render by hydrate (#11210) @Mystraht
|
|
1396
|
+
- [docs] Update notification (#11213) @simsim0709
|
|
1397
|
+
- [docs] Clarify the difference with enzyme (#11228) @oliviertassinari
|
|
1398
|
+
- [docs] Add a note on the override of internal states (#11227) @oliviertassinari
|
|
1399
|
+
- [docs] Misc fixes (#11239) @mbrookes
|
|
1400
|
+
- [docs] Document the theme.props feature (#11245) @oliviertassinari
|
|
1401
|
+
- [docs] Speedup a bit the homepage (#11248) @oliviertassinari
|
|
1402
|
+
|
|
1403
|
+
#### Core
|
|
1404
|
+
|
|
1405
|
+
- [test] Fix the CI (#11187) @oliviertassinari
|
|
1406
|
+
- [core] Update dependencies (#11240) @oliviertassinari
|
|
1407
|
+
|
|
1408
|
+
## 1.0.0-beta.44
|
|
1409
|
+
###### *Apr 29, 2018*
|
|
1410
|
+
|
|
1411
|
+
Big thanks to the 17 contributors who made this release possible.
|
|
1412
|
+
|
|
1413
|
+
### Breaking change
|
|
1414
|
+
|
|
1415
|
+
- [CardMedia] Escape background image url (#11126) @Bennit
|
|
1416
|
+
|
|
1417
|
+
As long as you are providing a valid URL to `<CardMedia image />`, it should be working. However, previously `"` escaped URL will no longer work.
|
|
1418
|
+
|
|
1419
|
+
#### Component Fixes / Enhancements
|
|
1420
|
+
|
|
1421
|
+
- [SwipeableDrawer] Prevent interaction with the drawer content if not opened (#11091) @leMaik
|
|
1422
|
+
- [Icon] Prevent shrinking when inside a flex container (#11097) @ValentinH
|
|
1423
|
+
- [Grid] Fix TypeScript definitions of class keys (#11102) @nmchaves
|
|
1424
|
+
- [Portal] Revert "Global option to disable the portal" (#11116) @oliviertassinari
|
|
1425
|
+
- [ButtonBase] Simpler global focus visible style override (#11130) @oliviertassinari
|
|
1426
|
+
- [Modal] Prevent IE11 from crashing on modal close (#11115) @JonAbrams
|
|
1427
|
+
- [Input] Fix infinite rendering loop (#11159) @oliviertassinari
|
|
1428
|
+
- [lab] Fix the tests (#11160) @oliviertassinari
|
|
1429
|
+
- [Snackbar] Add a consecutive demo (#11111) @simoami
|
|
1430
|
+
- [Tabs] Better Ant Design demo (#11095) @theiliad
|
|
1431
|
+
- [Popover] Improve the demos (#11175) @oliviertassinari
|
|
1432
|
+
|
|
1433
|
+
#### Docs
|
|
1434
|
+
|
|
1435
|
+
- [docs] Add npm-registry-browser into showcase (#11114) @topheman
|
|
1436
|
+
- [docs] Fix the flow example (#11118) @prastut
|
|
1437
|
+
- [docs] Add showcase for Local Insights (#11131) @hrdymchl
|
|
1438
|
+
- [docs] Add iOS momentum scrolling (#11140) @cherniavskii
|
|
1439
|
+
- [docs] Add a CSS modules example (#11171) @oliviertassinari
|
|
1440
|
+
- [docs] Fix typo in themes.md (#11149) @zhuangya
|
|
1441
|
+
- [docs] Make sure next@6 is working (#11168) @oliviertassinari
|
|
1442
|
+
- [docs] Correct spelling error in FormDialog.js example (#11176) @weldon0405
|
|
1443
|
+
|
|
1444
|
+
#### Core
|
|
1445
|
+
|
|
1446
|
+
- [core] Reduce the size of the npm package (#11144) @oliviertassinari
|
|
1447
|
+
- [typescript] allow pseudos on any theme mixins (#11145) @rosskevin
|
|
1448
|
+
- [core] Upgrade dev dependencies (#11146) @oliviertassinari
|
|
1449
|
+
- [styles] Fix constraint on withStyles P parameter to allow StyledComponentProps (#11156) @pelotom
|
|
1450
|
+
|
|
1451
|
+
## 1.0.0-beta.43
|
|
1452
|
+
###### *Apr 22, 2018*
|
|
1453
|
+
|
|
1454
|
+
Big thanks to the 8 contributors who made this release possible.
|
|
1455
|
+
|
|
1456
|
+
Here are some highlights ✨:
|
|
1457
|
+
- A better keyboard focused customization story (#11090) @oliviertassinari
|
|
1458
|
+
- Various TypeScript fixes
|
|
1459
|
+
|
|
1460
|
+
### Breaking change
|
|
1461
|
+
|
|
1462
|
+
- [ButtonBase] Better keyboard focused story (#11090) @oliviertassinari
|
|
1463
|
+
- Rename the `keyboardFocused` feature `focusVisible` in order to follow the CSS specification wording:
|
|
1464
|
+
https://drafts.csswg.org/selectors-4/#the-focus-visible-pseudo
|
|
1465
|
+
- Give up on the `classes` property to host the focus visible feature. The fact that the classes don't cascade was making it hard to use. Instead, we rely on a `focusVisibleClassName` property. This is allowing any component along the rendering chain to use the feature. For instance, a Switch component: Switch > SwitchBase > IconButton > ButtonBase.
|
|
1466
|
+
|
|
1467
|
+
```diff
|
|
1468
|
+
<ButtonBase
|
|
1469
|
+
- classes={{
|
|
1470
|
+
- keyboardFocused: 'my-class-name',
|
|
1471
|
+
- }}
|
|
1472
|
+
+ focusVisibleClassName="my-class-name"
|
|
1473
|
+
/>
|
|
1474
|
+
```
|
|
1475
|
+
|
|
1476
|
+
#### Component Fixes / Enhancements
|
|
1477
|
+
|
|
1478
|
+
- [typescript] Constrain props type param appropriately in withStyles, withTheme, withWidth HOCs (#11003) @estaub
|
|
1479
|
+
- [typescript] make Select's onChange prop optional (#11041) @nmchaves
|
|
1480
|
+
- [Table] Remove overflow (#11062) @oliviertassinari
|
|
1481
|
+
- [TablePagination] Allow the override of the action buttons (#11058) @lukePeavey
|
|
1482
|
+
- [Popover] Add option to disable Menu auto positioning (#11050) @nicoffee
|
|
1483
|
+
- [Input] Allow div props on InputAdornment in TypeScript (#11077) @mtandersson
|
|
1484
|
+
- [Dialog] Fix iOS momentum scroll (#11066) @greenwombat
|
|
1485
|
+
- [Portal] Global option to disable the portal (#11086) @oliviertassinari
|
|
1486
|
+
- [ExpansionPanel] Fix display on IE11 and Edge (#11087) @oliviertassinari
|
|
1487
|
+
- [CardActions] Fix CSS override (#11092) @oliviertassinari
|
|
1488
|
+
|
|
1489
|
+
#### Docs
|
|
1490
|
+
|
|
1491
|
+
- [docs] Fix broken link (#11042) @imrobinized
|
|
1492
|
+
- [CONTRIBUTING] Update the docs (#11078) @oliviertassinari
|
|
1493
|
+
|
|
1494
|
+
#### Core
|
|
1495
|
+
|
|
1496
|
+
- [core] Better distinction between the private and public components (#11051) @oliviertassinari
|
|
1497
|
+
- [core] Upgrade dev dependencies (#11096) @oliviertassinari
|
|
1498
|
+
|
|
1499
|
+
## 1.0.0-beta.42
|
|
1500
|
+
###### *Apr 16, 2018*
|
|
1501
|
+
|
|
1502
|
+
Big thanks to the 15 contributors who made this release possible.
|
|
1503
|
+
|
|
1504
|
+
Here are some highlights ✨:
|
|
1505
|
+
- A better CSS override story (#10961) @oliviertassinari
|
|
1506
|
+
- Strongly typed React.CSSProperties TypeScript definitions (#11007) @pelotom
|
|
1507
|
+
- And many more bug fixes and documentation improvements.
|
|
1508
|
+
|
|
1509
|
+
### Breaking change
|
|
1510
|
+
|
|
1511
|
+
- [styles] Change the CSS specificity (#10961) @oliviertassinari
|
|
1512
|
+
|
|
1513
|
+
This breaking change is important. It might be the most painful to recover from before stable v1 (May 17th 2018).
|
|
1514
|
+
We have changed the CSS specificity rule to solve #10771 at scale.
|
|
1515
|
+
|
|
1516
|
+
It's inspired by the Bootstrap approach to writing CSS. It follows two rules:
|
|
1517
|
+
1. A variant has **one level of specificity**.
|
|
1518
|
+
For instance, the `color` and `variant` properties are considered a variant.
|
|
1519
|
+
The lower the style specificity is, the simpler you can override it.
|
|
1520
|
+
2. We increase the specificity for a variant modifier.
|
|
1521
|
+
We already **have to do** it for the pseudo-classes (`:hover`, `:focus`, etc.).
|
|
1522
|
+
It allows much more control at the cost of more boilerplate.
|
|
1523
|
+
Hopefully, it's more intuitive.
|
|
1524
|
+
|
|
1525
|
+
Example:
|
|
1526
|
+
```diff
|
|
1527
|
+
const styles = {
|
|
1528
|
+
- checked: {
|
|
1529
|
+
- color: green[500],
|
|
1530
|
+
+ root: {
|
|
1531
|
+
+ color: green[600],
|
|
1532
|
+
+ '&$checked': {
|
|
1533
|
+
+ color: green[500],
|
|
1534
|
+
+ },
|
|
1535
|
+
},
|
|
1536
|
+
+ checked: {},
|
|
1537
|
+
};
|
|
1538
|
+
|
|
1539
|
+
<Checkbox
|
|
1540
|
+
classes={{
|
|
1541
|
+
+ root: classes.root,
|
|
1542
|
+
checked: classes.checked,
|
|
1543
|
+
}}
|
|
1544
|
+
/>
|
|
1545
|
+
```
|
|
1546
|
+
|
|
1547
|
+
#### Component Fixes / Enhancements
|
|
1548
|
+
|
|
1549
|
+
- [lab] No side effect (7c379fa7ba4ed2a3eb8abc841a9a4376014b6145) @oliviertassinari
|
|
1550
|
+
- [Card] Hide overflow to maintain round corners with CardMedia (#10946) @mbrookes
|
|
1551
|
+
- [ButtonBase] More robust button keyboard accessibility (#10965) @oliviertassinari
|
|
1552
|
+
- [Tooltip] Remove title from chldrenProps (#10977) @mbrookes
|
|
1553
|
+
- [theme] Expose augmentColor for colors outside the palette (#10985) @AiusDa
|
|
1554
|
+
- [Select] Update onChange props definition to match with SelectInput (#11012) @t49tran
|
|
1555
|
+
- [lab] Bump version for @material-ui/icons dependency (#10992) @mbrookes
|
|
1556
|
+
- [Drawer] Improve the "Mini variant drawer" demo (#11010) @andriyor
|
|
1557
|
+
- [Step] Remove private modules from the export (#11020) @oliviertassinari
|
|
1558
|
+
- [Grid] Update propTypes to accept false (#11022) @oliviertassinari
|
|
1559
|
+
- [Chip] only transition the CSS properties we need (#11023) @oliviertassinari
|
|
1560
|
+
- [CssBaseline] Add key to theme overrides type definition (#11025) @roosmaa
|
|
1561
|
+
- [Tabs] Add a customization demo (#10999) @cherniavskii
|
|
1562
|
+
- [theme] Use a single theme variable for the hover effects of Button, IconButton and ListItem (#10952) @SebastianSchmidt
|
|
1563
|
+
- [Dialog] Fix BackdropProps propagation (#11029) @sepehr1313
|
|
1564
|
+
- [ButtonBase] Fix wrong touchMove wiring (#11026) @mbrookes
|
|
1565
|
+
- [SwipeableDrawer] Simplify isSwiping logic (#11032) @leMaik
|
|
1566
|
+
- [SwipeableDrawer] Add a blocking div to the edge of the screen (#11031) @leMaik
|
|
1567
|
+
|
|
1568
|
+
#### Docs
|
|
1569
|
+
|
|
1570
|
+
- [docs] Fix typo (#10990) @jleeohsu
|
|
1571
|
+
- [docs] Better private/public API description (#11024) @oliviertassinari
|
|
1572
|
+
- [Collapse] Fix typo in comment (#11035) @mknet
|
|
1573
|
+
|
|
1574
|
+
#### Core
|
|
1575
|
+
|
|
1576
|
+
- [core] Add fallback to ownerWindow (#10978) @richardscarrott
|
|
1577
|
+
- [typescript] Remove unnecessary Partial<> for `style` prop (#10994) @franklixuefei
|
|
1578
|
+
- [core] Export all the style modules (#11021) @oliviertassinari
|
|
1579
|
+
- [typescript] Upgrade types, use string index fallback for CSSProperties to allow nested pseudos (#11007) @pelotom
|
|
1580
|
+
- [core] Upgrade the dependencies (#11030) @oliviertassinari
|
|
1581
|
+
- [core] Move to the packages structure (#11033) @oliviertassinari
|
|
1582
|
+
|
|
1583
|
+
## 1.0.0-beta.41
|
|
1584
|
+
###### *Apr 7, 2018*
|
|
1585
|
+
|
|
1586
|
+
Big thanks to the 14 contributors who made this release possible.
|
|
1587
|
+
|
|
1588
|
+
Here are some highlights ✨:
|
|
1589
|
+
- An icon package ready for v1 stable (#10902, #10933, #10957).
|
|
1590
|
+
- An important focus on the documentation.
|
|
1591
|
+
- And many more bug fixes and documentation improvements.
|
|
1592
|
+
|
|
1593
|
+
### Breaking change
|
|
1594
|
+
|
|
1595
|
+
- Move the icon package from `material-ui-icons` to `@material-ui/icons` (#10957) @oliviertassinari
|
|
1596
|
+
|
|
1597
|
+
```diff
|
|
1598
|
+
-import FormatTextdirectionRToL from 'material-ui-icons/FormatTextdirectionRToL';
|
|
1599
|
+
+import FormatTextdirectionRToL from '@material-ui/icons/FormatTextdirectionRToL';
|
|
1600
|
+
```
|
|
1601
|
+
|
|
1602
|
+
#### Component Fixes / Enhancements
|
|
1603
|
+
|
|
1604
|
+
- [icons] Reduce code duplication (#10902) @cherniavskii
|
|
1605
|
+
- [icons] Check if `global` is defined before trying to use it (#10933) @joliss
|
|
1606
|
+
- [Table] Fix EnhancedTable example to not scroll TablePagination (#10878) @mbrookes
|
|
1607
|
+
- [Zoom] Export Zoom in the TypeScript definitions (#10897) @Klynger
|
|
1608
|
+
- [IconButton] Add hover effect to IconButton (#10871) @SebastianSchmidt
|
|
1609
|
+
- [TextField] Add an icon example (#10899) @oliviertassinari
|
|
1610
|
+
- [SwipeableDrawer] Disable swiping on iOS by default (#10877) @leMaik
|
|
1611
|
+
- [SwipeableDrawer] Fix crash when swiping during an update (#10906) @leMaik
|
|
1612
|
+
- [ListItemText] Fix invalid ListItemText 'children' proptype (#10948) @kendallroth
|
|
1613
|
+
- [BottomNavigationAction] Use default childIndex value only if value undefined (#10937) @peterbartos
|
|
1614
|
+
- [styles] Add a warning to prevent a memory leak (#10953) @oliviertassinari
|
|
1615
|
+
- [Select] Fix width update (#10956) @oliviertassinari
|
|
1616
|
+
|
|
1617
|
+
#### Docs
|
|
1618
|
+
|
|
1619
|
+
- [docs] Add hideHeader option to Demo component (#10887) @mbrookes
|
|
1620
|
+
- [docs] Document the /es folder (#10888) @oliviertassinari
|
|
1621
|
+
- [docs] More transparent exportPathMap method (#10894) @oliviertassinari
|
|
1622
|
+
- [docs] Dodge issue with hoist-non-react-statics (#10896) @oliviertassinari
|
|
1623
|
+
- [docs] Add missing apostrophe (#10911) @davidgilbertson
|
|
1624
|
+
- [docs] Improve the search experience (#10905) @oliviertassinari
|
|
1625
|
+
- [docs] Improve the layout for premium themes (#10901) @mbrookes
|
|
1626
|
+
- [docs] Fix example in TypeScript docs (#10924) @piotros
|
|
1627
|
+
- [docs] Atomic state update in the Stepper demo (#10936) @iceveda06
|
|
1628
|
+
- [docs] Add versions page (#10883) @mbrookes
|
|
1629
|
+
- [docs] Fix npm urls (#10949) @sujeetkrjaiswal
|
|
1630
|
+
- [docs] Add "Do I have to use JSS?" to FAQ (#10954) @mbrookes
|
|
1631
|
+
|
|
1632
|
+
#### Core
|
|
1633
|
+
|
|
1634
|
+
- [typescript] Upgrade React and JSS typings, which both make use of csstype now (#10903) @pelotom
|
|
1635
|
+
|
|
1636
|
+
## 1.0.0-beta.40
|
|
1637
|
+
###### *Apr 1, 2018*
|
|
1638
|
+
|
|
1639
|
+
Big thanks to the 4 contributors who made this release possible.
|
|
1640
|
+
|
|
1641
|
+
Here are some highlights ✨:
|
|
1642
|
+
- React 16.3.0 support (#10867).
|
|
1643
|
+
- Many bug fixes on the Tooltip component (#10843) @shssoichiro.
|
|
1644
|
+
- A much better navigation experience on the docs (#10859).
|
|
1645
|
+
|
|
1646
|
+
### Breaking change
|
|
1647
|
+
|
|
1648
|
+
- [Tooltip] Portal the component to the body (#10843) @shssoichiro
|
|
1649
|
+
|
|
1650
|
+
We take advantage of the latest features of React 16.x.
|
|
1651
|
+
React is allowing us to return an array of elements in the render method.
|
|
1652
|
+
We have removed the useless root `div` element.
|
|
1653
|
+
Nothing has changed for people using React 15.x.
|
|
1654
|
+
|
|
1655
|
+
#### Component Fixes / Enhancements
|
|
1656
|
+
|
|
1657
|
+
- [FormControlLabel] Enable disabled label CSS modifications (#10841) @vkentta
|
|
1658
|
+
- [Select] Throw when the non native select is not controlled (#10860) @oliviertassinari
|
|
1659
|
+
- [Drawer] Back to 100% test coverage (#10861) @oliviertassinari
|
|
1660
|
+
- [core] Work on React 16.3.0 support (#10867) @oliviertassinari
|
|
1661
|
+
|
|
1662
|
+
#### Docs
|
|
1663
|
+
|
|
1664
|
+
- [docs] typo: reponse => response (#10850) @luminaxster
|
|
1665
|
+
- [docs] Remove dead code (#10855) @oliviertassinari
|
|
1666
|
+
- [docs] Much better navigation experience (#10859) @oliviertassinari
|
|
1667
|
+
- [examples] Demonstrate how to use the icons CDN (#10874) @oliviertassinari
|
|
1668
|
+
|
|
1669
|
+
#### Core
|
|
1670
|
+
|
|
1671
|
+
- [core] Remove the addEventListener module (#10856) @oliviertassinari
|
|
1672
|
+
- [core] Upgrade the dependencies (#10853) @oliviertassinari
|
|
1673
|
+
- [core] Rename .spec.js to .test.js (#10854) @oliviertassinari
|
|
1674
|
+
|
|
1675
|
+
## 1.0.0-beta.39
|
|
1676
|
+
###### *Mar 28, 2018*
|
|
1677
|
+
|
|
1678
|
+
Big thanks to the 25 contributors who made this release possible.
|
|
1679
|
+
|
|
1680
|
+
Here are some highlights ✨:
|
|
1681
|
+
- Add a [swipeable drawer](https://material-ui.com/demos/drawers/#swipeable-temporary-drawer) component (#9730) @leMaik.
|
|
1682
|
+
- Add a [StackBlitz](https://stackblitz.com/) edit link (#10758).
|
|
1683
|
+
- Add a new npm package: [@material-ui/docs](https://www.npmjs.com/package/@material-ui/docs) (#10699).
|
|
1684
|
+
- And many more bug fixes and documentation improvements.
|
|
1685
|
+
|
|
1686
|
+
### Breaking change
|
|
1687
|
+
|
|
1688
|
+
- [Grid] Change the default spacing value: 0 (#10768) @oliviertassinari
|
|
1689
|
+
|
|
1690
|
+
The negative margin implementation solution currently used comes with [serious limitations](https://material-ui.com/layout/grid/#negative-margin).
|
|
1691
|
+
Material-UI is the only library with a non-zero default spacing between the items.
|
|
1692
|
+
Having zero spacing by default will ease the usage of the component.
|
|
1693
|
+
|
|
1694
|
+
```diff
|
|
1695
|
+
-<Grid />
|
|
1696
|
+
+<Grid spacing={16} />
|
|
1697
|
+
```
|
|
1698
|
+
|
|
1699
|
+
- [Tooltip] Rename disableTriggerX (#10700) @oliviertassinari
|
|
1700
|
+
|
|
1701
|
+
For consistency with the [removeEventListener Web API](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener) and the Snackbar `disableWindowBlurListener` property.
|
|
1702
|
+
|
|
1703
|
+
```diff
|
|
1704
|
+
<Tooltip
|
|
1705
|
+
- disableTriggerFocus
|
|
1706
|
+
- disableTriggerHover
|
|
1707
|
+
- disableTriggerTouch
|
|
1708
|
+
+ disableFocusListener
|
|
1709
|
+
+ disableHoverListener
|
|
1710
|
+
+ disableTouchListener
|
|
1711
|
+
/>
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
- [InputLabel] Rename FormControlClasses property (#10796) @oliviertassinari
|
|
1715
|
+
|
|
1716
|
+
I have made a mistake in [#8108](https://github.com/mui-org/material-ui/pull/8108). The property isn't applied on a `FormControl` but on a `FormLabel` component.
|
|
1717
|
+
|
|
1718
|
+
```diff
|
|
1719
|
+
-<InputLabel FormControlClasses={classes} />
|
|
1720
|
+
+<InputLabel FormLabelClasses={classes} />
|
|
1721
|
+
```
|
|
1722
|
+
|
|
1723
|
+
#### Component Fixes / Enhancements
|
|
1724
|
+
|
|
1725
|
+
- [Switch] Add missing TypeScript class keys (#10691) @wenduzer
|
|
1726
|
+
- [ClickAwayListener] Add mouseEvent and touchEvent property (#10694) @tgrowden
|
|
1727
|
+
- [Switch] Add default color (#10697) @oliviertassinari
|
|
1728
|
+
- [StepButton] Support vertical stepper (#10698) @danieljuhl
|
|
1729
|
+
- [TextField] Update defaultValue prop types (#10703) @moondef
|
|
1730
|
+
- [Input] Rename isDirty to isEmpty (#10704) @oliviertassinari
|
|
1731
|
+
- [Select] Perfom the layout computation as soon as possible (#10706) @oliviertassinari
|
|
1732
|
+
- [Stepper] Add error prop to StepIcon and StepLabel (#10705) @nicoffee
|
|
1733
|
+
- [Grid] Add zeroMinWidth to Typescript definition (#10712) @cvanem
|
|
1734
|
+
- [Select] Fix data-value value (#10723) @a-x-
|
|
1735
|
+
- [Tooltip] Update error message (#10742) @MoonDawg92
|
|
1736
|
+
- [TextField] Apply onFocus and onBlur on the input (#10746) @oliviertassinari
|
|
1737
|
+
- [TextField] Remove dead code (#10757) @oliviertassinari
|
|
1738
|
+
- [Checkbox] Add checkedPrimary and checkedSecondary to Typescript definition (#10747) @cvanem
|
|
1739
|
+
- [️MuiThemeProvider] TypeScript disableStylesGeneration (#10759) @djeeg
|
|
1740
|
+
- [Input] Relax inputProps and inputComponent Types (#10767) @pelotom
|
|
1741
|
+
- [Tabs] Warn on invalid combination (#10788) @oliviertassinari
|
|
1742
|
+
- [Select] Better document event.target.value (#10791) @oliviertassinari
|
|
1743
|
+
- [Drawer] Add Swipeable feature (#9730) @leMaik
|
|
1744
|
+
- [Select] Add support for autoFocus (#10792) @nicoffee
|
|
1745
|
+
- [Icon] Fix typing by taking out fontSize property (#10821) @franklixuefei
|
|
1746
|
+
|
|
1747
|
+
#### Docs
|
|
1748
|
+
|
|
1749
|
+
- [docs] Add new npm package: @material-ui/docs (#10699) @oliviertassinari
|
|
1750
|
+
- [docs] Use buttonRef instead of ref in anchor playground example (#10708) @pelotom
|
|
1751
|
+
- [docs] Fix "Edit this page" button (#10722) @SebastianSchmidt
|
|
1752
|
+
- [docs] Add search shortcut (#10725) @oliviertassinari
|
|
1753
|
+
- [docs] Make navigation look more like the material guidelines (#10709) @leMaik
|
|
1754
|
+
- [docs] Clarify discrepancies from default theme (#10732) @yihangho
|
|
1755
|
+
- [examples] Update next.js PWA color (#10749) @blainegarrett
|
|
1756
|
+
- [docs] Add StackBlitz demo link (#10758) @oliviertassinari
|
|
1757
|
+
- [docs] Fix typo TextField demo (#10766) @elertan
|
|
1758
|
+
- [docs] Better CssBaseline documentation (#10770) @oliviertassinari
|
|
1759
|
+
- [docs] Remove flow warning (#10780) @rosskevin
|
|
1760
|
+
- [docs] Minor typographical fix (#10786) @samdenty99
|
|
1761
|
+
- [docs] Selection control, customization example (#10787) @oliviertassinari
|
|
1762
|
+
- [docs] Fix typo (#10794) @dylangarcia
|
|
1763
|
+
- [examples] Update Flow Example (#10799) @prastut
|
|
1764
|
+
- [docs] Material Dashboard Pro React (#10832) @oliviertassinari
|
|
1765
|
+
|
|
1766
|
+
#### Core
|
|
1767
|
+
|
|
1768
|
+
- [core] Upgrade the dev dependencies (#10702) @oliviertassinari
|
|
1769
|
+
- [typings] Fix `mixins.gutter` signature (argument is optional) (#10814) @sebald
|
|
1770
|
+
|
|
1771
|
+
## 1.0.0-beta.38
|
|
1772
|
+
###### *Mar 17, 2018*
|
|
1773
|
+
|
|
1774
|
+
Big thanks to the 19 contributors who made this release possible.
|
|
1775
|
+
|
|
1776
|
+
This release comes with important theme upgrades. Here are some highlights ✨:
|
|
1777
|
+
- Introduction of a Premium Themes section (#10616).
|
|
1778
|
+
- A `props` theme key to globally inject properties on components (#10671).
|
|
1779
|
+
- A theme option to change the font-size (#10687).
|
|
1780
|
+
- And many more bug fixes and documentation improvements.
|
|
1781
|
+
|
|
1782
|
+
### Breaking change
|
|
1783
|
+
|
|
1784
|
+
N/A
|
|
1785
|
+
|
|
1786
|
+
#### Component Fixes / Enhancements
|
|
1787
|
+
|
|
1788
|
+
- [Select] Fix chip alignment (#10611) @adamszeptycki
|
|
1789
|
+
- [Tabs] Add 'scrollButtons' and 'indicator' to TabsClassKey Typescript defintion (#10618) @cvanem
|
|
1790
|
+
- [TablePagination] Add SelectProps property (#10629) @mrahman1122
|
|
1791
|
+
- [ListItemSecondaryAction] Vertically center (#10628) @jedwards1211
|
|
1792
|
+
- [Select] Add visual tests to prevent future regression (#10642) @oliviertassinari
|
|
1793
|
+
- [Popover] Update anchorEl type (#10645) @nicoffee
|
|
1794
|
+
- [styles] Better color manipulator warning (#10652) @oliviertassinari
|
|
1795
|
+
- [Autocomplete] Show how to use the label (#10653) @oliviertassinari
|
|
1796
|
+
- [ButtonBase] Update class keys (#10659) @lukePeavey
|
|
1797
|
+
- [FromHelperText] Add missing component prop definition (#10658) @franklixuefei
|
|
1798
|
+
- [theme] Reduce the negative margin (#10672) @oliviertassinari
|
|
1799
|
+
- [theme] Add a props theme key (#10671) @oliviertassinari
|
|
1800
|
+
- [DialogActions] Add missing TypeScript property (#10674) @youngnicks
|
|
1801
|
+
- [GridList] Should allow optional children (#10680) @rosskevin
|
|
1802
|
+
- [DialogContentText] Extend the Typography component (#10683) @oliviertassinari
|
|
1803
|
+
- [theme] Allow changing the font-size (#10687) @oliviertassinari
|
|
1804
|
+
- [Stepper] Soft ripple background (#10690) @oliviertassinari
|
|
1805
|
+
|
|
1806
|
+
#### Docs
|
|
1807
|
+
|
|
1808
|
+
- [docs] Add project to showcase (#10614) @jdupont
|
|
1809
|
+
- [docs] Fix typo (#10621) @prastut
|
|
1810
|
+
- [docs] Updating the TS example to use CssBaseline (#10633) @yuchen-w
|
|
1811
|
+
- [docs] Better support of multiline for downshift (#10641) @oliviertassinari
|
|
1812
|
+
- [docs] Simplify LongMenu demo (#10646) @RichardLindhout
|
|
1813
|
+
- [docs] Improve the onboarding (#10639) @oliviertassinari
|
|
1814
|
+
- [docs] Fix usage of CssBaseline/Reboot in the CDN example (#10655) @SebastianSchmidt
|
|
1815
|
+
- [docs] Fix reference to CssBaseline component (#10654) @SebastianSchmidt
|
|
1816
|
+
- [themes] Introduce a themes website ⚡️ (#10616) @oliviertassinari
|
|
1817
|
+
- [docs] Fix reference to FAQ (#10660) @SebastianSchmidt
|
|
1818
|
+
- [docs] Fix reference to Popover demo (#10661) @SebastianSchmidt
|
|
1819
|
+
- [docs] Fix reference to Modal demo (#10662) @SebastianSchmidt
|
|
1820
|
+
- [docs] Add Rung to showcase (#10669) @vitorebatista
|
|
1821
|
+
- [docs] Add Bit as a sponsor ❤️ (#10673) @oliviertassinari
|
|
1822
|
+
- [docs] Third iteration on the homepage (#10670) @oliviertassinari
|
|
1823
|
+
- [docs] Add Team SC into showcase (#10676) @Losses
|
|
1824
|
+
- [docs] Handle optional params (#10685) @oliviertassinari
|
|
1825
|
+
- [docs] Customized tables (#10686) @oliviertassinari
|
|
1826
|
+
|
|
1827
|
+
#### Core
|
|
1828
|
+
|
|
1829
|
+
- [typescript] Remove xxxClassName props from type declarations (#10644) @lukePeavey
|
|
1830
|
+
- [typescript] Add inline style prop to transition (#10650) @nmchaves
|
|
1831
|
+
|
|
1832
|
+
## 1.0.0-beta.37
|
|
1833
|
+
###### *Mar 11, 2018*
|
|
1834
|
+
|
|
1835
|
+
Big thanks to the 13 contributors who made this release possible.
|
|
1836
|
+
|
|
1837
|
+
Here are some highlights ✨:
|
|
1838
|
+
- An important fix of the focus/blur logic of the Select (#10538) @oliviertassinari.
|
|
1839
|
+
- A multiple selection downshift example (#10550) @oliviertassinari.
|
|
1840
|
+
- A new parcel example (#10575) @oliviertassinari.
|
|
1841
|
+
- And many more bug fixes and documentation improvements.
|
|
1842
|
+
|
|
1843
|
+
### Breaking change
|
|
1844
|
+
|
|
1845
|
+
- [classes] Move the XXXClassName to the classes property (#10600) @oliviertassinari
|
|
1846
|
+
|
|
1847
|
+
These properties were introduced before `classes`.
|
|
1848
|
+
Exposing a single pattern makes things more predictable and easier to work with.
|
|
1849
|
+
|
|
1850
|
+
```diff
|
|
1851
|
+
-<Tabs buttonClassName="foo" indicatorClassName="bar" />
|
|
1852
|
+
+<Tabs classes={{ scrollButtons: 'foo', indicator: 'bar' }} />
|
|
1853
|
+
```
|
|
1854
|
+
|
|
1855
|
+
```diff
|
|
1856
|
+
-<TextField labelClassName="foo" helperTextClassName="bar" />
|
|
1857
|
+
+<TextField InputLabelProps={{ className: 'foo' }} FormHelperTextProps={{ className: 'bar' }} />
|
|
1858
|
+
```
|
|
1859
|
+
|
|
1860
|
+
- [CssBaseline] Rename from Reboot (#10605}
|
|
1861
|
+
|
|
1862
|
+
The new wording should clarify the purpose of the component.
|
|
1863
|
+
For instance, it's not about adding JavaScript polyfills.
|
|
1864
|
+
|
|
1865
|
+
```diff
|
|
1866
|
+
-<Reboot />
|
|
1867
|
+
+<CssBaseline />
|
|
1868
|
+
```
|
|
1869
|
+
|
|
1870
|
+
#### Component Fixes / Enhancements
|
|
1871
|
+
|
|
1872
|
+
- [Select] Fix wrong onBlur onFocus logic (#10538) @oliviertassinari
|
|
1873
|
+
- [ExpansionPanel] Fix controlled behavior (#10546) @oliviertassinari
|
|
1874
|
+
- [Autocomplete] Add multiple downshift example (#10550) @oliviertassinari
|
|
1875
|
+
- [Autocomplete] selectedItem can be null (#10565) @caub
|
|
1876
|
+
- [core] Improve IE11 support (#10568) @oliviertassinari
|
|
1877
|
+
- [TextField] Better inputComponent demo (#10573) @oliviertassinari
|
|
1878
|
+
- [typescript] Add a test case for ListItemIcon (#10593) @oliviertassinari
|
|
1879
|
+
- [ListItemText] Make the children an alias of the primary property (#10591) @caub
|
|
1880
|
+
- [Button] Fix Button variant prop description (#10578) @teekwak
|
|
1881
|
+
- [Table] Fix table pagination example empty row height (#10588) @amcgee
|
|
1882
|
+
- [Icon] Fix a bug in Chrome 64.0 (#10594) @caub
|
|
1883
|
+
- [List] use theme for margin in ListItemText (#10597) @caub
|
|
1884
|
+
- [StepIcon] enable CSS modifications of active step (#10599) @vkentta
|
|
1885
|
+
- [Tooltip] Add enterTouchDelay and leaveTouchDelay props (#10577) @petegivens
|
|
1886
|
+
|
|
1887
|
+
#### Docs
|
|
1888
|
+
|
|
1889
|
+
- [docs] Simplify the CDN example (6e4cc723689961582ede16db421cbdf24ac7c4b9) @oliviertassinari
|
|
1890
|
+
- [docs] Add showcase to readme - componofy (#10541) @DalerAsrorov
|
|
1891
|
+
- [docs] Add Cryptoverview to the showcase (#10545) @leMaik
|
|
1892
|
+
- [docs] Add menu Collapse example (#10548) @oliviertassinari
|
|
1893
|
+
- [docs] Add PersonalBlog Gatsby starter to Showcase (#10566) @greglobinski
|
|
1894
|
+
- [docs] Add parcel example (#10575) @oliviertassinari
|
|
1895
|
+
- [docs] Fix typo in contributing readme (#10586) @chiragmongia
|
|
1896
|
+
- [docs] Fix next.js example to enable styled-jsx with material-ui (#10580) @shibukawa
|
|
1897
|
+
- [docs] Add the latest backers (#10602) @oliviertassinari
|
|
1898
|
+
- [docs] Add Planalyze to Showcase (#10603) @dancastellon
|
|
1899
|
+
- [docs] Improve the htmlFontSize documentation (#10604) @oliviertassinari
|
|
1900
|
+
|
|
1901
|
+
#### Core
|
|
1902
|
+
|
|
1903
|
+
- [core] Fix type definitions (#10553) @stefanorie
|
|
1904
|
+
- [core] Better overrides merge support (#10606) @oliviertassinari
|
|
4
1905
|
|
|
5
1906
|
## 1.0.0-beta.36
|
|
6
1907
|
###### *Mar 5, 2018*
|
|
@@ -290,7 +2191,7 @@ We have documented our approach to solving the problem in #10023. Basically, we
|
|
|
290
2191
|
This is what motivated the button breaking change. Unfortunately `type` has its own meaning in the HTML specification. You can use it on the following elements: `<button>, <input>, <command>, <embed>, <object>, <script>, <source>, <style>, <menu>`.
|
|
291
2192
|
We are using a more generic name to **avoid the confusion**: `variant`.
|
|
292
2193
|
|
|
293
|
-
Umbrella pull
|
|
2194
|
+
Umbrella pull request for: #10084, #10086, #10088.
|
|
294
2195
|
|
|
295
2196
|
```diff
|
|
296
2197
|
<Button
|
|
@@ -388,8 +2289,8 @@ Here are some highlights ✨:
|
|
|
388
2289
|
- And many more bug fixes and documentation improvements.
|
|
389
2290
|
|
|
390
2291
|
Fun facts:
|
|
391
|
-
- Our first alpha release was 1 year ago: *Jan 28, 2017*
|
|
392
|
-
- We have done 53 pre-releases of the v1.x, one every week for a year
|
|
2292
|
+
- Our first alpha release was 1 year ago: *Jan 28, 2017* 🎂!
|
|
2293
|
+
- We have done 53 pre-releases of the v1.x, one every week for a year 🛥.
|
|
393
2294
|
|
|
394
2295
|
### Breaking change
|
|
395
2296
|
|
|
@@ -775,7 +2676,7 @@ To style the root element in these components, a `className` prop can be passed,
|
|
|
775
2676
|
- [typescript] Add TouchRipple typings (#9812) @msiadak
|
|
776
2677
|
- [test] Enforce 100% test coverage in Codecov (#9813) @leMaik
|
|
777
2678
|
- [typescript] Move @types/jss from devDependencies to dependencies (#9817) @pelotom
|
|
778
|
-
- [core] Upgrade the dependencies
|
|
2679
|
+
- [core] Upgrade the dependencies 😢 (#9828)
|
|
779
2680
|
|
|
780
2681
|
## 1.0.0-beta.27
|
|
781
2682
|
###### *Jan 6, 2018*
|
|
@@ -970,7 +2871,7 @@ Big thanks to the 16 contributors who made this release possible.
|
|
|
970
2871
|
|
|
971
2872
|
Here are some highlights ✨:
|
|
972
2873
|
- 100% test coverage. Thanks @leMaik for the last mile (#9596)!
|
|
973
|
-
- The first introduction of Global CSS
|
|
2874
|
+
- The first introduction of Global CSS 😱.
|
|
974
2875
|
We have introduced a `dangerouslyUseGlobalCSS` option to the class name generator (#9558).
|
|
975
2876
|
We discourage people from using this option in production.
|
|
976
2877
|
However, it can be a quick escape hatch when prototyping.
|
|
@@ -983,7 +2884,7 @@ It's making the class names predictable, for instance:
|
|
|
983
2884
|
|
|
984
2885
|
### Breaking change
|
|
985
2886
|
|
|
986
|
-
None, merry christmas
|
|
2887
|
+
None, merry christmas 🎄.
|
|
987
2888
|
|
|
988
2889
|
#### Component Fixes / Enhancements
|
|
989
2890
|
|
|
@@ -1027,7 +2928,7 @@ Big thanks to the 16 contributors who made this release possible.
|
|
|
1027
2928
|
|
|
1028
2929
|
Here are some highlights ✨:
|
|
1029
2930
|
- We have removed Flow from the core components in (#9453).
|
|
1030
|
-
You can learn more about the motivations in the pull
|
|
2931
|
+
You can learn more about the motivations in the pull request.
|
|
1031
2932
|
This changes two important things:
|
|
1032
2933
|
- We have reduced the size of the bundle by ~8 kB gzipped.
|
|
1033
2934
|
- The propTypes runtime checks are back. You might experience new warnings.
|
|
@@ -1216,7 +3117,7 @@ By consistency with the other components, the color property is no longer apply
|
|
|
1216
3117
|
Big thanks to the 26 contributors who made this release possible.
|
|
1217
3118
|
|
|
1218
3119
|
Here are some highlights ✨:
|
|
1219
|
-
- Wait, what? A new component is coming, again
|
|
3120
|
+
- Wait, what? A new component is coming, again 🎉.
|
|
1220
3121
|
@andrzejbk has been implementing the `ExpansionPanel` component with the help of the community. Big thanks to him!
|
|
1221
3122
|
- Support TypeScript@2.6 (#9124) @pelotom
|
|
1222
3123
|
- Support Flow@0.57.x (#8983) @rsolomon, @rosskevin
|
|
@@ -1226,7 +3127,7 @@ Here are some highlights ✨:
|
|
|
1226
3127
|
### Breaking change
|
|
1227
3128
|
|
|
1228
3129
|
- [Select] Remove InputClasses (#9159) @oliviertassinari
|
|
1229
|
-
It's a revert. I have made the unwise call of adding the InputClasses property in an unrelated refactorization pull
|
|
3130
|
+
It's a revert. I have made the unwise call of adding the InputClasses property in an unrelated refactorization pull request #8942. It was not taking the input classes property into account. It was a breaking change and not needed.
|
|
1230
3131
|
- [core] Reduce bundle size by 2kB gzipped (#9129) @oliviertassinari
|
|
1231
3132
|
We have removed some jss plugins from the default bundle:
|
|
1232
3133
|
- [jss-expand](https://github.com/cssinjs/jss-expand) (1.3 kB)
|
|
@@ -1235,7 +3136,7 @@ We have removed some jss plugins from the default bundle:
|
|
|
1235
3136
|
- [jss-template](https://github.com/cssinjs/jss-template) (330 B)
|
|
1236
3137
|
|
|
1237
3138
|
It's a revert.
|
|
1238
|
-
I have made the unwise call of adding the InputClasses property in an unrelated refactorization pull
|
|
3139
|
+
I have made the unwise call of adding the InputClasses property in an unrelated refactorization pull request #8942.
|
|
1239
3140
|
It was not taking the input classes property into account.
|
|
1240
3141
|
It was a breaking change and not needed.
|
|
1241
3142
|
|
|
@@ -1438,7 +3339,7 @@ The `Input` and `FormLabel` component do no longer inherit the font-size. You mi
|
|
|
1438
3339
|
Big thanks to the 17 contributors who made this release possible.
|
|
1439
3340
|
|
|
1440
3341
|
Here are some highlights ✨:
|
|
1441
|
-
- We managed to do it! We have upgraded all the dependencies to react@16
|
|
3342
|
+
- We managed to do it! We have upgraded all the dependencies to react@16 🚀 (#8889).
|
|
1442
3343
|
We will keep react@15 support for some time in order to help the migration from v0.x to v1.x.
|
|
1443
3344
|
- We have fixed an important bug of `withStyles()` with react-hot-loader.
|
|
1444
3345
|
Thanks a lot @rrousselGit for the support (#8897).
|
|
@@ -1823,7 +3724,7 @@ Big thanks to the 18 contributors who made this release possible.
|
|
|
1823
3724
|
- [test] Prepare enzyme v3 upgrade (#8429) @oliviertassinari
|
|
1824
3725
|
- [core] Update react-transition-group for react@16 (#8468) @oliviertassinari
|
|
1825
3726
|
- [core] Update recompose to 0.25.1 (#8408) @oliviertassinari
|
|
1826
|
-
- [core] Update sinon to the latest version
|
|
3727
|
+
- [core] Update sinon to the latest version 🚀 (#8396) @greenkeeper
|
|
1827
3728
|
- [core] Upgrade prettier (#8428) @oliviertassinari
|
|
1828
3729
|
- [typescript] Document withStyles overloads (#8364) @pelotom
|
|
1829
3730
|
- [typescript] Make StyledComponent only a type, not a class (#8366) @pelotom
|
|
@@ -2072,7 +3973,7 @@ Big thanks to the 13 contributors who made this release possible.
|
|
|
2072
3973
|
- [typescript] Improve typings for `ButtonBase` (#8175) @sebald
|
|
2073
3974
|
- [typescript] Make `withStyles` usable as decorator (#8178) @sebald
|
|
2074
3975
|
- [FormControls] Fix styling for component (#8186) @slavab89
|
|
2075
|
-
- [Toolbar] Add a toolbar mixins
|
|
3976
|
+
- [Toolbar] Add a toolbar mixins 💄 (#8157) @wcandillon
|
|
2076
3977
|
- [Switch] Styling bug fix on long labels (#8181) @willfarrell
|
|
2077
3978
|
- [Radio] Accept invalid children (#8187) @oliviertassinari
|
|
2078
3979
|
- [theme] Extend createMuiTheme behavior (#8188) @oliviertassinari
|
|
@@ -2127,14 +4028,14 @@ N/A
|
|
|
2127
4028
|
|
|
2128
4029
|
- [Picker] Add page section in the documentation (#8117) @oliviertassinari
|
|
2129
4030
|
- [docs] Update basics.md (#8014) @kgaregin
|
|
2130
|
-
- [docs]
|
|
4031
|
+
- [docs] 🚑 Fix broken link (#8029) @wcandillon
|
|
2131
4032
|
- [examples] Fix typo in extraction path (#8031) @freiit
|
|
2132
4033
|
- [Drawer] Fix for mini variant drawer can be scrolled horizontally when collapsed (#8112) @xaviergonz
|
|
2133
4034
|
- [docs] Update react-docgen and fix api docs (#8056) @rosskevin
|
|
2134
4035
|
- [docs] Remove defensive checks (#8057) @rosskevin
|
|
2135
4036
|
- [examples] Fix create react app explicit dependencies (#8087) @rosskevin
|
|
2136
4037
|
- [docs] Add a spread section to the API page (#8097) @oliviertassinari
|
|
2137
|
-
- [docs] Reduce the bundle size
|
|
4038
|
+
- [docs] Reduce the bundle size 📦 (#8121) @oliviertassinari
|
|
2138
4039
|
- [docs] Add carbon (#8118) @oliviertassinari
|
|
2139
4040
|
- [docs] Makes the sections bolder (#8116) @oliviertassinari
|
|
2140
4041
|
|
|
@@ -2285,7 +4186,7 @@ If you want to avoid the default browser required property handling, you can add
|
|
|
2285
4186
|
###### *Aug 20, 2017*
|
|
2286
4187
|
|
|
2287
4188
|
A big shout-out to @sebald for our first TypeScript coverage.
|
|
2288
|
-
Another notable change is [the migration of the documentation](#7759) to [Next.js](https://github.com/zeit/next.js), it's twice as fast as before
|
|
4189
|
+
Another notable change is [the migration of the documentation](#7759) to [Next.js](https://github.com/zeit/next.js), it's twice as fast as before 🚀.
|
|
2289
4190
|
|
|
2290
4191
|
Big thanks to the 9 contributors who made this release possible.
|
|
2291
4192
|
|
|
@@ -2328,7 +4229,7 @@ Push #7741 initiative forward (use `value` and `onChange` as controlling propert
|
|
|
2328
4229
|
|
|
2329
4230
|
#### Core
|
|
2330
4231
|
|
|
2331
|
-
- [core] Better usage of the CI
|
|
4232
|
+
- [core] Better usage of the CI 🚀 (#7833) @oliviertassinari
|
|
2332
4233
|
- [core] Fix size-limit warning (#7822) @oliviertassinari
|
|
2333
4234
|
- [icons] Automate release process (#7823) @oliviertassinari
|
|
2334
4235
|
- [core] Update some dependencies (#7831) @oliviertassinari
|
|
@@ -3251,7 +5152,7 @@ We are now at 93.53%. That's pretty great.
|
|
|
3251
5152
|
One year from now, we were struggling with removing all the mixins from the project.
|
|
3252
5153
|
Now, it's about rewriting all our components.
|
|
3253
5154
|
We gonna try doing frequent alpha releases to keep some intertie. At least once per week would be good.
|
|
3254
|
-
As always, we are keeping the [documentation](https://material-ui
|
|
5155
|
+
As always, we are keeping the [documentation](https://material-ui.com) up to date.
|
|
3255
5156
|
|
|
3256
5157
|
#### Component Fixes / Enhancements
|
|
3257
5158
|
|
|
@@ -3328,7 +5229,7 @@ That wouldn't have been possible without this awesome community.
|
|
|
3328
5229
|
**Thank you!**
|
|
3329
5230
|
|
|
3330
5231
|
But this's just the beginning, some [exciting stuff](https://github.com/mui-org/material-ui/blob/master/ROADMAP.md) is coming in 2017 :sparkles:.
|
|
3331
|
-
You can preview a **very early** version of the `next` branch following [
|
|
5232
|
+
You can preview a **very early** version of the `next` branch following [this link](https://material-ui-next.com).
|
|
3332
5233
|
|
|
3333
5234
|
#### Component Fixes / Enhancements
|
|
3334
5235
|
|