@enki-tek/fms-web-components 0.1.8 → 0.1.10
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/components/Charts/Barchart.svelte +42 -72
- package/components/Charts/Barchart.svelte.d.ts +8 -2
- package/components/Charts/DoughnutChart.svelte +3 -36
- package/components/Charts/LineChart.svelte +7 -26
- package/components/Charts/LineChart.svelte.d.ts +6 -0
- package/components/Charts/PieChart.svelte +6 -35
- package/components/Charts/chartOptions.d.ts +32 -0
- package/components/Charts/chartOptions.js +43 -0
- package/components/Layout/Footer.svelte +1 -3
- package/components/Layout/Page.svelte +1 -1
- package/components/Sidebar/MenuGroup.svelte +1 -1
- package/components/Sidebar/MenuItem.svelte +1 -1
- package/components/Sidebar/SideBarMenu.svelte +1 -1
- package/components/Sidebar/Sidebar.scss +1 -1
- package/components/Sidebar/Sidebar.svelte +1 -1
- package/components/WidgetCard/WidgetCard.svelte +3 -16
- package/components/WidgetCard/WidgetCardBody.svelte +6 -1
- package/components/WidgetCard/WidgetCardBody.svelte.d.ts +2 -2
- package/package.json +2 -1
@@ -1,74 +1,44 @@
|
|
1
1
|
<!-- src/BarChart.svelte -->
|
2
2
|
<script>
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
beginAtZero: true,
|
46
|
-
},
|
47
|
-
},
|
48
|
-
};
|
49
|
-
|
50
|
-
onMount(() => {
|
51
|
-
const ctx = canvas.getContext('2d');
|
52
|
-
chart = new Chart(ctx, {
|
53
|
-
type: 'bar', // Set chart type to 'bar'
|
54
|
-
data: chartData,
|
55
|
-
options: chartOptions,
|
56
|
-
});
|
57
|
-
});
|
58
|
-
|
59
|
-
onDestroy(() => {
|
60
|
-
if (chart) {
|
61
|
-
chart.destroy();
|
62
|
-
}
|
63
|
-
});
|
64
|
-
</script>
|
65
|
-
|
66
|
-
<canvas bind:this={canvas} width="400" height="200" />
|
67
|
-
|
68
|
-
<style>
|
69
|
-
canvas {
|
70
|
-
max-width: 100%;
|
71
|
-
height: 100%; /* Ensures the canvas takes the full height of the container */
|
72
|
-
}
|
73
|
-
</style>
|
74
|
-
|
3
|
+
import { Chart, registerables } from 'chart.js';
|
4
|
+
import { onDestroy, onMount } from 'svelte';
|
5
|
+
import {
|
6
|
+
chartOptions,
|
7
|
+
getChartData
|
8
|
+
} from './chartOptions';
|
9
|
+
|
10
|
+
export let data = {};
|
11
|
+
export let label = '';
|
12
|
+
export let width = 200;
|
13
|
+
export let height = 200;
|
14
|
+
|
15
|
+
// Register all necessary components
|
16
|
+
Chart.register(...registerables);
|
17
|
+
|
18
|
+
let chart;
|
19
|
+
let canvas;
|
20
|
+
|
21
|
+
onMount(() => {
|
22
|
+
const ctx = canvas.getContext('2d');
|
23
|
+
chart = new Chart(ctx, {
|
24
|
+
type: 'bar', // Set chart type to 'bar'
|
25
|
+
data: getChartData({ data, label }),
|
26
|
+
options: chartOptions
|
27
|
+
});
|
28
|
+
});
|
29
|
+
|
30
|
+
onDestroy(() => {
|
31
|
+
if (chart) {
|
32
|
+
chart.destroy();
|
33
|
+
}
|
34
|
+
});
|
35
|
+
</script>
|
36
|
+
|
37
|
+
<canvas bind:this={canvas} {width} {height} />
|
38
|
+
|
39
|
+
<style>
|
40
|
+
canvas {
|
41
|
+
max-width: 100%;
|
42
|
+
height: 100%; /* Ensures the canvas takes the full height of the container */
|
43
|
+
}
|
44
|
+
</style>
|
@@ -2,7 +2,10 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} BarchartEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} BarchartSlots */
|
4
4
|
export default class Barchart extends SvelteComponentTyped<{
|
5
|
-
|
5
|
+
label?: string | undefined;
|
6
|
+
width?: number | undefined;
|
7
|
+
height?: number | undefined;
|
8
|
+
data?: {} | undefined;
|
6
9
|
}, {
|
7
10
|
[evt: string]: CustomEvent<any>;
|
8
11
|
}, {}> {
|
@@ -13,7 +16,10 @@ export type BarchartSlots = typeof __propDef.slots;
|
|
13
16
|
import { SvelteComponentTyped } from "svelte";
|
14
17
|
declare const __propDef: {
|
15
18
|
props: {
|
16
|
-
|
19
|
+
label?: string | undefined;
|
20
|
+
width?: number | undefined;
|
21
|
+
height?: number | undefined;
|
22
|
+
data?: {} | undefined;
|
17
23
|
};
|
18
24
|
events: {
|
19
25
|
[evt: string]: CustomEvent<any>;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
<!-- src/PieChart.svelte -->
|
2
2
|
<script>
|
3
|
-
import { onMount, onDestroy } from 'svelte';
|
4
3
|
import { Chart, registerables } from 'chart.js';
|
4
|
+
import { onDestroy, onMount } from 'svelte';
|
5
|
+
import { chartOptions, getChartData } from './chartOptions';
|
5
6
|
|
6
7
|
export let data = {};
|
7
8
|
export let label = '';
|
@@ -13,45 +14,11 @@
|
|
13
14
|
let chart;
|
14
15
|
let canvas;
|
15
16
|
|
16
|
-
// Chart configuration
|
17
|
-
const chartData = {
|
18
|
-
labels: Object.keys(data),
|
19
|
-
datasets: [
|
20
|
-
{
|
21
|
-
label: label,
|
22
|
-
data: Object.values(data)
|
23
|
-
}
|
24
|
-
]
|
25
|
-
};
|
26
|
-
|
27
|
-
const chartOptions = {
|
28
|
-
plugins: {
|
29
|
-
legend: {
|
30
|
-
position: 'bottom' // Set legend position to bottom
|
31
|
-
},
|
32
|
-
datalabels: {
|
33
|
-
anchor: 'center',
|
34
|
-
align: 'end',
|
35
|
-
clamp: true,
|
36
|
-
font: {
|
37
|
-
size: 16, // Set the font size here
|
38
|
-
weight: 'bold', // Optional: set font weight
|
39
|
-
family: 'Roboto', // Set the font family to Roboto
|
40
|
-
},
|
41
|
-
formatter: (value) => {
|
42
|
-
return value; // Show the value directly
|
43
|
-
}
|
44
|
-
}
|
45
|
-
},
|
46
|
-
responsive: true,
|
47
|
-
maintainAspectRatio: false // Allows the chart to resize freely
|
48
|
-
};
|
49
|
-
|
50
17
|
onMount(() => {
|
51
18
|
const ctx = canvas.getContext('2d');
|
52
19
|
chart = new Chart(ctx, {
|
53
20
|
type: 'doughnut',
|
54
|
-
data:
|
21
|
+
data: getChartData({ data, label }),
|
55
22
|
options: chartOptions
|
56
23
|
});
|
57
24
|
});
|
@@ -1,9 +1,13 @@
|
|
1
1
|
<!-- src/MyChart.svelte -->
|
2
2
|
<script>
|
3
|
-
import { onMount, onDestroy } from 'svelte';
|
4
3
|
import { Chart, registerables } from 'chart.js';
|
4
|
+
import { onDestroy, onMount } from 'svelte';
|
5
|
+
import { chartOptions } from './chartOptions';
|
5
6
|
|
6
7
|
export let data = {};
|
8
|
+
export let label = '';
|
9
|
+
export let width = 200;
|
10
|
+
export let height = 200;
|
7
11
|
|
8
12
|
// Register all necessary components
|
9
13
|
Chart.register(...registerables);
|
@@ -11,35 +15,12 @@
|
|
11
15
|
let chart;
|
12
16
|
let canvas;
|
13
17
|
|
14
|
-
// Chart configuration
|
15
|
-
const chartData = {
|
16
|
-
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
|
17
|
-
datasets: [
|
18
|
-
{
|
19
|
-
label: 'My First dataset',
|
20
|
-
backgroundColor: 'rgba(75, 192, 192, 0.2)',
|
21
|
-
borderColor: 'rgba(75, 192, 192, 1)',
|
22
|
-
borderWidth: 1,
|
23
|
-
data: [40, 30, 20, 50, 60, 70, 80]
|
24
|
-
}
|
25
|
-
]
|
26
|
-
};
|
27
|
-
|
28
|
-
const chartOptions = {
|
29
|
-
responsive: true,
|
30
|
-
maintainAspectRatio: false, // Allows the chart to resize without maintaining aspect ratio
|
31
|
-
scales: {
|
32
|
-
y: {
|
33
|
-
beginAtZero: true
|
34
|
-
}
|
35
|
-
}
|
36
|
-
};
|
37
18
|
|
38
19
|
onMount(() => {
|
39
20
|
const ctx = canvas.getContext('2d');
|
40
21
|
chart = new Chart(ctx, {
|
41
22
|
type: 'line', // Change this to 'bar' for a bar chart
|
42
|
-
data:
|
23
|
+
data: getChartData({ data, label }),
|
43
24
|
options: chartOptions
|
44
25
|
});
|
45
26
|
});
|
@@ -52,7 +33,7 @@
|
|
52
33
|
});
|
53
34
|
</script>
|
54
35
|
|
55
|
-
<canvas bind:this={canvas} />
|
36
|
+
<canvas bind:this={canvas} {width} {height} />
|
56
37
|
|
57
38
|
<style>
|
58
39
|
canvas {
|
@@ -2,6 +2,9 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} LineChartEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} LineChartSlots */
|
4
4
|
export default class LineChart extends SvelteComponentTyped<{
|
5
|
+
label?: string | undefined;
|
6
|
+
width?: number | undefined;
|
7
|
+
height?: number | undefined;
|
5
8
|
data?: {} | undefined;
|
6
9
|
}, {
|
7
10
|
[evt: string]: CustomEvent<any>;
|
@@ -13,6 +16,9 @@ export type LineChartSlots = typeof __propDef.slots;
|
|
13
16
|
import { SvelteComponentTyped } from "svelte";
|
14
17
|
declare const __propDef: {
|
15
18
|
props: {
|
19
|
+
label?: string | undefined;
|
20
|
+
width?: number | undefined;
|
21
|
+
height?: number | undefined;
|
16
22
|
data?: {} | undefined;
|
17
23
|
};
|
18
24
|
events: {
|
@@ -1,8 +1,12 @@
|
|
1
1
|
<!-- src/PieChart.svelte -->
|
2
2
|
<script>
|
3
|
-
import { onMount, onDestroy } from 'svelte';
|
4
3
|
import { Chart, registerables } from 'chart.js';
|
5
4
|
import ChartDataLabels from 'chartjs-plugin-datalabels';
|
5
|
+
import { onDestroy, onMount } from 'svelte';
|
6
|
+
import {
|
7
|
+
chartOptions,
|
8
|
+
getChartData
|
9
|
+
} from './chartOptions';
|
6
10
|
|
7
11
|
export let data = {};
|
8
12
|
export let label = '';
|
@@ -14,46 +18,13 @@
|
|
14
18
|
let chart;
|
15
19
|
let canvas;
|
16
20
|
|
17
|
-
// Chart configuration
|
18
|
-
const chartData = {
|
19
|
-
labels: Object.keys(data),
|
20
|
-
datasets: [
|
21
|
-
{
|
22
|
-
label: label,
|
23
|
-
data: Object.values(data)
|
24
|
-
}
|
25
|
-
]
|
26
|
-
};
|
27
|
-
|
28
|
-
const chartOptions = {
|
29
|
-
plugins: {
|
30
|
-
legend: {
|
31
|
-
position: 'bottom' // Set legend position to bottom
|
32
|
-
},
|
33
|
-
datalabels: {
|
34
|
-
anchor: 'center',
|
35
|
-
align: 'end',
|
36
|
-
clamp: true,
|
37
|
-
font: {
|
38
|
-
size: 16, // Set the font size here
|
39
|
-
weight: 'bold', // Optional: set font weight
|
40
|
-
family: 'Roboto', // Set the font family to Roboto
|
41
|
-
},
|
42
|
-
formatter: (value) => {
|
43
|
-
return value; // Show the value directly
|
44
|
-
}
|
45
|
-
}
|
46
|
-
},
|
47
|
-
responsive: true,
|
48
|
-
maintainAspectRatio: false // Allows the chart to resize freely
|
49
|
-
};
|
50
21
|
|
51
22
|
onMount(() => {
|
52
23
|
// console.log(chartData);
|
53
24
|
const ctx = canvas.getContext('2d');
|
54
25
|
chart = new Chart(ctx, {
|
55
26
|
type: 'pie', // Set chart type to 'pie'
|
56
|
-
data:
|
27
|
+
data: getChartData({ data, label }),
|
57
28
|
options: chartOptions
|
58
29
|
});
|
59
30
|
});
|
@@ -0,0 +1,32 @@
|
|
1
|
+
export namespace chartOptions {
|
2
|
+
namespace plugins {
|
3
|
+
namespace legend {
|
4
|
+
const position: string;
|
5
|
+
}
|
6
|
+
namespace datalabels {
|
7
|
+
const anchor: string;
|
8
|
+
const align: string;
|
9
|
+
const clamp: boolean;
|
10
|
+
namespace font {
|
11
|
+
const size: number;
|
12
|
+
const weight: string;
|
13
|
+
const family: string;
|
14
|
+
}
|
15
|
+
function formatter(value: any): any;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
const responsive: boolean;
|
19
|
+
const maintainAspectRatio: boolean;
|
20
|
+
}
|
21
|
+
export function getChartLabelsFromData(data: any): string[];
|
22
|
+
export function getChartValuesFromData(data: any): any[];
|
23
|
+
export function getChartData({ data, label }: {
|
24
|
+
data: any;
|
25
|
+
label: any;
|
26
|
+
}): {
|
27
|
+
labels: string[];
|
28
|
+
datasets: {
|
29
|
+
label: any;
|
30
|
+
data: any[];
|
31
|
+
}[];
|
32
|
+
};
|
@@ -0,0 +1,43 @@
|
|
1
|
+
export const chartOptions = {
|
2
|
+
plugins: {
|
3
|
+
legend: {
|
4
|
+
position: 'bottom' // Set legend position to bottom
|
5
|
+
},
|
6
|
+
datalabels: {
|
7
|
+
anchor: 'center',
|
8
|
+
align: 'end',
|
9
|
+
clamp: true,
|
10
|
+
font: {
|
11
|
+
size: 16, // Set the font size here
|
12
|
+
weight: 'bold', // Optional: set font weight
|
13
|
+
family: 'Roboto', // Set the font family to Roboto
|
14
|
+
},
|
15
|
+
formatter: (value) => {
|
16
|
+
return value; // Show the value directly
|
17
|
+
}
|
18
|
+
}
|
19
|
+
},
|
20
|
+
responsive: true,
|
21
|
+
maintainAspectRatio: false // Allows the chart to resize freely
|
22
|
+
};
|
23
|
+
|
24
|
+
export const getChartLabelsFromData = (data) => {
|
25
|
+
return Object.keys(data)
|
26
|
+
}
|
27
|
+
|
28
|
+
export const getChartValuesFromData = (data) => {
|
29
|
+
return Object.values(data);
|
30
|
+
}
|
31
|
+
|
32
|
+
|
33
|
+
export const getChartData = ({ data, label }) => {
|
34
|
+
return {
|
35
|
+
labels: getChartLabelsFromData(data),
|
36
|
+
datasets: [
|
37
|
+
{
|
38
|
+
label: label,
|
39
|
+
data: getChartValuesFromData(data)
|
40
|
+
}
|
41
|
+
]
|
42
|
+
};
|
43
|
+
}
|
@@ -1,12 +1,10 @@
|
|
1
1
|
<script>
|
2
|
-
// import { i18nInit } from '../i18n/i18n';
|
3
2
|
import ShiftLanguage from '../i18n/ShiftLanguage.svelte';
|
4
3
|
|
5
4
|
import { _ } from 'svelte-i18n';
|
6
|
-
// i18nInit();
|
7
5
|
</script>
|
8
6
|
|
9
|
-
<footer class="main-footer p-10 d-flex flex-row align-items-center justify-content-between ">
|
7
|
+
<footer class="main-footer p-10 d-flex flex-row align-items-center justify-content-between position-fixed bottom-0">
|
10
8
|
<div class="copy-right">
|
11
9
|
{$_({id: 'Common.rightReserved', default: 'All rights reserved.'})}
|
12
10
|
<i class="ml-2 text-secondary ">{$_({id: 'Common.Version', default:'Version'})} 0.0.2</i>
|
@@ -130,7 +130,7 @@ ul, .icon-sidebar-content ul li, .icon-sidebar-content .toggle-button {
|
|
130
130
|
background-color: #ddf9f6;
|
131
131
|
}
|
132
132
|
#sidebarMenu {
|
133
|
-
min-height: calc(100vh -
|
133
|
+
min-height: calc(100vh - 130px);
|
134
134
|
}
|
135
135
|
@media (min-width: 768px) {
|
136
136
|
.sidebar .offcanvas-lg {
|
@@ -183,7 +183,7 @@ ul, .icon-sidebar-content ul li, .icon-sidebar-content .toggle-button {
|
|
183
183
|
background-color: #ddf9f6;
|
184
184
|
}
|
185
185
|
#sidebarMenu {
|
186
|
-
min-height: calc(100vh -
|
186
|
+
min-height: calc(100vh - 130px);
|
187
187
|
}
|
188
188
|
:global(.ebg-none) {
|
189
189
|
background-color: #ffffff !important;
|
@@ -1,5 +1,4 @@
|
|
1
1
|
<script>
|
2
|
-
import { onMount } from 'svelte';
|
3
2
|
import { Col, Row } from 'sveltestrap';
|
4
3
|
export let title;
|
5
4
|
export let resizable = false;
|
@@ -17,18 +16,6 @@
|
|
17
16
|
cardLength /= 2;
|
18
17
|
console.log(cardLength);
|
19
18
|
}
|
20
|
-
// if (!maximized) {
|
21
|
-
// element.style.width = element.getBoundingClientRect().width / resizeQuotient + 'px';
|
22
|
-
// if (!widthOnly) {
|
23
|
-
// element.style.height = element.getBoundingClientRect().height / resizeQuotient + 'px';
|
24
|
-
// }
|
25
|
-
|
26
|
-
// return;
|
27
|
-
// }
|
28
|
-
// element.style.width = element.getBoundingClientRect().width * resizeQuotient + 'px';
|
29
|
-
// if (!widthOnly) {
|
30
|
-
// element.style.height = element.getBoundingClientRect().height * resizeQuotient + 'px';
|
31
|
-
// }
|
32
19
|
};
|
33
20
|
</script>
|
34
21
|
|
@@ -37,11 +24,11 @@
|
|
37
24
|
<div bind:this={element}>
|
38
25
|
<div class="m-2 card">
|
39
26
|
<Row>
|
40
|
-
<Col>
|
27
|
+
<Col md=10>
|
41
28
|
<div class="title fw-normal">{title}</div>
|
42
29
|
</Col>
|
43
30
|
{#if resizable}
|
44
|
-
<Col>
|
31
|
+
<Col md=2>
|
45
32
|
<div class="float-end">
|
46
33
|
<i on:click={toggleMaximize} class="material-icons"
|
47
34
|
>{!maximized ? 'zoom_out_map' : 'zoom_in_map'}</i
|
@@ -150,4 +137,4 @@
|
|
150
137
|
color: #c9443a;
|
151
138
|
padding: 5px 10px;
|
152
139
|
border-radius: 5px;
|
153
|
-
}</style>
|
140
|
+
}</style>
|
@@ -1,7 +1,8 @@
|
|
1
1
|
<script>
|
2
|
+
export let className = "";
|
2
3
|
</script>
|
3
4
|
|
4
|
-
<div class="widget-card-body">
|
5
|
+
<div class="widget-card-body card-height {className}">
|
5
6
|
<slot />
|
6
7
|
</div>
|
7
8
|
|
@@ -10,4 +11,8 @@
|
|
10
11
|
width: 100%;
|
11
12
|
position: relative;
|
12
13
|
}
|
14
|
+
.card-height {
|
15
|
+
height: 350px;
|
16
|
+
overflow: auto;
|
17
|
+
}
|
13
18
|
</style>
|
@@ -2,7 +2,7 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} WidgetCardBodyEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} WidgetCardBodySlots */
|
4
4
|
export default class WidgetCardBody extends SvelteComponentTyped<{
|
5
|
-
|
5
|
+
className?: string | undefined;
|
6
6
|
}, {
|
7
7
|
[evt: string]: CustomEvent<any>;
|
8
8
|
}, {
|
@@ -15,7 +15,7 @@ export type WidgetCardBodySlots = typeof __propDef.slots;
|
|
15
15
|
import { SvelteComponentTyped } from "svelte";
|
16
16
|
declare const __propDef: {
|
17
17
|
props: {
|
18
|
-
|
18
|
+
className?: string | undefined;
|
19
19
|
};
|
20
20
|
events: {
|
21
21
|
[evt: string]: CustomEvent<any>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@enki-tek/fms-web-components",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.10",
|
4
4
|
"devDependencies": {
|
5
5
|
"@storybook/addon-essentials": "^7.6.14",
|
6
6
|
"@storybook/addon-interactions": "^7.6.14",
|
@@ -81,6 +81,7 @@
|
|
81
81
|
"./components/Charts/DoughnutChart.svelte": "./components/Charts/DoughnutChart.svelte",
|
82
82
|
"./components/Charts/LineChart.svelte": "./components/Charts/LineChart.svelte",
|
83
83
|
"./components/Charts/PieChart.svelte": "./components/Charts/PieChart.svelte",
|
84
|
+
"./components/Charts/chartOptions": "./components/Charts/chartOptions.js",
|
84
85
|
"./components/CheckBox/Checkbox.scss": "./components/CheckBox/Checkbox.scss",
|
85
86
|
"./components/CheckBox/Checkbox.stories": "./components/CheckBox/Checkbox.stories.js",
|
86
87
|
"./components/CheckBox/Checkbox.svelte": "./components/CheckBox/Checkbox.svelte",
|