@bexis2/bexis2-core-ui 0.3.14 → 0.4.1
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/README.md +13 -1
- package/dist/TableView.svelte.d.ts +2 -2
- package/dist/components/CodeEditor/CodeEditor.svelte +1 -1
- package/dist/components/CodeEditor/CodeEditor.svelte.d.ts +3 -4
- package/dist/components/File/FileIcon.svelte.d.ts +2 -2
- package/dist/components/File/FileInfo.svelte.d.ts +2 -2
- package/dist/components/File/FileUploader.svelte +1 -1
- package/dist/components/File/FileUploader.svelte.d.ts +2 -2
- package/dist/components/ListView.svelte.d.ts +2 -2
- package/dist/components/Table/Table.svelte.d.ts +2 -2
- package/dist/components/Table/TableContent.svelte +39 -13
- package/dist/components/Table/TableContent.svelte.d.ts +2 -2
- package/dist/components/Table/TableFilter.svelte +51 -25
- package/dist/components/Table/TableFilter.svelte.d.ts +4 -2
- package/dist/components/Table/TableFilterServer.svelte +1 -1
- package/dist/components/Table/TableFilterServer.svelte.d.ts +2 -2
- package/dist/components/Table/TablePagination.svelte +1 -1
- package/dist/components/Table/TablePagination.svelte.d.ts +2 -2
- package/dist/components/Table/TablePaginationServer.svelte +1 -1
- package/dist/components/Table/TablePaginationServer.svelte.d.ts +2 -2
- package/dist/components/Table/shared.js +8 -8
- package/dist/components/form/Checkbox.svelte.d.ts +2 -2
- package/dist/components/form/CheckboxKvPList.svelte.d.ts +2 -2
- package/dist/components/form/CheckboxList.svelte.d.ts +2 -2
- package/dist/components/form/DateInput.svelte.d.ts +2 -2
- package/dist/components/form/DropdownKvP.svelte.d.ts +8 -8
- package/dist/components/form/InputContainer.svelte.d.ts +2 -2
- package/dist/components/form/MultiSelect.svelte.d.ts +6 -6
- package/dist/components/form/NumberInput.svelte.d.ts +2 -2
- package/dist/components/form/TextArea.svelte.d.ts +2 -2
- package/dist/components/form/TextInput.svelte.d.ts +2 -2
- package/dist/components/page/Alert.svelte.d.ts +2 -2
- package/dist/components/page/BackToTop.svelte.d.ts +2 -2
- package/dist/components/page/Docs.svelte +1 -1
- package/dist/components/page/Docs.svelte.d.ts +2 -2
- package/dist/components/page/ErrorMessage.svelte.d.ts +2 -2
- package/dist/components/page/Footer.svelte.d.ts +2 -2
- package/dist/components/page/GoToTop.svelte +1 -1
- package/dist/components/page/GoToTop.svelte.d.ts +2 -2
- package/dist/components/page/Header.svelte.d.ts +2 -2
- package/dist/components/page/HelpPopUp.svelte +1 -1
- package/dist/components/page/HelpPopUp.svelte.d.ts +2 -2
- package/dist/components/page/Notification.svelte.d.ts +2 -2
- package/dist/components/page/Page.svelte.d.ts +2 -2
- package/dist/components/page/Spinner.svelte.d.ts +2 -2
- package/dist/components/page/TablePlaceholder.svelte.d.ts +2 -2
- package/dist/components/page/breadcrumb/Breadcrumb.svelte.d.ts +2 -2
- package/dist/components/page/menu/Menu.svelte +1 -1
- package/dist/components/page/menu/Menu.svelte.d.ts +2 -2
- package/dist/components/page/menu/MenuBar.svelte.d.ts +2 -2
- package/dist/components/page/menu/MenuItem.svelte.d.ts +2 -2
- package/dist/components/page/menu/MenuSublist.svelte.d.ts +2 -2
- package/dist/components/page/menu/SettingsBar.svelte +1 -1
- package/dist/components/page/menu/SettingsBar.svelte.d.ts +2 -2
- package/dist/components/toggle/Toggle.svelte +1 -1
- package/dist/components/toggle/Toggle.svelte.d.ts +2 -2
- package/dist/models/Enums.d.ts +15 -15
- package/dist/models/Models.d.ts +1 -0
- package/dist/models/Models.js +2 -0
- package/dist/stores/pageStores.d.ts +4 -3
- package/dist/themes/theme-bexis2.js +78 -78
- package/package.json +44 -41
- package/src/lib/components/CodeEditor/CodeEditor.svelte +1 -1
- package/src/lib/components/Table/TableContent.svelte +41 -14
- package/src/lib/components/Table/TableFilter.svelte +62 -36
- package/src/lib/components/Table/TableFilterServer.svelte +1 -1
- package/src/lib/components/Table/TablePagination.svelte +1 -1
- package/src/lib/components/Table/TablePaginationServer.svelte +1 -1
- package/src/lib/components/Table/shared.ts +9 -8
- package/src/lib/components/file/FileUploader.svelte +1 -1
- package/src/lib/components/page/Docs.svelte +1 -1
- package/src/lib/components/page/GoToTop.svelte +1 -1
- package/src/lib/components/page/HelpPopUp.svelte +1 -1
- package/src/lib/components/page/menu/Menu.svelte +1 -1
- package/src/lib/components/page/menu/SettingsBar.svelte +1 -1
- package/src/lib/components/toggle/Toggle.svelte +1 -1
- package/src/lib/models/Models.ts +2 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} MultiSelectProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} MultiSelectEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} MultiSelectSlots */
|
|
4
|
-
export default class MultiSelect extends
|
|
4
|
+
export default class MultiSelect extends SvelteComponent<{
|
|
5
5
|
id: any;
|
|
6
6
|
target: any;
|
|
7
|
-
source: any;
|
|
8
7
|
title: any;
|
|
8
|
+
source: any;
|
|
9
9
|
invalid?: boolean | undefined;
|
|
10
10
|
feedback?: string[] | undefined;
|
|
11
11
|
required?: boolean | undefined;
|
|
12
|
-
complexTarget?: boolean | undefined;
|
|
13
12
|
help?: boolean | undefined;
|
|
13
|
+
complexTarget?: boolean | undefined;
|
|
14
14
|
itemId?: string | undefined;
|
|
15
15
|
itemLabel?: string | undefined;
|
|
16
16
|
itemGroup?: string | undefined;
|
|
@@ -36,18 +36,18 @@ export default class MultiSelect extends SvelteComponentTyped<{
|
|
|
36
36
|
export type MultiSelectProps = typeof __propDef.props;
|
|
37
37
|
export type MultiSelectEvents = typeof __propDef.events;
|
|
38
38
|
export type MultiSelectSlots = typeof __propDef.slots;
|
|
39
|
-
import {
|
|
39
|
+
import { SvelteComponent } from "svelte";
|
|
40
40
|
declare const __propDef: {
|
|
41
41
|
props: {
|
|
42
42
|
id: any;
|
|
43
43
|
target: any;
|
|
44
|
-
source: any;
|
|
45
44
|
title: any;
|
|
45
|
+
source: any;
|
|
46
46
|
invalid?: boolean | undefined;
|
|
47
47
|
feedback?: string[] | undefined;
|
|
48
48
|
required?: boolean | undefined;
|
|
49
|
-
complexTarget?: boolean | undefined;
|
|
50
49
|
help?: boolean | undefined;
|
|
50
|
+
complexTarget?: boolean | undefined;
|
|
51
51
|
itemId?: string | undefined;
|
|
52
52
|
itemLabel?: string | undefined;
|
|
53
53
|
itemGroup?: string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id?: string | undefined;
|
|
@@ -23,6 +23,6 @@ declare const __propDef: {
|
|
|
23
23
|
export type NumberInputProps = typeof __propDef.props;
|
|
24
24
|
export type NumberInputEvents = typeof __propDef.events;
|
|
25
25
|
export type NumberInputSlots = typeof __propDef.slots;
|
|
26
|
-
export default class NumberInput extends
|
|
26
|
+
export default class NumberInput extends SvelteComponent<NumberInputProps, NumberInputEvents, NumberInputSlots> {
|
|
27
27
|
}
|
|
28
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id?: string | undefined;
|
|
@@ -23,6 +23,6 @@ declare const __propDef: {
|
|
|
23
23
|
export type TextAreaProps = typeof __propDef.props;
|
|
24
24
|
export type TextAreaEvents = typeof __propDef.events;
|
|
25
25
|
export type TextAreaSlots = typeof __propDef.slots;
|
|
26
|
-
export default class TextArea extends
|
|
26
|
+
export default class TextArea extends SvelteComponent<TextAreaProps, TextAreaEvents, TextAreaSlots> {
|
|
27
27
|
}
|
|
28
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id?: string | undefined;
|
|
@@ -23,6 +23,6 @@ declare const __propDef: {
|
|
|
23
23
|
export type TextInputProps = typeof __propDef.props;
|
|
24
24
|
export type TextInputEvents = typeof __propDef.events;
|
|
25
25
|
export type TextInputSlots = typeof __propDef.slots;
|
|
26
|
-
export default class TextInput extends
|
|
26
|
+
export default class TextInput extends SvelteComponent<TextInputProps, TextInputEvents, TextInputSlots> {
|
|
27
27
|
}
|
|
28
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
title?: string | undefined;
|
|
@@ -17,6 +17,6 @@ declare const __propDef: {
|
|
|
17
17
|
export type AlertProps = typeof __propDef.props;
|
|
18
18
|
export type AlertEvents = typeof __propDef.events;
|
|
19
19
|
export type AlertSlots = typeof __propDef.slots;
|
|
20
|
-
export default class Alert extends
|
|
20
|
+
export default class Alert extends SvelteComponent<AlertProps, AlertEvents, AlertSlots> {
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} BackToTopProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} BackToTopEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} BackToTopSlots */
|
|
4
|
-
export default class BackToTop extends
|
|
4
|
+
export default class BackToTop extends SvelteComponent<{
|
|
5
5
|
showOnPx?: number | undefined;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class BackToTop extends SvelteComponentTyped<{
|
|
|
10
10
|
export type BackToTopProps = typeof __propDef.props;
|
|
11
11
|
export type BackToTopEvents = typeof __propDef.events;
|
|
12
12
|
export type BackToTopSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
showOnPx?: number | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { linkType } from '../../models/Models';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -13,6 +13,6 @@ declare const __propDef: {
|
|
|
13
13
|
export type DocsProps = typeof __propDef.props;
|
|
14
14
|
export type DocsEvents = typeof __propDef.events;
|
|
15
15
|
export type DocsSlots = typeof __propDef.slots;
|
|
16
|
-
export default class Docs extends
|
|
16
|
+
export default class Docs extends SvelteComponent<DocsProps, DocsEvents, DocsSlots> {
|
|
17
17
|
}
|
|
18
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
error: Error;
|
|
@@ -11,6 +11,6 @@ declare const __propDef: {
|
|
|
11
11
|
export type ErrorMessageProps = typeof __propDef.props;
|
|
12
12
|
export type ErrorMessageEvents = typeof __propDef.events;
|
|
13
13
|
export type ErrorMessageSlots = typeof __propDef.slots;
|
|
14
|
-
export default class ErrorMessage extends
|
|
14
|
+
export default class ErrorMessage extends SvelteComponent<ErrorMessageProps, ErrorMessageEvents, ErrorMessageSlots> {
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type FooterProps = typeof __propDef.props;
|
|
10
10
|
export type FooterEvents = typeof __propDef.events;
|
|
11
11
|
export type FooterSlots = typeof __propDef.slots;
|
|
12
|
-
export default class Footer extends
|
|
12
|
+
export default class Footer extends SvelteComponent<FooterProps, FooterEvents, FooterSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} GoToTopProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} GoToTopEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} GoToTopSlots */
|
|
4
|
-
export default class GoToTop extends
|
|
4
|
+
export default class GoToTop extends SvelteComponent<{
|
|
5
5
|
showAtPixel?: number | undefined;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class GoToTop extends SvelteComponentTyped<{
|
|
|
10
10
|
export type GoToTopProps = typeof __propDef.props;
|
|
11
11
|
export type GoToTopEvents = typeof __propDef.events;
|
|
12
12
|
export type GoToTopSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
showAtPixel?: number | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type HeaderProps = typeof __propDef.props;
|
|
10
10
|
export type HeaderEvents = typeof __propDef.events;
|
|
11
11
|
export type HeaderSlots = typeof __propDef.slots;
|
|
12
|
-
export default class Header extends
|
|
12
|
+
export default class Header extends SvelteComponent<HeaderProps, HeaderEvents, HeaderSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import { helpStore } from "../../stores/pageStores";
|
|
2
|
-
import Fa from "svelte-fa
|
|
2
|
+
import Fa from "svelte-fa";
|
|
3
3
|
import { faQuestion } from "@fortawesome/free-solid-svg-icons";
|
|
4
4
|
import { popup } from "@skeletonlabs/skeleton";
|
|
5
5
|
import delay from "delay";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
active?: boolean | undefined;
|
|
@@ -11,6 +11,6 @@ declare const __propDef: {
|
|
|
11
11
|
export type HelpPopUpProps = typeof __propDef.props;
|
|
12
12
|
export type HelpPopUpEvents = typeof __propDef.events;
|
|
13
13
|
export type HelpPopUpSlots = typeof __propDef.slots;
|
|
14
|
-
export default class HelpPopUp extends
|
|
14
|
+
export default class HelpPopUp extends SvelteComponent<HelpPopUpProps, HelpPopUpEvents, HelpPopUpSlots> {
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type NotificationProps = typeof __propDef.props;
|
|
10
10
|
export type NotificationEvents = typeof __propDef.events;
|
|
11
11
|
export type NotificationSlots = typeof __propDef.slots;
|
|
12
|
-
export default class Notification extends
|
|
12
|
+
export default class Notification extends SvelteComponent<NotificationProps, NotificationEvents, NotificationSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { linkType } from '../../models/Models';
|
|
3
3
|
import { pageContentLayoutType } from '../../models/Enums';
|
|
4
4
|
declare const __propDef: {
|
|
@@ -25,6 +25,6 @@ declare const __propDef: {
|
|
|
25
25
|
export type PageProps = typeof __propDef.props;
|
|
26
26
|
export type PageEvents = typeof __propDef.events;
|
|
27
27
|
export type PageSlots = typeof __propDef.slots;
|
|
28
|
-
export default class Page extends
|
|
28
|
+
export default class Page extends SvelteComponent<PageProps, PageEvents, PageSlots> {
|
|
29
29
|
}
|
|
30
30
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import { positionType } from '../../models/Enums';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -14,6 +14,6 @@ declare const __propDef: {
|
|
|
14
14
|
export type SpinnerProps = typeof __propDef.props;
|
|
15
15
|
export type SpinnerEvents = typeof __propDef.events;
|
|
16
16
|
export type SpinnerSlots = typeof __propDef.slots;
|
|
17
|
-
export default class Spinner extends
|
|
17
|
+
export default class Spinner extends SvelteComponent<SpinnerProps, SpinnerEvents, SpinnerSlots> {
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
cols?: number | undefined;
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type TablePlaceholderProps = typeof __propDef.props;
|
|
13
13
|
export type TablePlaceholderEvents = typeof __propDef.events;
|
|
14
14
|
export type TablePlaceholderSlots = typeof __propDef.slots;
|
|
15
|
-
export default class TablePlaceholder extends
|
|
15
|
+
export default class TablePlaceholder extends SvelteComponent<TablePlaceholderProps, TablePlaceholderEvents, TablePlaceholderSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
title: any;
|
|
@@ -11,6 +11,6 @@ declare const __propDef: {
|
|
|
11
11
|
export type BreadcrumbProps = typeof __propDef.props;
|
|
12
12
|
export type BreadcrumbEvents = typeof __propDef.events;
|
|
13
13
|
export type BreadcrumbSlots = typeof __propDef.slots;
|
|
14
|
-
export default class Breadcrumb extends
|
|
14
|
+
export default class Breadcrumb extends SvelteComponent<BreadcrumbProps, BreadcrumbEvents, BreadcrumbSlots> {
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
@@ -3,7 +3,7 @@ import { getMenuItems } from "./MenuDataCaller";
|
|
|
3
3
|
import { menuStore } from "../../../stores/pageStores";
|
|
4
4
|
import MenuBar from "./MenuBar.svelte";
|
|
5
5
|
import SettingsBar from "./SettingsBar.svelte";
|
|
6
|
-
import Fa from "svelte-fa
|
|
6
|
+
import Fa from "svelte-fa";
|
|
7
7
|
import { faBars } from "@fortawesome/free-solid-svg-icons";
|
|
8
8
|
import { Accordion } from "@skeletonlabs/skeleton";
|
|
9
9
|
onMount(async () => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: Record<string, never>;
|
|
4
4
|
events: {
|
|
@@ -9,6 +9,6 @@ declare const __propDef: {
|
|
|
9
9
|
export type MenuProps = typeof __propDef.props;
|
|
10
10
|
export type MenuEvents = typeof __propDef.events;
|
|
11
11
|
export type MenuSlots = typeof __propDef.slots;
|
|
12
|
-
export default class Menu extends
|
|
12
|
+
export default class Menu extends SvelteComponent<MenuProps, MenuEvents, MenuSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { MenuItem } from './menu';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type MenuBarProps = typeof __propDef.props;
|
|
13
13
|
export type MenuBarEvents = typeof __propDef.events;
|
|
14
14
|
export type MenuBarSlots = typeof __propDef.slots;
|
|
15
|
-
export default class MenuBar extends
|
|
15
|
+
export default class MenuBar extends SvelteComponent<MenuBarProps, MenuBarEvents, MenuBarSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { menuItemType } from '../../../models/Page';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -13,6 +13,6 @@ declare const __propDef: {
|
|
|
13
13
|
export type MenuItemProps = typeof __propDef.props;
|
|
14
14
|
export type MenuItemEvents = typeof __propDef.events;
|
|
15
15
|
export type MenuItemSlots = typeof __propDef.slots;
|
|
16
|
-
export default class MenuItem extends
|
|
16
|
+
export default class MenuItem extends SvelteComponent<MenuItemProps, MenuItemEvents, MenuItemSlots> {
|
|
17
17
|
}
|
|
18
18
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { menuItemType } from '../../../models/Page';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type MenuSublistProps = typeof __propDef.props;
|
|
13
13
|
export type MenuSublistEvents = typeof __propDef.events;
|
|
14
14
|
export type MenuSublistSlots = typeof __propDef.slots;
|
|
15
|
-
export default class MenuSublist extends
|
|
15
|
+
export default class MenuSublist extends SvelteComponent<MenuSublistProps, MenuSublistEvents, MenuSublistSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>import { popup } from "@skeletonlabs/skeleton";
|
|
2
2
|
import { AccordionItem } from "@skeletonlabs/skeleton";
|
|
3
|
-
import Fa from "svelte-fa
|
|
3
|
+
import Fa from "svelte-fa";
|
|
4
4
|
import { faCog } from "@fortawesome/free-solid-svg-icons";
|
|
5
5
|
export let menuBar;
|
|
6
6
|
import MenuSublist from "./MenuSublist.svelte";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { menuItemType } from '../../../models/Page';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -12,6 +12,6 @@ declare const __propDef: {
|
|
|
12
12
|
export type SettingsBarProps = typeof __propDef.props;
|
|
13
13
|
export type SettingsBarEvents = typeof __propDef.events;
|
|
14
14
|
export type SettingsBarSlots = typeof __propDef.slots;
|
|
15
|
-
export default class SettingsBar extends
|
|
15
|
+
export default class SettingsBar extends SvelteComponent<SettingsBarProps, SettingsBarEvents, SettingsBarSlots> {
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
[x: string]: any;
|
|
@@ -25,6 +25,6 @@ declare const __propDef: {
|
|
|
25
25
|
export type ToggleProps = typeof __propDef.props;
|
|
26
26
|
export type ToggleEvents = typeof __propDef.events;
|
|
27
27
|
export type ToggleSlots = typeof __propDef.slots;
|
|
28
|
-
export default class Toggle extends
|
|
28
|
+
export default class Toggle extends SvelteComponent<ToggleProps, ToggleEvents, ToggleSlots> {
|
|
29
29
|
}
|
|
30
30
|
export {};
|
package/dist/models/Enums.d.ts
CHANGED
|
@@ -32,20 +32,20 @@ export declare enum notificationType {
|
|
|
32
32
|
surface = 3
|
|
33
33
|
}
|
|
34
34
|
export declare enum FilterOptionsEnum {
|
|
35
|
-
'e' = "e"
|
|
36
|
-
'ne' = "ne"
|
|
37
|
-
'gt' = "gt"
|
|
38
|
-
'lt' = "lt"
|
|
39
|
-
'gte' = "gte"
|
|
40
|
-
'lte' = "lte"
|
|
41
|
-
'c' = "c"
|
|
42
|
-
'nc' = "nc"
|
|
43
|
-
'sw' = "sw"
|
|
44
|
-
'ew' = "ew",
|
|
45
|
-
'o' = "o"
|
|
46
|
-
'sf' = "sf"
|
|
47
|
-
'a' = "a"
|
|
48
|
-
'u' = "u"
|
|
49
|
-
'b' = "b"
|
|
35
|
+
'e' = "e",// Equal to
|
|
36
|
+
'ne' = "ne",// Not equal to
|
|
37
|
+
'gt' = "gt",// Greater than
|
|
38
|
+
'lt' = "lt",// Less than
|
|
39
|
+
'gte' = "gte",// Greater than or equal to
|
|
40
|
+
'lte' = "lte",// Less than or equal to
|
|
41
|
+
'c' = "c",// Contains
|
|
42
|
+
'nc' = "nc",// Does not contain
|
|
43
|
+
'sw' = "sw",// Starts with
|
|
44
|
+
'ew' = "ew",// Ends with,
|
|
45
|
+
'o' = "o",// On (date)
|
|
46
|
+
'sf' = "sf",// Starting from (date)
|
|
47
|
+
'a' = "a",// After (date)
|
|
48
|
+
'u' = "u",// Until (date)
|
|
49
|
+
'b' = "b",// Before (date)
|
|
50
50
|
'no' = "no"
|
|
51
51
|
}
|
package/dist/models/Models.d.ts
CHANGED
package/dist/models/Models.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
/// <reference types="svelte" />
|
|
1
2
|
import type { helpItemType, helpStoreType, notificationItemType, notificationStoreType } from '../models/Models';
|
|
2
3
|
import type { MenuModel, breadcrumbItemType } from '../models/Page';
|
|
3
4
|
import { BreadcrumbModel } from '../models/Page';
|
|
4
5
|
export declare const helpStore: {
|
|
5
|
-
subscribe: (this: void, run: import("svelte/store").Subscriber<helpStoreType>, invalidate?: (
|
|
6
|
+
subscribe: (this: void, run: import("svelte/store").Subscriber<helpStoreType>, invalidate?: import("svelte/store").Invalidator<helpStoreType> | undefined) => import("svelte/store").Unsubscriber;
|
|
6
7
|
set: (this: void, value: helpStoreType) => void;
|
|
7
8
|
update: (this: void, updater: import("svelte/store").Updater<helpStoreType>) => void;
|
|
8
9
|
setHelpItemList: (helpItems: helpItemType[]) => void;
|
|
@@ -17,7 +18,7 @@ export declare const helpStore: {
|
|
|
17
18
|
};
|
|
18
19
|
export declare const menuStore: import("svelte/store").Writable<MenuModel>;
|
|
19
20
|
export declare const breadcrumbStore: {
|
|
20
|
-
subscribe: (this: void, run: import("svelte/store").Subscriber<BreadcrumbModel>, invalidate?: (
|
|
21
|
+
subscribe: (this: void, run: import("svelte/store").Subscriber<BreadcrumbModel>, invalidate?: import("svelte/store").Invalidator<BreadcrumbModel> | undefined) => import("svelte/store").Unsubscriber;
|
|
21
22
|
set: (this: void, value: BreadcrumbModel) => void;
|
|
22
23
|
update: (this: void, updater: import("svelte/store").Updater<BreadcrumbModel>) => void;
|
|
23
24
|
addItem: (item: breadcrumbItemType) => void;
|
|
@@ -25,7 +26,7 @@ export declare const breadcrumbStore: {
|
|
|
25
26
|
clean: () => void;
|
|
26
27
|
};
|
|
27
28
|
export declare const notificationStore: {
|
|
28
|
-
subscribe: (this: void, run: import("svelte/store").Subscriber<notificationStoreType>, invalidate?: (
|
|
29
|
+
subscribe: (this: void, run: import("svelte/store").Subscriber<notificationStoreType>, invalidate?: import("svelte/store").Invalidator<notificationStoreType> | undefined) => import("svelte/store").Unsubscriber;
|
|
29
30
|
set: (this: void, value: notificationStoreType) => void;
|
|
30
31
|
update: (this: void, updater: import("svelte/store").Updater<notificationStoreType>) => void;
|
|
31
32
|
setNotification: (notificationItem: notificationItemType) => void;
|