Skip to content

Commit ba77062

Browse files
committed
Update urls for next -> latest
1 parent 288f5fc commit ba77062

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/release-drafter.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ template: |
4343
# Essential Links
4444
4545
* [npm](https://www.npmjs.com/package/chart.js)
46-
* [Migration guide](https://www.chartjs.org/docs/next/getting-started/v3-migration)
47-
* [Docs](https://www.chartjs.org/docs/next/)
48-
* [API](https://www.chartjs.org/docs/next/api/)
49-
* [Samples](https://www.chartjs.org/docs/next/samples/)
46+
* [Migration guide](https://www.chartjs.org/docs/latest/getting-started/v3-migration)
47+
* [Docs](https://www.chartjs.org/docs/latest/)
48+
* [API](https://www.chartjs.org/docs/latest/api/)
49+
* [Samples](https://www.chartjs.org/docs/latest/samples/)
5050
5151
$CHANGES
5252

types/index.esm.d.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -2795,12 +2795,12 @@ export type LinearScaleOptions = CartesianScaleOptions & {
27952795

27962796
/**
27972797
* Adjustment used when calculating the maximum data value.
2798-
* @see https://www.chartjs.org/docs/next/axes/cartesian/linear#axis-range-settings
2798+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/linear#axis-range-settings
27992799
*/
28002800
suggestedMin?: number;
28012801
/**
28022802
* Adjustment used when calculating the minimum data value.
2803-
* @see https://www.chartjs.org/docs/next/axes/cartesian/linear#axis-range-settings
2803+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/linear#axis-range-settings
28042804
*/
28052805
suggestedMax?: number;
28062806

@@ -2822,7 +2822,7 @@ export type LinearScaleOptions = CartesianScaleOptions & {
28222822

28232823
/**
28242824
* User defined fixed step size for the scale
2825-
* @see https://www.chartjs.org/docs/next/axes/cartesian/linear#step-size
2825+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/linear#step-size
28262826
*/
28272827
stepSize: number;
28282828

@@ -2843,12 +2843,12 @@ export type LogarithmicScaleOptions = CartesianScaleOptions & {
28432843

28442844
/**
28452845
* Adjustment used when calculating the maximum data value.
2846-
* @see https://www.chartjs.org/docs/next/axes/cartesian/linear#axis-range-settings
2846+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/linear#axis-range-settings
28472847
*/
28482848
suggestedMin?: number;
28492849
/**
28502850
* Adjustment used when calculating the minimum data value.
2851-
* @see https://www.chartjs.org/docs/next/axes/cartesian/linear#axis-range-settings
2851+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/linear#axis-range-settings
28522852
*/
28532853
suggestedMax?: number;
28542854

@@ -2871,7 +2871,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
28712871
* Scale boundary strategy (bypassed by min/max time options)
28722872
* - `data`: make sure data are fully visible, ticks outside are removed
28732873
* - `ticks`: make sure ticks are fully visible, data outside are truncated
2874-
* @see https://www.chartjs.org/docs/next/axes/cartesian/time#scale-bounds
2874+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/time#scale-bounds
28752875
* @since 2.7.0
28762876
* @default 'data'
28772877
*/
@@ -2887,7 +2887,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
28872887
time: {
28882888
/**
28892889
* Custom parser for dates.
2890-
* @see https://www.chartjs.org/docs/next/axes/cartesian/time#parser
2890+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/time#parser
28912891
*/
28922892
parser: string | ((v: unknown) => number);
28932893
/**
@@ -2902,7 +2902,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
29022902
isoWeekday: false | number;
29032903
/**
29042904
* Sets how different time units are displayed.
2905-
* @see https://www.chartjs.org/docs/next/axes/cartesian/time#display-formats
2905+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/time#display-formats
29062906
*/
29072907
displayFormats: {
29082908
[key: string]: string;
@@ -2938,7 +2938,7 @@ export type TimeScaleOptions = CartesianScaleOptions & {
29382938
* @see https://github.com/chartjs/Chart.js/pull/4507
29392939
* @since 2.7.0
29402940
* @default 'auto'
2941-
* @see https://www.chartjs.org/docs/next/axes/cartesian/time#ticks-source
2941+
* @see https://www.chartjs.org/docs/latest/axes/cartesian/time#ticks-source
29422942
*/
29432943
source: 'labels' | 'auto' | 'data';
29442944
};
@@ -3032,7 +3032,7 @@ export type RadialLinearScaleOptions = CoreScaleOptions & {
30323032
*/
30333033
color: Scriptable<Color, ScriptableScaleContext>;
30343034
/**
3035-
* @see https://www.chartjs.org/docs/next/axes/general/fonts.md
3035+
* @see https://www.chartjs.org/docs/latest/axes/general/fonts.md
30363036
*/
30373037
font: Scriptable<FontSpec, ScriptableScaleContext>;
30383038

0 commit comments

Comments
 (0)