@bexis2/bexis2-core-ui 0.4.33 → 0.4.35
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 +4 -0
- package/dist/components/page/GoToTop.svelte +1 -1
- package/dist/components/page/HelpPopUp.svelte +1 -1
- package/dist/components/page/Page.svelte +1 -0
- package/dist/components/page/menu/MenuSublist.svelte +2 -1
- package/package.json +1 -1
- package/src/lib/components/page/GoToTop.svelte +1 -1
- package/src/lib/components/page/HelpPopUp.svelte +1 -1
- package/src/lib/components/page/Page.svelte +1 -0
- package/src/lib/components/page/menu/MenuSublist.svelte +2 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<button
|
|
19
19
|
id="gotToTop"
|
|
20
20
|
title="Go to top"
|
|
21
|
-
class="
|
|
21
|
+
class="btn variant-filled-warning fixed bottom-5 right-20 shadow-md"
|
|
22
22
|
on:click={gotoTop}
|
|
23
23
|
><Fa icon={faAngleUp}/></button >
|
|
24
24
|
{/if}
|
|
@@ -30,7 +30,7 @@ async function resetItemId() {
|
|
|
30
30
|
<button
|
|
31
31
|
id="helpButton"
|
|
32
32
|
title="Open help window"
|
|
33
|
-
class="
|
|
33
|
+
class="btn variant-filled-warning fixed bottom-5 right-5 shadow-md"
|
|
34
34
|
use:popup={helpClick}><Fa icon={faQuestion} /></button
|
|
35
35
|
>
|
|
36
36
|
|
|
@@ -58,7 +58,8 @@ async function logOffFn() {
|
|
|
58
58
|
value={item.Title}
|
|
59
59
|
|
|
60
60
|
>
|
|
61
|
-
|
|
61
|
+
<a href={item.Url} target="{item.Target}" on:click|preventDefault={()=>clickFn(item)}>{item.Title}</a>
|
|
62
|
+
|
|
62
63
|
</ListBoxItem>
|
|
63
64
|
|
|
64
65
|
{/each}
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<button
|
|
19
19
|
id="gotToTop"
|
|
20
20
|
title="Go to top"
|
|
21
|
-
class="
|
|
21
|
+
class="btn variant-filled-warning fixed bottom-5 right-20 shadow-md"
|
|
22
22
|
on:click={gotoTop}
|
|
23
23
|
><Fa icon={faAngleUp}/></button >
|
|
24
24
|
{/if}
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<button
|
|
47
47
|
id="helpButton"
|
|
48
48
|
title="Open help window"
|
|
49
|
-
class="
|
|
49
|
+
class="btn variant-filled-warning fixed bottom-5 right-5 shadow-md"
|
|
50
50
|
use:popup={helpClick}><Fa icon={faQuestion} /></button
|
|
51
51
|
>
|
|
52
52
|
|