未验证 提交 0878d303 编写于 作者: S sushuang 提交者: GitHub

Merge pull request #16414 from apache/release-dev

release 5.3.0
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
......@@ -24,6 +24,33 @@
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.dataTool = {}, global.echarts));
}(this, (function (exports, echarts) { 'use strict';
var BUILTIN_OBJECT = reduce([
'Function',
'RegExp',
'Date',
'Error',
'CanvasGradient',
'CanvasPattern',
'Image',
'Canvas'
], function (obj, val) {
obj['[object ' + val + ']'] = true;
return obj;
}, {});
var TYPED_ARRAY = reduce([
'Int8',
'Uint8',
'Uint8Clamped',
'Int16',
'Uint16',
'Int32',
'Uint32',
'Float32',
'Float64'
], function (obj, val) {
obj['[object ' + val + 'Array]'] = true;
return obj;
}, {});
var arrayProto = Array.prototype;
var nativeSlice = arrayProto.slice;
var nativeMap = arrayProto.map;
......@@ -47,6 +74,15 @@
return result;
}
}
function reduce(arr, cb, memo, context) {
if (!(arr && cb)) {
return;
}
for (var i = 0, len = arr.length; i < len; i++) {
memo = cb.call(context, memo, arr[i], i, arr);
}
return memo;
}
function bindPolyfill(func, context) {
var args = [];
for (var _i = 2; _i < arguments.length; _i++) {
......
此差异已折叠。
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* AUTO-GENERATED FILE. DO NOT MODIFY.
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['exports'], factory);
} else if (
typeof exports === 'object' &&
typeof exports.nodeName !== 'string'
) {
// CommonJS
factory(exports);
} else {
// Browser globals
factory({});
}
})(this, function(exports) {
/**
* Language: Italian.
*/
var localeObj = {
time: {
month: [
'Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno',
'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'
],
monthAbbr: [
'Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu',
'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'
],
dayOfWeek: [
'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'
],
dayOfWeekAbbr: [
'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'
]
},
legend: {
selector: {
all: 'Tutti',
inverse: 'Inverso'
}
},
toolbox: {
brush: {
title: {
rect: 'Selezione rettangolare',
polygon: 'Selezione lazo',
lineX: 'Selezione orizzontale',
lineY: 'Selezione verticale',
keep: 'Mantieni selezione',
clear: 'Rimuovi selezione'
}
},
dataView: {
title: 'Visualizzazione dati',
lang: ['Visualizzazione dati', 'Chiudi', 'Aggiorna']
},
dataZoom: {
title: {
zoom: 'Zoom',
back: 'Resetta zoom'
}
},
magicType: {
title: {
line: 'Passa al grafico a linee',
bar: 'Passa al grafico a barre',
stack: 'Pila',
tiled: 'Piastrella'
}
},
restore: {
title: 'Ripristina'
},
saveAsImage: {
title: 'Salva come immagine',
lang: ['Tasto destro per salvare l\'immagine']
}
},
series: {
typeNames: {
pie: 'Grafico a torta',
bar: 'Grafico a barre',
line: 'Grafico a linee',
scatter: 'Grafico a dispersione',
effectScatter: 'Ripple scatter plot',
radar: 'Grafico radar',
tree: 'Albero',
treemap: 'Treemap',
boxplot: 'Diagramma a scatola e baffi',
candlestick: 'Candlestick',
k: 'K line chart',
heatmap: 'Mappa di calore',
map: 'Mappa',
parallel: 'Grafico a coordinate parallele',
lines: 'Grafico a linee',
graph: 'Diagramma delle relazioni',
sankey: 'Diagramma di Sankey',
funnel: 'Grafico a imbuto',
gauge: 'Gauge',
pictorialBar: 'Pictorial bar',
themeRiver: 'Theme River Map',
sunburst: 'Radiale'
}
},
aria: {
general: {
withTitle: 'Questo è un grafico su "{title}"',
withoutTitle: 'Questo è un grafico'
},
series: {
single: {
prefix: '',
withName: ' con il tipo {seriesType} denominato {seriesName}.',
withoutName: ' con il tipo {seriesType}.'
},
multiple: {
prefix: '. È composto da {seriesCount} serie.',
withName: ' La {seriesId} serie è un {seriesType} denominata {seriesName}.',
withoutName: ' la {seriesId} serie è un {seriesType}.',
separator: {
middle: '',
end: ''
}
}
},
data: {
allData: 'I dati sono come segue: ',
partialData: 'I primi {displayCnt} elementi sono: ',
withName: 'il dato per {name} è {value}',
withoutName: '{value}',
separator: {
middle: ', ',
end: '. '
}
}
}
};
for (var key in localeObj) {
if (localeObj.hasOwnProperty(key)) {
exports[key] = localeObj[key];
}
}
});
\ No newline at end of file
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* AUTO-GENERATED FILE. DO NOT MODIFY.
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['exports', 'echarts'], factory);
} else if (
typeof exports === 'object' &&
typeof exports.nodeName !== 'string'
) {
// CommonJS
factory(exports, require('echarts/lib/echarts'));
} else {
// Browser globals
factory({}, root.echarts);
}
})(this, function(exports, echarts) {
/**
* Language: Italian.
*/
var localeObj = {
time: {
month: [
'Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno',
'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'
],
monthAbbr: [
'Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu',
'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'
],
dayOfWeek: [
'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'
],
dayOfWeekAbbr: [
'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'
]
},
legend: {
selector: {
all: 'Tutti',
inverse: 'Inverso'
}
},
toolbox: {
brush: {
title: {
rect: 'Selezione rettangolare',
polygon: 'Selezione lazo',
lineX: 'Selezione orizzontale',
lineY: 'Selezione verticale',
keep: 'Mantieni selezione',
clear: 'Rimuovi selezione'
}
},
dataView: {
title: 'Visualizzazione dati',
lang: ['Visualizzazione dati', 'Chiudi', 'Aggiorna']
},
dataZoom: {
title: {
zoom: 'Zoom',
back: 'Resetta zoom'
}
},
magicType: {
title: {
line: 'Passa al grafico a linee',
bar: 'Passa al grafico a barre',
stack: 'Pila',
tiled: 'Piastrella'
}
},
restore: {
title: 'Ripristina'
},
saveAsImage: {
title: 'Salva come immagine',
lang: ['Tasto destro per salvare l\'immagine']
}
},
series: {
typeNames: {
pie: 'Grafico a torta',
bar: 'Grafico a barre',
line: 'Grafico a linee',
scatter: 'Grafico a dispersione',
effectScatter: 'Ripple scatter plot',
radar: 'Grafico radar',
tree: 'Albero',
treemap: 'Treemap',
boxplot: 'Diagramma a scatola e baffi',
candlestick: 'Candlestick',
k: 'K line chart',
heatmap: 'Mappa di calore',
map: 'Mappa',
parallel: 'Grafico a coordinate parallele',
lines: 'Grafico a linee',
graph: 'Diagramma delle relazioni',
sankey: 'Diagramma di Sankey',
funnel: 'Grafico a imbuto',
gauge: 'Gauge',
pictorialBar: 'Pictorial bar',
themeRiver: 'Theme River Map',
sunburst: 'Radiale'
}
},
aria: {
general: {
withTitle: 'Questo è un grafico su "{title}"',
withoutTitle: 'Questo è un grafico'
},
series: {
single: {
prefix: '',
withName: ' con il tipo {seriesType} denominato {seriesName}.',
withoutName: ' con il tipo {seriesType}.'
},
multiple: {
prefix: '. È composto da {seriesCount} serie.',
withName: ' La {seriesId} serie è un {seriesType} denominata {seriesName}.',
withoutName: ' la {seriesId} serie è un {seriesType}.',
separator: {
middle: '',
end: ''
}
}
},
data: {
allData: 'I dati sono come segue: ',
partialData: 'I primi {displayCnt} elementi sono: ',
withName: 'il dato per {name} è {value}',
withoutName: '{value}',
separator: {
middle: ', ',
end: '. '
}
}
}
};
echarts.registerLocale('IT', localeObj);
});
\ No newline at end of file
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* AUTO-GENERATED FILE. DO NOT MODIFY.
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['exports'], factory);
} else if (
typeof exports === 'object' &&
typeof exports.nodeName !== 'string'
) {
// CommonJS
factory(exports);
} else {
// Browser globals
factory({});
}
})(this, function(exports) {
/**
* Language: Romanian.
*/
var localeObj = {
time: {
month: [
'ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie',
'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'
],
monthAbbr: [
'ian.', 'febr.', 'mart.', 'apr.', 'mai', 'iun.',
'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'
],
dayOfWeek: [
'Duminică', 'Luni', 'Marți', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'
],
dayOfWeekAbbr: [
'du.', 'lu.', 'ma.', 'mi.', 'jo.', 'vi.', 'sâ.'
]
},
legend: {
selector: {
all: 'Toate',
inverse: 'Inversează'
}
},
toolbox: {
brush: {
title: {
rect: 'Selecție dreptunghiulară',
polygon: 'Selecție lasso',
lineX: 'Selecție orizontală',
lineY: 'Selecție verticală',
keep: 'Păstrează selecția',
clear: 'Șterge selecția'
}
},
dataView: {
title: 'Vizualizarea datelor',
lang: ['Vizualizarea datelor', 'Închide', 'Reîmprospătează']
},
dataZoom: {
title: {
zoom: 'Zoom',
back: 'Resetează zoom'
}
},
magicType: {
title: {
line: 'Comută la diagramă cu linii',
bar: 'Comută la diagramă cu bare',
stack: 'Suprapune',
tiled: 'Alătură'
}
},
restore: {
title: 'Resetează'
},
saveAsImage: {
title: 'Salvează ca imagine',
lang: ['Clic dreapta pentru a salva ca imagine']
}
},
series: {
typeNames: {
pie: 'Diagramă radială',
bar: 'Diagramă cu bare',
line: 'Diagramă cu linii',
scatter: 'Diagramă de dispersie',
effectScatter: 'Diagramă de dispersie stilizată',
radar: 'Diagramă radar',
tree: 'Arbore',
treemap: 'Hartă de arbori',
boxplot: 'Diagramă boxbare',
candlestick: 'Diagramă bursieră',
k: 'Diagramă cu linii K',
heatmap: 'Hartă termografică',
map: 'Hartă',
parallel: 'Hartă de coordonate paralele',
lines: 'Linii',
graph: 'Graf',
sankey: 'Diagramă Sankey',
funnel: 'Diagramă pâlnie',
gauge: 'Calibru',
pictorialBar: 'Diagramă cu bare picturale',
themeRiver: 'Streamgraph',
sunburst: 'Diagramă rază de soare'
}
},
aria: {
general: {
withTitle: 'Aceasta este o diagrmă despre "{title}"',
withoutTitle: 'Aceasta este o diagramă'
},
series: {
single: {
prefix: '',
withName: ' de tipul {seriesType} denumită {seriesName}.',
withoutName: ' de tipul {seriesType}.'
},
multiple: {
prefix: '. Este alcătuită din {seriesCount} serii.',
withName: ' Seria {seriesId} este de tipul {seriesType} și reprezintă {seriesName}.',
withoutName: ' Seria {seriesId} este de tipul {seriesType}.',
separator: {
middle: '',
end: ''
}
}
},
data: {
allData: 'Datele sunt: ',
partialData: 'Primele {displayCnt} elemente sunt: ',
withName: 'datele pentru {name} sunt {value}',
withoutName: '{value}',
separator: {
middle: ', ',
end: '. '
}
}
}
};
for (var key in localeObj) {
if (localeObj.hasOwnProperty(key)) {
exports[key] = localeObj[key];
}
}
});
\ No newline at end of file
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* AUTO-GENERATED FILE. DO NOT MODIFY.
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['exports', 'echarts'], factory);
} else if (
typeof exports === 'object' &&
typeof exports.nodeName !== 'string'
) {
// CommonJS
factory(exports, require('echarts/lib/echarts'));
} else {
// Browser globals
factory({}, root.echarts);
}
})(this, function(exports, echarts) {
/**
* Language: Romanian.
*/
var localeObj = {
time: {
month: [
'ianuarie', 'februarie', 'martie', 'aprilie', 'mai', 'iunie',
'iulie', 'august', 'septembrie', 'octombrie', 'noiembrie', 'decembrie'
],
monthAbbr: [
'ian.', 'febr.', 'mart.', 'apr.', 'mai', 'iun.',
'iul.', 'aug.', 'sept.', 'oct.', 'nov.', 'dec.'
],
dayOfWeek: [
'Duminică', 'Luni', 'Marți', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'
],
dayOfWeekAbbr: [
'du.', 'lu.', 'ma.', 'mi.', 'jo.', 'vi.', 'sâ.'
]
},
legend: {
selector: {
all: 'Toate',
inverse: 'Inversează'
}
},
toolbox: {
brush: {
title: {
rect: 'Selecție dreptunghiulară',
polygon: 'Selecție lasso',
lineX: 'Selecție orizontală',
lineY: 'Selecție verticală',
keep: 'Păstrează selecția',
clear: 'Șterge selecția'
}
},
dataView: {
title: 'Vizualizarea datelor',
lang: ['Vizualizarea datelor', 'Închide', 'Reîmprospătează']
},
dataZoom: {
title: {
zoom: 'Zoom',
back: 'Resetează zoom'
}
},
magicType: {
title: {
line: 'Comută la diagramă cu linii',
bar: 'Comută la diagramă cu bare',
stack: 'Suprapune',
tiled: 'Alătură'
}
},
restore: {
title: 'Resetează'
},
saveAsImage: {
title: 'Salvează ca imagine',
lang: ['Clic dreapta pentru a salva ca imagine']
}
},
series: {
typeNames: {
pie: 'Diagramă radială',
bar: 'Diagramă cu bare',
line: 'Diagramă cu linii',
scatter: 'Diagramă de dispersie',
effectScatter: 'Diagramă de dispersie stilizată',
radar: 'Diagramă radar',
tree: 'Arbore',
treemap: 'Hartă de arbori',
boxplot: 'Diagramă boxbare',
candlestick: 'Diagramă bursieră',
k: 'Diagramă cu linii K',
heatmap: 'Hartă termografică',
map: 'Hartă',
parallel: 'Hartă de coordonate paralele',
lines: 'Linii',
graph: 'Graf',
sankey: 'Diagramă Sankey',
funnel: 'Diagramă pâlnie',
gauge: 'Calibru',
pictorialBar: 'Diagramă cu bare picturale',
themeRiver: 'Streamgraph',
sunburst: 'Diagramă rază de soare'
}
},
aria: {
general: {
withTitle: 'Aceasta este o diagrmă despre "{title}"',
withoutTitle: 'Aceasta este o diagramă'
},
series: {
single: {
prefix: '',
withName: ' de tipul {seriesType} denumită {seriesName}.',
withoutName: ' de tipul {seriesType}.'
},
multiple: {
prefix: '. Este alcătuită din {seriesCount} serii.',
withName: ' Seria {seriesId} este de tipul {seriesType} și reprezintă {seriesName}.',
withoutName: ' Seria {seriesId} este de tipul {seriesType}.',
separator: {
middle: '',
end: ''
}
}
},
data: {
allData: 'Datele sunt: ',
partialData: 'Primele {displayCnt} elemente sunt: ',
withName: 'datele pentru {name} sunt {value}',
withoutName: '{value}',
separator: {
middle: ', ',
end: '. '
}
}
}
};
echarts.registerLocale('RO', localeObj);
});
\ No newline at end of file
{
"name": "echarts",
"version": "5.2.2",
"version": "5.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
......@@ -11122,9 +11122,9 @@
}
},
"zrender": {
"version": "npm:zrender-nightly@5.3.0-dev.20220121",
"resolved": "https://registry.npmjs.org/zrender-nightly/-/zrender-nightly-5.3.0-dev.20220121.tgz",
"integrity": "sha512-urFRHsvXGTDxSb1jBwbvXH/MqRqOdmNfMkMRVuT85BN5OE0sgT6Ow6O+j4CN6psJ+SoV/LfQcsdw3xj/Gk0AlQ==",
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/zrender/-/zrender-5.3.0.tgz",
"integrity": "sha512-Ln2QB5uqI1ftNYMtCRxd+XDq6MOttLgam2tmhKAVA+j0ko47UT+VNlDvKTkqe4K2sJhBvB0EhYNLebqlCTjatQ==",
"requires": {
"tslib": "2.3.0"
}
......
{
"name": "echarts",
"version": "5.2.2",
"version": "5.3.0",
"description": "Apache ECharts is a powerful, interactive charting and data visualization library for browser",
"license": "Apache-2.0",
"keywords": [
......@@ -64,7 +64,7 @@
},
"dependencies": {
"tslib": "2.3.0",
"zrender": "npm:zrender-nightly@5.3.0-dev.20220121"
"zrender": "5.3.0"
},
"devDependencies": {
"@babel/code-frame": "7.10.4",
......
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { NumericAxisBaseOptionCommon } from './axisCommonTypes';
import { getPrecisionSafe, round } from '../util/number';
import IntervalScale from '../scale/Interval';
......
......@@ -138,10 +138,10 @@ type ModelFinder = modelUtil.ModelFinder;
const hasWindow = typeof window !== 'undefined';
export const version = '5.2.2';
export const version = '5.3.0';
export const dependencies = {
zrender: '5.2.1'
zrender: '5.3.0'
};
const TEST_FRAME_REMAIN_TIME = 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册