@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.
Files changed (62) hide show
  1. package/README.md +13 -0
  2. package/dist/TableView.svelte.d.ts +2 -0
  3. package/dist/components/CodeEditor/CodeEditor.svelte.d.ts +4 -1
  4. package/dist/components/Facets/Facets.svelte.d.ts +2 -0
  5. package/dist/components/Facets/ShowMore.svelte.d.ts +2 -0
  6. package/dist/components/File/FileIcon.svelte.d.ts +2 -0
  7. package/dist/components/File/FileInfo.svelte.d.ts +2 -0
  8. package/dist/components/File/FileUploader.svelte.d.ts +2 -0
  9. package/dist/components/ListView.svelte.d.ts +2 -0
  10. package/dist/components/Table/ColumnsMenu.svelte.d.ts +2 -0
  11. package/dist/components/Table/Table.svelte.d.ts +2 -0
  12. package/dist/components/Table/TableContent.svelte.d.ts +2 -0
  13. package/dist/components/Table/TableFilter.svelte.d.ts +2 -0
  14. package/dist/components/Table/TableFilterServer.svelte.d.ts +2 -0
  15. package/dist/components/Table/TablePagination.svelte.d.ts +2 -0
  16. package/dist/components/Table/TablePaginationServer.svelte.d.ts +2 -0
  17. package/dist/components/form/Checkbox.svelte.d.ts +2 -0
  18. package/dist/components/form/CheckboxKvPList.svelte.d.ts +2 -0
  19. package/dist/components/form/CheckboxList.svelte.d.ts +2 -0
  20. package/dist/components/form/DateInput.svelte.d.ts +2 -0
  21. package/dist/components/form/Dropdown.svelte.d.ts +2 -0
  22. package/dist/components/form/DropdownKvP.svelte.d.ts +2 -0
  23. package/dist/components/form/InputContainer.svelte +1 -1
  24. package/dist/components/form/InputContainer.svelte.d.ts +2 -0
  25. package/dist/components/form/MultiSelect.svelte.d.ts +2 -0
  26. package/dist/components/form/NumberInput.svelte.d.ts +2 -0
  27. package/dist/components/form/TextArea.svelte.d.ts +2 -0
  28. package/dist/components/form/TextInput.svelte.d.ts +2 -0
  29. package/dist/components/page/Alert.svelte.d.ts +2 -0
  30. package/dist/components/page/BackToTop.svelte.d.ts +2 -0
  31. package/dist/components/page/Docs.svelte.d.ts +2 -0
  32. package/dist/components/page/ErrorMessage.svelte.d.ts +2 -0
  33. package/dist/components/page/Footer.svelte.d.ts +2 -0
  34. package/dist/components/page/GoToTop.svelte.d.ts +2 -0
  35. package/dist/components/page/Header.svelte.d.ts +2 -0
  36. package/dist/components/page/HelpPopUp.svelte.d.ts +2 -0
  37. package/dist/components/page/Notification.svelte.d.ts +2 -0
  38. package/dist/components/page/Page.svelte.d.ts +2 -0
  39. package/dist/components/page/Spinner.svelte.d.ts +2 -0
  40. package/dist/components/page/TablePlaceholder.svelte.d.ts +2 -0
  41. package/dist/components/page/breadcrumb/Breadcrumb.svelte.d.ts +2 -0
  42. package/dist/components/page/menu/Menu.svelte +92 -3
  43. package/dist/components/page/menu/Menu.svelte.d.ts +2 -0
  44. package/dist/components/page/menu/MenuAccountBar.svelte.d.ts +2 -0
  45. package/dist/components/page/menu/MenuBar.svelte.d.ts +2 -0
  46. package/dist/components/page/menu/MenuItem.svelte.d.ts +2 -0
  47. package/dist/components/page/menu/MenuSublist.svelte +1 -1
  48. package/dist/components/page/menu/MenuSublist.svelte.d.ts +2 -0
  49. package/dist/components/page/menu/SettingsBar.svelte.d.ts +2 -0
  50. package/dist/components/toggle/Toggle.svelte.d.ts +3 -1
  51. package/dist/css/core.ui.postcss +23 -5
  52. package/dist/css/themes/theme-bexis2.css_old +100 -0
  53. package/dist/services/Api.d.ts +5 -5
  54. package/dist/themes/theme-bexis2 copy.d.ts +2 -0
  55. package/dist/themes/theme-bexis2 copy.js +112 -0
  56. package/package.json +1 -1
  57. package/src/lib/components/form/InputContainer.svelte +1 -1
  58. package/src/lib/components/page/menu/Menu.svelte +101 -6
  59. package/src/lib/components/page/menu/MenuSublist.svelte +1 -1
  60. package/src/lib/css/core.ui.postcss +23 -5
  61. package/src/lib/css/themes/theme-bexis2.css_old +100 -0
  62. 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
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -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?: any;
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;
@@ -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 FacetsProps = typeof __propDef.props;
22
24
  export type FacetsEvents = 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,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -23,5 +23,7 @@ declare const __propDef: {
23
23
  [evt: string]: CustomEvent<any>;
24
24
  };
