π€ Update core dependencies (#1612)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
This commit is contained in:
Π ΠΎΠ΄ΠΈΡΠ΅Π»Ρ
e8515af6f6
ΠΠΎΠΌΠΌΠΈΡ
9a39f1049c
|
@ -5486,10 +5486,14 @@ interface CanvasTextDrawingStyles {
|
|||
font: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
||||
fontKerning: CanvasFontKerning;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
||||
letterSpacing: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
||||
textAlign: CanvasTextAlign;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
||||
textBaseline: CanvasTextBaseline;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
||||
wordSpacing: string;
|
||||
}
|
||||
|
||||
interface CanvasTransform {
|
||||
|
@ -16378,6 +16382,8 @@ interface NotificationEventMap {
|
|||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
||||
*/
|
||||
interface Notification extends EventTarget {
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
||||
readonly badge: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
||||
readonly body: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|
||||
|
|
|
@ -1528,10 +1528,14 @@ interface CanvasTextDrawingStyles {
|
|||
font: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
||||
fontKerning: CanvasFontKerning;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
||||
letterSpacing: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
||||
textAlign: CanvasTextAlign;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
||||
textBaseline: CanvasTextBaseline;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
||||
wordSpacing: string;
|
||||
}
|
||||
|
||||
interface CanvasTransform {
|
||||
|
@ -3852,6 +3856,8 @@ interface NotificationEventMap {
|
|||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
||||
*/
|
||||
interface Notification extends EventTarget {
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
||||
readonly badge: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
||||
readonly body: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|
||||
|
|
|
@ -1500,10 +1500,14 @@ interface CanvasTextDrawingStyles {
|
|||
font: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
||||
fontKerning: CanvasFontKerning;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
||||
letterSpacing: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
||||
textAlign: CanvasTextAlign;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
||||
textBaseline: CanvasTextBaseline;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
||||
wordSpacing: string;
|
||||
}
|
||||
|
||||
interface CanvasTransform {
|
||||
|
@ -3741,6 +3745,8 @@ interface NotificationEventMap {
|
|||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
||||
*/
|
||||
interface Notification extends EventTarget {
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
||||
readonly badge: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
||||
readonly body: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|
||||
|
|
|
@ -1664,10 +1664,14 @@ interface CanvasTextDrawingStyles {
|
|||
font: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
||||
fontKerning: CanvasFontKerning;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
||||
letterSpacing: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
||||
textAlign: CanvasTextAlign;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
||||
textBaseline: CanvasTextBaseline;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
||||
wordSpacing: string;
|
||||
}
|
||||
|
||||
interface CanvasTransform {
|
||||
|
@ -4107,6 +4111,8 @@ interface NotificationEventMap {
|
|||
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
||||
*/
|
||||
interface Notification extends EventTarget {
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
||||
readonly badge: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
||||
readonly body: string;
|
||||
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|
||||
|
|
|
@ -223,9 +223,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"node_modules/@mdn/browser-compat-data": {
|
||||
"version": "5.3.9",
|
||||
"resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.3.9.tgz",
|
||||
"integrity": "sha512-J7lLtHMEizYbI5T0Xlqpg1JXCz9JegZBeb7y3v/Nm8ScRw8TL9v3n+I3g1TFm+bLrRtwA33FKwX5znDwz+WzAQ==",
|
||||
"version": "5.3.10",
|
||||
"resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.3.10.tgz",
|
||||
"integrity": "sha512-Eh5hbchkqiA/gn3m6Z2k2tIQIcNocT+NnZkbrJTT3aGLRnNYAg+VVT2k7+oHTKDYr+2sJZewrdNMFXwueypujg==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@nodelib/fs.scandir": {
|
||||
|
|
ΠΠ°Π³ΡΡΠ·ΠΊΠ°β¦
Π‘ΡΡΠ»ΠΊΠ° Π² Π½ΠΎΠ²ΠΎΠΉ Π·Π°Π΄Π°ΡΠ΅