@turnipxenon/pineapple 2.4.37 → 2.4.39
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/.idea/shelf/Changes1/shelved.patch +250 -0
- package/.idea/shelf/Changes1.xml +4 -0
- package/.idea/shelf/yarn_scripts/shelved.patch +20 -0
- package/.idea/shelf/yarn_scripts.xml +4 -0
- package/.idea/workspace.xml +33 -31
- package/.svelte-kit/__package__/components/Card.svelte +3 -1
- package/.svelte-kit/__package__/components/Card.svelte.d.ts +1 -0
- package/.svelte-kit/__package__/components/dialog_overlay/DialogOverlay.svelte +9 -11
- package/.svelte-kit/__package__/components/navigation_component/NavigationComponent.svelte +246 -239
- package/.svelte-kit/__package__/components/navigation_component/NavigationComponent.svelte.d.ts +2 -1
- package/.svelte-kit/__package__/components/navigation_component/NavigationControl.svelte +89 -89
- package/.svelte-kit/__package__/components/pineapple/PineappleBaseLayout.svelte +4 -4
- package/.svelte-kit/ambient.d.ts +2 -2
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/components/Card.svelte +3 -1
- package/dist/components/Card.svelte.d.ts +1 -0
- package/dist/components/dialog_overlay/DialogOverlay.svelte +9 -11
- package/dist/components/navigation_component/NavigationComponent.svelte +246 -239
- package/dist/components/navigation_component/NavigationComponent.svelte.d.ts +2 -1
- package/dist/components/navigation_component/NavigationControl.svelte +89 -89
- package/dist/components/pineapple/PineappleBaseLayout.svelte +4 -4
- package/package.json +3 -2
- package/src/lib/components/Card.svelte +4 -1
- package/src/lib/components/dialog_overlay/DialogOverlay.svelte +11 -12
- package/src/lib/components/navigation_component/NavigationComponent.svelte +150 -143
- package/src/lib/components/navigation_component/NavigationControl.svelte +60 -60
- package/src/lib/components/navigation_component/PageMeta.ts +205 -205
- package/src/lib/components/pineapple/PineappleBaseLayout.svelte +4 -4
- package/src/routes/(pineapple)/+layout.svelte +1 -1
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page1/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page1/meta.json +23 -23
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page2/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page2/meta.json +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page5/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page5/meta.json +6 -6
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page6/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page7/(test_layout)/page8/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page7/(test_layout)/page8/meta.json +6 -6
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page3/page7/+page.svelte +7 -7
- package/src/routes/(pineapple)/pineapple/(extra-pages)/page4/+page.svelte +6 -6
- package/src/routes/(pineapple)/pineapple/(pineapple)/+page.svelte +25 -29
- package/src/routes/(pineapple)/pineapple/{(extra-pages) → (pineapple)}/ImageMap.ts +5 -5
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
<script>import NavigationControl from "./NavigationControl.svelte";
|
|
2
2
|
import { Card, createGoToFunction } from "../..";
|
|
3
3
|
import { parsePageMeta } from "./PageMeta";
|
|
4
|
-
export let title = void 0;
|
|
5
4
|
export let fileList;
|
|
6
5
|
export let jsonList;
|
|
6
|
+
export let title = void 0;
|
|
7
7
|
export let imageMap = /* @__PURE__ */ new Map();
|
|
8
|
+
export let shouldAllowControl = true;
|
|
8
9
|
export let parentSubpath;
|
|
9
10
|
export let compareFn = void 0;
|
|
10
11
|
export let pageSize = 5;
|
|
@@ -12,242 +13,248 @@ export let currentIndex = 0;
|
|
|
12
13
|
const pageFlatList = parsePageMeta(fileList, jsonList, imageMap, compareFn);
|
|
13
14
|
$:
|
|
14
15
|
visiblePages = pageFlatList.slice(currentIndex * pageSize, currentIndex * pageSize + pageSize);
|
|
15
|
-
</script>
|
|
16
|
-
|
|
17
|
-
<div class="navigation-wrapper">
|
|
18
|
-
{#if (title)}
|
|
19
|
-
<Card>
|
|
20
|
-
<h1 slot="content" class="default-card navigation-title">
|
|
21
|
-
{title}
|
|
22
|
-
</h1>
|
|
23
|
-
</Card>
|
|
24
|
-
{/if}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
{
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
{
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
{
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
--
|
|
100
|
-
--tw-ring-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
--tw-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
--
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
--tw-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
--
|
|
162
|
-
--tw-ring-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
--
|
|
172
|
-
--tw-ring-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
--tw-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
--tw-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
--tw-bg-opacity
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<div class="navigation-wrapper">
|
|
19
|
+
{#if (title)}
|
|
20
|
+
<Card>
|
|
21
|
+
<h1 slot="content" class="default-card navigation-title">
|
|
22
|
+
{title}
|
|
23
|
+
</h1>
|
|
24
|
+
</Card>
|
|
25
|
+
{/if}
|
|
26
|
+
|
|
27
|
+
{#if shouldAllowControl}
|
|
28
|
+
<NavigationControl bind:currentIndex={currentIndex}
|
|
29
|
+
bind:contentLength={pageFlatList.length}
|
|
30
|
+
bind:pageSize={pageSize}></NavigationControl>
|
|
31
|
+
{/if}
|
|
32
|
+
|
|
33
|
+
<div class="navigation-component">
|
|
34
|
+
<!-- all the misc routes-->
|
|
35
|
+
{#each visiblePages as pageMeta}
|
|
36
|
+
{@const fullPath=`${parentSubpath}${pageMeta.relativeLink}`}
|
|
37
|
+
<button class="navigation-element"
|
|
38
|
+
title={fullPath}
|
|
39
|
+
on:click={createGoToFunction(fullPath)}>
|
|
40
|
+
{#if pageMeta.imageUrl}
|
|
41
|
+
<img src={pageMeta.imageUrl}
|
|
42
|
+
alt={pageMeta.imageAlt ?? "placeholder alt text please replace me or report me!"} />
|
|
43
|
+
{/if}
|
|
44
|
+
<section class="blurb-text">
|
|
45
|
+
<h2>{pageMeta.title}</h2>
|
|
46
|
+
<p>Published: {pageMeta.datePublished ?? "N/A"} | Last updated: {pageMeta.lastUpdated ?? "N/A"}</p>
|
|
47
|
+
<p>{pageMeta.description ?? ""}</p>
|
|
48
|
+
Tags:
|
|
49
|
+
{#if (pageMeta.tags && pageMeta.tags.length !== 0)}
|
|
50
|
+
{#each pageMeta.tags as tagValue}
|
|
51
|
+
<span class="badge variant-filled tag-container">{tagValue}</span>
|
|
52
|
+
{/each}
|
|
53
|
+
{:else}
|
|
54
|
+
None
|
|
55
|
+
{/if}
|
|
56
|
+
</section>
|
|
57
|
+
</button>
|
|
58
|
+
{/each}
|
|
59
|
+
|
|
60
|
+
{#if visiblePages.length === 0}
|
|
61
|
+
<Card>
|
|
62
|
+
<p class="default-card" slot="content">Sorry, no content was found</p>
|
|
63
|
+
</Card>
|
|
64
|
+
{/if}
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
{#if shouldAllowControl}
|
|
68
|
+
<NavigationControl bind:currentIndex={currentIndex}
|
|
69
|
+
bind:contentLength={pageFlatList.length}
|
|
70
|
+
bind:pageSize={pageSize}></NavigationControl>
|
|
71
|
+
{/if}
|
|
72
|
+
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
<style>
|
|
76
|
+
@media (max-width: 800px) {
|
|
77
|
+
img {
|
|
78
|
+
max-height: 20rem;
|
|
79
|
+
width: 100%;
|
|
80
|
+
flex-basis: 100%;
|
|
81
|
+
border-radius: var(--theme-rounded-container) var(--theme-rounded-container) 0 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.navigation-element {
|
|
85
|
+
flex-direction: column;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@media (min-width: 801px) {
|
|
90
|
+
.navigation-element {
|
|
91
|
+
flex-direction: row;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
img {
|
|
95
|
+
width: 20em;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.dark .navigation-element {
|
|
100
|
+
background-color: rgb(var(--color-surface-800));
|
|
101
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
102
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
103
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
104
|
+
--tw-ring-inset: inset;
|
|
105
|
+
--tw-ring-color: rgb(250 250 250 / 0.05);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.navigation-element:disabled {
|
|
109
|
+
cursor: not-allowed;
|
|
110
|
+
opacity: 0.5;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.navigation-element:disabled:hover {
|
|
114
|
+
--tw-brightness: brightness(1);
|
|
115
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.navigation-element:disabled:active {
|
|
119
|
+
--tw-scale-x: 1;
|
|
120
|
+
--tw-scale-y: 1;
|
|
121
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.navigation-element {
|
|
125
|
+
font-size: 1rem;
|
|
126
|
+
line-height: 1.5rem;
|
|
127
|
+
padding-left: 1.25rem;
|
|
128
|
+
padding-right: 1.25rem;
|
|
129
|
+
padding-top: 9px;
|
|
130
|
+
padding-bottom: 9px;
|
|
131
|
+
white-space: nowrap;
|
|
132
|
+
text-align: center;
|
|
133
|
+
display: inline-flex;
|
|
134
|
+
align-items: center;
|
|
135
|
+
justify-content: center;
|
|
136
|
+
transition-property: all;
|
|
137
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
138
|
+
transition-duration: 150ms;
|
|
139
|
+
border-radius: var(--theme-rounded-base);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.navigation-element > :not([hidden]) ~ :not([hidden]) {
|
|
143
|
+
--tw-space-x-reverse: 0;
|
|
144
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
145
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.navigation-element:hover {
|
|
149
|
+
--tw-brightness: brightness(1.15);
|
|
150
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.navigation-element:active {
|
|
154
|
+
--tw-scale-x: 95%;
|
|
155
|
+
--tw-scale-y: 95%;
|
|
156
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
157
|
+
--tw-brightness: brightness(.9);
|
|
158
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.navigation-element {
|
|
162
|
+
background-color: rgb(var(--color-surface-100));
|
|
163
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
164
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
165
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
166
|
+
--tw-ring-inset: inset;
|
|
167
|
+
--tw-ring-color: rgb(23 23 23 / 0.05);
|
|
168
|
+
border-radius: var(--theme-rounded-container);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.dark .navigation-element {
|
|
172
|
+
background-color: rgb(var(--color-surface-800));
|
|
173
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
174
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
175
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
176
|
+
--tw-ring-inset: inset;
|
|
177
|
+
--tw-ring-color: rgb(250 250 250 / 0.05);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
a.navigation-element {
|
|
181
|
+
transition-property: all;
|
|
182
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
183
|
+
transition-duration: 150ms;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
a.navigation-element:hover {
|
|
187
|
+
--tw-brightness: brightness(1.05);
|
|
188
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.navigation-element {
|
|
192
|
+
transition-property: all;
|
|
193
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
194
|
+
transition-duration: 150ms;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.navigation-element:hover {
|
|
198
|
+
--tw-scale-x: 101%;
|
|
199
|
+
--tw-scale-y: 101%;
|
|
200
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
201
|
+
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
202
|
+
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
203
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.navigation-element {
|
|
207
|
+
--tw-bg-opacity: 1;
|
|
208
|
+
background-color: rgb(var(--color-surface-100) / var(--tw-bg-opacity));
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
:is(.dark .navigation-element) {
|
|
212
|
+
--tw-bg-opacity: 1;
|
|
213
|
+
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.navigation-element {
|
|
217
|
+
display: flex;
|
|
218
|
+
/*flex-direction: row;*/
|
|
219
|
+
text-align: start;
|
|
220
|
+
align-items: flex-start;
|
|
221
|
+
padding: 0;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
img {
|
|
225
|
+
height: 20em;
|
|
226
|
+
-o-object-fit: cover;
|
|
227
|
+
object-fit: cover;
|
|
228
|
+
padding: var(--theme-border-base);
|
|
229
|
+
border-radius: var(--theme-rounded-container) 0 0 var(--theme-rounded-container);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.navigation-component {
|
|
233
|
+
display: flex;
|
|
234
|
+
flex-direction: column;
|
|
235
|
+
gap: 2em;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.navigation-title {
|
|
239
|
+
text-align: center;
|
|
240
|
+
max-width: initial;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.blurb-text {
|
|
244
|
+
padding: 2em;
|
|
245
|
+
flex-grow: 1;
|
|
246
|
+
white-space: initial;
|
|
247
|
+
min-width: 0;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.navigation-wrapper {
|
|
251
|
+
display: flex;
|
|
252
|
+
flex-direction: column;
|
|
253
|
+
max-width: 1000px;
|
|
254
|
+
width: 100%;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.tag-container {
|
|
258
|
+
margin: 0.25lh 0;
|
|
259
|
+
}
|
|
253
260
|
</style>
|
package/.svelte-kit/__package__/components/navigation_component/NavigationComponent.svelte.d.ts
CHANGED
|
@@ -2,10 +2,11 @@ import { SvelteComponent } from "svelte";
|
|
|
2
2
|
import { type ParsePageMetaCompareFn } from "./PageMeta";
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
5
|
-
title?: string | undefined;
|
|
6
5
|
fileList: Record<string, unknown>;
|
|
7
6
|
jsonList: Record<string, unknown>;
|
|
7
|
+
title?: string | undefined;
|
|
8
8
|
imageMap?: Map<string, string> | undefined;
|
|
9
|
+
shouldAllowControl?: boolean | undefined;
|
|
9
10
|
/**
|
|
10
11
|
* Should include a slash before and after the path
|
|
11
12
|
*/ parentSubpath: string;
|