@marcoschwartz/lite-ui 0.11.0 → 0.15.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 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;
@@ -522,6 +524,8 @@ interface BarChartProps {
522
524
  data: BarChartSeries[];
523
525
  width?: number;
524
526
  height?: number;
527
+ aspectRatio?: number;
528
+ responsive?: boolean;
525
529
  showGrid?: boolean;
526
530
  showXAxis?: boolean;
527
531
  showYAxis?: boolean;
@@ -550,6 +554,8 @@ interface AreaChartProps {
550
554
  data: AreaChartSeries[];
551
555
  width?: number;
552
556
  height?: number;
557
+ aspectRatio?: number;
558
+ responsive?: boolean;
553
559
  showGrid?: boolean;
554
560
  showXAxis?: boolean;
555
561
  showYAxis?: boolean;
@@ -575,6 +581,8 @@ interface PieChartProps {
575
581
  data: PieChartDataPoint[];
576
582
  width?: number;
577
583
  height?: number;
584
+ aspectRatio?: number;
585
+ responsive?: boolean;
578
586
  showLegend?: boolean;
579
587
  showLabels?: boolean;
580
588
  showValues?: boolean;
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;
@@ -522,6 +524,8 @@ interface BarChartProps {
522
524
  data: BarChartSeries[];
523
525
  width?: number;
524
526
  height?: number;
527
+ aspectRatio?: number;
528
+ responsive?: boolean;
525
529
  showGrid?: boolean;
526
530
  showXAxis?: boolean;
527
531
  showYAxis?: boolean;
@@ -550,6 +554,8 @@ interface AreaChartProps {
550
554
  data: AreaChartSeries[];
551
555
  width?: number;
552
556
  height?: number;
557
+ aspectRatio?: number;
558
+ responsive?: boolean;
553
559
  showGrid?: boolean;
554
560
  showXAxis?: boolean;
555
561
  showYAxis?: boolean;
@@ -575,6 +581,8 @@ interface PieChartProps {
575
581
  data: PieChartDataPoint[];
576
582
  width?: number;
577
583
  height?: number;
584
+ aspectRatio?: number;
585
+ responsive?: boolean;
578
586
  showLegend?: boolean;
579
587
  showLabels?: boolean;
580
588
  showValues?: boolean;