intelliwaketssveltekitv25 0.1.57 → 0.1.58
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/dist/MasterDetailLayout.svelte +13 -15
- package/package.json +1 -1
|
@@ -146,8 +146,9 @@
|
|
|
146
146
|
{/if}
|
|
147
147
|
{/if}
|
|
148
148
|
|
|
149
|
-
{#if !smallScreen || !!pathAnalyzer.activePageSlug}
|
|
150
|
-
<div class="grid grid-rows-[auto_1fr] overflow-hidden"
|
|
149
|
+
{#if (!smallScreen || !!pathAnalyzer.activePageSlug) && (showDetailOnNoSelection || !!openItem)}
|
|
150
|
+
<div class="grid grid-rows-[auto_1fr] overflow-hidden"
|
|
151
|
+
transition:fly|local={!animate ? undefined : {duration: 300, x: 100, opacity: 0, easing: quintOut}}>
|
|
151
152
|
<div>
|
|
152
153
|
{#if showDetailShowHeader}
|
|
153
154
|
<h3 class="text-center">
|
|
@@ -158,19 +159,16 @@
|
|
|
158
159
|
</h3>
|
|
159
160
|
{/if}
|
|
160
161
|
</div>
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
{/if}
|
|
172
|
-
</div>
|
|
173
|
-
{/if}
|
|
162
|
+
<div
|
|
163
|
+
class='masterDetailMaster relative grid grid-rows-1 md:relative overflow-hidden print:overflow-visible max-md:h-full max-md:w-full {detailClass}'
|
|
164
|
+
class:bg-white={showRoundedDetailFormatted}
|
|
165
|
+
class:dark:bg-slate-700={showRoundedDetailFormatted}
|
|
166
|
+
class:rounded-lg={showRoundedDetailFormatted}
|
|
167
|
+
class:drop-shadow={showRoundedDetailFormatted}>
|
|
168
|
+
{#if detail}
|
|
169
|
+
{@render detail()}
|
|
170
|
+
{/if}
|
|
171
|
+
</div>
|
|
174
172
|
</div>
|
|
175
173
|
{/if}
|
|
176
174
|
</div>
|