@bexis2/bexis2-core-ui 0.3.13 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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.d.ts +2 -2
- package/dist/components/Table/TableFilter.svelte +1 -1
- package/dist/components/Table/TableFilter.svelte.d.ts +2 -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/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/stores/pageStores.d.ts +4 -3
- package/dist/themes/theme-bexis2.js +78 -78
- package/package.json +43 -41
- package/src/lib/components/CodeEditor/CodeEditor.svelte +1 -1
- package/src/lib/components/Table/TableFilter.svelte +1 -1
- 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/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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} TableViewProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} TableViewEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} TableViewSlots */
|
|
4
|
-
export default class TableView extends
|
|
4
|
+
export default class TableView extends SvelteComponent<{
|
|
5
5
|
[x: string]: never;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class TableView extends SvelteComponentTyped<{
|
|
|
10
10
|
export type TableViewProps = typeof __propDef.props;
|
|
11
11
|
export type TableViewEvents = typeof __propDef.events;
|
|
12
12
|
export type TableViewSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
[x: string]: never;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>import { createEventDispatcher } from "svelte";
|
|
2
2
|
import CodeMirror from "svelte-codemirror-editor";
|
|
3
|
-
import Fa from "svelte-fa
|
|
3
|
+
import Fa from "svelte-fa";
|
|
4
4
|
import Linter from "eslint4b-prebuilt";
|
|
5
5
|
import { html } from "@codemirror/lang-html";
|
|
6
6
|
import { javascript, esLint } from "@codemirror/lang-javascript";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { ThemeSpec } from 'svelte-codemirror-editor';
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
3
2
|
declare const __propDef: {
|
|
4
3
|
props: {
|
|
5
4
|
id: string;
|
|
@@ -11,7 +10,7 @@ declare const __propDef: {
|
|
|
11
10
|
toggle?: boolean | undefined;
|
|
12
11
|
actions?: boolean | undefined;
|
|
13
12
|
isValid?: boolean | undefined;
|
|
14
|
-
styles?:
|
|
13
|
+
styles?: any;
|
|
15
14
|
};
|
|
16
15
|
events: {
|
|
17
16
|
cancel: CustomEvent<any>;
|
|
@@ -28,6 +27,6 @@ declare const __propDef: {
|
|
|
28
27
|
export type CodeEditorProps = typeof __propDef.props;
|
|
29
28
|
export type CodeEditorEvents = typeof __propDef.events;
|
|
30
29
|
export type CodeEditorSlots = typeof __propDef.slots;
|
|
31
|
-
export default class CodeEditor extends
|
|
30
|
+
export default class CodeEditor extends SvelteComponent<CodeEditorProps, CodeEditorEvents, CodeEditorSlots> {
|
|
32
31
|
}
|
|
33
32
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} FileIconProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} FileIconEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} FileIconSlots */
|
|
4
|
-
export default class FileIcon extends
|
|
4
|
+
export default class FileIcon extends SvelteComponent<{
|
|
5
5
|
type?: string | undefined;
|
|
6
6
|
}, {
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
@@ -10,7 +10,7 @@ export default class FileIcon extends SvelteComponentTyped<{
|
|
|
10
10
|
export type FileIconProps = typeof __propDef.props;
|
|
11
11
|
export type FileIconEvents = typeof __propDef.events;
|
|
12
12
|
export type FileIconSlots = typeof __propDef.slots;
|
|
13
|
-
import {
|
|
13
|
+
import { SvelteComponent } from "svelte";
|
|
14
14
|
declare const __propDef: {
|
|
15
15
|
props: {
|
|
16
16
|
type?: string | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} FileInfoProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} FileInfoEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} FileInfoSlots */
|
|
4
|
-
export default class FileInfo extends
|
|
4
|
+
export default class FileInfo extends SvelteComponent<{
|
|
5
5
|
type?: string | undefined;
|
|
6
6
|
name?: string | undefined;
|
|
7
7
|
size?: string | undefined;
|
|
@@ -12,7 +12,7 @@ export default class FileInfo extends SvelteComponentTyped<{
|
|
|
12
12
|
export type FileInfoProps = typeof __propDef.props;
|
|
13
13
|
export type FileInfoEvents = typeof __propDef.events;
|
|
14
14
|
export type FileInfoSlots = typeof __propDef.slots;
|
|
15
|
-
import {
|
|
15
|
+
import { SvelteComponent } from "svelte";
|
|
16
16
|
declare const __propDef: {
|
|
17
17
|
props: {
|
|
18
18
|
type?: string | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>import Dropzone from "svelte-file-dropzone";
|
|
2
|
-
import Fa from "svelte-fa
|
|
2
|
+
import Fa from "svelte-fa";
|
|
3
3
|
import Spinner from "../page/Spinner.svelte";
|
|
4
4
|
import { createEventDispatcher } from "svelte";
|
|
5
5
|
import { faTrash } from "@fortawesome/free-solid-svg-icons";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { fileUploaderType } from '../../models/Models.js';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -22,6 +22,6 @@ declare const __propDef: {
|
|
|
22
22
|
export type FileUploaderProps = typeof __propDef.props;
|
|
23
23
|
export type FileUploaderEvents = typeof __propDef.events;
|
|
24
24
|
export type FileUploaderSlots = typeof __propDef.slots;
|
|
25
|
-
export default class FileUploader extends
|
|
25
|
+
export default class FileUploader extends SvelteComponent<FileUploaderProps, FileUploaderEvents, FileUploaderSlots> {
|
|
26
26
|
}
|
|
27
27
|
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 ListViewProps = typeof __propDef.props;
|
|
10
10
|
export type ListViewEvents = typeof __propDef.events;
|
|
11
11
|
export type ListViewSlots = typeof __propDef.slots;
|
|
12
|
-
export default class ListView extends
|
|
12
|
+
export default class ListView extends SvelteComponent<ListViewProps, ListViewEvents, ListViewSlots> {
|
|
13
13
|
}
|
|
14
14
|
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: any;
|
|
3
3
|
export type TableProps = typeof __propDef.props;
|
|
4
4
|
export type TableEvents = typeof __propDef.events;
|
|
5
5
|
export type TableSlots = typeof __propDef.slots;
|
|
6
|
-
export default class Table extends
|
|
6
|
+
export default class Table extends SvelteComponent<TableProps, TableEvents, TableSlots> {
|
|
7
7
|
}
|
|
8
8
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
import type { TableConfig } from '../../models/Models';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
@@ -14,6 +14,6 @@ declare const __propDef: {
|
|
|
14
14
|
export type TableContentProps = typeof __propDef.props;
|
|
15
15
|
export type TableContentEvents = typeof __propDef.events;
|
|
16
16
|
export type TableContentSlots = typeof __propDef.slots;
|
|
17
|
-
export default class TableContent extends
|
|
17
|
+
export default class TableContent extends SvelteComponent<TableContentProps, TableContentEvents, TableContentSlots> {
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script>import Fa from "svelte-fa
|
|
1
|
+
<script>import Fa from "svelte-fa";
|
|
2
2
|
import { faFilter, faPlus, faXmark } from "@fortawesome/free-solid-svg-icons";
|
|
3
3
|
import { popup } from "@skeletonlabs/skeleton";
|
|
4
4
|
import { FilterOptionsEnum } from "../../models/Enums";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
values: any;
|
|
@@ -16,6 +16,6 @@ declare const __propDef: {
|
|
|
16
16
|
export type TableFilterProps = typeof __propDef.props;
|
|
17
17
|
export type TableFilterEvents = typeof __propDef.events;
|
|
18
18
|
export type TableFilterSlots = typeof __propDef.slots;
|
|
19
|
-
export default class TableFilter extends
|
|
19
|
+
export default class TableFilter extends SvelteComponent<TableFilterProps, TableFilterEvents, TableFilterSlots> {
|
|
20
20
|
}
|
|
21
21
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<script>import Fa from "svelte-fa
|
|
1
|
+
<script>import Fa from "svelte-fa";
|
|
2
2
|
import { faFilter, faPlus, faXmark } from "@fortawesome/free-solid-svg-icons";
|
|
3
3
|
import { popup } from "@skeletonlabs/skeleton";
|
|
4
4
|
import { FilterOptionsEnum } from "../../models/Enums";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
values: any;
|
|
@@ -17,6 +17,6 @@ declare const __propDef: {
|
|
|
17
17
|
export type TableFilterServerProps = typeof __propDef.props;
|
|
18
18
|
export type TableFilterServerEvents = typeof __propDef.events;
|
|
19
19
|
export type TableFilterServerSlots = typeof __propDef.slots;
|
|
20
|
-
export default class TableFilterServer extends
|
|
20
|
+
export default class TableFilterServer extends SvelteComponent<TableFilterServerProps, TableFilterServerEvents, TableFilterServerSlots> {
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
pageConfig: any;
|
|
@@ -13,6 +13,6 @@ declare const __propDef: {
|
|
|
13
13
|
export type TablePaginationProps = typeof __propDef.props;
|
|
14
14
|
export type TablePaginationEvents = typeof __propDef.events;
|
|
15
15
|
export type TablePaginationSlots = typeof __propDef.slots;
|
|
16
|
-
export default class TablePagination extends
|
|
16
|
+
export default class TablePagination extends SvelteComponent<TablePaginationProps, TablePaginationEvents, TablePaginationSlots> {
|
|
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
|
id: any;
|
|
@@ -16,6 +16,6 @@ declare const __propDef: {
|
|
|
16
16
|
export type TablePaginationServerProps = typeof __propDef.props;
|
|
17
17
|
export type TablePaginationServerEvents = typeof __propDef.events;
|
|
18
18
|
export type TablePaginationServerSlots = typeof __propDef.slots;
|
|
19
|
-
export default class TablePaginationServer extends
|
|
19
|
+
export default class TablePaginationServer extends SvelteComponent<TablePaginationServerProps, TablePaginationServerEvents, TablePaginationServerSlots> {
|
|
20
20
|
}
|
|
21
21
|
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;
|
|
@@ -20,6 +20,6 @@ declare const __propDef: {
|
|
|
20
20
|
export type CheckboxProps = typeof __propDef.props;
|
|
21
21
|
export type CheckboxEvents = typeof __propDef.events;
|
|
22
22
|
export type CheckboxSlots = typeof __propDef.slots;
|
|
23
|
-
export default class Checkbox extends
|
|
23
|
+
export default class Checkbox extends SvelteComponent<CheckboxProps, CheckboxEvents, CheckboxSlots> {
|
|
24
24
|
}
|
|
25
25
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id: any;
|
|
@@ -17,6 +17,6 @@ declare const __propDef: {
|
|
|
17
17
|
export type CheckboxKvPListProps = typeof __propDef.props;
|
|
18
18
|
export type CheckboxKvPListEvents = typeof __propDef.events;
|
|
19
19
|
export type CheckboxKvPListSlots = typeof __propDef.slots;
|
|
20
|
-
export default class CheckboxKvPList extends
|
|
20
|
+
export default class CheckboxKvPList extends SvelteComponent<CheckboxKvPListProps, CheckboxKvPListEvents, CheckboxKvPListSlots> {
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
source: any;
|
|
@@ -15,6 +15,6 @@ declare const __propDef: {
|
|
|
15
15
|
export type CheckboxListProps = typeof __propDef.props;
|
|
16
16
|
export type CheckboxListEvents = typeof __propDef.events;
|
|
17
17
|
export type CheckboxListSlots = typeof __propDef.slots;
|
|
18
|
-
export default class CheckboxList extends
|
|
18
|
+
export default class CheckboxList extends SvelteComponent<CheckboxListProps, CheckboxListEvents, CheckboxListSlots> {
|
|
19
19
|
}
|
|
20
20
|
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;
|
|
@@ -22,6 +22,6 @@ declare const __propDef: {
|
|
|
22
22
|
export type DateInputProps = typeof __propDef.props;
|
|
23
23
|
export type DateInputEvents = typeof __propDef.events;
|
|
24
24
|
export type DateInputSlots = typeof __propDef.slots;
|
|
25
|
-
export default class DateInput extends
|
|
25
|
+
export default class DateInput extends SvelteComponent<DateInputProps, DateInputEvents, DateInputSlots> {
|
|
26
26
|
}
|
|
27
27
|
export {};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/** @typedef {typeof __propDef.props} DropdownKvPProps */
|
|
2
2
|
/** @typedef {typeof __propDef.events} DropdownKvPEvents */
|
|
3
3
|
/** @typedef {typeof __propDef.slots} DropdownKvPSlots */
|
|
4
|
-
export default class DropdownKvP extends
|
|
4
|
+
export default class DropdownKvP 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
|
-
valid?: boolean | undefined;
|
|
11
10
|
feedback?: string[] | undefined;
|
|
12
11
|
required?: boolean | undefined;
|
|
13
|
-
complexTarget?: boolean | undefined;
|
|
14
12
|
help?: boolean | undefined;
|
|
13
|
+
valid?: boolean | undefined;
|
|
14
|
+
complexTarget?: boolean | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
change: Event;
|
|
17
17
|
select: Event;
|
|
@@ -22,19 +22,19 @@ export default class DropdownKvP extends SvelteComponentTyped<{
|
|
|
22
22
|
export type DropdownKvPProps = typeof __propDef.props;
|
|
23
23
|
export type DropdownKvPEvents = typeof __propDef.events;
|
|
24
24
|
export type DropdownKvPSlots = typeof __propDef.slots;
|
|
25
|
-
import {
|
|
25
|
+
import { SvelteComponent } from "svelte";
|
|
26
26
|
declare const __propDef: {
|
|
27
27
|
props: {
|
|
28
28
|
id: any;
|
|
29
29
|
target: any;
|
|
30
|
-
source: any;
|
|
31
30
|
title: any;
|
|
31
|
+
source: any;
|
|
32
32
|
invalid?: boolean | undefined;
|
|
33
|
-
valid?: boolean | undefined;
|
|
34
33
|
feedback?: string[] | undefined;
|
|
35
34
|
required?: boolean | undefined;
|
|
36
|
-
complexTarget?: boolean | undefined;
|
|
37
35
|
help?: boolean | undefined;
|
|
36
|
+
valid?: boolean | undefined;
|
|
37
|
+
complexTarget?: boolean | undefined;
|
|
38
38
|
};
|
|
39
39
|
events: {
|
|
40
40
|
change: Event;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SvelteComponent } from "svelte";
|
|
2
2
|
declare const __propDef: {
|
|
3
3
|
props: {
|
|
4
4
|
id?: string | undefined;
|
|
@@ -17,6 +17,6 @@ declare const __propDef: {
|
|
|
17
17
|
export type InputContainerProps = typeof __propDef.props;
|
|
18
18
|
export type InputContainerEvents = typeof __propDef.events;
|
|
19
19
|
export type InputContainerSlots = typeof __propDef.slots;
|
|
20
|
-
export default class InputContainer extends
|
|
20
|
+
export default class InputContainer extends SvelteComponent<InputContainerProps, InputContainerEvents, InputContainerSlots> {
|
|
21
21
|
}
|
|
22
22
|
export {};
|
|
@@ -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 {};
|