@enki-tek/fms-web-components 0.1.8 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,74 +1,44 @@
1
1
  <!-- src/BarChart.svelte -->
2
2
  <script>
3
- import { onMount, onDestroy } from 'svelte';
4
- import { Chart, registerables } from 'chart.js';
5
-
6
- // Register all necessary components
7
- Chart.register(...registerables);
8
-
9
- let chart;
10
- let canvas;
11
-
12
- // Chart configuration
13
- const chartData = {
14
- labels: ['Red', 'Blue', 'Yellow', 'Green', 'Purple', 'Orange'],
15
- datasets: [
16
- {
17
- label: '# of Votes',
18
- backgroundColor: [
19
- 'rgba(255, 99, 132, 0.2)',
20
- 'rgba(54, 162, 235, 0.2)',
21
- 'rgba(255, 206, 86, 0.2)',
22
- 'rgba(75, 192, 192, 0.2)',
23
- 'rgba(153, 102, 255, 0.2)',
24
- 'rgba(255, 159, 64, 0.2)',
25
- ],
26
- borderColor: [
27
- 'rgba(255, 99, 132, 1)',
28
- 'rgba(54, 162, 235, 1)',
29
- 'rgba(255, 206, 86, 1)',
30
- 'rgba(75, 192, 192, 1)',
31
- 'rgba(153, 102, 255, 1)',
32
- 'rgba(255, 159, 64, 1)',
33
- ],
34
- borderWidth: 1,
35
- data: [12, 19, 3, 5, 2, 3],
36
- },
37
- ],
38
- };
39
-
40
- const chartOptions = {
41
- responsive: true,
42
- maintainAspectRatio: false, // Allows the chart to resize freely
43
- scales: {
44
- y: {
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
- [x: string]: never;
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
- [x: string]: never;
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: chartData,
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, getChartData } 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: chartData,
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: chartData,
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>
@@ -8,7 +8,7 @@
8
8
  "
9
9
  >
10
10
  <Row class="d-flex flex-lg-row flex-column px-3" style="width:100%">
11
- <Col md="4">
11
+ <Col md="7">
12
12
  <header>
13
13
  <div class="d-flex flex-row justify-content-start mt-2 title">
14
14
  <slot name="title" />
@@ -107,5 +107,5 @@ ul, .icon-sidebar-content ul li, .icon-sidebar-content .toggle-button {
107
107
  background-color: #ddf9f6;
108
108
  }
109
109
  #sidebarMenu {
110
- min-height: calc(100vh - 112px);
110
+ min-height: calc(100vh - 130px);
111
111
  }</style>
@@ -120,6 +120,6 @@ ul, .icon-sidebar-content ul li, .icon-sidebar-content .toggle-button {
120
120
  background-color: #ddf9f6;
121
121
  }
122
122
  #sidebarMenu {
123
- min-height: calc(100vh - 112px);
123
+ min-height: calc(100vh - 130px);
124
124
  }</style>
125
125
 
@@ -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 - 112px);
133
+ min-height: calc(100vh - 130px);
134
134
  }
135
135
  @media (min-width: 768px) {
136
136
  .sidebar .offcanvas-lg {
@@ -148,5 +148,5 @@ ul {
148
148
  background-color: #ddf9f6;
149
149
  }
150
150
  #sidebarMenu{
151
- min-height: calc(100vh - 112px);
151
+ min-height: calc(100vh - 130px);
152
152
  }
@@ -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 - 112px);
186
+ min-height: calc(100vh - 130px);
187
187
  }
188
188
  :global(.ebg-none) {
189
189
  background-color: #ffffff !important;
@@ -8,6 +8,10 @@
8
8
  font-family: $bodyFonts;
9
9
  min-height:14rem;
10
10
  }
