Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-12-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-20Update file row stylingIllya Klymov
2019-07-02Hid re-named entries in subfoldersDenys Mishunov
2019-04-04Refactor new_dropdown/index to receive isOpen propPaul Slaughter
**Why?** Previously it managed this as an internal data property, but there was extra complexity involved because the component doesn't have all the information it needs (i.e. the `mouseOver` prop). This is a good opportunity to colocate the data prop with the component that has the information to change it (i.e. `file_row`) and let `new_dropdown/index` receive this value as a prop.
2019-04-04Fix IDE file dropdown with `mouseleave` eventPaul Slaughter
2019-02-13add title attr to display file nameSatoshi Nakamatsu
2019-01-15Upgrade prettier and reformat files as necessaryMike Greiling
Upgrades prettier to 1.15.3 Runs `yarn prettier-save-all` against the codebase Most changes are due to https://github.com/prettier/prettier/pull/5519
2019-01-08Add headers to files in the tree list on merge requestsPhil Hughes
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54807
2018-11-20Prettify all the thingsMike Greiling
2018-10-23Use convertPermissionToBoolean to get a booleanPhil Hughes
2018-10-23Dynamically truncate the text in the file rowPhil Hughes
2018-10-23Add list mode to file browser in diffsPhil Hughes
This adds toggle buttons to switch between file & tree list. For file list, it renders the truncated paths with the ellipsis at the start of the path. When focusing the input, it hides the toggle buttons. On blur, the buttons get shown again. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/51859
2018-10-03Added file tree to merge request diffsPhil Hughes
This file tree displays all the diff files in a tree like format Each file is taken and converted into a tree with folders Each folder can be toggled open & closed Clicking a file will scroll to the diff file & highlight with a glow affect Searching the tree list will search only files & return a list of the files without any folders Each file row contains an icon to show changed, new file or deleted Each row will also contain the added & removed lines count Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/14249
2018-09-20Resolve eslint-plugin-vue errorsMike Greiling
The eslint-plugin-vue upgrade had some breaking changes to vue/attribute-order which needed to be resolved in order to avoid disabling the rule entirely
2018-09-17Decouple file row from IDEPhil Hughes
This makes the file row component re-usable ouside of the Web IDE Pre-request for https://gitlab.com/gitlab-org/gitlab-ce/issues/14249