@bexis2/bexis2-core-ui 0.3.6 → 0.3.7

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,4 +1,8 @@
1
1
  # bexis-core-ui
2
+ ## 0.3.7
3
+
4
+ - listeItemType
5
+ - add description
2
6
 
3
7
  ## 0.3.6
4
8
 
@@ -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.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -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