11
+ .card-mini{
12
+ height: 6rem !important;
13
+ min-height: 6rem !important;
14
+ }
11
15
  .title{
12
16
  font-size: $status-card-title;
13
17
  font-weight: $title-weight;
@@ -1,12 +1,15 @@
1
1
  <script>
2
- export let className = "";
3
- </script>
4
- <div class="col-12 col-md-6 col-sm-6 col-lg-3">
5
- <div class="m-2 card {className}">
2
+ export let className = '';
3
+ export let small = false;
4
+ </script>
5
+
6
+ <div class="col-12 col-md-6 col-sm-6 col-lg-6 col-xl-3">
7
+ <div class="m-2 card {className} {small? 'card-mini':''}">
6
8
  <slot />
7
9
  </div>
8
- </div>
9
- <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
10
+ </div>
11
+
12
+ <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
10
13
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
11
14
  @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
12
15
  .card {
@@ -17,6 +20,10 @@
17
20
  font-family: Roboto;
18
21
  min-height: 14rem;
19
22
  }
23
+ .card-mini {
24
+ height: 6rem !important;
25
+ min-height: 6rem !important;
26
+ }
20
27
  .title {
21
28
  font-size: 24px;
22
29
  font-weight: 400;
@@ -40,4 +47,3 @@
40
47
  width: fit-content;
41
48
  border-radius: 0.3333333333rem;
42
49
  }</style>
43
-
@@ -3,6 +3,7 @@
3
3
  /** @typedef {typeof __propDef.slots} StatusCardSlots */
4
4
  export default class StatusCard extends SvelteComponentTyped<{
5
5
  className?: string | undefined;
6
+ small?: boolean | undefined;
6
7
  }, {
7
8
  [evt: string]: CustomEvent<any>;
8
9
  }, {
@@ -16,6 +17,7 @@ import { SvelteComponentTyped } from "svelte";
16
17
  declare const __propDef: {
17
18
  props: {
18
19
  className?: string | undefined;
20
+ small?: boolean | undefined;
19
21
  };
20
22
  events: {
21
23
  [evt: string]: CustomEvent<any>;
@@ -32,6 +32,10 @@
32
32
  font-family: Roboto;
33
33
  min-height: 14rem;
34
34
  }
35
+ .card-mini {
36
+ height: 6rem !important;
37
+ min-height: 6rem !important;
38
+ }
35
39
  .title {
36
40
  font-size: 24px;
37
41
  font-weight: 400;
@@ -0,0 +1,7 @@
1
+ <script>
2
+ export let value = '';
3
+ </script>
4
+
5
+ <div class="align-middle text-center float-end value fw-bold fs-2">
6
+ {value}
7
+ </div>
@@ -0,0 +1,23 @@
1
+ /** @typedef {typeof __propDef.props} StatusCardSubtitleProps */
2
+ /** @typedef {typeof __propDef.events} StatusCardSubtitleEvents */
3
+ /** @typedef {typeof __propDef.slots} StatusCardSubtitleSlots */
4
+ export default class StatusCardSubtitle extends SvelteComponentTyped<{
5
+ value?: string | undefined;
6
+ }, {
7
+ [evt: string]: CustomEvent<any>;
8
+ }, {}> {
9
+ }
10
+ export type StatusCardSubtitleProps = typeof __propDef.props;
11
+ export type StatusCardSubtitleEvents = typeof __propDef.events;
12
+ export type StatusCardSubtitleSlots = typeof __propDef.slots;
13
+ import { SvelteComponentTyped } from "svelte";
14
+ declare const __propDef: {
15
+ props: {
16
+ value?: string | undefined;
17
+ };
18
+ events: {
19
+ [evt: string]: CustomEvent<any>;
20
+ };
21
+ slots: {};
22
+ };
23
+ export {};
@@ -22,6 +22,10 @@
22
22
  font-family: Roboto;
23
23
  min-height: 14rem;
24
24
  }
25
+ .card-mini {
26
+ height: 6rem !important;
27
+ min-height: 6rem !important;
28
+ }
25
29
  .title {
26
30
  font-size: 24px;
27
31
  font-weight: 400;
@@ -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,31 +16,23 @@
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
 
35
22
  {#key cardLength}
36
- <div class="col-12 col-md-{cardLength * 2} col-sm-{cardLength * 2} col-lg-{cardLength}">
23
+ <div
24
+ class="col-12 col-md-{cardLength * 2} col-sm-{cardLength * 2} col-lg-{cardLength < 6
25
+ ? cardLength * 2
26
+ : cardLength} col-xl-{cardLength}"
27
+ >
37
28
  <div bind:this={element}>
38
29
  <div class="m-2 card">
39
30
  <Row>
40
- <Col>
31
+ <Col md="10">
41
32
  <div class="title fw-normal">{title}</div>
42
33
  </Col>
43
34
  {#if resizable}
44
- <Col>
35
+ <Col md="2">
45
36
  <div class="float-end">
46
37
  <i on:click={toggleMaximize} class="material-icons"
47
38
  >{!maximized ? 'zoom_out_map' : 'zoom_in_map'}</i
@@ -150,4 +141,4 @@
150
141
  color: #c9443a;
151
142
  padding: 5px 10px;
152
143
  border-radius: 5px;
153
- }</style>
144
+ }</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
- [x: string]: never;
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
- [x: string]: never;
18
+ className?: string | undefined;
19
19
  };
20
20
  events: {
21
21
  [evt: string]: CustomEvent<any>;
package/index.d.ts CHANGED
@@ -74,5 +74,6 @@ import DoughnutChart from './components/Charts/DoughnutChart.svelte';
74
74
  import PieChart from './components/Charts/PieChart.svelte';
75
75
  import BarChart from './components/Charts/Barchart.svelte';
76
76
  import LineChart from './components/Charts/LineChart.svelte';
77
- export { Accordion, AccordionItem, ActionIcon, ActionIconGroup, Alert, Badge, Brand, Breadcrumb, Button, Card, CardBody, CardFooter, CardIcon, CardiconBody, CardiconSubtitle, CardiconTitle, CardLink, CardSubtitle, CardText, CardTitle, Checkbox, derivedStore, Dropdown, DropdownItem, EnkiCard, EnkiSidebar, EnkiTable, Footer, Header, HeaderItem, Icon, Layout, MainMenuHead, menuTypeStore, Modal, ModalBody, ModalFooter, ModalHeader, NavIcon, NavItem, NavLink, NotFound, Page, Pagination, RadioButton, smallMenuwidth, Switch, Tab, TableBody, TableCell, TableHead, TableHeadCell, TableRow, TextField, Toast, Tooltip, UserAvatar, HeaderDropDownLink, HeaderDropDownLinkItem, HeaderLink, HeaderLinks, Content, MenuGroup, MenuItem, SortableGrid, SideBarMenu, StatusCard, StatusCardBody, StatusCardTitle, StateCard, WidgetCard, WidgetCardBody, DoughnutChart, PieChart, BarChart, LineChart, };
77
+ import StatusCardSubtitle from './components/StatusCard/StatusCardSubtitle.svelte';
78
+ export { Accordion, AccordionItem, ActionIcon, ActionIconGroup, Alert, Badge, Brand, Breadcrumb, Button, Card, CardBody, CardFooter, CardIcon, CardiconBody, CardiconSubtitle, CardiconTitle, CardLink, CardSubtitle, CardText, CardTitle, Checkbox, derivedStore, Dropdown, DropdownItem, EnkiCard, EnkiSidebar, EnkiTable, Footer, Header, HeaderItem, Icon, Layout, MainMenuHead, menuTypeStore, Modal, ModalBody, ModalFooter, ModalHeader, NavIcon, NavItem, NavLink, NotFound, Page, Pagination, RadioButton, smallMenuwidth, Switch, Tab, TableBody, TableCell, TableHead, TableHeadCell, TableRow, TextField, Toast, Tooltip, UserAvatar, HeaderDropDownLink, HeaderDropDownLinkItem, HeaderLink, HeaderLinks, Content, MenuGroup, MenuItem, SortableGrid, SideBarMenu, StatusCard, StatusCardBody, StatusCardTitle, StatusCardSubtitle, StateCard, WidgetCard, WidgetCardBody, DoughnutChart, PieChart, BarChart, LineChart, };
78
79
  export default i18nInit;
package/index.js CHANGED
@@ -75,5 +75,6 @@ import DoughnutChart from './components/Charts/DoughnutChart.svelte';
75
75
  import PieChart from './components/Charts/PieChart.svelte';
76
76
  import BarChart from './components/Charts/Barchart.svelte';
77
77
  import LineChart from './components/Charts/LineChart.svelte';
78
- export { Accordion, AccordionItem, ActionIcon, ActionIconGroup, Alert, Badge, Brand, Breadcrumb, Button, Card, CardBody, CardFooter, CardIcon, CardiconBody, CardiconSubtitle, CardiconTitle, CardLink, CardSubtitle, CardText, CardTitle, Checkbox, derivedStore, Dropdown, DropdownItem, EnkiCard, EnkiSidebar, EnkiTable, Footer, Header, HeaderItem, Icon, Layout, MainMenuHead, menuTypeStore, Modal, ModalBody, ModalFooter, ModalHeader, NavIcon, NavItem, NavLink, NotFound, Page, Pagination, RadioButton, smallMenuwidth, Switch, Tab, TableBody, TableCell, TableHead, TableHeadCell, TableRow, TextField, Toast, Tooltip, UserAvatar, HeaderDropDownLink, HeaderDropDownLinkItem, HeaderLink, HeaderLinks, Content, MenuGroup, MenuItem, SortableGrid, SideBarMenu, StatusCard, StatusCardBody, StatusCardTitle, StateCard, WidgetCard, WidgetCardBody, DoughnutChart, PieChart, BarChart, LineChart, };
78
+ import StatusCardSubtitle from './components/StatusCard/StatusCardSubtitle.svelte';
79
+ export { Accordion, AccordionItem, ActionIcon, ActionIconGroup, Alert, Badge, Brand, Breadcrumb, Button, Card, CardBody, CardFooter, CardIcon, CardiconBody, CardiconSubtitle, CardiconTitle, CardLink, CardSubtitle, CardText, CardTitle, Checkbox, derivedStore, Dropdown, DropdownItem, EnkiCard, EnkiSidebar, EnkiTable, Footer, Header, HeaderItem, Icon, Layout, MainMenuHead, menuTypeStore, Modal, ModalBody, ModalFooter, ModalHeader, NavIcon, NavItem, NavLink, NotFound, Page, Pagination, RadioButton, smallMenuwidth, Switch, Tab, TableBody, TableCell, TableHead, TableHeadCell, TableRow, TextField, Toast, Tooltip, UserAvatar, HeaderDropDownLink, HeaderDropDownLinkItem, HeaderLink, HeaderLinks, Content, MenuGroup, MenuItem, SortableGrid, SideBarMenu, StatusCard, StatusCardBody, StatusCardTitle, StatusCardSubtitle, StateCard, WidgetCard, WidgetCardBody, DoughnutChart, PieChart, BarChart, LineChart, };
79
80
  export default i18nInit;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enki-tek/fms-web-components",
3
- "version": "0.1.8",
3
+ "version": "0.1.11",
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",
@@ -157,6 +158,7 @@
157
158
  "./components/StatusCard/StatusCard.scss": "./components/StatusCard/StatusCard.scss",
158
159
  "./components/StatusCard/StatusCard.svelte": "./components/StatusCard/StatusCard.svelte",
159
160
  "./components/StatusCard/StatusCardBody.svelte": "./components/StatusCard/StatusCardBody.svelte",
161
+ "./components/StatusCard/StatusCardSubtitle.svelte": "./components/StatusCard/StatusCardSubtitle.svelte",
160
162
  "./components/StatusCard/StatusCardTitle.svelte": "./components/StatusCard/StatusCardTitle.svelte",
161
163
  "./components/Switches/Switch.scss": "./components/Switches/Switch.scss",
162
164
  "./components/Switches/Switch.stories": "./components/Switches/Switch.stories.js",