se-material-ui 0.20.2

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.
Files changed (1151) hide show
  1. package/AppBar/AppBar.js +366 -0
  2. package/AppBar/index.js +14 -0
  3. package/AutoComplete/AutoComplete.js +690 -0
  4. package/AutoComplete/index.js +14 -0
  5. package/Avatar/Avatar.js +157 -0
  6. package/Avatar/index.js +14 -0
  7. package/Badge/Badge.js +161 -0
  8. package/Badge/index.js +14 -0
  9. package/BottomNavigation/BottomNavigation.js +94 -0
  10. package/BottomNavigation/BottomNavigationItem.js +111 -0
  11. package/BottomNavigation/index.js +20 -0
  12. package/CHANGELOG.md +2780 -0
  13. package/Card/Card.js +203 -0
  14. package/Card/CardActions.js +113 -0
  15. package/Card/CardExpandable.js +97 -0
  16. package/Card/CardHeader.js +217 -0
  17. package/Card/CardMedia.js +202 -0
  18. package/Card/CardText.js +108 -0
  19. package/Card/CardTitle.js +165 -0
  20. package/Card/index.js +45 -0
  21. package/Checkbox/Checkbox.js +279 -0
  22. package/Checkbox/index.js +14 -0
  23. package/Chip/Chip.js +336 -0
  24. package/Chip/index.js +14 -0
  25. package/CircularProgress/CircularProgress.js +258 -0
  26. package/CircularProgress/index.js +14 -0
  27. package/DatePicker/Calendar.js +469 -0
  28. package/DatePicker/CalendarActionButtons.js +94 -0
  29. package/DatePicker/CalendarMonth.js +160 -0
  30. package/DatePicker/CalendarToolbar.js +169 -0
  31. package/DatePicker/CalendarYear.js +179 -0
  32. package/DatePicker/DateDisplay.js +227 -0
  33. package/DatePicker/DatePicker.js +403 -0
  34. package/DatePicker/DatePickerDialog.js +246 -0
  35. package/DatePicker/DayButton.js +185 -0
  36. package/DatePicker/YearButton.js +148 -0
  37. package/DatePicker/dateUtils.js +204 -0
  38. package/DatePicker/index.js +14 -0
  39. package/Dialog/Dialog.js +595 -0
  40. package/Dialog/index.js +14 -0
  41. package/Divider/Divider.js +70 -0
  42. package/Divider/index.js +14 -0
  43. package/Drawer/Drawer.js +478 -0
  44. package/Drawer/index.js +14 -0
  45. package/DropDownMenu/DropDownMenu.js +578 -0
  46. package/DropDownMenu/index.js +20 -0
  47. package/FlatButton/FlatButton.js +332 -0
  48. package/FlatButton/FlatButtonLabel.js +80 -0
  49. package/FlatButton/index.js +14 -0
  50. package/FloatingActionButton/FloatingActionButton.js +378 -0
  51. package/FloatingActionButton/index.js +14 -0
  52. package/FontIcon/FontIcon.js +144 -0
  53. package/FontIcon/index.js +14 -0
  54. package/GridList/GridList.js +132 -0
  55. package/GridList/GridTile.js +292 -0
  56. package/GridList/index.js +20 -0
  57. package/IconButton/IconButton.js +368 -0
  58. package/IconButton/index.js +14 -0
  59. package/IconMenu/IconMenu.js +401 -0
  60. package/IconMenu/index.js +20 -0
  61. package/LICENSE +21 -0
  62. package/LinearProgress/LinearProgress.js +219 -0
  63. package/LinearProgress/index.js +14 -0
  64. package/List/List.js +95 -0
  65. package/List/ListItem.js +742 -0
  66. package/List/NestedList.js +53 -0
  67. package/List/index.js +25 -0
  68. package/List/makeSelectable.js +156 -0
  69. package/Menu/Menu.js +693 -0
  70. package/Menu/index.js +20 -0
  71. package/Menu/menuUtils.js +33 -0
  72. package/MenuItem/MenuItem.js +392 -0
  73. package/MenuItem/index.js +14 -0
  74. package/Paper/Paper.js +138 -0
  75. package/Paper/index.js +14 -0
  76. package/Popover/Popover.js +510 -0
  77. package/Popover/PopoverAnimationDefault.js +161 -0
  78. package/Popover/PopoverAnimationVertical.js +136 -0
  79. package/Popover/index.js +20 -0
  80. package/README.md +172 -0
  81. package/RadioButton/RadioButton.js +259 -0
  82. package/RadioButton/RadioButtonGroup.js +223 -0
  83. package/RadioButton/index.js +20 -0
  84. package/RaisedButton/RaisedButton.js +475 -0
  85. package/RaisedButton/index.js +14 -0
  86. package/RefreshIndicator/RefreshIndicator.js +400 -0
  87. package/RefreshIndicator/index.js +14 -0
  88. package/SelectField/SelectField.js +306 -0
  89. package/SelectField/index.js +14 -0
  90. package/Slider/Slider.js +867 -0
  91. package/Slider/index.js +14 -0
  92. package/Snackbar/Snackbar.js +303 -0
  93. package/Snackbar/SnackbarBody.js +167 -0
  94. package/Snackbar/index.js +14 -0
  95. package/Stepper/Step.js +148 -0
  96. package/Stepper/StepButton.js +201 -0
  97. package/Stepper/StepConnector.js +77 -0
  98. package/Stepper/StepContent.js +155 -0
  99. package/Stepper/StepLabel.js +191 -0
  100. package/Stepper/Stepper.js +148 -0
  101. package/Stepper/index.js +34 -0
  102. package/Subheader/Subheader.js +80 -0
  103. package/Subheader/index.js +14 -0
  104. package/SvgIcon/SvgIcon.js +151 -0
  105. package/SvgIcon/index.js +14 -0
  106. package/Table/Table.js +365 -0
  107. package/Table/TableBody.js +523 -0
  108. package/Table/TableFooter.js +139 -0
  109. package/Table/TableHeader.js +247 -0
  110. package/Table/TableHeaderColumn.js +188 -0
  111. package/Table/TableRow.js +269 -0
  112. package/Table/TableRowColumn.js +169 -0
  113. package/Table/index.js +45 -0
  114. package/Tabs/InkBar.js +90 -0
  115. package/Tabs/Tab.js +194 -0
  116. package/Tabs/TabTemplate.js +51 -0
  117. package/Tabs/Tabs.js +312 -0
  118. package/Tabs/index.js +20 -0
  119. package/TextField/EnhancedTextarea.js +243 -0
  120. package/TextField/TextField.js +577 -0
  121. package/TextField/TextFieldHint.js +80 -0
  122. package/TextField/TextFieldLabel.js +117 -0
  123. package/TextField/TextFieldUnderline.js +139 -0
  124. package/TextField/index.js +14 -0
  125. package/TimePicker/Clock.js +233 -0
  126. package/TimePicker/ClockHours.js +231 -0
  127. package/TimePicker/ClockMinutes.js +206 -0
  128. package/TimePicker/ClockNumber.js +130 -0
  129. package/TimePicker/ClockPointer.js +139 -0
  130. package/TimePicker/TimeDisplay.js +231 -0
  131. package/TimePicker/TimePicker.js +290 -0
  132. package/TimePicker/TimePickerDialog.js +194 -0
  133. package/TimePicker/index.js +14 -0
  134. package/TimePicker/timeUtils.js +95 -0
  135. package/Toggle/Toggle.js +319 -0
  136. package/Toggle/index.js +14 -0
  137. package/Toolbar/Toolbar.js +111 -0
  138. package/Toolbar/ToolbarGroup.js +199 -0
  139. package/Toolbar/ToolbarSeparator.js +92 -0
  140. package/Toolbar/ToolbarTitle.js +105 -0
  141. package/Toolbar/index.js +30 -0
  142. package/index.es.js +132 -0
  143. package/index.js +339 -0
  144. package/internal/AppCanvas.js +88 -0
  145. package/internal/AutoLockScrolling.js +113 -0
  146. package/internal/BeforeAfterWrapper.js +143 -0
  147. package/internal/CircleRipple.js +159 -0
  148. package/internal/ClearFix.js +63 -0
  149. package/internal/ClickAwayListener.js +118 -0
  150. package/internal/EnhancedButton.js +375 -0
  151. package/internal/EnhancedSwitch.js +450 -0
  152. package/internal/ExpandTransition.js +132 -0
  153. package/internal/ExpandTransitionChild.js +182 -0
  154. package/internal/FocusRipple.js +188 -0
  155. package/internal/Overlay.js +131 -0
  156. package/internal/RenderToLayer.js +168 -0
  157. package/internal/ScaleIn.js +115 -0
  158. package/internal/ScaleInChild.js +157 -0
  159. package/internal/SlideIn.js +124 -0
  160. package/internal/SlideInChild.js +139 -0
  161. package/internal/Tooltip.js +214 -0
  162. package/internal/TouchRipple.js +296 -0
  163. package/package.json +41 -0
  164. package/styles/MuiThemeProvider.js +60 -0
  165. package/styles/baseThemes/darkBaseTheme.js +37 -0
  166. package/styles/baseThemes/lightBaseTheme.js +45 -0
  167. package/styles/colors.js +290 -0
  168. package/styles/getMuiTheme.js +379 -0
  169. package/styles/index.js +63 -0
  170. package/styles/muiThemeable.js +50 -0
  171. package/styles/spacing.js +19 -0
  172. package/styles/transitions.js +34 -0
  173. package/styles/typography.js +31 -0
  174. package/styles/zIndex.js +17 -0
  175. package/svg-icons/action/accessibility.js +32 -0
  176. package/svg-icons/action/accessible.js +33 -0
  177. package/svg-icons/action/account-balance-wallet.js +32 -0
  178. package/svg-icons/action/account-balance.js +32 -0
  179. package/svg-icons/action/account-box.js +32 -0
  180. package/svg-icons/action/account-circle.js +32 -0
  181. package/svg-icons/action/add-shopping-cart.js +32 -0
  182. package/svg-icons/action/alarm-add.js +32 -0
  183. package/svg-icons/action/alarm-off.js +32 -0
  184. package/svg-icons/action/alarm-on.js +32 -0
  185. package/svg-icons/action/alarm.js +32 -0
  186. package/svg-icons/action/all-out.js +32 -0
  187. package/svg-icons/action/android.js +32 -0
  188. package/svg-icons/action/announcement.js +32 -0
  189. package/svg-icons/action/aspect-ratio.js +32 -0
  190. package/svg-icons/action/assessment.js +32 -0
  191. package/svg-icons/action/assignment-ind.js +32 -0
  192. package/svg-icons/action/assignment-late.js +32 -0
  193. package/svg-icons/action/assignment-return.js +32 -0
  194. package/svg-icons/action/assignment-returned.js +32 -0
  195. package/svg-icons/action/assignment-turned-in.js +32 -0
  196. package/svg-icons/action/assignment.js +32 -0
  197. package/svg-icons/action/autorenew.js +32 -0
  198. package/svg-icons/action/backup.js +32 -0
  199. package/svg-icons/action/book.js +32 -0
  200. package/svg-icons/action/bookmark-border.js +32 -0
  201. package/svg-icons/action/bookmark.js +32 -0
  202. package/svg-icons/action/bug-report.js +32 -0
  203. package/svg-icons/action/build.js +32 -0
  204. package/svg-icons/action/cached.js +32 -0
  205. package/svg-icons/action/camera-enhance.js +32 -0
  206. package/svg-icons/action/card-giftcard.js +32 -0
  207. package/svg-icons/action/card-membership.js +32 -0
  208. package/svg-icons/action/card-travel.js +32 -0
  209. package/svg-icons/action/change-history.js +32 -0
  210. package/svg-icons/action/check-circle.js +32 -0
  211. package/svg-icons/action/chrome-reader-mode.js +32 -0
  212. package/svg-icons/action/class.js +32 -0
  213. package/svg-icons/action/code.js +32 -0
  214. package/svg-icons/action/compare-arrows.js +32 -0
  215. package/svg-icons/action/copyright.js +32 -0
  216. package/svg-icons/action/credit-card.js +32 -0
  217. package/svg-icons/action/dashboard.js +32 -0
  218. package/svg-icons/action/date-range.js +32 -0
  219. package/svg-icons/action/delete-forever.js +32 -0
  220. package/svg-icons/action/delete.js +32 -0
  221. package/svg-icons/action/description.js +32 -0
  222. package/svg-icons/action/dns.js +32 -0
  223. package/svg-icons/action/done-all.js +32 -0
  224. package/svg-icons/action/done.js +32 -0
  225. package/svg-icons/action/donut-large.js +32 -0
  226. package/svg-icons/action/donut-small.js +32 -0
  227. package/svg-icons/action/eject.js +32 -0
  228. package/svg-icons/action/euro-symbol.js +32 -0
  229. package/svg-icons/action/event-seat.js +32 -0
  230. package/svg-icons/action/event.js +32 -0
  231. package/svg-icons/action/exit-to-app.js +32 -0
  232. package/svg-icons/action/explore.js +32 -0
  233. package/svg-icons/action/extension.js +32 -0
  234. package/svg-icons/action/face.js +32 -0
  235. package/svg-icons/action/favorite-border.js +32 -0
  236. package/svg-icons/action/favorite.js +32 -0
  237. package/svg-icons/action/feedback.js +32 -0
  238. package/svg-icons/action/find-in-page.js +32 -0
  239. package/svg-icons/action/find-replace.js +32 -0
  240. package/svg-icons/action/fingerprint.js +32 -0
  241. package/svg-icons/action/flight-land.js +32 -0
  242. package/svg-icons/action/flight-takeoff.js +32 -0
  243. package/svg-icons/action/flip-to-back.js +32 -0
  244. package/svg-icons/action/flip-to-front.js +32 -0
  245. package/svg-icons/action/g-translate.js +32 -0
  246. package/svg-icons/action/gavel.js +32 -0
  247. package/svg-icons/action/get-app.js +32 -0
  248. package/svg-icons/action/gif.js +32 -0
  249. package/svg-icons/action/grade.js +32 -0
  250. package/svg-icons/action/group-work.js +32 -0
  251. package/svg-icons/action/help-outline.js +32 -0
  252. package/svg-icons/action/help.js +32 -0
  253. package/svg-icons/action/highlight-off.js +32 -0
  254. package/svg-icons/action/history.js +32 -0
  255. package/svg-icons/action/home.js +32 -0
  256. package/svg-icons/action/hourglass-empty.js +32 -0
  257. package/svg-icons/action/hourglass-full.js +32 -0
  258. package/svg-icons/action/http.js +32 -0
  259. package/svg-icons/action/https.js +32 -0
  260. package/svg-icons/action/important-devices.js +32 -0
  261. package/svg-icons/action/info-outline.js +32 -0
  262. package/svg-icons/action/info.js +32 -0
  263. package/svg-icons/action/input.js +32 -0
  264. package/svg-icons/action/invert-colors.js +32 -0
  265. package/svg-icons/action/label-outline.js +32 -0
  266. package/svg-icons/action/label.js +32 -0
  267. package/svg-icons/action/language.js +32 -0
  268. package/svg-icons/action/launch.js +32 -0
  269. package/svg-icons/action/lightbulb-outline.js +32 -0
  270. package/svg-icons/action/line-style.js +32 -0
  271. package/svg-icons/action/line-weight.js +32 -0
  272. package/svg-icons/action/list.js +32 -0
  273. package/svg-icons/action/lock-open.js +32 -0
  274. package/svg-icons/action/lock-outline.js +32 -0
  275. package/svg-icons/action/lock.js +32 -0
  276. package/svg-icons/action/loyalty.js +32 -0
  277. package/svg-icons/action/markunread-mailbox.js +32 -0
  278. package/svg-icons/action/motorcycle.js +32 -0
  279. package/svg-icons/action/note-add.js +32 -0
  280. package/svg-icons/action/offline-pin.js +32 -0
  281. package/svg-icons/action/opacity.js +32 -0
  282. package/svg-icons/action/open-in-browser.js +32 -0
  283. package/svg-icons/action/open-in-new.js +32 -0
  284. package/svg-icons/action/open-with.js +32 -0
  285. package/svg-icons/action/pageview.js +32 -0
  286. package/svg-icons/action/pan-tool.js +32 -0
  287. package/svg-icons/action/payment.js +32 -0
  288. package/svg-icons/action/perm-camera-mic.js +32 -0
  289. package/svg-icons/action/perm-contact-calendar.js +32 -0
  290. package/svg-icons/action/perm-data-setting.js +32 -0
  291. package/svg-icons/action/perm-device-information.js +32 -0
  292. package/svg-icons/action/perm-identity.js +32 -0
  293. package/svg-icons/action/perm-media.js +32 -0
  294. package/svg-icons/action/perm-phone-msg.js +32 -0
  295. package/svg-icons/action/perm-scan-wifi.js +32 -0
  296. package/svg-icons/action/pets.js +36 -0
  297. package/svg-icons/action/picture-in-picture-alt.js +32 -0
  298. package/svg-icons/action/picture-in-picture.js +32 -0
  299. package/svg-icons/action/play-for-work.js +32 -0
  300. package/svg-icons/action/polymer.js +32 -0
  301. package/svg-icons/action/power-settings-new.js +32 -0
  302. package/svg-icons/action/pregnant-woman.js +32 -0
  303. package/svg-icons/action/print.js +32 -0
  304. package/svg-icons/action/query-builder.js +32 -0
  305. package/svg-icons/action/question-answer.js +32 -0
  306. package/svg-icons/action/receipt.js +32 -0
  307. package/svg-icons/action/record-voice-over.js +33 -0
  308. package/svg-icons/action/redeem.js +32 -0
  309. package/svg-icons/action/remove-shopping-cart.js +32 -0
  310. package/svg-icons/action/reorder.js +32 -0
  311. package/svg-icons/action/report-problem.js +32 -0
  312. package/svg-icons/action/restore-page.js +32 -0
  313. package/svg-icons/action/restore.js +32 -0
  314. package/svg-icons/action/room.js +32 -0
  315. package/svg-icons/action/rounded-corner.js +32 -0
  316. package/svg-icons/action/rowing.js +32 -0
  317. package/svg-icons/action/schedule.js +32 -0
  318. package/svg-icons/action/search.js +32 -0
  319. package/svg-icons/action/settings-applications.js +32 -0
  320. package/svg-icons/action/settings-backup-restore.js +32 -0
  321. package/svg-icons/action/settings-bluetooth.js +32 -0
  322. package/svg-icons/action/settings-brightness.js +32 -0
  323. package/svg-icons/action/settings-cell.js +32 -0
  324. package/svg-icons/action/settings-ethernet.js +32 -0
  325. package/svg-icons/action/settings-input-antenna.js +32 -0
  326. package/svg-icons/action/settings-input-component.js +32 -0
  327. package/svg-icons/action/settings-input-composite.js +32 -0
  328. package/svg-icons/action/settings-input-hdmi.js +32 -0
  329. package/svg-icons/action/settings-input-svideo.js +32 -0
  330. package/svg-icons/action/settings-overscan.js +32 -0
  331. package/svg-icons/action/settings-phone.js +32 -0
  332. package/svg-icons/action/settings-power.js +32 -0
  333. package/svg-icons/action/settings-remote.js +32 -0
  334. package/svg-icons/action/settings-voice.js +32 -0
  335. package/svg-icons/action/settings.js +32 -0
  336. package/svg-icons/action/shop-two.js +32 -0
  337. package/svg-icons/action/shop.js +32 -0
  338. package/svg-icons/action/shopping-basket.js +32 -0
  339. package/svg-icons/action/shopping-cart.js +32 -0
  340. package/svg-icons/action/speaker-notes-off.js +32 -0
  341. package/svg-icons/action/speaker-notes.js +32 -0
  342. package/svg-icons/action/spellcheck.js +32 -0
  343. package/svg-icons/action/stars.js +32 -0
  344. package/svg-icons/action/store.js +32 -0
  345. package/svg-icons/action/subject.js +32 -0
  346. package/svg-icons/action/supervisor-account.js +32 -0
  347. package/svg-icons/action/swap-horiz.js +32 -0
  348. package/svg-icons/action/swap-vert.js +32 -0
  349. package/svg-icons/action/swap-vertical-circle.js +32 -0
  350. package/svg-icons/action/system-update-alt.js +32 -0
  351. package/svg-icons/action/tab-unselected.js +32 -0
  352. package/svg-icons/action/tab.js +32 -0
  353. package/svg-icons/action/theaters.js +32 -0
  354. package/svg-icons/action/three-d-rotation.js +32 -0
  355. package/svg-icons/action/thumb-down.js +32 -0
  356. package/svg-icons/action/thumb-up.js +32 -0
  357. package/svg-icons/action/thumbs-up-down.js +32 -0
  358. package/svg-icons/action/timeline.js +32 -0
  359. package/svg-icons/action/toc.js +32 -0
  360. package/svg-icons/action/today.js +32 -0
  361. package/svg-icons/action/toll.js +32 -0
  362. package/svg-icons/action/touch-app.js +32 -0
  363. package/svg-icons/action/track-changes.js +32 -0
  364. package/svg-icons/action/translate.js +32 -0
  365. package/svg-icons/action/trending-down.js +32 -0
  366. package/svg-icons/action/trending-flat.js +32 -0
  367. package/svg-icons/action/trending-up.js +32 -0
  368. package/svg-icons/action/turned-in-not.js +32 -0
  369. package/svg-icons/action/turned-in.js +32 -0
  370. package/svg-icons/action/update.js +32 -0
  371. package/svg-icons/action/verified-user.js +32 -0
  372. package/svg-icons/action/view-agenda.js +32 -0
  373. package/svg-icons/action/view-array.js +32 -0
  374. package/svg-icons/action/view-carousel.js +32 -0
  375. package/svg-icons/action/view-column.js +32 -0
  376. package/svg-icons/action/view-day.js +32 -0
  377. package/svg-icons/action/view-headline.js +32 -0
  378. package/svg-icons/action/view-list.js +32 -0
  379. package/svg-icons/action/view-module.js +32 -0
  380. package/svg-icons/action/view-quilt.js +32 -0
  381. package/svg-icons/action/view-stream.js +32 -0
  382. package/svg-icons/action/view-week.js +32 -0
  383. package/svg-icons/action/visibility-off.js +32 -0
  384. package/svg-icons/action/visibility.js +32 -0
  385. package/svg-icons/action/watch-later.js +32 -0
  386. package/svg-icons/action/work.js +32 -0
  387. package/svg-icons/action/youtube-searched-for.js +32 -0
  388. package/svg-icons/action/zoom-in.js +32 -0
  389. package/svg-icons/action/zoom-out.js +32 -0
  390. package/svg-icons/alert/add-alert.js +32 -0
  391. package/svg-icons/alert/error-outline.js +32 -0
  392. package/svg-icons/alert/error.js +32 -0
  393. package/svg-icons/alert/warning.js +32 -0
  394. package/svg-icons/av/add-to-queue.js +32 -0
  395. package/svg-icons/av/airplay.js +32 -0
  396. package/svg-icons/av/album.js +32 -0
  397. package/svg-icons/av/art-track.js +32 -0
  398. package/svg-icons/av/av-timer.js +32 -0
  399. package/svg-icons/av/branding-watermark.js +32 -0
  400. package/svg-icons/av/call-to-action.js +32 -0
  401. package/svg-icons/av/closed-caption.js +32 -0
  402. package/svg-icons/av/equalizer.js +32 -0
  403. package/svg-icons/av/explicit.js +32 -0
  404. package/svg-icons/av/fast-forward.js +32 -0
  405. package/svg-icons/av/fast-rewind.js +32 -0
  406. package/svg-icons/av/featured-play-list.js +32 -0
  407. package/svg-icons/av/featured-video.js +32 -0
  408. package/svg-icons/av/fiber-dvr.js +32 -0
  409. package/svg-icons/av/fiber-manual-record.js +32 -0
  410. package/svg-icons/av/fiber-new.js +32 -0
  411. package/svg-icons/av/fiber-pin.js +32 -0
  412. package/svg-icons/av/fiber-smart-record.js +37 -0
  413. package/svg-icons/av/forward-10.js +32 -0
  414. package/svg-icons/av/forward-30.js +32 -0
  415. package/svg-icons/av/forward-5.js +32 -0
  416. package/svg-icons/av/games.js +32 -0
  417. package/svg-icons/av/hd.js +32 -0
  418. package/svg-icons/av/hearing.js +32 -0
  419. package/svg-icons/av/high-quality.js +32 -0
  420. package/svg-icons/av/library-add.js +32 -0
  421. package/svg-icons/av/library-books.js +32 -0
  422. package/svg-icons/av/library-music.js +32 -0
  423. package/svg-icons/av/loop.js +32 -0
  424. package/svg-icons/av/mic-none.js +32 -0
  425. package/svg-icons/av/mic-off.js +32 -0
  426. package/svg-icons/av/mic.js +32 -0
  427. package/svg-icons/av/movie.js +32 -0
  428. package/svg-icons/av/music-video.js +32 -0
  429. package/svg-icons/av/new-releases.js +32 -0
  430. package/svg-icons/av/not-interested.js +32 -0
  431. package/svg-icons/av/note.js +32 -0
  432. package/svg-icons/av/pause-circle-filled.js +32 -0
  433. package/svg-icons/av/pause-circle-outline.js +32 -0
  434. package/svg-icons/av/pause.js +32 -0
  435. package/svg-icons/av/play-arrow.js +32 -0
  436. package/svg-icons/av/play-circle-filled.js +32 -0
  437. package/svg-icons/av/play-circle-outline.js +32 -0
  438. package/svg-icons/av/playlist-add-check.js +32 -0
  439. package/svg-icons/av/playlist-add.js +32 -0
  440. package/svg-icons/av/playlist-play.js +32 -0
  441. package/svg-icons/av/queue-music.js +32 -0
  442. package/svg-icons/av/queue-play-next.js +32 -0
  443. package/svg-icons/av/queue.js +32 -0
  444. package/svg-icons/av/radio.js +32 -0
  445. package/svg-icons/av/recent-actors.js +32 -0
  446. package/svg-icons/av/remove-from-queue.js +32 -0
  447. package/svg-icons/av/repeat-one.js +32 -0
  448. package/svg-icons/av/repeat.js +32 -0
  449. package/svg-icons/av/replay-10.js +32 -0
  450. package/svg-icons/av/replay-30.js +32 -0
  451. package/svg-icons/av/replay-5.js +32 -0
  452. package/svg-icons/av/replay.js +32 -0
  453. package/svg-icons/av/shuffle.js +32 -0
  454. package/svg-icons/av/skip-next.js +32 -0
  455. package/svg-icons/av/skip-previous.js +32 -0
  456. package/svg-icons/av/slow-motion-video.js +32 -0
  457. package/svg-icons/av/snooze.js +32 -0
  458. package/svg-icons/av/sort-by-alpha.js +32 -0
  459. package/svg-icons/av/stop.js +32 -0
  460. package/svg-icons/av/subscriptions.js +32 -0
  461. package/svg-icons/av/subtitles.js +32 -0
  462. package/svg-icons/av/surround-sound.js +32 -0
  463. package/svg-icons/av/video-call.js +32 -0
  464. package/svg-icons/av/video-label.js +32 -0
  465. package/svg-icons/av/video-library.js +32 -0
  466. package/svg-icons/av/videocam-off.js +32 -0
  467. package/svg-icons/av/videocam.js +32 -0
  468. package/svg-icons/av/volume-down.js +32 -0
  469. package/svg-icons/av/volume-mute.js +32 -0
  470. package/svg-icons/av/volume-off.js +32 -0
  471. package/svg-icons/av/volume-up.js +32 -0
  472. package/svg-icons/av/web-asset.js +32 -0
  473. package/svg-icons/av/web.js +32 -0
  474. package/svg-icons/communication/business.js +32 -0
  475. package/svg-icons/communication/call-end.js +32 -0
  476. package/svg-icons/communication/call-made.js +32 -0
  477. package/svg-icons/communication/call-merge.js +32 -0
  478. package/svg-icons/communication/call-missed-outgoing.js +32 -0
  479. package/svg-icons/communication/call-missed.js +32 -0
  480. package/svg-icons/communication/call-received.js +32 -0
  481. package/svg-icons/communication/call-split.js +32 -0
  482. package/svg-icons/communication/call.js +32 -0
  483. package/svg-icons/communication/chat-bubble-outline.js +32 -0
  484. package/svg-icons/communication/chat-bubble.js +32 -0
  485. package/svg-icons/communication/chat.js +32 -0
  486. package/svg-icons/communication/clear-all.js +32 -0
  487. package/svg-icons/communication/comment.js +32 -0
  488. package/svg-icons/communication/contact-mail.js +32 -0
  489. package/svg-icons/communication/contact-phone.js +32 -0
  490. package/svg-icons/communication/contacts.js +32 -0
  491. package/svg-icons/communication/dialer-sip.js +32 -0
  492. package/svg-icons/communication/dialpad.js +32 -0
  493. package/svg-icons/communication/email.js +32 -0
  494. package/svg-icons/communication/forum.js +32 -0
  495. package/svg-icons/communication/import-contacts.js +32 -0
  496. package/svg-icons/communication/import-export.js +32 -0
  497. package/svg-icons/communication/invert-colors-off.js +32 -0
  498. package/svg-icons/communication/live-help.js +32 -0
  499. package/svg-icons/communication/location-off.js +32 -0
  500. package/svg-icons/communication/location-on.js +32 -0
  501. package/svg-icons/communication/mail-outline.js +32 -0
  502. package/svg-icons/communication/message.js +32 -0
  503. package/svg-icons/communication/no-sim.js +32 -0
  504. package/svg-icons/communication/phone.js +32 -0
  505. package/svg-icons/communication/phonelink-erase.js +32 -0
  506. package/svg-icons/communication/phonelink-lock.js +32 -0
  507. package/svg-icons/communication/phonelink-ring.js +32 -0
  508. package/svg-icons/communication/phonelink-setup.js +32 -0
  509. package/svg-icons/communication/portable-wifi-off.js +32 -0
  510. package/svg-icons/communication/present-to-all.js +32 -0
  511. package/svg-icons/communication/ring-volume.js +32 -0
  512. package/svg-icons/communication/rss-feed.js +33 -0
  513. package/svg-icons/communication/screen-share.js +32 -0
  514. package/svg-icons/communication/speaker-phone.js +32 -0
  515. package/svg-icons/communication/stay-current-landscape.js +32 -0
  516. package/svg-icons/communication/stay-current-portrait.js +32 -0
  517. package/svg-icons/communication/stay-primary-landscape.js +32 -0
  518. package/svg-icons/communication/stay-primary-portrait.js +32 -0
  519. package/svg-icons/communication/stop-screen-share.js +32 -0
  520. package/svg-icons/communication/swap-calls.js +32 -0
  521. package/svg-icons/communication/textsms.js +32 -0
  522. package/svg-icons/communication/voicemail.js +32 -0
  523. package/svg-icons/communication/vpn-key.js +32 -0
  524. package/svg-icons/content/add-box.js +32 -0
  525. package/svg-icons/content/add-circle-outline.js +32 -0
  526. package/svg-icons/content/add-circle.js +32 -0
  527. package/svg-icons/content/add.js +32 -0
  528. package/svg-icons/content/archive.js +32 -0
  529. package/svg-icons/content/backspace.js +32 -0
  530. package/svg-icons/content/block.js +32 -0
  531. package/svg-icons/content/clear.js +32 -0
  532. package/svg-icons/content/content-copy.js +32 -0
  533. package/svg-icons/content/content-cut.js +32 -0
  534. package/svg-icons/content/content-paste.js +32 -0
  535. package/svg-icons/content/create.js +32 -0
  536. package/svg-icons/content/delete-sweep.js +32 -0
  537. package/svg-icons/content/drafts.js +32 -0
  538. package/svg-icons/content/filter-list.js +32 -0
  539. package/svg-icons/content/flag.js +32 -0
  540. package/svg-icons/content/font-download.js +32 -0
  541. package/svg-icons/content/forward.js +32 -0
  542. package/svg-icons/content/gesture.js +32 -0
  543. package/svg-icons/content/inbox.js +32 -0
  544. package/svg-icons/content/link.js +32 -0
  545. package/svg-icons/content/low-priority.js +32 -0
  546. package/svg-icons/content/mail.js +32 -0
  547. package/svg-icons/content/markunread.js +32 -0
  548. package/svg-icons/content/move-to-inbox.js +32 -0
  549. package/svg-icons/content/next-week.js +32 -0
  550. package/svg-icons/content/redo.js +32 -0
  551. package/svg-icons/content/remove-circle-outline.js +32 -0
  552. package/svg-icons/content/remove-circle.js +32 -0
  553. package/svg-icons/content/remove.js +32 -0
  554. package/svg-icons/content/reply-all.js +32 -0
  555. package/svg-icons/content/reply.js +32 -0
  556. package/svg-icons/content/report.js +32 -0
  557. package/svg-icons/content/save.js +32 -0
  558. package/svg-icons/content/select-all.js +32 -0
  559. package/svg-icons/content/send.js +32 -0
  560. package/svg-icons/content/sort.js +32 -0
  561. package/svg-icons/content/text-format.js +32 -0
  562. package/svg-icons/content/unarchive.js +32 -0
  563. package/svg-icons/content/undo.js +32 -0
  564. package/svg-icons/content/weekend.js +32 -0
  565. package/svg-icons/device/access-alarm.js +32 -0
  566. package/svg-icons/device/access-alarms.js +32 -0
  567. package/svg-icons/device/access-time.js +32 -0
  568. package/svg-icons/device/add-alarm.js +32 -0
  569. package/svg-icons/device/airplanemode-active.js +33 -0
  570. package/svg-icons/device/airplanemode-inactive.js +32 -0
  571. package/svg-icons/device/battery-20.js +33 -0
  572. package/svg-icons/device/battery-30.js +33 -0
  573. package/svg-icons/device/battery-50.js +33 -0
  574. package/svg-icons/device/battery-60.js +33 -0
  575. package/svg-icons/device/battery-80.js +33 -0
  576. package/svg-icons/device/battery-90.js +33 -0
  577. package/svg-icons/device/battery-alert.js +32 -0
  578. package/svg-icons/device/battery-charging-20.js +33 -0
  579. package/svg-icons/device/battery-charging-30.js +33 -0
  580. package/svg-icons/device/battery-charging-50.js +33 -0
  581. package/svg-icons/device/battery-charging-60.js +33 -0
  582. package/svg-icons/device/battery-charging-80.js +33 -0
  583. package/svg-icons/device/battery-charging-90.js +33 -0
  584. package/svg-icons/device/battery-charging-full.js +32 -0
  585. package/svg-icons/device/battery-full.js +32 -0
  586. package/svg-icons/device/battery-std.js +32 -0
  587. package/svg-icons/device/battery-unknown.js +32 -0
  588. package/svg-icons/device/bluetooth-connected.js +32 -0
  589. package/svg-icons/device/bluetooth-disabled.js +32 -0
  590. package/svg-icons/device/bluetooth-searching.js +32 -0
  591. package/svg-icons/device/bluetooth.js +32 -0
  592. package/svg-icons/device/brightness-auto.js +32 -0
  593. package/svg-icons/device/brightness-high.js +32 -0
  594. package/svg-icons/device/brightness-low.js +32 -0
  595. package/svg-icons/device/brightness-medium.js +32 -0
  596. package/svg-icons/device/data-usage.js +32 -0
  597. package/svg-icons/device/developer-mode.js +32 -0
  598. package/svg-icons/device/devices.js +32 -0
  599. package/svg-icons/device/dvr.js +32 -0
  600. package/svg-icons/device/gps-fixed.js +32 -0
  601. package/svg-icons/device/gps-not-fixed.js +32 -0
  602. package/svg-icons/device/gps-off.js +32 -0
  603. package/svg-icons/device/graphic-eq.js +32 -0
  604. package/svg-icons/device/location-disabled.js +32 -0
  605. package/svg-icons/device/location-searching.js +32 -0
  606. package/svg-icons/device/network-cell.js +33 -0
  607. package/svg-icons/device/network-wifi.js +33 -0
  608. package/svg-icons/device/nfc.js +32 -0
  609. package/svg-icons/device/screen-lock-landscape.js +32 -0
  610. package/svg-icons/device/screen-lock-portrait.js +32 -0
  611. package/svg-icons/device/screen-lock-rotation.js +32 -0
  612. package/svg-icons/device/screen-rotation.js +32 -0
  613. package/svg-icons/device/sd-storage.js +32 -0
  614. package/svg-icons/device/settings-system-daydream.js +32 -0
  615. package/svg-icons/device/signal-cellular-0-bar.js +32 -0
  616. package/svg-icons/device/signal-cellular-1-bar.js +33 -0
  617. package/svg-icons/device/signal-cellular-2-bar.js +33 -0
  618. package/svg-icons/device/signal-cellular-3-bar.js +33 -0
  619. package/svg-icons/device/signal-cellular-4-bar.js +32 -0
  620. package/svg-icons/device/signal-cellular-connected-no-internet-0-bar.js +33 -0
  621. package/svg-icons/device/signal-cellular-connected-no-internet-1-bar.js +33 -0
  622. package/svg-icons/device/signal-cellular-connected-no-internet-2-bar.js +33 -0
  623. package/svg-icons/device/signal-cellular-connected-no-internet-3-bar.js +33 -0
  624. package/svg-icons/device/signal-cellular-connected-no-internet-4-bar.js +32 -0
  625. package/svg-icons/device/signal-cellular-no-sim.js +32 -0
  626. package/svg-icons/device/signal-cellular-null.js +32 -0
  627. package/svg-icons/device/signal-cellular-off.js +32 -0
  628. package/svg-icons/device/signal-wifi-0-bar.js +32 -0
  629. package/svg-icons/device/signal-wifi-1-bar-lock.js +34 -0
  630. package/svg-icons/device/signal-wifi-1-bar.js +33 -0
  631. package/svg-icons/device/signal-wifi-2-bar-lock.js +34 -0
  632. package/svg-icons/device/signal-wifi-2-bar.js +33 -0
  633. package/svg-icons/device/signal-wifi-3-bar-lock.js +33 -0
  634. package/svg-icons/device/signal-wifi-3-bar.js +33 -0
  635. package/svg-icons/device/signal-wifi-4-bar-lock.js +32 -0
  636. package/svg-icons/device/signal-wifi-4-bar.js +32 -0
  637. package/svg-icons/device/signal-wifi-off.js +32 -0
  638. package/svg-icons/device/storage.js +32 -0
  639. package/svg-icons/device/usb.js +32 -0
  640. package/svg-icons/device/wallpaper.js +32 -0
  641. package/svg-icons/device/widgets.js +32 -0
  642. package/svg-icons/device/wifi-lock.js +32 -0
  643. package/svg-icons/device/wifi-tethering.js +32 -0
  644. package/svg-icons/editor/attach-file.js +32 -0
  645. package/svg-icons/editor/attach-money.js +32 -0
  646. package/svg-icons/editor/border-all.js +32 -0
  647. package/svg-icons/editor/border-bottom.js +32 -0
  648. package/svg-icons/editor/border-clear.js +32 -0
  649. package/svg-icons/editor/border-color.js +33 -0
  650. package/svg-icons/editor/border-horizontal.js +32 -0
  651. package/svg-icons/editor/border-inner.js +32 -0
  652. package/svg-icons/editor/border-left.js +32 -0
  653. package/svg-icons/editor/border-outer.js +32 -0
  654. package/svg-icons/editor/border-right.js +32 -0
  655. package/svg-icons/editor/border-style.js +32 -0
  656. package/svg-icons/editor/border-top.js +32 -0
  657. package/svg-icons/editor/border-vertical.js +32 -0
  658. package/svg-icons/editor/bubble-chart.js +34 -0
  659. package/svg-icons/editor/drag-handle.js +32 -0
  660. package/svg-icons/editor/format-align-center.js +32 -0
  661. package/svg-icons/editor/format-align-justify.js +32 -0
  662. package/svg-icons/editor/format-align-left.js +32 -0
  663. package/svg-icons/editor/format-align-right.js +32 -0
  664. package/svg-icons/editor/format-bold.js +32 -0
  665. package/svg-icons/editor/format-clear.js +32 -0
  666. package/svg-icons/editor/format-color-fill.js +33 -0
  667. package/svg-icons/editor/format-color-reset.js +32 -0
  668. package/svg-icons/editor/format-color-text.js +33 -0
  669. package/svg-icons/editor/format-indent-decrease.js +32 -0
  670. package/svg-icons/editor/format-indent-increase.js +32 -0
  671. package/svg-icons/editor/format-italic.js +32 -0
  672. package/svg-icons/editor/format-line-spacing.js +32 -0
  673. package/svg-icons/editor/format-list-bulleted.js +32 -0
  674. package/svg-icons/editor/format-list-numbered.js +32 -0
  675. package/svg-icons/editor/format-paint.js +32 -0
  676. package/svg-icons/editor/format-quote.js +32 -0
  677. package/svg-icons/editor/format-shapes.js +32 -0
  678. package/svg-icons/editor/format-size.js +32 -0
  679. package/svg-icons/editor/format-strikethrough.js +32 -0
  680. package/svg-icons/editor/format-textdirection-l-to-r.js +32 -0
  681. package/svg-icons/editor/format-textdirection-r-to-l.js +32 -0
  682. package/svg-icons/editor/format-underlined.js +32 -0
  683. package/svg-icons/editor/functions.js +32 -0
  684. package/svg-icons/editor/highlight.js +32 -0
  685. package/svg-icons/editor/insert-chart.js +32 -0
  686. package/svg-icons/editor/insert-comment.js +32 -0
  687. package/svg-icons/editor/insert-drive-file.js +32 -0
  688. package/svg-icons/editor/insert-emoticon.js +32 -0
  689. package/svg-icons/editor/insert-invitation.js +32 -0
  690. package/svg-icons/editor/insert-link.js +32 -0
  691. package/svg-icons/editor/insert-photo.js +32 -0
  692. package/svg-icons/editor/linear-scale.js +32 -0
  693. package/svg-icons/editor/merge-type.js +32 -0
  694. package/svg-icons/editor/mode-comment.js +32 -0
  695. package/svg-icons/editor/mode-edit.js +32 -0
  696. package/svg-icons/editor/monetization-on.js +32 -0
  697. package/svg-icons/editor/money-off.js +32 -0
  698. package/svg-icons/editor/multiline-chart.js +32 -0
  699. package/svg-icons/editor/pie-chart-outlined.js +32 -0
  700. package/svg-icons/editor/pie-chart.js +32 -0
  701. package/svg-icons/editor/publish.js +32 -0
  702. package/svg-icons/editor/short-text.js +32 -0
  703. package/svg-icons/editor/show-chart.js +32 -0
  704. package/svg-icons/editor/space-bar.js +32 -0
  705. package/svg-icons/editor/strikethrough-s.js +32 -0
  706. package/svg-icons/editor/text-fields.js +32 -0
  707. package/svg-icons/editor/title.js +32 -0
  708. package/svg-icons/editor/vertical-align-bottom.js +32 -0
  709. package/svg-icons/editor/vertical-align-center.js +32 -0
  710. package/svg-icons/editor/vertical-align-top.js +32 -0
  711. package/svg-icons/editor/wrap-text.js +32 -0
  712. package/svg-icons/file/attachment.js +32 -0
  713. package/svg-icons/file/cloud-circle.js +32 -0
  714. package/svg-icons/file/cloud-done.js +32 -0
  715. package/svg-icons/file/cloud-download.js +32 -0
  716. package/svg-icons/file/cloud-off.js +32 -0
  717. package/svg-icons/file/cloud-queue.js +32 -0
  718. package/svg-icons/file/cloud-upload.js +32 -0
  719. package/svg-icons/file/cloud.js +32 -0
  720. package/svg-icons/file/create-new-folder.js +32 -0
  721. package/svg-icons/file/file-download.js +32 -0
  722. package/svg-icons/file/file-upload.js +32 -0
  723. package/svg-icons/file/folder-open.js +32 -0
  724. package/svg-icons/file/folder-shared.js +32 -0
  725. package/svg-icons/file/folder.js +32 -0
  726. package/svg-icons/hardware/cast-connected.js +32 -0
  727. package/svg-icons/hardware/cast.js +32 -0
  728. package/svg-icons/hardware/computer.js +32 -0
  729. package/svg-icons/hardware/desktop-mac.js +32 -0
  730. package/svg-icons/hardware/desktop-windows.js +32 -0
  731. package/svg-icons/hardware/developer-board.js +32 -0
  732. package/svg-icons/hardware/device-hub.js +32 -0
  733. package/svg-icons/hardware/devices-other.js +32 -0
  734. package/svg-icons/hardware/dock.js +32 -0
  735. package/svg-icons/hardware/gamepad.js +32 -0
  736. package/svg-icons/hardware/headset-mic.js +32 -0
  737. package/svg-icons/hardware/headset.js +32 -0
  738. package/svg-icons/hardware/keyboard-arrow-down.js +32 -0
  739. package/svg-icons/hardware/keyboard-arrow-left.js +32 -0
  740. package/svg-icons/hardware/keyboard-arrow-right.js +32 -0
  741. package/svg-icons/hardware/keyboard-arrow-up.js +32 -0
  742. package/svg-icons/hardware/keyboard-backspace.js +32 -0
  743. package/svg-icons/hardware/keyboard-capslock.js +32 -0
  744. package/svg-icons/hardware/keyboard-hide.js +32 -0
  745. package/svg-icons/hardware/keyboard-return.js +32 -0
  746. package/svg-icons/hardware/keyboard-tab.js +32 -0
  747. package/svg-icons/hardware/keyboard-voice.js +32 -0
  748. package/svg-icons/hardware/keyboard.js +32 -0
  749. package/svg-icons/hardware/laptop-chromebook.js +32 -0
  750. package/svg-icons/hardware/laptop-mac.js +32 -0
  751. package/svg-icons/hardware/laptop-windows.js +32 -0
  752. package/svg-icons/hardware/laptop.js +32 -0
  753. package/svg-icons/hardware/memory.js +32 -0
  754. package/svg-icons/hardware/mouse.js +32 -0
  755. package/svg-icons/hardware/phone-android.js +32 -0
  756. package/svg-icons/hardware/phone-iphone.js +32 -0
  757. package/svg-icons/hardware/phonelink-off.js +32 -0
  758. package/svg-icons/hardware/phonelink.js +32 -0
  759. package/svg-icons/hardware/power-input.js +32 -0
  760. package/svg-icons/hardware/router.js +32 -0
  761. package/svg-icons/hardware/scanner.js +32 -0
  762. package/svg-icons/hardware/security.js +32 -0
  763. package/svg-icons/hardware/sim-card.js +32 -0
  764. package/svg-icons/hardware/smartphone.js +32 -0
  765. package/svg-icons/hardware/speaker-group.js +34 -0
  766. package/svg-icons/hardware/speaker.js +32 -0
  767. package/svg-icons/hardware/tablet-android.js +32 -0
  768. package/svg-icons/hardware/tablet-mac.js +32 -0
  769. package/svg-icons/hardware/tablet.js +32 -0
  770. package/svg-icons/hardware/toys.js +32 -0
  771. package/svg-icons/hardware/tv.js +32 -0
  772. package/svg-icons/hardware/videogame-asset.js +32 -0
  773. package/svg-icons/hardware/watch.js +32 -0
  774. package/svg-icons/image/add-a-photo.js +32 -0
  775. package/svg-icons/image/add-to-photos.js +32 -0
  776. package/svg-icons/image/adjust.js +32 -0
  777. package/svg-icons/image/assistant-photo.js +32 -0
  778. package/svg-icons/image/assistant.js +32 -0
  779. package/svg-icons/image/audiotrack.js +32 -0
  780. package/svg-icons/image/blur-circular.js +32 -0
  781. package/svg-icons/image/blur-linear.js +32 -0
  782. package/svg-icons/image/blur-off.js +32 -0
  783. package/svg-icons/image/blur-on.js +32 -0
  784. package/svg-icons/image/brightness-1.js +32 -0
  785. package/svg-icons/image/brightness-2.js +32 -0
  786. package/svg-icons/image/brightness-3.js +32 -0
  787. package/svg-icons/image/brightness-4.js +32 -0
  788. package/svg-icons/image/brightness-5.js +32 -0
  789. package/svg-icons/image/brightness-6.js +32 -0
  790. package/svg-icons/image/brightness-7.js +32 -0
  791. package/svg-icons/image/broken-image.js +32 -0
  792. package/svg-icons/image/brush.js +32 -0
  793. package/svg-icons/image/burst-mode.js +32 -0
  794. package/svg-icons/image/camera-alt.js +33 -0
  795. package/svg-icons/image/camera-front.js +32 -0
  796. package/svg-icons/image/camera-rear.js +32 -0
  797. package/svg-icons/image/camera-roll.js +32 -0
  798. package/svg-icons/image/camera.js +32 -0
  799. package/svg-icons/image/center-focus-strong.js +32 -0
  800. package/svg-icons/image/center-focus-weak.js +32 -0
  801. package/svg-icons/image/collections-bookmark.js +32 -0
  802. package/svg-icons/image/collections.js +32 -0
  803. package/svg-icons/image/color-lens.js +32 -0
  804. package/svg-icons/image/colorize.js +32 -0
  805. package/svg-icons/image/compare.js +32 -0
  806. package/svg-icons/image/control-point-duplicate.js +32 -0
  807. package/svg-icons/image/control-point.js +32 -0
  808. package/svg-icons/image/crop-16-9.js +32 -0
  809. package/svg-icons/image/crop-3-2.js +32 -0
  810. package/svg-icons/image/crop-5-4.js +32 -0
  811. package/svg-icons/image/crop-7-5.js +32 -0
  812. package/svg-icons/image/crop-din.js +32 -0
  813. package/svg-icons/image/crop-free.js +32 -0
  814. package/svg-icons/image/crop-landscape.js +32 -0
  815. package/svg-icons/image/crop-original.js +32 -0
  816. package/svg-icons/image/crop-portrait.js +32 -0
  817. package/svg-icons/image/crop-rotate.js +32 -0
  818. package/svg-icons/image/crop-square.js +32 -0
  819. package/svg-icons/image/crop.js +32 -0
  820. package/svg-icons/image/dehaze.js +32 -0
  821. package/svg-icons/image/details.js +32 -0
  822. package/svg-icons/image/edit.js +32 -0
  823. package/svg-icons/image/exposure-neg-1.js +32 -0
  824. package/svg-icons/image/exposure-neg-2.js +32 -0
  825. package/svg-icons/image/exposure-plus-1.js +32 -0
  826. package/svg-icons/image/exposure-plus-2.js +32 -0
  827. package/svg-icons/image/exposure-zero.js +32 -0
  828. package/svg-icons/image/exposure.js +32 -0
  829. package/svg-icons/image/filter-1.js +32 -0
  830. package/svg-icons/image/filter-2.js +32 -0
  831. package/svg-icons/image/filter-3.js +32 -0
  832. package/svg-icons/image/filter-4.js +32 -0
  833. package/svg-icons/image/filter-5.js +32 -0
  834. package/svg-icons/image/filter-6.js +32 -0
  835. package/svg-icons/image/filter-7.js +32 -0
  836. package/svg-icons/image/filter-8.js +32 -0
  837. package/svg-icons/image/filter-9-plus.js +32 -0
  838. package/svg-icons/image/filter-9.js +32 -0
  839. package/svg-icons/image/filter-b-and-w.js +32 -0
  840. package/svg-icons/image/filter-center-focus.js +32 -0
  841. package/svg-icons/image/filter-drama.js +32 -0
  842. package/svg-icons/image/filter-frames.js +32 -0
  843. package/svg-icons/image/filter-hdr.js +32 -0
  844. package/svg-icons/image/filter-none.js +32 -0
  845. package/svg-icons/image/filter-tilt-shift.js +32 -0
  846. package/svg-icons/image/filter-vintage.js +32 -0
  847. package/svg-icons/image/filter.js +32 -0
  848. package/svg-icons/image/flare.js +32 -0
  849. package/svg-icons/image/flash-auto.js +32 -0
  850. package/svg-icons/image/flash-off.js +32 -0
  851. package/svg-icons/image/flash-on.js +32 -0
  852. package/svg-icons/image/flip.js +32 -0
  853. package/svg-icons/image/gradient.js +32 -0
  854. package/svg-icons/image/grain.js +32 -0
  855. package/svg-icons/image/grid-off.js +32 -0
  856. package/svg-icons/image/grid-on.js +32 -0
  857. package/svg-icons/image/hdr-off.js +32 -0
  858. package/svg-icons/image/hdr-on.js +32 -0
  859. package/svg-icons/image/hdr-strong.js +32 -0
  860. package/svg-icons/image/hdr-weak.js +32 -0
  861. package/svg-icons/image/healing.js +32 -0
  862. package/svg-icons/image/image-aspect-ratio.js +32 -0
  863. package/svg-icons/image/image.js +32 -0
  864. package/svg-icons/image/iso.js +32 -0
  865. package/svg-icons/image/landscape.js +32 -0
  866. package/svg-icons/image/leak-add.js +32 -0
  867. package/svg-icons/image/leak-remove.js +32 -0
  868. package/svg-icons/image/lens.js +32 -0
  869. package/svg-icons/image/linked-camera.js +34 -0
  870. package/svg-icons/image/looks-3.js +32 -0
  871. package/svg-icons/image/looks-4.js +32 -0
  872. package/svg-icons/image/looks-5.js +32 -0
  873. package/svg-icons/image/looks-6.js +32 -0
  874. package/svg-icons/image/looks-one.js +32 -0
  875. package/svg-icons/image/looks-two.js +32 -0
  876. package/svg-icons/image/looks.js +32 -0
  877. package/svg-icons/image/loupe.js +32 -0
  878. package/svg-icons/image/monochrome-photos.js +32 -0
  879. package/svg-icons/image/movie-creation.js +32 -0
  880. package/svg-icons/image/movie-filter.js +32 -0
  881. package/svg-icons/image/music-note.js +32 -0
  882. package/svg-icons/image/nature-people.js +32 -0
  883. package/svg-icons/image/nature.js +32 -0
  884. package/svg-icons/image/navigate-before.js +32 -0
  885. package/svg-icons/image/navigate-next.js +32 -0
  886. package/svg-icons/image/palette.js +32 -0
  887. package/svg-icons/image/panorama-fish-eye.js +32 -0
  888. package/svg-icons/image/panorama-horizontal.js +32 -0
  889. package/svg-icons/image/panorama-vertical.js +32 -0
  890. package/svg-icons/image/panorama-wide-angle.js +32 -0
  891. package/svg-icons/image/panorama.js +32 -0
  892. package/svg-icons/image/photo-album.js +32 -0
  893. package/svg-icons/image/photo-camera.js +33 -0
  894. package/svg-icons/image/photo-filter.js +32 -0
  895. package/svg-icons/image/photo-library.js +32 -0
  896. package/svg-icons/image/photo-size-select-actual.js +32 -0
  897. package/svg-icons/image/photo-size-select-large.js +32 -0
  898. package/svg-icons/image/photo-size-select-small.js +32 -0
  899. package/svg-icons/image/photo.js +32 -0
  900. package/svg-icons/image/picture-as-pdf.js +32 -0
  901. package/svg-icons/image/portrait.js +32 -0
  902. package/svg-icons/image/remove-red-eye.js +32 -0
  903. package/svg-icons/image/rotate-90-degrees-ccw.js +32 -0
  904. package/svg-icons/image/rotate-left.js +32 -0
  905. package/svg-icons/image/rotate-right.js +32 -0
  906. package/svg-icons/image/slideshow.js +32 -0
  907. package/svg-icons/image/straighten.js +32 -0
  908. package/svg-icons/image/style.js +32 -0
  909. package/svg-icons/image/switch-camera.js +32 -0
  910. package/svg-icons/image/switch-video.js +32 -0
  911. package/svg-icons/image/tag-faces.js +32 -0
  912. package/svg-icons/image/texture.js +32 -0
  913. package/svg-icons/image/timelapse.js +32 -0
  914. package/svg-icons/image/timer-10.js +32 -0
  915. package/svg-icons/image/timer-3.js +32 -0
  916. package/svg-icons/image/timer-off.js +32 -0
  917. package/svg-icons/image/timer.js +32 -0
  918. package/svg-icons/image/tonality.js +32 -0
  919. package/svg-icons/image/transform.js +32 -0
  920. package/svg-icons/image/tune.js +32 -0
  921. package/svg-icons/image/view-comfy.js +32 -0
  922. package/svg-icons/image/view-compact.js +32 -0
  923. package/svg-icons/image/vignette.js +32 -0
  924. package/svg-icons/image/wb-auto.js +32 -0
  925. package/svg-icons/image/wb-cloudy.js +32 -0
  926. package/svg-icons/image/wb-incandescent.js +32 -0
  927. package/svg-icons/image/wb-iridescent.js +32 -0
  928. package/svg-icons/image/wb-sunny.js +32 -0
  929. package/svg-icons/index.es.js +1922 -0
  930. package/svg-icons/index.js +4823 -0
  931. package/svg-icons/maps/add-location.js +32 -0
  932. package/svg-icons/maps/beenhere.js +32 -0
  933. package/svg-icons/maps/directions-bike.js +32 -0
  934. package/svg-icons/maps/directions-boat.js +32 -0
  935. package/svg-icons/maps/directions-bus.js +32 -0
  936. package/svg-icons/maps/directions-car.js +32 -0
  937. package/svg-icons/maps/directions-railway.js +32 -0
  938. package/svg-icons/maps/directions-run.js +32 -0
  939. package/svg-icons/maps/directions-subway.js +32 -0
  940. package/svg-icons/maps/directions-transit.js +32 -0
  941. package/svg-icons/maps/directions-walk.js +32 -0
  942. package/svg-icons/maps/directions.js +32 -0
  943. package/svg-icons/maps/edit-location.js +32 -0
  944. package/svg-icons/maps/ev-station.js +32 -0
  945. package/svg-icons/maps/flight.js +33 -0
  946. package/svg-icons/maps/hotel.js +32 -0
  947. package/svg-icons/maps/layers-clear.js +32 -0
  948. package/svg-icons/maps/layers.js +32 -0
  949. package/svg-icons/maps/local-activity.js +32 -0
  950. package/svg-icons/maps/local-airport.js +32 -0
  951. package/svg-icons/maps/local-atm.js +32 -0
  952. package/svg-icons/maps/local-bar.js +32 -0
  953. package/svg-icons/maps/local-cafe.js +32 -0
  954. package/svg-icons/maps/local-car-wash.js +32 -0
  955. package/svg-icons/maps/local-convenience-store.js +32 -0
  956. package/svg-icons/maps/local-dining.js +32 -0
  957. package/svg-icons/maps/local-drink.js +32 -0
  958. package/svg-icons/maps/local-florist.js +32 -0
  959. package/svg-icons/maps/local-gas-station.js +32 -0
  960. package/svg-icons/maps/local-grocery-store.js +32 -0
  961. package/svg-icons/maps/local-hospital.js +32 -0
  962. package/svg-icons/maps/local-hotel.js +32 -0
  963. package/svg-icons/maps/local-laundry-service.js +32 -0
  964. package/svg-icons/maps/local-library.js +32 -0
  965. package/svg-icons/maps/local-mall.js +32 -0
  966. package/svg-icons/maps/local-movies.js +32 -0
  967. package/svg-icons/maps/local-offer.js +32 -0
  968. package/svg-icons/maps/local-parking.js +32 -0
  969. package/svg-icons/maps/local-pharmacy.js +32 -0
  970. package/svg-icons/maps/local-phone.js +32 -0
  971. package/svg-icons/maps/local-pizza.js +32 -0
  972. package/svg-icons/maps/local-play.js +32 -0
  973. package/svg-icons/maps/local-post-office.js +32 -0
  974. package/svg-icons/maps/local-printshop.js +32 -0
  975. package/svg-icons/maps/local-see.js +33 -0
  976. package/svg-icons/maps/local-shipping.js +32 -0
  977. package/svg-icons/maps/local-taxi.js +32 -0
  978. package/svg-icons/maps/map.js +32 -0
  979. package/svg-icons/maps/my-location.js +32 -0
  980. package/svg-icons/maps/navigation.js +32 -0
  981. package/svg-icons/maps/near-me.js +32 -0
  982. package/svg-icons/maps/person-pin-circle.js +32 -0
  983. package/svg-icons/maps/person-pin.js +32 -0
  984. package/svg-icons/maps/pin-drop.js +32 -0
  985. package/svg-icons/maps/place.js +32 -0
  986. package/svg-icons/maps/rate-review.js +32 -0
  987. package/svg-icons/maps/restaurant-menu.js +32 -0
  988. package/svg-icons/maps/restaurant.js +32 -0
  989. package/svg-icons/maps/satellite.js +32 -0
  990. package/svg-icons/maps/store-mall-directory.js +32 -0
  991. package/svg-icons/maps/streetview.js +34 -0
  992. package/svg-icons/maps/subway.js +34 -0
  993. package/svg-icons/maps/terrain.js +32 -0
  994. package/svg-icons/maps/traffic.js +32 -0
  995. package/svg-icons/maps/train.js +32 -0
  996. package/svg-icons/maps/tram.js +32 -0
  997. package/svg-icons/maps/transfer-within-a-station.js +32 -0
  998. package/svg-icons/maps/zoom-out-map.js +32 -0
  999. package/svg-icons/navigation/apps.js +32 -0
  1000. package/svg-icons/navigation/arrow-back.js +32 -0
  1001. package/svg-icons/navigation/arrow-downward.js +32 -0
  1002. package/svg-icons/navigation/arrow-drop-down-circle.js +32 -0
  1003. package/svg-icons/navigation/arrow-drop-down.js +32 -0
  1004. package/svg-icons/navigation/arrow-drop-up.js +32 -0
  1005. package/svg-icons/navigation/arrow-forward.js +32 -0
  1006. package/svg-icons/navigation/arrow-upward.js +32 -0
  1007. package/svg-icons/navigation/cancel.js +32 -0
  1008. package/svg-icons/navigation/check.js +32 -0
  1009. package/svg-icons/navigation/chevron-left.js +32 -0
  1010. package/svg-icons/navigation/chevron-right.js +32 -0
  1011. package/svg-icons/navigation/close.js +32 -0
  1012. package/svg-icons/navigation/expand-less.js +32 -0
  1013. package/svg-icons/navigation/expand-more.js +32 -0
  1014. package/svg-icons/navigation/first-page.js +32 -0
  1015. package/svg-icons/navigation/fullscreen-exit.js +32 -0
  1016. package/svg-icons/navigation/fullscreen.js +32 -0
  1017. package/svg-icons/navigation/last-page.js +32 -0
  1018. package/svg-icons/navigation/menu.js +32 -0
  1019. package/svg-icons/navigation/more-horiz.js +32 -0
  1020. package/svg-icons/navigation/more-vert.js +32 -0
  1021. package/svg-icons/navigation/refresh.js +32 -0
  1022. package/svg-icons/navigation/subdirectory-arrow-left.js +32 -0
  1023. package/svg-icons/navigation/subdirectory-arrow-right.js +32 -0
  1024. package/svg-icons/navigation/unfold-less.js +32 -0
  1025. package/svg-icons/navigation/unfold-more.js +32 -0
  1026. package/svg-icons/navigation-arrow-drop-right.js +33 -0
  1027. package/svg-icons/notification/adb.js +32 -0
  1028. package/svg-icons/notification/airline-seat-flat-angled.js +32 -0
  1029. package/svg-icons/notification/airline-seat-flat.js +32 -0
  1030. package/svg-icons/notification/airline-seat-individual-suite.js +32 -0
  1031. package/svg-icons/notification/airline-seat-legroom-extra.js +32 -0
  1032. package/svg-icons/notification/airline-seat-legroom-normal.js +32 -0
  1033. package/svg-icons/notification/airline-seat-legroom-reduced.js +32 -0
  1034. package/svg-icons/notification/airline-seat-recline-extra.js +32 -0
  1035. package/svg-icons/notification/airline-seat-recline-normal.js +32 -0
  1036. package/svg-icons/notification/bluetooth-audio.js +32 -0
  1037. package/svg-icons/notification/confirmation-number.js +32 -0
  1038. package/svg-icons/notification/disc-full.js +32 -0
  1039. package/svg-icons/notification/do-not-disturb-alt.js +32 -0
  1040. package/svg-icons/notification/do-not-disturb-off.js +32 -0
  1041. package/svg-icons/notification/do-not-disturb-on.js +32 -0
  1042. package/svg-icons/notification/do-not-disturb.js +32 -0
  1043. package/svg-icons/notification/drive-eta.js +32 -0
  1044. package/svg-icons/notification/enhanced-encryption.js +32 -0
  1045. package/svg-icons/notification/event-available.js +32 -0
  1046. package/svg-icons/notification/event-busy.js +32 -0
  1047. package/svg-icons/notification/event-note.js +32 -0
  1048. package/svg-icons/notification/folder-special.js +32 -0
  1049. package/svg-icons/notification/live-tv.js +32 -0
  1050. package/svg-icons/notification/mms.js +32 -0
  1051. package/svg-icons/notification/more.js +32 -0
  1052. package/svg-icons/notification/network-check.js +32 -0
  1053. package/svg-icons/notification/network-locked.js +32 -0
  1054. package/svg-icons/notification/no-encryption.js +32 -0
  1055. package/svg-icons/notification/ondemand-video.js +32 -0
  1056. package/svg-icons/notification/personal-video.js +32 -0
  1057. package/svg-icons/notification/phone-bluetooth-speaker.js +32 -0
  1058. package/svg-icons/notification/phone-forwarded.js +32 -0
  1059. package/svg-icons/notification/phone-in-talk.js +32 -0
  1060. package/svg-icons/notification/phone-locked.js +32 -0
  1061. package/svg-icons/notification/phone-missed.js +32 -0
  1062. package/svg-icons/notification/phone-paused.js +32 -0
  1063. package/svg-icons/notification/power.js +32 -0
  1064. package/svg-icons/notification/priority-high.js +33 -0
  1065. package/svg-icons/notification/rv-hookup.js +32 -0
  1066. package/svg-icons/notification/sd-card.js +32 -0
  1067. package/svg-icons/notification/sim-card-alert.js +32 -0
  1068. package/svg-icons/notification/sms-failed.js +32 -0
  1069. package/svg-icons/notification/sms.js +32 -0
  1070. package/svg-icons/notification/sync-disabled.js +32 -0
  1071. package/svg-icons/notification/sync-problem.js +32 -0
  1072. package/svg-icons/notification/sync.js +32 -0
  1073. package/svg-icons/notification/system-update.js +32 -0
  1074. package/svg-icons/notification/tap-and-play.js +32 -0
  1075. package/svg-icons/notification/time-to-leave.js +32 -0
  1076. package/svg-icons/notification/vibration.js +32 -0
  1077. package/svg-icons/notification/voice-chat.js +32 -0
  1078. package/svg-icons/notification/vpn-lock.js +32 -0
  1079. package/svg-icons/notification/wc.js +32 -0
  1080. package/svg-icons/notification/wifi.js +32 -0
  1081. package/svg-icons/places/ac-unit.js +32 -0
  1082. package/svg-icons/places/airport-shuttle.js +32 -0
  1083. package/svg-icons/places/all-inclusive.js +32 -0
  1084. package/svg-icons/places/beach-access.js +32 -0
  1085. package/svg-icons/places/business-center.js +32 -0
  1086. package/svg-icons/places/casino.js +32 -0
  1087. package/svg-icons/places/child-care.js +34 -0
  1088. package/svg-icons/places/child-friendly.js +32 -0
  1089. package/svg-icons/places/fitness-center.js +32 -0
  1090. package/svg-icons/places/free-breakfast.js +32 -0
  1091. package/svg-icons/places/golf-course.js +33 -0
  1092. package/svg-icons/places/hot-tub.js +33 -0
  1093. package/svg-icons/places/kitchen.js +32 -0
  1094. package/svg-icons/places/pool.js +33 -0
  1095. package/svg-icons/places/room-service.js +32 -0
  1096. package/svg-icons/places/rv-hookup.js +32 -0
  1097. package/svg-icons/places/smoke-free.js +32 -0
  1098. package/svg-icons/places/smoking-rooms.js +32 -0
  1099. package/svg-icons/places/spa.js +33 -0
  1100. package/svg-icons/social/cake.js +32 -0
  1101. package/svg-icons/social/domain.js +32 -0
  1102. package/svg-icons/social/group-add.js +32 -0
  1103. package/svg-icons/social/group.js +32 -0
  1104. package/svg-icons/social/location-city.js +32 -0
  1105. package/svg-icons/social/mood-bad.js +32 -0
  1106. package/svg-icons/social/mood.js +32 -0
  1107. package/svg-icons/social/notifications-active.js +32 -0
  1108. package/svg-icons/social/notifications-none.js +32 -0
  1109. package/svg-icons/social/notifications-off.js +32 -0
  1110. package/svg-icons/social/notifications-paused.js +32 -0
  1111. package/svg-icons/social/notifications.js +32 -0
  1112. package/svg-icons/social/pages.js +32 -0
  1113. package/svg-icons/social/party-mode.js +32 -0
  1114. package/svg-icons/social/people-outline.js +32 -0
  1115. package/svg-icons/social/people.js +32 -0
  1116. package/svg-icons/social/person-add.js +32 -0
  1117. package/svg-icons/social/person-outline.js +32 -0
  1118. package/svg-icons/social/person.js +32 -0
  1119. package/svg-icons/social/plus-one.js +32 -0
  1120. package/svg-icons/social/poll.js +32 -0
  1121. package/svg-icons/social/public.js +32 -0
  1122. package/svg-icons/social/school.js +32 -0
  1123. package/svg-icons/social/sentiment-dissatisfied.js +34 -0
  1124. package/svg-icons/social/sentiment-neutral.js +35 -0
  1125. package/svg-icons/social/sentiment-satisfied.js +34 -0
  1126. package/svg-icons/social/sentiment-very-dissatisfied.js +32 -0
  1127. package/svg-icons/social/sentiment-very-satisfied.js +32 -0
  1128. package/svg-icons/social/share.js +32 -0
  1129. package/svg-icons/social/whatshot.js +32 -0
  1130. package/svg-icons/toggle/check-box-outline-blank.js +32 -0
  1131. package/svg-icons/toggle/check-box.js +32 -0
  1132. package/svg-icons/toggle/indeterminate-check-box.js +32 -0
  1133. package/svg-icons/toggle/radio-button-checked.js +32 -0
  1134. package/svg-icons/toggle/radio-button-unchecked.js +32 -0
  1135. package/svg-icons/toggle/star-border.js +32 -0
  1136. package/svg-icons/toggle/star-half.js +32 -0
  1137. package/svg-icons/toggle/star.js +32 -0
  1138. package/utils/autoPrefix.js +10 -0
  1139. package/utils/autoprefixer.js +79 -0
  1140. package/utils/autoprefixerDynamic.js +40 -0
  1141. package/utils/autoprefixerStatic.js +40 -0
  1142. package/utils/callOnce.js +26 -0
  1143. package/utils/childUtils.js +26 -0
  1144. package/utils/colorManipulator.js +242 -0
  1145. package/utils/deprecatedExport.js +22 -0
  1146. package/utils/deprecatedPropType.js +38 -0
  1147. package/utils/dom.js +24 -0
  1148. package/utils/events.js +39 -0
  1149. package/utils/propTypes.js +35 -0
  1150. package/utils/rtl.js +89 -0
  1151. package/utils/withWidth.js +132 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2780 @@
