@bexis2/bexis2-core-ui 0.3.4 → 0.3.5

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,5 +1,11 @@
1
1
  # bexis-core-ui
2
2
 
3
+ ## 0.3.5
4
+
5
+ - listeItemType
6
+ - add description
7
+
8
+
3
9
  ## 0.3.4
4
10
 
5
11
  - Page
@@ -13,7 +13,7 @@ function onMouseOut() {
13
13
  }
14
14
  </script>
15
15
 
16
- <div id="{id}-container" on:mouseover={onMouseOver} on:mouseout={onMouseOut}>
16
+ <div id="{id}-container" on:mouseover={onMouseOver} on:focus={onMouseOver} on:mouseout={onMouseOut} on:blur={onMouseOut}>
17
17
  <label class="label">
18
18
  <span
19
19
  >{label}
@@ -29,7 +29,7 @@ const noteSettings = {
29
29
  {/if}
30
30
 
31
31
  {#each links as link}
32
- <span class="chip variant-soft hover:variant-filled" on:click={() => goTo(link.url, false)}>
32
+ <span class="chip variant-soft hover:variant-filled" on:click={() => goTo(link.url, false)} on:keypress={() => goTo(link.url, false)}>
33
33
  <span>{link.label}</span>
34
34
  </span>
35
35
  {/each}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -16,7 +16,7 @@
16
16
  function onMouseOut() {}
17
17
  </script>
18
18
 
19
- <div id="{id}-container" on:mouseover={onMouseOver} on:mouseout={onMouseOut}>
19
+ <div id="{id}-container" on:mouseover={onMouseOver} on:focus={onMouseOver} on:mouseout={onMouseOut} on:blur={onMouseOut}>
20
20
  <label class="label">
21
21
  <span
22
22
  >{label}
@@ -39,7 +39,7 @@
39
39
  {/if}
40
40
 
41
41
  {#each links as link}
42
- <span class="chip variant-soft hover:variant-filled" on:click={() => goTo(link.url, false)}>
42
+ <span class="chip variant-soft hover:variant-filled" on:click={() => goTo(link.url, false)} on:keypress={() => goTo(link.url, false)}>
43
43
  <span>{link.label}</span>
44
44
  </span>
45
45
  {/each}