mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
Update node modules
This commit is contained in:
parent
d429e6f7d8
commit
c05a371397
1993 changed files with 9729 additions and 44041 deletions
13
node_modules/chart.js/dist/chart.cjs
generated
vendored
13
node_modules/chart.js/dist/chart.cjs
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
@ -695,6 +695,7 @@ class DatasetController {
|
|||
this._resyncElements(resetNewElements);
|
||||
if (stackChanged || oldStacked !== meta._stacked) {
|
||||
updateStacks(this, meta._parsed);
|
||||
meta._stacked = isStacked(meta.vScale, meta);
|
||||
}
|
||||
}
|
||||
configure() {
|
||||
|
@ -5518,7 +5519,7 @@ function needContext(proxy, names) {
|
|||
return false;
|
||||
}
|
||||
|
||||
var version = "4.4.4";
|
||||
var version = "4.4.5";
|
||||
|
||||
const KNOWN_POSITIONS = [
|
||||
'top',
|
||||
|
@ -7357,6 +7358,9 @@ function containsColorsDefinitions(descriptors) {
|
|||
function containsColorsDefinition(descriptor) {
|
||||
return descriptor && (descriptor.borderColor || descriptor.backgroundColor);
|
||||
}
|
||||
function containsDefaultColorsDefenitions() {
|
||||
return helpers_segment.defaults.borderColor !== 'rgba(0,0,0,0.1)' || helpers_segment.defaults.backgroundColor !== 'rgba(0,0,0,0.1)';
|
||||
}
|
||||
var plugin_colors = {
|
||||
id: 'colors',
|
||||
defaults: {
|
||||
|
@ -7369,7 +7373,8 @@ var plugin_colors = {
|
|||
}
|
||||
const { data: { datasets } , options: chartOptions } = chart.config;
|
||||
const { elements } = chartOptions;
|
||||
if (!options.forceOverride && (containsColorsDefinitions(datasets) || containsColorsDefinition(chartOptions) || elements && containsColorsDefinitions(elements))) {
|
||||
const containsColorDefenition = containsColorsDefinitions(datasets) || containsColorsDefinition(chartOptions) || elements && containsColorsDefinitions(elements) || containsDefaultColorsDefenitions();
|
||||
if (!options.forceOverride && containsColorDefenition) {
|
||||
return;
|
||||
}
|
||||
const colorizer = getColorizer(chart);
|
||||
|
@ -10667,7 +10672,7 @@ function drawRadiusLine(scale, gridLineOpts, radius, labelCount, borderOpts) {
|
|||
ctx.save();
|
||||
ctx.strokeStyle = color;
|
||||
ctx.lineWidth = lineWidth;
|
||||
ctx.setLineDash(borderOpts.dash);
|
||||
ctx.setLineDash(borderOpts.dash || []);
|
||||
ctx.lineDashOffset = borderOpts.dashOffset;
|
||||
ctx.beginPath();
|
||||
pathRadiusLine(scale, radius, circular, labelCount);
|
||||
|
|
2
node_modules/chart.js/dist/chart.cjs.map
generated
vendored
2
node_modules/chart.js/dist/chart.cjs.map
generated
vendored
File diff suppressed because one or more lines are too long
13
node_modules/chart.js/dist/chart.js
generated
vendored
13
node_modules/chart.js/dist/chart.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
@ -693,6 +693,7 @@ class DatasetController {
|
|||
this._resyncElements(resetNewElements);
|
||||
if (stackChanged || oldStacked !== meta._stacked) {
|
||||
updateStacks(this, meta._parsed);
|
||||
meta._stacked = isStacked(meta.vScale, meta);
|
||||
}
|
||||
}
|
||||
configure() {
|
||||
|
@ -5516,7 +5517,7 @@ function needContext(proxy, names) {
|
|||
return false;
|
||||
}
|
||||
|
||||
var version = "4.4.4";
|
||||
var version = "4.4.5";
|
||||
|
||||
const KNOWN_POSITIONS = [
|
||||
'top',
|
||||
|
@ -7355,6 +7356,9 @@ function containsColorsDefinitions(descriptors) {
|
|||
function containsColorsDefinition(descriptor) {
|
||||
return descriptor && (descriptor.borderColor || descriptor.backgroundColor);
|
||||
}
|
||||
function containsDefaultColorsDefenitions() {
|
||||
return defaults.borderColor !== 'rgba(0,0,0,0.1)' || defaults.backgroundColor !== 'rgba(0,0,0,0.1)';
|
||||
}
|
||||
var plugin_colors = {
|
||||
id: 'colors',
|
||||
defaults: {
|
||||
|
@ -7367,7 +7371,8 @@ var plugin_colors = {
|
|||
}
|
||||
const { data: { datasets } , options: chartOptions } = chart.config;
|
||||
const { elements } = chartOptions;
|
||||
if (!options.forceOverride && (containsColorsDefinitions(datasets) || containsColorsDefinition(chartOptions) || elements && containsColorsDefinitions(elements))) {
|
||||
const containsColorDefenition = containsColorsDefinitions(datasets) || containsColorsDefinition(chartOptions) || elements && containsColorsDefinitions(elements) || containsDefaultColorsDefenitions();
|
||||
if (!options.forceOverride && containsColorDefenition) {
|
||||
return;
|
||||
}
|
||||
const colorizer = getColorizer(chart);
|
||||
|
@ -10665,7 +10670,7 @@ function drawRadiusLine(scale, gridLineOpts, radius, labelCount, borderOpts) {
|
|||
ctx.save();
|
||||
ctx.strokeStyle = color;
|
||||
ctx.lineWidth = lineWidth;
|
||||
ctx.setLineDash(borderOpts.dash);
|
||||
ctx.setLineDash(borderOpts.dash || []);
|
||||
ctx.lineDashOffset = borderOpts.dashOffset;
|
||||
ctx.beginPath();
|
||||
pathRadiusLine(scale, radius, circular, labelCount);
|
||||
|
|
2
node_modules/chart.js/dist/chart.js.map
generated
vendored
2
node_modules/chart.js/dist/chart.js.map
generated
vendored
File diff suppressed because one or more lines are too long
6
node_modules/chart.js/dist/chart.umd.js
generated
vendored
6
node_modules/chart.js/dist/chart.umd.js
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/chart.js/dist/chart.umd.js.map
generated
vendored
2
node_modules/chart.js/dist/chart.umd.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/chart.js/dist/chunks/helpers.segment.cjs
generated
vendored
2
node_modules/chart.js/dist/chunks/helpers.segment.cjs
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
|
2
node_modules/chart.js/dist/chunks/helpers.segment.js
generated
vendored
2
node_modules/chart.js/dist/chunks/helpers.segment.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
|
2
node_modules/chart.js/dist/helpers.cjs
generated
vendored
2
node_modules/chart.js/dist/helpers.cjs
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
|
2
node_modules/chart.js/dist/helpers.js
generated
vendored
2
node_modules/chart.js/dist/helpers.js
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* Chart.js v4.4.4
|
||||
* Chart.js v4.4.5
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
|
14
node_modules/chart.js/dist/types/index.d.ts
generated
vendored
14
node_modules/chart.js/dist/types/index.d.ts
generated
vendored
|
@ -1611,12 +1611,22 @@ export interface CoreChartOptions<TType extends ChartType> extends ParsingOption
|
|||
* base background color
|
||||
* @see Defaults.backgroundColor
|
||||
*/
|
||||
backgroundColor: Scriptable<Color, ScriptableContext<TType>>;
|
||||
backgroundColor: ScriptableAndArray<Color, ScriptableContext<TType>>;
|
||||
/**
|
||||
* base hover background color
|
||||
* @see Defaults.hoverBackgroundColor
|
||||
*/
|
||||
hoverBackgroundColor: ScriptableAndArray<Color, ScriptableContext<TType>>;
|
||||
/**
|
||||
* base border color
|
||||
* @see Defaults.borderColor
|
||||
*/
|
||||
borderColor: Scriptable<Color, ScriptableContext<TType>>;
|
||||
borderColor: ScriptableAndArray<Color, ScriptableContext<TType>>;
|
||||
/**
|
||||
* base hover border color
|
||||
* @see Defaults.hoverBorderColor
|
||||
*/
|
||||
hoverBorderColor: ScriptableAndArray<Color, ScriptableContext<TType>>;
|
||||
/**
|
||||
* base font
|
||||
* @see Defaults.font
|
||||
|
|
2
node_modules/chart.js/package.json
generated
vendored
2
node_modules/chart.js/package.json
generated
vendored
|
@ -2,7 +2,7 @@
|
|||
"name": "chart.js",
|
||||
"homepage": "https://www.chartjs.org",
|
||||
"description": "Simple HTML5 charts using the canvas element.",
|
||||
"version": "4.4.4",
|
||||
"version": "4.4.5",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"sideEffects": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue