@andreagiugni/tailwind-dashboard-ui 0.1.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/LICENSE +22 -0
- package/README.md +282 -0
- package/dist/Editor-uOYxR3HX.d.cts +53 -0
- package/dist/Editor-uOYxR3HX.d.ts +53 -0
- package/dist/chunk-4OETC46A.js +353 -0
- package/dist/chunk-4OETC46A.js.map +1 -0
- package/dist/chunk-7OWZKV75.js +420 -0
- package/dist/chunk-7OWZKV75.js.map +1 -0
- package/dist/chunk-BGA7AECV.cjs +152 -0
- package/dist/chunk-BGA7AECV.cjs.map +1 -0
- package/dist/chunk-HT7SQXRF.cjs +85 -0
- package/dist/chunk-HT7SQXRF.cjs.map +1 -0
- package/dist/chunk-HZQZC5CK.js +124 -0
- package/dist/chunk-HZQZC5CK.js.map +1 -0
- package/dist/chunk-MEU4PMP5.js +146 -0
- package/dist/chunk-MEU4PMP5.js.map +1 -0
- package/dist/chunk-MYOOZFHK.cjs +430 -0
- package/dist/chunk-MYOOZFHK.cjs.map +1 -0
- package/dist/chunk-OSIOO5AE.cjs +130 -0
- package/dist/chunk-OSIOO5AE.cjs.map +1 -0
- package/dist/chunk-R66LONPQ.js +83 -0
- package/dist/chunk-R66LONPQ.js.map +1 -0
- package/dist/chunk-W7SNEBD7.cjs +362 -0
- package/dist/chunk-W7SNEBD7.cjs.map +1 -0
- package/dist/chunk-YERNSNT4.cjs +13 -0
- package/dist/chunk-YERNSNT4.cjs.map +1 -0
- package/dist/chunk-ZLIYUUA4.js +11 -0
- package/dist/chunk-ZLIYUUA4.js.map +1 -0
- package/dist/components/Calendar/Calendar.cjs +14 -0
- package/dist/components/Calendar/Calendar.cjs.map +1 -0
- package/dist/components/Calendar/Calendar.d.cts +12 -0
- package/dist/components/Calendar/Calendar.d.ts +12 -0
- package/dist/components/Calendar/Calendar.js +5 -0
- package/dist/components/Calendar/Calendar.js.map +1 -0
- package/dist/components/Charts/BarChart.cjs +13 -0
- package/dist/components/Charts/BarChart.cjs.map +1 -0
- package/dist/components/Charts/BarChart.d.cts +13 -0
- package/dist/components/Charts/BarChart.d.ts +13 -0
- package/dist/components/Charts/BarChart.js +4 -0
- package/dist/components/Charts/BarChart.js.map +1 -0
- package/dist/components/Charts/LineChart.cjs +13 -0
- package/dist/components/Charts/LineChart.cjs.map +1 -0
- package/dist/components/Charts/LineChart.d.cts +13 -0
- package/dist/components/Charts/LineChart.d.ts +13 -0
- package/dist/components/Charts/LineChart.js +4 -0
- package/dist/components/Charts/LineChart.js.map +1 -0
- package/dist/components/Editor/Editor.cjs +14 -0
- package/dist/components/Editor/Editor.cjs.map +1 -0
- package/dist/components/Editor/Editor.d.cts +3 -0
- package/dist/components/Editor/Editor.d.ts +3 -0
- package/dist/components/Editor/Editor.js +5 -0
- package/dist/components/Editor/Editor.js.map +1 -0
- package/dist/components/Map/CountryMap.cjs +13 -0
- package/dist/components/Map/CountryMap.cjs.map +1 -0
- package/dist/components/Map/CountryMap.d.cts +13 -0
- package/dist/components/Map/CountryMap.d.ts +13 -0
- package/dist/components/Map/CountryMap.js +4 -0
- package/dist/components/Map/CountryMap.js.map +1 -0
- package/dist/index.cjs +2896 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +573 -0
- package/dist/index.d.ts +573 -0
- package/dist/index.js +2816 -0
- package/dist/index.js.map +1 -0
- package/package.json +134 -0
- package/src/theme.css +784 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ApexOptions } from 'apexcharts';
|
|
3
|
+
|
|
4
|
+
interface BarChartProps {
|
|
5
|
+
series?: ApexAxisChartSeries;
|
|
6
|
+
categories?: string[];
|
|
7
|
+
colors?: string[];
|
|
8
|
+
height?: number;
|
|
9
|
+
options?: ApexOptions;
|
|
10
|
+
}
|
|
11
|
+
declare const BarChart: React.FC<BarChartProps>;
|
|
12
|
+
|
|
13
|
+
export { BarChart, type BarChartProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"BarChart.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var chunkBGA7AECV_cjs = require('../../chunk-BGA7AECV.cjs');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "LineChart", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkBGA7AECV_cjs.LineChart; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=LineChart.cjs.map
|
|
13
|
+
//# sourceMappingURL=LineChart.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"LineChart.cjs"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ApexOptions } from 'apexcharts';
|
|
3
|
+
|
|
4
|
+
interface LineChartProps {
|
|
5
|
+
series?: ApexAxisChartSeries;
|
|
6
|
+
categories?: string[];
|
|
7
|
+
colors?: string[];
|
|
8
|
+
height?: number;
|
|
9
|
+
options?: ApexOptions;
|
|
10
|
+
}
|
|
11
|
+
declare const LineChart: React.FC<LineChartProps>;
|
|
12
|
+
|
|
13
|
+
export { LineChart, type LineChartProps };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ApexOptions } from 'apexcharts';
|
|
3
|
+
|
|
4
|
+
interface LineChartProps {
|
|
5
|
+
series?: ApexAxisChartSeries;
|
|
6
|
+
categories?: string[];
|
|
7
|
+
colors?: string[];
|
|
8
|
+
height?: number;
|
|
9
|
+
options?: ApexOptions;
|
|
10
|
+
}
|
|
11
|
+
declare const LineChart: React.FC<LineChartProps>;
|
|
12
|
+
|
|
13
|
+
export { LineChart, type LineChartProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"LineChart.js"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var chunkW7SNEBD7_cjs = require('../../chunk-W7SNEBD7.cjs');
|
|
5
|
+
require('../../chunk-YERNSNT4.cjs');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, "Editor", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return chunkW7SNEBD7_cjs.Editor; }
|
|
12
|
+
});
|
|
13
|
+
//# sourceMappingURL=Editor.cjs.map
|
|
14
|
+
//# sourceMappingURL=Editor.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"Editor.cjs"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"Editor.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var chunkHT7SQXRF_cjs = require('../../chunk-HT7SQXRF.cjs');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "CountryMap", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return chunkHT7SQXRF_cjs.CountryMap; }
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=CountryMap.cjs.map
|
|
13
|
+
//# sourceMappingURL=CountryMap.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"CountryMap.cjs"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface CountryMapProps {
|
|
4
|
+
markers?: {
|
|
5
|
+
latLng: [number, number];
|
|
6
|
+
name: string;
|
|
7
|
+
}[];
|
|
8
|
+
markerColor?: string;
|
|
9
|
+
mapColor?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const CountryMap: React.FC<CountryMapProps>;
|
|
12
|
+
|
|
13
|
+
export { CountryMap, type CountryMapProps };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
interface CountryMapProps {
|
|
4
|
+
markers?: {
|
|
5
|
+
latLng: [number, number];
|
|
6
|
+
name: string;
|
|
7
|
+
}[];
|
|
8
|
+
markerColor?: string;
|
|
9
|
+
mapColor?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const CountryMap: React.FC<CountryMapProps>;
|
|
12
|
+
|
|
13
|
+
export { CountryMap, type CountryMapProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"CountryMap.js"}
|