repo
stringclasses
21 values
pull_number
float64
45
194k
instance_id
stringlengths
16
34
issue_numbers
stringlengths
6
27
base_commit
stringlengths
40
40
patch
stringlengths
263
270k
test_patch
stringlengths
312
408k
problem_statement
stringlengths
38
47.6k
hints_text
stringlengths
1
257k
created_at
stringdate
2016-01-11 17:37:29
2024-10-18 14:52:41
language
stringclasses
4 values
Dockerfile
stringclasses
279 values
P2P
stringlengths
2
10.2M
F2P
stringlengths
11
38.9k
F2F
stringclasses
86 values
test_command
stringlengths
27
11.4k
task_category
stringclasses
5 values
is_no_nodes
bool
2 classes
is_func_only
bool
2 classes
is_class_only
bool
2 classes
is_mixed
bool
2 classes
num_func_changes
int64
0
238
num_class_changes
int64
0
70
num_nodes
int64
0
264
is_single_func
bool
2 classes
is_single_class
bool
2 classes
modified_nodes
stringlengths
2
42.2k
mui/material-ui
18,824
mui__material-ui-18824
['15728']
ad6fe1bfc569ee4230f2237e6639b22bdc4b7090
diff --git a/docs/pages/api/paper.md b/docs/pages/api/paper.md --- a/docs/pages/api/paper.md +++ b/docs/pages/api/paper.md @@ -29,6 +29,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">component</span> | <span class="prop-type">elementType</span> | <span c...
diff --git a/packages/material-ui/src/Paper/Paper.test.js b/packages/material-ui/src/Paper/Paper.test.js --- a/packages/material-ui/src/Paper/Paper.test.js +++ b/packages/material-ui/src/Paper/Paper.test.js @@ -49,6 +49,13 @@ describe('<Paper />', () => { }); }); + describe('prop: variant', () => { + it('...
[Paper] Support outlined Card / Paper The Material spec states that cards on the desktop have 0dp elevation, and should be outlined instead of being delimited using their shadow. I think this variant should be supported. This [has been mentioned in an unrelated issue](https://github.com/mui-org/material-ui/pull/1524...
@mjadczak Thank you for opening the issue. I wasn't aware the Material Specification was supporting it. I'm tempted to encourage this API: ```jsx <Paper variant="outlined"> ``` It would invalidate the elevation prop. > the outline seamlessly merges into the media block at the top of the card That's going to be t...
2019-12-13 21:27:20+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui/src/Paper/Paper.test.js-><Paper /> Material-UI component API does spread props to the root component', 'packages/material-ui/src/Paper/Paper.test.js-><Paper /> Material-UI component API ref attaches the ref', 'packages/material-ui/src/Paper/Paper.test.js-><Paper /> allows custom elevations via th...
['packages/material-ui/src/Paper/Paper.test.js-><Paper /> prop: variant adds a outlined class']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Paper/Paper.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["docs/src/pages/components/cards/SimpleCard.js->program->function_declaration:SimpleCard"]
mui/material-ui
18,827
mui__material-ui-18827
['18788']
86b540205414e2e1a0cf4f2e406b7cbcc76c1789
diff --git a/docs/pages/api/autocomplete.md b/docs/pages/api/autocomplete.md --- a/docs/pages/api/autocomplete.md +++ b/docs/pages/api/autocomplete.md @@ -27,6 +27,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">autoComplete</span> | <span class="prop-typ...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -564,8 +564,8 @@ describe('<Autocomple...
[Autocomplete] On mobile selecting option keeps keyboard open <!-- Provide a general summary of the issue in the Title above --> When using the autocomplete input on mobile the keyboard doesn't disappear after selecting an item from the dropdown list. Even when selecting an item and seeing it populate the input then c...
@oliviertassinari On desktop as well as mobile, the underlying `<TextField />` keeps focused after an option is selected. Is this not the normal behaviour? @scott-mcnulty I have wondered about this point during the initial implementation of the component. Keeping the focus was done on purpose to be closer to a regular...
2019-12-14 00:40:20+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: blurOnSelect [blurOnSelect="touch"] should only blur the input when an option is touched', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: blurOnSelect [blurOnSelect=true] should blur the inp...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
18,857
mui__material-ui-18857
['18757']
ee404d3de8e0979504cada814c43da4893166628
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -110,11 +110,8 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) { if (o...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -593,6 +593,39 @@ describe('<Select />', () => { clock.restore(); }); + it('should no...
[Select] Controlled select field does not lose focus when clicking outside the component Select field focus is not lost when a controlled select field is opened via the controlling component and then clicked away from. - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://gith...
It seems that the behavior has changed in #17299. @barnc @eps1lon What do you think of this diff? ```diff diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js index 8afedfc12..f82564bb2 100644 --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packa...
2019-12-15 18:38:22+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> prop: open (controlled) should not focus on close controlled select']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
18,889
mui__material-ui-18889
['18873']
e112a44e6ccc2fa0b175d0313c83738413152c08
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -108,6 +108,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -205,6 +205,27 @@ describe('<Autocompl...
[Autocomplete] Provide options to control behaviour when cleared <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked chec...
@Monbrey - What's your motivation for such behavior? - What's wrong with `disableOpenOnFocus`? - What about a solution like this one: https://github.com/mui-org/material-ui/issues/18815#issuecomment-565599719? Basically, we could give a `reason` argument to the `onOpen` callback and you could ignore the "clear" even...
2019-12-16 21:56:56+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed does not open on clear']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
18,897
mui__material-ui-18897
['18656', '18957']
6ced014170c18eefa5549f2a165881a73d94f943
diff --git a/docs/pages/api/autocomplete.md b/docs/pages/api/autocomplete.md --- a/docs/pages/api/autocomplete.md +++ b/docs/pages/api/autocomplete.md @@ -60,7 +60,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">noOptionsText</span> | <span class="prop-ty...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -682,7 +682,7 @@ describe('<Autocomple...
[Autocomplete] Validate freeSolo input (with multiple) <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox shoul...
@andreasheim What if we swap the call order? To: 1. `onInputChange` 1. `onChange` I suspect your use case is more common. Swapping the order should cover my case for sure. Trying to think of a case where this could cause trouble, but I don't think it should Me neither, I could think of the automatic tokenizat...
2019-12-17 13:49:49+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> controlled should fire the input change event before the change event']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
18,994
mui__material-ui-18994
['18327']
fec696d7ce425c28f191a8766b2331126dc344d0
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -232,8 +232,8 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -889,4 +889,34 @@ describe('<Autocompl...
[Autocomplete] Zero (0) integer key display throws An **Autocomplete** component with a list of integer values with zero, e.g. `[0, 10, 20]` stops displaying proper popup after selecting "0" and displays "No options" instead if `getOptionLabel` is used, e.g: ```js getOptionLabel={option => option === 0 ? "Any" : op...
@OnkelTem Thank you for the bug report. It's an issue with the value `0`. What do you think of this diff? Do you want to submit a pull request? :) ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js index feb69e2f...
2019-12-27 05:05:33+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W --ignore-engines @types/prop-types @types/react-dom @types/sinon @types/chai @types/chai-dom @types/format-util RUN echo 'var mocha = require("mocha");' > custo...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: getOptionLabel is considered for falsy values when filtering the the list of options']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,003
mui__material-ui-19003
['18652']
5533914d1cf6ef43c00ff99347c6bc561ac63977
diff --git a/docs/src/pages/customization/breakpoints/breakpoints.md b/docs/src/pages/customization/breakpoints/breakpoints.md --- a/docs/src/pages/customization/breakpoints/breakpoints.md +++ b/docs/src/pages/customization/breakpoints/breakpoints.md @@ -171,8 +171,8 @@ const styles = theme => ({ #### Arguments -1...
diff --git a/packages/material-ui/src/styles/createBreakpoints.test.js b/packages/material-ui/src/styles/createBreakpoints.test.js --- a/packages/material-ui/src/styles/createBreakpoints.test.js +++ b/packages/material-ui/src/styles/createBreakpoints.test.js @@ -23,7 +23,7 @@ describe('createBreakpoints', () => { ...
[theme] Support breakpoints.between(a, b) with number Why theme.breakpoints.between doesn't take 2 number as optional input type like all the others breakpoints functions? Is it possibile to add this possibility? Thanks
Interesting, why using arbitrary number values instead of the default breakpoints named (sm, md, etc)? Note that you can customize these breakpoints. Actually, I see your point: the up and the down helpers support arbitrary values, but the between helper doesn't. For consistency, it would make sense to support it 👍. ...
2019-12-27 20:07:30+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/styles/createBreakpoints.test.js->createBreakpoints down should work', 'packages/material-ui/src/styles/createBreakpoints.test.js->createBreakpoints down should work for md', 'packages/material-ui/src/styles/createBreakpoints.test.js->createBreakpoints down should accept a number', 'packages/...
['packages/material-ui/src/styles/createBreakpoints.test.js->createBreakpoints between should accept numbers']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/styles/createBreakpoints.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/styles/createBreakpoints.js->program->function_declaration:createBreakpoints->function_declaration:between"]
mui/material-ui
19,072
mui__material-ui-19072
['18958']
e1705939cb75496958ee2eb34a8bfbe67aff3808
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.js @@ -356,8 +356,7 @@ const Autocomplete = React.forwardRef(fun...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -92,6 +92,42 @@ describe('<Autocomplet...
[Autocomplete] Prevent form submit with freeSolo and multiple ![image](https://user-images.githubusercontent.com/33362998/71338793-cbfbb380-2516-11ea-93d4-a32ae1699b9e.png) https://codesandbox.io/s/vibrant-water-pepu1
You can enable "required" tag in your textfield. Do you expect the same behavior without using "reqiured" tag? I think that this is a leftover during the initial implementation. I would propose the following diff: ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/mat...
2020-01-04 12:09:14+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> should trigger a form expectedly']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,121
mui__material-ui-19121
['19109']
c99bd0dbbfdc72e2e5e1805367cc9a42ff393e3c
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -782,21 +782,33 @@ export default ...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -955,4 +955,31 @@ describe('<Autocompl...
[Autocomplete] Grouping logic is broken <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this:...
I like the proposal. The order seems to be preserved and the performance impact looks OK. The current logic only groups sequential options, but it should probably group them all. My only concern with your proposed solution is the usage of `for (const option of`, I'm not sure how it transpiles, maybe use forEach ins...
2020-01-07 13:11:06+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: groupBy correctly groups options and preserves option order in each group']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,215
mui__material-ui-19215
['18976']
5633c2768437604c7cfeed4eb62493c537469b19
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -430,7 +430,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -814,6 +814,27 @@ describe('<Autocompl...
[Autocomplete] freeSolo (tags) does not not allow enter the same value more then once In autocomplete with multiple values (tags), on the `feeSolo` version, if you try to insert the same value twice, the first value is deleted. ## Current Behavior 😯 If I add tag and try to add it again it deletes the first one. ...
@adica What's your use case? not sure if I need the double tag, but definitely it should not delete the previous one.. Ok, it should probably clear the input and keep the existing values. @oliviertassinari I'm in doubt if this should happen only with custom values or also when the user clicks in an option which matches...
2020-01-13 14:30:51+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: freeSolo should not delete exiting tag when try to add it twice']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,257
mui__material-ui-19257
['19047', '19047']
05c90044e2aca4b04d368a4948221c69810d7ead
diff --git a/docs/pages/api/autocomplete.md b/docs/pages/api/autocomplete.md --- a/docs/pages/api/autocomplete.md +++ b/docs/pages/api/autocomplete.md @@ -91,6 +91,8 @@ Any other props supplied will be provided to the root element (native element). | <span class="prop-name">focused</span> | <span class="prop-name">.Mu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -39,6 +39,14 @@ describe('<Autocomplet...
Autocomplete disableClearable/freeSolo doesn't decrease right padding applied to input <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> ...
It sounds like something we should fix. @jedwards1211 Do you want to give it a try? Yeah I can tomorrow, I've been on vacation It sounds like something we should fix. @jedwards1211 Do you want to give it a try? Yeah I can tomorrow, I've been on vacation
2020-01-15 18:15:15+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> combobox should apply the icon classes', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior prop: disableClearable should not render the clear button', 'packages/material-ui-lab/src/Autoco...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,278
mui__material-ui-19278
['19210', '19210']
05c90044e2aca4b04d368a4948221c69810d7ead
diff --git a/docs/pages/api/skeleton.md b/docs/pages/api/skeleton.md --- a/docs/pages/api/skeleton.md +++ b/docs/pages/api/skeleton.md @@ -26,7 +26,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi |:-----|:-----|:--------|:------------| | <span class="prop-name">animation</span> |...
diff --git a/packages/material-ui-lab/src/Skeleton/Skeleton.test.js b/packages/material-ui-lab/src/Skeleton/Skeleton.test.js --- a/packages/material-ui-lab/src/Skeleton/Skeleton.test.js +++ b/packages/material-ui-lab/src/Skeleton/Skeleton.test.js @@ -21,9 +21,9 @@ describe('<Skeleton />', () => { describeConforman...
Skeleton provides error in <p> tags <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x]...
@ximex What do you think of this diff? ```diff diff --git a/packages/material-ui-lab/src/Skeleton/Skeleton.js b/packages/material-ui-lab/src/Skeleton/Skeleton.js index c4696edc7..56b0ecf51 100644 --- a/packages/material-ui-lab/src/Skeleton/Skeleton.js +++ b/packages/material-ui-lab/src/Skeleton/Skeleton.js @@ -...
2020-01-17 14:36:10+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Skeleton/Skeleton.test.js-><Skeleton /> Material-UI component API prop: component can render another root component with the `component` prop', 'packages/material-ui-lab/src/Skeleton/Skeleton.test.js-><Skeleton /> Material-UI component API applies the className to the root component', 'pa...
['packages/material-ui-lab/src/Skeleton/Skeleton.test.js-><Skeleton /> Material-UI component API does spread props to the root component', 'packages/material-ui-lab/src/Skeleton/Skeleton.test.js-><Skeleton /> Material-UI component API ref attaches the ref']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Skeleton/Skeleton.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,304
mui__material-ui-19304
['19203']
d30e6bbb1083500d2d88d1d619060c857e5c501e
diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -482,6 +482,19 @@ const Tooltip = React.forwardRef(function Tooltip(props, ref) { } } + // Avoid the cr...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -220,10 +220,10 @@ describe('<Tooltip />', () => { it('should use hysteresis with the ent...
Scrollbar width padding misaligning pages caused by Menu + Tooltip <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked chec...
With MacOS you have to set "Show scroll bars" to "Always" in System Preferences / General in order to see this issue. This problem seems to start appearing with version `4.7.0`. Forked the codesandbox: https://codesandbox.io/s/material-ui-issue-padding-menu-mwnze Changes: - use `@material-ui/core` version `4.7.0`, ...
2020-01-19 20:46:32+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: overrides should be transparent for the onMouseOver event', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: over...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> should use the same popper.js instance between two renders']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha test/utils/createClientRender.js packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,319
mui__material-ui-19319
['19288']
58d7fd9ffac70d69b4225042124c6291bb0fb14a
diff --git a/docs/pages/api/checkbox.md b/docs/pages/api/checkbox.md --- a/docs/pages/api/checkbox.md +++ b/docs/pages/api/checkbox.md @@ -28,7 +28,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">checkedIcon</span> | <span class="prop-type">node</span> | ...
diff --git a/packages/material-ui/src/Checkbox/Checkbox.test.js b/packages/material-ui/src/Checkbox/Checkbox.test.js --- a/packages/material-ui/src/Checkbox/Checkbox.test.js +++ b/packages/material-ui/src/Checkbox/Checkbox.test.js @@ -1,11 +1,14 @@ import React from 'react'; -import { assert } from 'chai'; +import { a...
[SwitchBase] Ignores FormControl disabled state <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look li...
Speaking of this issue, I can see three options I could fix this issue 1. Change the [SwitchBase] logic to first check if the [FormControl] component is disabled. If not, fallback to own `disabled` prop ``` let disabled = muiFormControl && muiFormControl.disabled || disabledProp; ``` 2. We could also reset de...
2020-01-20 16:27:45+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> Material-UI component API applies the className to the root component', 'packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> with FormControl enabled should be overridden by props', 'packages/material-ui/src/Checkbox/Checkbox.test.j...
['packages/material-ui/src/Radio/Radio.test.js-><Radio /> with FormControl disabled should have the disabled class', 'packages/material-ui/src/Checkbox/Checkbox.test.js-><Checkbox /> with FormControl disabled should have the disabled class', 'packages/material-ui/src/Switch/Switch.test.js-><Switch /> with FormControl d...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/internal/SwitchBase.test.js packages/material-ui/src/Switch/Switch.test.js packages/material-ui/src/Checkbox/Checkbox.test.js packages/material-ui/src/Radio/Radio.test.js --reporter /testbed/custom-reporter.js --exi...
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,384
mui__material-ui-19384
['19270']
0ad3b6da06d977c9b6c16fb004a07e1f54036fb1
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -653,7 +653,9 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -29,10 +29,10 @@ describe('<Autocomple...
[Autocomplete] Improve autoSelect logic For AutoComplete, on Blur when multiple and freeSolo is set. It will be nice that the value of the input field, validate, like when we hit Enter. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is no...
@castroCrea I don't understand, could you provide more details? I'm sorry for not been clear. For example go on https://material-ui.com/components/autocomplete/#multiple-values the freeSolo one, enter a freeSolo value without hit Enter, then hit Tab The value is not Saved, it doesn't show on onChange props. The ...
2020-01-25 16:42:35+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoSelect should add new value when autoSelect & multiple on blur', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoSelect should add new value when autoSelect & multiple & freeSolo on b...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,434
mui__material-ui-19434
['19250']
cbe079c4a4779778736f1c2d065158fb3d29320e
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -105,6 +105,9 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) { }; co...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -671,6 +671,30 @@ describe('<Select />', () => { expect(getByRole('listbox')).to.be.ok; ...
Select doesn't respond to click event through code <!-- Provide a general summary of the issue in the Title above --> Hi, i'm trying to test my select component with puppeteer. <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off t...
See #18655. > also it seems that since that version right-click on Select also open the component what didn't happen in the version Interesting. > also it seems that since that version right click on Select also open the component what didn't happened in the version 4.6.1 This is indeed a bug. The native select ...
2020-01-28 02:12:07+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> prop: open (controlled) open only with the left mouse button click']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,511
mui__material-ui-19511
['18646']
4f074722a67fe3d1d468f5a014322f238b6d48bc
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -130,7 +130,6 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -49,7 +49,51 @@ describe('<Autocomplet...
[Autocomplete] Input cleared unexpectedly with freeSolo, autoHighlight and autoSelect <!-- Provide a general summary of the issue in the Title above --> An `Autocomplete` with `freeSolo`, `autoHighlight` and `autoSelect` props set to `true` clears its input when it loses focus and the input value is not an exact or ...
@reiv Thanks for the bug report, I can confirm two issues: 1. type <kbd>a</kbd> x2, type <kbd>Backspace</kbd> => observe that the first option is not highlighted. 2. type <kbd>a</kbd> x2, blur => observe that a `undefined` value is selected. What do you think of the following diff? ```diff diff --git a/packa...
2020-02-01 19:39:43+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies to root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open closes the popup if Escape is pressed ', 'pack...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoSelect should not clear on blur when value does not match any option', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoHighlight should set the focus on the first item']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,612
mui__material-ui-19612
['19653']
5794780fc25a39c3ebee20f946b4a1b4e92b59d2
diff --git a/docs/pages/api/alert.md b/docs/pages/api/alert.md --- a/docs/pages/api/alert.md +++ b/docs/pages/api/alert.md @@ -30,7 +30,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">closeText</span> | <span class="prop-type">string</span> | <span class=...
diff --git a/packages/material-ui-lab/src/Pagination/Pagination.test.js b/packages/material-ui-lab/src/Pagination/Pagination.test.js --- a/packages/material-ui-lab/src/Pagination/Pagination.test.js +++ b/packages/material-ui-lab/src/Pagination/Pagination.test.js @@ -8,18 +8,18 @@ import Pagination from './Pagination'; ...
[PaginationItem] Incorrect style sheet name? https://material-ui.com/api/pagination-item/ ![image](https://user-images.githubusercontent.com/7766733/74216373-7c2ea280-4ca4-11ea-873b-271a0c2889e0.png) Shouldn't that be `MuiPaginationItem` instead of `PaginationItem`, to be consistent with every other component? ...
null
2020-02-08 13:20:48+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> Material-UI component API should render without errors in ReactTestRenderer', 'packages/material-ui-lab/src/PaginationItem/PaginationItem.test.js-><PaginationItem /> Material-UI component API spreads props to the root component', 'packages/mat...
['packages/material-ui/src/SvgIcon/SvgIcon.test.js-><SvgIcon /> prop: titleAccess should be able to make an icon accessible', 'packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> Material-UI component API spreads props to the root component']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/PaginationItem/PaginationItem.test.js packages/material-ui-lab/src/Pagination/Pagination.test.js packages/material-ui/src/SvgIcon/SvgIcon.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
5
0
5
false
false
["docs/src/modules/utils/generateMarkdown.js->program->function_declaration:generateProps", "docs/src/pages/components/pagination/PaginationControlled.js->program->function_declaration:PaginationControlled", "packages/material-ui-lab/src/PaginationItem/PaginationItem.js->program->function_declaration:defaultGetAriaLabe...
mui/material-ui
19,614
mui__material-ui-19614
['18022']
7f4b81ffb7b76f73319b38f1b9f287f43c74e6d0
diff --git a/docs/pages/api/divider.md b/docs/pages/api/divider.md --- a/docs/pages/api/divider.md +++ b/docs/pages/api/divider.md @@ -27,6 +27,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">absolute</span> | <span class="prop-type">bool</span> | <span c...
diff --git a/packages/material-ui/src/Divider/Divider.test.js b/packages/material-ui/src/Divider/Divider.test.js --- a/packages/material-ui/src/Divider/Divider.test.js +++ b/packages/material-ui/src/Divider/Divider.test.js @@ -37,6 +37,11 @@ describe('<Divider />', () => { assert.strictEqual(wrapper.hasClass(class...
[Divider] Height is not correct for vertical divider in a flexbox <!-- Provide a general summary of the issue in the Title above --> When a divider component with vertical orientation is inside a container with flex and height set to 100%, the height is calculated as `0px` in chrome. <!-- Thank you very much for ...
@hdstusnick In a flex container, use: ```css hr { align-self: stretch; height: auto; } ``` I don't know how we could internalize this style. Maybe with a `flexItem?: boolean` prop? Is the below bug is related to this issue? As you can see, the [vertical divider](https://material-ui.com/components/dividers/...
2020-02-08 19:14:06+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Divider/Divider.test.js-><Divider /> Material-UI component API spreads props to the root component', 'packages/material-ui/src/Divider/Divider.test.js-><Divider /> Material-UI component API should render without errors in ReactTestRenderer', 'packages/material-ui/src/Divider/Divider.test.js->...
['packages/material-ui/src/Divider/Divider.test.js-><Divider /> should set the flexItem class']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Divider/Divider.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["docs/src/pages/components/dividers/VerticalDividers.js->program->function_declaration:VerticalDividers"]
mui/material-ui
19,699
mui__material-ui-19699
['19595']
80b8dad3a427fefa1f7ddf25c81d0e708383a71b
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -439,6 +439,21 @@ export default f...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -736,6 +736,36 @@ describe('<Autocompl...
[Autocomplete] Warn wrong comparison getOptionSelected implementation Bug Demo: https://codesandbox.io/s/material-demo-q3fno ![autocomplete](https://user-images.githubusercontent.com/30294752/73972400-d7be0080-4931-11ea-8d5f-40c8499d8752.png)
It's a duplicate of #18499. @tagaychinova Interesting case, I propose the following new error message: ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js index dfd6171c8..47e2a4c59 100644 --- a/packages/material-ui...
2020-02-14 13:47:26+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> warnings warn if getOptionSelected match multiple values for a given option']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,724
mui__material-ui-19724
['19708']
56db981147e3345dbd6bc255820152200525b197
diff --git a/docs/pages/api/breadcrumbs.md b/docs/pages/api/breadcrumbs.md --- a/docs/pages/api/breadcrumbs.md +++ b/docs/pages/api/breadcrumbs.md @@ -27,6 +27,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name required">children&nbsp;*</span> | <span class="...
diff --git a/packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js b/packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js --- a/packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js +++ b/packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js @@ -1,32 +1,42 @@ import React f...
[Breadcrumbs] Can't expand collapsed Breadcrumbs via keyboard <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox ...
I believe that we also miss a descriptive label, something we could have built-in and localize. @oliviertassinari @malouro Can I pick it up ? @captain-yossarian that's cool with me, sure!
2020-02-15 21:44:41+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js-><Breadcrumbs /> Material-UI component API ref attaches the ref', 'packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js-><Breadcrumbs /> Material-UI component API prop: component can render another root component with the `component` prop', 'packages/materi...
['packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js-><BreadcrumbCollapsed /> prop: onKeyDown should be called on key up - Space', 'packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js-><BreadcrumbCollapsed /> prop: onKeyDown should be called on key down - Enter', 'packages/material-ui/src/Bre...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/Breadcrumbs/BreadcrumbCollapsed.js->program->function_declaration:BreadcrumbCollapsed"]
mui/material-ui
19,743
mui__material-ui-19743
['17672']
08e7bf578b3e6c3e03e1a7197f31255a79d15da9
diff --git a/packages/material-ui/src/TextareaAutosize/TextareaAutosize.js b/packages/material-ui/src/TextareaAutosize/TextareaAutosize.js --- a/packages/material-ui/src/TextareaAutosize/TextareaAutosize.js +++ b/packages/material-ui/src/TextareaAutosize/TextareaAutosize.js @@ -35,6 +35,7 @@ const TextareaAutosize = Re...
diff --git a/packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js b/packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js --- a/packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js +++ b/packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js @@ -3,6 +3,7 @@ import { ...
[TextField] "Maximum update depth exceeded." in Internet Explorer 11 App crashes with "Maximum update depth exceeded" triggered by filling a TextField on Internet Explorer 11 - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this ...
I can confirm this behavior. I will try to look into this 😄 Thank you for pointing this out. In this context, I would propose that we put protection in place to limit the number of rerenders, we don't want to see the UI crash because of a layout instability: ```diff diff --git a/packages/material-ui/src/TextareaAu...
2020-02-16 16:30:19+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js-><TextareaAutosize /> layout should update its height when the "rowsMax" prop changes', 'packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js-><TextareaAutosize /> layout resize should handle the resize event', 'packages/material-ui/src/...
['packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js-><TextareaAutosize /> layout warnings warns if layout is unstable but not crash']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/TextareaAutosize/TextareaAutosize.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,766
mui__material-ui-19766
['19765']
22ce67893e545221b11444c9b163274af8d14249
diff --git a/docs/pages/api/tooltip.md b/docs/pages/api/tooltip.md --- a/docs/pages/api/tooltip.md +++ b/docs/pages/api/tooltip.md @@ -30,7 +30,8 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">disableFocusListener</span> | <span class="prop-type">bool</spa...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -36,6 +36,7 @@ describe('<Tooltip />', () => { const render = createClientRender({ strict: ...
[Tooltip] Apply enterDelay on Component base Tooltips shouldn't open immediately when another tooltip is already opened. Each component instance should respect its own delays. Though there is no official description about the behavior, material uses the proposed behavior for its tooltips: see https://material.io/c...
null
2020-02-18 14:49:38+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: overrides should be transparent for the onMouseOver event', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: over...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should use hysteresis with the enterDelay']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,794
mui__material-ui-19794
['19778']
eec5b60861adb72df83b6de80c602940ce773663
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -1,7 +1,7 @@ /* eslint-disable no...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -913,6 +913,25 @@ describe('<Autocompl...
[Autocomplete] Drop list no close outline mouse | Tech | Version | | ----------- | ------- | | Material-UI | v4.9.3 | | React | v16.12.0 | | Browser | Chrome | | TypeScript | | | etc. | | Hi, please, look at the gif with the problem ![1](https://user-im...
Please provide a full reproduction test case. This would help a lot 👷 . A live example would be perfect. [This **codesandbox.io** template](https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app-with-typescript) _may_ be a good starting point. Thank you!
2020-02-21 09:58:34+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> click input should focus the input when clicking on the open action']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
19,849
mui__material-ui-19849
['19454']
436e461dfd368cd460f23b0cb6ca389f26045d56
diff --git a/packages/material-ui-lab/src/TreeView/TreeView.js b/packages/material-ui-lab/src/TreeView/TreeView.js --- a/packages/material-ui-lab/src/TreeView/TreeView.js +++ b/packages/material-ui-lab/src/TreeView/TreeView.js @@ -395,20 +395,44 @@ const TreeView = React.forwardRef(function TreeView(props, ref) { ...
diff --git a/packages/material-ui-lab/src/TreeView/TreeView.test.js b/packages/material-ui-lab/src/TreeView/TreeView.test.js --- a/packages/material-ui-lab/src/TreeView/TreeView.test.js +++ b/packages/material-ui-lab/src/TreeView/TreeView.test.js @@ -174,6 +174,27 @@ describe('<TreeView />', () => { expect(getByTe...
[TreeItem] No conditional rendering support <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like t...
This is an easy fix but due to the massive changes in #18357 I want to wait for that to be merged. > However, as shown above, nodeId is required for both the wrapper and the TreeItem, because TreeView/TreeItem iterates using React.Children naively, assuming all children will be TreeItem components with nodeId props. >...
2020-02-25 21:39:19+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> should be able to be controlled with the selected prop and singleSelect', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> should not error when component state changes', 'packages/material-ui-lab/src/TreeView/TreeView.test.js->...
['packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> should support conditional rendered tree items', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> Material-UI component API applies the className to the root component', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeView/TreeView.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,874
mui__material-ui-19874
['19865']
e0dc00ab67f9ea07d6fc9ca903a8db205df839b3
diff --git a/packages/material-ui/src/TablePagination/TablePagination.js b/packages/material-ui/src/TablePagination/TablePagination.js --- a/packages/material-ui/src/TablePagination/TablePagination.js +++ b/packages/material-ui/src/TablePagination/TablePagination.js @@ -246,6 +246,11 @@ TablePagination.propTypes = { ...
diff --git a/packages/material-ui/src/TablePagination/TablePagination.test.js b/packages/material-ui/src/TablePagination/TablePagination.test.js --- a/packages/material-ui/src/TablePagination/TablePagination.test.js +++ b/packages/material-ui/src/TablePagination/TablePagination.test.js @@ -1,7 +1,8 @@ import * as Reac...
[TablePagination] Out of range warning when "count={-1}" <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox shoul...
@ilmiont Thanks for the report. What do you think of this patch? ```diff diff --git a/packages/material-ui/src/TablePagination/TablePagination.js b/packages/material-ui/src/TablePagination/TablePagination.js index 62ce0ed12..5f75bc459 100644 --- a/packages/material-ui/src/TablePagination/TablePagination.js +++ b...
2020-02-27 01:00:21+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> mount should handle back button clicks properly', 'packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> mount should use labelRowsPerPage', 'packages/material-ui/src/TablePagination/TablePagination.t...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: count=-1 should display the "of more than" text and keep the nextButton enabled']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/TablePagination/TablePagination.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,890
mui__material-ui-19890
['19870']
aa0963253bd682d0c08f21114037749e3e9f0817
diff --git a/docs/pages/api/radio-group.md b/docs/pages/api/radio-group.md --- a/docs/pages/api/radio-group.md +++ b/docs/pages/api/radio-group.md @@ -26,7 +26,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi |:-----|:-----|:--------|:------------| | <span class="prop-name">childr...
diff --git a/packages/material-ui/src/RadioGroup/RadioGroup.test.js b/packages/material-ui/src/RadioGroup/RadioGroup.test.js --- a/packages/material-ui/src/RadioGroup/RadioGroup.test.js +++ b/packages/material-ui/src/RadioGroup/RadioGroup.test.js @@ -85,6 +85,18 @@ describe('<RadioGroup />', () => { assert.strictE...
[RadioGroup] By default unnamed groups are not correctly grouped for accessibility purposes <!-- Provide a general summary of the issue in the Title above --> An unnamed RadioGroup will handle value changes as expected. However, the input elements of different groups will be on the same group in HTML. <!-- Thank...
@dfernandez-asapp Note that we are using (1) in - https://github.com/mui-org/material-ui/blob/4fba0dafd30f608937efa32883d151ba01fc9681/packages/material-ui-lab/src/Rating/Rating.js#L168 - https://github.com/mui-org/material-ui/blob/4fba0dafd30f608937efa32883d151ba01fc9681/packages/material-ui-lab/src/useAutocomplet...
2020-02-28 23:43:36+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/RadioGroup/RadioGroup.test.js-><RadioGroup /> Material-UI component API spreads props to the root component', 'packages/material-ui/src/RadioGroup/RadioGroup.test.js-><RadioGroup /> imperative focus() should not focus any radios if all are disabled', 'packages/material-ui/src/RadioGroup/Radio...
['packages/material-ui/src/RadioGroup/RadioGroup.test.js-><RadioGroup /> useRadioGroup from props should have a default name from the instance', 'packages/material-ui/src/RadioGroup/RadioGroup.test.js-><RadioGroup /> should have a default name']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/RadioGroup/RadioGroup.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
19,901
mui__material-ui-19901
['18815']
b9dec2780203e37148d87788f727c668d9019581
diff --git a/docs/pages/api/autocomplete.md b/docs/pages/api/autocomplete.md --- a/docs/pages/api/autocomplete.md +++ b/docs/pages/api/autocomplete.md @@ -40,7 +40,6 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">disableCloseOnSelect</span> | <span class="...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -15,6 +15,7 @@ describe('<Autocomplete...
[Autocomplete] Improve popup open logic <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like thi...
What's wrong with this behavior? When I switch to another tab, I expect to find my page in the exact same state that I left it when I come back. If the menu of the active element is closed, it is because I wanted it to be closed. switching a tab is not an action that should be interpreted as "the user wants the menu o...
2020-02-29 22:34:27+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior prop: disabled should not render the clear button', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior prop: disabled should not apply the hasClearIcon class', 'packages/...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> Material-UI component API applies the root class to the root component if it has this class', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoHighlight should set the focus on the first item', ...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
3
0
3
false
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete", "docs/src/pages/components/autocomplete/Playground.js->program->function_declaration:Playground", "docs/src/pages/components/autocomplete/GoogleMaps.js->program->function_declaration:GoogleMaps"]
mui/material-ui
20,133
mui__material-ui-20133
['19975']
7b12c4a4e58195846d4f21c2453ba2883db963fd
diff --git a/docs/pages/api-docs/tree-item.md b/docs/pages/api-docs/tree-item.md --- a/docs/pages/api-docs/tree-item.md +++ b/docs/pages/api-docs/tree-item.md @@ -31,6 +31,7 @@ The `MuiTreeItem` name can be used for providing [default props](/customization/ | <span class="prop-name">children</span> | <span class="prop...
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -227,6 +227,28 @@ describe('<TreeItem />', () => { }); });...
[TreeView] Add disabled support <!-- Provide a general summary of the feature in the Title above --> A way to include a TreeItem in a TreeView which is disabled. Disabled being no hover, no click, greyed out styling. <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid ...
Adding the support for a `disabled` prop sounds like a great idea. I could at least find the following benchmark: - https://www.telerik.com/kendo-angular-ui/components/treeview/disabled-state/ Working on this
2020-03-15 19:56:43+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Expansion enter key interaction expands a node with children', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Single Selection mouse should not select a node when click and disableSelection', 'packa...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> prop: disabled selection keyboard should prevent range selection by keyboard + space', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> prop: disabled selection keyboard should prevent selection by keyboard home', 'packages/mate...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeView/TreeView.test.js packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,146
mui__material-ui-20146
['20099']
d4a09a1bfece294121fb2ee78b20e8b0700017f7
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.js b/packages/material-ui-lab/src/TreeItem/TreeItem.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.js @@ -122,7 +122,6 @@ const TreeItem = React.forwardRef(function TreeItem(props, ref) { is...
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -700,7 +700,7 @@ describe('<TreeItem />', () => { describe('Sin...
[TreeView] disableSelection does not disable all selections - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 1) Only click is disabled 2) Single...
null
2020-03-16 15:31:38+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Navigation up arrow interaction moves focus to a sibling node', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility when a tree receives focus should focus the selected node if a node is selected before ...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Multi Selection range selection mouse does not range select when selectionDisabled', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Multi Selection ctrl + a does not select all when disableSelection...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,209
mui__material-ui-20209
['19137']
7e1da61f3a9c0bb2874ad3a12a7e70358b54e98e
diff --git a/docs/pages/api-docs/autocomplete.md b/docs/pages/api-docs/autocomplete.md --- a/docs/pages/api-docs/autocomplete.md +++ b/docs/pages/api-docs/autocomplete.md @@ -45,6 +45,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">filterSelectedOptions</...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -97,6 +97,31 @@ describe('<Autocomplet...
[Autocomplete] Multiple with many options take too much space <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbo...
The only approach I have seen related to this problem during my benchmark is: ![Capture d’écran 2020-01-11 à 20 03 52](https://user-images.githubusercontent.com/3165635/72209356-84c96880-34ad-11ea-9c26-4da3625bd5de.png) https://garden.zendesk.com/react-components/dropdowns/ I found a temporary solution. In your ...
2020-03-21 19:31:41+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: limitTags show all items on focus']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,232
mui__material-ui-20232
['19882']
7e1da61f3a9c0bb2874ad3a12a7e70358b54e98e
diff --git a/packages/material-ui-lab/src/TreeView/TreeView.js b/packages/material-ui-lab/src/TreeView/TreeView.js --- a/packages/material-ui-lab/src/TreeView/TreeView.js +++ b/packages/material-ui-lab/src/TreeView/TreeView.js @@ -56,9 +56,10 @@ const TreeView = React.forwardRef(function TreeView(props, ref) { ......
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -3,7 +3,7 @@ import { expect } from 'chai'; import { spy } from 'sino...
[TreeItem] TreeItem hijacks focus when typing on an input box that updates it. I am using a <TextField /> to change the contents of a TreeView and a matching TreeItem is being focused when I backspace. CodeSandbox: https://codesandbox.io/s/bold-hill-rw9y5 - [X] The issue is present in the latest release. - [X] I...
Can't reproduce: ![mui-tree](https://user-images.githubusercontent.com/12292047/75520751-94bded00-5a06-11ea-8c01-ce32e1c4b122.gif) Please include your environment as was requested in the template. ```md ## Your Environment 🌎 <!-- Include as many relevant details about the environment with which you exp...
2020-03-22 11:40:08+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Navigation up arrow interaction moves focus to a sibling node', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility when a tree receives focus should focus the selected node if a node is selected before ...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> should not focus steal']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,235
mui__material-ui-20235
['18514']
7e1da61f3a9c0bb2874ad3a12a7e70358b54e98e
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -200,10 +200,9 @@ export default f...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -2,7 +2,7 @@ import * as React from 'r...
[Autocomplete] Warn when value and option doesn't match Hi, I am trying to change list options and default value from state. List option is ok but default value is never update. I have add an exemple on this code box : https://codesandbox.io/s/test-material-ui-autocomplete-700nh?fontsize=14&hidenavigation=1&theme=...
👋 Thanks for using Material-UI! We use GitHub issues exclusively as a bug and feature requests tracker, however, this issue appears to be a support request. For support, please check out https://material-ui.com/getting-started/support/. Thanks! If you have a question on StackOverflow, you are welcome to link to it ...
2020-03-22 15:20:27+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> warnings warn if value does not exist in options list']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js test/utils/consoleErrorMock.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,237
mui__material-ui-20237
['20141']
7e1da61f3a9c0bb2874ad3a12a7e70358b54e98e
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.js b/packages/material-ui-lab/src/TreeItem/TreeItem.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.js @@ -328,7 +328,7 @@ const TreeItem = React.forwardRef(function TreeItem(props, ref) { }; ...
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -300,6 +300,26 @@ describe('<TreeItem />', () => { expect(g...
TreeView programmatic focus does not change tab indices - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 Call focus() on a tree item it does not a...
null
2020-03-22 16:21:23+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Navigation up arrow interaction moves focus to a sibling node', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility when a tree receives focus should focus the selected node if a node is selected before ...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility when a tree receives focus should work with programmatic focus']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,238
mui__material-ui-20238
['20154']
7e1da61f3a9c0bb2874ad3a12a7e70358b54e98e
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.js b/packages/material-ui-lab/src/TreeItem/TreeItem.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.js @@ -338,8 +338,13 @@ const TreeItem = React.forwardRef(function TreeItem(props, ref) { }; ...
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -77,6 +77,32 @@ describe('<TreeItem />', () => { expect(getIcon('...
TreeItem does not allow conditional child - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 There is an error ## Expected Behavior 🤔 No erro...
I thought #19849 fixed this but it seems to only fix `TreeView` not `TreeItem`. https://github.com/mui-org/material-ui/pull/20156 There are more serious bugs than this
2020-03-22 16:35:55+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Material-UI component API should render without errors in ReactTestRenderer', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> should call onClick when clicked', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> should allow conditional child', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> should treat an empty array equally to no children', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> should not call onClick...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,247
mui__material-ui-20247
['20193']
5a794bd4974b02536b59d09029b12b4e76824301
diff --git a/packages/material-ui-lab/src/PaginationItem/PaginationItem.js b/packages/material-ui-lab/src/PaginationItem/PaginationItem.js --- a/packages/material-ui-lab/src/PaginationItem/PaginationItem.js +++ b/packages/material-ui-lab/src/PaginationItem/PaginationItem.js @@ -1,7 +1,7 @@ import * as React from 'reac...
diff --git a/packages/material-ui-lab/src/Pagination/Pagination.test.js b/packages/material-ui-lab/src/Pagination/Pagination.test.js --- a/packages/material-ui-lab/src/Pagination/Pagination.test.js +++ b/packages/material-ui-lab/src/Pagination/Pagination.test.js @@ -5,6 +5,7 @@ import { createMount, getClasses } from '...
[Pagination] Missing RTL support I am currently using the material ui pagination and after passing the rtl option they appear as so <img width="208" alt="Screen Shot 2020-03-20 at 7 12 25 AM" src="https://user-images.githubusercontent.com/9379960/77129549-6cac3180-6a7a-11ea-9c80-90d20a321f03.png"> The order is cor...
@hawky93 Please provide a full reproduction test case. This would help a lot 👷 . A live example would be perfect. [This **codesandbox.io** template](https://material-ui.com/r/issue-template) is a good starting point. Thank you! @hawky93 Thanks for the report. Regarding the reproduction, the steps are 1. navigate to ...
2020-03-23 13:43:32+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> Material-UI component API should render without errors in ReactTestRenderer', 'packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> should render', 'packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination ...
['packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> renders controls with correct order in rtl theme']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Pagination/Pagination.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,252
mui__material-ui-20252
['19883']
5a794bd4974b02536b59d09029b12b4e76824301
diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -280,14 +280,10 @@ const Tooltip = React.forwardRef(function Tooltip(props, ref) { } }; - const handleE...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -481,6 +481,32 @@ describe('<Tooltip />', () => { assert.strictEqual(wrapper.find('[r...
[Tooltip] onFocus does not work on TextField if using a Tooltip with it - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 `onFocus` does not work i...
Introduced in #18687 which should be reverted until we unterstand mouseEnter/over event propagation in react. Agree, #18687 wasn't probably the best fix for this. It didn't account for components, like the TextField. that might apply the event on a nested element. I think that a clean solution would be to add an arg...
2020-03-23 15:35:18+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: PopperProps should pass PopperProps to Popper Component', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: overri...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> focus should not prevent event handlers of children']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,253
mui__material-ui-20253
['16341']
d12a999a32a3495dfe3c313409b24cfb1a489ee5
diff --git a/packages/material-ui/src/styles/createPalette.js b/packages/material-ui/src/styles/createPalette.js --- a/packages/material-ui/src/styles/createPalette.js +++ b/packages/material-ui/src/styles/createPalette.js @@ -132,12 +132,6 @@ export default function createPalette(palette) { // Bootstrap: https://gi...
diff --git a/packages/material-ui/src/styles/createPalette.test.js b/packages/material-ui/src/styles/createPalette.test.js --- a/packages/material-ui/src/styles/createPalette.test.js +++ b/packages/material-ui/src/styles/createPalette.test.js @@ -5,14 +5,6 @@ import { darken, lighten } from './colorManipulator'; impor...
TypeError: color.charAt is not a function <!--- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> I have some warning like this: **Typ...
Please provide a reproducible example. I would also check your imports and make sure they are less than 2 path levels. I had the same error. Separate the rest of the styling from the palette. Something like this: ```jsx const theme = createMuiTheme({ palette: { primary: { }, secondary: { ...
2020-03-23 15:39:03+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/styles/createPalette.test.js->createPalette() should create a palette with a rich color object', 'packages/material-ui/src/styles/createPalette.test.js->createPalette() should calculate light and dark colors using the provided tonalOffset', 'packages/material-ui/src/styles/createPalette.test....
['packages/material-ui/src/styles/createPalette.test.js->createPalette() warnings throws an exception when a wrong color is provided']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/styles/createPalette.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
3
0
3
false
false
["packages/material-ui/src/styles/createPalette.js->program->function_declaration:createPalette->function_declaration:getContrastText", "packages/material-ui/src/styles/createPalette.js->program->function_declaration:createPalette", "packages/material-ui/src/styles/createPalette.js->program->function_declaration:create...
mui/material-ui
20,309
mui__material-ui-20309
['20243']
81c20b849f7aeddb4004ed215d80f7ca609354c1
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.js b/packages/material-ui-lab/src/TreeItem/TreeItem.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.js @@ -195,14 +195,6 @@ const TreeItem = React.forwardRef(function TreeItem(props, ref) { }...
diff --git a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js --- a/packages/material-ui-lab/src/TreeItem/TreeItem.test.js +++ b/packages/material-ui-lab/src/TreeItem/TreeItem.test.js @@ -651,6 +651,28 @@ describe('<TreeItem />', () => { fireEven...
[TreeView] Trigger focus on Ctrl + C / V <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this...
I was reproducing the bug above and I think I found another. ## Steps to Reproduce 🕹 Steps: 1. Load [basic-tree-view](https://material-ui.com/components/tree-view/#basic-tree-view) 2. Open "Application" 3. Ctrl + C - will focus `Calendar` 4. Ctrl + C - will focus `Chrome` 5. Ctrl + C - will focus `Calendar`...
2020-03-28 04:47:32+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Expansion enter key interaction expands a node with children', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Single Selection mouse should not select a node when click and disableSelection', 'packa...
['packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Navigation type-ahead functionality should not move focus when pressing a modifier key + letter']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeItem/TreeItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,315
mui__material-ui-20315
['20388']
403a6dfab02175f4d49efe3ba2868973fcdb035e
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -416,6 +416,17 @@ export default f...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -77,7 +77,7 @@ describe('<Autocomplete...
[Autocomplete] options list keeps jumping/scrolling back up when disableCloseOnSelect and multiple is set <!-- Provide a general summary of the issue in the Title above --> When you have a multi-value autocomplete component and have also set the `disableCloseOnSelect`, a weird jump/scroll back to the first selection o...
null
2020-03-28 23:39:57+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoHighlight should keep the current highlight if possible']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,356
mui__material-ui-20356
['20296']
67468679f7c5dfa881ea12a32cfe4a5b44cf6680
diff --git a/docs/src/pages/components/selects/MultipleSelect.js b/docs/src/pages/components/selects/MultipleSelect.js --- a/docs/src/pages/components/selects/MultipleSelect.js +++ b/docs/src/pages/components/selects/MultipleSelect.js @@ -161,6 +161,7 @@ export default function MultipleSelect() { return se...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -409,7 +409,7 @@ describe('<Select />', () => { const { getByRole } = render(<Select value="" /...
[Select] Aria error flagged by WAVE and W3C <!-- Provide a general summary of the issue in the Title above --> WAVE errors in tables, in TablePagination/TableFooter <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following l...
Thanks for opening this issue. Does WAVE provide more information beyond "Broken ARIA Reference Errors"? ## Broken ARIA reference ### What It Means An aria-labelledby or aria-describedby reference exists, but the target for the reference does not exist. ### Why It Matters ARIA labels and descriptions wil...
2020-03-31 11:07:37+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> accessibility is labelled by itself when it has a name', 'packages/material-ui/src/Select/Select.test.js-><Select /> accessibility it will fallback to its content for the accessible name when it has no name']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
2
0
2
false
false
["docs/src/pages/components/selects/SimpleSelect.js->program->function_declaration:SimpleSelect", "docs/src/pages/components/selects/MultipleSelect.js->program->function_declaration:MultipleSelect"]
mui/material-ui
20,368
mui__material-ui-20368
['20297']
151834f4e9e150ac70937d90f367163785c8a02b
diff --git a/packages/material-ui/src/ButtonBase/ButtonBase.js b/packages/material-ui/src/ButtonBase/ButtonBase.js --- a/packages/material-ui/src/ButtonBase/ButtonBase.js +++ b/packages/material-ui/src/ButtonBase/ButtonBase.js @@ -224,6 +224,7 @@ const ButtonBase = React.forwardRef(function ButtonBase(props, ref) { ...
diff --git a/packages/material-ui/src/Chip/Chip.test.js b/packages/material-ui/src/Chip/Chip.test.js --- a/packages/material-ui/src/Chip/Chip.test.js +++ b/packages/material-ui/src/Chip/Chip.test.js @@ -362,9 +362,7 @@ describe('<Chip />', () => { ['Backspace', 'Delete'].forEach((key) => { it(`should ca...
[Chip] Backspace and delete keys don't work when nesting an input I'm using a `TextField` component as label prop for a `Chip`. That worked without problems for a long time. Since the type of label is specified with `node`, I assumed that I could insert any child component there. Since I recently updated to the latest ...
I think it has to do with some of the recent changes to the `Chip` component (see [this commit](https://github.com/mui-org/material-ui/commit/c5f4a86918cf21577f2b18139b362ec9ae01ff6a#diff-e0528e6b6a6fe93ca94abbac71825ac3)). `handleKeyDown` will do `event.preventDefault()` for backspace and delete keyboard events. ...
2020-04-01 06:47:56+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
["packages/material-ui/src/Chip/Chip.test.js-><Chip /> reacts to keyboard chip prop: onDelete should call onDelete 'Backspace' is released", 'packages/material-ui/src/Chip/Chip.test.js-><Chip /> text only should render with the root and the primary class', 'packages/material-ui/src/Chip/Chip.test.js-><Chip /> deletable...
['packages/material-ui/src/Chip/Chip.test.js-><Chip /> reacts to keyboard chip prop: onDelete should not prevent default on input']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Chip/Chip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/Chip/Chip.js->program->function_declaration:isDeleteKeyboardEvent"]
mui/material-ui
20,376
mui__material-ui-20376
['20372']
b3446f4eb90249f91dd044d9e67c3ff0b06e4495
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.d.ts b/packages/material-ui-lab/src/Autocomplete/Autocomplete.d.ts --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.d.ts +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.d.ts @@ -27,6 +27,7 @@ export type GetTagProps = ({ index ...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -905,6 +905,33 @@ describe('<Autocompl...
Async autocomplete not working with groupBy When you use groupBy with a asynchronous autocomplete, that is adding options dynamically the wrong option is selected when you select an option. A reproducable example from the docs for autocomplete and just adding the groupBy for the first letter: https://codesandbox.io/...
Could you follow our issue template? It would be awesome. Most specifically, on the actual, expected and reproduction steps. Thanks. @oliviertassinari Done @FerusAndBeyond I can't reproduce. @oliviertassinari Go to https://codesandbox.io/s/material-demo-dt5o7, click on the autocomplete, select "Algeria". When I do so...
2020-04-01 22:05:52+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> warnings warn if groups options are not sorted']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,377
mui__material-ui-20377
['20343']
b3446f4eb90249f91dd044d9e67c3ff0b06e4495
diff --git a/docs/pages/api-docs/menu-item.md b/docs/pages/api-docs/menu-item.md --- a/docs/pages/api-docs/menu-item.md +++ b/docs/pages/api-docs/menu-item.md @@ -29,6 +29,7 @@ You can learn more about the difference by [reading this guide](/guides/minimizi | <span class="prop-name">component</span> | <span class="pro...
diff --git a/packages/material-ui/src/MenuItem/MenuItem.test.js b/packages/material-ui/src/MenuItem/MenuItem.test.js --- a/packages/material-ui/src/MenuItem/MenuItem.test.js +++ b/packages/material-ui/src/MenuItem/MenuItem.test.js @@ -107,4 +107,11 @@ describe('<MenuItem />', () => { assert.strictEqual(wrapper2....
MenuItem does not pass the disabled class The MenuItem does not pass the disabled class to the inner ListItem like it does with the dense class name. - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe tha...
That is a general problem with our styling solution and component inheritance. `MenuItem` implements a different `classes` prop which means you can't override the `classes` prop of the `ListItem`. Maybe we should start exposing separate props for the classes of the inherited component. This has probably been asked b...
2020-04-01 22:36:32+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/MenuItem/MenuItem.test.js-><MenuItem /> should render a button ListItem with with ripple', 'packages/material-ui/src/MenuItem/MenuItem.test.js-><MenuItem /> Material-UI component API ref attaches the ref', 'packages/material-ui/src/MenuItem/MenuItem.test.js-><MenuItem /> event callbacks shoul...
['packages/material-ui/src/MenuItem/MenuItem.test.js-><MenuItem /> prop: ListItemClasses should be able to change the style of ListItem']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/MenuItem/MenuItem.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,401
mui__material-ui-20401
['20400']
861498c05fc27d794b10803928b8164709772409
diff --git a/docs/src/pages/guides/composition/composition.md b/docs/src/pages/guides/composition/composition.md --- a/docs/src/pages/guides/composition/composition.md +++ b/docs/src/pages/guides/composition/composition.md @@ -32,7 +32,7 @@ Material-UI allows you to change the root element that will be rendered via a p...
diff --git a/packages/material-ui/src/ButtonBase/ButtonBase.test.js b/packages/material-ui/src/ButtonBase/ButtonBase.test.js --- a/packages/material-ui/src/ButtonBase/ButtonBase.test.js +++ b/packages/material-ui/src/ButtonBase/ButtonBase.test.js @@ -915,7 +915,7 @@ describe('<ButtonBase />', () => { PropTypes.r...
Cannot read property 'pulsate' of null I'm seeing an error similar to this issue: https://github.com/mui-org/material-ui/issues/16810 when trying to provide a custom component to the ```<Tab />``` component - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-...
null
2020-04-03 19:44:26+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/ButtonBase/ButtonBase.test.js-><ButtonBase /> ripple interactions should restart the ripple when the mouse is pressed again', 'packages/material-ui/src/ButtonBase/ButtonBase.test.js-><ButtonBase /> root node should change the button component and add accessibility requirements', 'packages/mat...
['packages/material-ui/src/ButtonBase/ButtonBase.test.js-><ButtonBase /> warnings warns on invalid `component` prop: prop forward']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/ButtonBase/ButtonBase.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,403
mui__material-ui-20403
['19423']
861498c05fc27d794b10803928b8164709772409
diff --git a/docs/src/pages/components/autocomplete/autocomplete.md b/docs/src/pages/components/autocomplete/autocomplete.md --- a/docs/src/pages/components/autocomplete/autocomplete.md +++ b/docs/src/pages/components/autocomplete/autocomplete.md @@ -32,6 +32,15 @@ Choose one of the 248 countries. {{"demo": "pages/c...
diff --git a/packages/material-ui-lab/src/TreeView/TreeView.test.js b/packages/material-ui-lab/src/TreeView/TreeView.test.js --- a/packages/material-ui-lab/src/TreeView/TreeView.test.js +++ b/packages/material-ui-lab/src/TreeView/TreeView.test.js @@ -46,7 +46,7 @@ describe('<TreeView />', () => { setProps({ ex...
Autocomplete immediately changes initial inputValue state When using Autocomplete as a controlled component and driving that state with onInputChange, the initial state is overwritten immediately to a blank string: `''`. <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoi...
I have a feeling this goes hand-in-hand with this issue: https://github.com/mui-org/material-ui/issues/19318. Thanks for opening this issue and providing a codesandbox explaining the issue. Unfortunately I cannot observe the issue. In codesandbox.io/embed/material-demo-2quum?fontsize=14&hidenavigation=1&theme=dark n...
2020-04-04 08:59:59+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/ExpansionPanel/ExpansionPanel.test.js-><ExpansionPanel /> prop: children should accept empty content', 'packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> Material-UI component API applies the className to the root component', 'packages/material-ui/src/Slider/Slider.test.js-...
['packages/material-ui/src/utils/useControlled.test.js->useControlled warns when switching from uncontrolled to controlled', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> warnings should warn when switching between uncontrolled to controlled', 'packages/material-ui/src/RadioGroup/RadioGroup.test.js-><R...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/ExpansionPanel/ExpansionPanel.test.js packages/material-ui/src/Slider/Slider.test.js packages/material-ui/src/utils/useControlled.test.js packages/material-ui-lab/src/TreeView/TreeView.test.js packages/material-ui/s...
Bug Fix
false
true
false
false
3
0
3
false
false
["packages/material-ui-lab/src/Pagination/usePagination.js->program->function_declaration:usePagination", "packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete", "packages/material-ui/src/utils/useControlled.js->program->function_declaration:useControlled"]
mui/material-ui
20,406
mui__material-ui-20406
['18586']
dec477bf56e0f7fa117c32a6fafbb175f9792a36
diff --git a/docs/pages/api-docs/click-away-listener.md b/docs/pages/api-docs/click-away-listener.md --- a/docs/pages/api-docs/click-away-listener.md +++ b/docs/pages/api-docs/click-away-listener.md @@ -26,6 +26,7 @@ For instance, if you need to hide a menu when people click anywhere else on your | Name | Type | Defau...
diff --git a/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js b/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js --- a/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js +++ b/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js @@ -1,7 +1,10 @@ ...
[ClickAwayListener] Handle portaled element <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like t...
Your problem is related to a "couple" of others 😆: - #17636: A change of the Popover's positioning logic to use Popper would fix the placement issue. - #11243: However, even if we fix the placement issue, the backdrop logic won't be correct. Either the backdrop needs to be portal (to block interactions with the rest...
2020-04-04 21:42:35+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js-><ClickAwayListener /> prop: onClickAway should be called when preventDefault is `true`', 'packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js-><ClickAwayListener /> should render the children', 'packages/material-ui/src/ClickAwayLi...
['packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js-><ClickAwayListener /> prop: onClickAway should not be called when clicking inside a portaled element', 'packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js-><ClickAwayListener /> prop: onClickAway should be called when clicking ins...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
2
0
2
false
false
["docs/src/pages/components/click-away-listener/ClickAway.js->program->function_declaration:ClickAway", "packages/material-ui/src/ClickAwayListener/ClickAwayListener.js->program->function_declaration:ClickAwayListener"]
mui/material-ui
20,408
mui__material-ui-20408
['19601']
1e8b29315fa906c44fb0d09ac94ea0160a43a206
diff --git a/docs/src/pages/customization/spacing/spacing.md b/docs/src/pages/customization/spacing/spacing.md --- a/docs/src/pages/customization/spacing/spacing.md +++ b/docs/src/pages/customization/spacing/spacing.md @@ -47,14 +47,15 @@ theme.spacing(2); // = 8 ## Multiple arity The `theme.spacing()` helper accep...
diff --git a/packages/material-ui/src/styles/createSpacing.test.js b/packages/material-ui/src/styles/createSpacing.test.js --- a/packages/material-ui/src/styles/createSpacing.test.js +++ b/packages/material-ui/src/styles/createSpacing.test.js @@ -38,6 +38,14 @@ describe('createSpacing', () => { expect(spacing(1, 2...
[theme] Support string args: theme.spacing(1, "auto", 3) <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox sho...
@hckhanh This sounds like a great idea. Do you want to work on it? :) It would be a good opportunity to unify the behavior between https://github.com/mui-org/material-ui/blob/07b725e54cdec560dab06f5a662d2869eca9ffb2/packages/material-ui-system/src/spacing.js#L77-L116 and https://github.com/mui-org/material-ui/blob...
2020-04-05 02:36:33+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/styles/createSpacing.test.js->createSpacing warnings should warn for wrong input', 'packages/material-ui/src/styles/createSpacing.test.js->createSpacing should support multiple arguments', 'packages/material-ui/src/styles/createSpacing.test.js->createSpacing should work as expected', 'package...
['packages/material-ui/src/styles/createSpacing.test.js->createSpacing should support string arguments']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/styles/createSpacing.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/styles/createSpacing.js->program->function_declaration:createSpacing"]
mui/material-ui
20,475
mui__material-ui-20475
['20431']
3359d810348ac888000de20452af0e6480ede708
diff --git a/packages/material-ui/src/Table/Table.js b/packages/material-ui/src/Table/Table.js --- a/packages/material-ui/src/Table/Table.js +++ b/packages/material-ui/src/Table/Table.js @@ -25,11 +25,13 @@ export const styles = (theme) => ({ }, }); +const defaultComponent = 'table'; + const Table = React.forwar...
diff --git a/packages/material-ui/src/Table/Table.test.js b/packages/material-ui/src/Table/Table.test.js --- a/packages/material-ui/src/Table/Table.test.js +++ b/packages/material-ui/src/Table/Table.test.js @@ -36,6 +36,11 @@ describe('<Table />', () => { const { container } = render(<Table component="div">foo</...
Add role="..." to Table family components when component="..." is specified ## Summary 💡 For table accessibility, when `component="..."` is specified to Table family components, it'd be better to render `role="..."` prop. ## Examples 🌈 `<Table component="div" />` will be `<div role="table"></div>`. ## Mot...
@ypresto This sounds like a good idea. Do you want to work on the problem? If @ypresto is busy I can take care of that ☺️
2020-04-08 23:10:59+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/test/integration/TableCell.test.js-><TableRow> integration should render without footer class when variant is body, overriding context', 'packages/material-ui/src/TableFooter/TableFooter.test.js-><TableFooter /> Material-UI component API applies the root class to the root component if it has this...
['packages/material-ui/src/Table/Table.test.js-><Table /> prop: component sets role="table"', 'packages/material-ui/test/integration/TableCell.test.js-><TableRow> integration sets role="cell" when "component" prop is set and used in the context of table footer ', 'packages/material-ui/src/TableHead/TableHead.test.js-><...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/TableBody/TableBody.test.js packages/material-ui/src/TableHead/TableHead.test.js packages/material-ui/test/integration/TableCell.test.js packages/material-ui/src/TableRow/TableRow.test.js packages/material-ui/src/Ta...
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,489
mui__material-ui-20489
['20280']
89f620824185be931d00e6eaf16a8cbbc5b88ccc
diff --git a/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js b/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js --- a/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js +++ b/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js @@ -63,8 +63,15 @@ const Breadcrumbs = React.forwardRef(function Breadcrumbs(props, r...
diff --git a/packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js b/packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js --- a/packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js +++ b/packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js @@ -64,9 +64,9 @@ describe('<Breadcrumbs />', () => { }); ...
[Breadcrumbs] Focus goes to top of page after expanding in IE11 <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbo...
The problem doesn't seem limited to IE 11. What do you think of this diff? ```diff remote: Resolving deltas: 100% (143/143), completed with 29 local objects. diff --git a/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js b/packages/material-ui/src/Breadcrumbs/Breadcrumbs.js index d958e5362..c54eeddd2 100644 --...
2020-04-10 09:14:09+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js-><Breadcrumbs /> Material-UI component API ref attaches the ref', 'packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js-><Breadcrumbs /> Material-UI component API prop: component can render another root component with the `component` prop', 'packages/materi...
['packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js-><Breadcrumbs /> should expand when `BreadcrumbCollapsed` is clicked']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,538
mui__material-ui-20538
['20145']
886923a33104824e4a3179b8da36d4b75ae2e8b8
diff --git a/docs/pages/api-docs/autocomplete.md b/docs/pages/api-docs/autocomplete.md --- a/docs/pages/api-docs/autocomplete.md +++ b/docs/pages/api-docs/autocomplete.md @@ -50,6 +50,7 @@ The `MuiAutocomplete` name can be used for providing [default props](/customizat | <span class="prop-name">filterSelectedOptions</...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -1512,4 +1512,20 @@ describe('<Autocom...
[AutoComplete] Breaks full width of TextField inside flex containers <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked ch...
The problem is that `Autocomplete` wraps the `TextField` in an extra `<div>`. You now have to add `width: 100%` or `flex-grow: 1` to the `Autocomplete` component. @Cristy94 I'm completely aware of this. But it feels a bit weird that I have to manually add styles to something. I also wonder why `Autocomplete` needs this...
2020-04-13 22:26:36+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: fullWidth should have the fullWidth class']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,606
mui__material-ui-20606
['20594']
91f921e15ab4c5caf57ff204043f79ba703bde0d
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -431,7 +431,11 @@ export default f...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -77,6 +77,27 @@ describe('<Autocomplet...
[Autocomplete] AutoHighlight not always work as expect. <!-- Provide a general summary of the issue in the Title above --> I'm not sure it is a bug or not. Look like the highlight index calculated based on stale `value` prop. https://github.com/mui-org/material-ui/blob/master/packages/material-ui-lab/src/useAuto...
@xiaoyu-tamu Thanks for reporting the issue, I can confirm it. What do you think of this patch? ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js index 3cb1ca0c5..824ed4d80 100644 --- a/packages/material-ui-lab/sr...
2020-04-17 07:54:24+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoHighlight should keep the highlight on the first item']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,651
mui__material-ui-20651
['20645']
310fcb17e979ec61fa89030630fdf730628994c8
diff --git a/packages/material-ui/src/Slider/Slider.js b/packages/material-ui/src/Slider/Slider.js --- a/packages/material-ui/src/Slider/Slider.js +++ b/packages/material-ui/src/Slider/Slider.js @@ -100,7 +100,7 @@ function focusThumb({ sliderRef, activeIndex, setActive }) { !sliderRef.current.contains(document.ac...
diff --git a/packages/material-ui/src/Slider/Slider.test.js b/packages/material-ui/src/Slider/Slider.test.js --- a/packages/material-ui/src/Slider/Slider.test.js +++ b/packages/material-ui/src/Slider/Slider.test.js @@ -180,6 +180,13 @@ describe('<Slider />', () => { expect(thumb2.getAttribute('aria-valuenow')).t...
[Slider] Keyboard controls nonfunctional in 4.9.10+ <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should loo...
Hi @davidcalhoun I think it's a problem with the configuration of your slider because with a simpler slider it works. Try this `<Slider defaultValue={[20, 30]} />` I will check with yours @davidcalhoun Thanks for the report, it's a regression from #17057. @davidcalhoun What do you think of this fix? ```diff...
2020-04-19 21:54:01+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> keyboard should reach right edge value', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> prop: ValueLabelComponent receives the formatted value', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> Material-UI component API should render w...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> range should focus the slider when dragging']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Slider/Slider.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/Slider/Slider.js->program->function_declaration:focusThumb"]
mui/material-ui
20,657
mui__material-ui-20657
['19953']
72a477f3ca678afd1c2d03cb05df4d20089c85cf
diff --git a/docs/pages/api-docs/tree-item.md b/docs/pages/api-docs/tree-item.md --- a/docs/pages/api-docs/tree-item.md +++ b/docs/pages/api-docs/tree-item.md @@ -36,6 +36,8 @@ The `MuiTreeItem` name can be used for providing [default props](/customization/ | <span class="prop-name">icon</span> | <span class="prop-typ...
diff --git a/packages/material-ui-lab/src/TreeView/TreeView.test.js b/packages/material-ui-lab/src/TreeView/TreeView.test.js --- a/packages/material-ui-lab/src/TreeView/TreeView.test.js +++ b/packages/material-ui-lab/src/TreeView/TreeView.test.js @@ -196,7 +196,7 @@ describe('<TreeView />', () => { }); describe...
[TreeView] Expand/collapse node only when clicking on expand/collapse icon - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 When I click on a tree item that has children, the node expands, wherever I click ...
I have the same use case, it could be useful ! Here is a workaround. You need to import the [TreeViewContext](https://github.com/mui-org/material-ui/blob/master/packages/material-ui-lab/src/TreeView/TreeViewContext.js) Prevent the label click from being [processed by the wrapped TreeItem](https://github.com/mui...
2020-04-20 18:22:41+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> Accessibility (TreeView) should have the role `tree`', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> should support conditional rendered tree items', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> shoul...
['packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> onNodeToggle should not be called when a parent node label is clicked and onLabelClick preventDefault', 'packages/material-ui-lab/src/TreeView/TreeView.test.js-><TreeView /> onNodeToggle should not be called when a parent node icon is clicked and on...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TreeView/TreeView.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,691
mui__material-ui-20691
['20588']
4bd2f856b59bdb3f9bdce2a4664c6ce1b6fa81cc
diff --git a/docs/pages/api-docs/autocomplete.md b/docs/pages/api-docs/autocomplete.md --- a/docs/pages/api-docs/autocomplete.md +++ b/docs/pages/api-docs/autocomplete.md @@ -69,6 +69,7 @@ The `MuiAutocomplete` name can be used for providing [default props](/customizat | <span class="prop-name">noOptionsText</span> | ...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -1549,4 +1549,66 @@ describe('<Autocom...
[Autocomplete] Option highlighted event - [x ] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 ``` <Autocomplete onOptionHighlighted={(option: T, reason: 'keyboardNavigation' | 'mouseOver' | 'automatic') =>...
> Give context to the user on the highlighted option to allow him to make a better choice. @aslupik How do you plan to implement this extra context? (assuming you have this callback available). > > Give context to the user on the highlighted option to allow him to make a better choice. > > @aslupik How do you pla...
2020-04-22 06:25:08+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> wrapping behavior wraps around when navigating the list by default...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support keyboard event', 'packages/material-ui-lab/src/Autocomplete/Aut...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,732
mui__material-ui-20732
['20730']
2231349c302a089cc556614ff562b02a729b1e77
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -860,7 +860,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -1119,6 +1119,50 @@ describe('<Autocom...
Single-select autocomplete doesn't open on click after selecting option <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked...
I thought I saw a comment here, but can't see it anymore. Have I missed something? I can work on it @oliviertassinari EDIT @oliviertassinari I look at the code and It seams a controlled behaviour. When the input value is not empty the popup will not open. Maeby I don't understand the issue @MargaretKrutiko...
2020-04-24 09:58:40+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> click input should mantain list box open clicking on input when it is not empty', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> click input should not toggle list box']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,739
mui__material-ui-20739
['20709']
2231349c302a089cc556614ff562b02a729b1e77
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -140,6 +140,10 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) { newVa...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -971,4 +971,20 @@ describe('<Select />', () => { expect(keyUpSpy.callCount).to.equal(1); exp...
[Select] onClick not fired on menu items <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this...
I think is a duplicate of #20698 Thanks @marcosvega91, looks like this issue was brought up before. Following the comments, changing `onChange` to `onClick` does seem to fix the issue. However, I can't seem to find the `onClick` prop documented in the API docs for either [TextField](https://material-ui.com/api/text...
2020-04-24 14:37:25+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> should pass onClick prop to MenuItem']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,742
mui__material-ui-20742
['20740']
2231349c302a089cc556614ff562b02a729b1e77
diff --git a/packages/material-ui/src/FormLabel/FormLabel.js b/packages/material-ui/src/FormLabel/FormLabel.js --- a/packages/material-ui/src/FormLabel/FormLabel.js +++ b/packages/material-ui/src/FormLabel/FormLabel.js @@ -89,6 +89,7 @@ const FormLabel = React.forwardRef(function FormLabel(props, ref) { {childre...
diff --git a/packages/material-ui/src/FormLabel/FormLabel.test.js b/packages/material-ui/src/FormLabel/FormLabel.test.js --- a/packages/material-ui/src/FormLabel/FormLabel.test.js +++ b/packages/material-ui/src/FormLabel/FormLabel.test.js @@ -27,11 +27,12 @@ describe('<FormLabel />', () => { })); describe('prop...
FormLabel for a required field has asterisk read by screen readers <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked chec...
null
2020-04-24 15:27:54+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/FormLabel/FormLabel.test.js-><FormLabel /> with FormControl required should show an asterisk', 'packages/material-ui/src/FormLabel/FormLabel.test.js-><FormLabel /> Material-UI component API prop: component can render another root component with the `component` prop', 'packages/material-ui/src...
['packages/material-ui/src/FormLabel/FormLabel.test.js-><FormLabel /> prop: required should visually show an asterisk but not include it in the a11y tree', 'packages/material-ui/src/FormLabel/FormLabel.test.js-><FormLabel /> prop: error should have an error class']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/FormLabel/FormLabel.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,781
mui__material-ui-20781
['6955']
480fa73c18a00549e5893e938b8aed9bed6afac7
diff --git a/.eslintrc.js b/.eslintrc.js --- a/.eslintrc.js +++ b/.eslintrc.js @@ -116,6 +116,10 @@ module.exports = { // does not work with wildcard imports. Mistakes will throw at runtime anyway 'import/named': 'off', + // upgraded level from recommended + 'mocha/no-exclusive-tests':...
diff --git a/packages/material-ui/src/Tabs/Tabs.test.js b/packages/material-ui/src/Tabs/Tabs.test.js --- a/packages/material-ui/src/Tabs/Tabs.test.js +++ b/packages/material-ui/src/Tabs/Tabs.test.js @@ -10,6 +10,7 @@ import describeConformance from '../test-utils/describeConformance'; import Tab from '../Tab'; import...
[Tabs] Implement arrow keyboard <!-- Have a QUESTION? Please ask in [StackOverflow or gitter](http://tr.im/77pVj. --> ### Problem description The Tabs component doesn't implement keyboard support as specified by [the WAI-ARIA 1.1 authoring practices][1]. Ideally it would be best if this was implemented in the a...
Yes, indeed. I'm closing this issue in favor of #4795. Good point. This comment is relevant too https://github.com/mui-org/material-ui/pull/5604#issuecomment-262122172. Is anybody currently working on this issue? The lack of keyboard navigation between tabs via the left and right arrow keys is a deal breaker for what I...
2020-04-26 19:11:15+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tabs/Tabs.test.js-><Tabs /> prop: value indicator should render the indicator', 'packages/material-ui/src/Tabs/Tabs.test.js-><Tabs /> Material-UI component API applies the root class to the root component if it has this class', 'packages/material-ui/src/Tabs/Tabs.test.js-><Tabs /> prop: cente...
['packages/material-ui/src/Tabs/Tabs.test.js-><Tabs /> keyboard navigation when focus is on a tab when focus is on a tab element in a horizontal rtl tablist ArrowRight moves focus to the previous tab without activating it', 'packages/material-ui/src/Tabs/Tabs.test.js-><Tabs /> keyboard navigation when focus is on a tab...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tabs/Tabs.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,786
mui__material-ui-20786
['20611']
a9f185712f3f4bf1221f383b21c1bd6834c13c2b
diff --git a/docs/pages/api-docs/modal.md b/docs/pages/api-docs/modal.md --- a/docs/pages/api-docs/modal.md +++ b/docs/pages/api-docs/modal.md @@ -42,9 +42,9 @@ This component shares many concepts with [react-overlays](https://react-bootstra | <span class="prop-name">closeAfterTransition</span> | <span class="prop-typ...
diff --git a/packages/material-ui/src/ButtonBase/ButtonBase.test.js b/packages/material-ui/src/ButtonBase/ButtonBase.test.js --- a/packages/material-ui/src/ButtonBase/ButtonBase.test.js +++ b/packages/material-ui/src/ButtonBase/ButtonBase.test.js @@ -830,7 +830,7 @@ describe('<ButtonBase />', () => { }); ...
[Modal] Should not call stopPropagation if onEscapeKeyDown=true I'm running into an issue where I need to handle the event propagation for the escape key on my own. It's impossible to get around because it's hard-coded in the handleKeyDown callback. To be specific, I have a Popper rendered (via portal) over the mo...
@mentierd It seems that you are right, the current logic doesn't match the props' descriptions. What do you think of this diff? Do you want to submit a pull request? :) ```diff diff --git a/packages/material-ui/src/Modal/Modal.js b/packages/material-ui/src/Modal/Modal.js index badf67093..dc8eb6cee 100644 --- a/pa...
2020-04-26 22:18:34+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/ButtonBase/ButtonBase.test.js-><ButtonBase /> ripple interactions should restart the ripple when the mouse is pressed again', 'packages/material-ui/src/Modal/Modal.test.js-><Modal /> backdrop should render a backdrop component into the portal before the modal content', 'packages/material-ui/s...
['packages/material-ui/src/Modal/Modal.test.js-><Modal /> handleKeyDown() should not call onChange when `disableEscapeKeyDown=true`']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui-lab/src/TreeItem/TreeItem.test.js-><TreeItem /> Accessibility Navigation type-ahead functionality should not throw when an item is removed']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/ButtonBase/ButtonBase.test.js packages/material-ui/src/Modal/Modal.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,807
mui__material-ui-20807
['20245']
24cdb5bbcb2015fadeea2de80266c66a7c2a3858
diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -367,14 +367,17 @@ const Tooltip = React.forwardRef(function Tooltip(props, ref) { }, leaveDelay); }; - ...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -175,6 +175,14 @@ describe('<Tooltip />', () => { wrapper.update(); assert.stric...
[Tooltip] disableTouchListener not working <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like th...
@devhyunjae Thanks for the bug report. I can reproduce the problem. What do you think of this patch? ```diff diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js index 1d8154194..c16c11122 100644 --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/ma...
2020-04-28 02:09:47+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: PopperProps should pass PopperProps to Popper Component', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: overri...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> touch screen should not open if disableTouchListener']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,833
mui__material-ui-20833
['20818', '20818']
4bfcbec597d24435ef0f91443b85783e795baf33
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -2,6 +2,7 @@ import * as React from 'react'; import { isFragment } from 'react-is'; import PropTypes...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -6,6 +6,7 @@ import { act, createClientRender, fireEvent } from 'test/utils/createClientRende import ...
Simple Select Label Unfocused - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 - Clicking on an InputLabel linked to a Simple Select is not focusi...
I think it worth mentioning even if the Simple Select doesn't get focus, linking it with its InputLabel allows screen reader to access it Issue is also reproductible on latest iOS Safari I think it worth mentioning even if the Simple Select doesn't get focus, linking it with its InputLabel allows screen reader to acces...
2020-04-29 11:06:17+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> should focus select when its label is clicked']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,850
mui__material-ui-20850
['20815']
8cebfc73aa138615a963c20c3001ef73d25f4542
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.js @@ -350,7 +350,7 @@ const Autocomplete = React.forwardRef(fun...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -145,24 +145,41 @@ describe('<Autocomp...
[Autocomplete] Missing support for limitTags={0} In the api document,'the maximum number of tags that will be visible when not focused. Set -1 to disable the limit'. But I set 0 also disable the limit.Dose the limitTags api support value of 0. Thanks!
I don't think that it matters, I'm closing, prefer -1. @oliviertassinari Sorry,I did not express clearly.I means, does Autocomplete support maximum number of tag of 0. In other word, when I set 0, it should display none tag. Thanks! @tykdn Thanks for the clarification. What do you think of this fix? Do you want to...
2020-04-29 23:49:35+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: limitTags show 0 item on close when set 0 to limitTags']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,851
mui__material-ui-20851
['20785']
024e176b9d2d0dc96826b0fec630823254372683
diff --git a/packages/material-ui/src/Slider/Slider.js b/packages/material-ui/src/Slider/Slider.js --- a/packages/material-ui/src/Slider/Slider.js +++ b/packages/material-ui/src/Slider/Slider.js @@ -425,6 +425,8 @@ const Slider = React.forwardRef(function Slider(props, ref) { setOpen(-1); }); + const isRtl =...
diff --git a/packages/material-ui/src/Slider/Slider.test.js b/packages/material-ui/src/Slider/Slider.test.js --- a/packages/material-ui/src/Slider/Slider.test.js +++ b/packages/material-ui/src/Slider/Slider.test.js @@ -129,39 +129,6 @@ describe('<Slider />', () => { }); }); - // TODO: use fireEvent for all t...
[Slider] RTL keyboard handling issue <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x...
A possible fix: ```diff diff --git a/packages/material-ui/src/Slider/Slider.js b/packages/material-ui/src/Slider/Slider.js index 9379e1874..28c180300 100644 --- a/packages/material-ui/src/Slider/Slider.js +++ b/packages/material-ui/src/Slider/Slider.js @@ -422,6 +422,8 @@ const Slider = React.forwardRef(functio...
2020-04-30 00:10:32+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> keyboard should reach right edge value', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> prop: ValueLabelComponent receives the formatted value', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> Material-UI component API should render w...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> keyboard should handle RTL']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Slider/Slider.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
20,869
mui__material-ui-20869
['20824']
8cebfc73aa138615a963c20c3001ef73d25f4542
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -242,7 +242,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -54,6 +54,21 @@ describe('<Autocomplet...
[Autocomplete] Adding the loading prop does nothing if freeSolo is true <!-- Provide a general summary of the issue in the Title above --> In the Asynchronous example of Autocomplete in the docs - https://material-ui.com/components/autocomplete/#asynchronous-requests, the loading prop triggers a "Loading..." disabled ...
What do you think @oliviertassinari? As far as I can see the 'fix' would be: ```diff @@ -260,7 +261,7 @@ export default function useAutocomplete(props) { ) : []; - popupOpen = freeSolo && filteredOptions.length === 0 ? false : popupOpen; + popupOpen = freeSolo && filteredOptions.length === 0...
2020-05-01 17:29:35+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: loading should show a loading message when open']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
20,931
mui__material-ui-20931
['20497']
939205f077c3524a30afd2aaa20e826f1ff01b6e
diff --git a/packages/material-ui/src/styles/colorManipulator.js b/packages/material-ui/src/styles/colorManipulator.js --- a/packages/material-ui/src/styles/colorManipulator.js +++ b/packages/material-ui/src/styles/colorManipulator.js @@ -27,14 +27,20 @@ function clamp(value, min = 0, max = 1) { export function hexToR...
diff --git a/packages/material-ui/src/styles/colorManipulator.test.js b/packages/material-ui/src/styles/colorManipulator.test.js --- a/packages/material-ui/src/styles/colorManipulator.test.js +++ b/packages/material-ui/src/styles/colorManipulator.test.js @@ -69,6 +69,10 @@ describe('utils/colorManipulator', () => { ...
CSS4: hexToRgb does not support #rrggbbaa pattern causes DOM crash - [X] The issue is present in the latest release. - [X] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. Recently I got bitten by this DOM error: ``` Error...
Thanks for the report. The overhead of supporting this format seems low, I think that we could do it. What do you think of this diff? Do you want to work on a pull request? :) ```diff diff --git a/packages/material-ui/src/styles/colorManipulator.js b/packages/material-ui/src/styles/colorManipulator.js index 8ef994...
2020-05-06 14:31:28+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/styles/colorManipulator.test.js->utils/colorManipulator getLuminance returns a valid luminance for rgb white', 'packages/material-ui/src/styles/colorManipulator.test.js->utils/colorManipulator recomposeColor converts a decomposed rgb color object to a string` ', 'packages/material-ui/src/styl...
['packages/material-ui/src/styles/colorManipulator.test.js->utils/colorManipulator hexToRgb converts a long alpha hex color to an argb color` ', 'packages/material-ui/src/styles/colorManipulator.test.js->utils/colorManipulator decomposeColor converts rgba hex']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/styles/colorManipulator.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/styles/colorManipulator.js->program->function_declaration:hexToRgb"]
mui/material-ui
20,937
mui__material-ui-20937
['20917']
78c39699bf87d4ee6fabf3c7258b58ec8dd1fb65
diff --git a/packages/material-ui/src/Popper/Popper.js b/packages/material-ui/src/Popper/Popper.js --- a/packages/material-ui/src/Popper/Popper.js +++ b/packages/material-ui/src/Popper/Popper.js @@ -215,6 +215,7 @@ const Popper = React.forwardRef(function Popper(props, ref) { // Fix Popper.js display issue ...
diff --git a/packages/material-ui/src/Popper/Popper.test.js b/packages/material-ui/src/Popper/Popper.test.js --- a/packages/material-ui/src/Popper/Popper.test.js +++ b/packages/material-ui/src/Popper/Popper.test.js @@ -5,7 +5,7 @@ import PropTypes from 'prop-types'; import { createMount } from '@material-ui/core/test-...
Popper remains visible when open is false and keepMounted is set As title says, `open` prop is set to `false` and `keepMounted` to `true`, this makes popper to be always visible. - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of th...
null
2020-05-07 00:10:48+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Popper/Popper.test.js-><Popper /> prop: placement should flip top-start when direction=rtl is used', 'packages/material-ui/src/Popper/Popper.test.js-><Popper /> prop: placement should flip bottom-start when direction=rtl is used', 'packages/material-ui/src/Popper/Popper.test.js-><Popper /> pr...
['packages/material-ui/src/Popper/Popper.test.js-><Popper /> prop: keepMounted should keep the children mounted in the DOM']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Popper/Popper.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,017
mui__material-ui-21017
['21015']
e25b7d54f0f0eda6abdd50acb489d6e861cb89ce
diff --git a/packages/material-ui-lab/src/TabPanel/TabPanel.js b/packages/material-ui-lab/src/TabPanel/TabPanel.js --- a/packages/material-ui-lab/src/TabPanel/TabPanel.js +++ b/packages/material-ui-lab/src/TabPanel/TabPanel.js @@ -1,7 +1,6 @@ import * as React from 'react'; import PropTypes from 'prop-types'; import...
diff --git a/packages/material-ui-lab/src/TabPanel/TabPanel.test.js b/packages/material-ui-lab/src/TabPanel/TabPanel.test.js --- a/packages/material-ui-lab/src/TabPanel/TabPanel.test.js +++ b/packages/material-ui-lab/src/TabPanel/TabPanel.test.js @@ -57,4 +57,15 @@ describe('<TabPanel />', () => { expect(getByTe...
[Tabs] Improve TabPanel demos, avoid validateDOMNesting warning <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbo...
> I believe that removing <Typography> completely and rendering children directly would be the best solution with maximum flexibility. Typography is definitely inappropriate for a container-like component. But I'm leaning towards swapping the `div[role="tabpanel"]` for a `Paper[role="tabpanel"]` so that we hav...
2020-05-13 14:21:15+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/TabPanel/TabPanel.test.js-><TabPanel /> Material-UI component API ref attaches the ref', 'packages/material-ui-lab/src/TabPanel/TabPanel.test.js-><TabPanel /> Material-UI component API applies the className to the root component', 'packages/material-ui-lab/src/TabPanel/TabPanel.test.js-><...
['packages/material-ui-lab/src/TabPanel/TabPanel.test.js-><TabPanel /> allows flow content']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/TabPanel/TabPanel.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,041
mui__material-ui-21041
['20829']
0cd1413a259ce47022aef59aab90339344cbbb91
diff --git a/docs/src/modules/utils/parseMarkdown.js b/docs/src/modules/utils/parseMarkdown.js --- a/docs/src/modules/utils/parseMarkdown.js +++ b/docs/src/modules/utils/parseMarkdown.js @@ -10,6 +10,7 @@ const titleRegExp = /# (.*)[\r\n]/; const descriptionRegExp = /<p class="description">(.*)<\/p>[\r\n]/; const hea...
diff --git a/docs/src/modules/utils/parseMarkdown.test.js b/docs/src/modules/utils/parseMarkdown.test.js --- a/docs/src/modules/utils/parseMarkdown.test.js +++ b/docs/src/modules/utils/parseMarkdown.test.js @@ -104,5 +104,189 @@ describe('parseMarkdown', () => { }, ]); }); + + it('use english ha...
[docs] Keep the same header between locales <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like...
@jaironalves Thanks, regarding the implementation, it would require to: 1. Change the logic of `parseMarkdown.js` to process the English version first. 2. In the `heading` handler, use the English hash for the non-English locales Done Note that using the id from another translation can break if the translations ...
2020-05-15 05:22:48+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['docs/src/modules/utils/parseMarkdown.test.js->parseMarkdown prepareMarkdown returns the table of contents with html and emojis stripped', 'docs/src/modules/utils/parseMarkdown.test.js->parseMarkdown prepareMarkdown enables word-break for function signatures', 'docs/src/modules/utils/parseMarkdown.test.js->parseMarkdo...
['docs/src/modules/utils/parseMarkdown.test.js->parseMarkdown prepareMarkdown use translated hash for translations are not synced', 'docs/src/modules/utils/parseMarkdown.test.js->parseMarkdown prepareMarkdown use english hash for different locales']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha docs/src/modules/utils/parseMarkdown.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["docs/src/modules/utils/parseMarkdown.js->program->function_declaration:prepareMarkdown"]
mui/material-ui
21,047
mui__material-ui-21047
['21045']
bf8f3f7d35114e2df9b9836ae663187c7d65e608
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -93,7 +93,7 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) { React.useE...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -195,8 +195,8 @@ describe('<Select />', () => { it('should focus select when its label is clicked',...
Select Input label causing error with certain IDs A recent change introduced in pull request [20833](https://github.com/mui-org/material-ui/pull/20833) is failing on certain ids. <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off ...
null
2020-05-15 15:00:08+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> prop: onChange should not be called if selected element has the current value (value did not change)', 'packages/material-ui/src/Select/Select.test.js-><Select /> should be able to return the input node via a ref object', 'packages/material-ui/src/Select/Sele...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,051
mui__material-ui-21051
['21025']
758a8adf5ad35f5c6d0a80fb04f622d43b0200ea
diff --git a/docs/pages/api-docs/button-group.md b/docs/pages/api-docs/button-group.md --- a/docs/pages/api-docs/button-group.md +++ b/docs/pages/api-docs/button-group.md @@ -37,7 +37,7 @@ The `MuiButtonGroup` name can be used for providing [default props](/customizati | <span class="prop-name">disableFocusRipple</spa...
diff --git a/packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js b/packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js --- a/packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js +++ b/packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js @...
[ToggleButton] Add Vertical support <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [...
@xamoulin Do you want to work on it? We could follow the same approach than the ButtonGroup. If @xamoulin does not want to or it is okay with @xamoulin, I would like to contribute.
2020-05-15 23:39:34+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js-><ToggleButtonGroup /> prop: onChange exclusive should be a single value when value is toggled on', 'packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js-><ToggleButtonGroup /> Material-UI component API applies the className ...
['packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js-><ToggleButtonGroup /> can render group orientation vertically']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/ToggleButtonGroup/ToggleButtonGroup.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,090
mui__material-ui-21090
['21024']
d2880904657cf97839a81db9a74556c3eca52d84
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -448,6 +448,8 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -112,6 +112,28 @@ describe('<Autocompl...
[Autocomplete] autoHighlight not working properly for asynchronous requests <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Che...
Hi @mstykow waiting core members for a response I propose a solution ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js index db79387ae..862209657 100644 --- a/packages/material-ui-lab/src/useAutocomplete/useAutoc...
2020-05-17 16:12:36+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: autoHighlight should set the focus on the first item when possible']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
21,115
mui__material-ui-21115
['21110']
8357c68cdc37c2b9c2a84891adb4df705f8ef155
diff --git a/packages/material-ui/src/Slide/Slide.js b/packages/material-ui/src/Slide/Slide.js --- a/packages/material-ui/src/Slide/Slide.js +++ b/packages/material-ui/src/Slide/Slide.js @@ -36,7 +36,7 @@ function getTranslateValue(direction, node) { } if (direction === 'left') { - return `translateX(${windo...
diff --git a/packages/material-ui/src/Slide/Slide.test.js b/packages/material-ui/src/Slide/Slide.test.js --- a/packages/material-ui/src/Slide/Slide.test.js +++ b/packages/material-ui/src/Slide/Slide.test.js @@ -185,6 +185,7 @@ describe('<Slide />', () => { right: 800, top: 200, ...
[Slide] Left and Up directions are broken when child is pre-translated - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 The Slide component appear...
null
2020-05-19 17:18:06+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Slide/Slide.test.js-><Slide /> transform styling handleEnter() should set element transform and transition in the `up` direction', 'packages/material-ui/src/Slide/Slide.test.js-><Slide /> transform styling handleExiting() should set element transform and transition in the `down` direction', '...
['packages/material-ui/src/Slide/Slide.test.js-><Slide /> transform styling handleEnter() should set element transform in the `up` direction when element is offscreen', 'packages/material-ui/src/Slide/Slide.test.js-><Slide /> transform styling handleEnter() should set element transform in the `left` direction when elem...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Slide/Slide.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/Slide/Slide.js->program->function_declaration:getTranslateValue"]
mui/material-ui
21,192
mui__material-ui-21192
['20402']
010058b818913bbd9c507b4ef3014dd194b31e5c
diff --git a/docs/pages/api-docs/native-select.md b/docs/pages/api-docs/native-select.md --- a/docs/pages/api-docs/native-select.md +++ b/docs/pages/api-docs/native-select.md @@ -55,6 +55,7 @@ Any other props supplied will be provided to the root element ([Input](/api/inpu | <span class="prop-name">iconOpen</span> | <...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -78,14 +78,14 @@ describe('<Select />', () => { ); }); - it('should have an input with [typ...
Implement native Select validation for non-native select field <!-- Provide a general summary of the feature in the Title above --> Previously there have been requests (#12749, #11836) to allow native `required` validation on `Select` fields without using the native UI, and [it was never tackled because it wasn't se...
@benwiley4000 Thanks for taking the time to write this issue. Have you looked into the a11y implications? We would at least need to remove the `<select>` from the tab sequence, but I wonder about the potential duplicated announcements by screen readers. @oliviertassinari great points. I *think* this is solved with the ...
2020-05-24 19:36:01+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/TextField/TextField.test.js-...
['packages/material-ui/src/TextField/TextField.test.js-><TextField /> prop: select creates an input[hidden] that has no accessible properties', 'packages/material-ui/src/Select/Select.test.js-><Select /> should have an input with [aria-hidden] by default', 'packages/material-ui/src/Select/Select.test.js-><Select /> pro...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js packages/material-ui/src/TextField/TextField.test.js --reporter /testbed/custom-reporter.js --exit
Feature
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,194
mui__material-ui-21194
['21136']
90babbd13d8dc624ff23453a4e47a311e2758aa6
diff --git a/packages/material-ui/src/utils/useControlled.js b/packages/material-ui/src/utils/useControlled.js --- a/packages/material-ui/src/utils/useControlled.js +++ b/packages/material-ui/src/utils/useControlled.js @@ -27,7 +27,7 @@ export default function useControlled({ controlled, default: defaultProp, name, ...
diff --git a/packages/material-ui/src/utils/useControlled.test.js b/packages/material-ui/src/utils/useControlled.test.js --- a/packages/material-ui/src/utils/useControlled.test.js +++ b/packages/material-ui/src/utils/useControlled.test.js @@ -83,4 +83,15 @@ describe('useControlled', () => { 'Material-UI: A compo...
[Autocomplete] An error occurs when changing multiple - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. # Current Behavior An error occurs when changing multiple ` A component is changing the default value state of an un...
👋 Thanks for using Material-UI! We use GitHub issues exclusively as a bug and feature requests tracker, however, this issue appears to be a support request. For support, please check out https://material-ui.com/getting-started/support/. Thanks! If you have a question on StackOverflow, you are welcome to link to it ...
2020-05-25 03:32:13+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/utils/useControlled.test.js->useControlled works correctly when is controlled', 'packages/material-ui/src/utils/useControlled.test.js->useControlled warns when switching from controlled to uncontrolled', 'packages/material-ui/src/utils/useControlled.test.js->useControlled warns when changing ...
['packages/material-ui/src/utils/useControlled.test.js->useControlled should not raise a warning if changing the defaultValue when controlled']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/utils/useControlled.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/utils/useControlled.js->program->function_declaration:useControlled"]
mui/material-ui
21,207
mui__material-ui-21207
['21146']
a2e0e32b25b171e0359d80a685e8dede24975254
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -85,7 +85,7 @@ export default func...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -963,7 +963,7 @@ describe('<Autocomple...
[Autocomplete] with integers as options throw candidate.toLowerCase error Please see codesandbox at https://codesandbox.io/s/material-demo-ldh7x?file=/demo.js - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and be...
@rhuanbarreto You didn't configure `getOptionLabel` correct. It should return a string (not a number). We already have a warning in place https://github.com/mui-org/material-ui/blob/14834adf8c07cd043a169cb486097f2363bbe420/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js#L148 but it feels that it's cover...
2020-05-26 06:52:05+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> warnings warn if getOptionLabel do not return a string']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
21,226
mui__material-ui-21226
['20488']
f62b4b4fc1c10fc7304720d3903fcfcd097a23dd
diff --git a/docs/pages/api-docs/table-pagination.md b/docs/pages/api-docs/table-pagination.md --- a/docs/pages/api-docs/table-pagination.md +++ b/docs/pages/api-docs/table-pagination.md @@ -35,7 +35,7 @@ The `MuiTablePagination` name can be used for providing [default props](/customi | <span class="prop-name">compone...
diff --git a/packages/material-ui/src/TablePagination/TablePagination.test.js b/packages/material-ui/src/TablePagination/TablePagination.test.js --- a/packages/material-ui/src/TablePagination/TablePagination.test.js +++ b/packages/material-ui/src/TablePagination/TablePagination.test.js @@ -45,7 +45,7 @@ describe('<Tabl...
[Table] Extended `labelRowsPerPage` support from string to ReactNode <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked ch...
@romanyanke Thanks for mentioning this inconsistency. Would the following solve the problem? ```diff diff --git a/packages/material-ui/src/TablePagination/TablePagination.js b/packages/material-ui/src/TablePagination/TablePagination.js index 8ab941190..9c7a0302b 100644 --- a/packages/material-ui/src/TablePaginat...
2020-05-27 15:16:56+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: labelDisplayedRows should use the labelDisplayedRows callback', 'packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> Material-UI component API prop: component can render another root component...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: labelRowsPerPage accepts React nodes', 'packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: labelRowsPerPage labels the select for the current page']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/TablePagination/TablePagination.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,280
mui__material-ui-21280
['21157']
1761fadf874f6a18d902b9cacb61836c5109c096
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -275,8 +275,10 @@ export default f...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -5,7 +5,7 @@ import createMount from '...
[AutoComplete] Options dropdown jumps back to beginning of list when an option is unchecked By playing with the Customized Autocomplete example that reproduces the Github's lable picker, I noticed that if you scroll down the list of options and click on an option, the scroll position remains the same for when you check...
null
2020-06-01 19:17:22+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed does not clear the textbox on Escape', 'packages...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> highlight synchronisation should not update the highlight when multiple open and value change', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packa...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
21,362
mui__material-ui-21362
['21289']
edb2d6382e271dbfc28384b10c417c0f5843e8f8
diff --git a/packages/material-ui/src/Checkbox/Checkbox.js b/packages/material-ui/src/Checkbox/Checkbox.js --- a/packages/material-ui/src/Checkbox/Checkbox.js +++ b/packages/material-ui/src/Checkbox/Checkbox.js @@ -64,14 +64,17 @@ const Checkbox = React.forwardRef(function Checkbox(props, ref) { checkedIcon = defa...
diff --git a/packages/material-ui/src/Checkbox/Checkbox.test.js b/packages/material-ui/src/Checkbox/Checkbox.test.js --- a/packages/material-ui/src/Checkbox/Checkbox.test.js +++ b/packages/material-ui/src/Checkbox/Checkbox.test.js @@ -115,4 +115,20 @@ describe('<Checkbox />', () => { }); }); }); + + it(...
[Checkbox][Radio] Icon font size override <!-- Provide a general summary of the issue in the Title above --> When using the `icon` and `checkedIcon` props for the `Checkbox` component, passing a custom `fontSize` doesn't change size of the icons. This issue is also present in the Checkbox demos, where the Custom Si...
@samuelcolburn Thanks for reporting the issue. It comes from the usage of cloneElement that forces a value. It affects the Radio component too. What do you think of this fix? ```diff diff --git a/packages/material-ui/src/Checkbox/Checkbox.js b/packages/material-ui/src/Checkbox/Checkbox.js index 7916091ab..6d28ca15...
2020-06-07 19:12:48+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Checkbox/Checkbox.test.js-><Checkbox /> Material-UI component API applies the className to the root component', 'packages/material-ui/src/Checkbox/Checkbox.test.js-><Checkbox /> with FormControl disabled should be overridden by props', 'packages/material-ui/src/Checkbox/Checkbox.test.js-><Che...
['packages/material-ui/src/Checkbox/Checkbox.test.js-><Checkbox /> should allow custom icon font sizes']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Checkbox/Checkbox.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,370
mui__material-ui-21370
['21325']
d52d29c67a03f95a62c5f140ab0cba8ae40a4d44
diff --git a/packages/material-ui/src/Step/Step.js b/packages/material-ui/src/Step/Step.js --- a/packages/material-ui/src/Step/Step.js +++ b/packages/material-ui/src/Step/Step.js @@ -33,7 +33,7 @@ const Step = React.forwardRef(function Step(props, ref) { className, completed = false, // eslint-disable-ne...
diff --git a/packages/material-ui/src/Stepper/Stepper.test.js b/packages/material-ui/src/Stepper/Stepper.test.js --- a/packages/material-ui/src/Stepper/Stepper.test.js +++ b/packages/material-ui/src/Stepper/Stepper.test.js @@ -1,9 +1,9 @@ import * as React from 'react'; import { expect } from 'chai'; -import CheckCir...
[StepConnector] Step connector does not get completed or active styles when alternative If you use the `alternativeLabel` and `nonLinear` prop on the `Stepper` component, the props passed to the `StepConnector` are not the same, you can see it in this demo: https://stackblitz.com/edit/lswyj7 <img width="606" alt=...
Thanks for the bug report. I could reproduction. I definitely agree that both should behave identically. Now, given that people have been asking for being able to customize the active, completed states in the past, I think that could do something like this: ```diff diff --git a/packages/material-ui/src/Step/Step.js...
2020-06-08 20:00:33+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Stepper/Stepper.test.js-><Stepper /> step connector should pass completed prop to connector when second step is completed', 'packages/material-ui/src/Stepper/Stepper.test.js-><Stepper /> Material-UI component API applies the root class to the root component if it has this class', 'packages/ma...
['packages/material-ui/src/Stepper/Stepper.test.js-><Stepper /> step connector should pass correct active and completed props to the StepConnector with nonLinear prop']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Stepper/Stepper.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
21,446
mui__material-ui-21446
['21418']
c4351c634d6506ba8c1595ac602bec63857c29fb
diff --git a/packages/material-ui-lab/src/Pagination/usePagination.js b/packages/material-ui-lab/src/Pagination/usePagination.js --- a/packages/material-ui-lab/src/Pagination/usePagination.js +++ b/packages/material-ui-lab/src/Pagination/usePagination.js @@ -62,7 +62,7 @@ export default function usePagination(props = {...
diff --git a/packages/material-ui-lab/src/Pagination/Pagination.test.js b/packages/material-ui-lab/src/Pagination/Pagination.test.js --- a/packages/material-ui-lab/src/Pagination/Pagination.test.js +++ b/packages/material-ui-lab/src/Pagination/Pagination.test.js @@ -76,4 +76,26 @@ describe('<Pagination />', () => { ...
Pagination is ignoring siblingCount when boundaryCount is zero <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox...
@guimacrf Thanks for taking the time to report the issue What do you think of this patch? Do you want to work on it? :) ```diff diff --git a/packages/material-ui-lab/src/Pagination/usePagination.js b/packages/material-ui-lab/src/Pagination/usePagination.js index 300ee9574..9464af317 100644 --- a/packages/material...
2020-06-15 01:06:47+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> Material-UI component API should render without errors in ReactTestRenderer', 'packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> should render', 'packages/material-ui-lab/src/Pagination/usePagination.test.js->usePagina...
['packages/material-ui-lab/src/Pagination/Pagination.test.js-><Pagination /> renders correct amount of buttons on correct order when boundaryCount is zero', 'packages/material-ui-lab/src/Pagination/usePagination.test.js->usePagination should support boundaryCount={0}']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Pagination/usePagination.test.js packages/material-ui-lab/src/Pagination/Pagination.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/Pagination/usePagination.js->program->function_declaration:usePagination"]
mui/material-ui
21,460
mui__material-ui-21460
['21333']
4a6a12b375849c4ddfaf1c3c46f738a8eeba816e
diff --git a/docs/src/pages/components/autocomplete/GitHubLabel.js b/docs/src/pages/components/autocomplete/GitHubLabel.js --- a/docs/src/pages/components/autocomplete/GitHubLabel.js +++ b/docs/src/pages/components/autocomplete/GitHubLabel.js @@ -185,7 +185,14 @@ export default function GitHubLabel() { pop...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -9,6 +9,7 @@ import { act, createClien...
add a disableTags prop for Autocomplete I'm not sure that is this a feature request or a bug fix in [this example](https://material-ui.com/components/autocomplete/#githubs-picker) of Autocomplete component you used `renderTags={() => null}` to disable showing tags but when we do this tags will not be disabled comple...
@MHA15 Thanks for raising, this is concerning: 1. Navigate to http://0.0.0.0:3000/components/autocomplete#githubs-picker 2. Open the picker 3. Press <kbd>ArrowLeft</kbd> 4. 💥 `TypeError: Cannot read property 'focus' of null` I think that the rendering logic of `useAutocomplete` should be more resilient, it sh...
2020-06-15 22:47:48+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: multiple should not crash if a tag is missing']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
3
0
3
false
false
["docs/src/pages/components/autocomplete/GitHubLabel.js->program->function_declaration:GitHubLabel", "packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete->function_declaration:validTagIndex", "packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->pro...
mui/material-ui
21,670
mui__material-ui-21670
['21663']
b878e292b95ed25ffe878e58a7a0dae4bd1fc514
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -962,6 +962,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -429,6 +429,24 @@ describe('<Autocompl...
[Autocomplete] Multiple can't pass 'required' validation <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox shoul...
What do you think about this fix? ```diff diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js index feea18c89..577df20a0 100644 --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-...
2020-07-05 00:11:53+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: multiple should not be required if a value is selected']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
21,992
mui__material-ui-21992
['21693']
7994e11de8c02b9480efb927a8042939ad05ac5c
diff --git a/docs/pages/api-docs/autocomplete.md b/docs/pages/api-docs/autocomplete.md --- a/docs/pages/api-docs/autocomplete.md +++ b/docs/pages/api-docs/autocomplete.md @@ -54,7 +54,7 @@ The `MuiAutocomplete` name can be used for providing [default props](/customizat | <span class="prop-name">fullWidth</span> | <spa...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -1255,7 +1255,7 @@ describe('<Autocomp...
[Autocomplete] Standard for Select options with different values - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. Many times, the values sent to the input are different from the label displayed on the option. Today, there a...
@rhuanbarreto Thanks for opening this issue. Yeah, I think that I could get behind supporting this change. It seems that the most common use case is to provide an object for the options, e.g. `<option value="1">Blue</option>`. So why not start from the same structure react-select's users are already familiar with? This...
2020-07-29 13:12:49+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: options should work if options are the default data structure']
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
2
0
2
false
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete", "docs/src/pages/components/autocomplete/ComboBox.js->program->function_declaration:ComboBox"]
mui/material-ui
22,696
mui__material-ui-22696
['19654']
fad48de8f7d9a449adb4ab9796e9ed1c2c0593ca
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -563,7 +563,7 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -834,6 +834,40 @@ describe('<Autocompl...
[Autocomplete] Don't close the popup when Ctrl/Shift clicks In an Autocomplete component that contains the `multiple` prop, it would be a great feature to have a ctrl click functionality. E.g. simply clicking with the mouse should select a single item. Only when ctrl+click is used the popup shouldn't close, allowing to...
null
2020-09-22 15:28:09+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open does not close the popup when option selected if Meta is pressed', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup open does not close the popup when option selected if Control...
[]
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
22,712
mui__material-ui-22712
['22302']
ba8ed3e623c38fddd9671b99ccb62a2b05bdd316
diff --git a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js @@ -206,6 +206,8 @@ export default fu...
diff --git a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js @@ -1338,6 +1338,22 @@ describe('<Autocom...
[Autocomplete] Accessibility error <!-- Provide a general summary of the issue in the Title above --> As of @material-ui/lab v4.0.0-alpha.52 the Autocomplete component fails jest a11y tests when the input field is filled. From some mild debugging I found that after the input field has been populated this aria attrib...
What violation did it report? ![image](https://user-images.githubusercontent.com/26290074/90893692-715c7500-e38d-11ea-98e4-46dbbe1e5672.png) @tylerjlawson Do you think that you could set up a live reproduction? Maybe with a repository or codesandbox? https://github.com/tylerjlawson/mui-lab-issue-repro I did some...
2020-09-24 00:58:22+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should support mouse event', 'packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> when popup closed opens on ArrowDown when focus is on the textbox without moving focus', 'packages/mat...
['packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: options should display a no options message if no options are available']
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> should only listen to changes from the same touchpoint']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui-lab/src/Autocomplete/Autocomplete.test.js packages/material-ui-lab/src/useAutocomplete/useAutocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui-lab/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
23,174
mui__material-ui-23174
['22253']
41cd2bc7425bb7fa7016eecb7c70e05f2b7ce98b
diff --git a/docs/pages/api-docs/input-base.md b/docs/pages/api-docs/input-base.md --- a/docs/pages/api-docs/input-base.md +++ b/docs/pages/api-docs/input-base.md @@ -40,7 +40,7 @@ The `MuiInputBase` name can be used for providing [default props](/customization | <span class="prop-name">error</span> | <span class="pro...
diff --git a/packages/material-ui/src/InputBase/InputBase.test.js b/packages/material-ui/src/InputBase/InputBase.test.js --- a/packages/material-ui/src/InputBase/InputBase.test.js +++ b/packages/material-ui/src/InputBase/InputBase.test.js @@ -166,15 +166,10 @@ describe('<InputBase />', () => { it('should inject ...
Got "Does not recognize the 'inputRef' prop" warning after providing TextareaAutosize to OutlinedInput <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the follo...
@liketurbo Thanks for the report. The relevant lines in the codebase are in https://github.com/mui-org/material-ui/blob/a5f59f9de6bbd498bd99d25890f04e496b4fb7eb/packages/material-ui/src/InputBase/InputBase.js#L364-L372 I wonder if we shouldn't move to the usage of the `ref` prop instead of the `inputRef`. The curren...
2020-10-20 07:28:34+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/InputBase/InputBase.test.js-><InputBase /> with FormControl propagates filled state when uncontrolled', 'packages/material-ui/src/InputBase/InputBase.test.js-><InputBase /> with FormControl registering input should not warn when toggling between inputs', 'packages/material-ui/src/InputBase/In...
['packages/material-ui/src/InputBase/InputBase.test.js-><InputBase /> prop: inputComponent with prop: inputProps should call onChange inputProp callback with all params sent from custom inputComponent', 'packages/material-ui/src/InputBase/InputBase.test.js-><InputBase /> prop: inputComponent errors throws on change if ...
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> range should support mouse events', 'packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> prop: orientation should report the right position', 'scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'p...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/InputBase/InputBase.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
2
0
2
false
false
["docs/src/pages/components/text-fields/FormattedInputs.js->program->function_declaration:NumberFormatCustom", "docs/src/pages/components/text-fields/FormattedInputs.js->program->function_declaration:TextMaskCustom"]
mui/material-ui
23,229
mui__material-ui-23229
['22166']
56520e757e0052e25f8dd5d78214458c4b7c634d
diff --git a/docs/pages/api-docs/autocomplete.md b/docs/pages/api-docs/autocomplete.md --- a/docs/pages/api-docs/autocomplete.md +++ b/docs/pages/api-docs/autocomplete.md @@ -108,7 +108,6 @@ Any other props supplied will be provided to the root element (native element). | <span class="prop-name">inputFocused</span> | ...
diff --git a/packages/material-ui/src/Autocomplete/Autocomplete.test.js b/packages/material-ui/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui/src/Autocomplete/Autocomplete.test.js @@ -62,7 +62,11 @@ describe('<Autocomplete />', () => { ...
[Autocomplete] Unclickable area between text input and endAdornment - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 When using the Autocomplete in ...
@FlorisWarmenhoven How do you reproduce the issue? ![WvlclOpfqP](https://user-images.githubusercontent.com/15650071/90341497-5a6df980-e000-11ea-8044-5bc9a43e3b26.gif) Sorry for the delay. As you can see in the above GIF, I am clicking from left to right (continuously clicking). There is an area that does not show/hi...
2020-10-24 00:17:28+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should pass to onHighlightChange the correct value after filtering', 'packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: filterOptions does not limit the amount of rendered options when...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> WAI-ARIA conforming markup when closed', 'packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> WAI-ARIA conforming markup when open']
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> range should support mouse events', 'packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> prop: orientation should report the right position', 'scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'p...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,299
mui__material-ui-23299
['23277']
38b259eff17f56d92083058543c29c62ce22d6e3
diff --git a/docs/pages/api-docs/table-pagination.md b/docs/pages/api-docs/table-pagination.md --- a/docs/pages/api-docs/table-pagination.md +++ b/docs/pages/api-docs/table-pagination.md @@ -40,7 +40,7 @@ The `MuiTablePagination` name can be used for providing [default props](/customi | <span class="prop-name required...
diff --git a/packages/material-ui/src/TablePagination/TablePagination.test.js b/packages/material-ui/src/TablePagination/TablePagination.test.js --- a/packages/material-ui/src/TablePagination/TablePagination.test.js +++ b/packages/material-ui/src/TablePagination/TablePagination.test.js @@ -402,4 +402,27 @@ describe('<T...
[Table] All option demo display wrong text <!-- Provide a general summary of the issue in the Title above --> When select All option in table pagination(with -1 value) the display text shown `1--1 of x` instead of `1-x of x` <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To av...
@hswimmer Thanks for the report. It looks like we can fix the demo: ```diff diff --git a/docs/src/pages/components/tables/CustomPaginationActionsTable.tsx b/docs/src/pages/components/tables/CustomPaginationActionsTable.tsx index 974475210d..7bd0e7a2c7 100644 --- a/docs/src/pages/components/tables/CustomPagination...
2020-10-28 17:55:45+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: labelDisplayedRows should use the labelDisplayedRows callback', 'packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: SelectProps does allow manual label ids', 'packages/material-ui/src/T...
['packages/material-ui/src/TablePagination/TablePagination.test.js-><TablePagination /> prop: rowsPerPage should display max number of rows text when prop is -1']
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> range should support mouse events', 'packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> prop: orientation should report the right position', 'scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'p...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/TablePagination/TablePagination.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,364
mui__material-ui-23364
['19651']
161fb8565f532df5766b0e152f21e4a88a8d8baa
diff --git a/docs/pages/api-docs/unstable-trap-focus.md b/docs/pages/api-docs/unstable-trap-focus.md --- a/docs/pages/api-docs/unstable-trap-focus.md +++ b/docs/pages/api-docs/unstable-trap-focus.md @@ -31,6 +31,7 @@ Utility component that locks focus inside the component. | <span class="prop-name">disableEnforceFocus...
diff --git a/packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js b/packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js --- a/packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js +++ b/packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js @@ -2,7 +...
[TrapFocus] Make possible to avoid focusing wrapper <!-- Provide a general summary of the feature in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should loo...
@dmtrKovalenko Thanks for opening this issue. For context, and for the next person that will have a look at the problem, the current behavior is the result of a tradeoff taken in #14545 to save bundle size. There is likely an opportunity to do better ✨. If it can inspire a solution: - https://github.com/Hacker0x01/...
2020-11-02 01:39:29+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js-><TrapFocus /> does not steal focus from a portaled element if any prop but open changes', 'packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js-><TrapFocus /> should not attempt to focus nonexistent children', 'packages/material...
['test/utils/user-event/index.test.js->userEvent tab should handle radio', 'test/utils/user-event/index.test.js->userEvent tab should tab', 'packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js-><TrapFocus /> should focus on first focus element after last has received a tab click', 'packages/material-...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha test/utils/createClientRender.js packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.test.js test/utils/user-event/index.js test/utils/user-event/index.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
5
0
5
false
false
["packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.js->program->function_declaration:isNodeMatchingSelectorFocusable", "packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.js->program->function_declaration:isNonTabbableRadio", "packages/material-ui/src/Unstable_TrapFocus/Unstable_TrapFocus.js->...
mui/material-ui
23,367
mui__material-ui-23367
['23215']
9196f1944440151938a8b916d6662b5d0e4d59b2
diff --git a/.eslintrc.js b/.eslintrc.js --- a/.eslintrc.js +++ b/.eslintrc.js @@ -169,6 +169,8 @@ module.exports = { 'jsx-a11y/no-static-element-interactions': 'off', 'jsx-a11y/tabindex-no-positive': 'off', + // In tests this is generally intended. + 'react/button-has-type': 'off', ...
diff --git a/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js b/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js --- a/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js +++ b/packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js @@ -1,12 +1,40 @@...
[ClickAwayListener] Is being fired without an onClick event after upgrading react and react-dom to v17 On my app I have a menu that worked fine until I upgraded `react` and `react-dom`. After upgrading `react` and `react-dom` from version `16.14.0` to version `17.0.0`- on menu click, the menu flashes-it opens and clo...
Oh wow, here's what's going on: 1. Click on the icon button, a DOM event (a.) is triggered. 1. The event bubbles up to the React host. 1. React bubbles the event on each React component. 1. React calls the `onClick` handler on the icon button. 1. React renders the `ClickAwayListener`. 1. `ClickAwayListener` set...
2020-11-02 10:51:56+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js-><ClickAwayListener /> prop: onClickAway should not be called when clicking inside', 'packages/material-ui/src/Snackbar/Snackbar.test.js-><Snackbar /> prop: disableWindowBlurListener should not pause auto hide when disabled and window lost focus', '...
['packages/material-ui/src/Snackbar/Snackbar.test.js-><Snackbar /> prop: TransitionComponent should use a Grow by default']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes']
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/ClickAwayListener/ClickAwayListener.test.js packages/material-ui/src/Snackbar/Snackbar.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/ClickAwayListener/ClickAwayListener.js->program->function_declaration:ClickAwayListener"]
mui/material-ui
23,466
mui__material-ui-23466
['23232']
8988c7f0fd0dc3ebe1b7f21b915da2757ac0ee84
diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -78,13 +78,14 @@ export const styles = (theme) => ({ padding: '4px 8px', fontSize: theme.typography.pxTo...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -410,9 +410,7 @@ describe('<Tooltip />', () => { title="Hello World" Tra...
[Tooltip] Long press select text on iOS <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this:...
@benneq Thanks for raising. The first thing that I could help myself noticed is how ugly it looks when the tooltip touch the edge. I think that we should add a bit of margin to avoid it: **Before** <img width="232" alt="Capture d’écran 2020-10-24 à 18 43 43" src="https://user-images.githubusercontent.com/3165635/...
2020-11-10 13:14:08+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: title should label the child when open', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> should render a popper', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'pac...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> user-select state prevents text-selection during touch-longpress']
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> range should support mouse events', 'packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> prop: orientation should report the right position', 'scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'p...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,482
mui__material-ui-23482
['23450']
e58fc20daa16dc5831f92d8960e2f97fcc7e66e0
diff --git a/packages/material-ui/src/Tooltip/Tooltip.js b/packages/material-ui/src/Tooltip/Tooltip.js --- a/packages/material-ui/src/Tooltip/Tooltip.js +++ b/packages/material-ui/src/Tooltip/Tooltip.js @@ -258,7 +258,7 @@ const Tooltip = React.forwardRef(function Tooltip(props, ref) { // We are using the mouseove...
diff --git a/packages/material-ui/src/Tooltip/Tooltip.test.js b/packages/material-ui/src/Tooltip/Tooltip.test.js --- a/packages/material-ui/src/Tooltip/Tooltip.test.js +++ b/packages/material-ui/src/Tooltip/Tooltip.test.js @@ -287,13 +287,13 @@ describe('<Tooltip />', () => { it('should be controllable', () => { ...
[Tooltip] onOpen / onClose unexpected behaviour - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 When hovering on different targets within the `...
Thanks for the report. Can reproduce with v5 as well: https://codesandbox.io/s/mui-tooltip-onopen-onclose-bug-forked-it19t as well. @dvh91 Interesting problem. The motivation for using *mouseover* over *mouseenter* is covered in https://github.com/mui-org/material-ui/blob/37d6ad0e7fed9c71fe05d1d4293667169fe46de0...
2020-11-11 20:46:55+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN jq 'del(.devDependencies["vrtest-mui"])' package.json > package.json.tmp && mv package.json.tmp package.json RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && rm -rf node_modules && yarn install && yarn add -D -W @types/prop-types @types/react-dom @types/s...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: title should label the child when open', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> should render a popper', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> prop: delay should take the enterDelay into account', 'pac...
['packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> should not call onClose if already closed', 'packages/material-ui/src/Tooltip/Tooltip.test.js-><Tooltip /> should not call onOpen again if already open']
['packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> range should support mouse events', 'packages/material-ui-lab/src/SliderStyled/SliderStyled.test.js-><Slider /> prop: orientation should report the right position', 'scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'p...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && yarn cross-env NODE_ENV=test mocha packages/material-ui/src/Tooltip/Tooltip.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,487
mui__material-ui-23487
['19887']
5115f08e29babb11481a190d68e7fd045f3ce804
diff --git a/docs/src/pages/components/autocomplete/autocomplete.md b/docs/src/pages/components/autocomplete/autocomplete.md --- a/docs/src/pages/components/autocomplete/autocomplete.md +++ b/docs/src/pages/components/autocomplete/autocomplete.md @@ -274,6 +274,22 @@ Search within 10,000 randomly generated options. The...
diff --git a/packages/material-ui/src/Autocomplete/Autocomplete.test.js b/packages/material-ui/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui/src/Autocomplete/Autocomplete.test.js @@ -2120,4 +2120,37 @@ describe('<Autocomplete />', () =>...
[Autocomplete] Add ability to override/compose key down events in autocomplete - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 Developer should have ability to override or compose default [onKeyDown functi...
@ivan-jelev Interesting, we have seen a similar concern raised in #19500. What do you think of my proposal at https://github.com/mui-org/material-ui/issues/19500#issuecomment-580867606? I think that we could move forward with it :). I had forgotten to link the previous benchmark I have run on the issue. Basically, I ha...
2020-11-12 10:58:26+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should pass to onHighlightChange the correct value after filtering', 'packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: filterOptions does not limit the amount of rendered options when...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> should prevent the default event handlers']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Feature
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
23,701
mui__material-ui-23701
['23603']
dfc94e03d391384155cbdd1a0e3b0fe16e2e1042
diff --git a/packages/material-ui-lab/src/internal/pickers/date-utils.ts b/packages/material-ui-lab/src/internal/pickers/date-utils.ts --- a/packages/material-ui-lab/src/internal/pickers/date-utils.ts +++ b/packages/material-ui-lab/src/internal/pickers/date-utils.ts @@ -128,7 +128,7 @@ export const isRangeValid = <TDat...
diff --git a/packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx b/packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx --- a/packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx +++ b/packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx @@ -59,6 +59,...
[DateRangePicker] Allow same date selection <!-- Provide a general summary of the issue in the Title above --> ```jsx <DateRangePicker startText="Created From" endText="Created To" allowSameDateSelection={true} value={[ ...
I have this problem also. I would appreciate if it could be fixed as fast as possible. Thanks! Please fix this. We need it! This project is not supported anymore, it is moving to the material-ui/core https://github.com/mui-org/material-ui/pull/22692 but the PR is floating. I`ll add a mention about this in readme ...
2020-11-24 15:50:20+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx-><DateRangePicker /> allows disabling dates', 'packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx-><DateRangePicker /> prop – `calendars` renders provided amount of calendars', "packages/material-ui-lab/src/DateRangePicker/DateRa...
['packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx-><DateRangePicker /> allows a single day range']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui-lab/src/DateRangePicker/DateRangePicker.test.tsx --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,778
mui__material-ui-23778
['23693']
4f6c184c749b9ef1819b52a54e6db76c26f14482
diff --git a/packages/material-ui/src/Select/SelectInput.js b/packages/material-ui/src/Select/SelectInput.js --- a/packages/material-ui/src/Select/SelectInput.js +++ b/packages/material-ui/src/Select/SelectInput.js @@ -401,6 +401,7 @@ const SelectInput = React.forwardRef(function SelectInput(props, ref) { aria...
diff --git a/packages/material-ui/src/Select/Select.test.js b/packages/material-ui/src/Select/Select.test.js --- a/packages/material-ui/src/Select/Select.test.js +++ b/packages/material-ui/src/Select/Select.test.js @@ -424,6 +424,12 @@ describe('<Select />', () => { expect(getByRole('button')).to.have.attribute(...
[Select] When disabled the <input> element misses the disabled attribute <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checke...
@masoodusmani Thanks for the report, this looks accurate: > The disabled attribute is used to make the control non-interactive and to **prevent its value from being submitted**. https://www.w3.org/TR/html51/sec-forms.html#element-attrdef-disabledformelements-disabled What do you think about this diff? Do you w...
2020-11-29 12:01:49+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/Select/Select.test.js-><Select /> should open menu when pressed ArrowUp key on select', 'packages/material-ui/src/Select/Select.test.js-><Select /> prop: multiple selects value based on their stringified equality when theyre not objects', 'packages/material-ui/src/Select/Select.test.js-><Sele...
['packages/material-ui/src/Select/Select.test.js-><Select /> accessibility sets disabled attribute in input when component is disabled']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui/src/Select/Select.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,786
mui__material-ui-23786
['23709']
6f56be2a07185be06984476aed9f518cbbd6b87d
diff --git a/packages/material-ui/src/internal/SwitchBase.js b/packages/material-ui/src/internal/SwitchBase.js --- a/packages/material-ui/src/internal/SwitchBase.js +++ b/packages/material-ui/src/internal/SwitchBase.js @@ -84,6 +84,11 @@ const SwitchBase = React.forwardRef(function SwitchBase(props, ref) { }; c...
diff --git a/packages/material-ui/src/internal/SwitchBase.test.js b/packages/material-ui/src/internal/SwitchBase.test.js --- a/packages/material-ui/src/internal/SwitchBase.test.js +++ b/packages/material-ui/src/internal/SwitchBase.test.js @@ -214,6 +214,33 @@ describe('<SwitchBase />', () => { expect(handleChang...
[Switch] preventDefault is ignored <!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] ...
Below the [Switch API props table] you'll find > Any other props supplied will be provided to the root element (IconButton). which means that you're not preventing the default behavior of the click event on `<input />` but `<IconButton />`. However, it doesn't seem like you can do this at the moment. Passing ...
2020-11-30 09:00:07+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> handleInputChange() should call onChange when uncontrolled', 'packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> with FormControl disabled should be overridden by props', 'packages/material-ui/src/internal/SwitchBase.test.js-><Swit...
['packages/material-ui/src/internal/SwitchBase.test.js-><SwitchBase /> handleInputChange() should not change checkbox state when event is default prevented']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui/src/internal/SwitchBase.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
true
false
false
false
0
0
0
false
false
[]
mui/material-ui
23,806
mui__material-ui-23806
['21142']
21b4e266d576a450b36a406ffada2dfb1f3d0192
diff --git a/docs/src/pages/components/use-media-query/use-media-query.md b/docs/src/pages/components/use-media-query/use-media-query.md --- a/docs/src/pages/components/use-media-query/use-media-query.md +++ b/docs/src/pages/components/use-media-query/use-media-query.md @@ -90,6 +90,31 @@ describe('MyTests', () => { }...
diff --git a/packages/material-ui/src/useMediaQuery/useMediaQuery.test.js b/packages/material-ui/src/useMediaQuery/useMediaQuery.test.js --- a/packages/material-ui/src/useMediaQuery/useMediaQuery.test.js +++ b/packages/material-ui/src/useMediaQuery/useMediaQuery.test.js @@ -241,30 +241,34 @@ describe('useMediaQuery', (...
[useMediaQuery] always returns false at the first call Duplicate of #21048 - `[useMediaQuery] always returns false first at page-load` - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a...
@theKashey We used to have a `pastHydration` like a flag and decided to remove it in #18670 & #18683. Is there any other improvement opportunity? Your expected behavior would result in a hydration mismatch. Unless react core allows us to determine whether we're hydrating or not, we can't implement it correctly. Every `...
2020-12-01 20:30:03+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/useMediaQuery/useMediaQuery.test.js->useMediaQuery with feature should observe the media query', 'packages/material-ui/src/useMediaQuery/useMediaQuery.test.js->useMediaQuery with feature should be able to change the query dynamically', 'packages/material-ui/src/useMediaQuery/useMediaQuery.tes...
['packages/material-ui/src/useMediaQuery/useMediaQuery.test.js->useMediaQuery server-side should use the ssr match media ponyfill']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui/src/useMediaQuery/useMediaQuery.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/useMediaQuery/useMediaQuery.js->program->function_declaration:useMediaQuery"]
mui/material-ui
23,884
mui__material-ui-23884
['23572']
194670d1cab86a764398648f136949a003b0c8b0
diff --git a/packages/material-ui/src/useAutocomplete/useAutocomplete.js b/packages/material-ui/src/useAutocomplete/useAutocomplete.js --- a/packages/material-ui/src/useAutocomplete/useAutocomplete.js +++ b/packages/material-ui/src/useAutocomplete/useAutocomplete.js @@ -103,10 +103,10 @@ export default function useAuto...
diff --git a/packages/material-ui/src/Autocomplete/Autocomplete.test.js b/packages/material-ui/src/Autocomplete/Autocomplete.test.js --- a/packages/material-ui/src/Autocomplete/Autocomplete.test.js +++ b/packages/material-ui/src/Autocomplete/Autocomplete.test.js @@ -1170,7 +1170,7 @@ describe('<Autocomplete />', () => ...
[Autocomplete] candidate.toLowerCase is not a function - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 `candidate.toLowerCase is not a function` ...
👋 Thanks for using Material-UI! We use GitHub issues exclusively as a bug and feature requests tracker, however, this issue appears to be a support request. For support, please check out https://material-ui.com/getting-started/support/. Thanks! If you have a question on StackOverflow, you are welcome to link to it ...
2020-12-07 22:18:36+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: onHighlightChange should pass to onHighlightChange the correct value after filtering', 'packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> prop: filterOptions does not limit the amount of rendered options when...
['packages/material-ui/src/Autocomplete/Autocomplete.test.js-><Autocomplete /> warnings warn if getOptionLabel do not return a string']
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha packages/material-ui/src/Autocomplete/Autocomplete.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
1
0
1
true
false
["packages/material-ui/src/useAutocomplete/useAutocomplete.js->program->function_declaration:useAutocomplete"]
mui/material-ui
23,902
mui__material-ui-23902
['23506']
757a94f00eae59357499bcfe1fa665f09e1f4beb
diff --git a/docs/src/pages/components/slider/CustomizedSlider.js b/docs/src/pages/components/slider/CustomizedSlider.js --- a/docs/src/pages/components/slider/CustomizedSlider.js +++ b/docs/src/pages/components/slider/CustomizedSlider.js @@ -160,8 +160,10 @@ const AirbnbSlider = styled(Slider)({ }); function Airbn...
diff --git a/packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js b/packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js --- a/packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js +++ b/packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js @@ -1...
[Slider] Component doesn't work on touch+AT devices <!-- Provide a general summary of the issue in the Title above --> Similar to this issue https://github.com/material-components/material-components-web-components/issues/1285 > The slider doesn't work for users on touch devices while using AT (e.g. iOS/VoiceOver, ...
Interesting. The option to use a native slider was ignored to make customizations easier. But we could still imagine an approach similar to the rating. Use the native slider, but "hidden". In any case, this could require a couple of days of work. Would you be interested in working on it? https://github.com/w3c/aria...
2020-12-09 06:51:56+00:00
TypeScript
FROM polybench_typescript_base WORKDIR /testbed COPY . . RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install --legacy-peer-deps RUN . /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npm install -D @types/prop-types @types/react-dom @types/testing-library__react @types/sinon @types/chai @types/chai-dom @types/format...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> prop: ValueLabelComponent receives the formatted value', 'packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js-><SliderUnstyled /> Material-UI component API prop: component can render another root component with the `component` prop', 'pack...
['packages/material-ui/src/Slider/Slider.test.js-><Slider /> range should support keyboard', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> aria-valuenow should update the aria-valuenow', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> rtl should add direction css', 'packages/material-ui/src/Sl...
['scripts/listChangedFiles.test.js->listChangedFiles should detect changes', 'packages/material-ui/src/BottomNavigationAction/BottomNavigationAction.test.js-><BottomNavigationAction /> touch functionality should fire onClick on touch tap', 'packages/material-ui/src/Slider/Slider.test.js-><Slider /> should only listen t...
. /usr/local/nvm/nvm.sh && nvm use 18.8.0 && npx cross-env NODE_ENV=test mocha test/utils/initMatchers.ts packages/material-ui/src/Slider/Slider.test.js packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.test.js --reporter /testbed/custom-reporter.js --exit
Bug Fix
false
true
false
false
4
0
4
false
false
["docs/src/pages/components/slider/CustomizedSlider.js->program->function_declaration:AirbnbThumbComponent", "packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.js->program->function_declaration:focusThumb", "packages/material-ui-unstyled/src/SliderUnstyled/SliderUnstyled.js->program->function_declaration:...