@bexis2/bexis2-core-ui 0.4.83 → 0.4.85
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 -0
- package/dist/TableView.svelte.d.ts +2 -0
- package/dist/components/CodeEditor/CodeEditor.svelte.d.ts +4 -1
- package/dist/components/Facets/Facets.svelte.d.ts +2 -0
- package/dist/components/Facets/ShowMore.svelte.d.ts +2 -0
- package/dist/components/File/FileIcon.svelte.d.ts +2 -0
- package/dist/components/File/FileInfo.svelte.d.ts +2 -0
- package/dist/components/File/FileUploader.svelte.d.ts +2 -0
- package/dist/components/ListView.svelte.d.ts +2 -0
- package/dist/components/Table/ColumnsMenu.svelte.d.ts +2 -0
- package/dist/components/Table/Table.svelte.d.ts +2 -0
- package/dist/components/Table/TableContent.svelte.d.ts +2 -0
- package/dist/components/Table/TableFilter.svelte.d.ts +2 -0
- package/dist/components/Table/TableFilterServer.svelte.d.ts +2 -0
- package/dist/components/Table/TablePagination.svelte.d.ts +2 -0
- package/dist/components/Table/TablePaginationServer.svelte.d.ts +2 -0
- package/dist/components/form/Checkbox.svelte.d.ts +2 -0
- package/dist/components/form/CheckboxKvPList.svelte.d.ts +2 -0
- package/dist/components/form/CheckboxList.svelte.d.ts +2 -0
- package/dist/components/form/DateInput.svelte.d.ts +2 -0
- package/dist/components/form/Dropdown.svelte.d.ts +2 -0
- package/dist/components/form/DropdownKvP.svelte.d.ts +2 -0
- package/dist/components/form/InputContainer.svelte +1 -1
- package/dist/components/form/InputContainer.svelte.d.ts +2 -0
- package/dist/components/form/MultiSelect.svelte.d.ts +2 -0
- package/dist/components/form/NumberInput.svelte.d.ts +2 -0
- package/dist/components/form/TextArea.svelte.d.ts +2 -0
- package/dist/components/form/TextInput.svelte.d.ts +2 -0
- package/dist/components/page/Alert.svelte.d.ts +2 -0
- package/dist/components/page/BackToTop.svelte.d.ts +2 -0
- package/dist/components/page/Docs.svelte.d.ts +2 -0
- package/dist/components/page/ErrorMessage.svelte.d.ts +2 -0
- package/dist/components/page/Footer.svelte.d.ts +2 -0
- package/dist/components/page/GoToTop.svelte.d.ts +2 -0
- package/dist/components/page/Header.svelte.d.ts +2 -0
- package/dist/components/page/HelpPopUp.svelte.d.ts +2 -0
- package/dist/components/page/Notification.svelte.d.ts +2 -0
- package/dist/components/page/Page.svelte.d.ts +2 -0
- package/dist/components/page/Spinner.svelte.d.ts +2 -0
- package/dist/components/page/TablePlaceholder.svelte.d.ts +2 -0
- package/dist/components/page/breadcrumb/Breadcrumb.svelte.d.ts +2 -0
- package/dist/components/page/menu/Menu.svelte +92 -3
- package/dist/components/page/menu/Menu.svelte.d.ts +2 -0
- package/dist/components/page/menu/MenuAccountBar.svelte.d.ts +2 -0
- package/dist/components/page/menu/MenuBar.svelte.d.ts +2 -0
- package/dist/components/page/menu/MenuItem.svelte.d.ts +2 -0
- package/dist/components/page/menu/MenuSublist.svelte +1 -1
- package/dist/components/page/menu/MenuSublist.svelte.d.ts +2 -0
- package/dist/components/page/menu/SettingsBar.svelte.d.ts +2 -0
- package/dist/components/toggle/Toggle.svelte.d.ts +3 -1
- package/dist/css/core.ui.postcss +23 -5
- package/dist/css/themes/theme-bexis2.css_old +100 -0
- package/dist/services/Api.d.ts +5 -5
- package/dist/themes/theme-bexis2 copy.d.ts +2 -0
- package/dist/themes/theme-bexis2 copy.js +112 -0
- package/package.json +1 -1
- package/src/lib/components/form/InputContainer.svelte +1 -1
- package/src/lib/components/page/menu/Menu.svelte +101 -6
- package/src/lib/components/page/menu/MenuSublist.svelte +1 -1
- package/src/lib/css/core.ui.postcss +23 -5
- package/src/lib/css/themes/theme-bexis2.css_old +100 -0
- package/src/lib/themes/theme-bexis2 copy.ts +114 -0
package/README.md
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
# bexis-core-ui
|
|
2
|
+
## 0.4.85
|
|
3
|
+
- Menu
|
|
4
|
+
- add increase / decrease font size
|
|
5
|
+
- add toogle dark mode in dev mode
|
|
6
|
+
- Input
|
|
7
|
+
- decrease input padding
|
|
8
|
+
- remove layout shift by adding a fixed space for the error message
|
|
9
|
+
|
|
10
|
+
## 0.4.84
|
|
11
|
+
- MultiSelect
|
|
12
|
+
- fix itemGroup was not working
|
|
13
|
+
|
|
14
|
+
|
|
2
15
|
## 0.4.83
|
|
3
16
|
- InputContainer
|
|
4
17
|
- error message position and basic styling of input fields
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
+
import type { ThemeSpec } from 'svelte-codemirror-editor';
|
|
2
3
|
declare const __propDef: {
|
|
3
4
|
props: {
|
|
4
5
|
id: string;
|
|
@@ -10,7 +11,7 @@ declare const __propDef: {
|
|
|
10
11
|
toggle?: boolean;
|
|
11
12
|
actions?: boolean;
|
|
12
13
|
isValid?: boolean;
|
|
13
|
-
styles?:
|
|
14
|
+
styles?: ThemeSpec;
|
|
14
15
|
};
|
|
15
16
|
events: {
|
|
16
17
|
cancel: CustomEvent<any>;
|
|
@@ -23,6 +24,8 @@ declare const __propDef: {
|
|
|
23
24
|
id: string;
|
|
24
25
|
};
|
|
25
26
|
};
|
|
27
|
+
exports?: {} | undefined;
|
|
28
|
+
bindings?: string | undefined;
|
|
26
29
|
};
|
|
27
30
|
export type CodeEditorProps = typeof __propDef.props;
|
|
28
31
|
export type CodeEditorEvents = typeof __propDef.events;
|
|
@@ -10,6 +10,8 @@ declare const __propDef: {
|
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
};
|
|
12
12
|
slots: {};
|
|
13
|
+
exports?: {} | undefined;
|
|
14
|
+
bindings?: string | undefined;
|
|
13
15
|
};
|
|
14
16
|
export type ShowMoreProps = typeof __propDef.props;
|
|
15
17
|
export type ShowMoreEvents = typeof __propDef.events;
|
|
@@ -19,6 +19,8 @@ declare const __propDef: {
|
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
20
20
|
};
|
|
21
21
|
slots: {};
|
|
22
|
+
exports?: {} | undefined;
|
|
23
|
+
bindings?: string | undefined;
|
|
22
24
|
};
|
|
23
25
|
export type FileUploaderProps = typeof __propDef.props;
|
|
24
26
|
export type FileUploaderEvents = typeof __propDef.events;
|
|
@@ -12,6 +12,8 @@ declare const __propDef: {
|
|
|
12
12
|
[evt: string]: CustomEvent<any>;
|
|
13
13
|
};
|
|
14
14
|
slots: {};
|
|
15
|
+
exports?: {} | undefined;
|
|
16
|
+
bindings?: string | undefined;
|
|
15
17
|
};
|
|
16
18
|
export type ColumnsMenuProps = typeof __propDef.props;
|
|
17
19
|
export type ColumnsMenuEvents = typeof __propDef.events;
|
|
@@ -10,6 +10,8 @@ declare const __propDef: {
|
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
};
|
|
12
12
|
slots: {};
|
|
13
|
+
exports?: {} | undefined;
|
|
14
|
+
bindings?: string | undefined;
|
|
13
15
|
};
|
|
14
16
|
export type TableContentProps = typeof __propDef.props;
|
|
15
17
|
export type TableContentEvents = typeof __propDef.events;
|
|
@@ -14,6 +14,8 @@ declare const __propDef: {
|
|
|
14
14
|
[evt: string]: CustomEvent<any>;
|
|
15
15
|
};
|
|
16
16
|
slots: {};
|
|
17
|
+
exports?: {} | undefined;
|
|
18
|
+
bindings?: string | undefined;
|
|
17
19
|
};
|
|
18
20
|
export type TableFilterProps = typeof __propDef.props;
|
|
19
21
|
export type TableFilterEvents = typeof __propDef.events;
|
|
@@ -15,6 +15,8 @@ declare const __propDef: {
|
|
|
15
15
|
[evt: string]: CustomEvent<any>;
|
|
16
16
|
};
|
|
17
17
|
slots: {};
|
|
18
|
+
exports?: {} | undefined;
|
|
19
|
+
bindings?: string | undefined;
|
|
18
20
|
};
|
|
19
21
|
export type TableFilterServerProps = typeof __propDef.props;
|
|
20
22
|
export type TableFilterServerEvents = typeof __propDef.events;
|
|
@@ -10,6 +10,8 @@ declare const __propDef: {
|
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
};
|
|
12
12
|
slots: {};
|
|
13
|
+
exports?: {} | undefined;
|
|
14
|
+
bindings?: string | undefined;
|
|
13
15
|
};
|
|
14
16
|
export type TablePaginationProps = typeof __propDef.props;
|
|
15
17
|
export type TablePaginationEvents = typeof __propDef.events;
|
|
@@ -12,6 +12,8 @@ declare const __propDef: {
|
|
|
12
12
|
[evt: string]: CustomEvent<any>;
|
|
13
13
|
};
|
|
14
14
|
slots: {};
|
|
15
|
+
exports?: {} | undefined;
|
|
16
|
+
bindings?: string | undefined;
|
|
15
17
|
};
|
|
16
18
|
export type TablePaginationServerProps = typeof __propDef.props;
|
|
17
19
|
export type TablePaginationServerEvents = typeof __propDef.events;
|
|
@@ -17,6 +17,8 @@ declare const __propDef: {
|
|
|
17
17
|
[evt: string]: CustomEvent<any>;
|
|
18
18
|
};
|
|
19
19
|
slots: {};
|
|
20
|
+
exports?: {} | undefined;
|
|
21
|
+
bindings?: string | undefined;
|
|
20
22
|
};
|
|
21
23
|
export type CheckboxProps = typeof __propDef.props;
|
|
22
24
|
export type CheckboxEvents = typeof __propDef.events;
|
|
@@ -15,6 +15,8 @@ declare const __propDef: {
|
|
|
15
15
|
[evt: string]: CustomEvent<any>;
|
|
16
16
|
};
|
|
17
17
|
slots: {};
|
|
18
|
+
exports?: {} | undefined;
|
|
19
|
+
bindings?: string | undefined;
|
|
18
20
|
};
|
|
19
21
|
export type CheckboxKvPListProps = typeof __propDef.props;
|
|
20
22
|
export type CheckboxKvPListEvents = typeof __propDef.events;
|
|
@@ -13,6 +13,8 @@ declare const __propDef: {
|
|
|
13
13
|
[evt: string]: CustomEvent<any>;
|
|
14
14
|
};
|
|
15
15
|
slots: {};
|
|
16
|
+
exports?: {} | undefined;
|
|
17
|
+
bindings?: string | undefined;
|
|
16
18
|
};
|
|
17
19
|
export type CheckboxListProps = typeof __propDef.props;
|
|
18
20
|
export type CheckboxListEvents = typeof __propDef.events;
|
|
@@ -19,6 +19,8 @@ declare const __propDef: {
|
|
|
19
19
|
[evt: string]: CustomEvent<any>;
|
|
20
20
|
};
|
|
21
21
|
slots: {};
|
|
22
|
+
exports?: {} | undefined;
|
|
23
|
+
bindings?: string | undefined;
|
|
22
24
|
};
|
|
23
25
|
export type DateInputProps = typeof __propDef.props;
|
|
24
26
|
export type DateInputEvents = typeof __propDef.events;
|
|
@@ -22,6 +22,8 @@ declare const __propDef: {
|
|
|
22
22
|
[evt: string]: CustomEvent<any>;
|
|
23
23
|
};
|
|
24
24
|
slots: {};
|
|
25
|
+
exports?: {} | undefined;
|
|
26
|
+
bindings?: string | undefined;
|
|
25
27
|
};
|
|
26
28
|
export type NumberInputProps = typeof __propDef.props;
|
|
27
29
|
export type NumberInputEvents = typeof __propDef.events;
|
|
@@ -20,6 +20,8 @@ declare const __propDef: {
|
|
|
20
20
|
[evt: string]: CustomEvent<any>;
|
|
21
21
|
};
|
|
22
22
|
slots: {};
|
|
23
|
+
exports?: {} | undefined;
|
|
24
|
+
bindings?: string | undefined;
|
|
23
25
|
};
|
|
24
26
|
export type TextAreaProps = typeof __propDef.props;
|
|
25
27
|
export type TextAreaEvents = typeof __propDef.events;
|
|
@@ -20,6 +20,8 @@ declare const __propDef: {
|
|
|
20
20
|
[evt: string]: CustomEvent<any>;
|
|
21
21
|
};
|
|
22
22
|
slots: {};
|
|
23
|
+
exports?: {} | undefined;
|
|
24
|
+
bindings?: string | undefined;
|
|
23
25
|
};
|
|
24
26
|
export type TextInputProps = typeof __propDef.props;
|
|
25
27
|
export type TextInputEvents = typeof __propDef.events;
|
|
@@ -7,6 +7,8 @@ declare const __propDef: {
|
|
|
7
7
|
[evt: string]: CustomEvent<any>;
|
|
8
8
|
};
|
|
9
9
|
slots: {};
|
|
10
|
+
exports?: {} | undefined;
|
|
11
|
+
bindings?: string | undefined;
|
|
10
12
|
};
|
|
11
13
|
export type ErrorMessageProps = typeof __propDef.props;
|
|
12
14
|
export type ErrorMessageEvents = typeof __propDef.events;
|
|
@@ -10,6 +10,8 @@ declare const __propDef: {
|
|
|
10
10
|
[evt: string]: CustomEvent<any>;
|
|
11
11
|
};
|
|
12
12
|
slots: {};
|
|
13
|
+
exports?: {} | undefined;
|
|
14
|
+
bindings?: string | undefined;
|
|
13
15
|
};
|
|
14
16
|
export type SpinnerProps = typeof __propDef.props;
|
|
15
17
|
export type SpinnerEvents = typeof __propDef.events;
|
|
@@ -8,6 +8,8 @@ declare const __propDef: {
|
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
};
|
|
10
10
|
slots: {};
|
|
11
|
+
exports?: {} | undefined;
|
|
12
|
+
bindings?: string | undefined;
|
|
11
13
|
};
|
|
12
14
|
export type TablePlaceholderProps = typeof __propDef.props;
|
|
13
15
|
export type TablePlaceholderEvents = typeof __propDef.events;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<script>import { onMount } from "svelte";
|
|
2
|
+
import { writable } from "svelte/store";
|
|
2
3
|
import { getMenuItems } from "./MenuDataCaller";
|
|
3
4
|
import { menuStore } from "../../../stores/pageStores";
|
|
4
5
|
import MenuBar from "./MenuBar.svelte";
|
|
5
6
|
import MenuAccountBar from "./MenuAccountBar.svelte";
|
|
6
7
|
import SettingsBar from "./SettingsBar.svelte";
|
|
7
8
|
import Fa from "svelte-fa";
|
|
8
|
-
import { faBars } from "@fortawesome/free-solid-svg-icons";
|
|
9
|
+
import { faBars, faPlus, faMinus } from "@fortawesome/free-solid-svg-icons";
|
|
9
10
|
import { Accordion } from "@skeletonlabs/skeleton";
|
|
10
11
|
onMount(async () => {
|
|
11
12
|
let m = await getMenuItems();
|
|
@@ -13,6 +14,28 @@ onMount(async () => {
|
|
|
13
14
|
console.log("\u{1F680} ~ onMount ~ menuStore:", $menuStore);
|
|
14
15
|
});
|
|
15
16
|
let hamburger = true;
|
|
17
|
+
const theme = writable("light");
|
|
18
|
+
function increaseFontSize() {
|
|
19
|
+
const currentFontSize = parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
20
|
+
document.documentElement.style.fontSize = currentFontSize + 1 + "px";
|
|
21
|
+
}
|
|
22
|
+
function decreaseFontSize() {
|
|
23
|
+
const currentFontSize = parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
24
|
+
document.documentElement.style.fontSize = currentFontSize - 1 + "px";
|
|
25
|
+
}
|
|
26
|
+
function toggleDarkMode() {
|
|
27
|
+
if ($theme === "dark") {
|
|
28
|
+
theme.set("light");
|
|
29
|
+
document.documentElement.classList.remove("dark");
|
|
30
|
+
} else {
|
|
31
|
+
theme.set("dark");
|
|
32
|
+
document.documentElement.classList.add("dark");
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
let showMode = false;
|
|
36
|
+
if (import.meta.env.DEV) {
|
|
37
|
+
showMode = true;
|
|
38
|
+
}
|
|
16
39
|
</script>
|
|
17
40
|
|
|
18
41
|
{#if $menuStore !== undefined}
|
|
@@ -49,8 +72,74 @@ let hamburger = true;
|
|
|
49
72
|
<div class="grid w-full sm:flex gap-2 justify-auto sm:justify-end">
|
|
50
73
|
<MenuAccountBar menuBar={$menuStore.AccountBar} />
|
|
51
74
|
<MenuBar menuBar={$menuStore.LaunchBar} />
|
|
52
|
-
|
|
53
|
-
|
|
75
|
+
<!-- Add change font size buttons -->
|
|
76
|
+
<button
|
|
77
|
+
class="btn btn-ghost pl-1 pr-1"
|
|
78
|
+
on:click={decreaseFontSize}
|
|
79
|
+
title="Decrease font size"
|
|
80
|
+
>
|
|
81
|
+
<span class="capitalize text-lg whitespace-nowrap hover:text-secondary-500">A-</span>
|
|
82
|
+
</button>
|
|
83
|
+
<button
|
|
84
|
+
class="btn btn-ghost pl-1 pr-1"
|
|
85
|
+
on:click={increaseFontSize}
|
|
86
|
+
title="Increase font size"
|
|
87
|
+
>
|
|
88
|
+
<span class="capitalize text-lg whitespace-nowrap hover:text-secondary-500">A+</span>
|
|
89
|
+
</button>
|
|
90
|
+
|
|
91
|
+
<button
|
|
92
|
+
class="btn btn-ghost pl-1 pr-1"
|
|
93
|
+
on:click={toggleDarkMode}
|
|
94
|
+
title="Toggle dark mode"
|
|
95
|
+
>
|
|
96
|
+
{#if showMode}
|
|
97
|
+
{#if $theme === 'dark'}
|
|
98
|
+
<!-- sun icon (white via currentColor) -->
|
|
99
|
+
<svg
|
|
100
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
101
|
+
width="18"
|
|
102
|
+
height="18"
|
|
103
|
+
viewBox="0 0 24 24"
|
|
104
|
+
fill="none"
|
|
105
|
+
aria-hidden="true"
|
|
106
|
+
focusable="false"
|
|
107
|
+
class="inline-block"
|
|
108
|
+
>
|
|
109
|
+
<g
|
|
110
|
+
stroke="currentColor"
|
|
111
|
+
stroke-width="1.6"
|
|
112
|
+
stroke-linecap="round"
|
|
113
|
+
stroke-linejoin="round"
|
|
114
|
+
fill="none"
|
|
115
|
+
>
|
|
116
|
+
<circle cx="12" cy="12" r="4" stroke="currentColor" fill="currentColor" />
|
|
117
|
+
<path
|
|
118
|
+
d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"
|
|
119
|
+
stroke="currentColor"
|
|
120
|
+
/>
|
|
121
|
+
</g>
|
|
122
|
+
</svg>
|
|
123
|
+
{:else}
|
|
124
|
+
<!-- moon icon (white via currentColor) -->
|
|
125
|
+
<svg
|
|
126
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
127
|
+
width="18"
|
|
128
|
+
height="18"
|
|
129
|
+
viewBox="0 0 24 24"
|
|
130
|
+
fill="currentColor"
|
|
131
|
+
aria-hidden="true"
|
|
132
|
+
focusable="false"
|
|
133
|
+
class="inline-block"
|
|
134
|
+
>
|
|
135
|
+
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" fill="currentColor" />
|
|
136
|
+
</svg>
|
|
137
|
+
{/if}
|
|
138
|
+
{/if}
|
|
139
|
+
</button>
|
|
140
|
+
<SettingsBar menuBar={$menuStore.Settings} />
|
|
141
|
+
<!-- </div> -->
|
|
142
|
+
|
|
54
143
|
</div>
|
|
55
144
|
</div>
|
|
56
145
|
</Accordion>
|
|
@@ -8,6 +8,8 @@ declare const __propDef: {
|
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
};
|
|
10
10
|
slots: {};
|
|
11
|
+
exports?: {} | undefined;
|
|
12
|
+
bindings?: string | undefined;
|
|
11
13
|
};
|
|
12
14
|
export type MenuAccountBarProps = typeof __propDef.props;
|
|
13
15
|
export type MenuAccountBarEvents = typeof __propDef.events;
|
|
@@ -59,7 +59,7 @@ async function logOffFn() {
|
|
|
59
59
|
value={item.Title}
|
|
60
60
|
|
|
61
61
|
>
|
|
62
|
-
<a id={"menu-"+item.Title.replaceAll(' ', '-')} href={item.Url} target="{item.Target}" on:click|preventDefault={()=>clickFn(item)}>{item.Title}</a>
|
|
62
|
+
<a id={"menu-"+item.Title.replaceAll(' ', '-')} href={item.Url} target="{item.Target}" class="w-full block" on:click|preventDefault={()=>clickFn(item)}>{item.Title}</a>
|
|
63
63
|
|
|
64
64
|
</ListBoxItem>
|
|
65
65
|
|
|
@@ -8,6 +8,8 @@ declare const __propDef: {
|
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
};
|
|
10
10
|
slots: {};
|
|
11
|
+
exports?: {} | undefined;
|
|
12
|
+
bindings?: string | undefined;
|
|
11
13
|
};
|
|
12
14
|
export type MenuSublistProps = typeof __propDef.props;
|
|
13
15
|
export type MenuSublistEvents = typeof __propDef.events;
|
|
@@ -8,6 +8,8 @@ declare const __propDef: {
|
|
|
8
8
|
[evt: string]: CustomEvent<any>;
|
|
9
9
|
};
|
|
10
10
|
slots: {};
|
|
11
|
+
exports?: {} | undefined;
|
|
12
|
+
bindings?: string | undefined;
|
|
11
13
|
};
|
|
12
14
|
export type SettingsBarProps = typeof __propDef.props;
|
|
13
15
|
export type SettingsBarEvents = typeof __propDef.events;
|
|
@@ -14,7 +14,7 @@ declare const __propDef: {
|
|
|
14
14
|
rounded?: CssClasses | undefined;
|
|
15
15
|
};
|
|
16
16
|
events: {
|
|
17
|
-
click:
|
|
17
|
+
click: PointerEvent;
|
|
18
18
|
keydown: KeyboardEvent;
|
|
19
19
|
keyup: KeyboardEvent;
|
|
20
20
|
keypress: KeyboardEvent;
|
|
@@ -22,6 +22,8 @@ declare const __propDef: {
|
|
|
22
22
|
[evt: string]: CustomEvent<any>;
|
|
23
23
|
};
|
|
24
24
|
slots: {};
|
|
25
|
+
exports?: undefined;
|
|
26
|
+
bindings?: undefined;
|
|
25
27
|
};
|
|
26
28
|
export type ToggleProps = typeof __propDef.props;
|
|
27
29
|
export type ToggleEvents = typeof __propDef.events;
|