mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
This commit is contained in:
parent
a8e3c8c7a3
commit
43af632a28
2986 changed files with 50716 additions and 116930 deletions
9
node_modules/chart.js/dist/chart.cjs
generated
vendored
9
node_modules/chart.js/dist/chart.cjs
generated
vendored
|
@ -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',
|
||||
|
|
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
9
node_modules/chart.js/dist/chart.js
generated
vendored
9
node_modules/chart.js/dist/chart.js
generated
vendored
|
@ -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',
|
||||
|
|
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
4
node_modules/chart.js/dist/chart.umd.js
generated
vendored
4
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
4
node_modules/chart.js/dist/chunks/helpers.segment.cjs
generated
vendored
4
node_modules/chart.js/dist/chunks/helpers.segment.cjs
generated
vendored
|
@ -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.
|
||||
|
|
2
node_modules/chart.js/dist/chunks/helpers.segment.cjs.map
generated
vendored
2
node_modules/chart.js/dist/chunks/helpers.segment.cjs.map
generated
vendored
File diff suppressed because one or more lines are too long
4
node_modules/chart.js/dist/chunks/helpers.segment.js
generated
vendored
4
node_modules/chart.js/dist/chunks/helpers.segment.js
generated
vendored
|
@ -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.
|
||||
|
|
2
node_modules/chart.js/dist/chunks/helpers.segment.js.map
generated
vendored
2
node_modules/chart.js/dist/chunks/helpers.segment.js.map
generated
vendored
File diff suppressed because one or more lines are too long
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.5
|
||||
* Chart.js v4.4.7
|
||||
* 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.5
|
||||
* Chart.js v4.4.7
|
||||
* https://www.chartjs.org
|
||||
* (c) 2024 Chart.js Contributors
|
||||
* Released under the MIT License
|
||||
|
|
4
node_modules/chart.js/dist/types/index.d.ts
generated
vendored
4
node_modules/chart.js/dist/types/index.d.ts
generated
vendored
|
@ -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
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.5",
|
||||
"version": "4.4.7",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"sideEffects": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue