Fixed issue where the preview thumbnail was present while scrubbing
This commit is contained in:
parent
215fc3677a
commit
4c3bf25b8a
@ -1,3 +1,7 @@
|
|||||||
|
## v3.5.2
|
||||||
|
|
||||||
|
- Fixed issue where the preview thumbnail was present while scrubbing
|
||||||
|
|
||||||
## v3.5.1
|
## v3.5.1
|
||||||
|
|
||||||
- Fixed build issues with babel and browserslist
|
- Fixed build issues with babel and browserslist
|
||||||
|
11
demo/dist/demo.js
vendored
11
demo/dist/demo.js
vendored
@ -7371,7 +7371,7 @@ typeof navigator === "object" && (function () {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
// Quality default
|
// Quality default
|
||||||
@ -11063,7 +11063,6 @@ typeof navigator === "object" && (function () {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
} // Find the desired thumbnail index
|
} // Find the desired thumbnail index
|
||||||
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
||||||
@ -11073,8 +11072,12 @@ typeof navigator === "object" && (function () {
|
|||||||
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
||||||
});
|
});
|
||||||
var hasThumb = thumbNum >= 0;
|
var hasThumb = thumbNum >= 0;
|
||||||
var qualityIndex = 0;
|
var qualityIndex = 0; // Show the thumb container if we're not scrubbing
|
||||||
this.toggleThumbContainer(hasThumb); // No matching thumb found
|
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
} // No matching thumb found
|
||||||
|
|
||||||
|
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
return;
|
return;
|
||||||
|
2
demo/dist/demo.min.js
vendored
2
demo/dist/demo.min.js
vendored
File diff suppressed because one or more lines are too long
2
demo/dist/demo.min.js.map
vendored
2
demo/dist/demo.min.js.map
vendored
File diff suppressed because one or more lines are too long
11
dist/plyr.js
vendored
11
dist/plyr.js
vendored
@ -3521,7 +3521,7 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
// Quality default
|
// Quality default
|
||||||
@ -7219,7 +7219,6 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
} // Find the desired thumbnail index
|
} // Find the desired thumbnail index
|
||||||
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
||||||
@ -7229,8 +7228,12 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
||||||
});
|
});
|
||||||
var hasThumb = thumbNum >= 0;
|
var hasThumb = thumbNum >= 0;
|
||||||
var qualityIndex = 0;
|
var qualityIndex = 0; // Show the thumb container if we're not scrubbing
|
||||||
this.toggleThumbContainer(hasThumb); // No matching thumb found
|
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
} // No matching thumb found
|
||||||
|
|
||||||
|
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
return;
|
return;
|
||||||
|
2
dist/plyr.min.js
vendored
2
dist/plyr.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.min.js.map
vendored
2
dist/plyr.min.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.min.mjs
vendored
2
dist/plyr.min.mjs
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.min.mjs.map
vendored
2
dist/plyr.min.mjs.map
vendored
File diff suppressed because one or more lines are too long
11
dist/plyr.mjs
vendored
11
dist/plyr.mjs
vendored
@ -3515,7 +3515,7 @@ var defaults$1 = {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
// Quality default
|
// Quality default
|
||||||
@ -7213,7 +7213,6 @@ function () {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
} // Find the desired thumbnail index
|
} // Find the desired thumbnail index
|
||||||
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
||||||
@ -7223,8 +7222,12 @@ function () {
|
|||||||
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
||||||
});
|
});
|
||||||
var hasThumb = thumbNum >= 0;
|
var hasThumb = thumbNum >= 0;
|
||||||
var qualityIndex = 0;
|
var qualityIndex = 0; // Show the thumb container if we're not scrubbing
|
||||||
this.toggleThumbContainer(hasThumb); // No matching thumb found
|
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
} // No matching thumb found
|
||||||
|
|
||||||
|
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
return;
|
return;
|
||||||
|
11
dist/plyr.polyfilled.js
vendored
11
dist/plyr.polyfilled.js
vendored
@ -6909,7 +6909,7 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
// Quality default
|
// Quality default
|
||||||
@ -10621,7 +10621,6 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
} // Find the desired thumbnail index
|
} // Find the desired thumbnail index
|
||||||
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
||||||
@ -10631,8 +10630,12 @@ typeof navigator === "object" && (function (global, factory) {
|
|||||||
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
||||||
});
|
});
|
||||||
var hasThumb = thumbNum >= 0;
|
var hasThumb = thumbNum >= 0;
|
||||||
var qualityIndex = 0;
|
var qualityIndex = 0; // Show the thumb container if we're not scrubbing
|
||||||
this.toggleThumbContainer(hasThumb); // No matching thumb found
|
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
} // No matching thumb found
|
||||||
|
|
||||||
|
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
return;
|
return;
|
||||||
|
2
dist/plyr.polyfilled.min.js
vendored
2
dist/plyr.polyfilled.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.polyfilled.min.js.map
vendored
2
dist/plyr.polyfilled.min.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.polyfilled.min.mjs
vendored
2
dist/plyr.polyfilled.min.mjs
vendored
File diff suppressed because one or more lines are too long
2
dist/plyr.polyfilled.min.mjs.map
vendored
2
dist/plyr.polyfilled.min.mjs.map
vendored
File diff suppressed because one or more lines are too long
11
dist/plyr.polyfilled.mjs
vendored
11
dist/plyr.polyfilled.mjs
vendored
@ -6903,7 +6903,7 @@ var defaults$1 = {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
// Quality default
|
// Quality default
|
||||||
@ -10615,7 +10615,6 @@ function () {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
} // Find the desired thumbnail index
|
} // Find the desired thumbnail index
|
||||||
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
// TODO: Handle a video longer than the thumbs where thumbNum is null
|
||||||
@ -10625,8 +10624,12 @@ function () {
|
|||||||
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
return _this6.seekTime >= frame.startTime && _this6.seekTime <= frame.endTime;
|
||||||
});
|
});
|
||||||
var hasThumb = thumbNum >= 0;
|
var hasThumb = thumbNum >= 0;
|
||||||
var qualityIndex = 0;
|
var qualityIndex = 0; // Show the thumb container if we're not scrubbing
|
||||||
this.toggleThumbContainer(hasThumb); // No matching thumb found
|
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
} // No matching thumb found
|
||||||
|
|
||||||
|
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "plyr",
|
"name": "plyr",
|
||||||
"version": "3.5.1",
|
"version": "3.5.2",
|
||||||
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
|
"description": "A simple, accessible and customizable HTML5, YouTube and Vimeo media player",
|
||||||
"homepage": "https://plyr.io",
|
"homepage": "https://plyr.io",
|
||||||
"author": "Sam Potts <sam@potts.es>",
|
"author": "Sam Potts <sam@potts.es>",
|
||||||
@ -72,10 +72,10 @@
|
|||||||
"remark-cli": "^6.0.1",
|
"remark-cli": "^6.0.1",
|
||||||
"remark-validate-links": "^8.0.0",
|
"remark-validate-links": "^8.0.0",
|
||||||
"rollup-plugin-babel": "^4.3.2",
|
"rollup-plugin-babel": "^4.3.2",
|
||||||
"rollup-plugin-commonjs": "^9.2.0",
|
"rollup-plugin-commonjs": "^9.2.1",
|
||||||
"rollup-plugin-node-resolve": "^4.0.1",
|
"rollup-plugin-node-resolve": "^4.0.1",
|
||||||
"stylelint": "^9.10.1",
|
"stylelint": "^9.10.1",
|
||||||
"stylelint-config-prettier": "^4.0.0",
|
"stylelint-config-prettier": "^5.0.0",
|
||||||
"stylelint-config-recommended": "^2.1.0",
|
"stylelint-config-recommended": "^2.1.0",
|
||||||
"stylelint-config-sass-guidelines": "^5.3.0",
|
"stylelint-config-sass-guidelines": "^5.3.0",
|
||||||
"stylelint-order": "^2.0.0",
|
"stylelint-order": "^2.0.0",
|
||||||
|
@ -5,23 +5,16 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
// Exclude from the editor
|
|
||||||
"files.exclude": {
|
|
||||||
"**/node_modules": true
|
|
||||||
},
|
|
||||||
// Exclude from search
|
|
||||||
"search.exclude": {
|
|
||||||
"dist/": true,
|
|
||||||
"demo/dist/": true
|
|
||||||
},
|
|
||||||
// Linting
|
// Linting
|
||||||
"stylelint.enable": true,
|
"stylelint.enable": true,
|
||||||
"css.validate": false,
|
"css.validate": false,
|
||||||
"scss.validate": false,
|
"scss.validate": false,
|
||||||
"javascript.validate.enable": false,
|
"javascript.validate.enable": false,
|
||||||
|
|
||||||
// Prettier
|
// Prettier
|
||||||
"prettier.eslintIntegration": true,
|
"prettier.eslintIntegration": true,
|
||||||
"prettier.stylelintIntegration": true,
|
"prettier.stylelintIntegration": true,
|
||||||
|
|
||||||
// Formatting
|
// Formatting
|
||||||
"editor.tabSize": 4,
|
"editor.tabSize": 4,
|
||||||
"editor.insertSpaces": true,
|
"editor.insertSpaces": true,
|
||||||
@ -29,6 +22,7 @@
|
|||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.organizeImports": true
|
"source.organizeImports": true
|
||||||
},
|
},
|
||||||
|
|
||||||
// Trim on save
|
// Trim on save
|
||||||
"files.trimTrailingWhitespace": true
|
"files.trimTrailingWhitespace": true
|
||||||
}
|
}
|
||||||
|
@ -123,13 +123,13 @@ See [initialising](#initialising) for more information on advanced setups.
|
|||||||
You can use our CDN (provided by [Fastly](https://www.fastly.com/)) for the JavaScript. There's 2 versions; one with and one without [polyfills](#polyfills). My recommendation would be to manage polyfills seperately as part of your application but to make life easier you can use the polyfilled build.
|
You can use our CDN (provided by [Fastly](https://www.fastly.com/)) for the JavaScript. There's 2 versions; one with and one without [polyfills](#polyfills). My recommendation would be to manage polyfills seperately as part of your application but to make life easier you can use the polyfilled build.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.plyr.io/3.5.1/plyr.js"></script>
|
<script src="https://cdn.plyr.io/3.5.2/plyr.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
...or...
|
...or...
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.plyr.io/3.5.1/plyr.polyfilled.js"></script>
|
<script src="https://cdn.plyr.io/3.5.2/plyr.polyfilled.js"></script>
|
||||||
```
|
```
|
||||||
|
|
||||||
## CSS
|
## CSS
|
||||||
@ -143,13 +143,13 @@ Include the `plyr.css` stylsheet into your `<head>`
|
|||||||
If you want to use our CDN (provided by [Fastly](https://www.fastly.com/)) for the default CSS, you can use the following:
|
If you want to use our CDN (provided by [Fastly](https://www.fastly.com/)) for the default CSS, you can use the following:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<link rel="stylesheet" href="https://cdn.plyr.io/3.5.1/plyr.css" />
|
<link rel="stylesheet" href="https://cdn.plyr.io/3.5.2/plyr.css" />
|
||||||
```
|
```
|
||||||
|
|
||||||
## SVG Sprite
|
## SVG Sprite
|
||||||
|
|
||||||
The SVG sprite is loaded automatically from our CDN (provided by [Fastly](https://www.fastly.com/)). To change this, see the [options](#options) below. For
|
The SVG sprite is loaded automatically from our CDN (provided by [Fastly](https://www.fastly.com/)). To change this, see the [options](#options) below. For
|
||||||
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.5.1/plyr.svg`.
|
reference, the CDN hosted SVG sprite can be found at `https://cdn.plyr.io/3.5.2/plyr.svg`.
|
||||||
|
|
||||||
# Ads
|
# Ads
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ const defaults = {
|
|||||||
// Sprite (for icons)
|
// Sprite (for icons)
|
||||||
loadSprite: true,
|
loadSprite: true,
|
||||||
iconPrefix: 'plyr',
|
iconPrefix: 'plyr',
|
||||||
iconUrl: 'https://cdn.plyr.io/3.5.1/plyr.svg',
|
iconUrl: 'https://cdn.plyr.io/3.5.2/plyr.svg',
|
||||||
|
|
||||||
// Blank video (used to prevent errors on source change)
|
// Blank video (used to prevent errors on source change)
|
||||||
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
blankVideo: 'https://cdn.plyr.io/static/blank.mp4',
|
||||||
|
@ -220,6 +220,7 @@ class PreviewThumbnails {
|
|||||||
// Only act on left mouse button (0), or touch device (event.button is false)
|
// Only act on left mouse button (0), or touch device (event.button is false)
|
||||||
if (event.button === false || event.button === 0) {
|
if (event.button === false || event.button === 0) {
|
||||||
this.mouseDown = true;
|
this.mouseDown = true;
|
||||||
|
|
||||||
// Wait until media has a duration
|
// Wait until media has a duration
|
||||||
if (this.player.media.duration) {
|
if (this.player.media.duration) {
|
||||||
this.toggleScrubbingContainer(true);
|
this.toggleScrubbingContainer(true);
|
||||||
@ -307,7 +308,6 @@ class PreviewThumbnails {
|
|||||||
if (this.mouseDown) {
|
if (this.mouseDown) {
|
||||||
this.setScrubbingContainerSize();
|
this.setScrubbingContainerSize();
|
||||||
} else {
|
} else {
|
||||||
this.toggleThumbContainer(true);
|
|
||||||
this.setThumbContainerSizeAndPos();
|
this.setThumbContainerSizeAndPos();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -319,7 +319,10 @@ class PreviewThumbnails {
|
|||||||
const hasThumb = thumbNum >= 0;
|
const hasThumb = thumbNum >= 0;
|
||||||
let qualityIndex = 0;
|
let qualityIndex = 0;
|
||||||
|
|
||||||
this.toggleThumbContainer(hasThumb);
|
// Show the thumb container if we're not scrubbing
|
||||||
|
if (!this.mouseDown) {
|
||||||
|
this.toggleThumbContainer(hasThumb);
|
||||||
|
}
|
||||||
|
|
||||||
// No matching thumb found
|
// No matching thumb found
|
||||||
if (!hasThumb) {
|
if (!hasThumb) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Plyr
|
// Plyr
|
||||||
// plyr.js v3.5.1
|
// plyr.js v3.5.2
|
||||||
// https://github.com/sampotts/plyr
|
// https://github.com/sampotts/plyr
|
||||||
// License: The MIT License (MIT)
|
// License: The MIT License (MIT)
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
// Plyr Polyfilled Build
|
// Plyr Polyfilled Build
|
||||||
// plyr.js v3.5.1
|
// plyr.js v3.5.2
|
||||||
// https://github.com/sampotts/plyr
|
// https://github.com/sampotts/plyr
|
||||||
// License: The MIT License (MIT)
|
// License: The MIT License (MIT)
|
||||||
// ==========================================================================
|
// ==========================================================================
|
||||||
|
50
yarn.lock
50
yarn.lock
@ -1312,13 +1312,13 @@ browserslist@^2.11.3:
|
|||||||
electron-to-chromium "^1.3.30"
|
electron-to-chromium "^1.3.30"
|
||||||
|
|
||||||
browserslist@^4.3.4, browserslist@^4.4.1:
|
browserslist@^4.3.4, browserslist@^4.4.1:
|
||||||
version "4.4.1"
|
version "4.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062"
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.2.tgz#6ea8a74d6464bb0bd549105f659b41197d8f0ba2"
|
||||||
integrity sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A==
|
integrity sha512-ISS/AIAiHERJ3d45Fz0AVYKkgcy+F/eJHzKEvv1j0wwKGKD9T3BrwKr/5g45L+Y4XIK5PlTqefHciRFcfE1Jxg==
|
||||||
dependencies:
|
dependencies:
|
||||||
caniuse-lite "^1.0.30000929"
|
caniuse-lite "^1.0.30000939"
|
||||||
electron-to-chromium "^1.3.103"
|
electron-to-chromium "^1.3.113"
|
||||||
node-releases "^1.1.3"
|
node-releases "^1.1.8"
|
||||||
|
|
||||||
buffer-alloc-unsafe@^1.1.0:
|
buffer-alloc-unsafe@^1.1.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
@ -1489,10 +1489,10 @@ camelcase@^5.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42"
|
||||||
integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
|
integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805, caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000938:
|
caniuse-lite@^1.0.30000792, caniuse-lite@^1.0.30000805, caniuse-lite@^1.0.30000938, caniuse-lite@^1.0.30000939:
|
||||||
version "1.0.30000938"
|
version "1.0.30000939"
|
||||||
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000938.tgz#b64bf1427438df40183fce910fe24e34feda7a3f"
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000939.tgz#b9ab7ac9e861bf78840b80c5dfbc471a5cd7e679"
|
||||||
integrity sha512-ekW8NQ3/FvokviDxhdKLZZAx7PptXNwxKgXtnR5y+PR3hckwuP3yJ1Ir+4/c97dsHNqtAyfKUGdw8P4EYzBNgw==
|
integrity sha512-oXB23ImDJOgQpGjRv1tCtzAvJr4/OvrHi5SO2vUgB0g0xpdZZoA/BxfImiWfdwoYdUTtQrPsXsvYU/dmCSM8gg==
|
||||||
|
|
||||||
capture-stack-trace@^1.0.0:
|
capture-stack-trace@^1.0.0:
|
||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
@ -2433,7 +2433,7 @@ editions@^1.3.3:
|
|||||||
resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b"
|
resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b"
|
||||||
integrity sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==
|
integrity sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==
|
||||||
|
|
||||||
electron-to-chromium@^1.3.103, electron-to-chromium@^1.3.30:
|
electron-to-chromium@^1.3.113, electron-to-chromium@^1.3.30:
|
||||||
version "1.3.113"
|
version "1.3.113"
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz#b1ccf619df7295aea17bc6951dc689632629e4a9"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz#b1ccf619df7295aea17bc6951dc689632629e4a9"
|
||||||
integrity sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g==
|
integrity sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g==
|
||||||
@ -5697,7 +5697,7 @@ node-pre-gyp@^0.10.0:
|
|||||||
semver "^5.3.0"
|
semver "^5.3.0"
|
||||||
tar "^4"
|
tar "^4"
|
||||||
|
|
||||||
node-releases@^1.1.3:
|
node-releases@^1.1.8:
|
||||||
version "1.1.8"
|
version "1.1.8"
|
||||||
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.8.tgz#32a63fff63c5e51b7e0f540ac95947d220fc6862"
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.8.tgz#32a63fff63c5e51b7e0f540ac95947d220fc6862"
|
||||||
integrity sha512-gQm+K9mGCiT/NXHy+V/ZZS1N/LOaGGqRAAJJs3X9Ah1g+CIbRcBgNyoNYQ+SEtcyAtB9KqDruu+fF7nWjsqRaA==
|
integrity sha512-gQm+K9mGCiT/NXHy+V/ZZS1N/LOaGGqRAAJJs3X9Ah1g+CIbRcBgNyoNYQ+SEtcyAtB9KqDruu+fF7nWjsqRaA==
|
||||||
@ -6159,9 +6159,9 @@ parent-module@^1.0.0:
|
|||||||
callsites "^3.0.0"
|
callsites "^3.0.0"
|
||||||
|
|
||||||
parse-entities@^1.0.2, parse-entities@^1.1.0:
|
parse-entities@^1.0.2, parse-entities@^1.1.0:
|
||||||
version "1.2.0"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.0.tgz#9deac087661b2e36814153cb78d7e54a4c5fd6f4"
|
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.1.tgz#2c761ced065ba7dc68148580b5a225e4918cdd69"
|
||||||
integrity sha512-XXtDdOPLSB0sHecbEapQi6/58U/ODj/KWfIXmmMCJF/eRn8laX6LZbOyioMoETOOJoWRW8/qTSl5VQkUIfKM5g==
|
integrity sha512-NBWYLQm1KSoDKk7GAHyioLTvCZ5QjdH/ASBBQTD3iLiAWJXS5bg1jEWI8nIJ+vgVvsceBVBcDGRWSo0KVQBvvg==
|
||||||
dependencies:
|
dependencies:
|
||||||
character-entities "^1.0.0"
|
character-entities "^1.0.0"
|
||||||
character-entities-legacy "^1.0.0"
|
character-entities-legacy "^1.0.0"
|
||||||
@ -7319,7 +7319,7 @@ resolve-url@^0.2.1:
|
|||||||
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
||||||
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
||||||
|
|
||||||
resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.8.1, resolve@^1.9.0:
|
resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.9.0:
|
||||||
version "1.10.0"
|
version "1.10.0"
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
|
||||||
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
|
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
|
||||||
@ -7361,14 +7361,14 @@ rollup-plugin-babel@^4.3.2:
|
|||||||
"@babel/helper-module-imports" "^7.0.0"
|
"@babel/helper-module-imports" "^7.0.0"
|
||||||
rollup-pluginutils "^2.3.0"
|
rollup-pluginutils "^2.3.0"
|
||||||
|
|
||||||
rollup-plugin-commonjs@^9.2.0:
|
rollup-plugin-commonjs@^9.2.1:
|
||||||
version "9.2.0"
|
version "9.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.2.0.tgz#4604e25069e0c78a09e08faa95dc32dec27f7c89"
|
resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-9.2.1.tgz#bb151ca8fa23600c7a03e25f9f0a45b1ee922dac"
|
||||||
integrity sha512-0RM5U4Vd6iHjL6rLvr3lKBwnPsaVml+qxOGaaNUWN1lSq6S33KhITOfHmvxV3z2vy9Mk4t0g4rNlVaJJsNQPWA==
|
integrity sha512-X0A/Cp/t+zbONFinBhiTZrfuUaVwRIp4xsbKq/2ohA2CDULa/7ONSJTelqxon+Vds2R2t2qJTqJQucKUC8GKkw==
|
||||||
dependencies:
|
dependencies:
|
||||||
estree-walker "^0.5.2"
|
estree-walker "^0.5.2"
|
||||||
magic-string "^0.25.1"
|
magic-string "^0.25.1"
|
||||||
resolve "^1.8.1"
|
resolve "^1.10.0"
|
||||||
rollup-pluginutils "^2.3.3"
|
rollup-pluginutils "^2.3.3"
|
||||||
|
|
||||||
rollup-plugin-node-resolve@^4.0.1:
|
rollup-plugin-node-resolve@^4.0.1:
|
||||||
@ -7948,10 +7948,10 @@ style-search@^0.1.0:
|
|||||||
resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
|
resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
|
||||||
integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=
|
integrity sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=
|
||||||
|
|
||||||
stylelint-config-prettier@^4.0.0:
|
stylelint-config-prettier@^5.0.0:
|
||||||
version "4.0.0"
|
version "5.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/stylelint-config-prettier/-/stylelint-config-prettier-4.0.0.tgz#8c712977be13bd25191ab8b986b5c07a3342a5dc"
|
resolved "https://registry.yarnpkg.com/stylelint-config-prettier/-/stylelint-config-prettier-5.0.0.tgz#e7339da065dac8129ca821e234abddcef950b7f8"
|
||||||
integrity sha512-cwh3QbBC2+3zBeMvuxFjT8XsbSdyoyELOY9BZqMuvphUKEQ+srkPWoN60FlvRwLB014TOke4Y12KvTtfKnaHhg==
|
integrity sha512-ksd78d8Kfq5CCDaT7C+/5O8RyDnRMkLNsqcpqXtdDkHIkIN9lNTdFeYo6clMFw0MmtibO8Mb7/AbEcZysAKRpw==
|
||||||
|
|
||||||
stylelint-config-recommended@^2.1.0:
|
stylelint-config-recommended@^2.1.0:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user