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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-08-12Rename Button into ButtonVueMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Fix simplepollseditor layoutMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Style checkboxesMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Use checkboxes instead of switchesMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Apply review suggestionsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Fix caption paddingMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Use TextField component from vue libraryMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Add results pageMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@icloud.com>
2022-08-12Export a signle object from the pollService fileMarco Ambrosini
In order to be able to discern between store action and API call function in the store files, we decided to export one single service object from the service files, so that we access the api call functions through that object. Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-08-12Initialize poll storeMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-08-12Initialise poll componentMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-08-12Add ability to create pollsMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-08-12Fix import of ButtonVueJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-08-12Add padding for the keyboard hover to display properlyJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-08-12Don't manually disable anymore, it works properly on the Actions component nowJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-08-11Fix message options when submitting from the advanced inputDaniel Calviño Sánchez
"handleSubmit" was called from an event, so the "options" were the event itself; this did not fail, as the options were defined, but they were useless anyway. Now the options are explicitly set. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-08-10Remove the unused nc-button classJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-07-23Update my emailMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-07-15Fix HTML validation of material design iconsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-07-13Since v5.0.0 of the lib, the property decorative has been removed.bugfix/noid/html-validation-vue-material-design-iconsJoas Schilling
This means the "decorative" is added to the span element, causing the HTML validation to fail: > Attribute decorative not allowed on element span at this point. Upstream commit https://github.com/robcresswell/vue-material-design-icons/commit/c65d8ea786ea49210193cb3129c12a68ed6c0baf > This patch also removes the default title, encouraging better > accessibility by removing unhelpful titles that dont indicate usage. The > `decorative` prop has been removed and any icons that do not have a > meaningful title will be hidden from screen readers. Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-07-13Fix buttonsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-07-11Add more aria-labelsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-07-11Add aria-labels to voice message buttonsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-29Use "Send without notification" wordingJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-06-02l10n: Delete shortcutValdnet
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2022-06-01Add silent option to the requestMarco Ambrosini
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
2022-06-01Add send silently actionmarco
Signed-off-by: marco <marcoambrosini@pm.me>
2022-05-18Fix remaining warningsmarco
Signed-off-by: marco <marcoambrosini@pm.me>
2022-04-27Disable UI elements which can not be used anymoreJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-04-08Use tertiary-no-background for emoji pickerJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-03-24Replace deprecated String.prototype.substr()Tobias Speicher
.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
2022-03-036927: fixed button for new message formNikola
Signed-off-by: Nikola <nikola.gladovic@nextcloud.com>
2022-02-286927: updated button for NewMessageFormNikola
Signed-off-by: Nikola <nikola.gladovic@nextcloud.com>
2022-02-07Reparent file picker and viewer in fullscreen modeDaniel Calviño Sánchez
By default the file picker and the viewer are siblings of the fullscreen element, so they are not visible when in fullscreen mode. It is not possible to specify the parent nor to know when the file picker or the viewer were actually opened, so for the time being they are reparented if needed shortly after calling them. This is just a temporary hack until it is possible to specify the parent element, but that would require changes in the Vue library, the viewer and the server dialogs, so this horrible code will have to do for now. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2022-01-26Merge pull request #6795 from ↵Joas Schilling
nextcloud/revert-6789-bugfix/6318/mention-complete-with-mouse Revert "6318: fixed mention complete with mouse clicking"
2022-01-25Fix mentions inside bracketsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-01-24Fix eslintJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2022-01-21Merge pull request #6786 from ↵Joas Schilling
nextcloud/dependabot/npm_and_yarn/nextcloud/eslint-config-7.0.1 Bump @nextcloud/eslint-config from 6.1.2 to 7.0.1
2022-01-20Fix linter errorsmarco
Signed-off-by: marco <marcoambrosini@pm.me>
2022-01-20Fix mentions not being added on click sometimesmarco
Increased the timeout in order to let the vue-at componentdo its magic before destroying it after a blur event on the advanced input. Signed-off-by: marco <marcoambrosini@pm.me>
2022-01-19Merge pull request #6787 from nextcloud/bugfix/noid/fix-some-stylelint-warningsJoas Schilling
Fix some stylelint warnings
2022-01-19Fix some stylelint warningsmarco
Signed-off-by: marco <marcoambrosini@pm.me>
2022-01-19Revert "6318: fixed mention complete with mouse clicking"Marco
2022-01-18Merge pull request #6789 from nextcloud/bugfix/6318/mention-complete-with-mouseJoas Schilling
6318: fixed mention complete with mouse clicking
2022-01-184310: fixed emoticon displaying after selectionNikola
Signed-off-by: Nikola <nikola.gladovic@nextcloud.com>
2022-01-186318: fixed mention complete with mouse clickingNikola
Signed-off-by: Nikola <nikola.gladovic@nextcloud.com>
2022-01-10Fix some stylelintJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-12-03Disable emoji picker in locked conversationsmarco
Signed-off-by: marco <marcoambrosini@pm.me>
2021-10-22Also fix the status recycling in the mention dropdownJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-09-02Add more buffer on file name length so "(1)" and other things workJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>