[jichoi]
08-13
240813 최정임 부모메인
@020334d5843e9740acff718b0ed88d51572230bf
+++ client/views/pages/parents/Barchart.vue
... | ... | @@ -0,0 +1,204 @@ |
1 | +<template> | |
2 | + <div ref="Barchart" style="width: 500px; height: 500px;"></div> | |
3 | + </template> | |
4 | + | |
5 | + <script> | |
6 | + import * as am5 from "@amcharts/amcharts5"; | |
7 | + import * as am5xy from "@amcharts/amcharts5/xy"; | |
8 | + import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; | |
9 | + | |
10 | + export default { | |
11 | + name: "Barchart", | |
12 | + mounted() { | |
13 | + this.createChart(); | |
14 | + }, | |
15 | + methods: { | |
16 | + createChart() { | |
17 | + // Initialize root | |
18 | + const root = am5.Root.new(this.$refs.Barchart); | |
19 | + | |
20 | + // Apply themes | |
21 | + const myTheme = am5.Theme.new(root); | |
22 | + myTheme.rule("Grid", ["base"]).setAll({ | |
23 | + strokeOpacity: 0.1, | |
24 | + }); | |
25 | + root.setThemes([ | |
26 | + am5themes_Animated.new(root), | |
27 | + myTheme, | |
28 | + ]); | |
29 | + | |
30 | + // Create chart | |
31 | + let chart = root.container.children.push( | |
32 | + am5xy.XYChart.new(root, { | |
33 | + panX: false, | |
34 | + panY: false, | |
35 | + wheelX: "none", | |
36 | + wheelY: "none", | |
37 | + paddingLeft: 0 | |
38 | + }) | |
39 | +); | |
40 | + | |
41 | + | |
42 | +// Create axes | |
43 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/ | |
44 | +let yRenderer = am5xy.AxisRendererY.new(root, { | |
45 | + minGridDistance: 30, | |
46 | + minorGridEnabled: true | |
47 | +}); | |
48 | +yRenderer.grid.template.set("location", 1); | |
49 | + | |
50 | +let yAxis = chart.yAxes.push( | |
51 | + am5xy.CategoryAxis.new(root, { | |
52 | + maxDeviation: 0, | |
53 | + categoryField: "country", | |
54 | + renderer: yRenderer | |
55 | + }) | |
56 | +); | |
57 | + | |
58 | +let xAxis = chart.xAxes.push( | |
59 | + am5xy.ValueAxis.new(root, { | |
60 | + maxDeviation: 0, | |
61 | + min: 0, | |
62 | + renderer: am5xy.AxisRendererX.new(root, { | |
63 | + visible: true, | |
64 | + strokeOpacity: 0.1, | |
65 | + minGridDistance: 80 | |
66 | + }) | |
67 | + }) | |
68 | +); | |
69 | + | |
70 | + | |
71 | +// Create series | |
72 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/ | |
73 | +let series = chart.series.push( | |
74 | + am5xy.ColumnSeries.new(root, { | |
75 | + name: "Series 1", | |
76 | + xAxis: xAxis, | |
77 | + yAxis: yAxis, | |
78 | + valueXField: "value", | |
79 | + sequencedInterpolation: true, | |
80 | + categoryYField: "country" | |
81 | + }) | |
82 | +); | |
83 | + | |
84 | +let columnTemplate = series.columns.template; | |
85 | + | |
86 | +columnTemplate.setAll({ | |
87 | + draggable: true, | |
88 | + cursorOverStyle: "pointer", | |
89 | + tooltipText: "drag to rearrange", | |
90 | + cornerRadiusBR: 10, | |
91 | + cornerRadiusTR: 10, | |
92 | + strokeOpacity: 0 | |
93 | +}); | |
94 | +columnTemplate.adapters.add("fill", (fill, target) => { | |
95 | + return chart.get("colors").getIndex(series.columns.indexOf(target)); | |
96 | +}); | |
97 | + | |
98 | +columnTemplate.adapters.add("stroke", (stroke, target) => { | |
99 | + return chart.get("colors").getIndex(series.columns.indexOf(target)); | |
100 | +}); | |
101 | + | |
102 | +columnTemplate.events.on("dragstop", () => { | |
103 | + sortCategoryAxis(); | |
104 | +}); | |
105 | + | |
106 | +// Get series item by category | |
107 | +function getSeriesItem(category) { | |
108 | + for (var i = 0; i < series.dataItems.length; i++) { | |
109 | + let dataItem = series.dataItems[i]; | |
110 | + if (dataItem.get("categoryY") == category) { | |
111 | + return dataItem; | |
112 | + } | |
113 | + } | |
114 | +} | |
115 | + | |
116 | + | |
117 | +// Axis sorting | |
118 | +function sortCategoryAxis() { | |
119 | + // Sort by value | |
120 | + series.dataItems.sort(function (x, y) { | |
121 | + return y.get("graphics").y() - x.get("graphics").y(); | |
122 | + }); | |
123 | + | |
124 | + let easing = am5.ease.out(am5.ease.cubic); | |
125 | + | |
126 | + // Go through each axis item | |
127 | + am5.array.each(yAxis.dataItems, function (dataItem) { | |
128 | + // get corresponding series item | |
129 | + let seriesDataItem = getSeriesItem(dataItem.get("category")); | |
130 | + | |
131 | + if (seriesDataItem) { | |
132 | + // get index of series data item | |
133 | + let index = series.dataItems.indexOf(seriesDataItem); | |
134 | + | |
135 | + let column = seriesDataItem.get("graphics"); | |
136 | + | |
137 | + // position after sorting | |
138 | + let fy = | |
139 | + yRenderer.positionToCoordinate(yAxis.indexToPosition(index)) - | |
140 | + column.height() / 2; | |
141 | + | |
142 | + // set index to be the same as series data item index | |
143 | + if (index != dataItem.get("index")) { | |
144 | + dataItem.set("index", index); | |
145 | + | |
146 | + // current position | |
147 | + let x = column.x(); | |
148 | + let y = column.y(); | |
149 | + | |
150 | + column.set("dy", -(fy - y)); | |
151 | + column.set("dx", x); | |
152 | + | |
153 | + column.animate({ key: "dy", to: 0, duration: 600, easing: easing }); | |
154 | + column.animate({ key: "dx", to: 0, duration: 600, easing: easing }); | |
155 | + } else { | |
156 | + column.animate({ key: "y", to: fy, duration: 600, easing: easing }); | |
157 | + column.animate({ key: "x", to: 0, duration: 600, easing: easing }); | |
158 | + } | |
159 | + } | |
160 | + }); | |
161 | + | |
162 | + // Sort axis items by index. | |
163 | + // This changes the order instantly, but as dx and dy is set and animated, | |
164 | + // they keep in the same places and then animate to true positions. | |
165 | + yAxis.dataItems.sort(function (x, y) { | |
166 | + return x.get("index") - y.get("index"); | |
167 | + }); | |
168 | +} | |
169 | + | |
170 | +// Set data | |
171 | +let data = [{ | |
172 | + country: "USA", | |
173 | + value: 2025 | |
174 | +}, { | |
175 | + country: "China", | |
176 | + value: 1882 | |
177 | +}, { | |
178 | + country: "Japan", | |
179 | + value: 1809 | |
180 | +}, { | |
181 | + country: "Germany", | |
182 | + value: 1322 | |
183 | +}, { | |
184 | + country: "UK", | |
185 | + value: 1122 | |
186 | +}]; | |
187 | + | |
188 | +yAxis.data.setAll(data); | |
189 | +series.data.setAll(data); | |
190 | + | |
191 | + | |
192 | +// Make stuff animate on load | |
193 | +// https://www.amcharts.com/docs/v5/concepts/animations/ | |
194 | +series.appear(1000); | |
195 | +chart.appear(1000, 100); | |
196 | + }, | |
197 | + }, | |
198 | + }; | |
199 | + </script> | |
200 | + | |
201 | + <style scoped> | |
202 | + /* Add necessary styles here */ | |
203 | + </style> | |
204 | + (파일 끝에 줄바꿈 문자 없음) |
+++ client/views/pages/parents/Bubblechart.vue
... | ... | @@ -0,0 +1,222 @@ |
1 | +<template> | |
2 | + <div ref="Bubblechart" style="width: 500px; height: 500px;"></div> | |
3 | + </template> | |
4 | + | |
5 | + <script> | |
6 | + import * as am5 from "@amcharts/amcharts5"; | |
7 | + import * as am5xy from "@amcharts/amcharts5/xy"; | |
8 | + import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; | |
9 | + | |
10 | + export default { | |
11 | + name: "Bubblechart", | |
12 | + mounted() { | |
13 | + this.createChart(); | |
14 | + }, | |
15 | + methods: { | |
16 | + createChart() { | |
17 | + // Initialize root | |
18 | + const root = am5.Root.new(this.$refs.Bubblechart); | |
19 | + | |
20 | + // Apply themes | |
21 | + const myTheme = am5.Theme.new(root); | |
22 | + myTheme.rule("Grid", ["base"]).setAll({ | |
23 | + strokeOpacity: 0.1, | |
24 | + }); | |
25 | + root.setThemes([ | |
26 | + am5themes_Animated.new(root), | |
27 | + myTheme, | |
28 | + ]); | |
29 | + | |
30 | + // Create chart | |
31 | + let chart = root.container.children.push(am5xy.XYChart.new(root, { | |
32 | + panX: true, | |
33 | + panY: true, | |
34 | + wheelY: "zoomXY", | |
35 | + pinchZoomX:true, | |
36 | + pinchZoomY:true | |
37 | +})); | |
38 | + | |
39 | +chart.get("colors").set("step", 2); | |
40 | + | |
41 | +// Create axes | |
42 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/ | |
43 | +let xAxis = chart.xAxes.push(am5xy.ValueAxis.new(root, { | |
44 | + renderer: am5xy.AxisRendererX.new(root, { minGridDistance: 50 }), | |
45 | + tooltip: am5.Tooltip.new(root, {}) | |
46 | +})); | |
47 | + | |
48 | +let yAxis = chart.yAxes.push(am5xy.ValueAxis.new(root, { | |
49 | + renderer: am5xy.AxisRendererY.new(root, {}), | |
50 | + tooltip: am5.Tooltip.new(root, {}) | |
51 | +})); | |
52 | + | |
53 | +// Create series | |
54 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/ | |
55 | +let series0 = chart.series.push(am5xy.LineSeries.new(root, { | |
56 | + calculateAggregates: true, | |
57 | + xAxis: xAxis, | |
58 | + yAxis: yAxis, | |
59 | + valueYField: "y", | |
60 | + valueXField: "x", | |
61 | + valueField: "value", | |
62 | + tooltip: am5.Tooltip.new(root, { | |
63 | + labelText: "x: {valueX}, y: {valueY}, value: {value}" | |
64 | + }) | |
65 | +})); | |
66 | + | |
67 | + | |
68 | +// Add bullet | |
69 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/#Bullets | |
70 | +let circleTemplate = am5.Template.new({}); | |
71 | +series0.bullets.push(function() { | |
72 | + let graphics = am5.Circle.new(root, { | |
73 | + fill: series0.get("fill"), | |
74 | + }, circleTemplate); | |
75 | + return am5.Bullet.new(root, { | |
76 | + sprite: graphics | |
77 | + }); | |
78 | +}); | |
79 | + | |
80 | +// Add heat rule | |
81 | +// https://www.amcharts.com/docs/v5/concepts/settings/heat-rules/ | |
82 | +series0.set("heatRules", [{ | |
83 | + target: circleTemplate, | |
84 | + min: 3, | |
85 | + max: 35, | |
86 | + dataField: "value", | |
87 | + key: "radius" | |
88 | +}]); | |
89 | + | |
90 | + | |
91 | +// Create second series | |
92 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/ | |
93 | +let series1 = chart.series.push(am5xy.LineSeries.new(root, { | |
94 | + calculateAggregates: true, | |
95 | + xAxis: xAxis, | |
96 | + yAxis: yAxis, | |
97 | + valueYField: "y2", | |
98 | + valueXField: "x2", | |
99 | + valueField: "value", | |
100 | + tooltip: am5.Tooltip.new(root, { | |
101 | + labelText: "x: {valueX}, y: {valueY}, value: {value}" | |
102 | + }) | |
103 | +})); | |
104 | + | |
105 | +// Add bullet | |
106 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/#Bullets | |
107 | +let starTemplate = am5.Template.new({}); | |
108 | +series1.bullets.push(function() { | |
109 | + let graphics = am5.Star.new(root, { | |
110 | + fill: series1.get("fill"), | |
111 | + spikes: 8, | |
112 | + innerRadius: am5.percent(70), | |
113 | + }, starTemplate); | |
114 | + return am5.Bullet.new(root, { | |
115 | + sprite: graphics | |
116 | + }); | |
117 | +}); | |
118 | + | |
119 | + | |
120 | +// Add heat rule | |
121 | +// https://www.amcharts.com/docs/v5/concepts/settings/heat-rules/ | |
122 | +series1.set("heatRules", [{ | |
123 | + target: starTemplate, | |
124 | + min: 3, | |
125 | + max: 50, | |
126 | + dataField: "value", | |
127 | + key: "radius" | |
128 | +}]); | |
129 | + | |
130 | + | |
131 | +series0.strokes.template.set("strokeOpacity", 0); | |
132 | +series1.strokes.template.set("strokeOpacity", 0); | |
133 | + | |
134 | +// Add cursor | |
135 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/cursor/ | |
136 | +chart.set("cursor", am5xy.XYCursor.new(root, { | |
137 | + xAxis: xAxis, | |
138 | + yAxis: yAxis, | |
139 | + snapToSeries: [series0, series1] | |
140 | +})); | |
141 | + | |
142 | +// Add scrollbars | |
143 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/scrollbars/ | |
144 | +// chart.set("scrollbarX", am5.Scrollbar.new(root, { | |
145 | +// orientation: "horizontal" | |
146 | +// })); | |
147 | + | |
148 | +// chart.set("scrollbarY", am5.Scrollbar.new(root, { | |
149 | +// orientation: "vertical" | |
150 | +// })); | |
151 | + | |
152 | + | |
153 | +let data = [{ | |
154 | + "y": 10, | |
155 | + "x": 14, | |
156 | + "value": 59, | |
157 | + "y2": -5, | |
158 | + "x2": -3, | |
159 | + "value2": 44 | |
160 | +}, { | |
161 | + "y": 5, | |
162 | + "x": 3, | |
163 | + "value": 50, | |
164 | + "y2": -15, | |
165 | + "x2": -8, | |
166 | + "value2": 12 | |
167 | +}, { | |
168 | + "y": -10, | |
169 | + "x": 8, | |
170 | + "value": 19, | |
171 | + "y2": -4, | |
172 | + "x2": 6, | |
173 | + "value2": 35 | |
174 | +}, { | |
175 | + "y": -6, | |
176 | + "x": 5, | |
177 | + "value": 65, | |
178 | + "y2": -5, | |
179 | + "x2": -6, | |
180 | + "value2": 168 | |
181 | +}, { | |
182 | + "y": 15, | |
183 | + "x": -4, | |
184 | + "value": 92, | |
185 | + "y2": -10, | |
186 | + "x2": -8, | |
187 | + "value2": 102 | |
188 | +}, { | |
189 | + "y": 13, | |
190 | + "x": 1, | |
191 | + "value": 8, | |
192 | + "y2": -2, | |
193 | + "x2": 0, | |
194 | + "value2": 41 | |
195 | +}, { | |
196 | + "y": 1, | |
197 | + "x": 6, | |
198 | + "value": 35, | |
199 | + "y2": 0, | |
200 | + "x2": -3, | |
201 | + "value2": 16 | |
202 | +}] | |
203 | + | |
204 | +series0.data.setAll(data); | |
205 | +series1.data.setAll(data); | |
206 | + | |
207 | + | |
208 | +// Make stuff animate on load | |
209 | +// https://www.amcharts.com/docs/v5/concepts/animations/ | |
210 | +series0.appear(1000); | |
211 | +series1.appear(1000); | |
212 | + | |
213 | +chart.appear(1000, 100); | |
214 | + }, | |
215 | + }, | |
216 | + }; | |
217 | + </script> | |
218 | + | |
219 | + <style scoped> | |
220 | + /* Add necessary styles here */ | |
221 | + </style> | |
222 | + (파일 끝에 줄바꿈 문자 없음) |
+++ client/views/pages/parents/ColumnLineChart.vue
... | ... | @@ -0,0 +1,206 @@ |
1 | +<template> | |
2 | + <div ref="ColumnLineChart" style="width: 500px; height: 500px;"></div> | |
3 | + </template> | |
4 | + | |
5 | + <script> | |
6 | + import * as am5 from "@amcharts/amcharts5"; | |
7 | + import * as am5xy from "@amcharts/amcharts5/xy"; | |
8 | + import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; | |
9 | + | |
10 | + export default { | |
11 | + name: "ColumnLineChart", | |
12 | + mounted() { | |
13 | + this.createChart(); | |
14 | + }, | |
15 | + methods: { | |
16 | + createChart() { | |
17 | + // Initialize root | |
18 | + const root = am5.Root.new(this.$refs.ColumnLineChart); | |
19 | + | |
20 | + // Apply themes | |
21 | + const myTheme = am5.Theme.new(root); | |
22 | + myTheme.rule("Grid", ["base"]).setAll({ | |
23 | + strokeOpacity: 0.1, | |
24 | + }); | |
25 | + root.setThemes([ | |
26 | + am5themes_Animated.new(root), | |
27 | + myTheme, | |
28 | + ]); | |
29 | + | |
30 | + // Create chart | |
31 | + let chart = root.container.children.push( | |
32 | + am5xy.XYChart.new(root, { | |
33 | + panX: false, | |
34 | + panY: false, | |
35 | + wheelX: "panX", | |
36 | + wheelY: "zoomX", | |
37 | + paddingLeft: 0, | |
38 | + layout: root.verticalLayout | |
39 | + }) | |
40 | +); | |
41 | + | |
42 | +// Add scrollbar | |
43 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/scrollbars/ | |
44 | +// chart.set( | |
45 | +// "scrollbarX", | |
46 | +// am5.Scrollbar.new(root, { | |
47 | +// orientation: "horizontal" | |
48 | +// }) | |
49 | +// ); | |
50 | + | |
51 | +let data = [ | |
52 | + { | |
53 | + year: "2016", | |
54 | + income: 23.5, | |
55 | + expenses: 21.1 | |
56 | + }, | |
57 | + { | |
58 | + year: "2017", | |
59 | + income: 26.2, | |
60 | + expenses: 30.5 | |
61 | + }, | |
62 | + { | |
63 | + year: "2018", | |
64 | + income: 30.1, | |
65 | + expenses: 34.9 | |
66 | + }, | |
67 | + { | |
68 | + year: "2019", | |
69 | + income: 29.5, | |
70 | + expenses: 31.1 | |
71 | + }, | |
72 | + { | |
73 | + year: "2020", | |
74 | + income: 30.6, | |
75 | + expenses: 28.2, | |
76 | + strokeSettings: { | |
77 | + stroke: chart.get("colors").getIndex(1), | |
78 | + strokeWidth: 3, | |
79 | + strokeDasharray: [5, 5] | |
80 | + } | |
81 | + }, | |
82 | + { | |
83 | + year: "2021", | |
84 | + income: 34.1, | |
85 | + expenses: 32.9, | |
86 | + columnSettings: { | |
87 | + strokeWidth: 1, | |
88 | + strokeDasharray: [5], | |
89 | + fillOpacity: 0.2 | |
90 | + }, | |
91 | + info: "(projection)" | |
92 | + } | |
93 | +]; | |
94 | + | |
95 | +// Create axes | |
96 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/axes/ | |
97 | +let xRenderer = am5xy.AxisRendererX.new(root, { | |
98 | + minorGridEnabled: true, | |
99 | + minGridDistance: 60 | |
100 | +}); | |
101 | +let xAxis = chart.xAxes.push( | |
102 | + am5xy.CategoryAxis.new(root, { | |
103 | + categoryField: "year", | |
104 | + renderer: xRenderer, | |
105 | + tooltip: am5.Tooltip.new(root, {}) | |
106 | + }) | |
107 | +); | |
108 | +xRenderer.grid.template.setAll({ | |
109 | + location: 1 | |
110 | +}) | |
111 | + | |
112 | +xAxis.data.setAll(data); | |
113 | + | |
114 | +let yAxis = chart.yAxes.push( | |
115 | + am5xy.ValueAxis.new(root, { | |
116 | + min: 0, | |
117 | + extraMax: 0.1, | |
118 | + renderer: am5xy.AxisRendererY.new(root, { | |
119 | + strokeOpacity: 0.1 | |
120 | + }) | |
121 | + }) | |
122 | +); | |
123 | + | |
124 | + | |
125 | +// Add series | |
126 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/series/ | |
127 | + | |
128 | +let series1 = chart.series.push( | |
129 | + am5xy.ColumnSeries.new(root, { | |
130 | + name: "Income", | |
131 | + xAxis: xAxis, | |
132 | + yAxis: yAxis, | |
133 | + valueYField: "income", | |
134 | + categoryXField: "year", | |
135 | + tooltip: am5.Tooltip.new(root, { | |
136 | + pointerOrientation: "horizontal", | |
137 | + labelText: "{name} in {categoryX}: {valueY} {info}" | |
138 | + }) | |
139 | + }) | |
140 | +); | |
141 | + | |
142 | +series1.columns.template.setAll({ | |
143 | + tooltipY: am5.percent(10), | |
144 | + templateField: "columnSettings" | |
145 | +}); | |
146 | + | |
147 | +series1.data.setAll(data); | |
148 | + | |
149 | +let series2 = chart.series.push( | |
150 | + am5xy.LineSeries.new(root, { | |
151 | + name: "Expenses", | |
152 | + xAxis: xAxis, | |
153 | + yAxis: yAxis, | |
154 | + valueYField: "expenses", | |
155 | + categoryXField: "year", | |
156 | + tooltip: am5.Tooltip.new(root, { | |
157 | + pointerOrientation: "horizontal", | |
158 | + labelText: "{name} in {categoryX}: {valueY} {info}" | |
159 | + }) | |
160 | + }) | |
161 | +); | |
162 | + | |
163 | +series2.strokes.template.setAll({ | |
164 | + strokeWidth: 3, | |
165 | + templateField: "strokeSettings" | |
166 | +}); | |
167 | + | |
168 | + | |
169 | +series2.data.setAll(data); | |
170 | + | |
171 | +series2.bullets.push(function () { | |
172 | + return am5.Bullet.new(root, { | |
173 | + sprite: am5.Circle.new(root, { | |
174 | + strokeWidth: 3, | |
175 | + stroke: series2.get("stroke"), | |
176 | + radius: 5, | |
177 | + fill: root.interfaceColors.get("background") | |
178 | + }) | |
179 | + }); | |
180 | +}); | |
181 | + | |
182 | +chart.set("cursor", am5xy.XYCursor.new(root, {})); | |
183 | + | |
184 | +// Add legend | |
185 | +// https://www.amcharts.com/docs/v5/charts/xy-chart/legend-xy-series/ | |
186 | +let legend = chart.children.push( | |
187 | + am5.Legend.new(root, { | |
188 | + centerX: am5.p50, | |
189 | + x: am5.p50 | |
190 | + }) | |
191 | +); | |
192 | +legend.data.setAll(chart.series.values); | |
193 | + | |
194 | +// Make stuff animate on load | |
195 | +// https://www.amcharts.com/docs/v5/concepts/animations/ | |
196 | +chart.appear(1000, 100); | |
197 | +series1.appear(); | |
198 | + }, | |
199 | + }, | |
200 | + }; | |
201 | + </script> | |
202 | + | |
203 | + <style scoped> | |
204 | + /* Add necessary styles here */ | |
205 | + </style> | |
206 | + (파일 끝에 줄바꿈 문자 없음) |
+++ client/views/pages/parents/Dounutchart.vue
... | ... | @@ -0,0 +1,81 @@ |
1 | +<template> | |
2 | + <div ref="Dounutchart" style="width: 500px; height: 500px;"></div> | |
3 | +</template> | |
4 | + | |
5 | +<script> | |
6 | +import * as am5 from "@amcharts/amcharts5"; | |
7 | +import * as am5percent from "@amcharts/amcharts5/percent"; | |
8 | +import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; | |
9 | + | |
10 | +export default { | |
11 | + name: "Dounutchart", | |
12 | + mounted() { | |
13 | + this.createChart(); | |
14 | + }, | |
15 | + methods: { | |
16 | + createChart() { | |
17 | + // Initialize root | |
18 | + const root = am5.Root.new(this.$refs.Dounutchart); | |
19 | + | |
20 | + // Apply themes | |
21 | + root.setThemes([ | |
22 | + am5themes_Animated.new(root) | |
23 | + ]); | |
24 | + | |
25 | + // Create chart | |
26 | + const chart = root.container.children.push(am5percent.PieChart.new(root, { | |
27 | + layout: root.verticalLayout, | |
28 | + innerRadius: am5.percent(50) // Adjusted innerRadius for a donut chart | |
29 | + })); | |
30 | + | |
31 | + // Create series | |
32 | + const series = chart.series.push(am5percent.PieSeries.new(root, { | |
33 | + valueField: "value", | |
34 | + categoryField: "category", | |
35 | + alignLabels: false | |
36 | + })); | |
37 | + | |
38 | + // Add static label | |
39 | + // const label = chart.plotContainer.children.push(am5.Label.new(root, { | |
40 | + // text: "Total", | |
41 | + // x: am5.p50, | |
42 | + // y: am5.p50, | |
43 | + // centerX: am5.p50, | |
44 | + // centerY: am5.p50, | |
45 | + // fill: am5.color(0x000000), | |
46 | + // fontSize: 20, | |
47 | + // fontWeight: "bold" | |
48 | + // })); | |
49 | + | |
50 | + series.labels.template.setAll({ | |
51 | + textType: "circular", | |
52 | + centerX: am5.p50, | |
53 | + centerY: am5.p50 | |
54 | + }); | |
55 | + | |
56 | + // Set data | |
57 | + series.data.setAll([ | |
58 | + { value: 10, category: "One" }, | |
59 | + { value: 9, category: "Two" }, | |
60 | + ]); | |
61 | + | |
62 | + // Create legend | |
63 | + const legend = chart.children.push(am5.Legend.new(root, { | |
64 | + centerX: am5.p50, | |
65 | + x: am5.p50, | |
66 | + marginTop: 15, | |
67 | + marginBottom: 15 | |
68 | + })); | |
69 | + | |
70 | + legend.data.setAll(series.dataItems); | |
71 | + | |
72 | + // Play initial series animation | |
73 | + series.appear(1000, 100); | |
74 | + } | |
75 | + } | |
76 | +}; | |
77 | +</script> | |
78 | + | |
79 | +<style scoped> | |
80 | +/* Add necessary styles here */ | |
81 | +</style> |
--- client/views/pages/parents/Main_p.vue
+++ client/views/pages/parents/Main_p.vue
... | ... | @@ -1,15 +1,195 @@ |
1 | 1 |
<template> |
2 |
- <div>Main.vue</div> |
|
2 |
+ <div> |
|
3 |
+ <!-- <Side_t></Side_t> --> |
|
4 |
+ <div style="padding: 15px 60px 120px 60px "> |
|
5 |
+ <div class="flex justify-between align-center"> |
|
6 |
+ <div class="logo mb25"><img src="../../../resources/img/logo2.png" alt=""></div> |
|
7 |
+ <Header></Header> |
|
8 |
+ </div> |
|
9 |
+ <div class="main-wrap flex justify-between"> |
|
10 |
+ <div class="gd-2"> |
|
11 |
+ <div class=" mb30"> |
|
12 |
+ <div> |
|
13 |
+ <img src="../../../resources/img/img16_s.png" alt=""> |
|
14 |
+ <div class="mt10" style="width: 100%;"> |
|
15 |
+ <p class="name mb10">학생이름</p> |
|
16 |
+ <p class="mb5">xx중학교 3학년 x반</p> |
|
17 |
+ <progress-bar :progress="progress"></progress-bar> |
|
18 |
+ <span @click="increaseProgress">오늘의 공부</span> |
|
19 |
+ <span class="brown ml10">{{ progress }}%</span> |
|
20 |
+ </div> |
|
21 |
+ </div> |
|
22 |
+ <hr> |
|
23 |
+ <p class="title2 mb25">최근 학습 히스토리</p> |
|
24 |
+ <ul class="flex justify-between ml30"> |
|
25 |
+ <li>자학사 3학년 2학기</li> |
|
26 |
+ <li>자학사 3학년 2학기</li> |
|
27 |
+ </ul> |
|
28 |
+ |
|
29 |
+ <hr> |
|
30 |
+ <div class="title-box flex justify-between mb20"> |
|
31 |
+ <p class="name">가나다학생 랭킹</p> |
|
32 |
+ </div> |
|
33 |
+ <div class="mypage mb30"> |
|
34 |
+ <div class=" flex-column " style="gap: 20px;"> |
|
35 |
+ <div class="textbook book-red"> |
|
36 |
+ <div class="text "> |
|
37 |
+ <p class="title1" style="color: #fff;">포토북 랭킹</p> |
|
38 |
+ </div> |
|
39 |
+ <div class="box"> |
|
40 |
+ <P class="title2 mt10">현재 30명 중 <em class="red">2등</em>입니다.</P> |
|
41 |
+ </div> |
|
42 |
+ </div> |
|
43 |
+ <div class="textbook "> |
|
44 |
+ <div class="text "> |
|
45 |
+ <p class="title1" style="color: #fff;">포토북 랭킹</p> |
|
46 |
+ </div> |
|
47 |
+ <div class="box"> |
|
48 |
+ <P class="title2 mt10">현재 30명 중 <em class="yellow">2등</em>입니다.</P> |
|
49 |
+ </div> |
|
50 |
+ </div> |
|
51 |
+ <div class="textbook book-blue"> |
|
52 |
+ <div class="text "> |
|
53 |
+ <p class="title1" style="color: #fff;">포토북 랭킹</p> |
|
54 |
+ </div> |
|
55 |
+ <div class="box"> |
|
56 |
+ <P class="title2 mt10">현재 30명 중 <em class="blue">2등</em>입니다.</P> |
|
57 |
+ </div> |
|
58 |
+ </div> |
|
59 |
+ <div class="textbook book-navy"> |
|
60 |
+ <div class="text "> |
|
61 |
+ <p class="title1" style="color: #fff;">포토북 랭킹</p> |
|
62 |
+ </div> |
|
63 |
+ <div class="box"> |
|
64 |
+ <P class="title2 mt10">현재 30명 중 <em class="navy">2등</em>입니다.</P> |
|
65 |
+ </div> |
|
66 |
+ </div> |
|
67 |
+ </div> |
|
68 |
+ </div> |
|
69 |
+ <hr> |
|
70 |
+ <div> |
|
71 |
+ <div class="title-box flex justify-between mb20"> |
|
72 |
+ <p class="title">사진첩</p> |
|
73 |
+ </div> |
|
74 |
+ <div class="photobook"> |
|
75 |
+ <div class="flex justify-between"> |
|
76 |
+ <div class="box" style="gap: 5px;"> |
|
77 |
+ <div><img src="../../../resources/img/img198_12p.png" alt=""></div> |
|
78 |
+ </div> |
|
79 |
+ <div class="text mt10"> |
|
80 |
+ <p class="title1 mb10">나의 사진첩</p> |
|
81 |
+ <button @click="selectedTab = 'tab4'; goToPage('PhotoBook')" type="button" |
|
82 |
+ title="글쓰기" class="new-btn"> |
|
83 |
+ 바로가기 |
|
84 |
+ </button> |
|
85 |
+ |
|
86 |
+ </div> |
|
87 |
+ </div> |
|
88 |
+ |
|
89 |
+ </div> |
|
90 |
+ </div> |
|
91 |
+ </div> |
|
92 |
+ </div> |
|
93 |
+ <div class="gd-9"> |
|
94 |
+ <div class="title-box flex justify-between mb40"> |
|
95 |
+ <p class="title">전체 진행률</p> |
|
96 |
+ </div> |
|
97 |
+ <div class="flex"> |
|
98 |
+ <div class="wrap"> |
|
99 |
+ <p class="name">학습 현황</p> |
|
100 |
+ <div><Dounutchart/></div> |
|
101 |
+ <div class="textbox"> |
|
102 |
+ <p class="title2">오늘의 학습현황</p> |
|
103 |
+ <p class="name">40%</p> |
|
104 |
+ </div> |
|
105 |
+ <p class="title2">학습시간</p> |
|
106 |
+ <p class="name">학습시간 0시간</p> |
|
107 |
+ </div> |
|
108 |
+ <div class="wrap"> |
|
109 |
+ <p class="name">이해/표현 점수</p> |
|
110 |
+ <div> |
|
111 |
+ <ColumnLineChart/> |
|
112 |
+ </div> |
|
113 |
+ </div> |
|
114 |
+ </div> |
|
115 |
+ <div class="wrap"> |
|
116 |
+ <p class="name">교재별 진행률</p> |
|
117 |
+ <div> |
|
118 |
+ <StackedBarChart /> |
|
119 |
+ </div> |
|
120 |
+ </div> |
|
121 |
+ <div class="flex"> |
|
122 |
+ <div class="wrap"> |
|
123 |
+ <p class="name">오늘의 학습 일정</p> |
|
124 |
+ <div class="flex-column" style="gap: 20px;"> |
|
125 |
+ <div class=" flex justify-between align-center " style="gap: 70px;"> |
|
126 |
+ <div><img src="../../../resources/img/img217_22s.png" alt=""></div> |
|
127 |
+ <div class="wrap cs-pt" :class="{ 'cs-pt-clicked': isClicked }" |
|
128 |
+ @click="toggleClicked" style="width: 100%;"> |
|
129 |
+ <div class="text-lf flex justify-between align-center "> |
|
130 |
+ <div> |
|
131 |
+ <div class="flex align-center mb10" style="gap: 10px;"> |
|
132 |
+ <p class="title2"><em class="gray-bd">1교시</em></p> |
|
133 |
+ <p class="title1">9:00</p> |
|
134 |
+ <p class="title1">~</p> |
|
135 |
+ <p class="title1">10:00</p> |
|
136 |
+ </div> |
|
137 |
+ <div class="title-box mb10"> <span class="title">the best</span></div> |
|
138 |
+ <p class="title2">wirte a</p> |
|
139 |
+ </div> |
|
140 |
+ <div class=""> <img src="../../../resources/img/img214_19s.png" alt=""> |
|
141 |
+ </div> |
|
142 |
+ </div> |
|
143 |
+ </div> |
|
144 |
+ </div> |
|
145 |
+ |
|
146 |
+ </div> |
|
147 |
+ </div> |
|
148 |
+ <div class="flex-column"> |
|
149 |
+ <div class="wrap"> |
|
150 |
+ <p class="name">교재별 오답률</p> |
|
151 |
+ <Barchart /> |
|
152 |
+ </div> |
|
153 |
+ |
|
154 |
+ <div class="wrap"> |
|
155 |
+ <p class="name">LC/RC 세부 점수</p> |
|
156 |
+ <Bubblechart /> |
|
157 |
+ </div> |
|
158 |
+ |
|
159 |
+ </div> |
|
160 |
+ |
|
161 |
+ </div> |
|
162 |
+ </div> |
|
163 |
+ </div> |
|
164 |
+ </div> |
|
165 |
+ </div> |
|
166 |
+ |
|
3 | 167 |
</template> |
4 | 168 |
|
5 | 169 |
<script> |
170 |
+import Header from '../../layout/Header.vue'; |
|
171 |
+import Menu from '../../layout/Menu.vue'; |
|
172 |
+import Side_t from '../../layout/Side_t.vue'; |
|
173 |
+import ProgressBar from '../../component/ProgressBar.vue'; |
|
174 |
+import StackedBarChart from './StackedBarChart.vue'; |
|
175 |
+import Barchart from './Barchart.vue'; |
|
176 |
+import Bubblechart from './Bubblechart.vue'; |
|
177 |
+import Dounutchart from './Dounutchart.vue'; |
|
178 |
+import ColumnLineChart from './ColumnLineChart.vue'; |
|
6 | 179 |
|
7 | 180 |
export default { |
8 |
- data () { |
|
181 |
+ data() { |
|
9 | 182 |
return { |
183 |
+ progress: 20 |
|
10 | 184 |
} |
11 | 185 |
}, |
12 | 186 |
methods: { |
187 |
+ increaseProgress() { |
|
188 |
+ if (this.progress < 100) { |
|
189 |
+ this.progress += 10; |
|
190 |
+ } |
|
191 |
+ }, |
|
192 |
+ |
|
13 | 193 |
|
14 | 194 |
}, |
15 | 195 |
watch: { |
... | ... | @@ -19,9 +199,27 @@ |
19 | 199 |
|
20 | 200 |
}, |
21 | 201 |
components: { |
202 |
+ Header: Header, |
|
203 |
+ Menu: Menu, |
|
204 |
+ // Footer:Footer, |
|
205 |
+ Side_t: Side_t, |
|
206 |
+ ProgressBar, |
|
207 |
+ StackedBarChart: StackedBarChart, |
|
208 |
+ Barchart: Barchart, |
|
209 |
+ Bubblechart: Bubblechart, |
|
210 |
+ Dounutchart: Dounutchart, |
|
211 |
+ ColumnLineChart: ColumnLineChart, |
|
212 |
+ |
|
22 | 213 |
}, |
23 | 214 |
mounted() { |
24 |
- console.log('main mounted'); |
|
25 | 215 |
} |
26 | 216 |
} |
27 |
-</script>(파일 끝에 줄바꿈 문자 없음) |
|
217 |
+</script> |
|
218 |
+<style scoped> |
|
219 |
+.main-wrap { |
|
220 |
+ margin-top: 20px; |
|
221 |
+ position: static; |
|
222 |
+ width: 100%; |
|
223 |
+ height: 100%; |
|
224 |
+} |
|
225 |
+</style>(파일 끝에 줄바꿈 문자 없음) |
+++ client/views/pages/parents/StackedBarChart.vue
... | ... | @@ -0,0 +1,129 @@ |
1 | +<template> | |
2 | + <div ref="StackedBarChart" style=" height: 500px;"></div> | |
3 | + </template> | |
4 | + | |
5 | + <script> | |
6 | + import * as am5 from "@amcharts/amcharts5"; | |
7 | + import * as am5xy from "@amcharts/amcharts5/xy"; | |
8 | + import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; | |
9 | + | |
10 | + export default { | |
11 | + name: "StackedBarChart", | |
12 | + mounted() { | |
13 | + this.createChart(); | |
14 | + }, | |
15 | + methods: { | |
16 | + createChart() { | |
17 | + // Initialize root | |
18 | + const root = am5.Root.new(this.$refs.StackedBarChart); | |
19 | + | |
20 | + // Apply themes | |
21 | + const myTheme = am5.Theme.new(root); | |
22 | + myTheme.rule("Grid", ["base"]).setAll({ | |
23 | + strokeOpacity: 0.1, | |
24 | + }); | |
25 | + root.setThemes([ | |
26 | + am5themes_Animated.new(root), | |
27 | + myTheme, | |
28 | + ]); | |
29 | + | |
30 | + // Create chart | |
31 | + const chart = root.container.children.push( | |
32 | + am5xy.XYChart.new(root, { | |
33 | + panX: false, | |
34 | + panY: false, | |
35 | + wheelX: "panY", | |
36 | + wheelY: "zoomY", | |
37 | + paddingLeft: 0, | |
38 | + layout: root.verticalLayout, | |
39 | + }) | |
40 | + ); | |
41 | + | |
42 | + // Define data | |
43 | + const data = [ | |
44 | + { year: "2021", europe: 2.5, namerica: 2.5, asia: 2.1, lamerica: 1, meast: 0.8, africa: 0.4 }, | |
45 | + ]; | |
46 | + | |
47 | + // Create Y Axis | |
48 | + const yRenderer = am5xy.AxisRendererY.new(root, {}); | |
49 | + const yAxis = chart.yAxes.push(am5xy.CategoryAxis.new(root, { | |
50 | + categoryField: "year", | |
51 | + renderer: yRenderer, | |
52 | + tooltip: am5.Tooltip.new(root, {}), | |
53 | + })); | |
54 | + yRenderer.grid.template.setAll({ | |
55 | + location: 1, | |
56 | + }); | |
57 | + yAxis.data.setAll(data); | |
58 | + | |
59 | + // Create X Axis | |
60 | + const xAxis = chart.xAxes.push(am5xy.ValueAxis.new(root, { | |
61 | + min: 0, | |
62 | + maxPrecision: 0, | |
63 | + renderer: am5xy.AxisRendererX.new(root, { | |
64 | + minGridDistance: 40, | |
65 | + strokeOpacity: 0.1, | |
66 | + }), | |
67 | + })); | |
68 | + | |
69 | + // Create legend | |
70 | + const legend = chart.children.push(am5.Legend.new(root, { | |
71 | + centerX: am5.p50, | |
72 | + x: am5.p50, | |
73 | + })); | |
74 | + | |
75 | + // Function to create series | |
76 | + const createSeries = (name, fieldName) => { | |
77 | + const series = chart.series.push(am5xy.ColumnSeries.new(root, { | |
78 | + name, | |
79 | + stacked: true, | |
80 | + xAxis, | |
81 | + yAxis, | |
82 | + baseAxis: yAxis, | |
83 | + valueXField: fieldName, | |
84 | + categoryYField: "year", | |
85 | + })); | |
86 | + | |
87 | + series.columns.template.setAll({ | |
88 | + tooltipText: "{name}, {categoryY}: {valueX}", | |
89 | + tooltipY: am5.percent(90), | |
90 | + }); | |
91 | + series.data.setAll(data); | |
92 | + | |
93 | + series.appear(); | |
94 | + | |
95 | + series.bullets.push(() => | |
96 | + am5.Bullet.new(root, { | |
97 | + sprite: am5.Label.new(root, { | |
98 | + text: "{valueX}", | |
99 | + fill: root.interfaceColors.get("alternativeText"), | |
100 | + centerY: am5.p50, | |
101 | + centerX: am5.p50, | |
102 | + populateText: true, | |
103 | + }), | |
104 | + }) | |
105 | + ); | |
106 | + | |
107 | + | |
108 | + legend.data.push(series); | |
109 | + }; | |
110 | + | |
111 | + // Create series | |
112 | + createSeries("Europe", "europe"); | |
113 | + createSeries("North America", "namerica"); | |
114 | + createSeries("Asia", "asia"); | |
115 | + createSeries("Latin America", "lamerica"); | |
116 | + createSeries("Middle East", "meast"); | |
117 | + createSeries("Africa", "africa"); | |
118 | + | |
119 | + // Chart animation | |
120 | + chart.appear(1000, 100); | |
121 | + }, | |
122 | + }, | |
123 | + }; | |
124 | + </script> | |
125 | + | |
126 | + <style scoped> | |
127 | + /* Add necessary styles here */ | |
128 | + </style> | |
129 | + (파일 끝에 줄바꿈 문자 없음) |
--- package-lock.json
+++ package-lock.json
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 |
"packages": { |
6 | 6 |
"": { |
7 | 7 |
"dependencies": { |
8 |
- "@amcharts/amcharts4": "^4.10.39", |
|
8 |
+ "@amcharts/amcharts5": "^5.10.1", |
|
9 | 9 |
"@babel/cli": "7.19.3", |
10 | 10 |
"@babel/core": "7.19.3", |
11 | 11 |
"@jamescoyle/vue-icon": "^0.1.2", |
... | ... | @@ -34,26 +34,37 @@ |
34 | 34 |
"webpack-cli": "^5.1.4" |
35 | 35 |
} |
36 | 36 |
}, |
37 |
- "node_modules/@amcharts/amcharts4": { |
|
38 |
- "version": "4.10.39", |
|
39 |
- "resolved": "https://registry.npmjs.org/@amcharts/amcharts4/-/amcharts4-4.10.39.tgz", |
|
40 |
- "integrity": "sha512-5WbpZgI0m0Mf8Ydwlm1XWB8hIzkk6fJifzYmJqo5HLdA8jCQa+4I+8uOlGlvSMxbBTkvxanEgA2WX27+99X44w==", |
|
37 |
+ "node_modules/@amcharts/amcharts5": { |
|
38 |
+ "version": "5.10.1", |
|
39 |
+ "resolved": "https://registry.npmjs.org/@amcharts/amcharts5/-/amcharts5-5.10.1.tgz", |
|
40 |
+ "integrity": "sha512-oGTZ7QJ/AEiMgJ6W3xzX7dSTK47Zl4j44ZsHiWbdAU0BKSQPmzw/jGgj806/ki2Ym4wuxWvE8dCg6josmNnVDg==", |
|
41 | 41 |
"license": "SEE LICENSE IN LICENSE", |
42 | 42 |
"dependencies": { |
43 |
- "@babel/runtime": "^7.6.3", |
|
44 |
- "core-js": "^3.0.0", |
|
43 |
+ "@types/d3": "^7.0.0", |
|
44 |
+ "@types/d3-chord": "^3.0.0", |
|
45 |
+ "@types/d3-hierarchy": "3.1.1", |
|
46 |
+ "@types/d3-sankey": "^0.11.1", |
|
47 |
+ "@types/d3-shape": "^3.0.0", |
|
48 |
+ "@types/geojson": "^7946.0.8", |
|
49 |
+ "@types/polylabel": "^1.0.5", |
|
50 |
+ "@types/svg-arc-to-cubic-bezier": "^3.2.0", |
|
51 |
+ "d3": "^7.0.0", |
|
52 |
+ "d3-chord": "^3.0.0", |
|
45 | 53 |
"d3-force": "^3.0.0", |
46 |
- "d3-geo": "^3.0.1", |
|
47 |
- "d3-geo-projection": "^4.0.0", |
|
54 |
+ "d3-geo": "^3.0.0", |
|
55 |
+ "d3-hierarchy": "^3.0.0", |
|
56 |
+ "d3-sankey": "^0.12.3", |
|
48 | 57 |
"d3-selection": "^3.0.0", |
49 |
- "d3-transition": "^3.0.1", |
|
58 |
+ "d3-shape": "^3.0.0", |
|
59 |
+ "d3-transition": "^3.0.0", |
|
60 |
+ "d3-voronoi-treemap": "^1.1.2", |
|
61 |
+ "flatpickr": "^4.6.9", |
|
62 |
+ "markerjs2": "^2.29.4", |
|
50 | 63 |
"pdfmake": "^0.2.2", |
51 |
- "polylabel": "^1.0.2", |
|
52 |
- "raf": "^3.4.1", |
|
53 |
- "regression": "^2.0.1", |
|
54 |
- "rgbcolor": "^1.0.1", |
|
55 |
- "stackblur-canvas": "^2.0.0", |
|
56 |
- "tslib": "^2.0.1" |
|
64 |
+ "polylabel": "^1.1.0", |
|
65 |
+ "seedrandom": "^3.0.5", |
|
66 |
+ "svg-arc-to-cubic-bezier": "^3.2.0", |
|
67 |
+ "tslib": "^2.2.0" |
|
57 | 68 |
} |
58 | 69 |
}, |
59 | 70 |
"node_modules/@ampproject/remapping": { |
... | ... | @@ -292,18 +303,6 @@ |
292 | 303 |
"node": ">=6.0.0" |
293 | 304 |
} |
294 | 305 |
}, |
295 |
- "node_modules/@babel/runtime": { |
|
296 |
- "version": "7.25.0", |
|
297 |
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", |
|
298 |
- "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", |
|
299 |
- "license": "MIT", |
|
300 |
- "dependencies": { |
|
301 |
- "regenerator-runtime": "^0.14.0" |
|
302 |
- }, |
|
303 |
- "engines": { |
|
304 |
- "node": ">=6.9.0" |
|
305 |
- } |
|
306 |
- }, |
|
307 | 306 |
"node_modules/@babel/template": { |
308 | 307 |
"version": "7.25.0", |
309 | 308 |
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", |
... | ... | @@ -487,6 +486,283 @@ |
487 | 486 |
"license": "MIT", |
488 | 487 |
"optional": true |
489 | 488 |
}, |
489 |
+ "node_modules/@types/d3": { |
|
490 |
+ "version": "7.4.3", |
|
491 |
+ "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", |
|
492 |
+ "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", |
|
493 |
+ "license": "MIT", |
|
494 |
+ "dependencies": { |
|
495 |
+ "@types/d3-array": "*", |
|
496 |
+ "@types/d3-axis": "*", |
|
497 |
+ "@types/d3-brush": "*", |
|
498 |
+ "@types/d3-chord": "*", |
|
499 |
+ "@types/d3-color": "*", |
|
500 |
+ "@types/d3-contour": "*", |
|
501 |
+ "@types/d3-delaunay": "*", |
|
502 |
+ "@types/d3-dispatch": "*", |
|
503 |
+ "@types/d3-drag": "*", |
|
504 |
+ "@types/d3-dsv": "*", |
|
505 |
+ "@types/d3-ease": "*", |
|
506 |
+ "@types/d3-fetch": "*", |
|
507 |
+ "@types/d3-force": "*", |
|
508 |
+ "@types/d3-format": "*", |
|
509 |
+ "@types/d3-geo": "*", |
|
510 |
+ "@types/d3-hierarchy": "*", |
|
511 |
+ "@types/d3-interpolate": "*", |
|
512 |
+ "@types/d3-path": "*", |
|
513 |
+ "@types/d3-polygon": "*", |
|
514 |
+ "@types/d3-quadtree": "*", |
|
515 |
+ "@types/d3-random": "*", |
|
516 |
+ "@types/d3-scale": "*", |
|
517 |
+ "@types/d3-scale-chromatic": "*", |
|
518 |
+ "@types/d3-selection": "*", |
|
519 |
+ "@types/d3-shape": "*", |
|
520 |
+ "@types/d3-time": "*", |
|
521 |
+ "@types/d3-time-format": "*", |
|
522 |
+ "@types/d3-timer": "*", |
|
523 |
+ "@types/d3-transition": "*", |
|
524 |
+ "@types/d3-zoom": "*" |
|
525 |
+ } |
|
526 |
+ }, |
|
527 |
+ "node_modules/@types/d3-array": { |
|
528 |
+ "version": "3.2.1", |
|
529 |
+ "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", |
|
530 |
+ "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", |
|
531 |
+ "license": "MIT" |
|
532 |
+ }, |
|
533 |
+ "node_modules/@types/d3-axis": { |
|
534 |
+ "version": "3.0.6", |
|
535 |
+ "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", |
|
536 |
+ "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", |
|
537 |
+ "license": "MIT", |
|
538 |
+ "dependencies": { |
|
539 |
+ "@types/d3-selection": "*" |
|
540 |
+ } |
|
541 |
+ }, |
|
542 |
+ "node_modules/@types/d3-brush": { |
|
543 |
+ "version": "3.0.6", |
|
544 |
+ "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", |
|
545 |
+ "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", |
|
546 |
+ "license": "MIT", |
|
547 |
+ "dependencies": { |
|
548 |
+ "@types/d3-selection": "*" |
|
549 |
+ } |
|
550 |
+ }, |
|
551 |
+ "node_modules/@types/d3-chord": { |
|
552 |
+ "version": "3.0.6", |
|
553 |
+ "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", |
|
554 |
+ "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", |
|
555 |
+ "license": "MIT" |
|
556 |
+ }, |
|
557 |
+ "node_modules/@types/d3-color": { |
|
558 |
+ "version": "3.1.3", |
|
559 |
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", |
|
560 |
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", |
|
561 |
+ "license": "MIT" |
|
562 |
+ }, |
|
563 |
+ "node_modules/@types/d3-contour": { |
|
564 |
+ "version": "3.0.6", |
|
565 |
+ "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", |
|
566 |
+ "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", |
|
567 |
+ "license": "MIT", |
|
568 |
+ "dependencies": { |
|
569 |
+ "@types/d3-array": "*", |
|
570 |
+ "@types/geojson": "*" |
|
571 |
+ } |
|
572 |
+ }, |
|
573 |
+ "node_modules/@types/d3-delaunay": { |
|
574 |
+ "version": "6.0.4", |
|
575 |
+ "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", |
|
576 |
+ "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", |
|
577 |
+ "license": "MIT" |
|
578 |
+ }, |
|
579 |
+ "node_modules/@types/d3-dispatch": { |
|
580 |
+ "version": "3.0.6", |
|
581 |
+ "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz", |
|
582 |
+ "integrity": "sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==", |
|
583 |
+ "license": "MIT" |
|
584 |
+ }, |
|
585 |
+ "node_modules/@types/d3-drag": { |
|
586 |
+ "version": "3.0.7", |
|
587 |
+ "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", |
|
588 |
+ "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", |
|
589 |
+ "license": "MIT", |
|
590 |
+ "dependencies": { |
|
591 |
+ "@types/d3-selection": "*" |
|
592 |
+ } |
|
593 |
+ }, |
|
594 |
+ "node_modules/@types/d3-dsv": { |
|
595 |
+ "version": "3.0.7", |
|
596 |
+ "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", |
|
597 |
+ "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", |
|
598 |
+ "license": "MIT" |
|
599 |
+ }, |
|
600 |
+ "node_modules/@types/d3-ease": { |
|
601 |
+ "version": "3.0.2", |
|
602 |
+ "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", |
|
603 |
+ "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", |
|
604 |
+ "license": "MIT" |
|
605 |
+ }, |
|
606 |
+ "node_modules/@types/d3-fetch": { |
|
607 |
+ "version": "3.0.7", |
|
608 |
+ "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", |
|
609 |
+ "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", |
|
610 |
+ "license": "MIT", |
|
611 |
+ "dependencies": { |
|
612 |
+ "@types/d3-dsv": "*" |
|
613 |
+ } |
|
614 |
+ }, |
|
615 |
+ "node_modules/@types/d3-force": { |
|
616 |
+ "version": "3.0.10", |
|
617 |
+ "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz", |
|
618 |
+ "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", |
|
619 |
+ "license": "MIT" |
|
620 |
+ }, |
|
621 |
+ "node_modules/@types/d3-format": { |
|
622 |
+ "version": "3.0.4", |
|
623 |
+ "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", |
|
624 |
+ "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", |
|
625 |
+ "license": "MIT" |
|
626 |
+ }, |
|
627 |
+ "node_modules/@types/d3-geo": { |
|
628 |
+ "version": "3.1.0", |
|
629 |
+ "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", |
|
630 |
+ "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", |
|
631 |
+ "license": "MIT", |
|
632 |
+ "dependencies": { |
|
633 |
+ "@types/geojson": "*" |
|
634 |
+ } |
|
635 |
+ }, |
|
636 |
+ "node_modules/@types/d3-hierarchy": { |
|
637 |
+ "version": "3.1.1", |
|
638 |
+ "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.1.tgz", |
|
639 |
+ "integrity": "sha512-QwjxA3+YCKH3N1Rs3uSiSy1bdxlLB1uUiENXeJudBoAFvtDuswUxLcanoOaR2JYn1melDTuIXR8VhnVyI3yG/A==", |
|
640 |
+ "license": "MIT" |
|
641 |
+ }, |
|
642 |
+ "node_modules/@types/d3-interpolate": { |
|
643 |
+ "version": "3.0.4", |
|
644 |
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", |
|
645 |
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", |
|
646 |
+ "license": "MIT", |
|
647 |
+ "dependencies": { |
|
648 |
+ "@types/d3-color": "*" |
|
649 |
+ } |
|
650 |
+ }, |
|
651 |
+ "node_modules/@types/d3-path": { |
|
652 |
+ "version": "3.1.0", |
|
653 |
+ "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", |
|
654 |
+ "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", |
|
655 |
+ "license": "MIT" |
|
656 |
+ }, |
|
657 |
+ "node_modules/@types/d3-polygon": { |
|
658 |
+ "version": "3.0.2", |
|
659 |
+ "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", |
|
660 |
+ "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", |
|
661 |
+ "license": "MIT" |
|
662 |
+ }, |
|
663 |
+ "node_modules/@types/d3-quadtree": { |
|
664 |
+ "version": "3.0.6", |
|
665 |
+ "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", |
|
666 |
+ "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", |
|
667 |
+ "license": "MIT" |
|
668 |
+ }, |
|
669 |
+ "node_modules/@types/d3-random": { |
|
670 |
+ "version": "3.0.3", |
|
671 |
+ "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", |
|
672 |
+ "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", |
|
673 |
+ "license": "MIT" |
|
674 |
+ }, |
|
675 |
+ "node_modules/@types/d3-sankey": { |
|
676 |
+ "version": "0.11.2", |
|
677 |
+ "resolved": "https://registry.npmjs.org/@types/d3-sankey/-/d3-sankey-0.11.2.tgz", |
|
678 |
+ "integrity": "sha512-U6SrTWUERSlOhnpSrgvMX64WblX1AxX6nEjI2t3mLK2USpQrnbwYYK+AS9SwiE7wgYmOsSSKoSdr8aoKBH0HgQ==", |
|
679 |
+ "license": "MIT", |
|
680 |
+ "dependencies": { |
|
681 |
+ "@types/d3-shape": "^1" |
|
682 |
+ } |
|
683 |
+ }, |
|
684 |
+ "node_modules/@types/d3-sankey/node_modules/@types/d3-path": { |
|
685 |
+ "version": "1.0.11", |
|
686 |
+ "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.11.tgz", |
|
687 |
+ "integrity": "sha512-4pQMp8ldf7UaB/gR8Fvvy69psNHkTpD/pVw3vmEi8iZAB9EPMBruB1JvHO4BIq9QkUUd2lV1F5YXpMNj7JPBpw==", |
|
688 |
+ "license": "MIT" |
|
689 |
+ }, |
|
690 |
+ "node_modules/@types/d3-sankey/node_modules/@types/d3-shape": { |
|
691 |
+ "version": "1.3.12", |
|
692 |
+ "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.12.tgz", |
|
693 |
+ "integrity": "sha512-8oMzcd4+poSLGgV0R1Q1rOlx/xdmozS4Xab7np0eamFFUYq71AU9pOCJEFnkXW2aI/oXdVYJzw6pssbSut7Z9Q==", |
|
694 |
+ "license": "MIT", |
|
695 |
+ "dependencies": { |
|
696 |
+ "@types/d3-path": "^1" |
|
697 |
+ } |
|
698 |
+ }, |
|
699 |
+ "node_modules/@types/d3-scale": { |
|
700 |
+ "version": "4.0.8", |
|
701 |
+ "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", |
|
702 |
+ "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", |
|
703 |
+ "license": "MIT", |
|
704 |
+ "dependencies": { |
|
705 |
+ "@types/d3-time": "*" |
|
706 |
+ } |
|
707 |
+ }, |
|
708 |
+ "node_modules/@types/d3-scale-chromatic": { |
|
709 |
+ "version": "3.0.3", |
|
710 |
+ "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", |
|
711 |
+ "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==", |
|
712 |
+ "license": "MIT" |
|
713 |
+ }, |
|
714 |
+ "node_modules/@types/d3-selection": { |
|
715 |
+ "version": "3.0.10", |
|
716 |
+ "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.10.tgz", |
|
717 |
+ "integrity": "sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==", |
|
718 |
+ "license": "MIT" |
|
719 |
+ }, |
|
720 |
+ "node_modules/@types/d3-shape": { |
|
721 |
+ "version": "3.1.6", |
|
722 |
+ "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", |
|
723 |
+ "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", |
|
724 |
+ "license": "MIT", |
|
725 |
+ "dependencies": { |
|
726 |
+ "@types/d3-path": "*" |
|
727 |
+ } |
|
728 |
+ }, |
|
729 |
+ "node_modules/@types/d3-time": { |
|
730 |
+ "version": "3.0.3", |
|
731 |
+ "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", |
|
732 |
+ "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", |
|
733 |
+ "license": "MIT" |
|
734 |
+ }, |
|
735 |
+ "node_modules/@types/d3-time-format": { |
|
736 |
+ "version": "4.0.3", |
|
737 |
+ "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", |
|
738 |
+ "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", |
|
739 |
+ "license": "MIT" |
|
740 |
+ }, |
|
741 |
+ "node_modules/@types/d3-timer": { |
|
742 |
+ "version": "3.0.2", |
|
743 |
+ "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", |
|
744 |
+ "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", |
|
745 |
+ "license": "MIT" |
|
746 |
+ }, |
|
747 |
+ "node_modules/@types/d3-transition": { |
|
748 |
+ "version": "3.0.8", |
|
749 |
+ "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.8.tgz", |
|
750 |
+ "integrity": "sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==", |
|
751 |
+ "license": "MIT", |
|
752 |
+ "dependencies": { |
|
753 |
+ "@types/d3-selection": "*" |
|
754 |
+ } |
|
755 |
+ }, |
|
756 |
+ "node_modules/@types/d3-zoom": { |
|
757 |
+ "version": "3.0.8", |
|
758 |
+ "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", |
|
759 |
+ "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", |
|
760 |
+ "license": "MIT", |
|
761 |
+ "dependencies": { |
|
762 |
+ "@types/d3-interpolate": "*", |
|
763 |
+ "@types/d3-selection": "*" |
|
764 |
+ } |
|
765 |
+ }, |
|
490 | 766 |
"node_modules/@types/eslint": { |
491 | 767 |
"version": "9.6.0", |
492 | 768 |
"resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.0.tgz", |
... | ... | @@ -512,6 +788,12 @@ |
512 | 788 |
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", |
513 | 789 |
"integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" |
514 | 790 |
}, |
791 |
+ "node_modules/@types/geojson": { |
|
792 |
+ "version": "7946.0.14", |
|
793 |
+ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", |
|
794 |
+ "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", |
|
795 |
+ "license": "MIT" |
|
796 |
+ }, |
|
515 | 797 |
"node_modules/@types/json-schema": { |
516 | 798 |
"version": "7.0.15", |
517 | 799 |
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", |
... | ... | @@ -526,6 +808,18 @@ |
526 | 808 |
"dependencies": { |
527 | 809 |
"undici-types": "~6.11.1" |
528 | 810 |
} |
811 |
+ }, |
|
812 |
+ "node_modules/@types/polylabel": { |
|
813 |
+ "version": "1.1.3", |
|
814 |
+ "resolved": "https://registry.npmjs.org/@types/polylabel/-/polylabel-1.1.3.tgz", |
|
815 |
+ "integrity": "sha512-9Zw2KoDpi+T4PZz2G6pO2xArE0m/GSMTW1MIxF2s8ZY8x9XDO6fv9um0ydRGvcbkFLlaq8yNK6eZxnmMZtDgWQ==", |
|
816 |
+ "license": "MIT" |
|
817 |
+ }, |
|
818 |
+ "node_modules/@types/svg-arc-to-cubic-bezier": { |
|
819 |
+ "version": "3.2.2", |
|
820 |
+ "resolved": "https://registry.npmjs.org/@types/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.2.tgz", |
|
821 |
+ "integrity": "sha512-XQtKy9lmkKlV+c3Jelo7kxNPw7qOqIq3GcnOhywGZHF7zw5D5m+Ssigbmf3Turbe/A8Ur+lRh8TYjuxXKvyivw==", |
|
822 |
+ "license": "MIT" |
|
529 | 823 |
}, |
530 | 824 |
"node_modules/@vue/compiler-core": { |
531 | 825 |
"version": "3.2.40", |
... | ... | @@ -1342,17 +1636,6 @@ |
1342 | 1636 |
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", |
1343 | 1637 |
"license": "MIT" |
1344 | 1638 |
}, |
1345 |
- "node_modules/core-js": { |
|
1346 |
- "version": "3.38.0", |
|
1347 |
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.38.0.tgz", |
|
1348 |
- "integrity": "sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==", |
|
1349 |
- "hasInstallScript": true, |
|
1350 |
- "license": "MIT", |
|
1351 |
- "funding": { |
|
1352 |
- "type": "opencollective", |
|
1353 |
- "url": "https://opencollective.com/core-js" |
|
1354 |
- } |
|
1355 |
- }, |
|
1356 | 1639 |
"node_modules/cross-spawn": { |
1357 | 1640 |
"version": "7.0.3", |
1358 | 1641 |
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", |
... | ... | @@ -1430,6 +1713,47 @@ |
1430 | 1713 |
"integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", |
1431 | 1714 |
"license": "MIT" |
1432 | 1715 |
}, |
1716 |
+ "node_modules/d3": { |
|
1717 |
+ "version": "7.9.0", |
|
1718 |
+ "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", |
|
1719 |
+ "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", |
|
1720 |
+ "license": "ISC", |
|
1721 |
+ "dependencies": { |
|
1722 |
+ "d3-array": "3", |
|
1723 |
+ "d3-axis": "3", |
|
1724 |
+ "d3-brush": "3", |
|
1725 |
+ "d3-chord": "3", |
|
1726 |
+ "d3-color": "3", |
|
1727 |
+ "d3-contour": "4", |
|
1728 |
+ "d3-delaunay": "6", |
|
1729 |
+ "d3-dispatch": "3", |
|
1730 |
+ "d3-drag": "3", |
|
1731 |
+ "d3-dsv": "3", |
|
1732 |
+ "d3-ease": "3", |
|
1733 |
+ "d3-fetch": "3", |
|
1734 |
+ "d3-force": "3", |
|
1735 |
+ "d3-format": "3", |
|
1736 |
+ "d3-geo": "3", |
|
1737 |
+ "d3-hierarchy": "3", |
|
1738 |
+ "d3-interpolate": "3", |
|
1739 |
+ "d3-path": "3", |
|
1740 |
+ "d3-polygon": "3", |
|
1741 |
+ "d3-quadtree": "3", |
|
1742 |
+ "d3-random": "3", |
|
1743 |
+ "d3-scale": "4", |
|
1744 |
+ "d3-scale-chromatic": "3", |
|
1745 |
+ "d3-selection": "3", |
|
1746 |
+ "d3-shape": "3", |
|
1747 |
+ "d3-time": "3", |
|
1748 |
+ "d3-time-format": "4", |
|
1749 |
+ "d3-timer": "3", |
|
1750 |
+ "d3-transition": "3", |
|
1751 |
+ "d3-zoom": "3" |
|
1752 |
+ }, |
|
1753 |
+ "engines": { |
|
1754 |
+ "node": ">=12" |
|
1755 |
+ } |
|
1756 |
+ }, |
|
1433 | 1757 |
"node_modules/d3-array": { |
1434 | 1758 |
"version": "3.2.4", |
1435 | 1759 |
"resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", |
... | ... | @@ -1437,6 +1761,43 @@ |
1437 | 1761 |
"license": "ISC", |
1438 | 1762 |
"dependencies": { |
1439 | 1763 |
"internmap": "1 - 2" |
1764 |
+ }, |
|
1765 |
+ "engines": { |
|
1766 |
+ "node": ">=12" |
|
1767 |
+ } |
|
1768 |
+ }, |
|
1769 |
+ "node_modules/d3-axis": { |
|
1770 |
+ "version": "3.0.0", |
|
1771 |
+ "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", |
|
1772 |
+ "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", |
|
1773 |
+ "license": "ISC", |
|
1774 |
+ "engines": { |
|
1775 |
+ "node": ">=12" |
|
1776 |
+ } |
|
1777 |
+ }, |
|
1778 |
+ "node_modules/d3-brush": { |
|
1779 |
+ "version": "3.0.0", |
|
1780 |
+ "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", |
|
1781 |
+ "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", |
|
1782 |
+ "license": "ISC", |
|
1783 |
+ "dependencies": { |
|
1784 |
+ "d3-dispatch": "1 - 3", |
|
1785 |
+ "d3-drag": "2 - 3", |
|
1786 |
+ "d3-interpolate": "1 - 3", |
|
1787 |
+ "d3-selection": "3", |
|
1788 |
+ "d3-transition": "3" |
|
1789 |
+ }, |
|
1790 |
+ "engines": { |
|
1791 |
+ "node": ">=12" |
|
1792 |
+ } |
|
1793 |
+ }, |
|
1794 |
+ "node_modules/d3-chord": { |
|
1795 |
+ "version": "3.0.1", |
|
1796 |
+ "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", |
|
1797 |
+ "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", |
|
1798 |
+ "license": "ISC", |
|
1799 |
+ "dependencies": { |
|
1800 |
+ "d3-path": "1 - 3" |
|
1440 | 1801 |
}, |
1441 | 1802 |
"engines": { |
1442 | 1803 |
"node": ">=12" |
... | ... | @@ -1451,6 +1812,30 @@ |
1451 | 1812 |
"node": ">=12" |
1452 | 1813 |
} |
1453 | 1814 |
}, |
1815 |
+ "node_modules/d3-contour": { |
|
1816 |
+ "version": "4.0.2", |
|
1817 |
+ "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", |
|
1818 |
+ "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", |
|
1819 |
+ "license": "ISC", |
|
1820 |
+ "dependencies": { |
|
1821 |
+ "d3-array": "^3.2.0" |
|
1822 |
+ }, |
|
1823 |
+ "engines": { |
|
1824 |
+ "node": ">=12" |
|
1825 |
+ } |
|
1826 |
+ }, |
|
1827 |
+ "node_modules/d3-delaunay": { |
|
1828 |
+ "version": "6.0.4", |
|
1829 |
+ "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", |
|
1830 |
+ "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", |
|
1831 |
+ "license": "ISC", |
|
1832 |
+ "dependencies": { |
|
1833 |
+ "delaunator": "5" |
|
1834 |
+ }, |
|
1835 |
+ "engines": { |
|
1836 |
+ "node": ">=12" |
|
1837 |
+ } |
|
1838 |
+ }, |
|
1454 | 1839 |
"node_modules/d3-dispatch": { |
1455 | 1840 |
"version": "3.0.1", |
1456 | 1841 |
"resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", |
... | ... | @@ -1460,11 +1845,82 @@ |
1460 | 1845 |
"node": ">=12" |
1461 | 1846 |
} |
1462 | 1847 |
}, |
1848 |
+ "node_modules/d3-drag": { |
|
1849 |
+ "version": "3.0.0", |
|
1850 |
+ "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", |
|
1851 |
+ "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", |
|
1852 |
+ "license": "ISC", |
|
1853 |
+ "dependencies": { |
|
1854 |
+ "d3-dispatch": "1 - 3", |
|
1855 |
+ "d3-selection": "3" |
|
1856 |
+ }, |
|
1857 |
+ "engines": { |
|
1858 |
+ "node": ">=12" |
|
1859 |
+ } |
|
1860 |
+ }, |
|
1861 |
+ "node_modules/d3-dsv": { |
|
1862 |
+ "version": "3.0.1", |
|
1863 |
+ "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", |
|
1864 |
+ "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", |
|
1865 |
+ "license": "ISC", |
|
1866 |
+ "dependencies": { |
|
1867 |
+ "commander": "7", |
|
1868 |
+ "iconv-lite": "0.6", |
|
1869 |
+ "rw": "1" |
|
1870 |
+ }, |
|
1871 |
+ "bin": { |
|
1872 |
+ "csv2json": "bin/dsv2json.js", |
|
1873 |
+ "csv2tsv": "bin/dsv2dsv.js", |
|
1874 |
+ "dsv2dsv": "bin/dsv2dsv.js", |
|
1875 |
+ "dsv2json": "bin/dsv2json.js", |
|
1876 |
+ "json2csv": "bin/json2dsv.js", |
|
1877 |
+ "json2dsv": "bin/json2dsv.js", |
|
1878 |
+ "json2tsv": "bin/json2dsv.js", |
|
1879 |
+ "tsv2csv": "bin/dsv2dsv.js", |
|
1880 |
+ "tsv2json": "bin/dsv2json.js" |
|
1881 |
+ }, |
|
1882 |
+ "engines": { |
|
1883 |
+ "node": ">=12" |
|
1884 |
+ } |
|
1885 |
+ }, |
|
1886 |
+ "node_modules/d3-dsv/node_modules/commander": { |
|
1887 |
+ "version": "7.2.0", |
|
1888 |
+ "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", |
|
1889 |
+ "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", |
|
1890 |
+ "license": "MIT", |
|
1891 |
+ "engines": { |
|
1892 |
+ "node": ">= 10" |
|
1893 |
+ } |
|
1894 |
+ }, |
|
1895 |
+ "node_modules/d3-dsv/node_modules/iconv-lite": { |
|
1896 |
+ "version": "0.6.3", |
|
1897 |
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", |
|
1898 |
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", |
|
1899 |
+ "license": "MIT", |
|
1900 |
+ "dependencies": { |
|
1901 |
+ "safer-buffer": ">= 2.1.2 < 3.0.0" |
|
1902 |
+ }, |
|
1903 |
+ "engines": { |
|
1904 |
+ "node": ">=0.10.0" |
|
1905 |
+ } |
|
1906 |
+ }, |
|
1463 | 1907 |
"node_modules/d3-ease": { |
1464 | 1908 |
"version": "3.0.1", |
1465 | 1909 |
"resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", |
1466 | 1910 |
"integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", |
1467 | 1911 |
"license": "BSD-3-Clause", |
1912 |
+ "engines": { |
|
1913 |
+ "node": ">=12" |
|
1914 |
+ } |
|
1915 |
+ }, |
|
1916 |
+ "node_modules/d3-fetch": { |
|
1917 |
+ "version": "3.0.1", |
|
1918 |
+ "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", |
|
1919 |
+ "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", |
|
1920 |
+ "license": "ISC", |
|
1921 |
+ "dependencies": { |
|
1922 |
+ "d3-dsv": "1 - 3" |
|
1923 |
+ }, |
|
1468 | 1924 |
"engines": { |
1469 | 1925 |
"node": ">=12" |
1470 | 1926 |
} |
... | ... | @@ -1483,6 +1939,15 @@ |
1483 | 1939 |
"node": ">=12" |
1484 | 1940 |
} |
1485 | 1941 |
}, |
1942 |
+ "node_modules/d3-format": { |
|
1943 |
+ "version": "3.1.0", |
|
1944 |
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", |
|
1945 |
+ "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", |
|
1946 |
+ "license": "ISC", |
|
1947 |
+ "engines": { |
|
1948 |
+ "node": ">=12" |
|
1949 |
+ } |
|
1950 |
+ }, |
|
1486 | 1951 |
"node_modules/d3-geo": { |
1487 | 1952 |
"version": "3.1.1", |
1488 | 1953 |
"resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", |
... | ... | @@ -1495,34 +1960,13 @@ |
1495 | 1960 |
"node": ">=12" |
1496 | 1961 |
} |
1497 | 1962 |
}, |
1498 |
- "node_modules/d3-geo-projection": { |
|
1499 |
- "version": "4.0.0", |
|
1500 |
- "resolved": "https://registry.npmjs.org/d3-geo-projection/-/d3-geo-projection-4.0.0.tgz", |
|
1501 |
- "integrity": "sha512-p0bK60CEzph1iqmnxut7d/1kyTmm3UWtPlwdkM31AU+LW+BXazd5zJdoCn7VFxNCHXRngPHRnsNn5uGjLRGndg==", |
|
1963 |
+ "node_modules/d3-hierarchy": { |
|
1964 |
+ "version": "3.1.2", |
|
1965 |
+ "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", |
|
1966 |
+ "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", |
|
1502 | 1967 |
"license": "ISC", |
1503 |
- "dependencies": { |
|
1504 |
- "commander": "7", |
|
1505 |
- "d3-array": "1 - 3", |
|
1506 |
- "d3-geo": "1.12.0 - 3" |
|
1507 |
- }, |
|
1508 |
- "bin": { |
|
1509 |
- "geo2svg": "bin/geo2svg.js", |
|
1510 |
- "geograticule": "bin/geograticule.js", |
|
1511 |
- "geoproject": "bin/geoproject.js", |
|
1512 |
- "geoquantize": "bin/geoquantize.js", |
|
1513 |
- "geostitch": "bin/geostitch.js" |
|
1514 |
- }, |
|
1515 | 1968 |
"engines": { |
1516 | 1969 |
"node": ">=12" |
1517 |
- } |
|
1518 |
- }, |
|
1519 |
- "node_modules/d3-geo-projection/node_modules/commander": { |
|
1520 |
- "version": "7.2.0", |
|
1521 |
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", |
|
1522 |
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", |
|
1523 |
- "license": "MIT", |
|
1524 |
- "engines": { |
|
1525 |
- "node": ">= 10" |
|
1526 | 1970 |
} |
1527 | 1971 |
}, |
1528 | 1972 |
"node_modules/d3-interpolate": { |
... | ... | @@ -1537,6 +1981,24 @@ |
1537 | 1981 |
"node": ">=12" |
1538 | 1982 |
} |
1539 | 1983 |
}, |
1984 |
+ "node_modules/d3-path": { |
|
1985 |
+ "version": "3.1.0", |
|
1986 |
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", |
|
1987 |
+ "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", |
|
1988 |
+ "license": "ISC", |
|
1989 |
+ "engines": { |
|
1990 |
+ "node": ">=12" |
|
1991 |
+ } |
|
1992 |
+ }, |
|
1993 |
+ "node_modules/d3-polygon": { |
|
1994 |
+ "version": "3.0.1", |
|
1995 |
+ "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", |
|
1996 |
+ "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", |
|
1997 |
+ "license": "ISC", |
|
1998 |
+ "engines": { |
|
1999 |
+ "node": ">=12" |
|
2000 |
+ } |
|
2001 |
+ }, |
|
1540 | 2002 |
"node_modules/d3-quadtree": { |
1541 | 2003 |
"version": "3.0.1", |
1542 | 2004 |
"resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", |
... | ... | @@ -1546,11 +2008,125 @@ |
1546 | 2008 |
"node": ">=12" |
1547 | 2009 |
} |
1548 | 2010 |
}, |
2011 |
+ "node_modules/d3-random": { |
|
2012 |
+ "version": "3.0.1", |
|
2013 |
+ "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", |
|
2014 |
+ "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", |
|
2015 |
+ "license": "ISC", |
|
2016 |
+ "engines": { |
|
2017 |
+ "node": ">=12" |
|
2018 |
+ } |
|
2019 |
+ }, |
|
2020 |
+ "node_modules/d3-sankey": { |
|
2021 |
+ "version": "0.12.3", |
|
2022 |
+ "resolved": "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.12.3.tgz", |
|
2023 |
+ "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", |
|
2024 |
+ "license": "BSD-3-Clause", |
|
2025 |
+ "dependencies": { |
|
2026 |
+ "d3-array": "1 - 2", |
|
2027 |
+ "d3-shape": "^1.2.0" |
|
2028 |
+ } |
|
2029 |
+ }, |
|
2030 |
+ "node_modules/d3-sankey/node_modules/d3-array": { |
|
2031 |
+ "version": "2.12.1", |
|
2032 |
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz", |
|
2033 |
+ "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", |
|
2034 |
+ "license": "BSD-3-Clause", |
|
2035 |
+ "dependencies": { |
|
2036 |
+ "internmap": "^1.0.0" |
|
2037 |
+ } |
|
2038 |
+ }, |
|
2039 |
+ "node_modules/d3-sankey/node_modules/d3-path": { |
|
2040 |
+ "version": "1.0.9", |
|
2041 |
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", |
|
2042 |
+ "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==", |
|
2043 |
+ "license": "BSD-3-Clause" |
|
2044 |
+ }, |
|
2045 |
+ "node_modules/d3-sankey/node_modules/d3-shape": { |
|
2046 |
+ "version": "1.3.7", |
|
2047 |
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", |
|
2048 |
+ "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", |
|
2049 |
+ "license": "BSD-3-Clause", |
|
2050 |
+ "dependencies": { |
|
2051 |
+ "d3-path": "1" |
|
2052 |
+ } |
|
2053 |
+ }, |
|
2054 |
+ "node_modules/d3-sankey/node_modules/internmap": { |
|
2055 |
+ "version": "1.0.1", |
|
2056 |
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", |
|
2057 |
+ "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==", |
|
2058 |
+ "license": "ISC" |
|
2059 |
+ }, |
|
2060 |
+ "node_modules/d3-scale": { |
|
2061 |
+ "version": "4.0.2", |
|
2062 |
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", |
|
2063 |
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", |
|
2064 |
+ "license": "ISC", |
|
2065 |
+ "dependencies": { |
|
2066 |
+ "d3-array": "2.10.0 - 3", |
|
2067 |
+ "d3-format": "1 - 3", |
|
2068 |
+ "d3-interpolate": "1.2.0 - 3", |
|
2069 |
+ "d3-time": "2.1.1 - 3", |
|
2070 |
+ "d3-time-format": "2 - 4" |
|
2071 |
+ }, |
|
2072 |
+ "engines": { |
|
2073 |
+ "node": ">=12" |
|
2074 |
+ } |
|
2075 |
+ }, |
|
2076 |
+ "node_modules/d3-scale-chromatic": { |
|
2077 |
+ "version": "3.1.0", |
|
2078 |
+ "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", |
|
2079 |
+ "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", |
|
2080 |
+ "license": "ISC", |
|
2081 |
+ "dependencies": { |
|
2082 |
+ "d3-color": "1 - 3", |
|
2083 |
+ "d3-interpolate": "1 - 3" |
|
2084 |
+ }, |
|
2085 |
+ "engines": { |
|
2086 |
+ "node": ">=12" |
|
2087 |
+ } |
|
2088 |
+ }, |
|
1549 | 2089 |
"node_modules/d3-selection": { |
1550 | 2090 |
"version": "3.0.0", |
1551 | 2091 |
"resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", |
1552 | 2092 |
"integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", |
1553 | 2093 |
"license": "ISC", |
2094 |
+ "engines": { |
|
2095 |
+ "node": ">=12" |
|
2096 |
+ } |
|
2097 |
+ }, |
|
2098 |
+ "node_modules/d3-shape": { |
|
2099 |
+ "version": "3.2.0", |
|
2100 |
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", |
|
2101 |
+ "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", |
|
2102 |
+ "license": "ISC", |
|
2103 |
+ "dependencies": { |
|
2104 |
+ "d3-path": "^3.1.0" |
|
2105 |
+ }, |
|
2106 |
+ "engines": { |
|
2107 |
+ "node": ">=12" |
|
2108 |
+ } |
|
2109 |
+ }, |
|
2110 |
+ "node_modules/d3-time": { |
|
2111 |
+ "version": "3.1.0", |
|
2112 |
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", |
|
2113 |
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", |
|
2114 |
+ "license": "ISC", |
|
2115 |
+ "dependencies": { |
|
2116 |
+ "d3-array": "2 - 3" |
|
2117 |
+ }, |
|
2118 |
+ "engines": { |
|
2119 |
+ "node": ">=12" |
|
2120 |
+ } |
|
2121 |
+ }, |
|
2122 |
+ "node_modules/d3-time-format": { |
|
2123 |
+ "version": "4.1.0", |
|
2124 |
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", |
|
2125 |
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", |
|
2126 |
+ "license": "ISC", |
|
2127 |
+ "dependencies": { |
|
2128 |
+ "d3-time": "1 - 3" |
|
2129 |
+ }, |
|
1554 | 2130 |
"engines": { |
1555 | 2131 |
"node": ">=12" |
1556 | 2132 |
} |
... | ... | @@ -1581,6 +2157,92 @@ |
1581 | 2157 |
}, |
1582 | 2158 |
"peerDependencies": { |
1583 | 2159 |
"d3-selection": "2 - 3" |
2160 |
+ } |
|
2161 |
+ }, |
|
2162 |
+ "node_modules/d3-voronoi-map": { |
|
2163 |
+ "version": "2.1.1", |
|
2164 |
+ "resolved": "https://registry.npmjs.org/d3-voronoi-map/-/d3-voronoi-map-2.1.1.tgz", |
|
2165 |
+ "integrity": "sha512-mCXfz/kD9IQxjHaU2IMjkO8fSo4J6oysPR2iL+omDsCy1i1Qn6BQ/e4hEAW8C6ms2kfuHwqtbNom80Hih94YsA==", |
|
2166 |
+ "license": "BSD-3-Clause", |
|
2167 |
+ "dependencies": { |
|
2168 |
+ "d3-dispatch": "2.*", |
|
2169 |
+ "d3-polygon": "2.*", |
|
2170 |
+ "d3-timer": "2.*", |
|
2171 |
+ "d3-weighted-voronoi": "1.*" |
|
2172 |
+ } |
|
2173 |
+ }, |
|
2174 |
+ "node_modules/d3-voronoi-map/node_modules/d3-dispatch": { |
|
2175 |
+ "version": "2.0.0", |
|
2176 |
+ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-2.0.0.tgz", |
|
2177 |
+ "integrity": "sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA==", |
|
2178 |
+ "license": "BSD-3-Clause" |
|
2179 |
+ }, |
|
2180 |
+ "node_modules/d3-voronoi-map/node_modules/d3-polygon": { |
|
2181 |
+ "version": "2.0.0", |
|
2182 |
+ "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-2.0.0.tgz", |
|
2183 |
+ "integrity": "sha512-MsexrCK38cTGermELs0cO1d79DcTsQRN7IWMJKczD/2kBjzNXxLUWP33qRF6VDpiLV/4EI4r6Gs0DAWQkE8pSQ==", |
|
2184 |
+ "license": "BSD-3-Clause" |
|
2185 |
+ }, |
|
2186 |
+ "node_modules/d3-voronoi-map/node_modules/d3-timer": { |
|
2187 |
+ "version": "2.0.0", |
|
2188 |
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-2.0.0.tgz", |
|
2189 |
+ "integrity": "sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA==", |
|
2190 |
+ "license": "BSD-3-Clause" |
|
2191 |
+ }, |
|
2192 |
+ "node_modules/d3-voronoi-treemap": { |
|
2193 |
+ "version": "1.1.2", |
|
2194 |
+ "resolved": "https://registry.npmjs.org/d3-voronoi-treemap/-/d3-voronoi-treemap-1.1.2.tgz", |
|
2195 |
+ "integrity": "sha512-7odu9HdG/yLPWwzDteJq4yd9Q/NwgQV7IE/u36VQtcCK7k1sZwDqbkHCeMKNTBsq5mQjDwolTsrXcU0j8ZEMCA==", |
|
2196 |
+ "license": "BSD-3-Clause", |
|
2197 |
+ "dependencies": { |
|
2198 |
+ "d3-voronoi-map": "2.*" |
|
2199 |
+ } |
|
2200 |
+ }, |
|
2201 |
+ "node_modules/d3-weighted-voronoi": { |
|
2202 |
+ "version": "1.1.3", |
|
2203 |
+ "resolved": "https://registry.npmjs.org/d3-weighted-voronoi/-/d3-weighted-voronoi-1.1.3.tgz", |
|
2204 |
+ "integrity": "sha512-C3WdvSKl9aqhAy+f3QT3PPsQG6V+ajDfYO3BSclQDSD+araW2xDBFIH67aKzsSuuuKaX8K2y2dGq1fq/dWTVig==", |
|
2205 |
+ "license": "BSD-3-Clause", |
|
2206 |
+ "dependencies": { |
|
2207 |
+ "d3-array": "2", |
|
2208 |
+ "d3-polygon": "2" |
|
2209 |
+ } |
|
2210 |
+ }, |
|
2211 |
+ "node_modules/d3-weighted-voronoi/node_modules/d3-array": { |
|
2212 |
+ "version": "2.12.1", |
|
2213 |
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz", |
|
2214 |
+ "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", |
|
2215 |
+ "license": "BSD-3-Clause", |
|
2216 |
+ "dependencies": { |
|
2217 |
+ "internmap": "^1.0.0" |
|
2218 |
+ } |
|
2219 |
+ }, |
|
2220 |
+ "node_modules/d3-weighted-voronoi/node_modules/d3-polygon": { |
|
2221 |
+ "version": "2.0.0", |
|
2222 |
+ "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-2.0.0.tgz", |
|
2223 |
+ "integrity": "sha512-MsexrCK38cTGermELs0cO1d79DcTsQRN7IWMJKczD/2kBjzNXxLUWP33qRF6VDpiLV/4EI4r6Gs0DAWQkE8pSQ==", |
|
2224 |
+ "license": "BSD-3-Clause" |
|
2225 |
+ }, |
|
2226 |
+ "node_modules/d3-weighted-voronoi/node_modules/internmap": { |
|
2227 |
+ "version": "1.0.1", |
|
2228 |
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", |
|
2229 |
+ "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==", |
|
2230 |
+ "license": "ISC" |
|
2231 |
+ }, |
|
2232 |
+ "node_modules/d3-zoom": { |
|
2233 |
+ "version": "3.0.0", |
|
2234 |
+ "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", |
|
2235 |
+ "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", |
|
2236 |
+ "license": "ISC", |
|
2237 |
+ "dependencies": { |
|
2238 |
+ "d3-dispatch": "1 - 3", |
|
2239 |
+ "d3-drag": "2 - 3", |
|
2240 |
+ "d3-interpolate": "1 - 3", |
|
2241 |
+ "d3-selection": "2 - 3", |
|
2242 |
+ "d3-transition": "2 - 3" |
|
2243 |
+ }, |
|
2244 |
+ "engines": { |
|
2245 |
+ "node": ">=12" |
|
1584 | 2246 |
} |
1585 | 2247 |
}, |
1586 | 2248 |
"node_modules/debug": { |
... | ... | @@ -1652,6 +2314,15 @@ |
1652 | 2314 |
}, |
1653 | 2315 |
"funding": { |
1654 | 2316 |
"url": "https://github.com/sponsors/ljharb" |
2317 |
+ } |
|
2318 |
+ }, |
|
2319 |
+ "node_modules/delaunator": { |
|
2320 |
+ "version": "5.0.1", |
|
2321 |
+ "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", |
|
2322 |
+ "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", |
|
2323 |
+ "license": "ISC", |
|
2324 |
+ "dependencies": { |
|
2325 |
+ "robust-predicates": "^3.0.2" |
|
1655 | 2326 |
} |
1656 | 2327 |
}, |
1657 | 2328 |
"node_modules/delayed-stream": { |
... | ... | @@ -2105,6 +2776,12 @@ |
2105 | 2776 |
"bin": { |
2106 | 2777 |
"flat": "cli.js" |
2107 | 2778 |
} |
2779 |
+ }, |
|
2780 |
+ "node_modules/flatpickr": { |
|
2781 |
+ "version": "4.6.13", |
|
2782 |
+ "resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.13.tgz", |
|
2783 |
+ "integrity": "sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==", |
|
2784 |
+ "license": "MIT" |
|
2108 | 2785 |
}, |
2109 | 2786 |
"node_modules/follow-redirects": { |
2110 | 2787 |
"version": "1.15.6", |
... | ... | @@ -2786,6 +3463,12 @@ |
2786 | 3463 |
"semver": "bin/semver" |
2787 | 3464 |
} |
2788 | 3465 |
}, |
3466 |
+ "node_modules/markerjs2": { |
|
3467 |
+ "version": "2.32.1", |
|
3468 |
+ "resolved": "https://registry.npmjs.org/markerjs2/-/markerjs2-2.32.1.tgz", |
|
3469 |
+ "integrity": "sha512-OGBINMGhXwTXZF/k0ky9vciPm8C3/bsDZUJroZrIvoX0xv3OWYBEDiUSmgRpiLkCv5Z4Q7RaYxhza/iafc25zw==", |
|
3470 |
+ "license": "SEE LICENSE IN LICENSE" |
|
3471 |
+ }, |
|
2789 | 3472 |
"node_modules/media-typer": { |
2790 | 3473 |
"version": "0.3.0", |
2791 | 3474 |
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", |
... | ... | @@ -3113,12 +3796,6 @@ |
3113 | 3796 |
"node": ">=0.10.0" |
3114 | 3797 |
} |
3115 | 3798 |
}, |
3116 |
- "node_modules/performance-now": { |
|
3117 |
- "version": "2.1.0", |
|
3118 |
- "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", |
|
3119 |
- "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", |
|
3120 |
- "license": "MIT" |
|
3121 |
- }, |
|
3122 | 3799 |
"node_modules/pg": { |
3123 | 3800 |
"version": "8.8.0", |
3124 | 3801 |
"resolved": "https://registry.npmjs.org/pg/-/pg-8.8.0.tgz", |
... | ... | @@ -3441,15 +4118,6 @@ |
3441 | 4118 |
"url": "https://github.com/sponsors/ljharb" |
3442 | 4119 |
} |
3443 | 4120 |
}, |
3444 |
- "node_modules/raf": { |
|
3445 |
- "version": "3.4.1", |
|
3446 |
- "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", |
|
3447 |
- "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", |
|
3448 |
- "license": "MIT", |
|
3449 |
- "dependencies": { |
|
3450 |
- "performance-now": "^2.1.0" |
|
3451 |
- } |
|
3452 |
- }, |
|
3453 | 4121 |
"node_modules/randombytes": { |
3454 | 4122 |
"version": "2.1.0", |
3455 | 4123 |
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", |
... | ... | @@ -3508,12 +4176,6 @@ |
3508 | 4176 |
"node": ">= 10.13.0" |
3509 | 4177 |
} |
3510 | 4178 |
}, |
3511 |
- "node_modules/regenerator-runtime": { |
|
3512 |
- "version": "0.14.1", |
|
3513 |
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", |
|
3514 |
- "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", |
|
3515 |
- "license": "MIT" |
|
3516 |
- }, |
|
3517 | 4179 |
"node_modules/regexp.prototype.flags": { |
3518 | 4180 |
"version": "1.5.2", |
3519 | 4181 |
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", |
... | ... | @@ -3531,12 +4193,6 @@ |
3531 | 4193 |
"funding": { |
3532 | 4194 |
"url": "https://github.com/sponsors/ljharb" |
3533 | 4195 |
} |
3534 |
- }, |
|
3535 |
- "node_modules/regression": { |
|
3536 |
- "version": "2.0.1", |
|
3537 |
- "resolved": "https://registry.npmjs.org/regression/-/regression-2.0.1.tgz", |
|
3538 |
- "integrity": "sha512-A4XYsc37dsBaNOgEjkJKzfJlE394IMmUPlI/p3TTI9u3T+2a+eox5Pr/CPUqF0eszeWZJPAc6QkroAhuUpWDJQ==", |
|
3539 |
- "license": "MIT" |
|
3540 | 4196 |
}, |
3541 | 4197 |
"node_modules/resolve": { |
3542 | 4198 |
"version": "1.22.8", |
... | ... | @@ -3578,14 +4234,17 @@ |
3578 | 4234 |
"node": ">=8" |
3579 | 4235 |
} |
3580 | 4236 |
}, |
3581 |
- "node_modules/rgbcolor": { |
|
3582 |
- "version": "1.0.1", |
|
3583 |
- "resolved": "https://registry.npmjs.org/rgbcolor/-/rgbcolor-1.0.1.tgz", |
|
3584 |
- "integrity": "sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==", |
|
3585 |
- "license": "MIT OR SEE LICENSE IN FEEL-FREE.md", |
|
3586 |
- "engines": { |
|
3587 |
- "node": ">= 0.8.15" |
|
3588 |
- } |
|
4237 |
+ "node_modules/robust-predicates": { |
|
4238 |
+ "version": "3.0.2", |
|
4239 |
+ "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", |
|
4240 |
+ "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", |
|
4241 |
+ "license": "Unlicense" |
|
4242 |
+ }, |
|
4243 |
+ "node_modules/rw": { |
|
4244 |
+ "version": "1.3.3", |
|
4245 |
+ "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", |
|
4246 |
+ "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", |
|
4247 |
+ "license": "BSD-3-Clause" |
|
3589 | 4248 |
}, |
3590 | 4249 |
"node_modules/safe-buffer": { |
3591 | 4250 |
"version": "5.2.1", |
... | ... | @@ -3636,6 +4295,12 @@ |
3636 | 4295 |
"type": "opencollective", |
3637 | 4296 |
"url": "https://opencollective.com/webpack" |
3638 | 4297 |
} |
4298 |
+ }, |
|
4299 |
+ "node_modules/seedrandom": { |
|
4300 |
+ "version": "3.0.5", |
|
4301 |
+ "resolved": "https://registry.npmjs.org/seedrandom/-/seedrandom-3.0.5.tgz", |
|
4302 |
+ "integrity": "sha512-8OwmbklUNzwezjGInmZ+2clQmExQPvomqjL7LFqOYqtmuxRgQYqOD3mHaU+MvZn5FLUeVxVfQjwLZW/n/JFuqg==", |
|
4303 |
+ "license": "MIT" |
|
3639 | 4304 |
}, |
3640 | 4305 |
"node_modules/semver": { |
3641 | 4306 |
"version": "6.3.1", |
... | ... | @@ -3860,15 +4525,6 @@ |
3860 | 4525 |
"node": ">= 10.x" |
3861 | 4526 |
} |
3862 | 4527 |
}, |
3863 |
- "node_modules/stackblur-canvas": { |
|
3864 |
- "version": "2.7.0", |
|
3865 |
- "resolved": "https://registry.npmjs.org/stackblur-canvas/-/stackblur-canvas-2.7.0.tgz", |
|
3866 |
- "integrity": "sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==", |
|
3867 |
- "license": "MIT", |
|
3868 |
- "engines": { |
|
3869 |
- "node": ">=0.1.14" |
|
3870 |
- } |
|
3871 |
- }, |
|
3872 | 4528 |
"node_modules/statuses": { |
3873 | 4529 |
"version": "2.0.1", |
3874 | 4530 |
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", |
... | ... | @@ -3902,6 +4558,12 @@ |
3902 | 4558 |
"url": "https://github.com/sponsors/ljharb" |
3903 | 4559 |
} |
3904 | 4560 |
}, |
4561 |
+ "node_modules/svg-arc-to-cubic-bezier": { |
|
4562 |
+ "version": "3.2.0", |
|
4563 |
+ "resolved": "https://registry.npmjs.org/svg-arc-to-cubic-bezier/-/svg-arc-to-cubic-bezier-3.2.0.tgz", |
|
4564 |
+ "integrity": "sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==", |
|
4565 |
+ "license": "ISC" |
|
4566 |
+ }, |
|
3905 | 4567 |
"node_modules/tapable": { |
3906 | 4568 |
"version": "2.2.1", |
3907 | 4569 |
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", |
--- package.json
+++ package.json
... | ... | @@ -1,6 +1,6 @@ |
1 | 1 |
{ |
2 | 2 |
"dependencies": { |
3 |
- "@amcharts/amcharts4": "^4.10.39", |
|
3 |
+ "@amcharts/amcharts5": "^5.10.1", |
|
4 | 4 |
"@babel/cli": "7.19.3", |
5 | 5 |
"@babel/core": "7.19.3", |
6 | 6 |
"@jamescoyle/vue-icon": "^0.1.2", |
--- webpack.config.js
+++ webpack.config.js
... | ... | @@ -3,6 +3,7 @@ |
3 | 3 |
const {PROJECT_NAME, BASE_DIR, SERVICE_STATUS} = require('./Global'); |
4 | 4 |
|
5 | 5 |
module.exports = { |
6 |
+ |
|
6 | 7 |
name: PROJECT_NAME, |
7 | 8 |
mode: SERVICE_STATUS, |
8 | 9 |
devtool: 'eval', |
... | ... | @@ -12,6 +13,7 @@ |
12 | 13 |
}, |
13 | 14 |
|
14 | 15 |
module: { |
16 |
+ |
|
15 | 17 |
rules: [{ |
16 | 18 |
test: /\.vue?$/, |
17 | 19 |
loader: 'vue-loader', |
... | ... | @@ -39,4 +41,11 @@ |
39 | 41 |
path: `${BASE_DIR}/client/build`, // __dirname: webpack.config.js 파일이 위치한 경로 |
40 | 42 |
filename: 'bundle.js' |
41 | 43 |
}, |
44 |
+ configureWebpack: { |
|
45 |
+ resolve: { |
|
46 |
+ alias: { |
|
47 |
+ "@amcharts/amcharts5": "@amcharts/amcharts5/dist/amcharts5.esm.js" |
|
48 |
+ } |
|
49 |
+ } |
|
50 |
+ }, |
|
42 | 51 |
}(파일 끝에 줄바꿈 문자 없음) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?