Browse Source

Import type from packages

Signed-off-by: Louis Chemineau <louis@chmn.me>
tags/v24.0.0beta1
Louis Chemineau 2 years ago
parent
commit
37e5050d69

+ 5
- 0
.eslintrc.js View File

ignores: ['/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u'], ignores: ['/^[a-z]+(?:-[a-z]+)*:[a-z]+(?:-[a-z]+)*$/u'],
}], }],
}, },
settings: {
jsdoc: {
mode: 'typescript',
},
},
} }

+ 2
- 0
apps/comments/src/activitytabviewplugin.js View File

* *
*/ */


/** @typedef {import('jquery')} jQuery */

(function() { (function() {
OCA.Comments.ActivityTabViewPlugin = { OCA.Comments.ActivityTabViewPlugin = {



+ 1
- 1
apps/comments/src/utils/cancelableRequest.js View File

/** /**
* Create a cancel token * Create a cancel token
* *
* @return {CancelTokenSource}
* @return {import('axios').CancelTokenSource}
*/ */
const createCancelToken = () => axios.CancelToken.source() const createCancelToken = () => axios.CancelToken.source()



+ 1
- 0
core/src/OC/legacy-loader.js View File

* *
*/ */


/** @typedef {import('jquery')} jQuery */
import $ from 'jquery' import $ from 'jquery'
import { generateFilePath } from '@nextcloud/router' import { generateFilePath } from '@nextcloud/router'



+ 1
- 0
core/src/OC/menu.js View File

*/ */


import _ from 'underscore' import _ from 'underscore'
/** @typedef {import('jquery')} jQuery */
import $ from 'jquery' import $ from 'jquery'


import { menuSpeed } from './constants' import { menuSpeed } from './constants'

+ 2
- 1
core/src/OC/notification.js View File

*/ */


import _ from 'underscore' import _ from 'underscore'
/** @typedef {import('jquery')} jQuery */
import $ from 'jquery' import $ from 'jquery'
import { showMessage, TOAST_DEFAULT_TIMEOUT, TOAST_PERMANENT_TIMEOUT } from '@nextcloud/dialogs' import { showMessage, TOAST_DEFAULT_TIMEOUT, TOAST_PERMANENT_TIMEOUT } from '@nextcloud/dialogs'


* @param {number} [options.timeout=7] timeout in seconds, if this is 0 it will show the message permanently * @param {number} [options.timeout=7] timeout in seconds, if this is 0 it will show the message permanently
* @param {boolean} [options.isHTML=false] an indicator for HTML notifications (true) or text (false) * @param {boolean} [options.isHTML=false] an indicator for HTML notifications (true) or text (false)
* @param {string} [options.type] notification type * @param {string} [options.type] notification type
* @return {JQuery<any>} the toast element
* @return {JQuery} the toast element
* @deprecated 17.0.0 use the `@nextcloud/dialogs` package * @deprecated 17.0.0 use the `@nextcloud/dialogs` package
*/ */
showTemporary(text, options) { showTemporary(text, options) {

+ 0
- 1
core/src/OCP/appconfig.js View File

* @param {object} [options.data] option data * @param {object} [options.data] option data
* @param {Function} [options.success] success callback * @param {Function} [options.success] success callback
* @param {Function} [options.error] error callback * @param {Function} [options.error] error callback
* @internal
*/ */
function call(method, endpoint, options) { function call(method, endpoint, options) {
if ((method === 'post' || method === 'delete') && OC.PasswordConfirmation.requiresPasswordConfirmation()) { if ((method === 'post' || method === 'delete') && OC.PasswordConfirmation.requiresPasswordConfirmation()) {

+ 2
- 2
core/src/services/UnifiedSearchService.js View File

/** /**
* Create a cancel token * Create a cancel token
* *
* @return {CancelTokenSource}
* @return {import('axios').CancelTokenSource}
*/ */
const createCancelToken = () => axios.CancelToken.source() const createCancelToken = () => axios.CancelToken.source()


/** /**
* Get the list of available search providers * Get the list of available search providers
* *
* @return {Array}
* @return {Promise<Array>}
*/ */
export async function getTypes() { export async function getTypes() {
try { try {

+ 1
- 1
dist/comments-comments-app.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
dist/comments-comments.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
dist/core-login.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
dist/core-main.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
dist/core-unified-search.js.map
File diff suppressed because it is too large
View File


Loading…
Cancel
Save