@bexis2/bexis2-core-ui 0.4.84 → 0.4.86

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 +16 -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 +2 -2
  24. package/dist/components/form/InputContainer.svelte.d.ts +3 -0
  25. package/dist/components/form/MultiSelect.svelte +7 -7
  26. package/dist/components/form/MultiSelect.svelte.d.ts +2 -0
  27. package/dist/components/form/NumberInput.svelte.d.ts +2 -0
  28. package/dist/components/form/TextArea.svelte.d.ts +2 -0
  29. package/dist/components/form/TextInput.svelte.d.ts +2 -0
  30. package/dist/components/page/Alert.svelte.d.ts +2 -0
  31. package/dist/components/page/BackToTop.svelte.d.ts +2 -0
  32. package/dist/components/page/Docs.svelte.d.ts +2 -0
  33. package/dist/components/page/ErrorMessage.svelte.d.ts +2 -0
  34. package/dist/components/page/Footer.svelte.d.ts +2 -0
  35. package/dist/components/page/GoToTop.svelte.d.ts +2 -0
  36. package/dist/components/page/Header.svelte.d.ts +2 -0
  37. package/dist/components/page/HelpPopUp.svelte.d.ts +2 -0
  38. package/dist/components/page/Notification.svelte.d.ts +2 -0
  39. package/dist/components/page/Page.svelte.d.ts +2 -0
  40. package/dist/components/page/Spinner.svelte.d.ts +2 -0
  41. package/dist/components/page/TablePlaceholder.svelte.d.ts +2 -0
  42. package/dist/components/page/breadcrumb/Breadcrumb.svelte.d.ts +2 -0
  43. package/dist/components/page/menu/Menu.svelte +98 -3
  44. package/dist/components/page/menu/Menu.svelte.d.ts +2 -0
  45. package/dist/components/page/menu/MenuAccountBar.svelte.d.ts +2 -0
  46. package/dist/components/page/menu/MenuBar.svelte.d.ts +2 -0
  47. package/dist/components/page/menu/MenuItem.svelte.d.ts +2 -0
  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 +5 -1
  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 +2 -3
  58. package/src/lib/components/form/MultiSelect.svelte +7 -7
  59. package/src/lib/components/page/menu/Menu.svelte +108 -6
  60. package/src/lib/css/core.ui.postcss +5 -1
  61. package/src/lib/css/themes/theme-bexis2.css_old +100 -0
  62. package/src/lib/themes/theme-bexis2 copy.ts +114 -0
@@ -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;
@@ -6,7 +6,7 @@
6
6
  /*place global styles here */
7
7
  html,
8
8
  body {
9
- @apply h-full bg-white;
9
+ @apply h-full bg-white text-sm leading-tight;
10
10
  }
11
11
 
