1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Daniel Neto 2024-12-06 16:37:07 -03:00
parent a8e3c8c7a3
commit 43af632a28
2986 changed files with 50716 additions and 116930 deletions

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License
@ -439,9 +439,11 @@ function applyStack(stack, value, dsIndex, options = {}) {
if (value === null) {
return;
}
let found = false;
for(i = 0, ilen = keys.length; i < ilen; ++i){
datasetIndex = +keys[i];
if (datasetIndex === dsIndex) {
found = true;
if (options.all) {
continue;
}
@ -452,6 +454,9 @@ function applyStack(stack, value, dsIndex, options = {}) {
value += otherValue;
}
}
if (!found && !options.all) {
return 0;
}
return value;
}
function convertObjectDataToArray(data, meta) {
@ -5519,7 +5524,7 @@ function needContext(proxy, names) {
return false;
}
var version = "4.4.5";
var version = "4.4.7";
const KNOWN_POSITIONS = [
'top',

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License
@ -437,9 +437,11 @@ function applyStack(stack, value, dsIndex, options = {}) {
if (value === null) {
return;
}
let found = false;
for(i = 0, ilen = keys.length; i < ilen; ++i){
datasetIndex = +keys[i];
if (datasetIndex === dsIndex) {
found = true;
if (options.all) {
continue;
}
@ -450,6 +452,9 @@ function applyStack(stack, value, dsIndex, options = {}) {
value += otherValue;
}
}
if (!found && !options.all) {
return 0;
}
return value;
}
function convertObjectDataToArray(data, meta) {
@ -5517,7 +5522,7 @@ function needContext(proxy, names) {
return false;
}
var version = "4.4.5";
var version = "4.4.7";
const KNOWN_POSITIONS = [
'top',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License
@ -25,7 +25,7 @@ var color$1 = require('@kurkle/color');
* @param value - The value to test.
* @since 2.7.0
*/ function isNullOrUndef(value) {
return value === null || typeof value === 'undefined';
return value === null || value === undefined;
}
/**
* Returns true if `value` is an array (including typed arrays), else returns false.

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License
@ -23,7 +23,7 @@ import { Color } from '@kurkle/color';
* @param value - The value to test.
* @since 2.7.0
*/ function isNullOrUndef(value) {
return value === null || typeof value === 'undefined';
return value === null || value === undefined;
}
/**
* Returns true if `value` is an array (including typed arrays), else returns false.

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License

View file

@ -1,5 +1,5 @@
/*!
* Chart.js v4.4.5
* Chart.js v4.4.7
* https://www.chartjs.org
* (c) 2024 Chart.js Contributors
* Released under the MIT License

View file

@ -17,7 +17,7 @@ export {default as ArcElement, ArcProps} from '../elements/element.arc.js';
export {default as PointElement, PointProps} from '../elements/element.point.js';
export {Animation, Animations, Animator, AnimationEvent} from './animation.js';
export {Color} from './color.js';
export {ChartArea, Point} from './geometric.js';
export {ChartArea, Point, TRBL} from './geometric.js';
export {LayoutItem, LayoutPosition} from './layout.js';
export interface ScriptableContext<TType extends ChartType> {
@ -281,7 +281,7 @@ export interface DoughnutControllerDatasetOptions
spacing: number;
}
export interface DoughnutAnimationOptions {
export interface DoughnutAnimationOptions extends AnimationSpec<'doughnut'> {
/**
* If true, the chart will animate in with a rotation animation. This property is in the options.animation object.
* @default true

2
node_modules/chart.js/package.json generated vendored
View file

@ -2,7 +2,7 @@
"name": "chart.js",
"homepage": "https://www.chartjs.org",
"description": "Simple HTML5 charts using the canvas element.",
"version": "4.4.5",
"version": "4.4.7",
"license": "MIT",
"type": "module",
"sideEffects": [