@bexis2/bexis2-core-ui 0.4.45 → 0.4.46

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,10 @@
1
1
  # bexis-core-ui
2
+ ## 0.4.46
3
+ - Menu
4
+ - Add hover to menu
5
+ - Fix Missing nowrap in menu
6
+
7
+
2
8
  ## 0.4.45
3
9
  - Menu
4
10
  - hide gear if settings array has no entry
@@ -15,10 +15,10 @@ let popupCombobox = {
15
15
 
16
16
  {#if menubarItem.Items.length < 1}
17
17
  <div class="p-2">
18
-
18
+
19
19
  <button class="grid" use:popup={popupCombobox} >
20
20
  <a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
21
- <span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
21
+ <span class="capitalize whitespace-nowrap hover:font-bold">{comboboxValue ?? menubarItem.Title}</span>
22
22
  </a>
23
23
  </button>
24
24
  </div>
@@ -27,7 +27,7 @@ let popupCombobox = {
27
27
  <AccordionItem padding="p-2">
28
28
  <svelte:fragment slot="summary"
29
29
  ><button class="flex items-center gap-x-1">
30
- <span class="capitalize">{menubarItem.Title}</span>
30
+ <span class="capitalize hover:font-bold">{menubarItem.Title}</span>
31
31
  </button></svelte:fragment
32
32
  >
33
33
  <svelte:fragment slot="content"
@@ -38,7 +38,7 @@ let popupCombobox = {
38
38
  </div>
39
39
  <div class="hidden sm:block place-self-center" use:popup={popupCombobox}>
40
40
  <button class="flex items-center gap-x-1 px-2">
41
- <span>{menubarItem.Title}▾</span>
41
+ <span class="capitalize whitespace-nowrap hover:font-bold">{menubarItem.Title}▾</span>
42
42
  </button>
43
43
 
44
44
  <div class="z-50 w-max" data-popup={id}>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.45",
3
+ "version": "0.4.46",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -26,10 +26,10 @@
26
26
 
27
27
  {#if menubarItem.Items.length < 1}
28
28
  <div class="p-2">
29
-
29
+
30
30
  <button class="grid" use:popup={popupCombobox} >
31
31
  <a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
32
- <span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
32
+ <span class="capitalize whitespace-nowrap hover:font-bold">{comboboxValue ?? menubarItem.Title}</span>
33
33
  </a>
34
34
  </button>
35
35
  </div>
@@ -38,7 +38,7 @@
38
38
  <AccordionItem padding="p-2">
39
39
  <svelte:fragment slot="summary"
40
40
  ><button class="flex items-center gap-x-1">
41
- <span class="capitalize">{menubarItem.Title}</span>
41
+ <span class="capitalize hover:font-bold">{menubarItem.Title}</span>
42
42
  </button></svelte:fragment
43
43
  >
44
44
  <svelte:fragment slot="content"
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
  <div class="hidden sm:block place-self-center" use:popup={popupCombobox}>
51
51
  <button class="flex items-center gap-x-1 px-2">
52
- <span>{menubarItem.Title}▾</span>
52
+ <span class="capitalize whitespace-nowrap hover:font-bold">{menubarItem.Title}▾</span>
53
53
  </button>
54
54
 
55
55
  <div class="z-50 w-max" data-popup={id}>