@bexis2/bexis2-core-ui 0.4.46 → 0.4.47
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
|
@@ -18,7 +18,7 @@ let popupCombobox = {
|
|
|
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 hover:
|
|
21
|
+
<span class="capitalize whitespace-nowrap text-lg hover:text-secondary-500">{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 hover:
|
|
30
|
+
<span class="capitalize text-lg hover:text-primary-500">{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 class="capitalize whitespace-nowrap hover:
|
|
41
|
+
<span class="capitalize text-lg whitespace-nowrap hover:text-primary-500">{menubarItem.Title}▾</span>
|
|
42
42
|
</button>
|
|
43
43
|
|
|
44
44
|
<div class="z-50 w-max" data-popup={id}>
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
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 hover:
|
|
32
|
+
<span class="capitalize whitespace-nowrap text-lg hover:text-secondary-500">{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 hover:
|
|
41
|
+
<span class="capitalize text-lg hover:text-primary-500">{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 class="capitalize whitespace-nowrap hover:
|
|
52
|
+
<span class="capitalize text-lg whitespace-nowrap hover:text-primary-500">{menubarItem.Title}▾</span>
|
|
53
53
|
</button>
|
|
54
54
|
|
|
55
55
|
<div class="z-50 w-max" data-popup={id}>
|