@bexis2/bexis2-core-ui 0.3.7 → 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 +7 -2
- package/dist/components/page/breadcrumb/Breadcrumb.svelte +1 -2
- package/package.json +1 -1
- package/src/lib/components/page/breadcrumb/Breadcrumb.svelte +1 -2
- /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,4 +1,10 @@
|
|
|
1
1
|
# bexis-core-ui
|
|
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
|
+
|
|
2
8
|
## 0.3.7
|
|
3
9
|
|
|
4
10
|
- listeItemType
|
|
@@ -6,7 +12,7 @@
|
|
|
6
12
|
|
|
7
13
|
## 0.3.6
|
|
8
14
|
|
|
9
|
-
- FileUpload
|
|
15
|
+
- FileUpload
|
|
10
16
|
- add progressbar during upload
|
|
11
17
|
- Table
|
|
12
18
|
- fix update issue with first row entry
|
|
@@ -16,7 +22,6 @@
|
|
|
16
22
|
- listeItemType
|
|
17
23
|
- add description
|
|
18
24
|
|
|
19
|
-
|
|
20
25
|
## 0.3.4
|
|
21
26
|
|
|
22
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}
|
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}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|