Regenerate package-lock and dist files after PhantomJS removal

This commit is contained in:
Zeno Rocha 2020-02-29 09:55:14 -08:00
parent 83824fa248
commit d3fc3c1e7b
3 changed files with 2069 additions and 2990 deletions

9
dist/clipboard.js vendored
View File

@ -1,6 +1,6 @@
/*!
* clipboard.js v2.0.4
* https://zenorocha.github.io/clipboard.js
* https://clipboardjs.com/
*
* Licensed MIT © Zeno Rocha
*/
@ -273,10 +273,10 @@ var Clipboard = function (_Emitter) {
var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];
var actions = typeof action === 'string' ? [action] : action;
var support = !!document.queryCommandSupported;
var support = !document.queryCommandSupported;
actions.forEach(function (action) {
support = support && !!document.queryCommandSupported(action);
support = support && !document.queryCommandSupported(action);
});
return support;
@ -492,7 +492,7 @@ var ClipboardAction = function () {
if (this.trigger) {
this.trigger.focus();
}
document.activeElement.blur();
window.getSelection().removeAllRanges();
}
@ -692,6 +692,7 @@ E.prototype = {
};
module.exports = E;
module.exports.TinyEmitter = E;
/***/ }),

File diff suppressed because one or more lines are too long

5046
package-lock.json generated

File diff suppressed because it is too large Load Diff