12
12
  [type='text']:focus {
@@ -21,6 +21,10 @@ h2 {
21
21
  @apply text-primary-500;
22
22
  }
23
23
 
24
+ input {
25
+ @apply pb-1 pt-1
26
+ }
27
+
24
28
  .svelte-select,
25
29
  .svelte-select-list {
26
30
  @apply dark:!bg-zinc-700 border dark:!border-zinc-500;
@@ -0,0 +1,100 @@
1
+ [data-theme='bexis2theme'] {
2
+ /* =~= Theme Properties =~= */
3
+ --base-font-family: system-ui;
4
+ --base-font-color: var(--color-surface-900);
5
+ --base-font-color-dark: 255 255 255;
6
+ /*--theme-rounded-base: 4px;
7
+ --theme-rounded-container: 4px;
8
+ --theme-border-base: 1px;*/
9
+ --radius-base: 4px;
10
+ --radius-container: 4px;
11
+ --default-border-width: 1px;
12
+ --default-divide-width: 1px;
13
+ --default-ring-width: 1px;
14
+ /* =~= Theme On-X Colors =~= */
15
+ --on-primary: 255 255 255;
16
+ --on-secondary: 255 255 255;
17
+ --on-tertiary: 0 0 0;
18
+ --on-success: 255 255 255;
19
+ --on-warning: 255 255 255;
20
+ --on-error: 255 255 255;
21
+ --on-surface: 0 0 0;
22
+ /* =~= Theme Colors =~= */
23
+ /* primary | #45b2a1 */
24
+ --color-primary-50: #e3f3f1;
25
+ --color-primary-100: #daf0ec;
26
+ --color-primary-200: #d1ece8;
27
+ --color-primary-300: #b5e0d9;
28
+ --color-primary-400: #7dc9bd;
29
+ --color-primary-500: #45b2a1;
30
+ --color-primary-600: #3ea091;
31
+ --color-primary-700: #348679;
32
+ --color-primary-800: #296b61;
33
+ --color-primary-900: #22574f;
34
+ /* secondary | #ff9700 */
35
+ --color-secondary-50: #ffefd9;
36
+ --color-secondary-100: #ffeacc;
37
+ --color-secondary-200: #ffe5bf;
38
+ --color-secondary-300: #ffd599;
39
+ --color-secondary-400: #ffb64d;
40
+ --color-secondary-500: #ff9700;
41
+ --color-secondary-600: #e68800;
42
+ --color-secondary-700: #bf7100;
43
+ --color-secondary-800: #995b00;
44
+ --color-secondary-900: #7d4a00;
45
+ /* tertiary | #bee1da */
46
+ --color-tertiary-50: #f5fbf9;
47
+ --color-tertiary-100: #f2f9f8;
48
+ --color-tertiary-200: #eff8f6;
49
+ --color-tertiary-300: #e5f3f0;
50
+ --color-tertiary-400: #d2eae5;
51
+ --color-tertiary-500: #bee1da;
52
+ --color-tertiary-600: #abcbc4;
53
+ --color-tertiary-700: #8fa9a4;
54
+ --color-tertiary-800: #728783;
55
+ --color-tertiary-900: #5d6e6b;
56
+ /* success | #4BB543 */
57
+ --color-success-50: #e4f4e3;
58
+ --color-success-100: #dbf0d9;
59
+ --color-success-200: #d2edd0;
60
+ --color-success-300: #b7e1b4;
61
+ --color-success-400: #81cb7b;
62
+ --color-success-500: #4bb543;
63
+ --color-success-600: #44a33c;
64
+ --color-success-700: #388832;
65
+ --color-success-800: #2d6d28;
66
+ --color-success-900: #255921;
67
+ /* warning | #EAB308 */
68
+ --color-warning-50: #fcf4da;
69
+ --color-warning-100: #fbf0ce;
70
+ --color-warning-200: #faecc1;
71
+ --color-warning-300: #f7e19c;
72
+ --color-warning-400: #f0ca52;
73
+ --color-warning-500: #eab308;
74
+ --color-warning-600: #d3a107;
75
+ --color-warning-700: #b08606;
76
+ --color-warning-800: #8c6b05;
77
+ --color-warning-900: #735804;
78
+ /* error | #FF0000 */
79
+ --color-error-50: #ffd9d9;
80
+ --color-error-100: #ffcccc;
81
+ --color-error-200: #ffbfbf;
82
+ --color-error-300: #ff9999;
83
+ --color-error-400: #ff4d4d;
84
+ --color-error-500: #ff0000;
85
+ --color-error-600: #e60000;
86
+ --color-error-700: #bf0000;
87
+ --color-error-800: #990000;
88
+ --color-error-900: #7d0000;
89
+ /* surface | #c7c7c7 */
90
+ --color-surface-50: #f7f7f7;
91
+ --color-surface-100: #f4f4f4;
92
+ --color-surface-200: #f1f1f1;
93
+ --color-surface-300: #e9e9e9;
94
+ --color-surface-400: #d8d8d8;
95
+ --color-surface-500: #c7c7c7;
96
+ --color-surface-600: #b3b3b3;
97
+ --color-surface-700: #959595;
98
+ --color-surface-800: #777777;
99
+ --color-surface-900: #626262;
100
+ }
@@ -1,7 +1,7 @@
1
1
  export declare const Api: {
2
- get: (url: any, request?: string, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any>>;
3
- delete: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any>>;
4
- post: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any>>;
5
- put: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any>>;
6
- patch: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any>>;
2
+ get: (url: any, request?: string, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any, {}>>;
3
+ delete: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any, {}>>;
4
+ post: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any, {}>>;
5
+ put: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any, {}>>;
6
+ patch: (url: any, request: any, headers?: {}, config?: {}) => Promise<import("axios").AxiosResponse<any, any, {}>>;
7
7
  };
@@ -0,0 +1,2 @@
1
+ import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';
2
+ export declare const bexis2theme: CustomThemeConfig;
@@ -0,0 +1,112 @@
1
+ export const bexis2theme = {
2
+ name: 'bexis2theme',
3
+ properties: {
4
+ // =~= Theme Properties =~=
5
+ '--theme-font-family-base': `system-ui`,
6
+ '--theme-font-family-heading': `system-ui`,
7
+ '--theme-font-color-base': 'var(--color-surface-900)',
8
+ '--theme-font-color-dark': '#ffffff',
9
+ '--theme-rounded-base': '4px',
10
+ '--theme-rounded-container': '4px',
11
+ '--theme-border-base': '1px',
12
+ // =~= Theme On-X Colors =~=
13
+ '--on-primary': '255 255 255',
14
+ '--on-secondary': '255 255 255',
15
+ '--on-tertiary': '0 0 0',
16
+ '--on-success': '255 255 255',
17
+ '--on-warning': '255 255 255',
18
+ '--on-error': '255 255 255',
19
+ '--on-surface': '255 255 255',
20
+ // =~= Theme Colors =~=
21
+ // primary | #45b2a1
22
+ '--color-primary-50': '#e3f3f1',
23
+ '--color-primary-100': '#daf0ec',
24
+ '--color-primary-200': '#d1ece8',
25
+ '--color-primary-300': '#b5e0d9',
26
+ '--color-primary-400': '#7dc9bd',
27
+ '--color-primary-500': '#45b2a1',
28
+ '--color-primary-600': '#3ea091',
29
+ '--color-primary-700': '#348679',
30
+ '--color-primary-800': '#296b61',
31
+ '--color-primary-900': '#22574f',
32
+ // secondary | #ff9700
33
+ '--color-secondary-50': '#ffefd9',
34
+ '--color-secondary-100': '#ffeacc',
35
+ '--color-secondary-200': '#ffe5bf',
36
+ '--color-secondary-300': '#ffd599',
37
+ '--color-secondary-400': '#ffb64d',
38
+ '--color-secondary-500': '#ff9700',
39
+ '--color-secondary-600': '#e68800',
40
+ '--color-secondary-700': '#bf7100',
41
+ '--color-secondary-800': '#995b00',
42
+ '--color-secondary-900': '#7d4a00',
43
+ // tertiary | #bee1da
44
+ '--color-tertiary-50': '#f5fbf9',
45
+ '--color-tertiary-100': '#f2f9f8',
46
+ '--color-tertiary-200': '#eff8f6',
47
+ '--color-tertiary-300': '#e5f3f0',
48
+ '--color-tertiary-400': '#d2eae5',
49
+ '--color-tertiary-500': '#bee1da',
50
+ '--color-tertiary-600': '#abcbc4',
51
+ '--color-tertiary-700': '#8fa9a4',
52
+ '--color-tertiary-800': '#728783',
53
+ '--color-tertiary-900': '#5d6e6b',
54
+ // success | #4BB543
55
+ '--color-success-50': '#e4f4e3',
56
+ '--color-success-100': '#dbf0d9',
57
+ '--color-success-200': '#d2edd0',
58
+ '--color-success-300': '#b7e1b4',
59
+ '--color-success-400': '#81cb7b',
60
+ '--color-success-500': '#4bb543',
61
+ '--color-success-600': '#44a33c',
62
+ '--color-success-700': '#388832',
63
+ '--color-success-800': '#2d6d28',
64
+ '--color-success-900': '#255921',
65
+ // warning | #EAB308
66
+ '--color-warning-50': '#fcf4da',
67
+ '--color-warning-100': '#fbf0ce',
68
+ '--color-warning-200': '#faecc1',
69
+ '--color-warning-300': '#f7e19c',
70
+ '--color-warning-400': '#f0ca52',
71
+ '--color-warning-500': '#eab308',
72
+ '--color-warning-600': '#d3a107',
73
+ '--color-warning-700': '#b08606',
74
+ '--color-warning-800': '#8c6b05',
75
+ '--color-warning-900': '#735804',
76
+ // error | #FF0000
77
+ '--color-error-50': '#ffd9d9',
78
+ '--color-error-100': '#ffcccc',
79
+ '--color-error-200': '#ffbfbf',
80
+ '--color-error-300': '#ff9999',
81
+ '--color-error-400': '#ff4d4d',
82
+ '--color-error-500': '#ff0000',
83
+ '--color-error-600': '#e60000',
84
+ '--color-error-700': '#bf0000',
85
+ '--color-error-800': '#990000',
86
+ '--color-error-900': '#7d0000',
87
+ // surface | #c7c7c7
88
+ '--color-surface-50': '#f7f7f7',
89
+ '--color-surface-100': '#f4f4f4',
90
+ '--color-surface-200': '#f1f1f1',
91
+ '--color-surface-300': '#e9e9e9',
92
+ '--color-surface-400': '#d8d8d8',
93
+ '--color-surface-500': '#c7c7c7',
94
+ '--color-surface-600': '#b3b3b3',
95
+ '--color-surface-700': '#959595',
96
+ '--color-surface-800': '#777777',
97
+ '--color-surface-900': '#626262'
98
+ },
99
+ properties_dark: {
100
+ // surface | #2e2e2e
101
+ '--color-surface-50': '#e0e0e0',
102
+ '--color-surface-100': '#d5d5d5',
103
+ '--color-surface-200': '#cbcbcb',
104
+ '--color-surface-300': '#ababab',
105
+ '--color-surface-400': '#6d6d6d',
106
+ '--color-surface-500': '#2e2e2e',
107
+ '--color-surface-600': '#292929',
108
+ '--color-surface-700': '#232323',
109
+ '--color-surface-800': '#1c1c1c',
110
+ '--color-surface-900': '#171717'
111
+ }
112
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.84",
3
+ "version": "0.4.86",
4
4
  "private": false,
5
5
  "description": "Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).",
6
6
  "keywords": [
@@ -9,8 +9,7 @@
9
9
  export let feedback: string[];
10
10
  export let help: boolean = false;
11
11
  export let description : string = '';
12
-
13
- let showDescription: boolean = false;
12
+ export let showDescription: boolean = false;
14
13
 
15
14
  function onMouseOver() {
16
15
  if (help) {
@@ -44,7 +43,7 @@ let showDescription: boolean = false;
44
43
  <div class="card text-sm text-gray-500 p-2 mb-2">{@html description}</div>
45
44
  {/if}
46
45
  <slot />
47
- <div class="">
46
+ <div class="min-h-5">
48
47
  <span class="text-xs text-error-600 ">
49
48
  {#if feedback}
50
49
  <ul>
@@ -33,7 +33,7 @@
33
33
  $: target, setValue(target);
34
34
 
35
35
  let groupBy;
36
- $: groupBy = itemGroup ? (item) => item[itemGroup] : undefined;
36
+ $: groupBy;
37
37
 
38
38
  const dispatch = createEventDispatcher();
39
39
 
@@ -120,17 +120,17 @@
120
120
  value = items;
121
121
  }
122
122
  //console.log(value);
123
- // if (itemGroup) {
124
- // groupBy = (item) => item[itemGroup];
125
- // }
123
+ if (itemGroup) {
124
+ groupBy = (item) => item[itemGroup];
125
+ }
126
126
  }
127
127
 
128
128
  if (complexSource && complexTarget && isMulti) {
129
129
  value = t;
130
130
  isLoaded = true;
131
- // if (itemGroup) {
132
- // groupBy = (item) => item[itemGroup];
133
- // }
131
+ if (itemGroup) {
132
+ groupBy = (item) => item[itemGroup];
133
+ }
134
134
  }
135
135
 
136
136
  //b) simple liust and simple model
@@ -1,24 +1,60 @@
1
1
  <script lang="ts">
2
2
  import { onMount } from 'svelte';
3
+ import { writable } from 'svelte/store';
3
4
  import { getMenuItems } from './MenuDataCaller';
4
- import { menuStore } from "../../../stores/pageStores";
5
+ import { menuStore } from '../../../stores/pageStores';
5
6
 
6
7
  import MenuBar from './MenuBar.svelte';
7
8
  import MenuAccountBar from './MenuAccountBar.svelte';
8
9
  import SettingsBar from './SettingsBar.svelte';
9
10
  import Fa from 'svelte-fa';
10
- import { faBars } from '@fortawesome/free-solid-svg-icons';
11
+ import { faBars, faPlus, faMinus } from '@fortawesome/free-solid-svg-icons';
11
12
  import { Accordion } from '@skeletonlabs/skeleton';
12
13
 
13
14
  onMount(async () => {
14
15
  let m = await getMenuItems();
15
16
  menuStore.set(m);
16
17
 
17
- console.log("🚀 ~ onMount ~ menuStore:", $menuStore);
18
-
18
+ console.log('🚀 ~ onMount ~ menuStore:', $menuStore);
19
+ // set the font size to the value stored in local storage
20
+ const storedFontSize = localStorage.getItem('fontSize');
21
+ if (storedFontSize) {
22
+ document.documentElement.style.fontSize = storedFontSize;
23
+ }
19
24
  });
20
25
 
21
26
  let hamburger = true;
27
+ const theme = writable('light');
28
+
29
+ // function to increase the current font size by 1 step; set in local storage so it is remembered on page reload
30
+ function increaseFontSize() {
31
+ const currentFontSize = parseFloat(getComputedStyle(document.documentElement).fontSize);
32
+ document.documentElement.style.fontSize = currentFontSize + 1 + 'px';
33
+ localStorage.setItem('fontSize', document.documentElement.style.fontSize);
34
+ }
35
+ // function to decrease the current font size by 1 step
36
+ function decreaseFontSize() {
37
+ const currentFontSize = parseFloat(getComputedStyle(document.documentElement).fontSize);
38
+ document.documentElement.style.fontSize = currentFontSize - 1 + 'px';
39
+ localStorage.setItem('fontSize', document.documentElement.style.fontSize);
40
+ }
41
+
42
+ // function to toggle dark mode
43
+ function toggleDarkMode() {
44
+ if ($theme === 'dark') {
45
+ theme.set('light');
46
+ document.documentElement.classList.remove('dark');
47
+ } else {
48
+ theme.set('dark');
49
+ document.documentElement.classList.add('dark');
50
+ }
51
+ }
52
+
53
+ let showMode = false; // set to false to hide the dark mode toggle button
54
+ // only show dark mode button in dev mode
55
+ if (import.meta.env.DEV) {
56
+ showMode = true;
57
+ }
22
58
  </script>
23
59
 
24
60
  {#if $menuStore !== undefined}
@@ -55,8 +91,74 @@
55
91
  <div class="grid w-full sm:flex gap-2 justify-auto sm:justify-end">
56
92
  <MenuAccountBar menuBar={$menuStore.AccountBar} />
57
93
  <MenuBar menuBar={$menuStore.LaunchBar} />
58
- <SettingsBar menuBar={$menuStore.Settings} />
59
- <!-- </div> -->
94
+ <!-- Add change font size buttons -->
95
+ <button
96
+ class="btn btn-ghost pl-1 pr-1"
97
+ on:click={decreaseFontSize}
98
+ title="Decrease font size"
99
+ >
100
+ <span class="capitalize text-lg whitespace-nowrap hover:text-secondary-500">A-</span>
101
+ </button>
102
+ <button
103
+ class="btn btn-ghost pl-1 pr-1"
104
+ on:click={increaseFontSize}
105
+ title="Increase font size"
106
+ >
107
+ <span class="capitalize text-lg whitespace-nowrap hover:text-secondary-500">A+</span>
108
+ </button>
109
+
110
+ <button
111
+ class="btn btn-ghost pl-1 pr-1"
112
+ on:click={toggleDarkMode}
113
+ title="Toggle dark mode"
114
+ >
115
+ {#if showMode}
116
+ {#if $theme === 'dark'}
117
+ <!-- sun icon (white via currentColor) -->
118
+ <svg
119
+ xmlns="http://www.w3.org/2000/svg"
120
+ width="18"
121
+ height="18"
122
+ viewBox="0 0 24 24"
123
+ fill="none"
124
+ aria-hidden="true"
125
+ focusable="false"
126
+ class="inline-block"
127
+ >
128
+ <g
129
+ stroke="currentColor"
130
+ stroke-width="1.6"
131
+ stroke-linecap="round"
132
+ stroke-linejoin="round"
133
+ fill="none"
134
+ >
135
+ <circle cx="12" cy="12" r="4" stroke="currentColor" fill="currentColor" />
136
+ <path
137
+ 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"
138
+ stroke="currentColor"
139
+ />
140
+ </g>
141
+ </svg>
142
+ {:else}
143
+ <!-- moon icon (white via currentColor) -->
144
+ <svg
145
+ xmlns="http://www.w3.org/2000/svg"
146
+ width="18"
147
+ height="18"
148
+ viewBox="0 0 24 24"
149
+ fill="currentColor"
150
+ aria-hidden="true"
151
+ focusable="false"
152
+ class="inline-block"
153
+ >
154
+ <path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" fill="currentColor" />
155
+ </svg>
156
+ {/if}
157
+ {/if}
158
+ </button>
159
+ <SettingsBar menuBar={$menuStore.Settings} />
160
+ <!-- </div> -->
161
+
60
162
  </div>
61
163
  </div>
62
164
  </Accordion>
@@ -6,7 +6,7 @@
6
6
  /*place global styles here */
7
7
  html,
8
8
  body {
9
- @apply h-full bg-white;
9
+ @apply h-full bg-white text-sm leading-tight;
10
10
  }
11
11
 
12
12
  [type='text']:focus {
@@ -21,6 +21,10 @@ h2 {
21
21
  @apply text-primary-500;
22
22
  }
23
23
 
24
+ input {
25
+ @apply pb-1 pt-1
26
+ }
27
+
24
28
  .svelte-select,
25
29
  .svelte-select-list {
26
30
  @apply dark:!bg-zinc-700 border dark:!border-zinc-500;
@@ -0,0 +1,100 @@
1
+ [data-theme='bexis2theme'] {
2
+ /* =~= Theme Properties =~= */
3
+ --base-font-family: system-ui;
4
+ --base-font-color: var(--color-surface-900);
5
+ --base-font-color-dark: 255 255 255;
6
+ /*--theme-rounded-base: 4px;
7
+ --theme-rounded-container: 4px;
8
+ --theme-border-base: 1px;*/
9
+ --radius-base: 4px;
10
+ --radius-container: 4px;
11
+ --default-border-width: 1px;
12
+ --default-divide-width: 1px;
13
+ --default-ring-width: 1px;
14
+ /* =~= Theme On-X Colors =~= */
15
+ --on-primary: 255 255 255;
16
+ --on-secondary: 255 255 255;
17
+ --on-tertiary: 0 0 0;
18
+ --on-success: 255 255 255;
19
+ --on-warning: 255 255 255;
20
+ --on-error: 255 255 255;
21
+ --on-surface: 0 0 0;
22
+ /* =~= Theme Colors =~= */
23
+ /* primary | #45b2a1 */
24
+ --color-primary-50: #e3f3f1;
25
+ --color-primary-100: #daf0ec;
26
+ --color-primary-200: #d1ece8;
27
+ --color-primary-300: #b5e0d9;
28
+ --color-primary-400: #7dc9bd;
29
+ --color-primary-500: #45b2a1;
30
+ --color-primary-600: #3ea091;
31
+ --color-primary-700: #348679;
32
+ --color-primary-800: #296b61;
33
+ --color-primary-900: #22574f;
34
+ /* secondary | #ff9700 */
35
+ --color-secondary-50: #ffefd9;
36
+ --color-secondary-100: #ffeacc;
37
+ --color-secondary-200: #ffe5bf;
38
+ --color-secondary-300: #ffd599;
39
+ --color-secondary-400: #ffb64d;
40
+ --color-secondary-500: #ff9700;
41
+ --color-secondary-600: #e68800;
42
+ --color-secondary-700: #bf7100;
43
+ --color-secondary-800: #995b00;
44
+ --color-secondary-900: #7d4a00;
45
+ /* tertiary | #bee1da */
46
+ --color-tertiary-50: #f5fbf9;
47
+ --color-tertiary-100: #f2f9f8;
48
+ --color-tertiary-200: #eff8f6;
49
+ --color-tertiary-300: #e5f3f0;
50
+ --color-tertiary-400: #d2eae5;
51
+ --color-tertiary-500: #bee1da;
52
+ --color-tertiary-600: #abcbc4;
53
+ --color-tertiary-700: #8fa9a4;
54
+ --color-tertiary-800: #728783;
55
+ --color-tertiary-900: #5d6e6b;
56
+ /* success | #4BB543 */
57
+ --color-success-50: #e4f4e3;
58
+ --color-success-100: #dbf0d9;
59
+ --color-success-200: #d2edd0;
60
+ --color-success-300: #b7e1b4;
61
+ --color-success-400: #81cb7b;
62
+ --color-success-500: #4bb543;
63
+ --color-success-600: #44a33c;
64
+ --color-success-700: #388832;
65
+ --color-success-800: #2d6d28;
66
+ --color-success-900: #255921;
67
+ /* warning | #EAB308 */
68
+ --color-warning-50: #fcf4da;
69
+ --color-warning-100: #fbf0ce;
70
+ --color-warning-200: #faecc1;
71
+ --color-warning-300: #f7e19c;
72
+ --color-warning-400: #f0ca52;
73
+ --color-warning-500: #eab308;
74
+ --color-warning-600: #d3a107;
75
+ --color-warning-700: #b08606;
76
+ --color-warning-800: #8c6b05;
77
+ --color-warning-900: #735804;
78
+ /* error | #FF0000 */
79
+ --color-error-50: #ffd9d9;
80
+ --color-error-100: #ffcccc;
81
+ --color-error-200: #ffbfbf;
82
+ --color-error-300: #ff9999;
83
+ --color-error-400: #ff4d4d;
84
+ --color-error-500: #ff0000;
85
+ --color-error-600: #e60000;
86
+ --color-error-700: #bf0000;
87
+ --color-error-800: #990000;
88
+ --color-error-900: #7d0000;
89
+ /* surface | #c7c7c7 */
90
+ --color-surface-50: #f7f7f7;
91
+ --color-surface-100: #f4f4f4;
92
+ --color-surface-200: #f1f1f1;
93
+ --color-surface-300: #e9e9e9;
94
+ --color-surface-400: #d8d8d8;
95
+ --color-surface-500: #c7c7c7;
96
+ --color-surface-600: #b3b3b3;
97
+ --color-surface-700: #959595;
98
+ --color-surface-800: #777777;
99
+ --color-surface-900: #626262;
100
+ }