@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 CHANGED
@@ -1,4 +1,8 @@
1
1
  # bexis-core-ui
2
+ ## 0.4.35
3
+
4
+ - enlarge help and up to start button
5
+
2
6
  ## 0.4.33
3
7
  - Menu
4
8
  - remove alert ("log off")
@@ -18,7 +18,7 @@
18
18
  <button
19
19
  id="gotToTop"
20
20
  title="Go to top"
21
- class="chip variant-filled-warning fixed bottom-5 right-20 shadow-md"
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="chip variant-filled-warning fixed bottom-5 right-10 shadow-md"
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
 
@@ -94,6 +94,7 @@ function scrollToTop() {
94
94
  <GoToTop/>
95
95
  <HelpPopUp active={help} />
96
96
  <Notification />
97
+
97
98
 
98
99
  <svelte:fragment slot="footer">
99
100
  <Footer />
@@ -58,7 +58,8 @@ async function logOffFn() {
58
58
  value={item.Title}
59
59
 
60
60
  >
61
- <a href={item.Url} target="{item.Target}">{item.Title}</a>
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.33",
3
+ "version": "0.4.35",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -18,7 +18,7 @@
18
18
  <button
19
19
  id="gotToTop"
20
20
  title="Go to top"
21
- class="chip variant-filled-warning fixed bottom-5 right-20 shadow-md"
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="chip variant-filled-warning fixed bottom-5 right-10 shadow-md"
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
 
@@ -114,6 +114,7 @@ import type { helpItemType, helpStoreType } from '$models/Models';
114
114
  <GoToTop/>
115
115
  <HelpPopUp active={help} />
116
116
  <Notification />
117
+
117
118
 
118
119
  <svelte:fragment slot="footer">
119
120
  <Footer />
@@ -78,7 +78,8 @@
78
78
  value={item.Title}
79
79
 
80
80
  >
81
- <a href={item.Url} target="{item.Target}">{item.Title}</a>
81
+ <a href={item.Url} target="{item.Target}" on:click|preventDefault={()=>clickFn(item)}>{item.Title}</a>
82
+
82
83
  </ListBoxItem>
83
84
 
84
85
  {/each}