@marcoschwartz/lite-ui 0.15.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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +529 -185
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +529 -185
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -508,6 +508,7 @@ interface LineChartProps {
|
|
|
508
508
|
className?: string;
|
|
509
509
|
xAxisLabel?: string;
|
|
510
510
|
yAxisLabel?: string;
|
|
511
|
+
baseFontSize?: number;
|
|
511
512
|
}
|
|
512
513
|
declare const LineChart: React.FC<LineChartProps>;
|
|
513
514
|
|
|
@@ -538,6 +539,8 @@ interface BarChartProps {
|
|
|
538
539
|
className?: string;
|
|
539
540
|
xAxisLabel?: string;
|
|
540
541
|
yAxisLabel?: string;
|
|
542
|
+
baseFontSize?: number;
|
|
543
|
+
colors?: string[];
|
|
541
544
|
}
|
|
542
545
|
declare const BarChart: React.FC<BarChartProps>;
|
|
543
546
|
|
|
@@ -569,6 +572,7 @@ interface AreaChartProps {
|
|
|
569
572
|
className?: string;
|
|
570
573
|
xAxisLabel?: string;
|
|
571
574
|
yAxisLabel?: string;
|
|
575
|
+
baseFontSize?: number;
|
|
572
576
|
}
|
|
573
577
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
574
578
|
|
|
@@ -590,6 +594,7 @@ interface PieChartProps {
|
|
|
590
594
|
donut?: boolean;
|
|
591
595
|
donutWidth?: number;
|
|
592
596
|
className?: string;
|
|
597
|
+
baseFontSize?: number;
|
|
593
598
|
}
|
|
594
599
|
declare const PieChart: React.FC<PieChartProps>;
|
|
595
600
|
|
package/dist/index.d.ts
CHANGED
|
@@ -508,6 +508,7 @@ interface LineChartProps {
|
|
|
508
508
|
className?: string;
|
|
509
509
|
xAxisLabel?: string;
|
|
510
510
|
yAxisLabel?: string;
|
|
511
|
+
baseFontSize?: number;
|
|
511
512
|
}
|
|
512
513
|
declare const LineChart: React.FC<LineChartProps>;
|
|
513
514
|
|
|
@@ -538,6 +539,8 @@ interface BarChartProps {
|
|
|
538
539
|
className?: string;
|
|
539
540
|
xAxisLabel?: string;
|
|
540
541
|
yAxisLabel?: string;
|
|
542
|
+
baseFontSize?: number;
|
|
543
|
+
colors?: string[];
|
|
541
544
|
}
|
|
542
545
|
declare const BarChart: React.FC<BarChartProps>;
|
|
543
546
|
|
|
@@ -569,6 +572,7 @@ interface AreaChartProps {
|
|
|
569
572
|
className?: string;
|
|
570
573
|
xAxisLabel?: string;
|
|
571
574
|
yAxisLabel?: string;
|
|
575
|
+
baseFontSize?: number;
|
|
572
576
|
}
|
|
573
577
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
574
578
|
|
|
@@ -590,6 +594,7 @@ interface PieChartProps {
|
|
|
590
594
|
donut?: boolean;
|
|
591
595
|
donutWidth?: number;
|
|
592
596
|
className?: string;
|
|
597
|
+
baseFontSize?: number;
|
|
593
598
|
}
|
|
594
599
|
declare const PieChart: React.FC<PieChartProps>;
|
|
595
600
|
|