@enki-tek/fms-web-components 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- package/components/Alert/Alert.svelte.d.ts +1 -1
- package/components/Button/Button.svelte.d.ts +8 -8
- package/components/Card/Card.svelte.d.ts +4 -4
- package/components/CardIcon/CardiconTitle.svelte.d.ts +2 -2
- package/components/Charts/DoughnutChart.svelte.d.ts +2 -2
- package/components/Charts/PieChart.svelte.d.ts +2 -2
- package/components/CheckBox/Checkbox.svelte.d.ts +8 -8
- package/components/EnkiCard/CardBody.svelte.d.ts +2 -2
- package/components/EnkiSidbar/EnkiSidebar.svelte.d.ts +2 -2
- package/components/EnkiTable/EnkiTable.svelte.d.ts +4 -4
- package/components/EnkiTable/TableCell.svelte.d.ts +2 -2
- package/components/Header/HeaderItem.svelte.d.ts +2 -2
- package/components/Icon/ActionIcon.svelte.d.ts +2 -2
- package/components/Layout/Footer.svelte +2 -2
- package/components/ModalWindow/Modal.svelte.d.ts +2 -2
- package/components/Sidebar/MenuItem.svelte.d.ts +2 -2
- package/components/Switches/Switch.svelte.d.ts +2 -2
- package/components/TextField/TextField.svelte.d.ts +8 -8
- package/components/Toast/Toast.svelte.d.ts +2 -2
- package/components/WidgetCard/SensorStatusCard.svelte.d.ts +2 -2
- package/components/WidgetCard/StateCard.svelte.d.ts +2 -2
- package/index.d.ts +65 -48
- package/index.js +65 -48
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SvelteComponentTyped } from "svelte";
|
2
2
|
declare const __propDef: {
|
3
3
|
props: {
|
4
|
-
color?: "
|
4
|
+
color?: "info" | "success" | "danger" | "warning" | undefined;
|
5
5
|
};
|
6
6
|
events: {
|
7
7
|
[evt: string]: CustomEvent<any>;
|
@@ -3,12 +3,11 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ButtonSlots */
|
4
4
|
export default class Button extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
|
-
|
7
|
-
|
6
|
+
config?: string | undefined;
|
7
|
+
className?: string | undefined;
|
8
8
|
disabled?: boolean | undefined;
|
9
9
|
type?: string | undefined;
|
10
10
|
label?: string | undefined;
|
11
|
-
config?: string | undefined;
|
12
11
|
icon?: {
|
13
12
|
state: boolean;
|
14
13
|
name: string;
|
@@ -16,7 +15,8 @@ export default class Button extends SvelteComponentTyped<{
|
|
16
15
|
} | undefined;
|
17
16
|
shade?: string | undefined;
|
18
17
|
outlineShade?: string | undefined;
|
19
|
-
|
18
|
+
size?: string | undefined;
|
19
|
+
id?: string | undefined;
|
20
20
|
actived?: {
|
21
21
|
state: boolean;
|
22
22
|
color: string;
|
@@ -38,12 +38,11 @@ import { SvelteComponentTyped } from "svelte";
|
|
38
38
|
declare const __propDef: {
|
39
39
|
props: {
|
40
40
|
[x: string]: any;
|
41
|
-
|
42
|
-
|
41
|
+
config?: string | undefined;
|
42
|
+
className?: string | undefined;
|
43
43
|
disabled?: boolean | undefined;
|
44
44
|
type?: string | undefined;
|
45
45
|
label?: string | undefined;
|
46
|
-
config?: string | undefined;
|
47
46
|
icon?: {
|
48
47
|
state: boolean;
|
49
48
|
name: string;
|
@@ -51,7 +50,8 @@ declare const __propDef: {
|
|
51
50
|
} | undefined;
|
52
51
|
shade?: string | undefined;
|
53
52
|
outlineShade?: string | undefined;
|
54
|
-
|
53
|
+
size?: string | undefined;
|
54
|
+
id?: string | undefined;
|
55
55
|
actived?: {
|
56
56
|
state: boolean;
|
57
57
|
color: string;
|
@@ -2,10 +2,10 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} CardEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} CardSlots */
|
4
4
|
export default class Card extends SvelteComponentTyped<{
|
5
|
-
link?: string | undefined;
|
6
|
-
text?: string | undefined;
|
7
5
|
title?: string | undefined;
|
8
6
|
subTitle?: string | undefined;
|
7
|
+
text?: string | undefined;
|
8
|
+
link?: string | undefined;
|
9
9
|
image?: string | undefined;
|
10
10
|
width?: string | undefined;
|
11
11
|
linkName1?: string | undefined;
|
@@ -27,10 +27,10 @@ export type CardSlots = typeof __propDef.slots;
|
|
27
27
|
import { SvelteComponentTyped } from "svelte";
|
28
28
|
declare const __propDef: {
|
29
29
|
props: {
|
30
|
-
link?: string | undefined;
|
31
|
-
text?: string | undefined;
|
32
30
|
title?: string | undefined;
|
33
31
|
subTitle?: string | undefined;
|
32
|
+
text?: string | undefined;
|
33
|
+
link?: string | undefined;
|
34
34
|
image?: string | undefined;
|
35
35
|
width?: string | undefined;
|
36
36
|
linkName1?: string | undefined;
|
@@ -3,8 +3,8 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CardiconTitleSlots */
|
4
4
|
export default class CardiconTitle extends SvelteComponentTyped<{
|
5
5
|
className: any;
|
6
|
-
name?: string | undefined;
|
7
6
|
title?: string | undefined;
|
7
|
+
name?: string | undefined;
|
8
8
|
iconLocation?: string | undefined;
|
9
9
|
}, {
|
10
10
|
[evt: string]: CustomEvent<any>;
|
@@ -17,8 +17,8 @@ import { SvelteComponentTyped } from "svelte";
|
|
17
17
|
declare const __propDef: {
|
18
18
|
props: {
|
19
19
|
className: any;
|
20
|
-
name?: string | undefined;
|
21
20
|
title?: string | undefined;
|
21
|
+
name?: string | undefined;
|
22
22
|
iconLocation?: string | undefined;
|
23
23
|
};
|
24
24
|
events: {
|
@@ -4,8 +4,8 @@
|
|
4
4
|
export default class DoughnutChart extends SvelteComponentTyped<{
|
5
5
|
label?: string | undefined;
|
6
6
|
width?: number | undefined;
|
7
|
-
data?: {} | undefined;
|
8
7
|
height?: number | undefined;
|
8
|
+
data?: {} | undefined;
|
9
9
|
}, {
|
10
10
|
[evt: string]: CustomEvent<any>;
|
11
11
|
}, {}> {
|
@@ -18,8 +18,8 @@ declare const __propDef: {
|
|
18
18
|
props: {
|
19
19
|
label?: string | undefined;
|
20
20
|
width?: number | undefined;
|
21
|
-
data?: {} | undefined;
|
22
21
|
height?: number | undefined;
|
22
|
+
data?: {} | undefined;
|
23
23
|
};
|
24
24
|
events: {
|
25
25
|
[evt: string]: CustomEvent<any>;
|
@@ -4,8 +4,8 @@
|
|
4
4
|
export default class PieChart extends SvelteComponentTyped<{
|
5
5
|
label?: string | undefined;
|
6
6
|
width?: number | undefined;
|
7
|
-
data?: {} | undefined;
|
8
7
|
height?: number | undefined;
|
8
|
+
data?: {} | undefined;
|
9
9
|
}, {
|
10
10
|
[evt: string]: CustomEvent<any>;
|
11
11
|
}, {}> {
|
@@ -18,8 +18,8 @@ declare const __propDef: {
|
|
18
18
|
props: {
|
19
19
|
label?: string | undefined;
|
20
20
|
width?: number | undefined;
|
21
|
-
data?: {} | undefined;
|
22
21
|
height?: number | undefined;
|
22
|
+
data?: {} | undefined;
|
23
23
|
};
|
24
24
|
events: {
|
25
25
|
[evt: string]: CustomEvent<any>;
|
@@ -3,14 +3,14 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} CheckboxSlots */
|
4
4
|
export default class Checkbox extends SvelteComponentTyped<{
|
5
5
|
invalid: any;
|
6
|
-
valid: any;
|
7
|
-
feedback: any;
|
8
6
|
disable: any;
|
9
7
|
enable: any;
|
10
|
-
|
8
|
+
valid: any;
|
9
|
+
feedback: any;
|
11
10
|
label?: string | undefined;
|
12
|
-
|
11
|
+
size?: string | undefined;
|
13
12
|
name?: string | undefined;
|
13
|
+
value?: string | undefined;
|
14
14
|
}, {
|
15
15
|
[evt: string]: CustomEvent<any>;
|
16
16
|
}, {}> {
|
@@ -22,14 +22,14 @@ import { SvelteComponentTyped } from "svelte";
|
|
22
22
|
declare const __propDef: {
|
23
23
|
props: {
|
24
24
|
invalid: any;
|
25
|
-
valid: any;
|
26
|
-
feedback: any;
|
27
25
|
disable: any;
|
28
26
|
enable: any;
|
29
|
-
|
27
|
+
valid: any;
|
28
|
+
feedback: any;
|
30
29
|
label?: string | undefined;
|
31
|
-
|
30
|
+
size?: string | undefined;
|
32
31
|
name?: string | undefined;
|
32
|
+
value?: string | undefined;
|
33
33
|
};
|
34
34
|
events: {
|
35
35
|
[evt: string]: CustomEvent<any>;
|
@@ -2,8 +2,8 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} CardBodyEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} CardBodySlots */
|
4
4
|
export default class CardBody extends SvelteComponentTyped<{
|
5
|
-
type?: string | undefined;
|
6
5
|
className?: string | undefined;
|
6
|
+
type?: string | undefined;
|
7
7
|
}, {
|
8
8
|
[evt: string]: CustomEvent<any>;
|
9
9
|
}, {
|
@@ -16,8 +16,8 @@ export type CardBodySlots = typeof __propDef.slots;
|
|
16
16
|
import { SvelteComponentTyped } from "svelte";
|
17
17
|
declare const __propDef: {
|
18
18
|
props: {
|
19
|
-
type?: string | undefined;
|
20
19
|
className?: string | undefined;
|
20
|
+
type?: string | undefined;
|
21
21
|
};
|
22
22
|
events: {
|
23
23
|
[evt: string]: CustomEvent<any>;
|
@@ -2,9 +2,9 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} EnkiSidebarEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} EnkiSidebarSlots */
|
4
4
|
export default class EnkiSidebar extends SvelteComponentTyped<{
|
5
|
+
companyName?: string | undefined;
|
5
6
|
isOpen?: boolean | undefined;
|
6
7
|
backdrop?: boolean | undefined;
|
7
|
-
companyName?: string | undefined;
|
8
8
|
}, {
|
9
9
|
[evt: string]: CustomEvent<any>;
|
10
10
|
}, {
|
@@ -20,9 +20,9 @@ export type EnkiSidebarSlots = typeof __propDef.slots;
|
|
20
20
|
import { SvelteComponentTyped } from "svelte";
|
21
21
|
declare const __propDef: {
|
22
22
|
props: {
|
23
|
+
companyName?: string | undefined;
|
23
24
|
isOpen?: boolean | undefined;
|
24
25
|
backdrop?: boolean | undefined;
|
25
|
-
companyName?: string | undefined;
|
26
26
|
};
|
27
27
|
events: {
|
28
28
|
[evt: string]: CustomEvent<any>;
|
@@ -3,9 +3,9 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} EnkiTableSlots */
|
4
4
|
export default class EnkiTable extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
|
-
size?: string | undefined;
|
7
|
-
type?: string | undefined;
|
8
6
|
className?: string | undefined;
|
7
|
+
type?: string | undefined;
|
8
|
+
size?: string | undefined;
|
9
9
|
}, {
|
10
10
|
[evt: string]: CustomEvent<any>;
|
11
11
|
}, {
|
@@ -19,9 +19,9 @@ import { SvelteComponentTyped } from "svelte";
|
|
19
19
|
declare const __propDef: {
|
20
20
|
props: {
|
21
21
|
[x: string]: any;
|
22
|
-
size?: string | undefined;
|
23
|
-
type?: string | undefined;
|
24
22
|
className?: string | undefined;
|
23
|
+
type?: string | undefined;
|
24
|
+
size?: string | undefined;
|
25
25
|
};
|
26
26
|
events: {
|
27
27
|
[evt: string]: CustomEvent<any>;
|
@@ -4,9 +4,9 @@
|
|
4
4
|
export default class TableCell extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
6
|
className?: string | undefined;
|
7
|
+
dataLabel?: string | undefined;
|
7
8
|
colspan?: number | undefined;
|
8
9
|
rowspan?: number | undefined;
|
9
|
-
dataLabel?: string | undefined;
|
10
10
|
}, {
|
11
11
|
[evt: string]: CustomEvent<any>;
|
12
12
|
}, {
|
@@ -21,9 +21,9 @@ declare const __propDef: {
|
|
21
21
|
props: {
|
22
22
|
[x: string]: any;
|
23
23
|
className?: string | undefined;
|
24
|
+
dataLabel?: string | undefined;
|
24
25
|
colspan?: number | undefined;
|
25
26
|
rowspan?: number | undefined;
|
26
|
-
dataLabel?: string | undefined;
|
27
27
|
};
|
28
28
|
events: {
|
29
29
|
[evt: string]: CustomEvent<any>;
|
@@ -3,8 +3,8 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} HeaderItemSlots */
|
4
4
|
export default class HeaderItem extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
|
-
link?: string | undefined;
|
7
6
|
type?: string | undefined;
|
7
|
+
link?: string | undefined;
|
8
8
|
iconName?: string | undefined;
|
9
9
|
}, {
|
10
10
|
click: MouseEvent;
|
@@ -21,8 +21,8 @@ import { SvelteComponentTyped } from "svelte";
|
|
21
21
|
declare const __propDef: {
|
22
22
|
props: {
|
23
23
|
[x: string]: any;
|
24
|
-
link?: string | undefined;
|
25
24
|
type?: string | undefined;
|
25
|
+
link?: string | undefined;
|
26
26
|
iconName?: string | undefined;
|
27
27
|
};
|
28
28
|
events: {
|
@@ -3,9 +3,9 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ActionIconSlots */
|
4
4
|
export default class ActionIcon extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
|
-
link?: string | undefined;
|
7
6
|
type?: string | undefined;
|
8
7
|
icon?: string | undefined;
|
8
|
+
link?: string | undefined;
|
9
9
|
}, {
|
10
10
|
click: MouseEvent;
|
11
11
|
} & {
|
@@ -19,9 +19,9 @@ import { SvelteComponentTyped } from "svelte";
|
|
19
19
|
declare const __propDef: {
|
20
20
|
props: {
|
21
21
|
[x: string]: any;
|
22
|
-
link?: string | undefined;
|
23
22
|
type?: string | undefined;
|
24
23
|
icon?: string | undefined;
|
24
|
+
link?: string | undefined;
|
25
25
|
};
|
26
26
|
events: {
|
27
27
|
click: MouseEvent;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<script>
|
2
|
-
import { i18nInit } from '../i18n/i18n';
|
2
|
+
// import { i18nInit } from '../i18n/i18n';
|
3
3
|
import ShiftLanguage from '../i18n/ShiftLanguage.svelte';
|
4
4
|
|
5
5
|
import { _ } from 'svelte-i18n';
|
6
|
-
i18nInit();
|
6
|
+
// i18nInit();
|
7
7
|
</script>
|
8
8
|
|
9
9
|
<footer class="main-footer p-10 d-flex flex-row align-items-center justify-content-between ">
|
@@ -3,9 +3,9 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ModalSlots */
|
4
4
|
export default class Modal extends SvelteComponentTyped<{
|
5
5
|
toggle: any;
|
6
|
+
className?: string | undefined;
|
6
7
|
size?: string | undefined;
|
7
8
|
isOpen?: boolean | undefined;
|
8
|
-
className?: string | undefined;
|
9
9
|
backdrop?: boolean | undefined;
|
10
10
|
}, {
|
11
11
|
[evt: string]: CustomEvent<any>;
|
@@ -20,9 +20,9 @@ import { SvelteComponentTyped } from "svelte";
|
|
20
20
|
declare const __propDef: {
|
21
21
|
props: {
|
22
22
|
toggle: any;
|
23
|
+
className?: string | undefined;
|
23
24
|
size?: string | undefined;
|
24
25
|
isOpen?: boolean | undefined;
|
25
|
-
className?: string | undefined;
|
26
26
|
backdrop?: boolean | undefined;
|
27
27
|
};
|
28
28
|
events: {
|
@@ -3,8 +3,8 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} MenuItemSlots */
|
4
4
|
export default class MenuItem extends SvelteComponentTyped<{
|
5
5
|
active?: boolean | undefined;
|
6
|
-
link?: string | undefined;
|
7
6
|
icon?: string | undefined;
|
7
|
+
link?: string | undefined;
|
8
8
|
}, {
|
9
9
|
click: MouseEvent;
|
10
10
|
} & {
|
@@ -20,8 +20,8 @@ import { SvelteComponentTyped } from "svelte";
|
|
20
20
|
declare const __propDef: {
|
21
21
|
props: {
|
22
22
|
active?: boolean | undefined;
|
23
|
-
link?: string | undefined;
|
24
23
|
icon?: string | undefined;
|
24
|
+
link?: string | undefined;
|
25
25
|
};
|
26
26
|
events: {
|
27
27
|
click: MouseEvent;
|
@@ -4,8 +4,8 @@
|
|
4
4
|
export default class Switch extends SvelteComponentTyped<{
|
5
5
|
disable: any;
|
6
6
|
enable: any;
|
7
|
-
size?: string | undefined;
|
8
7
|
label?: string | undefined;
|
8
|
+
size?: string | undefined;
|
9
9
|
}, {
|
10
10
|
[evt: string]: CustomEvent<any>;
|
11
11
|
}, {}> {
|
@@ -18,8 +18,8 @@ declare const __propDef: {
|
|
18
18
|
props: {
|
19
19
|
disable: any;
|
20
20
|
enable: any;
|
21
|
-
size?: string | undefined;
|
22
21
|
label?: string | undefined;
|
22
|
+
size?: string | undefined;
|
23
23
|
};
|
24
24
|
events: {
|
25
25
|
[evt: string]: CustomEvent<any>;
|
@@ -3,16 +3,16 @@
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TextFieldSlots */
|
4
4
|
export default class TextField extends SvelteComponentTyped<{
|
5
5
|
[x: string]: any;
|
6
|
-
|
6
|
+
className?: string | undefined;
|
7
7
|
disabled?: boolean | undefined;
|
8
8
|
invalid?: boolean | undefined;
|
9
9
|
type?: string | undefined;
|
10
|
-
|
11
|
-
placeholder?: string | undefined;
|
12
|
-
value?: string | undefined;
|
10
|
+
size?: string | undefined;
|
13
11
|
name?: string | undefined;
|
12
|
+
value?: string | undefined;
|
14
13
|
valid?: boolean | undefined;
|
15
14
|
feedback?: null | undefined;
|
15
|
+
placeholder?: string | undefined;
|
16
16
|
}, {
|
17
17
|
change: Event;
|
18
18
|
input: Event;
|
@@ -29,16 +29,16 @@ import { SvelteComponentTyped } from "svelte";
|
|
29
29
|
declare const __propDef: {
|
30
30
|
props: {
|
31
31
|
[x: string]: any;
|
32
|
-
|
32
|
+
className?: string | undefined;
|
33
33
|
disabled?: boolean | undefined;
|
34
34
|
invalid?: boolean | undefined;
|
35
35
|
type?: string | undefined;
|
36
|
-
|
37
|
-
placeholder?: string | undefined;
|
38
|
-
value?: string | undefined;
|
36
|
+
size?: string | undefined;
|
39
37
|
name?: string | undefined;
|
38
|
+
value?: string | undefined;
|
40
39
|
valid?: boolean | undefined;
|
41
40
|
feedback?: null | undefined;
|
41
|
+
placeholder?: string | undefined;
|
42
42
|
};
|
43
43
|
events: {
|
44
44
|
change: Event;
|
@@ -2,9 +2,9 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} ToastEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} ToastSlots */
|
4
4
|
export default class Toast extends SvelteComponentTyped<{
|
5
|
+
className?: string | undefined;
|
5
6
|
type?: string | undefined;
|
6
7
|
label?: string | undefined;
|
7
|
-
className?: string | undefined;
|
8
8
|
}, {
|
9
9
|
[evt: string]: CustomEvent<any>;
|
10
10
|
}, {
|
@@ -17,9 +17,9 @@ export type ToastSlots = typeof __propDef.slots;
|
|
17
17
|
import { SvelteComponentTyped } from "svelte";
|
18
18
|
declare const __propDef: {
|
19
19
|
props: {
|
20
|
+
className?: string | undefined;
|
20
21
|
type?: string | undefined;
|
21
22
|
label?: string | undefined;
|
22
|
-
className?: string | undefined;
|
23
23
|
};
|
24
24
|
events: {
|
25
25
|
[evt: string]: CustomEvent<any>;
|
@@ -2,8 +2,8 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} SensorStatusCardEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} SensorStatusCardSlots */
|
4
4
|
export default class SensorStatusCard extends SvelteComponentTyped<{
|
5
|
-
time?: string | undefined;
|
6
5
|
title?: string | undefined;
|
6
|
+
time?: string | undefined;
|
7
7
|
status?: string | undefined;
|
8
8
|
}, {
|
9
9
|
[evt: string]: CustomEvent<any>;
|
@@ -15,8 +15,8 @@ export type SensorStatusCardSlots = typeof __propDef.slots;
|
|
15
15
|
import { SvelteComponentTyped } from "svelte";
|
16
16
|
declare const __propDef: {
|
17
17
|
props: {
|
18
|
-
time?: string | undefined;
|
19
18
|
title?: string | undefined;
|
19
|
+
time?: string | undefined;
|
20
20
|
status?: string | undefined;
|
21
21
|
};
|
22
22
|
events: {
|
@@ -2,8 +2,8 @@
|
|
2
2
|
/** @typedef {typeof __propDef.events} StateCardEvents */
|
3
3
|
/** @typedef {typeof __propDef.slots} StateCardSlots */
|
4
4
|
export default class StateCard extends SvelteComponentTyped<{
|
5
|
-
time?: string | undefined;
|
6
5
|
title?: string | undefined;
|
6
|
+
time?: string | undefined;
|
7
7
|
subtitle?: string | undefined;
|
8
8
|
state?: string | undefined;
|
9
9
|
}, {
|
@@ -16,8 +16,8 @@ export type StateCardSlots = typeof __propDef.slots;
|
|
16
16
|
import { SvelteComponentTyped } from "svelte";
|
17
17
|
declare const __propDef: {
|
18
18
|
props: {
|
19
|
-
time?: string | undefined;
|
20
19
|
title?: string | undefined;
|
20
|
+
time?: string | undefined;
|
21
21
|
subtitle?: string | undefined;
|
22
22
|
state?: string | undefined;
|
23
23
|
};
|
package/index.d.ts
CHANGED
@@ -1,61 +1,78 @@
|
|
1
1
|
import './app.scss';
|
2
|
-
import Layout from './components/Layout/LayOut.svelte';
|
3
|
-
import Button from './components/Button/Button.svelte';
|
4
|
-
import TextField from './components/TextField/TextField.svelte';
|
5
|
-
import Card from './components/Card/Card.svelte';
|
6
|
-
import Tooltip from './components/Tooltip/Tooltip.svelte';
|
7
|
-
import Tab from './components/Tab/Tab.svelte';
|
8
|
-
import Icon from './components/Icon/Icon.svelte';
|
9
|
-
import ActionIconGroup from './components/Icon/ActionInconGroup.svelte';
|
10
|
-
import ActionIcon from './components/Icon/ActionIcon.svelte';
|
11
|
-
import Modal from './components/ModalWindow/Modal.svelte';
|
12
|
-
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
13
|
-
import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
14
|
-
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
15
|
-
import Header from './components/Header/Header.svelte';
|
16
|
-
import Brand from './components/Header/Brand.svelte';
|
17
|
-
import HeaderItem from './components/Header/HeaderItem.svelte';
|
18
|
-
import UserAvatar from './components/Header/UserAvatar.svelte';
|
19
|
-
import Dropdown from './components/Dropdown/Dropdown.svelte';
|
20
|
-
import DropdownItem from './components/Dropdown/DropdownItem.svelte';
|
21
|
-
import Badge from './components/Badge/Badge.svelte';
|
22
|
-
import Alert from './components/Alert/Alert.svelte';
|
23
|
-
import Pagination from './components/Pagination/Pagination.svelte';
|
24
|
-
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
25
|
-
import Switch from './components/Switches/Switch.svelte';
|
26
|
-
import Checkbox from './components/CheckBox/Checkbox.svelte';
|
27
|
-
import Breadcrumb from './components/Breadcrumb/Breadcrumb.svelte';
|
28
2
|
import Accordion from './components/Accordion/Accordion.svelte';
|
29
3
|
import AccordionItem from './components/Accordion/AccordionItem.svelte';
|
4
|
+
import Alert from './components/Alert/Alert.svelte';
|
5
|
+
import Badge from './components/Badge/Badge.svelte';
|
6
|
+
import Breadcrumb from './components/Breadcrumb/Breadcrumb.svelte';
|
7
|
+
import Button from './components/Button/Button.svelte';
|
8
|
+
import Card from './components/Card/Card.svelte';
|
30
9
|
import CardIcon from './components/CardIcon/CardIcon.svelte';
|
31
|
-
import CardiconTitle from './components/CardIcon/CardiconTitle.svelte';
|
32
10
|
import CardiconBody from './components/CardIcon/CardiconBody.svelte';
|
33
11
|
import CardiconSubtitle from './components/CardIcon/CardiconSubtitle.svelte';
|
34
|
-
import
|
35
|
-
import
|
36
|
-
import
|
37
|
-
import
|
38
|
-
import TableRow from './components/EnkiTable/TableRow.svelte';
|
39
|
-
import TableCell from './components/EnkiTable/TableCell.svelte';
|
40
|
-
import EnkiCard from './components/EnkiCard/EnkiCard.svelte';
|
41
|
-
import CardTitle from './components/EnkiCard/CardTitle.svelte';
|
42
|
-
import CardSubtitle from './components/EnkiCard/CardSubTitle.svelte';
|
43
|
-
import CardText from './components/EnkiCard/CardText.svelte';
|
12
|
+
import CardiconTitle from './components/CardIcon/CardiconTitle.svelte';
|
13
|
+
import Checkbox from './components/CheckBox/Checkbox.svelte';
|
14
|
+
import Dropdown from './components/Dropdown/Dropdown.svelte';
|
15
|
+
import DropdownItem from './components/Dropdown/DropdownItem.svelte';
|
44
16
|
import CardBody from './components/EnkiCard/CardBody.svelte';
|
45
17
|
import CardFooter from './components/EnkiCard/CardFooter.svelte';
|
46
18
|
import CardLink from './components/EnkiCard/CardLink.svelte';
|
19
|
+
import CardSubtitle from './components/EnkiCard/CardSubTitle.svelte';
|
20
|
+
import CardText from './components/EnkiCard/CardText.svelte';
|
21
|
+
import CardTitle from './components/EnkiCard/CardTitle.svelte';
|
22
|
+
import EnkiCard from './components/EnkiCard/EnkiCard.svelte';
|
47
23
|
import EnkiSidebar from './components/EnkiSidbar/EnkiSidebar.svelte';
|
48
|
-
import NavItem from './components/EnkiSidbar/NavItem.svelte';
|
49
24
|
import NavIcon from './components/EnkiSidbar/NavIcon.svelte';
|
25
|
+
import NavItem from './components/EnkiSidbar/NavItem.svelte';
|
50
26
|
import NavLink from './components/EnkiSidbar/NavLink.svelte';
|
51
|
-
import
|
52
|
-
import
|
53
|
-
import
|
54
|
-
import
|
55
|
-
import
|
56
|
-
import
|
57
|
-
import
|
58
|
-
import
|
59
|
-
import
|
60
|
-
|
27
|
+
import EnkiTable from './components/EnkiTable/EnkiTable.svelte';
|
28
|
+
import TableBody from './components/EnkiTable/TableBody.svelte';
|
29
|
+
import TableCell from './components/EnkiTable/TableCell.svelte';
|
30
|
+
import TableHead from './components/EnkiTable/TableHead.svelte';
|
31
|
+
import TableHeadCell from './components/EnkiTable/TableHeadCell.svelte';
|
32
|
+
import TableRow from './components/EnkiTable/TableRow.svelte';
|
33
|
+
import Brand from './components/Header/Brand.svelte';
|
34
|
+
import Header from './components/Header/Header.svelte';
|
35
|
+
import HeaderDropDownLink from './components/Header/HeaderDropDownLink.svelte';
|
36
|
+
import HeaderDropDownLinkItem from './components/Header/HeaderDropDownLinkItem.svelte';
|
37
|
+
import HeaderLink from './components/Header/HeaderLink.svelte';
|
38
|
+
import HeaderLinks from './components/Header/HeaderLinks.svelte';
|
39
|
+
import HeaderItem from './components/Header/HeaderItem.svelte';
|
40
|
+
import UserAvatar from './components/Header/UserAvatar.svelte';
|
41
|
+
import Content from './components/Layout/Content.svelte';
|
42
|
+
import { i18nInit } from './components/i18n/i18n';
|
43
|
+
import ActionIcon from './components/Icon/ActionIcon.svelte';
|
44
|
+
import ActionIconGroup from './components/Icon/ActionInconGroup.svelte';
|
45
|
+
import Icon from './components/Icon/Icon.svelte';
|
46
|
+
import Footer from './components/Layout/Footer.svelte';
|
47
|
+
import Layout from './components/Layout/Layout.svelte';
|
48
|
+
import MainMenuHead from './components/Layout/MainMenuHead.svelte';
|
49
|
+
import { derivedStore, menuTypeStore, smallMenuwidth } from './components/Layout/menuStore.js';
|
50
|
+
import Page from './components/Layout/Page.svelte';
|
51
|
+
import Modal from './components/ModalWindow/Modal.svelte';
|
52
|
+
import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
53
|
+
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
54
|
+
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
55
|
+
import NotFound from './components/NotFound/NotFound.svelte';
|
56
|
+
import Pagination from './components/Pagination/Pagination.svelte';
|
57
|
+
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
58
|
+
import Switch from './components/Switches/Switch.svelte';
|
59
|
+
import Tab from './components/Tab/Tab.svelte';
|
60
|
+
import TextField from './components/TextField/TextField.svelte';
|
61
|
+
import Toast from './components/Toast/Toast.svelte';
|
62
|
+
import Tooltip from './components/Tooltip/Tooltip.svelte';
|
63
|
+
import SortableGrid from './components/Layout/SortableGrid.svelte';
|
64
|
+
import MenuGroup from './components/Sidebar/MenuGroup.svelte';
|
65
|
+
import MenuItem from './components/Sidebar/MenuItem.svelte';
|
66
|
+
import SideBarMenu from './components/Sidebar/SideBarMenu.svelte';
|
67
|
+
import StatusCard from './components/StatusCard/StatusCard.svelte';
|
68
|
+
import StatusCardBody from './components/StatusCard/StatusCardBody.svelte';
|
69
|
+
import StatusCardTitle from './components/StatusCard/StatusCardTitle.svelte';
|
70
|
+
import StateCard from './components/WidgetCard/StateCard.svelte';
|
71
|
+
import WidgetCard from './components/WidgetCard/WidgetCard.svelte';
|
72
|
+
import WidgetCardBody from './components/WidgetCard/WidgetCardBody.svelte';
|
73
|
+
import DoughnutChart from './components/Charts/DoughnutChart.svelte';
|
74
|
+
import PieChart from './components/Charts/PieChart.svelte';
|
75
|
+
import BarChart from './components/Charts/Barchart.svelte';
|
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, };
|
61
78
|
export default i18nInit;
|
package/index.js
CHANGED
@@ -1,62 +1,79 @@
|
|
1
1
|
// Reexport your entry components here
|
2
2
|
import './app.scss';
|
3
|
-
import Layout from './components/Layout/LayOut.svelte';
|
4
|
-
import Button from './components/Button/Button.svelte';
|
5
|
-
import TextField from './components/TextField/TextField.svelte';
|
6
|
-
import Card from './components/Card/Card.svelte';
|
7
|
-
import Tooltip from './components/Tooltip/Tooltip.svelte';
|
8
|
-
import Tab from './components/Tab/Tab.svelte';
|
9
|
-
import Icon from './components/Icon/Icon.svelte';
|
10
|
-
import ActionIconGroup from './components/Icon/ActionInconGroup.svelte';
|
11
|
-
import ActionIcon from './components/Icon/ActionIcon.svelte';
|
12
|
-
import Modal from './components/ModalWindow/Modal.svelte';
|
13
|
-
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
14
|
-
import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
15
|
-
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
16
|
-
import Header from './components/Header/Header.svelte';
|
17
|
-
import Brand from './components/Header/Brand.svelte';
|
18
|
-
import HeaderItem from './components/Header/HeaderItem.svelte';
|
19
|
-
import UserAvatar from './components/Header/UserAvatar.svelte';
|
20
|
-
import Dropdown from './components/Dropdown/Dropdown.svelte';
|
21
|
-
import DropdownItem from './components/Dropdown/DropdownItem.svelte';
|
22
|
-
import Badge from './components/Badge/Badge.svelte';
|
23
|
-
import Alert from './components/Alert/Alert.svelte';
|
24
|
-
import Pagination from './components/Pagination/Pagination.svelte';
|
25
|
-
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
26
|
-
import Switch from './components/Switches/Switch.svelte';
|
27
|
-
import Checkbox from './components/CheckBox/Checkbox.svelte';
|
28
|
-
import Breadcrumb from './components/Breadcrumb/Breadcrumb.svelte';
|
29
3
|
import Accordion from './components/Accordion/Accordion.svelte';
|
30
4
|
import AccordionItem from './components/Accordion/AccordionItem.svelte';
|
5
|
+
import Alert from './components/Alert/Alert.svelte';
|
6
|
+
import Badge from './components/Badge/Badge.svelte';
|
7
|
+
import Breadcrumb from './components/Breadcrumb/Breadcrumb.svelte';
|
8
|
+
import Button from './components/Button/Button.svelte';
|
9
|
+
import Card from './components/Card/Card.svelte';
|
31
10
|
import CardIcon from './components/CardIcon/CardIcon.svelte';
|
32
|
-
import CardiconTitle from './components/CardIcon/CardiconTitle.svelte';
|
33
11
|
import CardiconBody from './components/CardIcon/CardiconBody.svelte';
|
34
12
|
import CardiconSubtitle from './components/CardIcon/CardiconSubtitle.svelte';
|
35
|
-
import
|
36
|
-
import
|
37
|
-
import
|
38
|
-
import
|
39
|
-
import TableRow from './components/EnkiTable/TableRow.svelte';
|
40
|
-
import TableCell from './components/EnkiTable/TableCell.svelte';
|
41
|
-
import EnkiCard from './components/EnkiCard/EnkiCard.svelte';
|
42
|
-
import CardTitle from './components/EnkiCard/CardTitle.svelte';
|
43
|
-
import CardSubtitle from './components/EnkiCard/CardSubTitle.svelte';
|
44
|
-
import CardText from './components/EnkiCard/CardText.svelte';
|
13
|
+
import CardiconTitle from './components/CardIcon/CardiconTitle.svelte';
|
14
|
+
import Checkbox from './components/CheckBox/Checkbox.svelte';
|
15
|
+
import Dropdown from './components/Dropdown/Dropdown.svelte';
|
16
|
+
import DropdownItem from './components/Dropdown/DropdownItem.svelte';
|
45
17
|
import CardBody from './components/EnkiCard/CardBody.svelte';
|
46
18
|
import CardFooter from './components/EnkiCard/CardFooter.svelte';
|
47
19
|
import CardLink from './components/EnkiCard/CardLink.svelte';
|
20
|
+
import CardSubtitle from './components/EnkiCard/CardSubTitle.svelte';
|
21
|
+
import CardText from './components/EnkiCard/CardText.svelte';
|
22
|
+
import CardTitle from './components/EnkiCard/CardTitle.svelte';
|
23
|
+
import EnkiCard from './components/EnkiCard/EnkiCard.svelte';
|
48
24
|
import EnkiSidebar from './components/EnkiSidbar/EnkiSidebar.svelte';
|
49
|
-
import NavItem from './components/EnkiSidbar/NavItem.svelte';
|
50
25
|
import NavIcon from './components/EnkiSidbar/NavIcon.svelte';
|
26
|
+
import NavItem from './components/EnkiSidbar/NavItem.svelte';
|
51
27
|
import NavLink from './components/EnkiSidbar/NavLink.svelte';
|
52
|
-
import
|
53
|
-
import
|
54
|
-
import
|
55
|
-
import
|
56
|
-
import
|
57
|
-
import
|
58
|
-
import
|
59
|
-
import
|
60
|
-
import
|
61
|
-
|
28
|
+
import EnkiTable from './components/EnkiTable/EnkiTable.svelte';
|
29
|
+
import TableBody from './components/EnkiTable/TableBody.svelte';
|
30
|
+
import TableCell from './components/EnkiTable/TableCell.svelte';
|
31
|
+
import TableHead from './components/EnkiTable/TableHead.svelte';
|
32
|
+
import TableHeadCell from './components/EnkiTable/TableHeadCell.svelte';
|
33
|
+
import TableRow from './components/EnkiTable/TableRow.svelte';
|
34
|
+
import Brand from './components/Header/Brand.svelte';
|
35
|
+
import Header from './components/Header/Header.svelte';
|
36
|
+
import HeaderDropDownLink from './components/Header/HeaderDropDownLink.svelte';
|
37
|
+
import HeaderDropDownLinkItem from './components/Header/HeaderDropDownLinkItem.svelte';
|
38
|
+
import HeaderLink from './components/Header/HeaderLink.svelte';
|
39
|
+
import HeaderLinks from './components/Header/HeaderLinks.svelte';
|
40
|
+
import HeaderItem from './components/Header/HeaderItem.svelte';
|
41
|
+
import UserAvatar from './components/Header/UserAvatar.svelte';
|
42
|
+
import Content from './components/Layout/Content.svelte';
|
43
|
+
import { i18nInit } from './components/i18n/i18n';
|
44
|
+
import ActionIcon from './components/Icon/ActionIcon.svelte';
|
45
|
+
import ActionIconGroup from './components/Icon/ActionInconGroup.svelte';
|
46
|
+
import Icon from './components/Icon/Icon.svelte';
|
47
|
+
import Footer from './components/Layout/Footer.svelte';
|
48
|
+
import Layout from './components/Layout/Layout.svelte';
|
49
|
+
import MainMenuHead from './components/Layout/MainMenuHead.svelte';
|
50
|
+
import { derivedStore, menuTypeStore, smallMenuwidth } from './components/Layout/menuStore.js';
|
51
|
+
import Page from './components/Layout/Page.svelte';
|
52
|
+
import Modal from './components/ModalWindow/Modal.svelte';
|
53
|
+
import ModalBody from './components/ModalWindow/ModalBody.svelte';
|
54
|
+
import ModalFooter from './components/ModalWindow/ModalFooter.svelte';
|
55
|
+
import ModalHeader from './components/ModalWindow/ModalHeader.svelte';
|
56
|
+
import NotFound from './components/NotFound/NotFound.svelte';
|
57
|
+
import Pagination from './components/Pagination/Pagination.svelte';
|
58
|
+
import RadioButton from './components/RadioButton/RadioButton.svelte';
|
59
|
+
import Switch from './components/Switches/Switch.svelte';
|
60
|
+
import Tab from './components/Tab/Tab.svelte';
|
61
|
+
import TextField from './components/TextField/TextField.svelte';
|
62
|
+
import Toast from './components/Toast/Toast.svelte';
|
63
|
+
import Tooltip from './components/Tooltip/Tooltip.svelte';
|
64
|
+
import SortableGrid from './components/Layout/SortableGrid.svelte';
|
65
|
+
import MenuGroup from './components/Sidebar/MenuGroup.svelte';
|
66
|
+
import MenuItem from './components/Sidebar/MenuItem.svelte';
|
67
|
+
import SideBarMenu from './components/Sidebar/SideBarMenu.svelte';
|
68
|
+
import StatusCard from './components/StatusCard/StatusCard.svelte';
|
69
|
+
import StatusCardBody from './components/StatusCard/StatusCardBody.svelte';
|
70
|
+
import StatusCardTitle from './components/StatusCard/StatusCardTitle.svelte';
|
71
|
+
import StateCard from './components/WidgetCard/StateCard.svelte';
|
72
|
+
import WidgetCard from './components/WidgetCard/WidgetCard.svelte';
|
73
|
+
import WidgetCardBody from './components/WidgetCard/WidgetCardBody.svelte';
|
74
|
+
import DoughnutChart from './components/Charts/DoughnutChart.svelte';
|
75
|
+
import PieChart from './components/Charts/PieChart.svelte';
|
76
|
+
import BarChart from './components/Charts/Barchart.svelte';
|
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, };
|
62
79
|
export default i18nInit;
|