@wishbone-media/spark 0.12.0 → 0.13.0
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/package.json
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<!-- Bind props and event handlers dynamically -->
|
|
42
42
|
<component
|
|
43
43
|
:is="overlayInstance.state.content"
|
|
44
|
-
v-bind="
|
|
44
|
+
v-bind="overlayInstance.state.props"
|
|
45
45
|
v-on="overlayInstance.state.eventHandlers"
|
|
46
46
|
/>
|
|
47
47
|
</DialogPanel>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
<div class="flex grow m-2.5 p-[10px] rounded-lg">
|
|
4
4
|
<nav class="flex flex-1 flex-col">
|
|
5
5
|
<ul class="flex flex-1 flex-col gap-y-7" role="list">
|
|
6
|
-
<li>
|
|
7
|
-
<ul role="list">
|
|
6
|
+
<li class="flex flex-1 flex-col">
|
|
7
|
+
<ul role="list" class="flex flex-1 flex-col">
|
|
8
8
|
<li class="flex items-center pb-8">
|
|
9
9
|
<a
|
|
10
10
|
class="grid w-[40px] h-[40px] place-items-center rounded-md bg-primary-600 text-white text-[13px] cursor-pointer"
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
<li
|
|
25
25
|
:class="{
|
|
26
26
|
'mt-[10px]': item.children,
|
|
27
|
+
'mt-auto': item.footerSection,
|
|
27
28
|
}"
|
|
28
29
|
>
|
|
29
30
|
<a
|