@oliasoft-open-source/charts-library 3.5.5 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2421 -1990
- package/dist/index.js.map +1 -1
- package/dist/src/components/bar-chart/bar-chart-default-props.d.ts +1 -1
- package/dist/src/components/bar-chart/bar-chart.d.ts +1 -1
- package/dist/src/components/bar-chart/bar-chart.stories.d.ts +657 -0
- package/dist/src/components/common/helpers/container.d.ts +18 -0
- package/dist/src/components/common/helpers/get-custom-legend-plugin-example.d.ts +8 -0
- package/dist/src/components/common/helpers/range/estimate-close-values.test.d.ts +1 -0
- package/dist/src/components/common/helpers/range/range.test.d.ts +1 -0
- package/dist/src/components/common/helpers/text.d.ts +1 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options-form-state.test.d.ts +1 -0
- package/dist/src/components/line-chart/controls/axes-options/axes-options.d.ts +1 -1
- package/dist/src/components/line-chart/controls/controls-portal.d.ts +1 -1
- package/dist/src/components/line-chart/controls/controls.d.ts +1 -1
- package/dist/src/components/line-chart/controls/drag-options.d.ts +1 -1
- package/dist/src/components/line-chart/controls/legend-options.d.ts +1 -0
- package/dist/src/components/line-chart/controls/line-options.d.ts +1 -1
- package/dist/src/components/line-chart/hooks/use-chart-functions.d.ts +3 -1
- package/dist/src/components/line-chart/initialize/initialize-line-chart.test.d.ts +1 -0
- package/dist/src/components/line-chart/legend/legend-dropzone.d.ts +1 -1
- package/dist/src/components/line-chart/legend/legend-item.d.ts +1 -1
- package/dist/src/components/line-chart/legend/legend.d.ts +1 -1
- package/dist/src/components/line-chart/line-chart-get-default-props.d.ts +1 -1
- package/dist/src/components/line-chart/line-chart.d.ts +1 -1
- package/dist/src/components/line-chart/line-chart.stories.d.ts +1009 -0
- package/dist/src/components/line-chart/plugins/line-chart.minor-gridlines-plugin.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/__tests__/get-annotations-data.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/__tests__/get-axes-data-from-metasets.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/__tests__/get-axes-type-from-key.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/axis-formatting/axis-formatting.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/axis-scales/axis-scales.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/__tests__/get-alignment-condition.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/__tests__/get-alignment-data.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/datalabels-alignment/__tests__/get-datalabels-position.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/get-line-chart-tooltips.test.d.ts +1 -0
- package/dist/src/components/line-chart/utils/translations/get-translations.test.d.ts +1 -0
- package/dist/src/components/pie-chart/pie-chart.d.ts +1 -1
- package/dist/src/components/pie-chart/pie-chart.stories.d.ts +263 -0
- package/dist/src/components/scatter-chart/scatter-chart.d.ts +1 -1
- package/dist/src/components/scatter-chart/scatter-chart.stories.d.ts +118 -0
- package/package.json +15 -15
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,5 +4,5 @@ import { IPieChartProps } from './pie-chart.interface';
|
|
|
4
4
|
* @param {props: IPieChartProps} IPieChartProps
|
|
5
5
|
* ./pie-chart.interface
|
|
6
6
|
*/
|
|
7
|
-
declare const PieChart: (props: IPieChartProps) => JSX.Element;
|
|
7
|
+
declare const PieChart: (props: IPieChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export { PieChart };
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { PieChart as component };
|
|
4
|
+
export namespace args {
|
|
5
|
+
export { singleChart as chart };
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export function Default(args: any): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export function MultipleSets(args: any): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export namespace MultipleSets {
|
|
12
|
+
export namespace args_1 {
|
|
13
|
+
export { multiplePieData as chart };
|
|
14
|
+
}
|
|
15
|
+
export { args_1 as args };
|
|
16
|
+
}
|
|
17
|
+
export function MultipleSetsStacked(args: any): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export namespace MultipleSetsStacked {
|
|
19
|
+
export namespace args_2 {
|
|
20
|
+
export { stackedMultiplePieData as chart };
|
|
21
|
+
}
|
|
22
|
+
export { args_2 as args };
|
|
23
|
+
}
|
|
24
|
+
export function Datalabels(args: any): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export namespace Datalabels {
|
|
26
|
+
export namespace args_3 {
|
|
27
|
+
export { dataLabelsChart as chart };
|
|
28
|
+
}
|
|
29
|
+
export { args_3 as args };
|
|
30
|
+
}
|
|
31
|
+
export function DatalabelsValues(args: any): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export namespace DatalabelsValues {
|
|
33
|
+
export namespace args_4 {
|
|
34
|
+
export { dataLabelsNumberChart as chart };
|
|
35
|
+
}
|
|
36
|
+
export { args_4 as args };
|
|
37
|
+
}
|
|
38
|
+
export function DatalabelsInTooltips(args: any): import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export namespace DatalabelsInTooltips {
|
|
40
|
+
export namespace args_5 {
|
|
41
|
+
export { dataLabelssTooltips as chart };
|
|
42
|
+
}
|
|
43
|
+
export { args_5 as args };
|
|
44
|
+
}
|
|
45
|
+
export function Animated(args: any): import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
export namespace Animated {
|
|
47
|
+
export namespace args_6 {
|
|
48
|
+
export { animatedChart as chart };
|
|
49
|
+
}
|
|
50
|
+
export { args_6 as args };
|
|
51
|
+
}
|
|
52
|
+
export function Doughnut(args: any): import("react/jsx-runtime").JSX.Element;
|
|
53
|
+
export namespace Doughnut {
|
|
54
|
+
export namespace args_7 {
|
|
55
|
+
export { doughnutPercentage as chart };
|
|
56
|
+
}
|
|
57
|
+
export { args_7 as args };
|
|
58
|
+
}
|
|
59
|
+
export function DoughnutFixedCutout(args: any): import("react/jsx-runtime").JSX.Element;
|
|
60
|
+
export namespace DoughnutFixedCutout {
|
|
61
|
+
export namespace args_8 {
|
|
62
|
+
export { doughnutNumber as chart };
|
|
63
|
+
}
|
|
64
|
+
export { args_8 as args };
|
|
65
|
+
}
|
|
66
|
+
export function HoverOffset(args: any): import("react/jsx-runtime").JSX.Element;
|
|
67
|
+
export namespace HoverOffset {
|
|
68
|
+
const args_9: {
|
|
69
|
+
chart: {
|
|
70
|
+
data: {
|
|
71
|
+
labels: string[];
|
|
72
|
+
datasets: {
|
|
73
|
+
label: string;
|
|
74
|
+
data: number[];
|
|
75
|
+
hoverOffset: number;
|
|
76
|
+
}[];
|
|
77
|
+
};
|
|
78
|
+
options: {
|
|
79
|
+
title: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
} | {
|
|
83
|
+
chart: {
|
|
84
|
+
data: {
|
|
85
|
+
labels: string[];
|
|
86
|
+
datasets: {
|
|
87
|
+
label: string;
|
|
88
|
+
offset: number;
|
|
89
|
+
data: number[];
|
|
90
|
+
}[];
|
|
91
|
+
};
|
|
92
|
+
options: {
|
|
93
|
+
title: string;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
export { args_9 as args };
|
|
98
|
+
}
|
|
99
|
+
export function SegmentOffset(args: any): import("react/jsx-runtime").JSX.Element;
|
|
100
|
+
import { PieChart } from './pie-chart';
|
|
101
|
+
declare namespace singleChart {
|
|
102
|
+
namespace data {
|
|
103
|
+
export { labels1 as labels };
|
|
104
|
+
export const datasets: {
|
|
105
|
+
label: string;
|
|
106
|
+
data: number[];
|
|
107
|
+
}[];
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
declare namespace multiplePieData {
|
|
111
|
+
export namespace data_1 {
|
|
112
|
+
export { labels1 as labels };
|
|
113
|
+
const datasets_1: {
|
|
114
|
+
label: string;
|
|
115
|
+
data: number[];
|
|
116
|
+
}[];
|
|
117
|
+
export { datasets_1 as datasets };
|
|
118
|
+
}
|
|
119
|
+
export { data_1 as data };
|
|
120
|
+
}
|
|
121
|
+
declare namespace stackedMultiplePieData {
|
|
122
|
+
export namespace data_2 {
|
|
123
|
+
export { labels1 as labels };
|
|
124
|
+
const datasets_2: {
|
|
125
|
+
label: string;
|
|
126
|
+
data: number[];
|
|
127
|
+
}[];
|
|
128
|
+
export { datasets_2 as datasets };
|
|
129
|
+
}
|
|
130
|
+
export { data_2 as data };
|
|
131
|
+
export namespace options {
|
|
132
|
+
const title_1: string;
|
|
133
|
+
export { title_1 as title };
|
|
134
|
+
export namespace graph {
|
|
135
|
+
const stacked: boolean;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
declare namespace dataLabelsChart {
|
|
140
|
+
export namespace data_3 {
|
|
141
|
+
export { labels1 as labels };
|
|
142
|
+
const datasets_3: {
|
|
143
|
+
label: string;
|
|
144
|
+
data: {
|
|
145
|
+
value: number;
|
|
146
|
+
label: string;
|
|
147
|
+
}[];
|
|
148
|
+
}[];
|
|
149
|
+
export { datasets_3 as datasets };
|
|
150
|
+
}
|
|
151
|
+
export { data_3 as data };
|
|
152
|
+
export namespace options_1 {
|
|
153
|
+
const title_2: string;
|
|
154
|
+
export { title_2 as title };
|
|
155
|
+
export namespace graph_1 {
|
|
156
|
+
const showDataLabels: boolean;
|
|
157
|
+
}
|
|
158
|
+
export { graph_1 as graph };
|
|
159
|
+
}
|
|
160
|
+
export { options_1 as options };
|
|
161
|
+
}
|
|
162
|
+
declare namespace dataLabelsNumberChart {
|
|
163
|
+
export namespace data_4 {
|
|
164
|
+
export { labels1 as labels };
|
|
165
|
+
const datasets_4: {
|
|
166
|
+
label: string;
|
|
167
|
+
data: number[];
|
|
168
|
+
}[];
|
|
169
|
+
export { datasets_4 as datasets };
|
|
170
|
+
}
|
|
171
|
+
export { data_4 as data };
|
|
172
|
+
export namespace options_2 {
|
|
173
|
+
const title_3: string;
|
|
174
|
+
export { title_3 as title };
|
|
175
|
+
export namespace graph_2 {
|
|
176
|
+
const showDataLabels_1: boolean;
|
|
177
|
+
export { showDataLabels_1 as showDataLabels };
|
|
178
|
+
}
|
|
179
|
+
export { graph_2 as graph };
|
|
180
|
+
}
|
|
181
|
+
export { options_2 as options };
|
|
182
|
+
}
|
|
183
|
+
declare namespace dataLabelssTooltips {
|
|
184
|
+
export namespace data_5 {
|
|
185
|
+
export { labels1 as labels };
|
|
186
|
+
const datasets_5: {
|
|
187
|
+
label: string;
|
|
188
|
+
data: {
|
|
189
|
+
value: number;
|
|
190
|
+
label: string;
|
|
191
|
+
}[];
|
|
192
|
+
}[];
|
|
193
|
+
export { datasets_5 as datasets };
|
|
194
|
+
}
|
|
195
|
+
export { data_5 as data };
|
|
196
|
+
export namespace options_3 {
|
|
197
|
+
const title_4: string;
|
|
198
|
+
export { title_4 as title };
|
|
199
|
+
export namespace tooltip {
|
|
200
|
+
const showLabelsInTooltips: boolean;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
export { options_3 as options };
|
|
204
|
+
}
|
|
205
|
+
declare namespace animatedChart {
|
|
206
|
+
export namespace data_6 {
|
|
207
|
+
export { labels1 as labels };
|
|
208
|
+
const datasets_6: {
|
|
209
|
+
label: string;
|
|
210
|
+
data: number[];
|
|
211
|
+
}[];
|
|
212
|
+
export { datasets_6 as datasets };
|
|
213
|
+
}
|
|
214
|
+
export { data_6 as data };
|
|
215
|
+
export namespace options_4 {
|
|
216
|
+
namespace chartStyling {
|
|
217
|
+
const performanceMode: boolean;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
export { options_4 as options };
|
|
221
|
+
}
|
|
222
|
+
declare namespace doughnutPercentage {
|
|
223
|
+
export namespace data_7 {
|
|
224
|
+
export { labels1 as labels };
|
|
225
|
+
const datasets_7: {
|
|
226
|
+
label: string;
|
|
227
|
+
data: number[];
|
|
228
|
+
}[];
|
|
229
|
+
export { datasets_7 as datasets };
|
|
230
|
+
}
|
|
231
|
+
export { data_7 as data };
|
|
232
|
+
export namespace options_5 {
|
|
233
|
+
const title_5: string;
|
|
234
|
+
export { title_5 as title };
|
|
235
|
+
export namespace graph_3 {
|
|
236
|
+
const cutout: string;
|
|
237
|
+
}
|
|
238
|
+
export { graph_3 as graph };
|
|
239
|
+
}
|
|
240
|
+
export { options_5 as options };
|
|
241
|
+
}
|
|
242
|
+
declare namespace doughnutNumber {
|
|
243
|
+
export namespace data_8 {
|
|
244
|
+
export { labels1 as labels };
|
|
245
|
+
const datasets_8: {
|
|
246
|
+
label: string;
|
|
247
|
+
data: number[];
|
|
248
|
+
}[];
|
|
249
|
+
export { datasets_8 as datasets };
|
|
250
|
+
}
|
|
251
|
+
export { data_8 as data };
|
|
252
|
+
export namespace options_6 {
|
|
253
|
+
const title_6: string;
|
|
254
|
+
export { title_6 as title };
|
|
255
|
+
export namespace graph_4 {
|
|
256
|
+
const cutout_1: number;
|
|
257
|
+
export { cutout_1 as cutout };
|
|
258
|
+
}
|
|
259
|
+
export { graph_4 as graph };
|
|
260
|
+
}
|
|
261
|
+
export { options_6 as options };
|
|
262
|
+
}
|
|
263
|
+
declare const labels1: string[];
|
|
@@ -3,5 +3,5 @@ import { IScatterChartProps } from './scatter-chart.intefrace';
|
|
|
3
3
|
*
|
|
4
4
|
* @param {IScatterChartProps} props
|
|
5
5
|
*/
|
|
6
|
-
declare const ScatterChart: (props: IScatterChartProps) => JSX.Element;
|
|
6
|
+
declare const ScatterChart: (props: IScatterChartProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default ScatterChart;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export const title: string;
|
|
3
|
+
export { ScatterChart as component };
|
|
4
|
+
export namespace args {
|
|
5
|
+
export { chartDefault as chart };
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export default _default;
|
|
9
|
+
export function Default(args: any): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export function Linear(args: any): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export namespace Linear {
|
|
12
|
+
export namespace args_1 {
|
|
13
|
+
export { chartWithLine as chart };
|
|
14
|
+
}
|
|
15
|
+
export { args_1 as args };
|
|
16
|
+
}
|
|
17
|
+
export function MultiLines(args: any): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export namespace MultiLines {
|
|
19
|
+
export namespace args_2 {
|
|
20
|
+
export { multiLines as chart };
|
|
21
|
+
}
|
|
22
|
+
export { args_2 as args };
|
|
23
|
+
}
|
|
24
|
+
export function Reverse(args: any): import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export namespace Reverse {
|
|
26
|
+
export namespace args_3 {
|
|
27
|
+
export { chartReverse as chart };
|
|
28
|
+
}
|
|
29
|
+
export { args_3 as args };
|
|
30
|
+
}
|
|
31
|
+
export function LegendRight(args: any): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export namespace LegendRight {
|
|
33
|
+
export namespace args_4 {
|
|
34
|
+
export { chartLegendRight as chart };
|
|
35
|
+
}
|
|
36
|
+
export { args_4 as args };
|
|
37
|
+
}
|
|
38
|
+
import ScatterChart from './scatter-chart';
|
|
39
|
+
declare namespace chartDefault {
|
|
40
|
+
namespace data {
|
|
41
|
+
const datasets: {
|
|
42
|
+
label: string;
|
|
43
|
+
data: {
|
|
44
|
+
x: number;
|
|
45
|
+
y: number;
|
|
46
|
+
label: string;
|
|
47
|
+
}[];
|
|
48
|
+
borderColor: string;
|
|
49
|
+
backgroundColor: string;
|
|
50
|
+
}[];
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
declare namespace chartWithLine {
|
|
54
|
+
export namespace data_1 {
|
|
55
|
+
const datasets_1: {
|
|
56
|
+
label: string;
|
|
57
|
+
data: {
|
|
58
|
+
x: number;
|
|
59
|
+
y: number;
|
|
60
|
+
label: string;
|
|
61
|
+
}[];
|
|
62
|
+
borderColor: string;
|
|
63
|
+
backgroundColor: string;
|
|
64
|
+
showLine: boolean;
|
|
65
|
+
}[];
|
|
66
|
+
export { datasets_1 as datasets };
|
|
67
|
+
}
|
|
68
|
+
export { data_1 as data };
|
|
69
|
+
}
|
|
70
|
+
declare namespace multiLines {
|
|
71
|
+
export namespace data_2 {
|
|
72
|
+
export { datasetMultiLines as datasets };
|
|
73
|
+
}
|
|
74
|
+
export { data_2 as data };
|
|
75
|
+
}
|
|
76
|
+
declare namespace chartReverse {
|
|
77
|
+
export namespace data_3 {
|
|
78
|
+
export { datasetMultiLines as datasets };
|
|
79
|
+
}
|
|
80
|
+
export { data_3 as data };
|
|
81
|
+
export namespace options {
|
|
82
|
+
namespace scales {
|
|
83
|
+
namespace y {
|
|
84
|
+
const reverse: boolean;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
declare namespace chartLegendRight {
|
|
90
|
+
export namespace data_4 {
|
|
91
|
+
export { datasetMultiLines as datasets };
|
|
92
|
+
}
|
|
93
|
+
export { data_4 as data };
|
|
94
|
+
export namespace options_1 {
|
|
95
|
+
namespace plugins {
|
|
96
|
+
export namespace legend {
|
|
97
|
+
const position: string;
|
|
98
|
+
}
|
|
99
|
+
export namespace title_1 {
|
|
100
|
+
const display: boolean;
|
|
101
|
+
const text: string;
|
|
102
|
+
}
|
|
103
|
+
export { title_1 as title };
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
export { options_1 as options };
|
|
107
|
+
}
|
|
108
|
+
declare const datasetMultiLines: {
|
|
109
|
+
label: string;
|
|
110
|
+
data: {
|
|
111
|
+
x: number;
|
|
112
|
+
y: number;
|
|
113
|
+
label: string;
|
|
114
|
+
}[];
|
|
115
|
+
borderColor: string;
|
|
116
|
+
backgroundColor: string;
|
|
117
|
+
showLine: boolean;
|
|
118
|
+
}[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oliasoft-open-source/charts-library",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "React Chart Library (based on Chart.js and react-chart-js-2)",
|
|
5
5
|
"homepage": "https://gitlab.com/oliasoft-open-source/charts-library",
|
|
6
6
|
"resolutions": {
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"chart.js": "^4.2.1",
|
|
46
|
-
"chartjs-plugin-annotation": "^
|
|
46
|
+
"chartjs-plugin-annotation": "^3.0.1",
|
|
47
47
|
"chartjs-plugin-datalabels": "^2.1.0",
|
|
48
48
|
"chartjs-plugin-dragdata": "^2.2.5",
|
|
49
|
-
"chartjs-plugin-zoom": "^
|
|
49
|
+
"chartjs-plugin-zoom": "^2.0.1",
|
|
50
50
|
"html-to-image": "^1.11.11",
|
|
51
51
|
"react-base64-downloader": "^2.1.7",
|
|
52
52
|
"react-chartjs-2": "^5.2.0",
|
|
53
|
-
"react-dnd": "^
|
|
53
|
+
"react-dnd": "^16.0.1",
|
|
54
54
|
"react-dnd-html5-backend": "^16.0.1",
|
|
55
55
|
"react-icons": "^4",
|
|
56
56
|
"react-use": "^17.4.0"
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"@storybook/addon-mdx-gfm": "^7.0.23",
|
|
64
64
|
"@storybook/react": "^7.0.18",
|
|
65
65
|
"@storybook/react-vite": "^7.0.18",
|
|
66
|
-
"@storybook/testing-library": "^0.
|
|
67
|
-
"@types/react": "^
|
|
68
|
-
"@typescript-eslint/parser": "^
|
|
66
|
+
"@storybook/testing-library": "^0.2.2",
|
|
67
|
+
"@types/react": "^18.2.24",
|
|
68
|
+
"@typescript-eslint/parser": "^6.7.4",
|
|
69
69
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
70
70
|
"ajv": "^8.12.0",
|
|
71
71
|
"ajv-errors": "^3.0.0",
|
|
@@ -73,33 +73,33 @@
|
|
|
73
73
|
"classnames": "^2.3.2",
|
|
74
74
|
"eslint": "^8.23.0",
|
|
75
75
|
"eslint-config-airbnb": "^19.0.4",
|
|
76
|
-
"eslint-config-prettier": "^
|
|
76
|
+
"eslint-config-prettier": "^9.0.0",
|
|
77
77
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
78
78
|
"eslint-plugin-import": "^2.26.0",
|
|
79
79
|
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
80
80
|
"eslint-plugin-react": "^7.31.1",
|
|
81
81
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
82
82
|
"eslint-plugin-storybook": "^0.6.12",
|
|
83
|
-
"eslint-plugin-vitest": "^0.2
|
|
83
|
+
"eslint-plugin-vitest": "^0.3.2",
|
|
84
84
|
"eslint-plugin-vitest-globals": "^1.3.1",
|
|
85
85
|
"http-server": "^14.1.1",
|
|
86
86
|
"husky": "^8.0.1",
|
|
87
87
|
"immer": "^10.0.2",
|
|
88
88
|
"jsdom": "^22.1.0",
|
|
89
89
|
"less": "^4.1.3",
|
|
90
|
-
"lint-staged": "^
|
|
90
|
+
"lint-staged": "^14.0.1",
|
|
91
91
|
"lodash": "^4.17.21",
|
|
92
|
-
"prettier": "
|
|
93
|
-
"react": "^
|
|
94
|
-
"react-dom": "^
|
|
92
|
+
"prettier": "3.0.3",
|
|
93
|
+
"react": "^18.2.0",
|
|
94
|
+
"react-dom": "^18.2.0",
|
|
95
95
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
96
96
|
"storybook": "^7.0.18",
|
|
97
97
|
"storybook-dark-mode": "^3.0.0",
|
|
98
98
|
"vite": "^4.3.9",
|
|
99
99
|
"vite-plugin-css-injected-by-js": "^3.1.1",
|
|
100
|
-
"vite-plugin-dts": "
|
|
100
|
+
"vite-plugin-dts": "3.6.0",
|
|
101
101
|
"vite-tsconfig-paths": "^4.2.0",
|
|
102
|
-
"vitest": "^0.
|
|
102
|
+
"vitest": "^0.34.6"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
105
105
|
"@oliasoft-open-source/react-ui-library": "^3.9.7",
|