@turnipxenon/pineapple 4.3.2 → 4.4.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.
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
import { page } from "$app/state";
|
|
16
16
|
|
|
17
17
|
let {
|
|
18
|
+
email,
|
|
19
|
+
linkedinSlug,
|
|
18
20
|
children,
|
|
19
21
|
sideSection,
|
|
20
22
|
entryList, // todo
|
|
@@ -22,7 +24,7 @@
|
|
|
22
24
|
domain = "http://localhost:5173/seaweed2",
|
|
23
25
|
queryTerms,
|
|
24
26
|
showMiniSocial = false,
|
|
25
|
-
serverParams = ""
|
|
27
|
+
serverParams = ""
|
|
26
28
|
}: SeaweedLayoutProps = $props();
|
|
27
29
|
|
|
28
30
|
let actualLayout = $state(layout);
|
|
@@ -161,7 +163,10 @@
|
|
|
161
163
|
|
|
162
164
|
|
|
163
165
|
{#snippet socialSection()}
|
|
164
|
-
<SocialSection
|
|
166
|
+
<SocialSection
|
|
167
|
+
email={email}
|
|
168
|
+
linkedinSlug={linkedinSlug}
|
|
169
|
+
/>
|
|
165
170
|
{/snippet}
|
|
166
171
|
<PinyaPageLayout>
|
|
167
172
|
{#snippet appBarLead()}
|
|
@@ -170,7 +175,11 @@
|
|
|
170
175
|
class="flex flex-row"
|
|
171
176
|
transition:fly={{x:-10}}
|
|
172
177
|
>
|
|
173
|
-
<SocialSection
|
|
178
|
+
<SocialSection
|
|
179
|
+
isSmallVersion={true}
|
|
180
|
+
email={email}
|
|
181
|
+
linkedinSlug={linkedinSlug}
|
|
182
|
+
/>
|
|
174
183
|
</div>
|
|
175
184
|
{/if}
|
|
176
185
|
{/snippet}
|
|
@@ -277,4 +286,4 @@
|
|
|
277
286
|
gap: 0.25em;
|
|
278
287
|
margin-top: 1lh;
|
|
279
288
|
}
|
|
280
|
-
</style>
|
|
289
|
+
</style>
|
package/package.json
CHANGED