Bump @nextcloud/eslint-config from 5.1.0 to 6.0.0

Bumps [@nextcloud/eslint-config](https://github.com/nextcloud/eslint-config) from 5.1.0 to 6.0.0.
- [Release notes](https://github.com/nextcloud/eslint-config/releases)
- [Changelog](https://github.com/nextcloud/eslint-config/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/eslint-config/compare/v5.1.0...v6.0.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2021-08-03 07:24:56 +00:00
committed by Julius Härtl
parent 3e68801774
commit d98c2bc926
14 changed files with 238 additions and 34 deletions

View File

@@ -109,7 +109,7 @@ if (!window.OCA.Deck) {
}
/**
* @typedef {Object} CardRichObject
* @typedef {object} CardRichObject
* @property {string} id
* @property {string} name
* @property {string} boardname
@@ -124,13 +124,14 @@ if (!window.OCA.Deck) {
/**
* Frontend message API for adding actions to talk messages.
*
* @param {*} Object the wrapping object.
* @param {String} label the action label.
* @param {string} label the action label.
* @param {registerActionCallback} callback the callback function. This function will receive
* the card as a parameter and be triggered by a click on the
* action. The card parameter will be of the format of a rich object string
* type "deck-card"
* @param {String} icon the action label. E.g. "icon-reply"
* @param {string} icon the action label. E.g. "icon-reply"
*/
window.OCA.Deck.registerCardAction = ({ label, callback, icon }) => {
const cardAction = {