25
25
  slots: {};
26
+ exports?: undefined;
27
+ bindings?: undefined;
26
28
  };
27
29
  export {};
@@ -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;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type ListViewProps = typeof __propDef.props;
10
12
  export type ListViewEvents = 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 TableProps = typeof __propDef.props;
15
17
  export type TableEvents = 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;
@@ -43,5 +43,7 @@ declare const __propDef: {
43
43
  [evt: string]: CustomEvent<any>;
44
44
  };
45
45
  slots: {};
46
+ exports?: undefined;
47
+ bindings?: undefined;
46
48
  };
47
49
  export {};
@@ -45,5 +45,7 @@ declare const __propDef: {
45
45
  [evt: string]: CustomEvent<any>;
46
46
  };
47
47
  slots: {};
48
+ exports?: undefined;
49
+ bindings?: undefined;
48
50
  };
49
51
  export {};
@@ -40,7 +40,7 @@ function onMouseOut() {
40
40
  <div class="card text-sm text-gray-500 p-2 mb-2">{@html description}</div>
41
41
  {/if}
42
42
  <slot />
43
- <div class="">
43
+ <div class="min-h-5">
44
44
  <span class="text-xs text-error-600 ">
45
45
  {#if feedback}
46
46
  <ul>
@@ -14,6 +14,8 @@ declare const __propDef: {
14
14
  slots: {
15
15
  default: {};
16
16
  };
17
+ exports?: {} | undefined;
18
+ bindings?: string | undefined;
17
19
  };
18
20
  export type InputContainerProps = typeof __propDef.props;
19
21
  export type InputContainerEvents = typeof __propDef.events;
@@ -77,5 +77,7 @@ declare const __propDef: {
77
77
  [evt: string]: CustomEvent<any>;
78
78
  };
79
79
  slots: {};
80
+ exports?: undefined;
81
+ bindings?: undefined;
80
82
  };
81
83
  export {};
@@ -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;
@@ -13,6 +13,8 @@ declare const __propDef: {
13
13
  default: {};
14
14
  actions: {};
15
15
  };
16
+ exports?: {} | undefined;
17
+ bindings?: string | undefined;
16
18
  };
17
19
  export type AlertProps = typeof __propDef.props;
18
20
  export type AlertEvents = typeof __propDef.events;
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -9,6 +9,8 @@ declare const __propDef: {
9
9
  [evt: string]: CustomEvent<any>;
10
10
  };
11
11
  slots: {};
12
+ exports?: {} | undefined;
13
+ bindings?: string | undefined;
12
14
  };
13
15
  export type DocsProps = typeof __propDef.props;
14
16
  export type DocsEvents = 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;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type FooterProps = typeof __propDef.props;
10
12
  export type FooterEvents = typeof __propDef.events;
@@ -19,5 +19,7 @@ declare const __propDef: {
19
19
  [evt: string]: CustomEvent<any>;
20
20
  };
21
21
  slots: {};
22
+ exports?: undefined;
23
+ bindings?: undefined;
22
24
  };
23
25
  export {};
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type HeaderProps = typeof __propDef.props;
10
12
  export type HeaderEvents = 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 HelpPopUpProps = typeof __propDef.props;
12
14
  export type HelpPopUpEvents = typeof __propDef.events;
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type NotificationProps = typeof __propDef.props;
10
12
  export type NotificationEvents = typeof __propDef.events;
@@ -21,6 +21,8 @@ declare const __propDef: {
21
21
  default: {};
22
22
  right: {};
23
23
  };
24
+ exports?: {} | undefined;
25
+ bindings?: string | undefined;
24
26
  };
25
27
  export type PageProps = typeof __propDef.props;
26
28
  export type PageEvents = 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;
@@ -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 BreadcrumbProps = typeof __propDef.props;
12
14
  export type BreadcrumbEvents = 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
- <SettingsBar menuBar={$menuStore.Settings} />
53
- <!-- </div> -->
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>
@@ -5,6 +5,8 @@ declare const __propDef: {
5
5
  [evt: string]: CustomEvent<any>;
6
6
  };
7
7
  slots: {};
8
+ exports?: {} | undefined;
9
+ bindings?: string | undefined;
8
10
  };
9
11
  export type MenuProps = typeof __propDef.props;
10
12
  export type MenuEvents = 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 MenuAccountBarProps = typeof __propDef.props;
13
15
  export type MenuAccountBarEvents = 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 MenuBarProps = typeof __propDef.props;
13
15
  export type MenuBarEvents = typeof __propDef.events;
@@ -9,6 +9,8 @@ declare const __propDef: {
9
9
  [evt: string]: CustomEvent<any>;
10
10
  };
11
11
  slots: {};
12
+ exports?: {} | undefined;
13
+ bindings?: string | undefined;
12
14
  };
13
15
  export type MenuItemProps = typeof __propDef.props;
14
16
  export type MenuItemEvents = 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: MouseEvent;
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;