- Linting (ESLint): Update as per latest ash-nazg (bad jsdoc)
- npm: Update devDeps
This commit is contained in:
36
dist/index-es.js
vendored
36
dist/index-es.js
vendored
@@ -6802,6 +6802,8 @@ function pathDSegment(letter, points, morePoints, lastPoint) {
|
||||
|
||||
return segment;
|
||||
}
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* Group: Path edit functions
|
||||
* Functions relating to editing path elements
|
||||
@@ -6811,6 +6813,7 @@ function pathDSegment(letter, points, morePoints, lastPoint) {
|
||||
|
||||
|
||||
var pathActions = function () {
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
var subpath = false;
|
||||
var newPoint, firstCtrl;
|
||||
var currentPath = null;
|
||||
@@ -14694,8 +14697,8 @@ function SvgCanvas(container, config) {
|
||||
|
||||
/**
|
||||
* @typedef {PlainObject} module:svgcanvas.ExtensionInitArgs
|
||||
* @param {external:jQuery} initArgs.$
|
||||
* @param {module:SVGEditor~ImportLocale} initArgs.importLocale
|
||||
* @property {external:jQuery} $
|
||||
* @property {module:SVGEditor~ImportLocale} importLocale
|
||||
*/
|
||||
|
||||
/**
|
||||
@@ -16874,6 +16877,8 @@ function SvgCanvas(container, config) {
|
||||
call('zoomDone');
|
||||
});
|
||||
})();
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* Group: Text edit functions
|
||||
* Functions relating to editing text elements
|
||||
@@ -16883,6 +16888,7 @@ function SvgCanvas(container, config) {
|
||||
|
||||
|
||||
var textActions = canvas.textActions = function () {
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
var curtext;
|
||||
var textinput;
|
||||
var cursor;
|
||||
@@ -22907,6 +22913,8 @@ function jQueryPluginSVGIcons($) {
|
||||
* @example $.jGraduate.Paint({hex: '#rrggbb', linearGradient: o}); // throws an exception?
|
||||
*/
|
||||
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* The jQuery namespace.
|
||||
* @external jQuery
|
||||
@@ -22918,6 +22926,8 @@ function jQueryPluginSVGIcons($) {
|
||||
* @memberof external:jQuery
|
||||
* @see {@link http://learn.jquery.com/plugins/|jQuery Plugins}
|
||||
*/
|
||||
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
var ns = {
|
||||
svg: 'http://www.w3.org/2000/svg',
|
||||
xlink: 'http://www.w3.org/1999/xlink'
|
||||
@@ -22955,11 +22965,11 @@ function jQueryPluginJGraduate($) {
|
||||
}
|
||||
/**
|
||||
* @typedef {PlainObject} module:jGraduate.jGraduatePaintOptions
|
||||
* @param {Float} [alpha]
|
||||
* @param {module:jGraduate~Paint} [copy] Copy paint object
|
||||
* @param {SVGLinearGradientElement} [linearGradient]
|
||||
* @param {SVGRadialGradientElement} [radialGradient]
|
||||
* @param {string} [solidColor]
|
||||
* @property {Float} [alpha]
|
||||
* @property {module:jGraduate~Paint} [copy] Copy paint object
|
||||
* @property {SVGLinearGradientElement} [linearGradient]
|
||||
* @property {SVGRadialGradientElement} [radialGradient]
|
||||
* @property {string} [solidColor]
|
||||
*/
|
||||
|
||||
/**
|
||||
@@ -23047,6 +23057,8 @@ function jQueryPluginJGraduate($) {
|
||||
this.radialGradient = null;
|
||||
}
|
||||
};
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* @namespace {PlainObject} jGraduate
|
||||
* @memberof external:jQuery
|
||||
@@ -23056,6 +23068,8 @@ function jQueryPluginJGraduate($) {
|
||||
$.jGraduate =
|
||||
/** @lends external:jQuery.jGraduate */
|
||||
{
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* @class external:jQuery.jGraduate.Paint
|
||||
* @see module:jGraduate~Paint
|
||||
@@ -25721,6 +25735,8 @@ var jPicker = function jPicker($) {
|
||||
* @property {string} [ahex]
|
||||
*/
|
||||
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* @namespace {PlainObject} jPicker
|
||||
* @memberof external:jQuery
|
||||
@@ -25730,6 +25746,8 @@ var jPicker = function jPicker($) {
|
||||
$.jPicker =
|
||||
/** @lends external:jQuery.jPicker */
|
||||
{
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* Array holding references to each active instance of the jPicker control
|
||||
* @type {external:jQuery.fn.$.fn.jPicker[]}
|
||||
@@ -35238,12 +35256,16 @@ editor.init = function () {
|
||||
|
||||
$$b('input,select').attr('autocomplete', 'off');
|
||||
var dialogSelectors = ['#tool_source_cancel', '#tool_docprops_cancel', '#tool_prefs_cancel', '.overlay'];
|
||||
/* eslint-disable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* Associate all button actions as well as non-button keyboard shortcuts
|
||||
* @namespace {PlainObject} module:SVGEditor~Actions
|
||||
*/
|
||||
|
||||
var Actions = function () {
|
||||
/* eslint-enable jsdoc/require-property */
|
||||
|
||||
/**
|
||||
* @typedef {PlainObject} module:SVGEditor.ToolButton
|
||||
* @property {string} sel The CSS selector for the tool
|
||||
|
||||
Reference in New Issue
Block a user