@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 +11 -2
- package/dist/components/page/breadcrumb/Breadcrumb.svelte +1 -2
- package/dist/components/page/menu/MenuSublist.svelte +1 -1
- package/dist/models/Models.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/components/page/breadcrumb/Breadcrumb.svelte +1 -2
- package/src/lib/components/page/menu/MenuSublist.svelte +1 -1
- package/src/lib/models/Models.ts +1 -0
- /package/src/lib/components/{file → File}/FileIcon.svelte +0 -0
- /package/src/lib/components/{file → File}/FileInfo.svelte +0 -0
- /package/src/lib/components/{file → File}/FileUploader.svelte +0 -0
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={
|
|
23
|
+
<li class="crumb"><a class="anchor" href={'/'}>Home</a></li>
|
|
25
24
|
<li class="crumb-separator" aria-hidden>›</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
|
package/dist/models/Models.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -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={
|
|
27
|
+
<li class="crumb"><a class="anchor" href={'/'}>Home</a></li>
|
|
29
28
|
<li class="crumb-separator" aria-hidden>›</li>
|
|
30
29
|
|
|
31
30
|
{#each list as crumb, i}
|
package/src/lib/models/Models.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|