Skip to content

Latest commit

 

History

History
1460 lines (957 loc) · 95.7 KB

CHANGELOG.md

File metadata and controls

1460 lines (957 loc) · 95.7 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

5.1.6 (2023-12-11)

Bug Fixes

  • @react-md/chip: add overflow to support font icons (da44bbd), closes #1432
  • select: port fixed positioning fixes back from v6.0.0 (feb9ec6), closes #1461

Documentation

  • react-md.dev: update blog to include additional releases (b305882)

5.1.5 (2023-05-09)

Bug Fixes

  • @react-md/autocomplete: Prevent event default when pressing enter with open AutoComplete (#1439) (c505642)

Documentation

5.1.4 (2022-06-16)

Bug Fixes

  • add missing dependencies (5329812)

5.1.3 (2022-05-07)

Bug Fixes

  • @react-md/button: do not shrink in flex containers (66bf6e0)
  • @react-md/card: fix spelling of raisable and deprecate raiseable prop (453023b)
  • @react-md/form: fix typo for transparent in disabled toggle hover color (7346587)
  • @react-md/layout: fix spelling of DEFAULT_LAYOUT_NAV_TOGGLE_CLASSNAMES (2d20a2e)
  • @react-md/utils: fix spelling of DropzoneHandlers (6ba510b)

Documentation

  • fix typos throughout codebase (725d1a2)
  • @react-md/form: Add simple examples for Select/NativeSelect (05358f5), closes #1396

Other Internal Changes

  • @react-md/autocomplete: fix typos in utils tests (c0333cc)
  • react-md.dev: correctly render escaped html in markdown (8a523cb)
  • react-md.dev: fix text color for animating app bar (01ec1af)
  • typos: fix additional typos throughout repo (ef20132)

5.1.2 (2022-04-02)

Bug Fixes

  • @react-md/tabs: Scroll tabs correctly in RTL mode (a23d708), closes #1356

Other Internal Changes

  • @react-md/layout: Update snapshots after updating tree component (ec84800)
  • @react-md/utils: Update keyboard movement (71d1343)
  • react-md.dev: useIsomorphicLayoutEffect to hide SSR warning (aa0d3cd)
  • react-md.dev: Fix BadgedButton documentation (b147a88)
  • react-md.dev: Update Light/Dark Theme Toggle Icons (60a8825)
  • react-md.dev: useLayoutEffect for page transitions (638c8ec)

5.1.1 (2022-04-01)

Bug Fixes

  • @react-md/sheet: Animate correctly in React 18 (ca27b19)
  • @react-md/tree: Add missing aria-selected attribute (e578ea0), closes #1388

Other Internal Changes

  • eslint: Try new precommit eslintrc file for type imports (fb69a2f)
  • react-md.dev: Fix typo for RTL tooltip (ee9f34c)
  • react-md.dev: re-enable ripples to match defaults (736e3b4)

5.1.0 (2022-03-18)

Bug Fixes

  • @react-md/app-bar: AppBarTitle now applies flex: 1 1 auto (4a47c92)
  • @react-md/tooltip: Tooltips stay visible on mobile Firefox (7039fef)

Features

  • @react-md/menu: Provide props for Menu's List (2b5fb23)
  • @react-md/tooltip: useTooltip supports new disabled option (a934ae9)

Documentation

  • @react-md/tooltip: Remove documentation around Tooltipped component (1a59190), closes #1367

Other Internal Changes

  • removed old eslint rules (88eb2b2)
  • run lint-scripts --fix for consistent-type-imports (42d839d)
  • Updated the v5.0.0 release notes (6106751)
  • @react-md/dev-utils: Fix indexer for consistent-type-imports (2d2d1e9)
  • @react-md/form: bump nanoid from 3.2.0 to 3.3.1 (e625488)
  • react-md.dev: Add demo for rendering DropdownMenus as a Grid (3ac42ef)
  • react-md.dev: Do not lazy load icons through next/head (47ccc1d)
  • react-md.dev: Fix 404 page for sandboxes (4772c88)
  • react-md.dev: Fix tooltip dense demo (efc7f8c)
  • react-md.dev: Fix usage of useTooltip when it is conditionally applied (cfca184)
  • react-md.dev: Update examples for useTooltip disabled option (f318ecf)
  • stylelint: bump stylelint plugins to latest (2bb6429)

5.0.0 (2022-01-31)

Check out the v4 to v5 Migration Guide for more information around updating code to this major version.

This release focused on creating a new Menu API that should hopefully make menus easier to use along with some other new features. The main difference is that the DropdownMenu no longer accepts a list of items that get converted to MenuItems behind the scenes. Instead, the children of the DropdownMenu should be all the MenuItem components that should be used inside the menu. The main reason for this change is to make it easier to create reusable components for different actions within your app and no longer needed to disable the React eslint rule around missing keys.

Another notable change is that nested dropdown menus no longer require the DropdownMenuItem component and instead the DropdownMenu automatically renders as a <li> if it appears as a child of another Menu component.

Here's a quick example of migrating to the new DropdownMenu API:

 import type { ReactElement } from "react";
-import { DropdownMenu, DropdownMenuItem } from "@react-md/menu";
+import { DropdownMenu, MenuItem } from "@react-md/menu";

 export default function Example(): ReactElement (
-  <DropdownMenu
-    id="example-dropdown-menu"
-    items={[
-      { onClick: () => console.log("Clicked Item 1"), children: "Item 1" },
-      { onClick: () => console.log("Clicked Item 2"), children: "Item 2" },
-      { onClick: () => console.log("Clicked Item 3"), children: "Item 3" },
-      <DropdownMenuItem
-        id="nested-dropdown-menu"
-        items={["Subitem 1", "Subitem 2", "Subitem 3"]}
-      >
-        Submenu
-      </DropdownMenuItem>,
-    ]}
-  >
-    Dropdown
+  <DropdownMenu id="example-dropdown-menu" buttonChildren="Dropdown">
+    <MenuItem onClick={() => console.log("Clicked Item 1")}>Item 1</MenuItem>
+    <MenuItem onClick={() => console.log("Clicked Item 2")}>Item 2</MenuItem>
+    <MenuItem onClick={() => console.log("Clicked Item 3")}>Item 3</MenuItem>
+    <DropdownMenu
+      id="nested-dropdown-menu"
+      buttonChildren="Submenu"
+    >
+      <MenuItem>Subitem 1</MenuItem>
+      <MenuItem>Subitem 2</MenuItem>
+      <MenuItem>Subitem 3</MenuItem>
+    </DropdownMenu>
   </DropdownMenu>
 );

On top of the new API, two major new features have been integrated into this release:

Hoverable Menus

Menus can now act like a browser's bookmark folder behavior where the user must click one of the dropdowns before all other menus become immediately visible on hover by using the new MenuBar component. This also implements some new keyboard movement behavior matching the menubar spec.

If the first-click behavior is undesired, the MenuBar also accepts a hoverTimeout prop which can be set to 0 to make the menus appear immediately on hover or another time in milliseconds to wait before the "hover mode" behavior should begin.

Check out the Hoverable Menus demo for more information.

Conditionally Rendering Menus within a Sheet

Since menus aren't always ideal for small viewports, the DropdownMenu has been updated to conditionally rendering the Menu within a Sheet instead of being positioned relative to the Button element. This feature is opt-in by either:

  • Adding menuConfiguration={{ renderAsSheet: "phone" }} on the Configuration component from @react-md/layout
  • Wrapping a DropdownMenu in the MenuConfigurationProvider and adding a prop renderAsSheet="phone"
  • Directly on a DropdownMenu with the renderAsSheet="phone" prop

The Sheet will default to rendering at the bottom of the viewport and have a max height that should allow the user to close the menu by clicking the overlay behind the sheet. These defaults can be configured with the sheetPosition and sheetVerticalSize props.

The Sheet can also be configured to have an optional header and footer using the sheetHeader and sheetFooter props. If all else fails, the DropdownMenu accepts sheetProps which will be passed to the Sheet component.

Check out the Mobile Action Sheets demo for more information.

Bug Fixes

  • @react-md/form: TextArea applies custom height style when resize="none" (e77d939)
  • @react-md/list: Pass disableEnterClick in ListItem (b5e8b69)
  • @react-md/overlay: Allow for custom onClick behavior (60dce54)
  • @react-md/transition: Do not create styles for hidden elements (6eff8a8)
  • @react-md/typography: Fixed overline class name (1e544d0)
  • @react-md/utils: useRefCache returns non-mutable object (b696b72)
  • @react-md/utils: Positioning logic for inner-left/inner-right and vertical anchors (a38abfb)

Features

  • @react-md/dialog: Add new overlayProps to configure the dialog's overlay (cfc30f0)
  • @react-md/divider: Update useVerticalDividerHeight to support any HTMLElement (edd9287)
  • @react-md/divider: Update divider styles for non-hr elements (7ccd0a6)
  • @react-md/form: Update TextFieldContainer to optionally fill all space in flex containers (2c8e68c)
  • @react-md/list: Created rmd-list-unstyled utility class from the mixin (6c9b7f4)
  • @react-md/menu: Implemented new Menu API (c27bf55)
  • @react-md/menu: Better floating action button default behavior (0cdeff7)
  • @react-md/utils: export focusable query constants (f9f7955)
  • @react-md/utils: Implemented new keyboard focus behavior (77f0d01)
  • @react-md/utils: Updated the HoverMode API (ac60bdb)

Documentation

  • Added documentation for using a GitHub template to bootstrap a new project (aac11ba)
  • Removed Working with v1 documentation (8aa71ac)
  • @react-md/sheet: Move tsdoc around for easier sharing (83fcaac)
  • react-md.dev: Better migration guide search behavior (9729269)
  • react-md.dev: Disable TOCs in dev mode and use temporary layout (3203af4)
  • react-md.dev: Fixed weird dev error with spreading props and key (7cd7b8c)

Other Internal Changes

  • Removed commitizen since I never use it (3e738b4)
  • @react-md/form: Updated FileInput snapshots for new icon (f5e43fe)
  • @react-md/icon: Renamed the download icon to upload (2752a98)
  • @react-md/icon: Updated docs and examples to use ConfiguredIcons type (bbfebed)
  • @react-md/menu: Added tests for the new menu API and fixed a few issues (7202dd0)
  • @react-md/menu: Fixed MenuBar visibility for touch devices (1288be7)
  • @react-md/menu: Fixed keyboard movement in MenuBars with visible menus (5b2494a)
  • @react-md/utils: Export enableScrollLock and disableScrollLock utils (6a95734)
  • @react-md/utils: Remove touch utils and passive events checks (3597d32)
  • @react-md/utils: useScrollListener no longer accepts an element or options (74a0274)
  • examples: bump next from 12.0.7 to 12.0.9 (04749c6)
  • examples: Updated create-react-app examples to use v5.0.0 (f7850b8)
  • examples: Updated gatsby examples to v4.4.0 (8a12699)
  • react-md.dev: Add migration guides for react-md major versions (78b7396)
  • react-md.dev: Add word-break to headings for markdown pages (03b1301)
  • react-md.dev: Fixed ids for emulated phones (10984f5)
  • react-md.dev: Suppress hydration for markdown (8bb4d51)
  • react-md.dev: Update HoverableMenus example to not use TextArea (5361825)
  • react-md.dev: Updated a few menu demos (c43cd31)

Breaking Changes

  • DEFAULT_HOVER_MODE_STICKY_EXIT_TIME has been renamed to DEFAULT_HOVER_MODE_EXIT_TIME.
  • Menu buttons will no longer open by pressing the ArrowUp or ArrowDown keys.
  • The DropdownMenu component no longer accepts a list of items and instead the children should be the MenuItem components.
  • The DropdownMenu component no longer supports the menuRenderer and itemRenderer props. Instead, there is built-in support for conditionally rendering as a Sheet component using the renderAsSheet prop.
  • The DropdownMenu component now requires a parent AppSizeListener because of the conditional Sheet rendering functionality. This might require updating your tests to either use the Configuration component from @react-md/layout (recommended) or adding the AppSizeListener to tests that include DropdownMenus.
  • The DropdownMenuItem component is no longer required for nested dropdown menus and is an "internal" component instead that shouldn't really be used.
  • The exitVisibilityDelay always defaults to DEFAULT_HOVER_MODE_EXIT_TIME.
  • The MenuItemSeparator now renders as an <li> instead of an <hr> or <div>.
  • The useContextMenu now returns an object instead of an ordered list.
  • The useHoverMode hook no longer accepts an HTMLElement generic and instead the event handlers will automatically infer the HTMLElement based on usage.
  • The useHoverMode hook no longer returns stickyHandlers and instead returns hoverHandlers that only include onMouseEnter and onMouseLeave. The handlers that are returned now include onClick, onMouseEnter, and onMouseLeave. This was kind of what the stickyHandlers was before. In addition, clicking an element no longer disabled the hover mode behavior.
  • The following typescript types have been removed: HoverModeOnlyOptions, HoverModeOnlyReturnValue
  • Using any of the MenuItem components requires the <MenuKeyboardFocusProvider> to be mounted as a parent component which might affect tests. This will not break anything if you are using the DropdownMenu or Menu components.

4.0.3 (2021-12-31)

Bug Fixes

  • @react-md/icon: FileInput default icon changed from file_download to file_upload (174d1c1), closes #1325
  • @react-md/table: Sortable Column Alignment (e447cc5), closes #1321
  • @react-md/utils: useIsUserInteractionMode get mode via context (b5f93ae), closes #1322
  • examples: Updated create-react-app README to use correct start command (37acdc3)

Other Internal Changes

  • Update tests to use jest.mocked (4bb25fb)
  • Updated all packages' peerDependenciesMeta (60fcd71), closes #1319
  • @react-md/dev-utils: Update watch command for new sass modules (2e7a87a)
  • examples: Update next to latest version (3521e9b)

4.0.2 (2021-11-30)

Bug Fixes

  • @react-md/form: Prevent scrolling while dragging Slider on mobile (7eb6740)

Documentation

  • react-md.dev: Update images/videos for markdown pages (5e482bb)

Other Internal Changes

  • @react-md/utils: Additional test coverage (73bc4eb)

4.0.1 (2021-11-27)

Bug Fixes

  • @react-md/form: Added fixes required for Concurrent Rendering (b4994f4)
  • @react-md/layout: Added fixes required for Concurrent Rendering (c0b29a8)
  • @react-md/menu: Added fixes required for Concurrent Rendering (05ec620)
  • @react-md/sheet: Added fixes required for Concurrent Rendering (75663e4)
  • @react-md/utils: Update getPercentage to optionally not throw errors (ff8a1d6)

Documentation

  • @react-md/transition: Fix transitionTo documentation to use useEffect (31a31da)

Other Internal Changes

  • Updated imports to use import type when possible (ba96bb6)
  • react-md.dev: Fixed demo styles that included CodeBlock (1f1a04e)
  • react-md.dev: Fixes for Concurrent Rendering (5946bd9)
  • react-md.dev: Update order of previous docs links (87998b9)

4.0.0 (2021-11-24)

This release focused on updating the @react-md/transition package to no longer log errors in React.StrictMode because react-ransition-group was using ReactDOM.findDOMNode to handle transitions. All react-md packages will no longer use react-transition-group since all that functionality has been built into @react-md/transition with a slightly different API.

This release has also included my first attempt at automating upgrading to new major releases by introducing a new @react-md/codemod package that is similar to the react-codemod package. You can automate some of this release by running:

npx @react-md/codemod v3-to-v4/preset

Since I am still learning how to use jscodeshift, it will not be able to migrate everything but should still help with most changes.

Bug Fixes

  • @react-md/menu: DropdownMenu and Menu portal by default (98a6a9f), closes #1264
  • @react-md/tooltip: cancel timer when element is clicked (5416554)
  • sass: Do not use legacy global functions (6159e16)

Features

  • Update to use new JSX Transform and latest eslint (8111cd3)
  • @react-md/portal: ConditionalPortal supports ReactNode children (c83d578)
  • @react-md/transition: No longer use findDOMNode for transitions (cb952da)
  • @react-md/typography: Renamed Text to Typography (30cf056)
  • @react-md/utils: Export additional positioning types (b50a04c)
  • codemod: Created a new @react-md/codemod package to help with new releases (41c1fa6)

Documentation

  • Hackily fix codesandbox.io not using sass resolutions in package.json (db22cde), closes #1261
  • @react-md/form: Updated hook overrides so documentation appears correctly (436fbff)
  • react-md.dev: Enable rust compiler by removing custom babelrc (796efd0)
  • react-md.dev: Fallback code language to markup instead of none (0efaf9b)
  • react-md.dev: Fix alert sandboxes (8f19297)
  • react-md.dev: Removed SwipeableTabs demo since it didn't really work (2d79f93)
  • react-md.dev: Separate Code and CodeBlock into separate folders (4c492b3)
  • react-md.dev: Try to allow custom Code/CodeBlock in sandboxes (5d494bf)
  • react-md.dev: update code components to use css modules (9bdf6ba)
  • react-md.dev: Use react-marked-renderer for markdown stuffs (93ebaa4)

Other Internal Changes

  • always skip lib check (229cef1)
  • Re-ran prettier (9632d82)
  • update workflows to include node 16 (f756b92)
  • updated branches for build, lint, and test (b5eeae9)
  • Updated remaining docs and tests for react-router-dom v6 (e012ef9)
  • @react-md/dev-utils: Added error message for combining styles (aa5ecfd)
  • @react-md/dev-utils: match quotation marks for sass files (98ffe40)
  • @react-md/dev-utils: Update sassdoc to not through uncaught exceptions (8bdf532)
  • @react-md/dev-utils: Update release for new major versions and legacy docs (86c5c02)
  • @react-md/format: ran prettier after upgrading to v2.4.0 (06110af)
  • codemod: Added comment about ignoring CodeQL alert (631d56c)
  • examples: enable strict mode by default for nextjs-typescript (83e4c44)
  • examples: added lint command to nextjs examples (788a8b8)
  • examples: bump nextjs examples from v11.1.2 to v12.0.2 (be45277)
  • examples: fixed prefers-color-scheme in examples (f799d3a)
  • examples: Updated create-react-app example to use react-router-dom v6 (3c4d1ea)
  • examples: Updated create-react-app-typescript example to use react-router-dom v6 (ae469ef)
  • examples: Updated examples to no longer import React (c0b8cb5)
  • react-md: Remove prop-types package and usage (2637a6f)
  • react-md.dev: Enable React.StrictMode (219937e)
  • react-md.dev: Updated some transition documentation (44bfa20)
  • stylelint: Updated to use stylelint (22d1598)
  • test: Update coverage for watch mode (74cee51)
  • typescript: Stopped using deprecated HTMLTable(Data|Header)CellElement (23ba342)

Breaking Changes

  • Minimum React version is now 16.14 instead of 16.8
  • @react-md/menu: The DropdownMenu and Menu components portal by default. This should really only affect snapshot tests
  • @react-md/typography: The Text component has been renamed to Typography to help with auto-imports conflicting with the Text element that exists in lib.d.ts
  • react-md: There will no longer be run-time prop validation with the prop-types package.

3.1.1 (2021-09-12)

Bug Fixes

  • typescript: added missing readonly prefix to TabsManager tabs prop (45d9458)

3.1.0 (2021-09-10)

Bug Fixes

  • @react-md/dialog: DialogFooter align prop applies correct classes (644971d)
  • @react-md/form: TooManyFilesError is only used if all the other validation has passed (6ed3f54)
  • @react-md/form: ensure file names end with a period for useFileUpload extensions (9238140)
  • @react-md/form: prevent infinite rerenders when calling useFileUpload's reset in useEffect (b2875b1)
  • @react-md/utils: useDropzone fix around onDragLeave behavior (fdff9f2)
  • typescript: updated all array types to be readonly (8f71bcb)

Features

  • @react-md/form: add isValidFileName option to useFileUpload (dbd0375)
  • @react-md/typography: override default typography without globals (ce89374), closes #1239

Documentation

  • react-md.dev: updated sassdoc for new module system (4746d26)
  • react-md.dev: updated SortableColumns example to import SortOrder type (b629e3e)

Other Internal Changes

  • ran yarn format to include new files (48d3d7f)
  • Simplifying format and covering json and yml files (#1227) (045ba5e)
  • @react-md/dev-utils: fixed spelling of gzipped (baad174)
  • examples: updated nextjs examples to latest version of next (b50d745)
  • react-md.dev: added sassdoc hot-reloading (9d58e09)
  • react-md.dev: updated sassdoc examples to be linkable (9ed096e)
  • react-md.dev: Updated fonts for latest nextjs build optimizations (ca9ecbd)
  • typescript: support typescript@v4.4.2 (5a9dd72)

3.0.1 (2021-08-15)

Bug Fixes

  • Updated peerDependencies to fix yarn berry peer requirements (250efcd), closes #1224

Other Internal Changes

  • Fixed link to v3.0.0 PR (ff221cc)

3.0.0 (2021-08-13)

This release should be relatively simple for most consumers of this library since the main breaking change is dropping support for node-sass and requiring sass since node sass has been deprecated as well as removing deprecated variables, hooks, and components. Most users should be able to run the following commands to upgrade to v3.0.0:

npm update react-md
npm uninstall node-sass
npm install sass

Or with yarn

yarn add react-md
yarn remove node-sass
yarn add sass

In addition, there is now partial support for the new Sass module system with the react-md package which also simplifies the import usage and has a slight build performance improvement for large projects. To start using the new module system, update all the @import statements as shown below:

-@import '~@react-md/theme/dist/mixins';
-@import '~@react-md/utils/dist/mixins';
-// other react-md imports
+@use 'react-md' as *;

 // No other changes required!

If you override variables within react-md:

-@import '~@react-md/theme/dist/color-palette';
-$rmd-theme-light: false;
-$rmd-theme-primary: $rmd-purple-500;
-$rmd-theme-secondary: $rmd-pink-a-200;
-
-@import '~react-md/dist/styles';
+@use '@react-md/theme/dist/color-palette' as color;
+@use 'react-md' as * with (
+  $rmd-theme-light: false,
+  $rmd-theme-primary: color.$rmd-theme-purple-500,
+  $rmd-theme-secondary: color.$rmd-theme-pink-a-200,
+);
+
+@include react-md-utils;

Check out the updated customizing your theme documentation, #1214, or 958f34f for more in-depth examples.

BREAKING CHANGES

  • @react-md/theme: $rmd-theme-dark-elevation now defaults to true instead of false
  • sass: node-sass is no longer supported and users must switch to sass
  • @react-md/utils: Removed InteractionModeListener since it was an alias for UserInteractionModeListener
  • @react-md/utils: Removed ResizeObserver component and useResizeObserverV1 implementation
  • @react-md/tooltip: Removed TooltipHoverModeConfig component
  • @react-md/card: Removed deprecated $rmd-card-dark-elevation-bordered-background-color variable
  • @react-md/tooltip: Removed deprecated props from Tooltipped component
  • @react-md/form: The second argument for useIndeterminateChecked is now an object of options

Bug Fixes

  • sass: drop node-sass in favor of sass since it's deprecated (126fb5a)
  • sass: use math.div instead of division since it's deprecated (d8c3f12)

Features

  • @react-md/theme: $rmd-theme-dark-elevation defaults to true (b371337)
  • react-md: Simplify sass usage with: @use 'react-md'; (787bfb5)

Documentation

  • react-md.dev: removed documentation around pre-compiling styles (29b5d74)
  • react-md.dev: Update Sass Documentation for @use (68e8c6b)
  • react-md.dev: Updated sandboxes for new Sass module system (095ae97)

Other Internal Changes

  • Added additional tests to bump test coverage (4d0371c)
  • @react-md/card: removed deprecated $rmd-card-dark-elevation-bordered-background-color variable (01c9350)
  • @react-md/dev-utils: Added simple sass-migrator command (a8e8df3)
  • @react-md/dev-utils: autoConfirm flag passed to initBlog (dec09b8)
  • @react-md/dev-utils: Combine all scss files into react-md/dist/_everything.scss (c7177e6)
  • @react-md/dev-utils: Update release script to hopefully work with prereleases (e0ef881)
  • @react-md/dev-utils: updated sassdoc and variables to use everything.scss (a0f0699)
  • @react-md/dev-utils: updated variables command to work with sass (5376be1)
  • @react-md/form: removed deprecated implementation in useIndeterminateChecked (6b7871f)
  • @react-md/tooltip: removed deprecated props from Tooltipped component (6dca9b1)
  • @react-md/tooltip: removed TooltipHoverModeConfig component (664ec30)
  • @react-md/utils: remove ResizeObserver component and useResizeObserverV1 implementation (6a6b109)
  • @react-md/utils: removed InteractionModeListener alias (216c8ef)
  • examples: updated examples to latest dependencies (f2eb07a)
  • react-md.dev: Each package includes a link to typedoc API in navigation tree (c388ba6)
  • react-md.dev: ran migrator for deprecated division (98d2c58)
  • react-md.dev: removed tilde from imports (6081e14)
  • react-md.dev: update all scss files for @use imports (958f34f)
  • react-md.dev: update all styles to use react-md/dist/everything (2da5033)
  • react-md.dev: Update links for previous versions (2d0a0e6)
  • react-md.dev: updated docs for new rmd-theme-dark-elevation defaults (b2269ff)
  • react-md.dev: updated examples to work with sass instead of node-sass (d8ddf51)
  • react-md.dev: updated sandboxes to use root react-md (c0f25f7)

2.9.1 (2021-07-27)

Bug Fixes

  • @react-md/layout: Do not unmount children when swapping to non-fixed appbar mini layouts (64103c8), closes #1207
  • @react-md/utils: useMediaQuery uses addEventListener/removeEventListener (b889a9e)

Other Internal Changes

  • fixed sass-lint error (58f614b)
  • install: slighly reduce install size by excluding tests in publish (9d01a44)
  • react-md.dev: fix links to form demos in blog (b1626b5)

2.9.0 (2021-07-18)

This release is focused around the FileInput component in the @react-md/form package and implementing a useFileUpload hook to handle uploading/previewing files in the browser. However, there is a notable change in this release for the form documentation since the demos have been split into the following pages:

Bug Fixes

  • @react-md/form: FileInput correctly center the icon when children aren't provided (3a6ab33)
  • @react-md/layout: useLayoutNavigation possible perf fix (3d65e4e)

Features

  • @react-md/form: FileInput automatically swaps button type to text if children exist (e5585e1)
  • @react-md/form: FormMessageCounter component added to public API (1508812)
  • @react-md/form: Added a useFileUpload hook to upload files to the browser (efb3f2f), closes #1159
  • @react-md/utils: added useDropzone hook (bc07a1f)

Other Internal Changes

  • Added CodeQL Workflow for code analysis (9b4a279)
  • @react-md/form: Added tests for useFileUpload (49ce4d9)
  • @react-md/layout: Added additional test coverage (7c123ef)
  • react-md.dev: Added an endpoint for uploading files that acts like a /dev/null (9663ae8)
  • react-md.dev: Added examples for useFileUpload (8f9002e)
  • react-md.dev: fix eslint error after updating prettier (75a9b0f)
  • react-md.dev: Fixed rightAddon for Customizing Select Options Demo (367cc0d)
  • react-md.dev: Split form demos into separate pages (8594930)
  • react-md.dev: Use temporary layout on desktop in dev mode to get more screen space (53b20c4)

2.8.5 (2021-07-03)

Bug Fixes

  • @react-md/form: MenuItemCheckbox added missing indeterminate state (aa2c552), closes #1186
  • @react-md/form: useIndeterminateChecked correctly uses readonly prefix (7f69a71)
  • @react-md/form: useIndeterminateChecked supports MenuItemCheckbox with new option (9ab67bf)
  • @react-md/form: MenuItemCheckbox, MenuItemRadio, and MenuItemSwitch styles on light themes (fc4dcd9)

Documentation

  • @react-md/form: Updated documentation for useIndeterminateChecked (8646c28)

Other Internal Changes

  • @react-md/dev-utils: Updated release script to allow custom CHANGELOG updates (dde151b)
  • @react-md/form: Added tests for useIndeterminateChecked (cc2a422)
  • react-md.dev: Updated MenuWithFormControls example for indeterminate checkboxes (2d20848)

2.8.4 (2021-06-10)

Bug Fixes

  • @react-md/form: Pass checked prop to component (bffae6f)
  • @react-md/form: Fixed controlled behavior for Switch components (8c65df6), closes #1175
  • @react-md/utils: omit uses readonly prefix for key list (d3e1ee8)
  • @react-md/utils: Slightly better tooltip behavior after clicking somewhere on the page (4d3fc16)

Documentation

  • react-md.dev: Updated general documentation (9bc8a0d)
  • react-md.dev: Update next and build deps to fix font loading issues (e528617)

Other Internal Changes

  • updated doc tsconfig for better autocompletion (7fb8b94)
  • Renamed contrast check function (97c1ad7)
  • add website alias to changelog config (d98bf51)
  • ran prettier after upgrading to v2.3.0 (3ce236a)

2.8.3 (2021-05-18)

Bug Fixes

  • @react-md/layout: Added fixedAppBar flag into the useLayoutConfig (14e6587)
  • @react-md/layout: Mini Layouts Align Icons with Hamburger Menu in Dense Mode (abbe9a9)
  • @react-md/layout: non-fixed AppBar mini layouts (84313fc), closes #1101
  • @react-md/layout: Offset for temporary mini layouts (86e75bf)
  • @react-md/states: Added missing classnames dependency (a7a2012), closes #1155

Documentation

  • @react-md/layout: Added demo for non-fixed AppBar layouts (d217ac1)
  • @react-md/typography: Added examples for overriding typography styles (57033bd), closes #1147
  • react-md.dev: Added simple API documentation with typedoc (84739af)
  • react-md.dev: don't include version for latest react-md (a69359b)
  • react-md.dev: Light Theme Code Preview Colors (c9cc6a7)
  • react-md.dev: redirect to v1 website (5d9ee71)
  • react-md.dev: small updates after switching to free hosting (96e2dcd)
  • react-md.dev: update v1 links to new repo and static hosting (92801bb)
  • react-md.dev: updated tsdoc to work with typedoc (cf54c35)
  • react-md.dev: Fix typedoc source links when deployed through vercel (a4eed1b)
  • react-md.dev: Fixed useLayoutNavigation hook example in creating a new app (1cde856)

Other Internal Changes

  • no longer build,lint,test node 10 since I upgraded some dependencies (1d3f889)
  • fix anchor link to useFixedPositioning example docs (eb5a9fc)
  • fixed typo (ef3f9e4)
  • removed v1 info from README (b0e8ccb)
  • @react-md/dev-utils: Removed old typedoc WIP (a7d7429)
  • deployment: Fixed deploy script (4072b93)
  • workflow: dropped node 10 since I upgraded some dependencies (fd81950)

2.8.2 (2021-04-23)

Bug Fixes

  • @react-md/utils: Cancel hover mode timers on click (892dc24)

Other Internal Changes

  • removed engines from root package.json (1165471)

2.8.1 (2021-04-23)

Bug Fixes

  • @react-md/form: MenuItemSwitch spacing styles (8ac8299), closes #1126
  • @react-md/form: Checkbox, Radio, and Switch color (9315eff)

2.8.0 (2021-04-22)

Bug Fixes

  • @react-md/dialog: FixedDialog applies style prop (bb4ad2f)
  • @react-md/utils: Click Behavior for Hover Mode (d0fda80)
  • @react-md/utils: focusElementsWithin correctly focuses container element as a fallback (cff46c4)

Features

  • @react-md/form: Implemented Form Menu Item Components (fed2b9f)
  • @react-md/transition: Updated useFixedPositioning to merge style objects (1ab84d7)
  • @react-md/transition: updated useFixedPositioning to support fixedTo ref (ced550a)
  • @react-md/utils: Added isFocusable util (1d92472)
  • @react-md/utils: implemented a reusable hover mode API (4f5ce2f)
  • typescript: bump typescript version to v4.2.3 (b094b36)

Documentation

  • @react-md/form: Updated form menu components for better documentation and examples in code (d9695b7)
  • react-md.dev: Added Menu With Form Controls Demo (dbc2d21)
  • react-md.dev: Added Tooltip Hook Example (9783c44)
  • react-md.dev: Added a new Hover Mode demo (1e0e783)
  • react-md.dev: Added Sticky Hover Mode Example (1a94a31)
  • react-md.dev: additional Tooltip Hook documentation (5447f64)
  • react-md.dev: fix documentation site deployment (9588c37)
  • react-md.dev: removed custom nextjs server (8389b68)
  • react-md.dev: Suppress hydration warning for App Size (c5a08da)
  • react-md.dev: Updated documentation site after new tooltip behavior (5db9a9b)
  • react-md.dev: Updated documentation site for new HoverModeProvider documentation (f42c65c)
  • seo: Added missing description meta tag (3fd9e9f)

Other Internal Changes

  • Moved documentation gitignore values to root (633a586)
  • @react-md/form: Added new for menu item tests (5cf4f8a)
  • @react-md/form: Created SwitchTrack and InputToggleIcon components (d9278b3)
  • @react-md/form: moved some toggle styles into separate mixins (517f199)
  • @react-md/form: simplified toggle icon styles (adb6b06)
  • @react-md/form: Updated MenuItemRadio usage to be wrapped in a group for a11y (01caa0b)
  • @react-md/form: Updated SliderValue to use non-portalled tooltip for existing test (b41136f)
  • @react-md/layout: Updated Configuration to use new HoverModeProvider (357f2bf)
  • @react-md/tooltip: Cleaned up some useTooltip code (0a6aed9)
  • @react-md/tooltip: Updated Tooltip to use new Hover Mode (386f47b)
  • @react-md/transition: bump @types/react-transitition-group from v4.2.4 to v4.4.1 (f3f5c7b)
  • @react-md/utils: added missing since annotation to useOnUnmount (c758982)
  • eslint: updated eslintignore so I can jump through errors quickly (7bfe9f3)
  • react-md.dev: Fixed sandboxes to no longer require @types/classnames (32f6f0f)
  • tsconfig: separate tsconfig by package instead of a single root (b278230)

2.7.1 (2021-03-23)

Bug Fixes

  • @react-md/form: Select correctly respects the readOnly prop (d9a0262), closes #1089
  • @react-md/form: Select correctly updates for the dense spec (2930595), closes #1089
  • @react-md/utils: useTabFocusWrap when only one element (25178d7)
  • umd: now correctly use production string for UMD bundles (a9b78ad)

Documentation

  • react-md.dev: fixed build error after upgrading next (1861731)

Other Internal Changes

  • @react-md/dev-utils: GitHub release surrounds libsize in code block (d3d122a)
  • @react-md/utils: Added a simple useOnUnmount hook (96f3cc0)
  • react-md.dev: fixed Demo name replacement (70e60e1)
  • ts: stopped using FC type (c5daa47)
  • workflow: added develop branch to workflow triggers (c379ce3)

2.7.0 (2021-02-28)

Bug Fixes

  • @react-md/alert: fixed alert color when dark theme elevation is enabled (99cc271), closes #1075
  • @react-md/card: fixed card color when dark theme elevation is enabled (e5da5f5), closes #1075
  • @react-md/dialog: fixed dialog color when dark theme elevation is enabled (e79993d), closes #1075
  • @react-md/form: fixed listbox color when dark theme elevation is enabled (b68ac04), closes #1075
  • @react-md/menu: fixed menu color when dark theme elevation is enabled (52c752d), closes #1075
  • @react-md/sheet: fixed sheet color when dark theme elevation is enabled (0abe05e), closes #1075

Features

  • @react-md/layout: added support for mini layouts (36b3cbc)
  • @react-md/utils: added a low level RadioGroup widget for the radiogroup role (76d6d27)

Documentation

  • updated Used By/Requires SassDoc to be collapsible (37a7536)
  • @react-md/theme: added additional dark-theme-elevation SassDoc examples (172ee40)
  • react-md.dev: added information about Noninteractable Chips demo (42e929b)
  • react-md.dev: updated layout demos for mini layout support (1065688)
  • tsdoc: fixed remaining tsdoc syntax warnings (946f4dd)
  • tsdoc: fixed some tsdoc annotations and styling (0449b86)
  • tsdoc: updated @since annotations (c62027e)

Other Internal Changes

  • updated test coverage to not include conditional component PropTypes (24e5df1)
  • @react-md/dev-utils: release script will now automatically create github release (83c2b65)
  • @react-md/utils: added tryToSubmitRelatedForm util to help with additional a11y (0566e14)
  • @react-md/utils: updated loop util to allow for a specific min value (51bcf92)

2.6.0 (2021-02-13)

Bug Fixes

  • @react-md/layout: floating layout has correct color in dark theme (7fa6b0c)
  • @react-md/layout: toggleable layout title now aligns with persistent layouts (8b8efb2)

Features

  • @react-md/chip: added support for noninteractable chips (9309985), closes #1046
  • @react-md/layout: added prop to control toggleable layouts default visibility (6e4a06d), closes #1066

Documentation

  • react-md.dev: slightly better search results (0e3d3f7)

Other Internal Changes

  • @react-md/divider: updated test to use the correct act (a621625)
  • @react-md/link: added new tests for SkipToMainContent (3f6e866)
  • @react-md/utils: Added better dev display names for UserInteractionMode context parts (01f6e3d)
  • @react-md/utils: refactored UserInteractionMode hooks and components (af72791)
  • changelog: fixed some more changelog/release behavior (e11c0ea)
  • coverage: fixed test coverage to include files without tests (ba72630)

2.5.5 (2021-01-30)

Bug Fixes

2.5.4 (2021-01-27)

Bug Fixes

2.5.3 (2021-01-12)

Bug Fixes

2.5.2 (2021-01-12)

Bug Fixes

2.5.1 (2020-12-16)

Bug Fixes

2.5.0 (2020-12-15)

Bug Fixes

Features

2.4.3 (2020-11-14)

Bug Fixes

2.4.2 (2020-10-23)

Bug Fixes

2.4.1 (2020-10-17)

  • this is a re-release of v2.4.0 to ensure that all the themes are created correctly for CDNs

2.4.0 (2020-10-17)

Bug Fixes

Features

2.3.1 (2020-09-15)

Note: Version bump only for all packages.

2.3.0 (2020-09-10)

Bug Fixes

Features

2.2.2 (2020-09-02)

Note: Version bump only for package react-md

2.2.1 (2020-09-02)

Note: Version bump only for package react-md

2.2.0 (2020-08-11)

Bug Fixes

  • listbox: render 0 as a valid display value (d02b7a9)

Features

2.1.2 (2020-08-01)

Bug Fixes

Reverts

  • Revert "chore(deps-dev): bump eslint-plugin-react from 7.20.3 to 7.20.4 (#893)" (4db7c31), closes #893

2.1.1 (2020-07-21)

Bug Fixes

  • @react-md/theme: Fixed rmd-theme-get-swatch to loop over all rmd-theme-colors instead of the primaries only (353de23), closes #884

2.1.0 (2020-07-12)

Bug Fixes

  • AppBar text color now defaults to rmd-theme-var(text-primary-on-background) (2c3ea5e)
  • Booleans in dist/scssVariables (f6d43a3)
  • ListItem disabled states (7b37292)
  • Scroll active element into view while focusing (a9a0902)
  • Tree focused index after expanding all with asterisk (8547629)
  • Tree keyboard movement for child items that are expanded (fadddc7)
  • Tree scrolling elements into view (eef48dc)

Features

  • Added new mixin for optional css-modules (28ba828)
  • Exported the useAutoComplete hook (cac5cd1)
  • Improved Dark Mode using Raising Elevation (547877c), closes #860
  • Render non-searchable items in AutoComplete (e7a82ac)

2.0.4 (2020-07-10)

Bug Fixes

2.0.3 (2020-07-07)

Bug Fixes

2.0.2 (2020-06-30)

Bug Fixes

  • Main README Layout example (bcc8405)
  • LICENSE: Removed the time range from license since it was incorrect (50c9021)
  • Added sideEffects field to package.json (31820b9)
  • Added unpkg url for base react-md package (d0efc59)
  • sideEffects formatting (78a7b6b)

The combined changelog for this project is available on the documentation site's blog as well as on the GitHub releases page. However, since this project uses scoped packages, you can check out each individual changelog as well which are linked below: