@bexis2/bexis2-core-ui 0.3.6 → 0.3.8

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 CHANGED
@@ -1,8 +1,18 @@
1
1
  # bexis-core-ui
2
2
 
3
+ ## 0.3.8
4
+
5
+ - change home within breadcrumb from "app"-based home to "/" in general
6
+ - There was an issue in case the application is routing through sub-apps. By that, "home" was redirecting to the home of the sub-app, but not to the general "/" anymore.
7
+
8
+ ## 0.3.7
9
+
10
+ - listeItemType
11
+ - add description
12
+
3
13
  ## 0.3.6
4
14
 
5
- - FileUpload
15
+ - FileUpload
6
16
  - add progressbar during upload
7
17
  - Table
8
18
  - fix update issue with first row entry
@@ -12,7 +22,6 @@
12
22
  - listeItemType
13
23
  - add description
14
24
 
15
-
16
25
  ## 0.3.4
17
26
 
18
27
  - Page
@@ -1,6 +1,5 @@
1
1
  <script>import { breadcrumbStore } from "../../../stores/pageStores";
2
2
  import { browser } from "$app/environment";
3
- import { base } from "$app/paths";
4
3
  export let title;
5
4
  $:
6
5
  update(title);
@@ -21,7 +20,7 @@ $:
21
20
  <div class="px-5 py-2">
22
21
  <ol class="breadcrumb -p50">
23
22
  <!--default home-->
24
- <li class="crumb"><a class="anchor" href={base + '/'}>Home</a></li>
23
+ <li class="crumb"><a class="anchor" href={'/'}>Home</a></li>
25
24
  <li class="crumb-separator" aria-hidden>&rsaquo;</li>
26
25
 
27
26
  {#each list as crumb, i}
@@ -17,7 +17,7 @@ function isNewModule(module) {
17
17
  }
18
18
  </script>
19
19
 
20
- <ListBox class="sm:bg-white sm:border">
20
+ <ListBox class="sm:bg-white sm:border overflow-y-auto max-h-[500px]">
21
21
  {#each items as item}
22
22
  {#if isNewModule(item.Module)}<hr class="text-surface-800" />{/if}
23
23
  <ListBoxItem
@@ -102,6 +102,7 @@ export interface listItemType {
102
102
  id: number;
103
103
  text: string;
104
104
  group: string;
105
+ description: string;
105
106
  }
106
107
  export interface helpItemType {
107
108
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -2,7 +2,6 @@
2
2
  import { breadcrumbStore } from '$store/pageStores';
3
3
  import type { breadcrumbItemType } from '$models/Page';
4
4
  import { browser } from '$app/environment';
5
- import { base } from '$app/paths';
6
5
 
7
6
  export let title;
8
7
 
@@ -25,7 +24,7 @@
25
24
  <div class="px-5 py-2">
26
25
  <ol class="breadcrumb -p50">
27
26
  <!--default home-->
28
- <li class="crumb"><a class="anchor" href={base + '/'}>Home</a></li>
27
+ <li class="crumb"><a class="anchor" href={'/'}>Home</a></li>
29
28
  <li class="crumb-separator" aria-hidden>&rsaquo;</li>
30
29
 
31
30
  {#each list as crumb, i}
@@ -24,7 +24,7 @@
24
24
  }
25
25
  </script>
26
26
 
27
- <ListBox class="sm:bg-white sm:border">
27
+ <ListBox class="sm:bg-white sm:border overflow-y-auto max-h-[500px]">
28
28
  {#each items as item}
29
29
  {#if isNewModule(item.Module)}<hr class="text-surface-800" />{/if}
30
30
  <ListBoxItem
@@ -129,6 +129,7 @@ export interface listItemType {
129
129
  id: number;
130
130
  text: string;
131
131
  group: string;
132
+ description:string;
132
133
  }
133
134
 
134
135
  //help