1
+ ## HEAD
2
+
3
+
4
+ ###### _Dec 3, 2017_
5
+
6
+ As usual, we are focusing on bug fixes but this time, we introduce an exceptional breaking change,
7
+ consistent with the removal of `onTouchTap`for `onClick` in v0.19.0 (#7624).
8
+
9
+ Big thanks to the 10 contributors who made this release possible.
10
+
11
+ ### Breaking Change
12
+
13
+ - [core] Remove `TouchTap` in favor of `Click` throughout library and docs (#9058) @m2mathew
14
+
15
+ You need to globally replace any references to `TouchTap` property callbacks with `Click`.
16
+
17
+ #### Component Fixes / Enhancements
18
+
19
+ - [AutoComplete] Fix undef dataSource.value (#8864) @michalmikolajczyk
20
+ - [BottomNavigation] Allow `null` child (#8925) @MrSaints
21
+ - [Menu] Use filtered children on setFocusIndexStartsWith (#9316) @alancasagrande
22
+ - [Menu] Fix condition where item is removed from menu before it is used in focus calculation. (#8769) @zentron
23
+ - [Slider] Fix Updating min and max props (#9261) @thomaskempel
24
+ - [Slider] Fix slider being disabled onKeydown error (#9001) @henryj
25
+ - [Stepper] Allow invalid children (#8634) @svengau
26
+
27
+ #### Docs
28
+
29
+ - [docs] Add FlyWeekend in showcase (#8812) @tjl9
30
+ - [docs] Add a web app to the showcase (#8767) @maheshj567
31
+ - [docs] Update Home h2 text to match v1 (#9060) @m2mathew
32
+
33
+ #### Core
34
+
35
+ - [npm] Upgrade 'inline-style-prefixer' to 3.0.8 (#9320) @m2mathew
36
+ - [RenderToLayer] Remove touchstart events, to prevent double call to onRequestClose (#9118) @m2mathew
37
+
38
+
39
+ ## 0.19.4
40
+ ###### _Oct 8, 2017_
41
+
42
+ This release improves the compatibility with React@16.
43
+ Big thanks to the 2 contributors who made this release possible.
44
+
45
+ #### Component Fixes / Enhancements
46
+
47
+ - [TextField] Apply valueLink only if defined via props in EnhancedTextarea (#8530) @santialbo
48
+
49
+ #### Docs
50
+
51
+ - [docs] Small fixes (#8594) @oliviertassinari
52
+
53
+ #### Core
54
+
55
+ - [core] Upgrade dependencies (#8578) @oliviertassinari
56
+
57
+
58
+ ## 0.19.3
59
+ ###### _Oct 1, 2017_
60
+
61
+ Big thanks to the 4 contributors who made this release possible.
62
+
63
+ ##### Component Fixes / Enhancements
64
+
65
+ - [AutoComplete] Fix important regression (#8306) @oliviertassinari
66
+ - [Button] Move zIndex stacking context from enhanced button to ripple group (#8281) @jgreubel
67
+ - [Tooltip] Allow customize tooltip opacity (#8444) @jgreubel
68
+ - [Switch] Do not bind the touch handlers if we are not showing ripple effects (#8463) @NLincoln
69
+
70
+ ##### Docs
71
+
72
+ - [docs] Correct typo in ListItem docs (#8301) @apearson
73
+
74
+
75
+ ## 0.19.2
76
+ ###### _Sep 18, 2017_
77
+
78
+ Big thanks to the 4 contributors who made this release possible.
79
+
80
+ ##### Component Fixes / Enhancements
81
+
82
+ - [CardMedia] Guard against null children and overlays (#8055) @AlexMayants
83
+ - [EnhancedButton] Prevent href being overwritten by undefined (#8103) @doverdb
84
+
85
+ ##### Docs
86
+
87
+ - [docs] Add AlarmDJ.com in showcase (#8220) @ArnonEilat
88
+ - [docs] Add carbon (#8242) @oliviertassinari
89
+ - [docs] Add analytics (#8248) @oliviertassinari
90
+
91
+
92
+ ## 0.19.1
93
+ ###### _Sep 2, 2017_
94
+
95
+ Big thanks to the 7 contributors who made this release possible.
96
+
97
+ ##### Component Fixes / Enhancements
98
+
99
+ - [Popover] Fix PopOver animation origin when targetOrigin.horizontal=middle (#7930) @tsholmes
100
+ - [Slider] Resolve slider value to respect max and min (#7863) @janmarsicek
101
+ - [IconMenu] Stop preventing event default on open (#7933) @DoloMike
102
+ - [AutoComplete] Fix bug where controlled component behaves uncontrolled (#7967) @djblue
103
+ - [Tabs] Fix InkBar location for controlled component (#8010) @jgreubel
104
+
105
+ ##### Docs
106
+
107
+ - [Autocomplete] Fix onNewRequest documentation (#7835) @baerrach
108
+
109
+ ##### Core
110
+
111
+ N.A
112
+
113
+
114
+ ## 0.19.0
115
+ ###### _Aug 15, 2017_
116
+
117
+ Big thanks to the 11 contributors who made this release possible.
118
+ As always, we are focusing on bug fixes but this time, we introduce an exceptional breaking change.
119
+
120
+ ##### Breaking Changes
121
+
122
+ - [core] Removed module's reliance on react-tap-event-plugin (#7624) @lostpebble
123
+
124
+ The `react-tap-event-plugin` dependency was removed.
125
+ This change is paving the way toward supporting the upcoming react@16 release a.k.a Fiber.
126
+ The `react-tap-event-plugin` dependency was first introduced 3 years ago in order to remove
127
+ the click delay on mobile devices.
128
+ Mobiles devices' browsers have improved since then, it's no longer required.
129
+ It's time to remove this dependency, as we did it a year ago on the `v1-beta` branch.
130
+ You need to replace the `onTouchTap` property callbacks with `onClick`.
131
+
132
+ ```diff
133
+ -<div onTouchTap={this.handleEvent} />
134
+ +<div onClick={this.handleEvent} />
135
+ ```
136
+
137
+ Thanks @lostpebble for your hard work!
138
+
139
+ ##### Component Fixes / Enhancements
140
+
141
+ - [EnhancedSwitch] Fix checked prop (#7499) @LeoIannacone
142
+ - [Table] Row click on empty cell to not die in IE (#7520) @Brianzchen
143
+ - [Popover] Fix unknown "scrollableContainer" prop warning (#7560) @husterk
144
+ - [Popover] Fixed bug where Popover renders relative to screen (#7663) @lostpebble
145
+ - [Menu] Broken touch scroll on nested menu items (#7557 @adam187
146
+ - [DatePicker] Fix bug where 'isSelectedDateDisabled' was returning undefined (#7735) @lostpebble
147
+
148
+ ##### Docs
149
+
150
+ - [docs] Update ROADMAP (#7543) @kgregory
151
+ - [docs] Replace deprecated babel-plugin-material-ui with babel-plugin-direct-import (#7706) @umidbekkarimov
152
+ - [docs] Fix comment typo (#7523) @ruffle1986
153
+ - [examples] Remove browserify @oliviertassinari (0cb504cf830abd805c1a7699f828bf5b0a6c23be)
154
+ - [docs] added showcase of 'HoopHubs.com' (#7677) @ngxiaoyi
155
+ - [docs] Create CODE_OF_CONDUCT.md (#7704) @oliviertassinari
156
+
157
+ ##### Core
158
+
159
+ - [core] Add react^16.0.0-beta.5 in peer dependencies @oliviertassinari (8032d51c3faf4ddc5bcf814c9458fbc227a083e2)
160
+
161
+
162
+ ## 0.18.7
163
+ ###### _Jul 23, 2017_
164
+
165
+ Big thanks to the 11 contributors who made this release possible.
166
+ As always, we are focusing on bug fixes.
167
+
168
+ ##### Component Fixes / Enhancements
169
+
170
+ - [Table] Don't set height to tbody (#7484) @GAumala
171
+ - [Popover] Scroll Container issue (#7472) @gorkemcnr
172
+ - [ListItem] Fix triggers onTouchTap when disabled (#7486) @jonashartwig
173
+ - [Chip] Fix warning when using onRequestDelete (#7407) @leMaik
174
+ - [Datepicker] Option to select year first (#7367) @chrisjbrown
175
+ - [List] Fix clicking "Toggle Nested Items" icon triggering left checkbox toggle (#7171) @hwo411
176
+
177
+ ##### Docs
178
+
179
+ - [ROADMAP] Update the release plan for v1: fasteeer (#7428) @oliviertassinari
180
+ - [docs] Update ROADMAP.md with v1-alpha branch (#7345) @whyvez
181
+ - [docs] Update CONTRIBUTING.md with v1-alpha branch (#7371) @akshaynaik404
182
+ - [docs] Fix typo in Avatar (#7478) @brianlheim
183
+
184
+ ##### Core
185
+
186
+ N.A
187
+
188
+
189
+ ## 0.18.6
190
+ ###### _Jul 4, 2017_
191
+
192
+ Big thanks to the 7 contributors who made this release possible.
193
+ As always, we are focusing on bug fixes.
194
+
195
+ ##### Component Fixes / Enhancements
196
+
197
+ - [Chip] Support overriding Delete Icon Style (#7320) @zentron
198
+ - [AutoComplete] Fix issue with popover positioning on iOS (#7333) @mattp94
199
+ - [ListItem] Apply paddingRight to automatic expand icon (#7313) @thehig
200
+ - [DatePicker] Use the same background color as the TimePicker (#7295) @R4DIC4L
201
+ - [TextField] Fix unfocused state when disabled (#7283) @xaviergonz
202
+
203
+ ##### Docs
204
+
205
+ - [docs] Fix v1 promo styling (#7289) @KenLSM
206
+
207
+ ##### Core
208
+
209
+ N.A
210
+
211
+
212
+ ## 0.18.5
213
+ ###### _Jun 28, 2017_
214
+
215
+ ##### Component Fixes / Enhancements
216
+
217
+ - Fix regressions (#7262) @oliviertassinari
218
+ - [TextField] Fix initial scroll (#7260) @brendanmh
219
+
220
+ ##### Docs
221
+
222
+ - [docs] Promote the v1.0.0-alpha (#7273) @oliviertassinari
223
+
224
+ ##### Core
225
+
226
+ - [tests] correct values expected by autoprefixer (#7267) @djbuckley
227
+
228
+
229
+ ## 0.18.4
230
+ ###### _Jun 25, 2017_
231
+
232
+ Big thanks to the 17 contributors who made this release possible.
233
+ This release keeps focusing on bug fixes.
234
+
235
+ ##### Component Fixes / Enhancements
236
+
237
+ - [TextField] Replaced WebkitTextFillColor with WebkitOpacity (#7094) @midan888
238
+ - [TextField] Fix for bottom border color reset (#7114) @xaviergonz
239
+ - [Tab] Support SVG Icons color (#7091) @RejinR
240
+ - [Tab] Fix color property handling (#7131) @oliviertassinari
241
+ - [DatePicker] Fix direction in RTL (#7102) @azizghuloum
242
+ - [ListItem] Exposing onTouchTap API in order to address Issue #6938 (#7105) @max-b
243
+ - [Dialog] Styling inner content container (component Paper) (#7123) @akulov
244
+ - [Switch] Fix focus style for RadioButton Checkbox Toggle (#7158) @myrubapa
245
+ - [Popover] Only prevent default click interactions (#7167) @oliviertassinari
246
+ - [Drawer] Remove event listeners on unmount (#7225) @liamcmitchell
247
+ - [Table] state.allRowsSelected was not updated if props.allRowsSelected changed (#7224) @lgpasquale
248
+ - [Slider] Prevent unnecessary value spread (#7191) @katzoo
249
+
250
+ ##### Docs
251
+
252
+ - [Paper] Properties circle has typo misspelling (#7245) @lisabronwyn
253
+ - [docs] Add material-ui-slider-label in the related projects section (a0ab405cc5d4a101735defbc68ec1b80659a8230) @tariqwest
254
+ - [docs] Add Crypticker.io in showcase (#7205) @scastiel
255
+ - [docs] Fix item 4 not showing as checked in Table controlled example (#7244) @bjornreppen
256
+ - [docs] Humorista Showcase App No Longer Working (#7164) @Dcorkran
257
+
258
+ ##### Core
259
+
260
+ N.A
261
+
262
+
263
+ ## 0.18.3
264
+ ###### _Jun 8, 2017_
265
+
266
+ ##### Component Fixes / Enhancements
267
+
268
+ - [DatePicker] Revert #7056 (3d841bd1443c375c32d7ff696011dc9f131d4d13) @oliviertassinari
269
+ - [TextField] Fix disabled input color in Safari (#7065) @amannn
270
+
271
+
272
+ ## 0.18.2
273
+ ###### _Jun 7, 2017_
274
+
275
+ Big thanks to the 22 contributors who made this release possible.
276
+ This release keeps focusing on bug fixes.
277
+
278
+ ##### Component Fixes / Enhancements
279
+
280
+ - [CardTitle] Don't pass closeIcon to parent div (#6868) @ChrisJamesC
281
+ - [DatePicker] Now the date passed to DateTimeFormat is always in UTC (#7056) @JustAndrei
282
+ - [DatePicker] Revert #6764 (#6930) @oliviertassinari
283
+ - [Drawer] Fix behavior on RTL layouts (#6857) @alireza-ahmadi
284
+ - [Drawer] Fix for server side rendering (#6929) @pablo-bondacom
285
+ - [DropDownMenu] Add child argument to selectionRenderer (#6890) @Floriferous
286
+ - [DropDownMenu] Add tests for selectionRenderer (#6895) @Floriferous
287
+ - [Menu] Fix RegExp error on keydown (#6965) @liamcmitchell
288
+ - [Stepper] Add expandTransitionChildStyle property (#7030) @makslevental
289
+ - [TableBody] Fix columnId passed to onCellClick (#7014) @lgpasquale
290
+ - [TextField] Fix enter behavior with multiline when controlled (#6992) @sajal50
291
+ - [TimePicker] Add minutes step prop (#6942) @alancasagrande
292
+
293
+ ##### Docs
294
+
295
+ - [Card] Add alt property for img tag (#7022) @juzhiyuan
296
+ - [docs] Add React Most Wanted to the showcase (#7032) @TarikHuber
297
+ - [docs] Add a new site to the showcase (#6993) @wzup
298
+ - [docs] Add Razzle Styled Example (#6862) @kireerik
299
+ - [docs] Add brainbok to the showcase (#6983) @brainbok
300
+ - [docs] Add https://devsketch.io to showcase (#6908) @hailedev
301
+ - [AutoComplete] fixing a typo in docs - "reseted" -> "reset" (#6919) @mbifulco
302
+
303
+ ##### Core
304
+
305
+ - [core] Remove ReactFragment dependency (#6910) @made-aryadinata
306
+
307
+
308
+ ## 0.18.1
309
+ ###### _May 13, 2017_
310
+
311
+ ##### Component Fixes / Enhancements
312
+
313
+ - [Dialog] Improves borders behavior when scrollable (#6576) @bognix
314
+ - [Slider] Fix step & max issue (#6752) @omarchehab98
315
+ - [Slider] Fix `isRtl` behaviour `directionInvariant` approach (#6760) @omarchehab98
316
+ - [TextField] Fix a warning of 'Failed prop type' (#6773) @szchenghuang
317
+ - [TextField] Accessibility fix for horizontal rules (#6796) @charliegroll
318
+ - [DatePicker] Call dismiss when handleTouchTapOk triggers (#6764) @NewOldMax
319
+ - [Table] Handle 0 or 1 rows within the header (#6813) @DaIgeb
320
+ - [Autocomplete] Fix handle open prop change (#6809) @jony89
321
+ - [SelectField] Remove use of `.includes()` to support IE11 (#6838) @codylawson
322
+ - [Slider] Remove deprecated error and description props (#6851) @solkaz
323
+
324
+ ##### Core
325
+
326
+ - [core] Fix breaking change "recompose" version dependency (#6847) @eduardomb
327
+ - React 16 compatibility (#6753) @made-aryadinata
328
+
329
+
330
+ ## 0.18.0
331
+ ###### _Apr 30, 2017_
332
+
333
+ Big thanks to the 8 contributors who made this release possible.
334
+ This release almost exclusively contains bug fixes.
335
+
336
+ ##### Breaking Changes
337
+
338
+ - [Table] Fix controlled behavior (#6638) @oliviertassinari
339
+
340
+ This PR is introducing a breaking change by removing the ambiguity between default state and controlled state. Now, as soon as the selected property is used, the row selection of the component is controlled, hence fully implementing what's documented:
341
+
342
+ > `selected`: This property can be used to programmatically select rows.
343
+
344
+ ##### Component Fixes / Enhancements
345
+
346
+ - [AutoComplete] Fix overriding TextField value and onChange prop (#6642) @umidbekkarimov
347
+ - [AutoComplete] Fix undesired behaviour with controlled searchText (#6621) @NickMalt
348
+ - [Stepper] Allow single Step child (#6707) @StephanBijzitter
349
+ - [style] Use 'default' cursor for disabled component states (#6700) @demigor
350
+ - [DropDownMenu] Pass autoWidth property to Menu component (#6632) @BamaBoy
351
+ - [Menu] Fix focus index when multiselect is used (#6717) @jony89
352
+ - [Tabs] Fix transition when isRtl is used (#6737) @jony89
353
+
354
+ ##### Docs
355
+
356
+ - [docs] Upgrade react-docgen (#6635) @mbrookes
357
+ - [Slider] Add a logarithmic scale example (#6672) @idoco
358
+
359
+
360
+ ## 0.17.4
361
+ ###### _Apr 14, 2017_
362
+
363
+ Big thanks to the 5 contributors who made this release possible.
364
+ Following [React's announcement](https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html) that includes the deprecation of some pattern, we have updated the codebase in order to support the latest v15.5.4 release of React.
365
+ Thanks @rsolomon for taking care of it!
366
+
367
+ ##### Component Fixes / Enhancements
368
+
369
+ - [SelectField] Add dropDownMenuProps property (c3ee8e88d1a8abb399d44b73bd3214883ccccd7a) @viniciusdcc
370
+ - [CardActions] Fix showExpandableButton bug (#6578) @akshaynanavati
371
+ - [DatePicker] Customizable calendar system (#6565) @alitaheri
372
+
373
+ #### Core
374
+
375
+ - [react] Use React 15.5 and prop-types lib (#6577) @rsolomon
376
+
377
+
378
+ ## 0.17.3
379
+ ###### _Apr 10, 2017_
380
+
381
+ ##### Component Fixes / Enhancements
382
+
383
+ - [AutoComplete] Fix overriding TextField event props (#6561) @leMaik
384
+ - [DropDownMenu] Fix the position regression (8829a9d78abedca5de80617448cb99968650c30e) @oliviertassinari
385
+
386
+
387
+ ## 0.17.2
388
+ ###### _Apr 9, 2017_
389
+
390
+ Big thanks to the 21 contributors who made this release possible.
391
+
392
+ This release includes the update of the dependencies.
393
+ The latest release of `inline-style-prefixer` is introducing **significant** [performance improvements](https://github.com/rofrischmann/inline-style-prefixer/blob/master/Changelog.md#30) to our styling solution.
394
+
395
+ [Latest React's announcement](https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html) includes a deprecation of `React.PropTypes` and an introduction of a new package `prop-types`. We don't support that change yet, any help is welcome.
396
+
397
+ ##### Component Fixes / Enhancements
398
+
399
+ - [AutoComplete] Fix menuProps and text props override defaults (#6497) @susielu
400
+ - [AutoComplete] Document menuProps property (#6443) @tanhauhau
401
+ - [AppBar] Add test for iconElementRight gets FlatButton (#6362) @agamrafaeli
402
+ - [Drawer] Allowing percentages width (#6315) @janzenz
403
+ - [DropDownMenu] Expose targetOrigin and anchorOrigin properties (#6370) @qin9smile
404
+ - [EnhancedTextArea] Fixes height bug for IE11 (#6418) @mmrtnz
405
+ - [GridTile] Add a subtitleStyle property (#6421) @ichi0g0y
406
+ - [ListItem] Add isKeyboardFocused prop (#6369) @samdroid-apps
407
+ - [Menu] Add attributes to support assistive technologies (#6539) @170102
408
+ - [TextField] Fix first character composition issue (#6456) @keifuji
409
+ - [TextField] Fix wrapped hintText rendering outside of container (#6305) @pancho111203
410
+ - [ToolbarGroup] Add more tests for other child components (#6423) @ibekavac
411
+
412
+ ##### Docs
413
+
414
+ - [ROADMAP] Add a link to the next documentation (b0461d944ccaee877358cad7173d2a9fbba19edf) @oliviertassinari
415
+ - [docs] Add Electrode to related projects (#6441) @mbrookes
416
+ - [docs] Add related project material-ui-scrollable-tabs (#6429) @shawnmcknight
417
+ - [docs] Show how to change the RadioButton color (133da2f10592cf5d26c76248840b790783623886) @oliviertassinari
418
+ - [Showcase] Add Flow Dashboard to showcase (#6380) @onejgordon
419
+ - [Showcase] Update Slimchess Url (#6348) @larrxu
420
+ - [Showcase] Add Serif.nu to showcase (#6399) @Joonpark13
421
+ - [TableRow] Fix typo in comment (#6428) @beaudry
422
+
423
+ ##### Core
424
+
425
+ - [npm] Upgrade dependencies (#6343) @oliviertassinari
426
+
427
+
428
+ ## 0.17.1
429
+ ###### _Mar 12, 2017_
430
+
431
+ Big thanks to the 20 contributors who made this release possible.
432
+
433
+ ##### Component Fixes / Enhancements
434
+
435
+ - [Chip] Add containerElement property (#6237) @blmarket
436
+ - [DatePicker] Add option to hide date display (#6161) @dhoward
437
+ - [EnhancedButton] Speed up unmount (#6164) @fzaninotto
438
+ - [EnhancedSwitch] Remove dead "toggled" property (#6182) @Shahrukh-Zindani
439
+ - [FlatButton] Add fullWidth property (#6135) @Shahrukh-Zindani
440
+ - [FloatingActionButton] Fix disabledColor warning in console (#6178) @Shahrukh-Zindani
441
+ - [MenuItem] Add an anchorOrigin property for the nested items (#6079) @skylerfenn
442
+ - [Menu] Fix disabled MenuItem with props.menuItemStyle (#6203) @tomchentw
443
+ - [LinearProgress] Reduce delay before indeterminate animation begins (#6230) @lawrence-yu
444
+ - [SelectField] Fix TouchRipple effect when SelectField is disabled (#6286) @solkaz
445
+ - [SelectField][DropDownMenu] Prevent label from resizing parents (#6200) @JessThrysoee
446
+ - [SelectField][DropDownMenu] Support multi select (#6165) @JessThrysoee
447
+ - [TextField] sync height with shadow when `rowsMax` changed (#6297) @seasick
448
+ - [Theme] Move borderRadius into a theme constant (#6233) @samdroid-apps
449
+ - [Toolbar] Allow node to be used in text property (#6282) @oliviertassinari
450
+
451
+ ##### Docs
452
+
453
+ - [Button] Expose disableTouchRipple (#6234) @oshalygin
454
+ - [FlatButton] Add className property (#6148) @Shahrukh-Zindani
455
+ - [ListItem] Documents containerElement, changes ref to use callback (#6204) @lourd
456
+ - [Showcase] Add SlimChess to showcase (#6225) @larrxu
457
+ - [docs] Add onTouchTap documentation for FlatButton (#6147) @Shahrukh-Zindani
458
+ - [docs] Add onTouchTap documentation for FloatingActionButton (#6172) @Shahrukh-Zindani
459
+ - [docs] Add onTouchTap documentation for IconButton (#6174) @Shahrukh-Zindani
460
+ - [docs] Add onTouchTap documentation for RaisedButton (#6171) @Shahrukh-Zindani
461
+ - [docs] Add explanation for using font icon in a local project (#6198) @Shahrukh-Zindani
462
+ - [docs] Add documentation for containerElement in FlatButon (#6210) @Shahrukh-Zindani
463
+ - [docs] Add documentation for containerElement in RaisedButon (#6199) @Shahrukh-Zindani
464
+ - [docs] Update usage.md (#6207) @dhruvdutt
465
+ - [docs] Add a link to clarify the use of font icons in IconButton (#6197) @Shahrukh-Zindani
466
+ - [docs] Update ROADMAP.md (#6319) @antmdvs
467
+
468
+ ##### Core
469
+
470
+ - [issue] Update the webpackbin link (18e9c494e0c5c331b1e949856f2dbe8c77b62c77) @oliviertassinari
471
+
472
+
473
+ ## 0.17.0
474
+ ###### _Feb 12, 2017_
475
+
476
+ Big thanks to the 17 contributors who made this release possible.
477
+
478
+ ##### Breaking Changes
479
+
480
+ - [core] Upgrade react-tap-event-plugin and react peer dependency (#6057) @rosskevin
481
+
482
+ We have upgraded the peer dependency of Material-UI. You gonna need:
483
+ - `react-tap-event-plugin` >= 2.0.1
484
+ - `react` >= 15.4.0
485
+ - `react-dom` >= 15.4.0
486
+
487
+ ##### Component Fixes / Enhancements
488
+
489
+ - [Tooltip] Add support for horizontalPosition="right" (#6072) @LeeKevin
490
+ - [RadioButton] Fix circular dependency (#6055) @joaogranado
491
+ - [Stepper] Add font family from base theme (#5943) @ysds
492
+ - [Popover] Fix re-opening animated popover (#5984) @kib357
493
+ - [EnhancedButton] Fix bleeding animation (#6027) @ArcanisCz
494
+ - [DropDownMenu] Allow custom FontIcon child (#6028) @ArcanisCz
495
+
496
+ ##### Docs
497
+
498
+ - [docs] Fix typo for the Divider's page (#6085) @meganetaaan
499
+ - [docs] Add rating component to related-projects (#6018) @saschb2b
500
+ - [docs] Add a chrome extension example to the showcase (#5994) @xinghengwang
501
+ - [docs] Add source-code IconButton to Showcase (#5980) @mbrookes
502
+ - [docs] Fix FlatButton example Firefox behavior (#5933) @MustD
503
+ - [docs] Update Flat/Raised Button with SVG's description (#5981) @oshalygin
504
+ - [Toggle] Update docs (#5941) @GusRuss89
505
+
506
+ ##### Core
507
+
508
+ - [core] Fix npm scripts for windows - proper cross-env (#6086) @ArcanisCz
509
+ - [eslint] Fix errors & warnings & deprecations (#6030) @ArcanisCz
510
+ - [colorManipulator] Add warning to decomposeColor (#5939) @gyfis
511
+
512
+
513
+ ## 0.16.7
514
+ ###### _Jan 15, 2017_
515
+
516
+ Big thanks to the 20 contributors who made this release possible.
517
+
518
+ ##### Component Fixes / Enhancements
519
+
520
+ - [DropDownMenu] Add keyboard accessibility (#5921) @caesay
521
+ - [EnhancedButton] Remove unnecessary hack, improving overall performance (#5868) @jampy
522
+ - [FloatingActionButton] Fix thin white border (#5881) @ludoviccyril
523
+ - [IconButton] Fix a onTouchStart error (#5833) @oliviertassinari
524
+ - [IconButton] Fix hoveredStyle prop override style prop (#5874) @MattCain
525
+ - [IconMenu] Fix React warning (#5843) @olee
526
+ - [Menu] Add onFocusIndexChange property (#5851) @gabrielmdeal
527
+ - [Menu] Fix support of any type of children (#5904) @oliviertassinari
528
+ - [style] Shorthand syntax for a color object (#5835) @frooeyzanny
529
+ - [style] Fix user-agent all with display flex (#5931) @oliviertassinari
530
+ - [Tab] Allow overriding button style on tabs (#5844) @rhagigi
531
+ - [Tabs] Fix a regression (#5891) @oliviertassinari
532
+ - [Table] Add an integration tests (#5845) @oliviertassinari
533
+ - [Table] Fix TableBody selectedRows state (#5829) @ovaldi
534
+ - [Table] Remove useless padding (#5932) @oliviertassinari
535
+ - [TableBody] Fix row selection re-render (#5905) @dchambers
536
+ - [test] Fix typo in the iOSHelpers.spec.js (#5837) @frooeyzanny
537
+
538
+ ##### Docs
539
+
540
+ - [docs] Add payment components to Related projects (#5849) @lorensr
541
+ - [docs] Add showcase for "humorista.org" (#5859) @minas1
542
+ - [docs] Fix broken link (b7d9a373320b49f62e47f4e2e5ca4aa882265904) @oliviertassinari
543
+ - [docs] Fix spelling mistake in PropTypeDescription.js (#5883) @Jbarget
544
+ - [docs] Fix typo (#5889) @lucasbento
545
+ - [docs] It is exciting (#5831) @ratson
546
+ - [Tabs] Fix typo in initialSelectedIndex prop description (#5923) @neonray
547
+ - [withWidth] Fix typo in the withWidth.spec.js (#5836) @frooeyzanny
548
+
549
+ ##### Core
550
+
551
+ - [test] Use simpler assert API (e017d365f45b07933e8b896f95d6d1455b666516) @oliviertassinari
552
+
553
+
554
+ ## 0.16.6
555
+ ###### _Dec 25, 2016_
556
+
557
+ We are releasing sooner than we use to for this **special day** :christmas_tree::gift:.
558
+ 17 contributors are making that last release of the year possible.
559
+
560
+ 2016 has been an exceptional year for Material-UI.
561
+ - We went from 40k to 180k [downloads](https://npm-stat.com/charts.html?package=material-ui&from=2014-12-24&to=2016-12-25) a month. :package:
562
+ - We went from 12k to 22k [stars](http://www.timqian.com/star-history/#callemall/material-ui). :star:
563
+
564
+ That wouldn't have been possible without this awesome community.
565
+ **Thank you!**
566
+
567
+ But this's just the beginning, some [exciting stuff](https://github.com/mui-org/material-ui/blob/v0.x/ROADMAP.md) is coming in 2017 :sparkles:.
568
+ You can preview a **very early** version of the `next` branch following [that link](https://material-ui-1dab0.firebaseapp.com).
569
+
570
+ ##### Component Fixes / Enhancements
571
+
572
+ - [IconButton] Add a hoveredStyle property (#5755)
573
+ - [Menu] Add a dividerStyle property (#5734)
574
+ - [Menu][DropDownMenu][SelectField] Add menuItemStyle and menuItemSelectedStyle properties (#5389)
575
+ - [Popover] Fix ghost clicks in onRequestClose (#5749)
576
+ - [Popover] Fix bad positioning on IOS devices (#4638)
577
+ - [Popover] Revert the latest PR following a regression (#5797)
578
+ - [Stepper] Allow custom step connector (#5741)
579
+ - [Stepper] Fix content container's height expantion (#5733)
580
+ - [TimeDisplay] Inherit text color from theme (#5816)
581
+ - [TouchRipple] Fix issue #5626 (#5763)
582
+
583
+ ##### Docs
584
+
585
+ - [AutoComplete] Add a controlled example (#5795)
586
+ - [Slider] Add onChange callback signatures to docs (#5760)
587
+ - [TextField] Add callback signatures to docs (#5804)
588
+ - [docs] Add link to babel-plugin-material-ui (#5754)
589
+ - [docs] Node is written mostly in C++, not in C (#5776)
590
+ - [docs] Remove redundant words (#5778)
591
+ - [docs] Add showcase item - Realty Advisors Elite (#5806)
592
+
593
+ ##### Core
594
+
595
+ - [core] Add support for Webpack 2/Rollup tree shaking in `svg-icons` sub module (#5774)
596
+
597
+
598
+ ## 0.16.5
599
+ ###### _Dec 9, 2016_
600
+
601
+ This is another release improving the stability of `v0.16.x`.
602
+
603
+ ##### Component Fixes / Enhancements
604
+
605
+ - [AutoComplete] Add an onClose callback property (#5655)
606
+ - [AutoComplete] Fix the controlled behavior (#5685)
607
+ - [DatePicker] Auto switch the view when a year is selected (#5700)
608
+ - [DropDownMenu] Add an onClose callback property (#5653)
609
+ - [DropDownMenu] Do not wrap below dropdown menu (#4755)
610
+ - [EnhancedButton] Fix an accessibility issue (#5657)
611
+ - [EnhancedButton] Only apply type when needed (#5728)
612
+ - [IconMenu] Add listStyle prop (#5630)
613
+ - [IconMenu] Fix controlled IconMenus to honor onRequestChange (#5704)
614
+ - [MenuItem] Add right padding when there is icon (#4762)
615
+ - [Popover] Add the missing zIndex (#5730)
616
+ - [List] Fix padding styles object (#5661)
617
+ - [SelectField] Scroll wheel event bubbling to parent container (#4154)
618
+ - [StepLabel] Address a box model issue (#5690)
619
+ - [SelectField] Add listStyle prop (#5631)
620
+ - [TextField] Fix errorStyle priority (#5654)
621
+ - [TextField] Add a floatingLabelShrinkStyle property (#5669)
622
+ - [autoprefixer] Fix a style issue with user agent all and display flex (#5668)
623
+ - [makeSelectable] Fix missing check for existence of onChange (#5589)
624
+
625
+ ##### Docs
626
+
627
+ - [docs] Add a Q&A section around the next branch (#5718)
628
+ - [docs] Fix typo with sentence for AutoComplete (#5596)
629
+ - [docs] Fix origin documentation (#5676)
630
+ - [docs] Fix Linear Progress Prop Documentation (#5680)
631
+ - [docs] Fix a scroll issue on (iOS) (a12dca847af6833dbf671e48c736047d6909ec53)
632
+
633
+ ##### Core
634
+
635
+ - [core] Apply 3 different fixes (#5695)
636
+
637
+
638
+ ## 0.16.4
639
+ ###### _Nov 17, 2016_
640
+
641
+ ##### Component Fixes / Enhancements
642
+
643
+ - [npm] Rollback the react dependency path to `v15.0.0` (417913e41fbc3366c6997258263270c6d7465c1a)
644
+
645
+ ## 0.16.3
646
+ ###### _Nov 17, 2016_
647
+
648
+ This release is intended to solve an [issue](https://github.com/callemall/material-ui/issues/5573) with `react-tap-event-plugin` following the release of React `v15.4.0`.
649
+
650
+ ##### Component Fixes / Enhancements
651
+
652
+ - [ListItem] Fix hover on touch devices (#5566)
653
+ - [core] include `react-tap-event-plugin@^2.0.0` for `react@^15.4.0` (#5572)
654
+ - [core] Add support for Webpack 2/Rollup tree shaking (#5545)
655
+
656
+ ##### Docs
657
+
658
+ - [docs] Upgrade React to v15.4.0 (#5575)
659
+
660
+
661
+ ## 0.16.2
662
+ ###### _Nov 13, 2016_
663
+
664
+ This is another release improving the stability of `v0.16.x` while we are working on get `next` out of the door.
665
+
666
+ ##### Component Fixes / Enhancements
667
+
668
+ - [AutoComplete] Fire onUpdateInput when an item from the dropdown is selected (#5518)
669
+ - [AutoComplete] Fix Popover's style overriding popoverProps (#5516)
670
+ - [Card] Add closeIcon and openIcon for customizability (#5513)
671
+ - [FloatingActionButton] Fix regression with n children (#5468)
672
+ - [GridList] Add the support for cellHeight="auto" (#5452)
673
+ - [GridTitle] Add a titleStyle property (#5535)
674
+ - [IconMenu] Change IconMenu to conditionally merge button styles (#5496)
675
+ - [IE] Remove the unsupported initial property (#5539)
676
+ - [MenuItem][ListItem] Allow overriding hoverColor (#5502)
677
+ - [ListItem] Fix an issue with the controlled behavior (#5514)
678
+ - [ListItem] Clear hover state if componet get's disabled (#5528)
679
+ - [Popover] Fix support for invalid `anchorEl` (#5444)
680
+ - [RaisedButton] Fix hover on touch devices (#5536)
681
+ - [Stepper] Fix children count method (#5429)
682
+ - [Stepper] Add iconContainerStyle to StepButton and StepLabel (#5507)
683
+ - [Tabs] Fix Firefox height issue (bf25bc118523b359bba5a5540205174a1c2d9e27)
684
+ - [Table] Warning on rendering attempt of unsupported child (#5520)
685
+ - [TextField] Add ability to style label color when a value is present (#5490)
686
+ - [TextField] Fix wrong style behing applied to div elements (#5446)
687
+ - [TextField] Fix floatingLabelFocusStyle when floatingLabelFixed is true (#5487)
688
+ - [TextField] Remove the isClean logic (#5540)
689
+ - [TimePicker] Fix `autoOk` closing the dialog too early (#5511)
690
+ - [ToolbarGroup] Fix vertical alignment (#5515)
691
+ - [ToolbarTitle] Take font family from base theme (#5434)
692
+ - [Toggle] Fix label propTypes from `string` to `node` (#5474)
693
+
694
+ ##### Core
695
+
696
+ - [npm] Upgrade the dependencies (#5466, #5537)
697
+
698
+ ##### Docs
699
+
700
+ - [docs] Add one more resource around the style migration (0d375d6271a2c65e6e608dde28ee4ca55defd81b)
701
+ - [docs] Add a note regarding other properties (#5491)
702
+ - [docs] Add redux-form in the Related projects section (3e10f203bc3a7d79f94011586c134b6e17a69016)
703
+ - [docs] Add CReMa in the Related projects section (#5431)
704
+
705
+
706
+ ## 0.16.1
707
+ ###### _Oct 18, 2016_
708
+
709
+ This is a small release improving the stability of `v0.16.x`.
710
+
711
+ ##### Component Fixes / Enhancements
712
+
713
+ - [ClickAwayListener] Improve the propTypes definition (2d99b2d66f0a895389f61e866c8840abebcf2b72)
714
+ - [DropDownMenu] Fix usage of null child (#5402)
715
+ - [FloatingActionButton] Set touch flag in handleTouchEnd (#5077)
716
+ - [FloatingActionButton] Fix overriding the style property on the children (#5246)
717
+ - [IconMenu] Updating error message for IconButton (#5361)
718
+ - [IconMenu] Makes the warning message more explicit (#5395)
719
+ - [Menu] Fix the key theme used for the selectedTextColor (#5379)
720
+ - [MenuItem] Add min-height to MenuItem to allow null options in SelectItem (11639b02e62cc60861582eb9c1516e1fe46d5ccb)
721
+ - [Popover] Making sure Popover has correct position (#4839)
722
+ - [Popover] Add missing animated=false (#5374)
723
+ - [RadioButtonGroup] Modifying `selected` initial value check to account for falsy value (#5342)
724
+ - [RaisedButton] Add a overlayStyle property (c16147d9eb81a69a82f88d21fb0d7a356b95e2af)
725
+ - [RefreshIndicator] Fix Unknown props react warning (#5356)
726
+ - [Tabs] Add tabTemplateStyle prop to Tabs (#5359)
727
+ - [TableFooter] Render the children independently of adjustForCheckbox (#5406)
728
+ - [TableRowColumn] Revert Tooltip visible with TableRowColumn (#5378)
729
+ - [TextField] Fix a failing test with the controlled behavior (#5351)
730
+ - [TextField] Fix leaking appearance property on a div (#5412)
731
+ - [withWidth] Fix the SSR reconciliation (#5405)
732
+
733
+ ##### Core
734
+
735
+ - [GitHub] Improve ISSUE_TEMPLATE to ask for a running snippet (#5388)
736
+ - [npm] Upgrade the dependencies (#5404)
737
+
738
+ ##### Docs
739
+
740
+ - [docs] Add LireLactu to the showcase (#5336)
741
+ - [docs] Document the muiThemeable HOC (#5363)
742
+ - [docs] Fix non-compiling example code on Themes page (#5344)
743
+
744
+
745
+ ## 0.16.0
746
+ ###### _Oct 3, 2016_
747
+
748
+ This release contains a ton of bug fixes and small improvements :boom:.
749
+
750
+ We have **shifted goals** for `v0.16.0`.
751
+ Across a number of issues over the last ~5 months we have been telling people that certain improvements are coming in `v0.16.0` ranging from performance to component API issues and more.
752
+ Those improvements are coming with the `next` branch :sparkles:.
753
+ We are switching in goal so we can release changes more **often**.
754
+
755
+ Regarding going forward, this is likely to be the last `minor` release using the **inline-style** approach.
756
+ We are migrating all the components to a **CSS-in-JS** approach on the `next` branch.
757
+
758
+ For more details, you can have a look a the [next milestone](https://github.com/callemall/material-ui/milestone/14) as well as the [next project](https://github.com/callemall/material-ui/projects/1)
759
+
760
+ :warning: New features based on the `master` branch (inline-style) have low priority and will most likely not be reviewed nor merged.
761
+
762
+ ##### Component Fixes / Enhancements
763
+
764
+ - [Card] Fix unused property subtitleColor (#5314)
765
+
766
+ ##### Core
767
+
768
+ - [Core] Use lodash.merge/throttle for faster require() (#5308)
769
+
770
+ ##### Docs
771
+
772
+ - [docs] Add a single line example for GridLists (#5313)
773
+ - [docs] Add react-dnd (7e1d9d3d1d61a3ee8e6dbf57cd2261754a3285f3)
774
+ - [docs] Add Casalova to the showcase (7c0df3be32813ddb003cd47b6529431f3cd41679)
775
+
776
+
777
+ ## 0.16.0-rc2
778
+ ###### _Sep 24, 2016_
779
+
780
+ ##### Breaking Changes
781
+
782
+ - [TimePicker] Remove the call to onDismiss when already calling onAccept (#5213)
783
+
784
+ ##### Component Fixes / Enhancements
785
+
786
+ - [AppBar] Fix onTouchTap handler (#5245)
787
+ - [AutoComplete] Add popoverProps to pass to Popover (#5064)
788
+ - [DatePicker] Improve the RTL support (#5155)
789
+ - [DatePicker] Improve the i18n support (#5187)
790
+ - [IconButton] Remove dead code (#5226)
791
+ - [Popover] Fix a callback leak (#5158)
792
+ - [TextField] Removed deprecated onEnterKeyDown prop
793
+ - [RaisedButton] Add a buttonStyle property (#5196)
794
+ - [Switch] Add thumbSwitchedStyle and trackSwitchedStyle (#5106)
795
+ - [Snackbar] Fix the element covering up 100% width of the screen (#5113)
796
+ - [Snackbar] Add a contentStyle property (#5205)
797
+ - [Tabs] Fix an edge case where children and value props change (#4635)
798
+ - [Tabs] Fix onChange bubbling (#5219)
799
+ - [TimePicker] Fix a conflict with box-sizing reset (5529138)
800
+ - [withWidth] Compute the width as soon as possible (#5154)
801
+
802
+ ##### Docs
803
+
804
+ - [AppBar] Add a composition example (#5248)
805
+ - [RaisedButton] Update file upload example (#5159)
806
+ - [docs] Add material-ui-chip-input to related projects (#5172)
807
+ - [docs] Add material-auto-rotating-carousel to related projects (#5244)
808
+ - [docs] Explicit the prerequisites section to required knowledge (#5203)
809
+ - [docs] Update the server-rendering section (#5206)
810
+
811
+ ##### Core
812
+
813
+ - [core] Add babel-runtime to the release (#5221)
814
+ - [core] Use the ^15.0.0 as a dependency for React (#5207)
815
+ - [npm] Upgrade the dependencies (#5161)
816
+
817
+
818
+ ## 0.16.0-rc1
819
+ ###### _Sep 8, 2016_
820
+
821
+ ##### Breaking Changes
822
+ - [Badge] Swapped primary and accent colors (#4449)
823
+ - [CircularProgress] The API has become more flexible and straightforward. `size` attribute now means the outer diameter in pixels. Line thickness is variable and should be defined via the `thickness` attribute. Default margins are eliminated. If you'd like to upgrade your existing app without changing the actual sizes of your `CircularProgress` components, here are the formulas:
824
+ ```js
825
+ newSize = 59.5 * oldSize;
826
+ thickness = 3.5 * oldSize;
827
+ margin = (oldSize < 0.71) ?
828
+ ((50 - 59.5 * oldSize) / 2) :
829
+ (5.25 * oldSize);
830
+ ```
831
+ Examples:
832
+ ```
833
+ // Before:
834
+ <CircularProgress />
835
+ <CircularProgress size={2} />
836
+
837
+ // After:
838
+ <CircularProgress size={59.5} style={{margin: 5.25}} /> // Thickness is 3.5 by default
839
+ <CircularProgress size={119} thickness={7} style={{margin: 10.5}} />
840
+ ```
841
+ (#4705)
842
+ - [core] Wrap the `propTypes` definitions so they can be removed in production (#4872)
843
+ - [core] Remove the deprecated code (#4987)
844
+ - [List] Rename MakeSelectable to makeSelectable (#5025)
845
+
846
+ ##### Component Fixes / Enhancements
847
+
848
+ - [BottomNavigation] Fix SVG icon positioning (#4982)
849
+ - [Buttons] Reset hover state when disabled prop is changed (#4951)
850
+ - [CardHeader] Fixes warning: Unknown props titleColor (0e787c7)
851
+ - [Checkbox] Tweak the transition to allow different shapes (#5016)
852
+ - [DatePicker] Improve dark theme support (#4943)
853
+ - [DatePicker] Changes opacity of disabled day-buttons (#4994)
854
+ - [EnhancedTextarea] Guard for if scrollHeight is not present (#5015)
855
+ - [FloatingActionButton] Reset hover state when disabled prop is changed (#4951)
856
+ - [IconMenu] Warn when not providing an IconButton to iconButtonElement (#4990)
857
+ - [NestedList] Prevent rendering the children when the nested list is hidden (#5024)
858
+ - [Popover] Prevent creating multiple timeouts when popover is closing (#5010)
859
+ - [ListItem] Fix primaryTogglesNestedList not working with checkbox (#4988)
860
+ - [RaisedButton] Fixes warning: Unknown props on <button> (#5067)
861
+ - [RefreshIndicator] Passing other props to the root element (#5054)
862
+ - [RTL] Add a new directionInvariant property (#5026)
863
+ - [TableRowColumn] Tooltip visible with TableRowColumn (#5014)
864
+ - [TextField] Better support for type=search (#4973)
865
+
866
+ ##### Docs
867
+
868
+ - [docs] Fix 404 links (#4998)
869
+ - [examples] Move to own repositories (#4475)
870
+ - [showcase] Add some new projects (#4978, #5119)
871
+
872
+ ##### Core
873
+
874
+ - [Slider] Clean up the implementation (#5036)
875
+ - [test] Reduce the noise when running the test suite (ea2538e)
876
+
877
+
878
+ ## 0.15.4
879
+ ###### _Aug 11, 2016_
880
+
881
+ ##### Component Fixes / Enhancements
882
+ - [BottomNavigation] Initial implementation (#4846)
883
+ - [DropDownMenu] Revert the commit causing a regression in 0.15.3 (#f76302e)
884
+ - [Snackbar] Add the material fontFamily (#4892)
885
+ - [ListItem] New property open to toggle nested list (#4850)
886
+ - [Slider] Fix an issue where not updating when max prop changes (#4895)
887
+ - [Slider] Fix more warnings introduced by React v15.3.0 (#4869)
888
+
889
+ ##### Docs
890
+ - [js] Explain the ECMAScript `stage-1` dependencies of the examples (#4877)
891
+
892
+
893
+ ## 0.15.3
894
+ ###### _Jul 31, 2016_
895
+
896
+ This release is mostly about bug fixes. All the new warnings introduced by React
897
+ v15.2.1 and v15.3.0 should be addressed in this version.
898
+
899
+ ##### Breaking Changes
900
+
901
+ - Remove a workaround regarding the context propagation as it was fixed in the React Core.
902
+ Upgrade to React v15.2.1 if you are affected. (#4729)
903
+
904
+ ##### Component Fixes / Enhancements
905
+ - [AutoComplete] Add a textFieldStyle property (#4853)
906
+ - [AutoComplete] Call onNewRequest once the animation is done (#4817)
907
+ - [Card] Fix bottom padding (#4820)
908
+ - [Chip] Fix invalid `labelColor` being passed (#4766)
909
+ - [DropDownMenu] Display the first item in case there's no one with the corresponding value (#4822)
910
+ - [FlatButton] Merge styles prop for FontIcon node (#4754)
911
+ - [GridList] Fix RTL alignment (#4833)
912
+ - [List] Prefix the style properties (#1cb0617)
913
+ - [ListItem] Trigger onNestedListToggle callback after state update (#4743)
914
+ - [ListItem] Fix incorrect nestedLevel (#4744)
915
+ - [Menu] TypeError: key is undefined (#4734)
916
+ - [MenuItem] Add cursor pointer back to the menu items (#4715)
917
+ - [Popover] Forward the animation property to this component (#4702)
918
+ - [RadioButtonGroup] Fix propTypes to accept anything (#4807)
919
+ - [RaisedButton] Fix the icon style override (#4f2fd22)
920
+ - [React] Fix more invalid props warning (#4667, #4675, #4685, #4725)
921
+ - [Snackbar] Change the action's PropType to node (#4716)
922
+ - [TextField] False should be a valid value (#4728)
923
+
924
+ ##### Core
925
+ - [dependencies] Update to the latest release version (#4669)
926
+ - [eslint] Find new rules with ease (#4521)
927
+ - [react] Fix the warnings of the latest release v15.3.0 (#4856)
928
+
929
+ ##### Docs
930
+ - [ROADMAP] Remove old addressed issues (#4745)
931
+ - [ROADMAP] Update to what the core team is working on (#4829)
932
+ - [docs] Replaces images on Card page with hosted images (#4748)
933
+ - [showcase] Add https://www.spouti.com (#4806)
934
+
935
+
936
+ ## 0.15.2
937
+ ###### _Jul 7, 2016_
938
+
939
+ During the release of 0.15.1 something went teribly wrong :sweat_smile: and some
940
+ commits were left out even though they were mentioned in the changelog. This release
941
+ includes the missing commits and some extra.
942
+
943
+ ##### Deperecations
944
+ - [Buttons] Deprecate linkButton property (#4197)
945
+
946
+ ##### General
947
+ - [React] Upgrade React to `v15.2.0` (#4603, #4605, #4607)
948
+ - [Docs] Don't document standard DOM events (#4433)
949
+ - [Form Components] Set `cursor:not-allowed` style when disabled (#4170)
950
+ - [Styles] Upgrade the inline-style-prefixer dependency to v2 (#4613)
951
+ - [Styles] Check for nulls for RTL (#4496)
952
+
953
+ ##### Browser support
954
+
955
+ Our support for IE and Safari improved in this release.
956
+ Thanks @vizath, @hhaida, @nathanmarks and @aahan96 for their effort.
957
+
958
+ ##### Component Fixes / Enhancements
959
+ - [AppBar] Improve props checking to be more resilient (#4557)
960
+ - [AutoComplete] Use the right dataSource key (#4642)
961
+ - [Badge] Fixed incorrect color usage (primary/accent were swapped) (#4449)
962
+ - [Button] Never allow a disabled button to be in a hovered state (#4626)
963
+ - [Button] Improve the propType definition for the label (#4618)
964
+ - [Chip] Add to the index (#4570)
965
+ - [ClickAwayListener] Add better support for IE11 (#4537)
966
+ - [DatePicker] Expose dialog container style (#4355)
967
+ - [DatePicker] Fix year overflow (#4381)
968
+ - [DropDownMenu] Remove Synthetic Event from pooling when used asynchronously (#4564)
969
+ - [EnhancedButton] Fix href style (#4457)
970
+ - [FlatButton] Add a condition to check for zero in the label warning (#4618)
971
+ - [LinearProgress] Fix calculating of getRelativeValue (#4624)
972
+ - [ListItem] Fix error with props access in state assignment for ie9/10 (#4596)
973
+ - [ListItem] Make the dark theme follow more closely the material spec (#4530)
974
+ - [MenuItem] Allow styles on lefticon in non-desktop mode (#4474)
975
+ - [RadioButton] Changed the value type to any (#4510)
976
+ - [RadioButtonGroup] Fix error with props access in state assignment for ie9/10 (#4596)
977
+ - [RaisedButton] Fix the `fullWidth` regression (#4479)
978
+ - [RenderToLayer] Fix an internal issue with React (#4548)
979
+ - [SelectField] Make the maxHeight prop to pass down to DropDownMenu (#4645)
980
+ - [Slider] Add a sliderStyle property (#4617)
981
+ - [Slider] Add support for vertical/reversible sliders (#4571)
982
+ - [Stepper] Fix transition bug in safari (#4616)
983
+ - [SvgIcon] Add support for color attribute (#4487)
984
+ - [SvgIcon] Add themeable color (#4621)
985
+ - [SvgIcon] Remove unused style assignment (#4486)
986
+ - [TextField] Keep spreading properties when children is set (#4478)
987
+ - [TextField] Fix multi-line overflow (#4634)
988
+
989
+
990
+ ## 0.15.1
991
+ ###### _Jun 16, 2016_
992
+
993
+ ##### Breaking Changes
994
+ - [Avatar] Now uses `img` instead of `div` (#4365)
995
+ - [DatePicker] `className` prop is now set on the root element instead of being passed down (#4250)
996
+ - [Drawer] Changed muiTheme key name from navDrawer to drawer (#4198)
997
+ - [SelectField] Move {...other} spread props from DropDownMenu to Textfield as part of (#4392)
998
+
999
+ ##### New Component
1000
+ - [Chip] First implementation (#3870)
1001
+
1002
+ ##### General
1003
+ - [Examples] Simplify the examples (#4262)
1004
+ - [Core] Upgrade EventListener dependency (#4162)
1005
+ - [Core] Upgrade some npm dependencies (#4306)
1006
+ - [Core] Remove react-addons-update dependency (#3946)
1007
+ - [Core] Move to the normal lodash (#4380)
1008
+ - [Docs] Use `copy-webpack-plugin` for dev (#4201)
1009
+ - [Icon Builder] Add muiName to generated SvgIcons (#4188, #4206)
1010
+ - [Icon Builder] Fix SvgIcon require path to icons generated with --mui-require absolute (#4204)
1011
+ - [Themes] Fix MuiThemeProvider default theme (#4229)
1012
+ - [withWidth] Accept width optional parameter (#4416)
1013
+ - [eslint] Add a mocha plugin to enforce good practices (#4424)
1014
+
1015
+ ##### Component Fixes / Enhancements
1016
+ - [AppBar] Add `iconStyleLeft` prop (#4266)
1017
+ - [AppBar] Fix a styling regression (#4471)
1018
+ - [AutoComplete] Add text and value field keys for objects list dataSource (#4111)
1019
+ - [AutoComplete] Fix filter property leaking (#4209)
1020
+ - [AutoComplete] Fix first item selection on keyboard focus (#4193)
1021
+ - [AutoComplete] Use sublime text like search instead of Levenshtein Distance for fuzzy search (#4164)
1022
+ - [Avatar] Fix a layout regression (#4409)
1023
+ - [Avatar] Remove the border (#4365)
1024
+ - [Button] Save some bytes on the production build (#4346)
1025
+ - [DatePicker] Added className prop to DatePicker (#4250)
1026
+ - [DatePicker] Fix layout when used with border-box (#4454)
1027
+ - [DatePicker] Fix the issue about onDismiss function will fire by handleTouchTapOk (#4367)
1028
+ - [DatePicker] Fix `weekTitleDayStyle` (#4464)
1029
+ - [Drawer] Fix muiTheme key name (#4198)
1030
+ - [DropDownMenu] Add an animated property (#4442)
1031
+ - [DropDownMenu] Add check if there is onChange prop before calling it (#4328)
1032
+ - [EnhancedButton] Fix not setting focus when keyboardFocused prop set (#4122)
1033
+ - [FlatButton] Fix Icon color prop issue (#4160)
1034
+ - [FloatingActionButton] Fix SvgIcon fill color (#4311)
1035
+ - [FontIcon] Prevent parent components from overriding icon's `color` property (#4025)
1036
+ - [IconMenu] Add an animated property (#4442)
1037
+ - [ListItem] Fix theme not propagating on update (#4372)
1038
+ - [Menu] Add basic hotkey-focusing feature (#4189)
1039
+ - [Menu] Fix theme not propagating on update (#4372)
1040
+ - [MenuItem] Fix theme not propagating on update (#4372)
1041
+ - [Picker] Disable userSelect on TimePicker and DatePicker (#4176)
1042
+ - [Pickers] Add some test regarding the expect value property (#4347)
1043
+ - [Popover] Fix typo from innerWith to innerWidth (#4332)
1044
+ - [RaisedButton] Don't override SvgIcon color prop (#3746)
1045
+ - [RaisedButton] Respect theme fontSize (#3988)
1046
+ - [RenderToLayer] Cleanup (#4423)
1047
+ - [SelectField] Add callback signatures to docs and improve other props (#3924)
1048
+ - [SelectField] Add support for `floatingLabelFixed` prop (#4392)
1049
+ - [SelectField] Fix errorText position when no value selected (#4394)
1050
+ - [Snackbar] Add a new test and fix consecutive updates leading to displaying old message (#4329)
1051
+ - [Stepper] Add more tests and fix an issue with `StepButton` event handlers (#4203)
1052
+ - [Stepper] Fix vertical stepper on mobile (#4299)
1053
+ - [Tabs] Fixes tabindex (#4357)
1054
+ - [TextField] Fix `floatingLabelText` intercepting click events (#4418)
1055
+ - [Timepicker] Add explicit box-sizing to Clock component (#4386)
1056
+ - [TimePicker] Expose two TimePickerDialog style props (#4356)
1057
+ - [TimePicker] Fix auto reset of time on window resize (#4251)
1058
+ - [TimePicker] Remove some dead code (#4289)
1059
+
1060
+ ##### Deperecations
1061
+ - [SelectField] Deprecate selectFieldRoot prop and replace with menuStyle (#4394)
1062
+
1063
+
1064
+ ## 0.15.0
1065
+ ###### _May 5, 2016_
1066
+
1067
+ Please read through the alpha and beta releases of 0.15.0 too as their changes are not listed here.
1068
+
1069
+ ##### General
1070
+ - [Core] Add a `withWidth` HOC (#4126)
1071
+ - [Core] Use named imports for createClass, Component & PropTypes (#4058)
1072
+ - [Core] Update dependencies and remove a couple of unneeded (#4107)
1073
+ - [eslint] Use the js format instead of the yaml one (#4074)
1074
+ - [codemod] Improve the path migration (#4069)
1075
+ - [codemod] Add a babel transpilation for npm (#4115)
1076
+ - [Tests] Refactor karma tests, add JSDOM for node tests and improve coverage (#4102)
1077
+ - [Tests] Add basic README for test setup (#4106)
1078
+ - [colorManipulator] Prevent illegal color values (#3989)
1079
+ - Added the following eslint rules:
1080
+ 1. Enforce `jsx-first-prop-new-line` (#4112)
1081
+ 1. Enforce `react/prefer-es6-class` (#4126)
1082
+
1083
+ ##### Component Fixes / Enhancements
1084
+ - [Avatar] Fix icon size issue for non-default Avatar size (#4148)
1085
+ - [Buttons] Address various browser compatibility issues (#4108)
1086
+ - [Buttons] Fixed alignment related regressions (#4130)
1087
+ - [Card] Add `containerStyle` prop (#4085)
1088
+ - [CircularProgress] Fix for Android (#4026)
1089
+ - [DatePicker] Add support for built-in en-US locale (#4161)
1090
+ - [Datepicker] Redesign datepicker as per material spec (#3739)
1091
+ - [Dialog] Stop mixing `padding` and `paddingTop` (#4082)
1092
+ - [EnhancedButton] Fix keyboard focus jumping (#4127)
1093
+ - [Slider] Fix Slider div style (#4087)
1094
+ - [TextField] Add `floatingLabelFocusStyle` property (#4043)
1095
+
1096
+ ##### Deprecations
1097
+ - [styleResizable] This mixin has been deprecated in favor of `withWidth` HOC (#4126)
1098
+
1099
+
1100
+ ## 0.15.0-beta.2
1101
+ ###### _Apr 21, 2016_
1102
+
1103
+ ##### General
1104
+ - [.gitignore] Ignore `jsconfig.json` - VSCode config file (#4011)
1105
+ - [Docs] Update usage docs with muiTheme instructions (#4034)
1106
+ - [Docs] Add beta installation details to the README (#4048)
1107
+ - [Examples] Update import statements (#3992)
1108
+
1109
+ ##### Component Fixes / Enhancements
1110
+ - [AutoComplete] Change `error`, `hint`, `floatingLabel` property validators to `PropTypes.node` (#4019)
1111
+ - [Dialog] Add border to title and actions when content is scrollable (#4001)
1112
+ - [Dialog] Add support for the Alert (#4022)
1113
+ - [Dialog] Merge title style when title it a node (#4033)
1114
+ - [ListItem] Fix flexbox shrinking [issue](#4016) (#4044)
1115
+ - [Menu] Fix regression that caused nested menus to be unreachable (#3947)
1116
+ - [RaisedButton] fix hover overlay for icon only buttons, fixes #3815 (#4035)
1117
+ - [RefreshIndicator] Fix timer leaks (#3986)
1118
+ - [SelectField] Fix server side rendering (#4004)
1119
+ - [Tab] Fix the justify content when there is only one child (#4023)
1120
+
1121
+ ##### Deprecations
1122
+ - [List] Deprecate the `valueLink` property (#3936)
1123
+
1124
+
1125
+ ## 0.15.0-beta.1
1126
+ ###### _Apr 13, 2016_
1127
+
1128
+ #### React 15 compatibility :tada: :tada:
1129
+
1130
+ This release also ensures compatibility with React 15. You should update to
1131
+ this version if you need it.
1132
+
1133
+ #### Simplify import statements :tada:
1134
+
1135
+ This release changes how components are imported. You will need to update every
1136
+ import statement, Like:
1137
+
1138
+ ```js
1139
+ import RaisedButton from 'material-ui/lib/raised-button';
1140
+ import Tabs from 'material-ui/tabs/tabs';
1141
+ import Tab from 'material-ui/tabs/tab';
1142
+ ```
1143
+
1144
+ to:
1145
+
1146
+ ```js
1147
+ import RaisedButton from 'material-ui/RaisedButton';
1148
+ import {Tabs, Tab} from 'material-ui/Tabs';
1149
+ ```
1150
+
1151
+ The exact import statements for each component can be found in their respective
1152
+ documentation page.
1153
+
1154
+ Have a ton of imports? almost had a heart attack? worry not, we also made a tool
1155
+ to ease your pain. checkout the
1156
+ [readme](https://github.com/callemall/material-ui/tree/master/packages/material-ui-codemod/README.md).
1157
+
1158
+ ##### Breaking Changes
1159
+ - [Core] Improve import path for published lib (#3921)
1160
+ - [Core] PascalCase component names, reorganise directory structure (#3749)
1161
+ - [Core] Remove default theme handling from components (#3820)
1162
+
1163
+ As of now you will need to provide theme on context, see:
1164
+ http://www.material-ui.com/#/customization/themes
1165
+
1166
+ - [Core] Removed redundant default export from the main library `index.js`.
1167
+
1168
+ You will probably need to turn
1169
+
1170
+ ```js
1171
+ import Mui from 'material-ui';
1172
+ ```
1173
+ into
1174
+ ```js
1175
+ import * as Mui from 'material-ui';
1176
+ ```
1177
+
1178
+ Although we discourage you to use this library like that.
1179
+
1180
+ - [LeftNav] Rename to Drawer (#3799)
1181
+ - [GridList] Replace `rootClass` with `containerElement` (#3783) (`rootClass` was broken before this change)
1182
+ - [Core] These changes are for internal modules and will affect you only if they were directly required in your code
1183
+ 1. Rename utils/children.js (#3779)
1184
+ 1. Remove unused utils/keyLine.js (#3837)
1185
+ 1. Remove cssEvent util (#3836)
1186
+ 1. Remove utils/shallowEqual.js and replace with recompose (#3835)
1187
+ 1. Move DateTime utils to component directories (#3834)
1188
+
1189
+ ##### General
1190
+ - [Core] Update to React v15 (#3941) :tada: :tada:
1191
+ - [Core] Remove dependency on lodash.flowright (#3955)
1192
+ - [Core] update components to es6 classes (#3843) :tada: :tada:
1193
+ - [Core] Add a `material-ui-codemod` package (#3782)
1194
+ - [Core] Update export syntax, move unit tests, update test dependencies (#3785)
1195
+ - [Core] Use .js extension instead of .jsx (#3765)
1196
+ - [Themes] colorManipulator cleanup (#3966)
1197
+ - [SvgIcon] Add the new Material Icons (#3747)
1198
+ - [Docs] Add example for slider showing how to access value (#3892)
1199
+ - [Docs] Document callback signatures ( Thanks to @theosherry )
1200
+ - [IconMenu](#3732)
1201
+ - [LeftNav](#3743)
1202
+ - [List](#3748)
1203
+ - [ListItem](#3748)
1204
+ - [Popover](#3796)
1205
+ - [RadioButton](#3797)
1206
+ - [Menu](#3821)
1207
+ - [MenuItem](#3821)
1208
+ - [RaisedButton](#3839)
1209
+ - Added the following eslint rules:
1210
+ 1. Enforce `jsx-handler-names` (#3408)
1211
+ 1. Enforce `spaced-comment` (#3910)
1212
+
1213
+ ##### Component Fixes / Enhancements
1214
+ - [AutoComplete] Add `onKeyDown` property (#3853)
1215
+ - [AutoComplete] Fix the regressions (#3858)
1216
+ - [Avatar] Use semi-transparent border (#3859)
1217
+ - [DatePicker] ok/cancel labels in date pickers should be of PropTypes.node (#3869)
1218
+ - [DropDownMenu] Fix support for autoWidth and custom width (#3823)
1219
+ - [DropDownMenu] Slightly improve performance (#3707)
1220
+ - [FloatingActionButton] fixed an error when element gets focus via tab (#3885)
1221
+ - [IconButton] Fix tooltip on hover (#3878)
1222
+ - [IconMenu] Removed props.ref call (#3913)
1223
+ - [LinearProgress] Prevent instances from sharing state (#3763)
1224
+ - [ListItem] Change color of rightIcon from `grey400` to `grey600` (#3938)
1225
+ - [ListItem] Fix duplicate prepareStyles with primaryText element (#3174)
1226
+ - [ListItem] Use the new icons to follow the material spec (#3899)
1227
+ - [MenuItem] Revert flex props from #3597, fixes #3845, reopens #3531 (#3928)
1228
+ - [Overlay] Split out AutoLockScrolling (#3690)
1229
+ - [Popover] Fix rendering for nested Menus (#3806)
1230
+ - [RaisedButton] Fix for Uncaught `TypeError` when tabbing onto button (#3897)
1231
+ - [Stepper] Refactor Stepper (#3903)
1232
+ - [Tab] Change the ripple color to follow the spec (#3857)
1233
+ - [Tab] Fix centering for label with SvgIcon (#3697)
1234
+ - [TableHeaderColumn] Remove props.key calls (#3918)
1235
+ - [TableRowColumn] Remove props.key calls (#3918)
1236
+ - [Tabs] Better type checking on Tab children (#3750)
1237
+ - [TextField] Fix incorrect state in getStyles() (#3972)
1238
+ - [TimePicker] Add disabled property with example (#3778)
1239
+ - [TimePicker] Fix label for 12AM as per material spec (#3781)
1240
+ - [TimePicker] ok/cancel labels in time pickers should be of PropTypes.node (#3869)
1241
+
1242
+
1243
+ ## 0.15.0-alpha.2
1244
+ ###### _Mar 18, 2016_
1245
+
1246
+ ##### Breaking Changes
1247
+ - [Core] if you used Material-UI from npm in CommonJS environment,
1248
+ you need to add `.default` to your requires (#3648):
1249
+
1250
+ ```diff
1251
+ - const MUI = require('material-ui');
1252
+ + const MUI = require('material-ui').default;
1253
+ ```
1254
+
1255
+ If you used ES modules, you’re already all good:
1256
+ ```js
1257
+ import MUI from 'material-ui'; // no changes here :D
1258
+ ```
1259
+
1260
+ - [Core] Remove uniqueId utils (#3538)
1261
+ - [Styles] RaisedButton, FlatButton, and FloatingActionButton now properly use primary/secondary colors (#3513)
1262
+ - [Menu] Remove Paper (#3559)
1263
+ - [List] Remove Paper (#3612)
1264
+ - [TextField] Remove `valueLink` (#3699)
1265
+
1266
+ ##### New Component
1267
+ - [Stepper](#3132) ( Big Thanks to @namKolo )
1268
+
1269
+ ##### General
1270
+ - [Core] Remove gulp in favour of npm scripts for linting (#3626)
1271
+ - [Core] Update `package.json` to prevent building the `lib` after install (#3632)
1272
+ - [Docs] Hide internal properties of `MenuItem`, `Table` and `Tabs` in docs (#3589)
1273
+ - [Docs] Document `Card` subcomponent properties (#3621)
1274
+ - [Docs] Add return types (#3542)
1275
+ - [Docs] Add support for multi-line function (#3570)
1276
+ - [Docs] Document callback signatures ( Thanks to @theosherry )
1277
+ - [AutoComplete](#3550)
1278
+ - [Card](#3552)
1279
+ - [Checkbox](#3607)
1280
+ - [DatePicker](#3652)
1281
+ - [DropDownMenu](#3615)
1282
+ - [FlatButton](#3676)
1283
+ - [FloatingActionButton](#3683)
1284
+ - [FontIcon](#3693)
1285
+ - [IconButton](#3709)
1286
+ - [Tests] Add mocha grep passthrough for browser tests (#3520)
1287
+ - [Tests] Add `EnhancedButton` unit test and tweak karma config (#3512)
1288
+ - [Tests] Add `FlatButton` unit test (#3541)
1289
+ - [Tests] Add `Divider` unit test (#3527)
1290
+ - [Tests] Add `Paper` unit tests (#3528)
1291
+ - [Tests] Add `Slider` unit tests (#3688)
1292
+ - [IconBuilder] Move to packages directory (#3680)
1293
+ - Added the following eslint rules:
1294
+ 1. Enforce `operator-linebreak` (#3516)
1295
+ 1. Enforce `no-multiple-empty-lines` (#3516)
1296
+ 1. Enforce `@ignore` before comment (#3611)
1297
+
1298
+ ##### Component Fixes / Enhancements
1299
+ - [AppBar] Fix the title height variation (#3509)
1300
+ - [AutoComplete] Add key support for `dataSource` (#3662)
1301
+ - [AutoComplete] Fix browser compatibility (#3581)
1302
+ - [AutoComplete] Fix `openOnFocus` and item click (#3669)
1303
+ - [AutoComplete] Proxy focus and blur calls (#3551)
1304
+ - [AutoComplete] Set `canAutoPosition` to `false` for `Popover` (#3620)
1305
+ - [CardHeader] Handle wide titles, allow them to wrap (#3503)
1306
+ - [CardHeader] Remove `title` from injected node attributes (to avoid native tooltip) (#3534)
1307
+ - [DatePicker] Add a check to fetch current system date (#3656)
1308
+ - [DatePicker] Fix cursor pointer of the header (#3598)
1309
+ - [DatePicker] Fix selectYear range (#3496)
1310
+ - [DatePicker] Use popover for the inline mode (#3532)
1311
+ - [EnhancedButton] fix `onKeyboardFocus` being called with nullified event object (#3616)
1312
+ - [EnhancedSwitch] Remove the uniqueId as it unused (#3592)
1313
+ - [FlatButton] Fix icon alignment when no label provided (#3529)
1314
+ - [FlatButton] Fix icon styling when no label provided (#3502)
1315
+ - [FlatButton] Fix the text align issue (#3727)
1316
+ - [IconButton] Expose `disableTouchRipple` (#3659)
1317
+ - [IconMenu] Add missing default iconStyle (#3514)
1318
+ - [IconMenu] Set container as `anchorEl` when using prop 'open' (#3666)
1319
+ - [ListItem] Add stopPropagation in touch ripple to avoid touch event bubbling (#3593)
1320
+ - [MenuItem] Add flex property (#3597)
1321
+ - [Popover] Avoid nested `<noscript/>` (#3647)
1322
+ - [RaisedButton] Account for `backgroundColor` prop which was previously ignored (#3515)
1323
+ - [RaisedButton] Fix styling issues (#3479)
1324
+ - [RaisedButton] Fix the text align issue (#3727)
1325
+ - [Slider] Add keyboard support (#3237)
1326
+ - [Snackbar] Make on request close optional (#3560)
1327
+ - [Tab] Fix `style` prop being ignored (#3608)
1328
+ - [TableRowColumn] Propagate events (#3492)
1329
+ - [TextField] Add `floatingLabelFixed` property (#3646)
1330
+ - [TextField] Add `shouldComponentUpdate` function (#3673)
1331
+ - [TextField] Add the ability to call select (#3287)
1332
+ - [TextField] Fix `defaultValue` overlays `floatingLabelText` on mount (#3450)
1333
+ - [TextField] Standardize onChange callback (#3699)
1334
+ - [TimePicker] Reinstate #3030 - Add support for custom button labels (#3148)
1335
+ - [TimePicker] Remove a useless div element (#3591)
1336
+ - [Toolbar] Fix existing design flaws by using flex (#3548)
1337
+
1338
+ ##### Deprecations
1339
+ - [DatePicker] Deprecate `wordings` with `cancelLabel` and `okLabel` (#3412)
1340
+
1341
+
1342
+ ## 0.15.0-alpha.1
1343
+ ###### _Feb 27, 2016_
1344
+
1345
+ This release includes huge improvements to the implementation
1346
+ of components and utility modules. The most important improvement
1347
+ is the removal of mixins from the library, thanks to the
1348
+ [great efforts](https://github.com/callemall/material-ui/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+author%3Anewoga+style-propable)
1349
+ of @newoga :+1:
1350
+
1351
+ There are also improvements to the unit testing infrastructure. We own this
1352
+ great improvement to @nathanmarks, thanks a lot :+1:.
1353
+
1354
+ Please note that `raw-themes` are deprecated with no warning! they will be removed
1355
+ from the code with the 0.16.0 release.
1356
+
1357
+ ##### Breaking Changes
1358
+ - [Cleanup] Remove the deprecated API of `0.14.x`. (#3108)
1359
+ - [Styles] Removed all `getStyles` functions from the components (#3351)
1360
+ - [Core] Remove the `window-listenable` mixin (#3334)
1361
+ - [Core] Remove `context-pure` mixin (#3331)
1362
+ - [Core] Remove `click-awayable` mixin (#3360)
1363
+ - [Core] Utilize keycode library and remove `key-code` util (#3371)
1364
+ - [FloatingActionButton] `className` is now set on the root element (#2310)
1365
+ - [RaisedButton] `className` is now set on the root element (#3122)
1366
+ - [LeftNav] `className` and `style` are now set on the root element (#3322)
1367
+ - [Colors] Removed default export in favor of singular exports (#2825) <br>
1368
+ **Note** This can be temporarily worked around by changing <br>
1369
+ `import Colors from 'material-ui/lib/styles/colors';` <br> to <br>
1370
+ `import * as Colors from 'material-ui/lib/styles/colors';`.
1371
+ - [DatePicker] Standardize for ISO8601. (#3417)
1372
+
1373
+ ##### New Component
1374
+ - [Subheader](#3033) (Thanks to @pradel)
1375
+
1376
+ ##### General
1377
+ - [Tests] Updates to test setup and additional testing option for unit tests (#3405)
1378
+ - [Tests] Add support for codecov (#3421)
1379
+ - [Tests] Badge unit tests (#3427) (Thanks to @pradel)
1380
+ - [Tests] AppBar unit tests (#3487) (Thanks to @pradel)
1381
+ - [Tests] GridList unit tests (#3488) (Thanks to @pradel)
1382
+ - [Tests] SvgIcon unit tests (#3489) (Thanks to @pradel)
1383
+ - [Tests] FontIcon unit tests (#3490) (Thanks to @pradel)
1384
+ - [Theme] Apply overall themeing improvements (#3267, #3316, #3340, #3399)
1385
+ - [Style] Fix the prefixer tool regression (#3136)
1386
+ - [Style] Make some unthemeable elements themeable (#3269) (Thanks to @pdf)
1387
+ - [Style] Fix tap highlight color (#3429)
1388
+ - [Core] Replace merge implementation in utils/styles with Object.assign (#3124)
1389
+ - [Core] Remove dependency on utils/styles from components (#3169)
1390
+ - [Core] Remove style-propable mixin from components (#2852)
1391
+ - [Core] Remove `window-listenable` mixin from components (#3305) (Thanks to @newoga)
1392
+ - [Core] Typography moved inside muitheme (#3301)
1393
+ - [Core] Update lodash version to 4.1.0 (#3324)
1394
+ - [Core] Migrate color to muiTheme (#3314)
1395
+ - [Core] Remove usage of `isMounted()` (#3437)
1396
+ - [Docs] Add page title (#3246)
1397
+ - [Docs] DatePicker - Add disabled dates example (#3167)
1398
+ - [Docs] Upgrade dependencies (#3343)
1399
+ - [Docs] Enable GPU rasterization (#3451)
1400
+ - [Docs] Add versions to docs site (#3383)
1401
+ - [eslint] Upgrade to v2 (#3390)
1402
+ - Added the following eslint rules:
1403
+ 1. Enforce `arrow-parens` (#3207)
1404
+ 1. Enforce `prefer-template` (#3208, #3242)
1405
+ 1. Enforce `no-unneeded-ternary` (#3320)
1406
+ 1. Enforce `prefer-const` (#3315)
1407
+ 1. Enforce `jsx-space-before-closing` (#3397)
1408
+ 1. Enforce `id-blacklist` and blacklist `e` (#3398)
1409
+ 1. Enforce `padded-blocks: never` (#3493)
1410
+
1411
+ ##### Component Fixes / Enhancements
1412
+ - [AutoComplete] Added `maxSearchResults` property (#3262)
1413
+ - [AutoComplete] Apply the style property only on the root component (#3243)
1414
+ - [AutoComplete] Apply various improvement (#3214) (Thanks to @oliviertassinari)
1415
+ - [Autocomplete] Disable browser default autocomplete popup (#3253)
1416
+ - [AutoComplete] Fix the focus / blur issue (#3356) (Thanks to @oliviertassinari)
1417
+ - [Card] Removed hidden overflow (#3447)
1418
+ - [Card] Support for controlled expansion (#3258) (Thanks to @cgestes)
1419
+ - [CardActions] Allow to accept false as child (#3215)
1420
+ - [Checkbox] Disabled style error fix (#3432)
1421
+ - [DatePicker] Default to ISO-8601 DateTimeFormat & `firstDayOfWeek` (#3417)
1422
+ - [Dialog] Fix overflow (#3460)
1423
+ - [DropDownMenu] Expose Menu listStyle property (#3294)
1424
+ - [DropDownMenu] Fix `openImmediately` regression (#3384)
1425
+ - [DropDownMenu] Safari select-field fix (#3175)
1426
+ - [EnhancedButton] Fix enhanced buttons containing a link instead of a button (#3303)
1427
+ - [EnhancedSwitch] Added inputStyle prop to enhanced switch (#1693)
1428
+ - [EnhancedTextArea] Provide various style fixes (#3277)
1429
+ - [FlatBotton] Fix alignment between text and icons (#3380)
1430
+ - [FloatingActionButton] Expose Paper zDepth (#3387)
1431
+ - [IconButton] Fixed tooltip for disabled component (#3458)
1432
+ - [IconButton] Fixed tooltip ripple size for IE (#3016)
1433
+ - [IconMenu] Document `multiple` property of Menu (#3223)
1434
+ - [IconMenu] Enable `useLayerForClickAway` (#3400)
1435
+ - [IconMenu] Support MenuItem nested menuItems (#3265)
1436
+ - [InkBar] remove `&nbsp;` (#3283)
1437
+ - [LeftNav] Add a configurable zDepth (#3495)
1438
+ - [LeftNav] Add iOS momentum scroll (#2946)
1439
+ - [List] Fix issue with styling on list related components (#3278)
1440
+ - [ListItem] Fix hardcoded `secondaryTextColor` (#3288)
1441
+ - [Menu] Fix `_isChildSelected` child not recognising first child (#3165)
1442
+ - [Menu] Fix a regression that would apply the select style to all the MenuItems (#3244)
1443
+ - [Menu] Safari select-field fix (#3175)
1444
+ - [Popover] Handle the touch event on touch enabled devices (#3389)
1445
+ - [RadioButton] Allow customising icons (#3285)
1446
+ - [RaisedButton] Customizable ripple effect style (#3368)
1447
+ - [RaisedButton] Fix alignment between text and icons (#3366)
1448
+ - [Slider] Remove style-propable mixin and react-dom (#3332) (Thanks to @felipethome)
1449
+ - [SvgIcon] Fix behavior for `onMouseEnter` and `onMouseLeave` (#3481)
1450
+ - [SvgIcon] Use stateless functional component instead of `React.createClass` (#3326)
1451
+ - [Table] Send event object after click, hover, hoverOut on cell (#3002)
1452
+ - [TextField] Add textareaStyle property (#3238)
1453
+ - [TextField] Fix defaultValue behavior (#3239)
1454
+ - [TextField] Fix wrong label id (#3240)
1455
+ - [TextField] Fixed a bug where clicking on floating label and typing simultaneuosly loses keypress (#3055)
1456
+ - [TextField] Fixed ie9-ie10 click focus problem (#3193)
1457
+ - [TimePicker] Update time state on new defaultTime prop (#3095)
1458
+ - [Toggle] Fixes styling issue (#3299)
1459
+ - [ToolbarTitle] Fix overflow (#3250)
1460
+ - [TouchRipple] Abort on scroll (#3407)
1461
+
1462
+ ##### Deprecations
1463
+ - [Menu] Deprecated built in `animated` (#3216)
1464
+ - [Core] Deprecated `style-propable` mixin and `utils/styles` (#3351)
1465
+ - [Core] Deprecated `ThemeDecorator` in favor of `MuiThemeProvider` (#3267)
1466
+ - [Core] Deprecated `theme-manager` and `raw-themes` (#3267)
1467
+
1468
+
1469
+ ## 0.14.4
1470
+ ###### _Feb 02, 2016_
1471
+
1472
+ ##### General
1473
+ - [CRITICAL] Fixed a regression that completely disabled the auto-prefixer (#3142)
1474
+ - [Core] Implements prepareStyles as composition of functions in muiTheme (#2986) (Thanks to @newoga)
1475
+ - [Docs] Contributing guide (#3075)
1476
+ - [Docs] Added a `Related Projects` section (#3102)
1477
+ - [Examples] General updates (#3078)
1478
+
1479
+ ##### Component Fixes / Enhancements
1480
+ - [Tabs] Removed the calc style property (#3058)
1481
+ - [Tabs] Added icon and text (#3042)
1482
+ - [Tabs] Use `FlatButtons` for tabs (#3051)
1483
+ - [AutoComplete] Fixed regression of undefined muiTheme (#3069)
1484
+ - [List] Auto-expand SelectableList (#3039)
1485
+ - [DatePicker] Added `disabled` property (#3060)
1486
+ - [Buttons] Fixed the vertical alignment issue (#3100)
1487
+ - [RaisedButton] Fix the default value of `labelPosition` (#3115)
1488
+ - [FlatButton] Fix the default value of `labelPosition` (#3115)
1489
+
1490
+
1491
+ ## 0.14.3
1492
+ ###### _Jan 26, 2016_
1493
+
1494
+ ##### Breaking Changes
1495
+
1496
+ Note that these are not essentially breaking changes.
1497
+ Unless you have used these implementation details in your code.
1498
+
1499
+ - [Internal] Remove `controllable.js` mixin (#2889)
1500
+ - [Internal] Remove `mergeAndPrefix()` (#2886)
1501
+ - [Internal] Remove `utils/extend.js` (#2933)
1502
+ - [Internal] Remove `utils/immutability-helper.js` (#2907)
1503
+
1504
+ ##### General
1505
+ - [Examples] Move `DateTimeFormat` polyfill to the example (#3024)
1506
+ - [Docs] Add title and description to code examples, thanks to @mbrookes's hard work (#2927)
1507
+ - [Docs] Add a showcase section (#2910)
1508
+ - [Docs] Hide code examples by default (#2911)
1509
+ - [Docs] Add [Cloudcraft](https://cloudcraft.co/) to Showcase (#3036)
1510
+ - [Docs] Migrated the following pages to use the new documentation standard:
1511
+ 1. [TimePicker] (#2849)
1512
+ 1. [Table] (#2848)
1513
+ 1. [Switches] (#2872)
1514
+ 1. [Buttons] (#2874)
1515
+ 1. [AutoComplete] (#2871)
1516
+ 1. [Popover] (#2870)
1517
+ 1. [IconMenu] (#2882)
1518
+ - Added the following eslint rules:
1519
+ 1. Extend `eslint:recommended` (#2854)
1520
+ 1. `one-var` (#2855)
1521
+ 1. `brace-style` (#2855)
1522
+ 1. `react/jsx-pascal-case` (#2953)
1523
+ 1. `react/jsx-max-props-per-line` (#2953)
1524
+ 1. `react/jsx-closing-bracket-location` (#2953)
1525
+ 1. `jsx-equals-spacing` (#3035)
1526
+ - [Performance] Fix V8 deopt, leakage of `arguments` (#2876)
1527
+ - [ServerSideRendering] Make userAgent contexual (#3009)
1528
+
1529
+ ##### Component Fixes / Enhancements
1530
+ - [Slider] Avoid selection when dragging (#2827)
1531
+ - [Snackbar] Execute onDimiss callback after snackbar has closed (#2881)
1532
+ - [Table] Don't use `for...of` on table children (#2904)
1533
+ - [RenderToLayer] Fix leaking of event (#2935)
1534
+ - [FlatButton] Fix shared memory property modification (#2964)
1535
+ - [DatePicker] Add `firstDayOfWeek` and days abbreviations (#2899)
1536
+ - [ListItem] Added nestedItemStyle prop (#2990)
1537
+ - [ListItem] when disabled, `className` is ignored (#2723)
1538
+ - [EnhancedButton] Make keyup event respect `disableKeyboardFocus` (#3000)
1539
+ - [Dialog] Fix overlay scroll for nested dialogs (#2893)
1540
+ - [SvgIcons] Remove fill attributes (#3034)
1541
+ - [Paper] Allow the box shadow color to be changed (#3003)
1542
+
1543
+ ##### Deprecations
1544
+ - [DropDownIcon] Will be removed with `0.15.0` (#2994)
1545
+
1546
+
1547
+ ## 0.14.2
1548
+ ###### _Jan 08, 2016_
1549
+
1550
+ ##### General
1551
+ - [CRITICAL] Fix imports using require() style syntax (#2804) thanks @newoga
1552
+ - [Examples] Upgrade to babel 6 for browserify (#2795)
1553
+ - [Docs] Migrated the following pages to use the new documentation standard:
1554
+ 1. [RefreshIndicator] (#2799)
1555
+ 1. [Icon] (#2695)
1556
+ 1. [Lists] (#2782)
1557
+ 1. [Progress] (#2798)
1558
+ 1. [Sliders] (#2800)
1559
+ 1. [Paper] (#2797)
1560
+ 1. [Menus] (#2785)
1561
+ - Added the following eslint rules:
1562
+ 1. `react/jsx-indent` (#2808)
1563
+
1564
+ ##### Component Fixes / Enhancements
1565
+ - [DatePicker] Update slide direction (#2791)
1566
+ - [AutoComplete] Add 2 extra filters for text matching (#2755)
1567
+ - [TableRow] Fix row height in IE (#2812)
1568
+
1569
+
1570
+ ## 0.14.1
1571
+ ###### _Jan 05, 2016_
1572
+
1573
+ ##### General
1574
+ - Upgrade to babel v6 (#2620, #2709)
1575
+ - [Docs] Improve the performance of the production build (#2680)
1576
+ - [Docs] Improve the AppLeftNav for mobile (#2690)
1577
+ - [Docs] Use a single LeftNav (#2721)
1578
+ - [Docs] Migrated the following pages to use the new documentation standard:
1579
+ 1. [DatePicker] (#2622)
1580
+ 1. [GridList] (#2681)
1581
+ 1. [SelectField] (#2694)
1582
+ 1. [IconButton] (#2700)
1583
+ - Added the following eslint rules:
1584
+ 1. react/sort-comp (#2774, #2776)
1585
+
1586
+ ##### Component Fixes / Enhancements
1587
+ - [MenuItem] Fix icon position (#2661)
1588
+ - [SelectableList] Recursively extend children (#2320)
1589
+ - [SelectField] Add hintStyle (#2710)
1590
+ - [EnhancedButton] Avoid rendering `<a>` element (#2708)
1591
+ - [LeftNav] Only transition the transform property (#2730)
1592
+ - [TextField] Fix `errorText` when using `multiLine` (#2742)
1593
+ - [TimePicker] Update am/pm buttons (#2757)
1594
+
1595
+ ##### Deprecations
1596
+ - [Dialog] Deprecate width (#2753)
1597
+
1598
+
1599
+ ## 0.14.0
1600
+ ###### _Dec 25, 2015_
1601
+
1602
+ The chagnes in `0.14.0-rc1` and `o.14.0-rc2` are also included as part of this release.
1603
+ Have a look at them as well.
1604
+
1605
+ ##### General
1606
+ - [Docs] Migrated the following pages to use the new documentation standard:
1607
+ 1. [Tabs] (#2515)
1608
+ 1. [Snackbar] (#2562)
1609
+ 1. [DropDownMenu] (#2565)
1610
+ 1. [Card] (#2590)
1611
+ - Added the following eslint rules:
1612
+ 1. key-spacing (#2552)
1613
+ - [SvgIcon] Improved the code generation tasks (#2606)
1614
+ - [ES6] Use module everywhere (#2614)
1615
+ - Added a temporary bootstrap project for ReactNative to pave the way for ReactNative support (#2611)
1616
+ - Clean up CSS classes (#2630)
1617
+
1618
+ ##### Component Fixes / Enhancements
1619
+ - [SelectField] [TextField] Fixed error styling issue (#2539)
1620
+ - [TextField] Implemented optional underline (#2476)
1621
+ - [AutoComplete] Migrated to use popover (#2634)
1622
+
1623
+ ##### Deprecations
1624
+ - [DropDownMenu] [SelectField] Deprecated `menuItems`, these components are now composable. (#2565)
1625
+
1626
+
1627
+ ## 0.14.0-rc2
1628
+ ###### _Dec 15, 2015_
1629
+
1630
+ ##### Breaking Changes
1631
+
1632
+ - [Menu] Depreciation of the old menu, introduces a very small breaking change (#2443)
1633
+ - [Dialog] Removed deprecated API (#2396)
1634
+ - zIndex, rework them to be more coherent (#2444)
1635
+
1636
+ ##### General
1637
+ - Decoupled `Popover` animation from the component to increase flexibility (#2367)
1638
+ - [Tests] Migrated tests to use the new `react-addons-test-utils` package (#2401)
1639
+ - [Docs] Improvements to the documentation site (#2426, #2421, #2438, #2479, #2508)
1640
+ - [Docs] Migrated the following pages to use the new documentation standard:
1641
+ 1. [AppBar] (#2382) *also where the new standard was introduced by @oliviertassinari*
1642
+ 1. [Avatar] (#2407)
1643
+ 1. [Toolbars] (#2415)
1644
+ 1. [Badge] (#2489)
1645
+ 1. [Dialog] (#2483)
1646
+ 1. [LeftNav] (#2507)
1647
+ - Added the following eslint rules:
1648
+ 1. react/jsx-indent-props (#2377)
1649
+ 1. max-len (#2381)
1650
+ 1. wrap-multilines (#2419)
1651
+
1652
+ ##### Component Fixes / Enhancements
1653
+ - [Card] Use `preventDefault()` when handling expansion (#2495)
1654
+ - [CardHeader] Made `avatar` property optional (#2397)
1655
+ - [Checkbox] Now updates it's state when `checked` property changes (#2464)
1656
+ - [DatePicker] Fix year selection (#2410)
1657
+ - [Dialog] Added `overlayStyle` property (#2431)
1658
+ - [Dialog] Added `width` property (#2387)
1659
+ - [Divider] Initial implementation. Thanks to @newoga (#2473)
1660
+ - [DropDownMenu] Added `menuStyle` property (#2389)
1661
+ - [DropDownMenu] Now uses `Popover` (#2150)
1662
+ - [DropDownMenu] Now bubbles keyboard events (#2461)
1663
+ - [FlatButton] Adjusted background, hover and ripple colors (#2488)
1664
+ - [IconMenu] Added `open` and `onRequestChange` properties (#2383)
1665
+ - [ListItem] Added option to toggle nested list items on primary action (#2390)
1666
+ - [Menu] Fixed an error when children is only one child (#2402)
1667
+ - [Menu] Remove absolute positioning (#2455)
1668
+ - [Menu] Fixed issue when passed null children (#2429)
1669
+ - [SelectField] Fixed the propagation of underline styles (#2405)
1670
+ - [TableRow] Fixed a bug when unselectable rows could still be selected (#2503)
1671
+
1672
+ ##### Deprecations
1673
+ - The old menu components under the `material-ui/lib/menu` folder (#2443)
1674
+ - The `actions` property of `Dialog` accepting a JSON is deprecated (#2483)
1675
+ - The `menuItems` of `LeftNav` and all the related properties are now deprecated in favor of composibility (#2507)
1676
+
1677
+
1678
+ ## 0.14.0-rc1
1679
+ ###### _Dec 4, 2015_
1680
+
1681
+ ##### Breaking Changes
1682
+ - [IconMenu] removed openDirection prop in favor of anchorOrigin and targetOrigin (#2149)
1683
+
1684
+ ##### General
1685
+ - Use ES6 import / export syntax over require (#2253, #2333, #2334)
1686
+ - Dialog render-to-layer version (#2129)
1687
+ - Add declarative props to LeftNav, deprecate methods (#2180, #2351)
1688
+ - Add linting to test files (#2273)
1689
+ - Support nested menu items using Popover (#2148)
1690
+ - [DropdownMenu] add labelMember prop (#2285)
1691
+ - Add new ESLint rules (#2293, #2314, #2319, #2348, #2360, #2365, #2366)
1692
+ - Add unit tests for Dialog (#2298)
1693
+ - [AutoComplete] Support changing searchText via props (#2306)
1694
+ - [AutoComplete] dataSource prop is of type array (#2286)
1695
+ - [AppBar] add titleStyle prop (#2324)
1696
+ - [TimePicker] update as per spec (#2358)
1697
+ - [Popover] add useLayerForClickAway prop (#2359)
1698
+
1699
+ ##### Component Fixes / Enhancements
1700
+ - Fix wrong proptype for value in RadioButton (#2276)
1701
+ - Make LeftNav swipeable only from far left / right (#2263)
1702
+ - [TextField] allow rowsMax prop to equal rows prop (#2312)
1703
+ - Fix Invariant Violation error in ClickAwayable mixin (#2296)
1704
+ - [DatePicker] fix calendarTextColor context key (#2318)
1705
+ - Fix and improve examples (#2344, #2345)
1706
+ - [Dropdown][SelectField] change value PropType to React.PropTypes.any (#2352)
1707
+ - [CardActions] prevent children styles from being overridden (#2361)
1708
+
1709
+
1710
+ ## 0.13.4
1711
+ ###### _Nov 24, 2015_
1712
+
1713
+ ##### General
1714
+ - Introduced SelectableEnhance HOC to wrap List with valueLink (#1976)
1715
+ - Added color prop to LinearProgress and RefreshIndicator (#2206)
1716
+ - [AutoComplete] new component! (#2187) (thanks @yongxu)
1717
+ - [Table] added wrapperStyle prop to override table wrapper's styles (#2238)
1718
+ - Updated SVG icons (#2240)
1719
+ - [Table] added props for headerStyle, bodyStyle and footerStyle (#2246)
1720
+
1721
+ ##### Component Fixes / Enhancements
1722
+ - Fixed double ripple due to compat mouse down (#2216)
1723
+ - [RenderToLayer] iframe support for clickaway (#2210)
1724
+ - [TextField] Fixed floating label element not allowing focus (#2228)
1725
+ - [SelectField] onFocus and onBlur handlers passed to underlying TextField component (#2102)
1726
+
1727
+
1728
+ ## 0.13.3
1729
+ ###### _Nov 17, 2015_
1730
+
1731
+ ##### General
1732
+ - [Snackbar] add bodyStyle prop to style child div (#2104)
1733
+ - [DatePicker] add container prop to display DatePicker in-line or inside Dialog (#2120 and #2153)
1734
+ - [AppBar] add relative positioning for z-index to take effect (#1478)
1735
+ - [AppBar] add onTitleTouchTap prop to AppBar (#2125)
1736
+ - [Popover] new component! (#2043) (thanks @chrismcv)
1737
+ - Split [SelectField] and [TextField] doc pages (#2161)
1738
+
1739
+ ##### Component Fixes / Enhancements
1740
+ - [SelectField] onChange triggered consistently when using value prop (#1610)
1741
+ - [Dialog] fix page scrolling behind dialog after resizing (#1946)
1742
+ - [DatePicker] fix calendar height (#2141)
1743
+ - [TimePicker] allow to set time to null (#2108)
1744
+
1745
+
1746
+ ## 0.13.2
1747
+ ###### _Nov 9, 2015_
1748
+
1749
+ ##### General
1750
+ - Add tabs with slide effect (#1907)
1751
+ - Universal rendering support (#2007) (thanks @Cavitt)
1752
+ - Add labelPosition prop to buttons (#2014)
1753
+ - Add RenderToLayer component (#2042) (thanks @chrismcv)
1754
+ - Open state of of dialog now controlled through props (#1996)
1755
+ - openImmediately, show(), dismiss() deprecated
1756
+ - Update TextField docs (#2070)
1757
+ - New Badge component (#2045) (thanks @rhythnic)
1758
+ - Add import statements to components' docs pages (#2113)
1759
+
1760
+ ##### Component Fixes / Enhancements
1761
+ - Fix server side rendering (#2021)
1762
+ - Add key to TableHeaderColumn for selectAll (#2030)
1763
+ - Fix Circular Progress transition (#2047)
1764
+ - Fix Snackbar getting stuck when receiving new props (#2024)
1765
+ - iPad enhanced textarea fix (#1720)
1766
+ - Table clickAway triggers onRowSelection (#2054)
1767
+ - Theme color fixes for Slider and Toggle (#2016)
1768
+
1769
+
1770
+ ## 0.13.1
1771
+ ###### _Oct 29, 2015_
1772
+
1773
+ ##### General
1774
+ - [SVGIcons] added index.js and index-generator script (#1959)
1775
+ - [TimePicker] openDialog() function (#1939) and autoOk prop (#1940) added
1776
+ - [DatePicker] i18n support added (#1658)
1777
+ - [LeftNav] supports nested children (w/o menuItems) (#1982)
1778
+ - [Snackbar] updated for new specification (#1668)
1779
+ - [Tabs] added tabTemplate prop (#1691)
1780
+
1781
+ ##### Component Fixes / Enhancements
1782
+ - [TextArea] height issue fixed (#1875)
1783
+ - [GridList] doc added (#1948) with code examples (#1988)
1784
+ - [TextField] fixed custom theme color hiding backgroundColor (#1989)
1785
+ - [TimePicker] added style and textFieldStyle props (#1949)
1786
+ - [Card] text color is now pulled from theme (#1995)
1787
+
1788
+
1789
+ ## 0.13.0
1790
+ ###### _Oct 21, 2015_
1791
+
1792
+ ##### Breaking Changes
1793
+ - Material-UI for React 0.14.x
1794
+
1795
+ ##### Component Fixes / Enhancements
1796
+ - FloatingActionButton now has iconStyle prop (#1575)
1797
+ - Card title and subtitle props can be any node (#1950)
1798
+
1799
+
1800
+ ## 0.12.5
1801
+ ###### _Oct 21, 2015_
1802
+
1803
+ v0.12.4 should have really been v0.13.0 as it breaks compatibility with React 0.13.3. This version fixes that. We reverted some commits (related to React 0.14.0 support) from v0.12.4 to bring to you v0.12.5 that works as expected.
1804
+
1805
+ ##### Component Fixes / Enhancements
1806
+ - DatePicker performance has been improved (#1905)
1807
+ - Docs code now follows ESLint rules more strictly (#1778)
1808
+ - Removed duplicate keys in component definitions (#1933)
1809
+
1810
+
1811
+ ## 0.12.4
1812
+ ###### _Oct 19, 2015_
1813
+
1814
+ **This version is not compatible with React 0.13.x.** If you're on React 0.13.x, use Material-UI v0.12.5 instead.
1815
+
1816
+ ##### General
1817
+ - React 0.14 compatible
1818
+
1819
+ ##### Component Fixes / Enhancements
1820
+ - ThemeDecorator supports props (#1841)
1821
+ - Full RTL support included (#1674)
1822
+ - react-draggable dependency removed for Slider (#1825)
1823
+
1824
+
1825
+ ## 0.12.3
1826
+ ###### _Oct 7, 2015_
1827
+
1828
+ ##### Component Fixes / Enhancements
1829
+ - Quick-fix version until react 0.14 support is somewhat stable
1830
+ - Changed react dependency to ~0.13 in package.json (#1836)
1831
+
1832
+
1833
+ ## 0.12.2
1834
+ ###### _Oct 6, 2015_
1835
+
1836
+ ##### General
1837
+ - NEW GridList component and documentation! Thanks to @igorbt (#1320)
1838
+
1839
+ ##### Component Fixes / Enhancements
1840
+ - Added back canvasColor to theme palette (#1762)
1841
+ - Added hintStyle prop to TextField (#1510)
1842
+ - Add isScrollbarVisible function to table (#1539)
1843
+ - Add rowsMax prop to EnhancedTextarea (#1562)
1844
+ - Tab "item three" renamed on docs site (#1775)
1845
+ - Fixed docs server to run on Windows (#1774)
1846
+ - FlatButton now has a backgroundColor prop (#1561)
1847
+ - Fixed DropdownMenu buggy value prop check (#1768)
1848
+
1849
+
1850
+ ## 0.12.1
1851
+ ###### _Sep 28, 2015_
1852
+
1853
+ ##### Component Fixes / Enhancements
1854
+ - Fix broken documentation site
1855
+ - Fix theme display switch problem in doc (#1696)
1856
+ - Fix typo in src/card-expandable.jsx (#1724)
1857
+ - Fix broken link to v0.12.0 release tag
1858
+ - Use correct require calls
1859
+ - for react addons (#1729)
1860
+ - for raw themes (#1742)
1861
+ - Remove hard-coded color values from theme-manager
1862
+ - Use consistent values from raw theme (#1746)
1863
+
1864
+
1865
+ ## 0.12.0
1866
+ ###### _Sep 25, 2015_
1867
+
1868
+ ##### Breaking Changes
1869
+ - Theming has been re-done so that material-ui components can be used without having to worry about passing a theme (all components implement a default theme) (#1662)
1870
+ - There's now a concept of `mui theme` and `raw theme`, `mui theme` is produced from `raw theme`
1871
+ - `ThemeManager` has been changed, no longer needs `new` in call
1872
+ - `ThemeManager` produces `mui theme` from `raw theme`. Raw themes may be user-defined.
1873
+ - Functions in `ThemeManager` allow to modify theme variables. Component-level styles may be overriden in the `mui theme`.
1874
+ - See new documentation [here](http://material-ui.com/#/customization/themes)
1875
+ - Function names in the context-pure mixin have been changed (#1711)
1876
+ - `getContextProps()` has been changed to `getRelevantContextKeys()`
1877
+
1878
+ ##### General
1879
+ - Updated dependency of `react-tap-event-plugin` (#1714)
1880
+
1881
+ ##### Component Fixes / Enhancements
1882
+ - Dialog component (#1717)
1883
+ - `actions` now has `id` property
1884
+ - Fixed a bug in dialog where a faulty check caused an error in console
1885
+ - Text field ipad scrolling in dialog
1886
+
1887
+
1888
+ ## 0.11.1
1889
+ ###### _Sep 15, 2015_
1890
+
1891
+ ##### Component Fixes / Enhancements
1892
+ - DatePicker - Updated to new design specs (#1266)
1893
+ - LeftNav - Fix sidebar position for browsers that don't support transform3d (#1269)
1894
+ - TextField - Added props to override underlineStyle when disabled (#1493)
1895
+
1896
+
1897
+ ## 0.11.0
1898
+ ###### _Aug 24, 2015_
1899
+
1900
+ ##### Breaking Changes
1901
+ - The Table component is now composable. (#1199)
1902
+ - JSON objects to create the table and the table component will no longer generate the table for you.
1903
+ The docs site provides a complete example of how a table might look: http://material-ui.com/#/components/table.
1904
+ The example also includes a 'super header' and 'super footer' row.
1905
+ - **Upgrade Path:** Instead of passing in the raw JSON data, you'll need to generate the appropriate
1906
+ TableHeader/TableRow/TableHeaderColumn components and pass them in as children. The same should be applied
1907
+ to the rowData and the footer.
1908
+ - Tabs can now be controlled. In order to make this work we had to change the parameters being passed back to
1909
+ the `onChange` event to: `onChange(value, e, tab)`. Where value is the value of the tab that it was changed
1910
+ to, e is the event, and tab is the actual tab component. (#1232, #1235)
1911
+ - Added a new `static` flag to the ThemeManager that defaults to `true`. If you're mutating your theme variables
1912
+ after the app initializes, set this flag to `false`. This will allow us to perform some optimizations to
1913
+ components that require theme variables. (#1397)
1914
+ - ListItem (#1438, #1105)
1915
+ - Nested list items should no longer be passed in as children. Use the `nestedItems` prop instead.
1916
+ - The `open` prop has been renamed to `initiallyOpen`.
1917
+ - Removed classable mixin
1918
+ - This mixin was no longer used in the library. Removing it allowed us to get rid of the `classnames`
1919
+ dependency. If you were using this mixin in your own projects, you'll need to pull the source and manually
1920
+ include it.
1921
+
1922
+ ##### Component Fixes / Enhancements
1923
+ - Buttons - Fixed a bug that caused buttons to not gain keyboard focus in some cases (#1485, #1453, #1458)
1924
+ - Card
1925
+ - Properly merge `CardAction` and `CardExpandable` styles. (#1376)
1926
+ - Added Right-To-Left support to `CardExpandable`. To use this, set `isRtl` to `true` in the theme. (#1408)
1927
+ - DatePicker - Fixed an error that occurred when using valueLink (#1400)
1928
+ - DropDownMenu - Added `disabled` prop (#1406)
1929
+ - FlatButton - Added `labelPosition` prop. (#1286)
1930
+ - InkBar - Added color prop and inkBar.backgroundColor to theme variables. (#1244)
1931
+ - Ripple
1932
+ - Fixed display glitch on Safari (#1420)
1933
+ - Fixed an error when ripples were unMounted (#1416)
1934
+ - SelectField
1935
+ - Added `floatingLabelStyle` prop (#1463 #1450)
1936
+ - Slider
1937
+ - Fixed a bug when setting the width attr (#1368)
1938
+ - Fixed a bug with disabled sliders (#1417)
1939
+ - Fixed a focus style glitch and other style problems (#1448, #1451, #1468)
1940
+ - Snackbar - Added onShow and onDismiss (#1390)
1941
+ - Table - Ensure that the table component properly keeps track of selected rows (#1325)
1942
+ - TextField
1943
+ - Added `underlineFocusStyle` prop (#1422, #1419)
1944
+ - `hintText` can now be a `string` or `element` (#1424, #1202)
1945
+ - TimePicker
1946
+ - Fixed a bug that caused the am/pm selector to switch (#1440)
1947
+ - Fixed a bug that caused defaultTime to not be set (#1466)
1948
+ - Tooltip - Probably center tooltips when tooltip text changes (#1205)
1949
+ - Theme - Added `setContentFontFamily` (#1405)
1950
+
1951
+
1952
+ ## 0.10.4
1953
+ ###### _Aug 8, 2015_
1954
+
1955
+ ##### Component Fixes / Enhancements
1956
+ - TouchRipple - Fixed a bug that caused onClick to not fire on the first click (#1370)
1957
+
1958
+
1959
+ ## 0.10.3
1960
+ ###### _Aug 8, 2015_
1961
+
1962
+ ##### General
1963
+ - We've set up the project to perform automated tests - now we just need to increase our test coverage. :) (#1331)
1964
+ - The style auto-prefixer now caches browser test results so that it only has to perform them once.
1965
+
1966
+ ##### New Components
1967
+ - RefreshIndicator (#1312)
1968
+
1969
+ ##### Component Fixes / Enhancements
1970
+ - AppBar - showMenuIconButton now only affects the icon next to the title (#1295, #1182)
1971
+ - CardMedia - CardMedia children styles are now being properly merged (#1306)
1972
+ - Dialog - fixed a bug that caused the dialog height to be incorrect on window resize (#1305)
1973
+ - FloatingActionButton - Added backgroundColor and disabledColor props (#1329)
1974
+ - FocusRipples now only get rendered when needed.
1975
+ - IconMenu - Added isOpen() (#1288)
1976
+ - LeftNav
1977
+ - Added menuItemClassName, menuItemClassNameSubheader, menuItemClassNameLink props (#1318)
1978
+ - Fixed a display problem that cuased icons to not be the correct color (#1324)
1979
+ - ListItem - fixed incorrect styling on disabled list items (#1350)
1980
+ - SelectField
1981
+ - Fixed a bug that happened when select field was controlled and the value was undefined (#1227)
1982
+ - Fixed error text positioning (#1341, #1111)
1983
+ - Added errorStyle prop (#1341)
1984
+ - Snackbar - Clickaway is now properly bound when openOnMount is true (#1327)
1985
+ - Tabs - Added contentContainerClassName prop (#1285)
1986
+ - TextField - Added underlineStyle prop (#1343)
1987
+ - TimePicker - Added pedantic prop (#1275, #1173)
1988
+
1989
+
1990
+ ## 0.10.2
1991
+ ###### _Jul 29, 2015_
1992
+
1993
+ ##### Breaking Changes (Missed in the original release notes.)
1994
+ - Changed `date-picker/index.js` to expose DatePicker and DatePickerDialog.
1995
+ Hence `require('material-ui/lib/date-picker')` no longer works. Use
1996
+ `require('material-ui/lib/date-picker/date-picker')` instead.
1997
+
1998
+ ##### General
1999
+ - Replaced onMouseOver / onMouseOut with onMouseEnter / onMouseLeave to achieve hover affects.
2000
+ This prevented extra unnecessary renders from happening. (#1190)
2001
+ - All svg icons inside the /svg-icons folder now uses the PureRenderMixin.
2002
+
2003
+ ##### Icon Builder
2004
+ - Added tests, build process, file template, and file suffix (#1130, #1127, #1126, #1125, #1139)
2005
+
2006
+ ##### Component Fixes / Enhancements
2007
+ - AppBar - Fixed a styling bug in Safari (#1226)
2008
+ - Cards can now expand and collapse (#1060)
2009
+ - DatePicker
2010
+ - Allow using DatePicker as a controlled input (#1170)
2011
+ - Added valueLink support and openDialog() (#1213)
2012
+ - Fixed a bug that caused dates to get selected when switching months (#1243)
2013
+ - Avoid handling keyboard events when calendar is not active (#1245)
2014
+ - Fixed display glitch on Firefox (#1242, #1248)
2015
+ - Dialog
2016
+ - Hitting the ESC key no longer closes the window if modal is set to true (#1187, #1162)
2017
+ - The onShow event now called after all contents in the dialog have been rendered. (#1198)
2018
+ - DropDownMenu - Clicking away no longer triggers other click events to happen (#1177, #1174)
2019
+ - FocusRipples now only render when actually shown.
2020
+ - IconMenu
2021
+ - Fixed a bug that caused a scrollable menu to jump after selecting an item.
2022
+ - Fixed keyboard focus when user hits ESC.
2023
+ - LeftNav
2024
+ - Added some Perf improvements (#1184)
2025
+ - Fixed a bug that caused onNavOpen to sometimes not fire (#1225)
2026
+ - Added disableSwipeToOpen prop (#1279)
2027
+ - Menu
2028
+ - Performance improvements when opening a menu.
2029
+ - Added animated prop.
2030
+ - RaisedButton - Fixed a bug that caused rounded corners not to round (#1048)
2031
+ - SelectField - Now passes the index and payload back in the onChange callback (#1193, #1194)
2032
+ - Slider - Fixed a bug that caused value to not be set correctly (#1251)
2033
+ - Snackbar - Extra props are now being passed down to the root (#1260)
2034
+ - SvgIcon - Added code to remove some unnecessary renders on hover.
2035
+ - Toolbar - Fixed display glitch on Firefox (#839, #1248)
2036
+
2037
+
2038
+ ## 0.10.1
2039
+ ###### _Jul 13, 2015_
2040
+
2041
+ ##### Component Fixes / Enhancements
2042
+ - CircularProgress - Fixed animation bug in Safari (#1093, #863)
2043
+ - Dialog
2044
+ - `contentClassName` is now being passed down to the appropriate child (#1122)
2045
+ - Fixed max height on vertically scrollable dialogs (#1153, #1100)
2046
+ - DropDownMenu
2047
+ - Fixed display height (#1123)
2048
+ - Fixed display height when menu items change (#1145)
2049
+ - IconMenu - Added `closeOnItemTouchTap` prop (#1156)
2050
+ - LeftNav - Performance improvements during show/hide (#1137)
2051
+ - SelectField - `errorText` is now being passed down to underlying `textField` (#1131)
2052
+ - Table - Added static width to checkbox columns (#1128)
2053
+ - Tabs - Added `inkBarStyle` prop (#1154)
2054
+ - TextField - `errorStyle` prop is now being properly merged (#1116)
2055
+
2056
+
2057
+ ## 0.10.0
2058
+ ###### _Jul 9, 2015_
2059
+
2060
+ ##### Breaking Changes
2061
+ - Removed `input.jsx` file. This component was deprecated long ago, but was never removed from the project.
2062
+ - Buttons now default to a type of `button` instead of the browser's default of `submit`. We found that
2063
+ most of the buttons in our apps were not submit buttons and it was more intuitive to default to `button`.
2064
+ If you need a submit button, be sure to pass in a type of `submit`. (#1017)
2065
+ - The `DialogWindow` component was refactored into `Dialog`. `DialogWindow` was never documented and was just
2066
+ a lower level component that was used by `Dialog`. It was, however, exposed on the main `index.js` and has
2067
+ since been removed. If you were using `DialogWindow` before, you should be able to safely use
2068
+ `Dialog` instead.
2069
+
2070
+ ##### New Components
2071
+ - SvgIcons & Icon Builder
2072
+ - We've created SvgIcon versions of all the
2073
+ [material-design-icons](https://github.com/google/material-design-icons). These SvgIcon
2074
+ components can be found in the `/lib/svg-icons` directory and were not added to the main `index.js`
2075
+ file. To use these icons, require them directly: `require('material-ui/lib/svg-icons/action/face')`.
2076
+ These icons were created using a script that crawls the icon repo and generates the
2077
+ appropriate `js` and `jsx` files and can be found in the `/icon-builder` directory.
2078
+ - Menu, MenuItem, MenuDivider
2079
+ - This is a new implementation of menus and menu items. With it comes:
2080
+ - better composability
2081
+ - scrollable menus
2082
+ - better transitions
2083
+ - better keyboard access
2084
+ - selectable with value and valueLink
2085
+ - We're working on migrating some of our other components to use this new implementation. Until that's
2086
+ thats done, require these components directly if you'd like to use them:
2087
+ `require('material-ui/lib/menus/menu')`.
2088
+ - IconMenu
2089
+ - This component replaces `DropDownIcon` and has all of the new menu features mentioned above.
2090
+
2091
+ ##### Component Fixes / Enhancements
2092
+ - AppBar
2093
+ - IconButton styles are now being properly merged (#967)
2094
+ - FlatButtons are now being properly styled (#967)
2095
+ - AppCanvas - AppBar child styles can now be overridable (#903)
2096
+ - Avatar - Added `size` prop (#945)
2097
+ - CardMedia - Styles are now being properly merged using the `mediaStyle` prop (#1004)
2098
+ - CircularProgress - Added `color` and `innerStyle` prop (#928)
2099
+ - DatePicker
2100
+ - Prevent root styles from propagating to child input (#991)
2101
+ - Fixed DatePicker year/month navigation buttons (#1081, #1075)
2102
+ - Dialog
2103
+ - Window scrolling is now enabled on unmount as well (#946)
2104
+ - Allow dialog window to scroll for long content (#1045, #525)
2105
+ - Drastically improved dialog performance (#1059)
2106
+ - Dialogs now honor modal property. (#1092)
2107
+ - Fixed vertical centering on smaller screen sizes (#1095)
2108
+ - FloatingActionButton - Now accepts `FontIcon` and `SvgIcon` as children (#967, #894)
2109
+ - FontIcon - Now supports `material-icon` ligatures (#952, #1007)
2110
+ - IconButton
2111
+ - Added `tooltipPosition` prop (#921)
2112
+ - Added `tooltipStyles` prop (#1010, #1005)
2113
+ - Pass iconStyle props to every children (#967)
2114
+ - Now supports `material-icon` ligatures (#1024, #1013)
2115
+ - LeftNav - Fixed swipe gesture to open / close (#868, #848, #998, #997)
2116
+ - List - Added `zDepth` prop.
2117
+ - ListItem
2118
+ - Fixed display glitch on touch devices (#858)
2119
+ - List items can now be keyboard focused
2120
+ - Allow drop downs to be displayed inside a list item (#978)
2121
+ - Fixed a bug that caused rightIconButton events to not propagate (#1055)
2122
+ - List Items can now be nested (#918)
2123
+ - Added `primaryText` prop (#1073)
2124
+ - Menu
2125
+ - Fixed a bug that caused closed menu to be selectable (#913)
2126
+ - Fixed menu height and width when menu items change (#1012, #805, #1014)
2127
+ - Subheader styles are now being properly merged (#950)
2128
+ - MenuItems now properly renders icons (#956)
2129
+ - Overlay
2130
+ - Added to main `index.js` (#955)
2131
+ - Fix issue where Overlay can prevent the body from scrolling (#1058, #897)
2132
+ - RaisedButton
2133
+ - Fixed a display glitch when changing the button's height (#937, #765)
2134
+ - Added `backgroundColor`, `labelColor`, `disabledBackgroundColor`, `disabledLabelColor` props (#965)
2135
+ - Added `fullWidth` prop (#989)
2136
+ - SelectField
2137
+ - Fixed menu and error text display glitches (#922)
2138
+ - Added hint text functionality (#966)
2139
+ - Fixed display problem when `floatingLabelText` is set (#976)
2140
+ - Fixed font size (#1027)
2141
+ - Slider
2142
+ - `className` can now be set (#938, #713)
2143
+ - Added min/max prop validation (#1070, #899)
2144
+ - Snackbar
2145
+ - Root styles are not being merged properly (#925)
2146
+ - Added `autoHideDuration` prop (#1050, #958)
2147
+ - Clicking slider track advances the slider knob. (#1089, #1074)
2148
+ - Table
2149
+ - Fixed `displayRowCheckbox` prop (#935)
2150
+ - Table rows can be selected in the rowData configuration (#1023)
2151
+ - Removed duplicate table calls and support multiple tables (#954, #1087, #1084)
2152
+ - Tab - Added `contentContainerStyle` prop (#953)
2153
+ - Tabs - Fixed a bug that caused inkbar to not display properly (#1015, #940)
2154
+ - TextField
2155
+ - Fix error when setting the value of the textfield `input`. (#959)
2156
+ - Style fixes for floating label (#980)
2157
+ - Fixed display glitch for long hint text and error text (#987, #438, #439)
2158
+ - Fixed display problem when value is 0 (#1090)
2159
+ - Added `errorStyle` prop (#1079)
2160
+ - TimePicker - Fixed key warnings (#1018)
2161
+ - Toolbar
2162
+ - Fixed display glitch with DropDownIcons (#917, #904)
2163
+ - Styles are now being properly merged for `DropDownMenu`, `DropDownIcon`, `RaisedButton`, `FontIcon` (#965)
2164
+
2165
+
2166
+ ## 0.9.2
2167
+ ###### _Jun 20, 2015_
2168
+
2169
+ ##### New Components
2170
+ - SelectField (#846)
2171
+ - Card, CardActions, CardHeader, CardMedia, CardText, CardTitle (#857)
2172
+ - Table (#890)
2173
+
2174
+ ##### Components
2175
+ - AppBar - Long AppBar titles now render ellipses (#875)
2176
+ - Buttons
2177
+ - Added containerElement prop (#850)
2178
+ - Fixed styling for disabled link buttons
2179
+ - DropDownMenu - Added keyboard functionality (#846)
2180
+ - FontIcon - Added color and hoverColor props
2181
+ - ListItem
2182
+ - Fixed display problem with Single line checkboxes (#854)
2183
+ - Added rightIconButton prop
2184
+ - Slider - Added step functionality (#860)
2185
+ - Switches - Added labelStyle prop (#871)
2186
+ - SvgIcon - Added color and hoverColor props
2187
+ - TextField - Made element styles overridable (#864)
2188
+ - TimePicker
2189
+ - Fixed clock functionality for various browsers (#840)
2190
+ - Fixed clock numbers positioning for Safari (#870)
2191
+ - Fixed clock handles on Android Chrome (#873)
2192
+ - Toggle
2193
+ - Made element styles overridable (#855)
2194
+ - Fixed style bug on IE 10, 11 (#885)
2195
+ - Toolbar - Fixed error when a child element is null (#847)
2196
+
2197
+ ##### Theming
2198
+ - Theme spacing can now be overriden (#879)
2199
+
2200
+
2201
+ ## 0.9.1
2202
+ ###### _Jun 14, 2015_
2203
+
2204
+ ##### General
2205
+ The following components have been modified to allow for style overrides:
2206
+ Radio Button Group, Radio Button, Enhanced Switch Label, Text Field, Toggle, Checkbox (#807)
2207
+
2208
+ ##### New Components
2209
+ - List, ListItem, ListDivider, Avatar (#836)
2210
+
2211
+ ##### Components
2212
+ - Checkbox - Added checkedIcon and unCheckedIcon props. This is useful to create icon toggles.
2213
+ - Dialog - Fixed a bug with the open immediately flag (#810)
2214
+ - DropDownIcon - Added support for icon ligature (#806)
2215
+ - Menu - Fixed a style problem (#843)
2216
+ - RadioButtonGroup - Fixed a bug with mapping Radio children (#820)
2217
+ - Slider - Fixed a glitch that happened when click on the slider handle (#833)
2218
+ - TextField - Added fullWidth prop (#827)
2219
+ - TimePicker
2220
+ - Fixed a bug with the defaultTime setting (#822)
2221
+ - Fixed clock handles on Firefox (#825)
2222
+
2223
+
2224
+ ## 0.9.0
2225
+ ###### _Jun 9, 2015_
2226
+
2227
+ ##### Breaking
2228
+ We've cleaned up some of our click/tap events. (#771) Upgrade should be straight forward, please see below:
2229
+ - DropDownIcon - closeOnMenuItemClick has been replaced with closeOnMenuItemTouchTap.
2230
+ - Menu - onItemClick has been removed; use onItemTap instead.
2231
+ - MenuItem - onClick event has been removed; use onTouchTap instead.
2232
+
2233
+ ##### General
2234
+ - ClickAwayable is now bound to onTouchTap instead of onClick (#766)
2235
+
2236
+ ##### Components
2237
+ - AppBar will now render its children (#725)
2238
+ - DatePicker will now properly handle defaultDate prop changes (#722)
2239
+ - Dialog actions now respond to onTouchTap (#752)
2240
+ - LeftNav
2241
+ - Fixed line height style bug (#742)
2242
+ - Fixed a bug that caused the LeftNav to immediately close on iOS full screen mode (#751, #366)
2243
+ - Menu
2244
+ - Will now adjust its height when props change (#544, #203)
2245
+ - MenuItemStyle prop is now passed down to nested menus (#802)
2246
+ - RadioButtonGroup can now have its styles overridden (#768)
2247
+ - RaisedButtons - Fixed a bug that caused incorrect transitions (#731, #702)
2248
+ - SvgIcon - ViewBox can now be passed in as a prop (#747)
2249
+ - Tabs - Components inside tabs now keep their state when switching between tabs (#700, #450)
2250
+ - TextField
2251
+ - Multi-line text fields can now be initialized with a certain number of rows (#693)
2252
+ - Fixed style bug that caused width to not be set on disabled text-fields
2253
+ - Fixed style bug that caused focus underline to be black
2254
+ - Fixed style problem that caused text to jump on multi-line inputs
2255
+ - Theme (New)
2256
+ - This is a high order component that can be used to set your theme overrides (#797)
2257
+
2258
+
2259
+ ## 0.8.0
2260
+ ###### _May 24, 2015_
2261
+
2262
+ ##### Breaking Changes
2263
+ - Refactored all CSS into Javascript (#30, #316)
2264
+ - All Material-UI components now have their styles defined inline. This solves
2265
+ many problems with CSS as mentions in [@vjeux's presentation](https://speakerdeck.com/vjeux/react-css-in-js)
2266
+ such as polluting the global namespace with classes that really should be
2267
+ component specific. In addition to the benefits mentioned in the
2268
+ presentation, inline styles allow Material-UI to become CSS preprocessor
2269
+ agnostic and make Themeing much more dynamic and simple.
2270
+ [Read our CSS in JS discussion](https://github.com/callemall/material-ui/issues/30)
2271
+ - Upgrade path:
2272
+ - *If you are overriding component CSS classes:* Redefine your overrides as
2273
+ an object following [React's inline styles format](https://facebook.github.io/react/tips/inline-styles.html),
2274
+ then pass it into the material-ui component via the `style` prop. These
2275
+ changes are applied to the root element of the component. If you are
2276
+ overriding a nested element of the component, check the component's
2277
+ documentation and see if there is a style prop available for that nested
2278
+ element. If a style prop does not exist for the component's nested element
2279
+ that you are trying to override, [submit an issue](https://github.com/callemall/material-ui/issues/new)
2280
+ requesting to have it added.
2281
+ - *If you are using any of Material-UI's Less files:* These files have been
2282
+ refactored into their [own javascript files](https://github.com/callemall/material-ui/tree/css-in-js/src/styles)
2283
+ and can be accessed like so `var FILENAME = require('material-ui').Styles.FILENAME;`.
2284
+ Material-UI has moved away from being a CSS Framework to being simply a
2285
+ set of React components.
2286
+ - Paper component no longer generates nested divs (#601)
2287
+ - This allowed us to simplify styling of paper containers. As a result, styling the inner div is no longer necessary.
2288
+
2289
+ ##### General
2290
+ - Themes have been added (#202)
2291
+ - Requiring individual components is now supported (#363)
2292
+ - An example would be: `var SvgIcon = require('material-ui/lib/svg-icon);`
2293
+ - The `/lib` folder in Material-UI contains the file structure needed when referencing individual components.
2294
+
2295
+ ##### Components
2296
+ - Date Picker
2297
+ - Added AutoOK Prop (#658)
2298
+ - Added ability to specify min and max dates (#658)
2299
+ - Added Year Selector (#658)
2300
+ - Dialog now repositions on screen resize (#597)
2301
+ - Left Nav will now close with a swipe gesture (#614)
2302
+ - Linear and Circular Progress Indicators - NEW (#632)
2303
+ - TimePicker - NEW (#589)
2304
+
2305
+
2306
+ ## 0.7.5
2307
+ ###### _Apr. 27, 2015_
2308
+
2309
+ ###### General
2310
+ - Removed deprecation warnings by replacing `this.getDOMNode()` with `React.findDOMNode()` (#558)
2311
+ - Replaced `process.NODE_ENV` with `process.env.NODE_ENV` (#573)
2312
+
2313
+ ##### Components
2314
+ - DropDownMenu
2315
+ - Fixed `props is not defined` error when `onChange` is invoked (#556)
2316
+ - Floating Action Button
2317
+ - Fixed alignment bug on Chrome when using FAB as a link (#574)
2318
+
2319
+
2320
+ ## 0.7.4
2321
+ ###### _Apr. 21, 2015_
2322
+
2323
+ ##### General
2324
+ - Updated to react v0.13
2325
+
2326
+ ##### Components
2327
+ - AppBar
2328
+ - Fixed IE toString.Call() issue (#518, #468)
2329
+ - Buttons
2330
+ - Button events now do not fire on disabled buttons (#512)
2331
+ - Fixed rapid keyboard tabbing issue (#528)
2332
+ - DatePicker
2333
+ - Added autoOk, minDate, and maxDate props (#538)
2334
+ - Dialog
2335
+ - Fixed IE toString.Call() issue (#518, #468)
2336
+ - Added modal prop (#523)
2337
+ - Fixed warnings caused by overwriting props (#500)
2338
+ - Added ability to give an action button autofocus (#552)
2339
+ - DropDownMenu
2340
+ - Handle selectIndex less than 0 (#480)
2341
+ - Fixed issue of using this component outside strict mode (#533)
2342
+ - LeftNav
2343
+ - Added onNavOpen & onNavClose events (#495)
2344
+ - Switches
2345
+ - Fixed errors on disabled switches on mobile (#476)
2346
+
2347
+
2348
+ ## 0.7.3
2349
+ ###### _Apr. 1, 2015_
2350
+
2351
+ ##### General
2352
+ - Updated mui to use peer dependency changes (#471)
2353
+ - Replaced `DOMIdable` with `UniqueId` (#490)
2354
+
2355
+ ##### Components
2356
+ - Dialog
2357
+ - Changed `title` prop to accept node types instead of just strings (#474)
2358
+ - Link Menu Item
2359
+ - Fixed anchor attribute name (#493)
2360
+ - Menu
2361
+ - Nested menus expand when hovered (#475)
2362
+
2363
+
2364
+ ## 0.7.2
2365
+ ###### _Mar. 25, 2015_
2366
+
2367
+ ##### General
2368
+ - Updated react-draggable2 dependency (#391)
2369
+ - Updated react and peer dependecies to React v0.13 (#452)
2370
+
2371
+ ##### Components
2372
+ - Date Picker
2373
+ - Added `onShow` and `onDismiss` props (#399)
2374
+ - Dialog
2375
+ - Fixed scrolling issue when opened immediately (#406)
2376
+ - `onShow` is now called when opened immediately (#453)
2377
+ - Flat Button
2378
+ - Disabled primary buttons use disabled styling over primary (#432)
2379
+ - Floating Action Button
2380
+ - Fixed zdepth to update when `disabled` prop changes (#390)
2381
+ - Disabled secondary buttons use disabled styling over secondary (#432)
2382
+ - Left Nav
2383
+ - Scrolling is prevented when displayed (#406)
2384
+ - Menu
2385
+ - Menu and menu-related components have been moved into `js/menu/*` (#402)
2386
+ - Added LinkMenuItem component (#402)
2387
+ - Menu Item
2388
+ - Added `disable` prop (#402)
2389
+ - Overlay
2390
+ - Now control scroll un/locking. (#406)
2391
+ - Paper
2392
+ - Added `innerStyle` prop (#418)
2393
+ - Raised Button
2394
+ - Disabled primary buttons use disabled styling over primary (#432)
2395
+ - Tabs
2396
+ - Added `initialSelectedIndex` prop (#389)
2397
+
2398
+
2399
+ ## 0.7.1
2400
+ ###### _Mar. 4, 2015_
2401
+
2402
+ ##### General
2403
+ - Allow removal of debug code in production builds (#349)
2404
+
2405
+ ##### Components
2406
+ - AppBar
2407
+ - Fixed a styling bug that caused icons not to show (#336)
2408
+ - Title prop can now be an element (#361)
2409
+ - Added iconClassNameLeft, iconElementLeft, iconElementRight props (#367)
2410
+ - Date Picker
2411
+ - Fixed a bug that caused the date picker dialog window to ghost on small screen widths (#342)
2412
+ - Dialog Window
2413
+ - Window no longer loses scroll position after opening a dialog window. (#386)
2414
+ - DropDown Icon
2415
+ - Added closeOnMenuItemClick prop (#376)
2416
+ - Flat Buttons
2417
+ - Fixed a styling bug with touch ripples.
2418
+ - Icon Buttons
2419
+ - Fixed a styling bug with touch ripples. (#341)
2420
+ - Menu Item
2421
+ - Link targets can now be set on menu items. (#350)
2422
+ - Slider
2423
+ - Fixed percentage calculation in getInitialState (#382)
2424
+ - Tabs
2425
+ - The onChange event now passed in the tabIndex, and tab to the callBack (#384)
2426
+ - Text Field
2427
+ - Added onEnterKeyDown prop. (#328)
2428
+ - Fixed a bug with setting multiLine values (#356, #357)
2429
+
2430
+
2431
+ ## 0.7.0
2432
+ ###### _Feb. 13, 2015_
2433
+
2434
+ ##### Breaking Changes
2435
+ - Removed Icon component - Replaced with FontIcon and SvgIcon (#318, #125, #148)
2436
+ - The main motivation here is to give developers more control over which font icons to include
2437
+ in their project. Instead of automatically including all material design icons in material-ui,
2438
+ developers can now create their own custom icon font file and just pass the icon className into
2439
+ the FontIcon component. [Read more about FontIcons](http://www.material-ui.com/#/components/icons).
2440
+ - Upgrade path:
2441
+ - If you were using the Icon component before, you'll need switch to either using FontIcon or SvgIcon.
2442
+ For FontIcon, create a custom font file and include it in your project and just pass the Icon
2443
+ className into the FontIcon component. For SvgIcon, create a new React component that represents
2444
+ that particular icon. This will allow you to package your icons inside your js files. Examples
2445
+ can be found [here](https://github.com/callemall/material-ui/tree/master/src/js/svg-icons).
2446
+ - Additionally, all components that had an icon prop now take an iconClassName prop instead. These
2447
+ include FloatingActionButton, IconButton, Menu, MenuItem, and DropDownIcon.
2448
+
2449
+ ##### General
2450
+ - All jsx files are now being compiled before publishing to npm. (#179, #215)
2451
+
2452
+ ##### Components
2453
+ - Buttons
2454
+ - Fixed a bug that cause onClick to not fire in Safari (#307)
2455
+ - You can now pass down children into all buttons. This allows you to add icons to flat and raised buttons
2456
+ or to add a file input element. (#323, #189)
2457
+ - Menu Item
2458
+ - Fixed toggle display bug (#298)
2459
+ - Toggle props can now be passed in (#299)
2460
+ - Slider
2461
+ - Removed inline style @import (#218)
2462
+ - Switches
2463
+ - Switches now support focusability and can be focused/changed via keyboard inputs. (#292)
2464
+ - Added focus and touch ripple animations.
2465
+ - All switches use the labelPosition prop (as opposed to labelPositionRight), including RadioButtonGroup.
2466
+ - Added innerClassName prop. (#309)
2467
+ - Tabs
2468
+ - Fixes width transition for ink bar (#280)
2469
+ - Text Field
2470
+ - Fixed a bug with using valueLink with a multiline Text Field (#311)
2471
+ - Fixed a bug with multiline defaultValues in a multiline Text Field (#296)
2472
+
2473
+
2474
+ ## 0.6.1
2475
+ ###### _Jan. 26, 2015_
2476
+
2477
+ ##### Fixes
2478
+ - Checkbox & Toggle
2479
+ - Fixed a bug that caused checkboxes and toggles to not uncheck.
2480
+
2481
+
2482
+ ## 0.6.0
2483
+ ###### _Jan. 26, 2015_
2484
+
2485
+ ##### General
2486
+ - Fixed dependencies to prevent multiple versions of React getting loaded on the docs site (#194)
2487
+
2488
+ ##### Deprecated
2489
+ - Input - Please use TextField instead.
2490
+
2491
+ ##### New
2492
+ - Radio Button Group
2493
+ - This component was created to make it easier to work with groups of radio buttons (#151)
2494
+ - Tabs
2495
+ - Added new Tabs component.
2496
+ - TextField
2497
+ - This component replaces Input. It extends the native input element and will support all of
2498
+ its props and events. It also supports valueLink and can be controlled or uncontrolled.
2499
+ - MultiLine text fields now grow and shrink as the user inputs data.
2500
+ - Allow for both floating labels and hint text in the same input.
2501
+ - Floating labels now generate a label element.
2502
+
2503
+ ##### Fixes
2504
+ - AppBar
2505
+ - Added icon prop. (#250)
2506
+ - Checkbox
2507
+ - Checkbox styling now matches material design specs
2508
+ - This component has been revamped and can now be controlled or uncontrolled.
2509
+ - Date Picker
2510
+ - Fixed a bug with getDate() (#196)
2511
+ - Added onChange prop (#198)
2512
+ - Dialog
2513
+ - Actions can now be passed in as an array of react elements. (#241)
2514
+ - Menu Item
2515
+ - Menu Items now respond to onTouchTap
2516
+ - Radio Button
2517
+ - Radio Button styling now matches material design specs
2518
+ - This component has been revamped and can now be controlled or uncontrolled.
2519
+ - Slider
2520
+ - Fixed a css bug with slider handles (#225)
2521
+ - Added onDragStart and onDragStop props (#217)
2522
+ - Snackbar
2523
+ - Fixed Ghost hidden snackbar (#235)
2524
+ - Toggle
2525
+ - This component now extends a native input checkbox.
2526
+ - It can now be controlled or uncontrolled.
2527
+ - Toolbar
2528
+ - Fixed FlatButton positioning inside toolbar (#224)
2529
+
2530
+
2531
+ ## 0.5.0
2532
+ ###### _Jan. 3, 2015_
2533
+
2534
+ ##### Breaking Changes
2535
+ - Removed lesshat dependency. Be sure to change your build process to include an
2536
+ [autoprefixer](https://github.com/sindresorhus/gulp-autoprefixer).
2537
+
2538
+ ##### Components
2539
+ - Buttons
2540
+ - Ripple animations are much faster now. The animation starts onMouseDown or onTouchStart
2541
+ and completes onMouseUp or onTouchEnd. Now we can spam buttons all day long. :)
2542
+ - Spacebar key up triggers button clicks. (#155)
2543
+ - Slider
2544
+ - Changed slider cursor (#187)
2545
+ - Snackbar **(New)**
2546
+ - Added a snackbar component.
2547
+
2548
+
2549
+ ## 0.4.1
2550
+ ###### _Dec. 25, 2014_
2551
+
2552
+ ##### General
2553
+ - Updated to react 0.12.2; browserify 7.0.3
2554
+ - Fixed ripple animation on Firefox (#129)
2555
+ - Updated red, green, and blue color variables to match specs (#177)
2556
+
2557
+ ##### Components
2558
+ - Buttons
2559
+ - Added secondary button colors
2560
+ - Removed underline styles on link buttons (#172)
2561
+ - Date Picker **(New)**
2562
+ - Added new date picker component.
2563
+ - Dialog version is implemented, inline version to follow in upcoming release.
2564
+ - Has both portrait and landscape modes.
2565
+ - Keyboard support: arrow keys advance dates, shift+arrow advances month.
2566
+ - Dialog
2567
+ - Dialog actions now generate buttons with secondary colors.
2568
+ - Added contentClassName prop. This is used to style the actual dialog window.
2569
+ For example, setting its width.
2570
+ - Dialog contents no longer are removed from the DOM when the dialog is dismissed.
2571
+ - Disabled scrolling when the dialog window is open.
2572
+ - Input
2573
+ - Added disabled input styles (#140)
2574
+ - Added blur() method
2575
+ - Added support for email input type (#170)
2576
+ - Fix textarea placeholder focus exception (#170)
2577
+ - Added mui-is-not-empty class when the input isn't empty (#170)
2578
+ - Slider
2579
+ - Trigger onChange when clicking on slider (#153)
2580
+
2581
+
2582
+ ## 0.4.0
2583
+ ###### _Dec. 15, 2014_
2584
+
2585
+ ##### Breaking Changes
2586
+ - Removed PaperButton - Use FlatButton, RaisedButton, or FloatingActionButton
2587
+ - Removed Roboto font import (#104) - Be sure to [include the Roboto](http://www.google.com/fonts#UsePlace:use/Collection:Roboto:400,300,500) font in your project.
2588
+
2589
+ ##### General
2590
+ - Added react-draggable2 dependency
2591
+
2592
+ ##### Components
2593
+ - Buttons
2594
+ - Added linkButton functionality (#130)
2595
+ - Icon Buttons
2596
+ - Added tooltip functionality
2597
+ - Input
2598
+ - Added method to set focus
2599
+ - Left Nav
2600
+ - Added method to open left nav panel
2601
+ - Radio Button
2602
+ - Added defaultChecked prop
2603
+ - Slider (New)
2604
+ - Added slider component
2605
+ - Toggle
2606
+ - Updated styles to match material design specs
2607
+
2608
+
2609
+ ## 0.3.3
2610
+ ###### _Dec. 7, 2014_
2611
+
2612
+ ##### General
2613
+ - Added a basic example project in /example
2614
+
2615
+ ##### Components
2616
+ - Dialog
2617
+ - Actions are now real buttons
2618
+ - Added transitions
2619
+ - Prefixed classNames with mui
2620
+ - Cleaned up styles
2621
+ - Input
2622
+ - Fixed a bug that caused placeholder to not show on focus (#112)
2623
+ - Placeholders can now be displayed in-line by setting inlinePlaceholder to true.
2624
+ - The initial number of rows can now be set with the rows prop.
2625
+ - Toggle
2626
+ - Fixed alignment issue (#118)
2627
+ - The inital state of the toggle can now be set with the toggled prop.
2628
+
2629
+
2630
+ ## 0.3.2
2631
+ ###### _Nov. 30, 2014_
2632
+
2633
+ ##### General
2634
+ - Upgraded dependencies: react 0.12.1, browserify 6.3.3, reactify: 0.17.1
2635
+
2636
+ ##### Components
2637
+ - Dialog
2638
+ - Added key prop to dialog actions. (#99)
2639
+ - Added onDismiss event callback. (#86)
2640
+ - Dialog is now positioned onMound and onUpdate (#85)
2641
+ - Fixed a bug that cuased dialog to not be vertically centered on long pages
2642
+ - Dropdown Menu
2643
+ - Added autoWidth prop (#89)
2644
+ - Menu
2645
+ - Added autoWidth prop
2646
+ - Nested Menu
2647
+ - Fixed bug that caused some nesteed menus to not show. (#88)
2648
+ - Paper
2649
+ - Updated to use spread operator
2650
+ - Radio Button
2651
+ - Fixed radio button label styles. (#94)
2652
+ - Ripple
2653
+ - Account for page scrolling on ripple animation. (#93)
2654
+
2655
+
2656
+ ## 0.3.1
2657
+ ###### _Nov. 28, 2014_
2658
+
2659
+ ##### General
2660
+ - Removed browserify react addons alias. (#68)
2661
+
2662
+ ##### Components
2663
+ - FlatButton, RaisedButton, and FloatingActionButton (NEW)
2664
+ - These buttons will replace the current PaperButton which will be
2665
+ depreciated in v.0.4.0.
2666
+ - They generate actual button tags, are keyboard focusable and listen
2667
+ to onTouchTap. (#50, #61)
2668
+ - Icon Button
2669
+ - Pressing enter when the button is in focus now fires onTouchTap
2670
+ - Added dark theme ripple colors
2671
+ - Focus and click animations now use Scale Transforms to improve performance.
2672
+ - Input
2673
+ - Added support for ReactLink and use JSX spread attributes
2674
+ - Error messages are now props instead of internal states (#95)
2675
+ - LeftNav
2676
+ - Pressing ESC now closes the left nav
2677
+ - PaperButton
2678
+ - Will be depreciated in v.0.4.0.
2679
+ - Radio Button
2680
+ - Fixed toggle bug. (#70)
2681
+
2682
+ ##### Mixins
2683
+ - WindowListenable is now available from Mixins.WindowListenable
2684
+
2685
+ ##### Utils
2686
+ - Added KeyCodes constants
2687
+
2688
+
2689
+ ## 0.3.0
2690
+ ###### _Nov. 17, 2014_
2691
+
2692
+ ##### General
2693
+ - Updated Browserify & Reactify versions
2694
+ - Enabled reactify es6 transformations
2695
+ - Removed jQuery dependency (#25)
2696
+ - Added reaact-tap-event-plugin dependency
2697
+
2698
+ ##### Components
2699
+ - Dialog
2700
+ - Width is now determined by content
2701
+ - Position is centered horizontally inside parent container
2702
+ - Pressing Esc now closes the dialog (#35)
2703
+ - Dropdown Menu
2704
+ - Added underline (#39)
2705
+ - Fixed display problem on double click (#43)
2706
+ - Icon
2707
+ - Transfer all props to underlying span
2708
+ - Icon Button (New)
2709
+ - Buttons...that are icons. :)
2710
+ - Input
2711
+ - Added required, min, max and step
2712
+ - LeftNav
2713
+ - Fixed left nav style when docked (#36)
2714
+ - Transition now uses translate3d instead of left
2715
+ - Overlay now listens to onTouchTap
2716
+ - Menu Items
2717
+ - Added user select none styles (#45)
2718
+ - Paper
2719
+ - Added onMouseOver & onMouseOut props
2720
+ - Toolbar
2721
+ - Items are now passed in as children instead of groupItem prop
2722
+
2723
+ ##### Mixins
2724
+ - Added WindowListenable. Allows listening to window events.
2725
+
2726
+ ##### Utils
2727
+ - Added Dom and Events utility functions
2728
+ - Fixed a bug that caused CSS Events to bind twice
2729
+
2730
+ ##### Less
2731
+ - Added media query variables
2732
+ - Added no-wrap mixin
2733
+ - Removed unnecessary style resets
2734
+ - Removed tab highlight color on all elements
2735
+
2736
+
2737
+ ## 0.2.2
2738
+ ###### _Nov. 11, 2014_
2739
+ - Changed project structure to be less confusing. Material-UI components/styles live in the src directory.
2740
+ Docs site code lives in the docs directory. This still allows us to easily test components in the docs site
2741
+ as we are working on them
2742
+ - Added .editorconfig to help keep code formatting consistent among contributors. See http://editorconfig.org/
2743
+ - Fixed drop down display issue in safari
2744
+ - Fixed nested menu arrow icon
2745
+ - Added hover transitions to menus
2746
+ - Improved ripple animation on buttons
2747
+
2748
+
2749
+ ## 0.2.1
2750
+ ###### _Nov. 8, 2014_
2751
+ - Fixed icon font reference. We're now including it as part of the project
2752
+ instead of an npm dependency.
2753
+
2754
+
2755
+ ## 0.2.0
2756
+ ###### _Nov. 7, 2014_
2757
+ - Icon
2758
+ - Added all font icons from the unoffical material design icon font:
2759
+ https://github.com/designjockey/material-design-fonticons
2760
+ - All icon names had to change because of this. Sorry. :(
2761
+ - PaperButton
2762
+ - Added href prop
2763
+ - Css fixes
2764
+ - Dialog
2765
+ - Added onShow event
2766
+ - Children contents of the dialog is only rendered if the dialog is opened
2767
+ - LeftNav
2768
+ - Fixed a bug that caused docked LeftNav component to close on menu click
2769
+ - Removed isInitiallyOpen prop
2770
+ - Input
2771
+ - onLineBreak event now passes back event (e) on callback
2772
+
2773
+
2774
+ ## 0.1.29
2775
+ ###### _Nov. 5, 2014_
2776
+ - css fix on paper component
2777
+ - hover transition fix on buttons
2778
+ - removed selected state on drop down icon component
2779
+ - css fix on left nav component
2780
+ - added prop on left nav component to allow left nav to be docked and hidden