@react-md/icon
Advanced tools
Comparing version 4.0.1 to 4.0.3
@@ -6,2 +6,19 @@ # Change Log | ||
## [4.0.3](https://github.com/mlaursen/react-md/compare/v4.0.2...v4.0.3) (2021-12-31) | ||
### Bug Fixes | ||
* **@react-md/icon:** `FileInput` default icon changed from `file_download` to `file_upload` ([174d1c1](https://github.com/mlaursen/react-md/commit/174d1c1511387f316b832f3d4e43ac7f53848cbe)), closes [#1325](https://github.com/mlaursen/react-md/issues/1325) | ||
### Other Internal Changes | ||
* Updated all packages' peerDependenciesMeta ([60fcd71](https://github.com/mlaursen/react-md/commit/60fcd719ac785c2f0b9d27cda82baa3c773c0e5a)), closes [#1319](https://github.com/mlaursen/react-md/issues/1319) | ||
## [4.0.1](https://github.com/mlaursen/react-md/compare/v4.0.0...v4.0.1) (2021-11-27) | ||
@@ -8,0 +25,0 @@ |
@@ -18,3 +18,3 @@ var __assign = (this && this.__assign) || function () { | ||
checkbox: _jsx(FontIcon, { children: "check_box" }, void 0), | ||
download: _jsx(FontIcon, { children: "file_download" }, void 0), | ||
download: _jsx(FontIcon, { children: "file_upload" }, void 0), | ||
dropdown: _jsx(FontIcon, { children: "arrow_drop_down" }, void 0), | ||
@@ -21,0 +21,0 @@ error: _jsx(FontIcon, { children: "error_outline" }, void 0), |
@@ -17,3 +17,7 @@ import { ReactElement, ReactNode } from "react"; | ||
/** | ||
* The general icon to use for downloading content. | ||
* The general icon to use for the `FileInput` component (normally file | ||
* uploads). | ||
* | ||
* @remarks \@since 4.0.3 Changed the default icon to be `file_upload` and | ||
* this will be renamed to `upload` in the next major release. | ||
*/ | ||
@@ -20,0 +24,0 @@ download?: ReactNode; |
@@ -21,3 +21,3 @@ "use strict"; | ||
checkbox: (0, jsx_runtime_1.jsx)(FontIcon_1.FontIcon, { children: "check_box" }, void 0), | ||
download: (0, jsx_runtime_1.jsx)(FontIcon_1.FontIcon, { children: "file_download" }, void 0), | ||
download: (0, jsx_runtime_1.jsx)(FontIcon_1.FontIcon, { children: "file_upload" }, void 0), | ||
dropdown: (0, jsx_runtime_1.jsx)(FontIcon_1.FontIcon, { children: "arrow_drop_down" }, void 0), | ||
@@ -24,0 +24,0 @@ error: (0, jsx_runtime_1.jsx)(FontIcon_1.FontIcon, { children: "error_outline" }, void 0), |
{ | ||
"name": "@react-md/icon", | ||
"version": "4.0.1", | ||
"version": "4.0.3", | ||
"description": "This package is for including icons within react-md. There is included support for both font icons and SVG icons. There is also a helper component for applying spacing between icons and text.", | ||
@@ -33,5 +33,5 @@ "main": "./lib/index.js", | ||
"dependencies": { | ||
"@react-md/theme": "^4.0.1", | ||
"@react-md/typography": "^4.0.1", | ||
"@react-md/utils": "^4.0.1", | ||
"@react-md/theme": "^4.0.3", | ||
"@react-md/typography": "^4.0.3", | ||
"@react-md/utils": "^4.0.3", | ||
"classnames": "^2.3.1" | ||
@@ -44,8 +44,17 @@ }, | ||
"peerDependencies": { | ||
"react": ">= 16.14" | ||
"react": ">= 16.14", | ||
"react-dom": ">= 16.14" | ||
}, | ||
"peerDependenciesMeta": { | ||
"react": { | ||
"optional": false | ||
}, | ||
"react-dom": { | ||
"optional": false | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "0df0f24d688ea7c867b7ef656ee9887f00215705" | ||
"gitHead": "39edcb237de86528426b8011396f677b01b6a929" | ||
} |
@@ -17,3 +17,7 @@ import { ReactElement, ReactNode } from "react"; | ||
/** | ||
* The general icon to use for downloading content. | ||
* The general icon to use for the `FileInput` component (normally file | ||
* uploads). | ||
* | ||
* @remarks \@since 4.0.3 Changed the default icon to be `file_upload` and | ||
* this will be renamed to `upload` in the next major release. | ||
*/ | ||
@@ -20,0 +24,0 @@ download?: ReactNode; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
145588
1855
6
Updated@react-md/theme@^4.0.3
Updated@react-md/typography@^4.0.3
Updated@react-md/utils@^4.0.3