@bexis2/bexis2-core-ui 0.4.25 → 0.4.26
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
|
@@ -15,8 +15,11 @@ let popupCombobox = {
|
|
|
15
15
|
|
|
16
16
|
{#if menubarItem.Items.length < 1}
|
|
17
17
|
<div class="p-2">
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
|
|
19
|
+
<button class="grid" use:popup={popupCombobox} >
|
|
20
|
+
<a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
|
|
21
|
+
<span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
|
|
22
|
+
</a>
|
|
20
23
|
</button>
|
|
21
24
|
</div>
|
|
22
25
|
{:else}
|
package/package.json
CHANGED
|
@@ -26,8 +26,11 @@
|
|
|
26
26
|
|
|
27
27
|
{#if menubarItem.Items.length < 1}
|
|
28
28
|
<div class="p-2">
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
|
|
30
|
+
<button class="grid" use:popup={popupCombobox} >
|
|
31
|
+
<a class="grid" href={menubarItem.Url} target="{menubarItem.Target}">
|
|
32
|
+
<span class="capitalize whitespace-nowrap">{comboboxValue ?? menubarItem.Title}</span>
|
|
33
|
+
</a>
|
|
31
34
|
</button>
|
|
32
35
|
</div>
|
|
33
36
|
{:else}
|