@marcoschwartz/lite-ui 0.11.0 → 0.16.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.d.mts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +1021 -466
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1021 -466
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -495,6 +495,8 @@ interface LineChartProps {
|
|
|
495
495
|
data: LineChartSeries[];
|
|
496
496
|
width?: number;
|
|
497
497
|
height?: number;
|
|
498
|
+
aspectRatio?: number;
|
|
499
|
+
responsive?: boolean;
|
|
498
500
|
showGrid?: boolean;
|
|
499
501
|
showXAxis?: boolean;
|
|
500
502
|
showYAxis?: boolean;
|
|
@@ -506,6 +508,7 @@ interface LineChartProps {
|
|
|
506
508
|
className?: string;
|
|
507
509
|
xAxisLabel?: string;
|
|
508
510
|
yAxisLabel?: string;
|
|
511
|
+
baseFontSize?: number;
|
|
509
512
|
}
|
|
510
513
|
declare const LineChart: React.FC<LineChartProps>;
|
|
511
514
|
|
|
@@ -522,6 +525,8 @@ interface BarChartProps {
|
|
|
522
525
|
data: BarChartSeries[];
|
|
523
526
|
width?: number;
|
|
524
527
|
height?: number;
|
|
528
|
+
aspectRatio?: number;
|
|
529
|
+
responsive?: boolean;
|
|
525
530
|
showGrid?: boolean;
|
|
526
531
|
showXAxis?: boolean;
|
|
527
532
|
showYAxis?: boolean;
|
|
@@ -534,6 +539,8 @@ interface BarChartProps {
|
|
|
534
539
|
className?: string;
|
|
535
540
|
xAxisLabel?: string;
|
|
536
541
|
yAxisLabel?: string;
|
|
542
|
+
baseFontSize?: number;
|
|
543
|
+
colors?: string[];
|
|
537
544
|
}
|
|
538
545
|
declare const BarChart: React.FC<BarChartProps>;
|
|
539
546
|
|
|
@@ -550,6 +557,8 @@ interface AreaChartProps {
|
|
|
550
557
|
data: AreaChartSeries[];
|
|
551
558
|
width?: number;
|
|
552
559
|
height?: number;
|
|
560
|
+
aspectRatio?: number;
|
|
561
|
+
responsive?: boolean;
|
|
553
562
|
showGrid?: boolean;
|
|
554
563
|
showXAxis?: boolean;
|
|
555
564
|
showYAxis?: boolean;
|
|
@@ -563,6 +572,7 @@ interface AreaChartProps {
|
|
|
563
572
|
className?: string;
|
|
564
573
|
xAxisLabel?: string;
|
|
565
574
|
yAxisLabel?: string;
|
|
575
|
+
baseFontSize?: number;
|
|
566
576
|
}
|
|
567
577
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
568
578
|
|
|
@@ -575,6 +585,8 @@ interface PieChartProps {
|
|
|
575
585
|
data: PieChartDataPoint[];
|
|
576
586
|
width?: number;
|
|
577
587
|
height?: number;
|
|
588
|
+
aspectRatio?: number;
|
|
589
|
+
responsive?: boolean;
|
|
578
590
|
showLegend?: boolean;
|
|
579
591
|
showLabels?: boolean;
|
|
580
592
|
showValues?: boolean;
|
|
@@ -582,6 +594,7 @@ interface PieChartProps {
|
|
|
582
594
|
donut?: boolean;
|
|
583
595
|
donutWidth?: number;
|
|
584
596
|
className?: string;
|
|
597
|
+
baseFontSize?: number;
|
|
585
598
|
}
|
|
586
599
|
declare const PieChart: React.FC<PieChartProps>;
|
|
587
600
|
|
package/dist/index.d.ts
CHANGED
|
@@ -495,6 +495,8 @@ interface LineChartProps {
|
|
|
495
495
|
data: LineChartSeries[];
|
|
496
496
|
width?: number;
|
|
497
497
|
height?: number;
|
|
498
|
+
aspectRatio?: number;
|
|
499
|
+
responsive?: boolean;
|
|
498
500
|
showGrid?: boolean;
|
|
499
501
|
showXAxis?: boolean;
|
|
500
502
|
showYAxis?: boolean;
|
|
@@ -506,6 +508,7 @@ interface LineChartProps {
|
|
|
506
508
|
className?: string;
|
|
507
509
|
xAxisLabel?: string;
|
|
508
510
|
yAxisLabel?: string;
|
|
511
|
+
baseFontSize?: number;
|
|
509
512
|
}
|
|
510
513
|
declare const LineChart: React.FC<LineChartProps>;
|
|
511
514
|
|
|
@@ -522,6 +525,8 @@ interface BarChartProps {
|
|
|
522
525
|
data: BarChartSeries[];
|
|
523
526
|
width?: number;
|
|
524
527
|
height?: number;
|
|
528
|
+
aspectRatio?: number;
|
|
529
|
+
responsive?: boolean;
|
|
525
530
|
showGrid?: boolean;
|
|
526
531
|
showXAxis?: boolean;
|
|
527
532
|
showYAxis?: boolean;
|
|
@@ -534,6 +539,8 @@ interface BarChartProps {
|
|
|
534
539
|
className?: string;
|
|
535
540
|
xAxisLabel?: string;
|
|
536
541
|
yAxisLabel?: string;
|
|
542
|
+
baseFontSize?: number;
|
|
543
|
+
colors?: string[];
|
|
537
544
|
}
|
|
538
545
|
declare const BarChart: React.FC<BarChartProps>;
|
|
539
546
|
|
|
@@ -550,6 +557,8 @@ interface AreaChartProps {
|
|
|
550
557
|
data: AreaChartSeries[];
|
|
551
558
|
width?: number;
|
|
552
559
|
height?: number;
|
|
560
|
+
aspectRatio?: number;
|
|
561
|
+
responsive?: boolean;
|
|
553
562
|
showGrid?: boolean;
|
|
554
563
|
showXAxis?: boolean;
|
|
555
564
|
showYAxis?: boolean;
|
|
@@ -563,6 +572,7 @@ interface AreaChartProps {
|
|
|
563
572
|
className?: string;
|
|
564
573
|
xAxisLabel?: string;
|
|
565
574
|
yAxisLabel?: string;
|
|
575
|
+
baseFontSize?: number;
|
|
566
576
|
}
|
|
567
577
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
568
578
|
|
|
@@ -575,6 +585,8 @@ interface PieChartProps {
|
|
|
575
585
|
data: PieChartDataPoint[];
|
|
576
586
|
width?: number;
|
|
577
587
|
height?: number;
|
|
588
|
+
aspectRatio?: number;
|
|
589
|
+
responsive?: boolean;
|
|
578
590
|
showLegend?: boolean;
|
|
579
591
|
showLabels?: boolean;
|
|
580
592
|
showValues?: boolean;
|
|
@@ -582,6 +594,7 @@ interface PieChartProps {
|
|
|
582
594
|
donut?: boolean;
|
|
583
595
|
donutWidth?: number;
|
|
584
596
|
className?: string;
|
|
597
|
+
baseFontSize?: number;
|
|
585
598
|
}
|
|
586
599
|
declare const PieChart: React.FC<PieChartProps>;
|
|
587
600
|
|