Skip to content

Commit e4a5eb6

Browse files
chore: Bump eslint-plugin-react from 7.11.1 to 7.14.0 (#622)
* chore: Bump eslint-plugin-react from 7.11.1 to 7.14.0 Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.11.1 to 7.14.0. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](jsx-eslint/eslint-plugin-react@v7.11.1...v7.14.0) Signed-off-by: dependabot-preview[bot] <[email protected]> * empty commit to rebuild netlify * added missing proptypes * added onclick proptype * updated snapshot with deleted productTile in tile media
1 parent 7e62459 commit e4a5eb6

29 files changed

+43
-8
lines changed

package-lock.json

Lines changed: 9 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
"eslint-plugin-import": "2.18.0",
9595
"eslint-plugin-jsx-a11y": "6.2.1",
9696
"eslint-plugin-loosely-restrict-imports": "^0.1.15",
97-
"eslint-plugin-react": "7.11.1",
97+
"eslint-plugin-react": "7.14.0",
9898
"file-loader": "4.0.0",
9999
"fork-ts-checker-webpack-plugin-alt": "0.4.14",
100100
"fs-extra": "8.0.1",

src/ActionBar/ActionBar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const ActionBar = ({ mobile, width, children, className, ...props }) => {
2727
ActionBar.displayName = 'ActionBar';
2828

2929
ActionBar.propTypes = {
30+
children: PropTypes.node,
3031
className: PropTypes.string,
3132
mobile: PropTypes.bool,
3233
width: PropTypes.string

src/Alert/Alert.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Alert.displayName = 'Alert';
8080

8181
Alert.propTypes = {
8282
buttonProps: PropTypes.object,
83+
children: PropTypes.node,
8384
className: PropTypes.string,
8485
dismissible: PropTypes.bool,
8586
link: PropTypes.string,

src/Badge/Badge.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const Badge = ({ type, modifier, children, className, ...props }) => {
2323
Badge.displayName = 'Badge';
2424

2525
Badge.propTypes = {
26+
children: PropTypes.node,
2627
className: PropTypes.string,
2728
modifier: PropTypes.oneOf(BADGE_MODIFIERS),
2829
type: PropTypes.oneOf(BADGE_TYPES)

src/Badge/Counter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const Counter = ({ localizedText, notification, children, className, ...props })
2222
Counter.displayName = 'Counter';
2323

2424
Counter.propTypes = {
25+
children: PropTypes.node,
2526
className: PropTypes.string,
2627
localizedText: CustomPropTypes.i18n({
2728
counterLabel: PropTypes.string

src/Badge/Label.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const Label = ({ type, children, className, ...props }) => {
1717
Label.displayName = 'Label';
1818

1919
Label.propTypes = {
20+
children: PropTypes.node,
2021
className: PropTypes.string,
2122
type: PropTypes.oneOf(LABEL_TYPES)
2223
};

src/Badge/Status.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const Status = ({ type, glyph, children, className, ...props }) => {
2424
Status.displayName = 'Status';
2525

2626
Status.propTypes = {
27+
children: PropTypes.node,
2728
className: PropTypes.string,
2829
glyph: PropTypes.string,
2930
type: PropTypes.oneOf(STATUS_TYPES)

src/Breadcrumb/_BreadcrumbItem.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ const BreadcrumbItem = ({ url, name, className, children, ...props }) => {
3030
BreadcrumbItem.displayName = 'Breadcrumb.Item';
3131

3232
BreadcrumbItem.propTypes = {
33+
children: PropTypes.node,
34+
className: PropTypes.string,
3335
name: PropTypes.string,
3436
url: PropTypes.string
3537
};

src/Identifier/Identifier.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Identifier.displayName = 'Identifier';
3838

3939
Identifier.propTypes = {
4040
backgroundImageUrl: PropTypes.string,
41+
children: PropTypes.node,
4142
className: PropTypes.string,
4243
color: CustomPropTypes.range(1, 9),
4344
glyph: PropTypes.string,

0 commit comments

Comments
 (0)