@marcoschwartz/lite-ui 0.15.0 → 0.17.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 +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +543 -187
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +543 -187
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -46,6 +46,7 @@ interface NavbarProps {
|
|
|
46
46
|
children?: React.ReactNode;
|
|
47
47
|
className?: string;
|
|
48
48
|
sticky?: boolean;
|
|
49
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
49
50
|
}
|
|
50
51
|
declare const Navbar: React.FC<NavbarProps>;
|
|
51
52
|
|
|
@@ -508,6 +509,7 @@ interface LineChartProps {
|
|
|
508
509
|
className?: string;
|
|
509
510
|
xAxisLabel?: string;
|
|
510
511
|
yAxisLabel?: string;
|
|
512
|
+
baseFontSize?: number;
|
|
511
513
|
}
|
|
512
514
|
declare const LineChart: React.FC<LineChartProps>;
|
|
513
515
|
|
|
@@ -538,6 +540,8 @@ interface BarChartProps {
|
|
|
538
540
|
className?: string;
|
|
539
541
|
xAxisLabel?: string;
|
|
540
542
|
yAxisLabel?: string;
|
|
543
|
+
baseFontSize?: number;
|
|
544
|
+
colors?: string[];
|
|
541
545
|
}
|
|
542
546
|
declare const BarChart: React.FC<BarChartProps>;
|
|
543
547
|
|
|
@@ -569,6 +573,7 @@ interface AreaChartProps {
|
|
|
569
573
|
className?: string;
|
|
570
574
|
xAxisLabel?: string;
|
|
571
575
|
yAxisLabel?: string;
|
|
576
|
+
baseFontSize?: number;
|
|
572
577
|
}
|
|
573
578
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
574
579
|
|
|
@@ -590,6 +595,7 @@ interface PieChartProps {
|
|
|
590
595
|
donut?: boolean;
|
|
591
596
|
donutWidth?: number;
|
|
592
597
|
className?: string;
|
|
598
|
+
baseFontSize?: number;
|
|
593
599
|
}
|
|
594
600
|
declare const PieChart: React.FC<PieChartProps>;
|
|
595
601
|
|
package/dist/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ interface NavbarProps {
|
|
|
46
46
|
children?: React.ReactNode;
|
|
47
47
|
className?: string;
|
|
48
48
|
sticky?: boolean;
|
|
49
|
+
variant?: 'solid' | 'glass' | 'transparent';
|
|
49
50
|
}
|
|
50
51
|
declare const Navbar: React.FC<NavbarProps>;
|
|
51
52
|
|
|
@@ -508,6 +509,7 @@ interface LineChartProps {
|
|
|
508
509
|
className?: string;
|
|
509
510
|
xAxisLabel?: string;
|
|
510
511
|
yAxisLabel?: string;
|
|
512
|
+
baseFontSize?: number;
|
|
511
513
|
}
|
|
512
514
|
declare const LineChart: React.FC<LineChartProps>;
|
|
513
515
|
|
|
@@ -538,6 +540,8 @@ interface BarChartProps {
|
|
|
538
540
|
className?: string;
|
|
539
541
|
xAxisLabel?: string;
|
|
540
542
|
yAxisLabel?: string;
|
|
543
|
+
baseFontSize?: number;
|
|
544
|
+
colors?: string[];
|
|
541
545
|
}
|
|
542
546
|
declare const BarChart: React.FC<BarChartProps>;
|
|
543
547
|
|
|
@@ -569,6 +573,7 @@ interface AreaChartProps {
|
|
|
569
573
|
className?: string;
|
|
570
574
|
xAxisLabel?: string;
|
|
571
575
|
yAxisLabel?: string;
|
|
576
|
+
baseFontSize?: number;
|
|
572
577
|
}
|
|
573
578
|
declare const AreaChart: React.FC<AreaChartProps>;
|
|
574
579
|
|
|
@@ -590,6 +595,7 @@ interface PieChartProps {
|
|
|
590
595
|
donut?: boolean;
|
|
591
596
|
donutWidth?: number;
|
|
592
597
|
className?: string;
|
|
598
|
+
baseFontSize?: number;
|
|
593
599
|
}
|
|
594
600
|
declare const PieChart: React.FC<PieChartProps>;
|
|
595
601
|
|