@turnipxenon/pineapple 2.4.12 → 2.4.14
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/discord.xml +1 -1
- package/.idea/workspace.xml +139 -121
- package/.svelte-kit/__package__/app.postcss +28 -2
- package/.svelte-kit/__package__/assets/icons/close.svg +1 -0
- package/.svelte-kit/__package__/components/Card.svelte +28 -28
- package/.svelte-kit/__package__/components/CarouselElement.svelte +16 -16
- package/.svelte-kit/__package__/components/Chip.svelte +13 -12
- package/.svelte-kit/__package__/components/ElementVisbilityDetector.svelte +5 -5
- package/.svelte-kit/__package__/components/SocialSection.svelte +162 -159
- package/.svelte-kit/__package__/components/StickyElement.svelte +20 -20
- package/.svelte-kit/__package__/components/ToggleableContent.svelte +8 -8
- package/.svelte-kit/__package__/components/layouts/SeaweedBaseLayout.svelte +1 -8
- package/.svelte-kit/__package__/components/layouts/SeaweedBaseLayout.svelte.d.ts +1 -0
- package/.svelte-kit/__package__/components/{layouts → pineapple}/PineappleBaseLayout.svelte +65 -20
- package/.svelte-kit/__package__/components/pineapple/overlay_manager/OverlayManager.d.ts +0 -0
- package/.svelte-kit/__package__/components/pineapple/overlay_manager/OverlayManager.js +1 -0
- package/.svelte-kit/__package__/components/pineapple/toast/DefaultToastBody.d.ts +8 -0
- package/.svelte-kit/__package__/components/pineapple/toast/DefaultToastBody.js +1 -0
- package/.svelte-kit/__package__/components/pineapple/toast/DefaultToastBody.svelte +48 -0
- package/.svelte-kit/__package__/components/pineapple/toast/DefaultToastBody.svelte.d.ts +20 -0
- package/.svelte-kit/__package__/components/pineapple/toast/Toast.d.ts +27 -0
- package/.svelte-kit/__package__/components/pineapple/toast/Toast.js +37 -0
- package/.svelte-kit/__package__/components/pineapple/toast/Toast.svelte +89 -0
- package/.svelte-kit/__package__/components/pineapple/toast/Toast.svelte.d.ts +14 -0
- package/.svelte-kit/__package__/components/pineapple/toast/custom-toast/TestCustomToast.d.ts +5 -0
- package/.svelte-kit/__package__/components/pineapple/toast/custom-toast/TestCustomToast.js +1 -0
- package/.svelte-kit/__package__/components/pineapple/toast/custom-toast/TestCustomToast.svelte +1 -0
- package/.svelte-kit/__package__/components/pineapple/toast/custom-toast/TestCustomToast.svelte.d.ts +23 -0
- package/.svelte-kit/__package__/index.d.ts +1 -1
- package/.svelte-kit/__package__/index.js +1 -1
- package/.svelte-kit/__package__/postcss.d.ts +3 -3
- package/.svelte-kit/__package__/styles/global.css +1 -1
- package/.svelte-kit/__package__/theme.postcss +2 -1
- package/.svelte-kit/ambient.d.ts +4 -0
- package/.svelte-kit/generated/client/app.js +6 -5
- package/.svelte-kit/generated/client/nodes/2.js +1 -1
- package/.svelte-kit/generated/client/nodes/3.js +1 -1
- package/.svelte-kit/generated/client/nodes/4.js +1 -1
- package/.svelte-kit/generated/client/nodes/5.js +1 -1
- package/.svelte-kit/generated/client/nodes/6.js +1 -1
- package/.svelte-kit/generated/client/nodes/7.js +1 -0
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/.svelte-kit/types/route_meta_data.json +6 -4
- package/.svelte-kit/types/src/routes/$types.d.ts +1 -4
- package/.svelte-kit/types/src/routes/{personal → (pineapple)}/$types.d.ts +2 -2
- package/.svelte-kit/types/src/routes/{portfolio/actual → (pineapple)/pineapple}/$types.d.ts +2 -2
- package/.svelte-kit/types/src/routes/(seaweed)/$types.d.ts +19 -0
- package/.svelte-kit/types/src/routes/{portfolio → (seaweed)/portfolio}/$types.d.ts +3 -3
- package/.svelte-kit/types/src/routes/(seaweed)/portfolio/actual/$types.d.ts +17 -0
- package/.svelte-kit/types/src/routes/{portfolio → (seaweed)/portfolio}/proxy+page.server.ts +1 -1
- package/README.md +8 -18
- package/dist/app.postcss +28 -2
- package/dist/assets/icons/close.svg +1 -0
- package/dist/components/Card.svelte +28 -28
- package/dist/components/CarouselElement.svelte +16 -16
- package/dist/components/Chip.svelte +13 -12
- package/dist/components/ElementVisbilityDetector.svelte +5 -5
- package/dist/components/SocialSection.svelte +162 -159
- package/dist/components/StickyElement.svelte +20 -20
- package/dist/components/ToggleableContent.svelte +8 -8
- package/dist/components/layouts/SeaweedBaseLayout.svelte +1 -8
- package/dist/components/layouts/SeaweedBaseLayout.svelte.d.ts +1 -0
- package/dist/components/{layouts → pineapple}/PineappleBaseLayout.svelte +65 -20
- package/dist/components/pineapple/overlay_manager/OverlayManager.d.ts +0 -0
- package/dist/components/pineapple/overlay_manager/OverlayManager.js +1 -0
- package/dist/components/pineapple/toast/DefaultToastBody.d.ts +8 -0
- package/dist/components/pineapple/toast/DefaultToastBody.js +1 -0
- package/dist/components/pineapple/toast/DefaultToastBody.svelte +48 -0
- package/dist/components/pineapple/toast/DefaultToastBody.svelte.d.ts +20 -0
- package/dist/components/pineapple/toast/Toast.d.ts +27 -0
- package/dist/components/pineapple/toast/Toast.js +37 -0
- package/dist/components/pineapple/toast/Toast.svelte +89 -0
- package/dist/components/pineapple/toast/Toast.svelte.d.ts +14 -0
- package/dist/components/pineapple/toast/custom-toast/TestCustomToast.d.ts +5 -0
- package/dist/components/pineapple/toast/custom-toast/TestCustomToast.js +1 -0
- package/dist/components/pineapple/toast/custom-toast/TestCustomToast.svelte +1 -0
- package/dist/components/pineapple/toast/custom-toast/TestCustomToast.svelte.d.ts +23 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/postcss.d.ts +3 -3
- package/dist/styles/global.css +1 -1
- package/dist/theme.postcss +2 -1
- package/docs/OverlaySpec.md +23 -0
- package/docs/pull_request_template.md +34 -0
- package/package.json +1 -1
- package/src/lib/app.postcss +28 -2
- package/src/lib/assets/icons/close.svg +1 -0
- package/src/lib/components/Card.svelte +32 -32
- package/src/lib/components/CarouselElement.svelte +22 -22
- package/src/lib/components/Chip.svelte +13 -12
- package/src/lib/components/ElementVisbilityDetector.svelte +22 -22
- package/src/lib/components/OnElementVisbilityChanged.ts +1 -1
- package/src/lib/components/SocialSection.svelte +95 -92
- package/src/lib/components/StickyElement.svelte +39 -39
- package/src/lib/components/ToggleableContent.svelte +85 -85
- package/src/lib/components/ToggleableContentType.ts +4 -4
- package/src/lib/components/layouts/LayoutConstants.ts +1 -1
- package/src/lib/components/layouts/SeaweedBaseLayout.svelte +1 -8
- package/src/lib/components/pineapple/PineappleBaseLayout.svelte +207 -0
- package/src/lib/components/pineapple/overlay_manager/OverlayManager.ts +0 -0
- package/src/lib/components/pineapple/toast/DefaultToastBody.svelte +43 -0
- package/src/lib/components/pineapple/toast/DefaultToastBody.ts +10 -0
- package/src/lib/components/pineapple/toast/Toast.svelte +113 -0
- package/src/lib/components/pineapple/toast/Toast.ts +57 -0
- package/src/lib/components/pineapple/toast/custom-toast/TestCustomToast.svelte +1 -0
- package/src/lib/components/pineapple/toast/custom-toast/TestCustomToast.ts +6 -0
- package/src/lib/consts.ts +2 -2
- package/src/lib/index.ts +1 -1
- package/src/lib/postcss.d.ts +3 -3
- package/src/lib/styles/global.css +1 -1
- package/src/lib/theme.postcss +2 -1
- package/src/lib/util/create_go_to_function.ts +5 -5
- package/src/routes/{personal → (pineapple)}/+layout.svelte +1 -1
- package/src/routes/(pineapple)/+page.svelte +36 -0
- package/src/routes/(pineapple)/pineapple/+page.svelte +44 -0
- package/src/routes/(seaweed)/+layout.svelte +10 -0
- package/src/routes/{portfolio → (seaweed)/portfolio}/+page.server.ts +1 -1
- package/src/routes/{portfolio → (seaweed)/portfolio}/+page.svelte +2 -2
- package/src/routes/{portfolio → (seaweed)/portfolio}/.gitignore +1 -1
- package/src/routes/{portfolio → (seaweed)/portfolio}/actual/+page.svelte +1 -1
- package/src/routes/+layout.svelte +0 -7
- package/static/robots.txt +5 -5
- package/src/lib/components/layouts/PineappleBaseLayout.svelte +0 -161
- package/src/routes/+page.svelte +0 -38
- package/src/routes/personal/+page.svelte +0 -37
- /package/.svelte-kit/__package__/components/{layouts → pineapple}/PineappleBaseLayout.svelte.d.ts +0 -0
- /package/dist/components/{layouts → pineapple}/PineappleBaseLayout.svelte.d.ts +0 -0
package/.idea/discord.xml
CHANGED
package/.idea/workspace.xml
CHANGED
|
@@ -4,9 +4,11 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="
|
|
8
|
-
<change
|
|
9
|
-
<change
|
|
7
|
+
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Add default PR template">
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/docs/OverlaySpec.md" afterDir="false" />
|
|
9
|
+
<change afterPath="$PROJECT_DIR$/src/lib/components/pineapple/overlay_manager/OverlayManager.ts" afterDir="false" />
|
|
10
|
+
<change beforePath="$PROJECT_DIR$/src/lib/components/Chip.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/Chip.svelte" afterDir="false" />
|
|
11
|
+
<change beforePath="$PROJECT_DIR$/src/lib/components/pineapple/toast/Toast.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/pineapple/toast/Toast.svelte" afterDir="false" />
|
|
10
12
|
</list>
|
|
11
13
|
<option name="SHOW_DIALOG" value="false" />
|
|
12
14
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -34,6 +36,8 @@
|
|
|
34
36
|
<option value="Card" />
|
|
35
37
|
<option value="Chip" />
|
|
36
38
|
<option value="ToggleableContent" />
|
|
39
|
+
<option value="Toast" />
|
|
40
|
+
<option value="TestCard" />
|
|
37
41
|
<option value="TypeScript File" />
|
|
38
42
|
</list>
|
|
39
43
|
</option>
|
|
@@ -41,11 +45,11 @@
|
|
|
41
45
|
<component name="Git.Settings">
|
|
42
46
|
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
43
47
|
<map>
|
|
44
|
-
<entry key="$PROJECT_DIR$" value="
|
|
48
|
+
<entry key="$PROJECT_DIR$" value="main" />
|
|
45
49
|
</map>
|
|
46
50
|
</option>
|
|
47
51
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
48
|
-
<option name="RESET_MODE" value="
|
|
52
|
+
<option name="RESET_MODE" value="HARD" />
|
|
49
53
|
<option name="ROOT_SYNC" value="DONT_SYNC" />
|
|
50
54
|
</component>
|
|
51
55
|
<component name="JsbtTreeLayoutManager">
|
|
@@ -76,9 +80,9 @@
|
|
|
76
80
|
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
|
77
81
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
78
82
|
"WebServerToolWindowFactoryState": "false",
|
|
79
|
-
"git-widget-placeholder": "
|
|
83
|
+
"git-widget-placeholder": "turnip/fix",
|
|
80
84
|
"ignore.virus.scanning.warn.message": "true",
|
|
81
|
-
"last_opened_file_path": "C:/Users/Pumpkin/Projects/Web/
|
|
85
|
+
"last_opened_file_path": "C:/Users/Pumpkin/Projects/Web/pineapple/src/lib/components/pineapple/toast/custom-toast",
|
|
82
86
|
"node.js.detected.package.eslint": "true",
|
|
83
87
|
"node.js.detected.package.tslint": "true",
|
|
84
88
|
"node.js.selected.package.eslint": "(autodetect)",
|
|
@@ -98,18 +102,18 @@
|
|
|
98
102
|
}]]></component>
|
|
99
103
|
<component name="RecentsManager">
|
|
100
104
|
<key name="CopyFile.RECENT_KEYS">
|
|
105
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components\pineapple\toast\custom-toast" />
|
|
106
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components\pineapple\toast" />
|
|
107
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\routes\(pineapple)" />
|
|
108
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\routes\(seaweed)" />
|
|
101
109
|
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\routes\portfolio" />
|
|
102
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple" />
|
|
103
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\speenus" />
|
|
104
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\assets\icons" />
|
|
105
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components" />
|
|
106
110
|
</key>
|
|
107
111
|
<key name="MoveFile.RECENT_KEYS">
|
|
108
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components" />
|
|
109
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\
|
|
110
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\
|
|
111
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\
|
|
112
|
-
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\
|
|
112
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components\pineapple\toast\custom-toast" />
|
|
113
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components\pineapple\toast" />
|
|
114
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\lib\components\pineapple" />
|
|
115
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\routes\(pineapple)" />
|
|
116
|
+
<recent name="C:\Users\Pumpkin\Projects\Web\pineapple\src\routes\(seaweed)" />
|
|
113
117
|
</key>
|
|
114
118
|
</component>
|
|
115
119
|
<component name="RunManager" selected="npm.dev --open">
|
|
@@ -135,13 +139,15 @@
|
|
|
135
139
|
<method v="2" />
|
|
136
140
|
</configuration>
|
|
137
141
|
<list>
|
|
138
|
-
<item itemvalue="npm.dev-offline" />
|
|
139
142
|
<item itemvalue="npm.dev --open" />
|
|
143
|
+
<item itemvalue="npm.dev-offline" />
|
|
140
144
|
</list>
|
|
141
145
|
<recent_temporary>
|
|
142
146
|
<list>
|
|
143
147
|
<item itemvalue="npm.dev --open" />
|
|
144
148
|
<item itemvalue="npm.dev-offline" />
|
|
149
|
+
<item itemvalue="npm.dev --open" />
|
|
150
|
+
<item itemvalue="npm.dev-offline" />
|
|
145
151
|
</list>
|
|
146
152
|
</recent_temporary>
|
|
147
153
|
</component>
|
|
@@ -183,95 +189,19 @@
|
|
|
183
189
|
<workItem from="1710274381105" duration="206000" />
|
|
184
190
|
<workItem from="1710274942044" duration="14000" />
|
|
185
191
|
<workItem from="1710275377359" duration="5036000" />
|
|
186
|
-
<workItem from="1710289549437" duration="
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
<
|
|
190
|
-
<
|
|
191
|
-
<
|
|
192
|
-
<
|
|
193
|
-
<
|
|
194
|
-
<
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
<
|
|
198
|
-
<
|
|
199
|
-
<option name="number" value="00013" />
|
|
200
|
-
<option name="presentableId" value="LOCAL-00013" />
|
|
201
|
-
<option name="project" value="LOCAL" />
|
|
202
|
-
<updated>1709796123145</updated>
|
|
203
|
-
</task>
|
|
204
|
-
<task id="LOCAL-00014" summary="Remove hide-scrollbar to prevent build from breaking">
|
|
205
|
-
<option name="closed" value="true" />
|
|
206
|
-
<created>1709796535867</created>
|
|
207
|
-
<option name="number" value="00014" />
|
|
208
|
-
<option name="presentableId" value="LOCAL-00014" />
|
|
209
|
-
<option name="project" value="LOCAL" />
|
|
210
|
-
<updated>1709796535867</updated>
|
|
211
|
-
</task>
|
|
212
|
-
<task id="LOCAL-00015" summary="Put prepare properly">
|
|
213
|
-
<option name="closed" value="true" />
|
|
214
|
-
<created>1709798418843</created>
|
|
215
|
-
<option name="number" value="00015" />
|
|
216
|
-
<option name="presentableId" value="LOCAL-00015" />
|
|
217
|
-
<option name="project" value="LOCAL" />
|
|
218
|
-
<updated>1709798418843</updated>
|
|
219
|
-
</task>
|
|
220
|
-
<task id="LOCAL-00016" summary="Restrict mutex to one Only one yarn instance should run to prevent corrupting other files">
|
|
221
|
-
<option name="closed" value="true" />
|
|
222
|
-
<created>1709799004321</created>
|
|
223
|
-
<option name="number" value="00016" />
|
|
224
|
-
<option name="presentableId" value="LOCAL-00016" />
|
|
225
|
-
<option name="project" value="LOCAL" />
|
|
226
|
-
<updated>1709799004321</updated>
|
|
227
|
-
</task>
|
|
228
|
-
<task id="LOCAL-00017" summary="Restrict mutex to one Only one yarn instance should run to prevent corrupting other files">
|
|
229
|
-
<option name="closed" value="true" />
|
|
230
|
-
<created>1709799061435</created>
|
|
231
|
-
<option name="number" value="00017" />
|
|
232
|
-
<option name="presentableId" value="LOCAL-00017" />
|
|
233
|
-
<option name="project" value="LOCAL" />
|
|
234
|
-
<updated>1709799061435</updated>
|
|
235
|
-
</task>
|
|
236
|
-
<task id="LOCAL-00018" summary="Remove prepare script again">
|
|
237
|
-
<option name="closed" value="true" />
|
|
238
|
-
<created>1709799419674</created>
|
|
239
|
-
<option name="number" value="00018" />
|
|
240
|
-
<option name="presentableId" value="LOCAL-00018" />
|
|
241
|
-
<option name="project" value="LOCAL" />
|
|
242
|
-
<updated>1709799419674</updated>
|
|
243
|
-
</task>
|
|
244
|
-
<task id="LOCAL-00019" summary="Fix format">
|
|
245
|
-
<option name="closed" value="true" />
|
|
246
|
-
<created>1709799503506</created>
|
|
247
|
-
<option name="number" value="00019" />
|
|
248
|
-
<option name="presentableId" value="LOCAL-00019" />
|
|
249
|
-
<option name="project" value="LOCAL" />
|
|
250
|
-
<updated>1709799503506</updated>
|
|
251
|
-
</task>
|
|
252
|
-
<task id="LOCAL-00020" summary="Remove yarnrc mutex">
|
|
253
|
-
<option name="closed" value="true" />
|
|
254
|
-
<created>1709799705567</created>
|
|
255
|
-
<option name="number" value="00020" />
|
|
256
|
-
<option name="presentableId" value="LOCAL-00020" />
|
|
257
|
-
<option name="project" value="LOCAL" />
|
|
258
|
-
<updated>1709799705567</updated>
|
|
259
|
-
</task>
|
|
260
|
-
<task id="LOCAL-00021" summary="Update package.json for publishing">
|
|
261
|
-
<option name="closed" value="true" />
|
|
262
|
-
<created>1709800364650</created>
|
|
263
|
-
<option name="number" value="00021" />
|
|
264
|
-
<option name="presentableId" value="LOCAL-00021" />
|
|
265
|
-
<option name="project" value="LOCAL" />
|
|
266
|
-
<updated>1709800364650</updated>
|
|
267
|
-
</task>
|
|
268
|
-
<task id="LOCAL-00022" summary="Update layout for portfolio">
|
|
269
|
-
<option name="closed" value="true" />
|
|
270
|
-
<created>1709831870879</created>
|
|
271
|
-
<option name="number" value="00022" />
|
|
272
|
-
<option name="presentableId" value="LOCAL-00022" />
|
|
273
|
-
<option name="project" value="LOCAL" />
|
|
274
|
-
<updated>1709831870879</updated>
|
|
192
|
+
<workItem from="1710289549437" duration="12580000" />
|
|
193
|
+
<workItem from="1710373069951" duration="3591000" />
|
|
194
|
+
<workItem from="1710403138174" duration="704000" />
|
|
195
|
+
<workItem from="1710403890552" duration="136000" />
|
|
196
|
+
<workItem from="1710452675953" duration="2003000" />
|
|
197
|
+
<workItem from="1710469859511" duration="5000" />
|
|
198
|
+
<workItem from="1710471362988" duration="1660000" />
|
|
199
|
+
<workItem from="1710540704044" duration="3221000" />
|
|
200
|
+
<workItem from="1710553558444" duration="11978000" />
|
|
201
|
+
<workItem from="1710565588306" duration="339000" />
|
|
202
|
+
<workItem from="1710566188907" duration="950000" />
|
|
203
|
+
<workItem from="1710623596666" duration="2298000" />
|
|
204
|
+
<workItem from="1710645881933" duration="7972000" />
|
|
275
205
|
</task>
|
|
276
206
|
<task id="LOCAL-00023" summary="Implement throwoway prototype for game showcase carousel">
|
|
277
207
|
<option name="closed" value="true" />
|
|
@@ -577,7 +507,95 @@
|
|
|
577
507
|
<option name="project" value="LOCAL" />
|
|
578
508
|
<updated>1710305826429</updated>
|
|
579
509
|
</task>
|
|
580
|
-
<
|
|
510
|
+
<task id="LOCAL-00061" summary="Reorganize directories to make Pineapple as default layout but still overrideable by Seaweed">
|
|
511
|
+
<option name="closed" value="true" />
|
|
512
|
+
<created>1710373523715</created>
|
|
513
|
+
<option name="number" value="00061" />
|
|
514
|
+
<option name="presentableId" value="LOCAL-00061" />
|
|
515
|
+
<option name="project" value="LOCAL" />
|
|
516
|
+
<updated>1710373523715</updated>
|
|
517
|
+
</task>
|
|
518
|
+
<task id="LOCAL-00062" summary="Improve text contrast in dark mode">
|
|
519
|
+
<option name="closed" value="true" />
|
|
520
|
+
<created>1710376338512</created>
|
|
521
|
+
<option name="number" value="00062" />
|
|
522
|
+
<option name="presentableId" value="LOCAL-00062" />
|
|
523
|
+
<option name="project" value="LOCAL" />
|
|
524
|
+
<updated>1710376338512</updated>
|
|
525
|
+
</task>
|
|
526
|
+
<task id="LOCAL-00063" summary="Add animation to dynamically added button in social section">
|
|
527
|
+
<option name="closed" value="true" />
|
|
528
|
+
<created>1710403640565</created>
|
|
529
|
+
<option name="number" value="00063" />
|
|
530
|
+
<option name="presentableId" value="LOCAL-00063" />
|
|
531
|
+
<option name="project" value="LOCAL" />
|
|
532
|
+
<updated>1710403640566</updated>
|
|
533
|
+
</task>
|
|
534
|
+
<task id="LOCAL-00064" summary="Implement normal state for PineappleBaseLayout">
|
|
535
|
+
<option name="closed" value="true" />
|
|
536
|
+
<created>1710473020513</created>
|
|
537
|
+
<option name="number" value="00064" />
|
|
538
|
+
<option name="presentableId" value="LOCAL-00064" />
|
|
539
|
+
<option name="project" value="LOCAL" />
|
|
540
|
+
<updated>1710473020514</updated>
|
|
541
|
+
</task>
|
|
542
|
+
<task id="LOCAL-00065" summary="Add custom toast">
|
|
543
|
+
<option name="closed" value="true" />
|
|
544
|
+
<created>1710560664163</created>
|
|
545
|
+
<option name="number" value="00065" />
|
|
546
|
+
<option name="presentableId" value="LOCAL-00065" />
|
|
547
|
+
<option name="project" value="LOCAL" />
|
|
548
|
+
<updated>1710560664164</updated>
|
|
549
|
+
</task>
|
|
550
|
+
<task id="LOCAL-00066" summary="Add simple text toast">
|
|
551
|
+
<option name="closed" value="true" />
|
|
552
|
+
<created>1710564041434</created>
|
|
553
|
+
<option name="number" value="00066" />
|
|
554
|
+
<option name="presentableId" value="LOCAL-00066" />
|
|
555
|
+
<option name="project" value="LOCAL" />
|
|
556
|
+
<updated>1710564041434</updated>
|
|
557
|
+
</task>
|
|
558
|
+
<task id="LOCAL-00067" summary="Enforce stricter typing for Toast components">
|
|
559
|
+
<option name="closed" value="true" />
|
|
560
|
+
<created>1710565506639</created>
|
|
561
|
+
<option name="number" value="00067" />
|
|
562
|
+
<option name="presentableId" value="LOCAL-00067" />
|
|
563
|
+
<option name="project" value="LOCAL" />
|
|
564
|
+
<updated>1710565506640</updated>
|
|
565
|
+
</task>
|
|
566
|
+
<task id="LOCAL-00068" summary="Add dismissable toast">
|
|
567
|
+
<option name="closed" value="true" />
|
|
568
|
+
<created>1710648639268</created>
|
|
569
|
+
<option name="number" value="00068" />
|
|
570
|
+
<option name="presentableId" value="LOCAL-00068" />
|
|
571
|
+
<option name="project" value="LOCAL" />
|
|
572
|
+
<updated>1710648639269</updated>
|
|
573
|
+
</task>
|
|
574
|
+
<task id="LOCAL-00069" summary="Adjust default toast body styling and add shadow to toast">
|
|
575
|
+
<option name="closed" value="true" />
|
|
576
|
+
<created>1710650031611</created>
|
|
577
|
+
<option name="number" value="00069" />
|
|
578
|
+
<option name="presentableId" value="LOCAL-00069" />
|
|
579
|
+
<option name="project" value="LOCAL" />
|
|
580
|
+
<updated>1710650031611</updated>
|
|
581
|
+
</task>
|
|
582
|
+
<task id="LOCAL-00070" summary="Clean up todos">
|
|
583
|
+
<option name="closed" value="true" />
|
|
584
|
+
<created>1710651196828</created>
|
|
585
|
+
<option name="number" value="00070" />
|
|
586
|
+
<option name="presentableId" value="LOCAL-00070" />
|
|
587
|
+
<option name="project" value="LOCAL" />
|
|
588
|
+
<updated>1710651196829</updated>
|
|
589
|
+
</task>
|
|
590
|
+
<task id="LOCAL-00071" summary="Add default PR template">
|
|
591
|
+
<option name="closed" value="true" />
|
|
592
|
+
<created>1710651695177</created>
|
|
593
|
+
<option name="number" value="00071" />
|
|
594
|
+
<option name="presentableId" value="LOCAL-00071" />
|
|
595
|
+
<option name="project" value="LOCAL" />
|
|
596
|
+
<updated>1710651695177</updated>
|
|
597
|
+
</task>
|
|
598
|
+
<option name="localTasksCounter" value="72" />
|
|
581
599
|
<servers />
|
|
582
600
|
</component>
|
|
583
601
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -615,7 +633,7 @@
|
|
|
615
633
|
<entry key="branch">
|
|
616
634
|
<value>
|
|
617
635
|
<list>
|
|
618
|
-
<option value="
|
|
636
|
+
<option value="main" />
|
|
619
637
|
</list>
|
|
620
638
|
</value>
|
|
621
639
|
</entry>
|
|
@@ -635,18 +653,6 @@
|
|
|
635
653
|
</option>
|
|
636
654
|
</component>
|
|
637
655
|
<component name="VcsManagerConfiguration">
|
|
638
|
-
<MESSAGE value="Fix accordion and cropped object positioning" />
|
|
639
|
-
<MESSAGE value="Fix accordion styling and cropped object positioning" />
|
|
640
|
-
<MESSAGE value="Adjust css for mobile" />
|
|
641
|
-
<MESSAGE value="Add chips and query" />
|
|
642
|
-
<MESSAGE value="Turn the portfolio site into a template" />
|
|
643
|
-
<MESSAGE value="Add content replacer v1" />
|
|
644
|
-
<MESSAGE value="Testing toggleable content" />
|
|
645
|
-
<MESSAGE value="switch up image and videos too" />
|
|
646
|
-
<MESSAGE value="Solve videos not dynamically loading" />
|
|
647
|
-
<MESSAGE value="Fix unnecessary iframe requests" />
|
|
648
|
-
<MESSAGE value="Remove unnecessary iframe requests" />
|
|
649
|
-
<MESSAGE value="Extract head elements out of template component" />
|
|
650
656
|
<MESSAGE value="Fix path for Seaweed" />
|
|
651
657
|
<MESSAGE value="Move from dist to lib for package path" />
|
|
652
658
|
<MESSAGE value="Add missing npm run package to allow dist generation" />
|
|
@@ -660,6 +666,18 @@
|
|
|
660
666
|
<MESSAGE value="Change lib to pkg to prevent the references from breaking from downstream apps" />
|
|
661
667
|
<MESSAGE value="Add data-nosnippet" />
|
|
662
668
|
<MESSAGE value="Fix wrong link in migrante" />
|
|
663
|
-
<
|
|
669
|
+
<MESSAGE value="Reorganize directories to make Pineapple as default layout but still overrideable by Seaweed" />
|
|
670
|
+
<MESSAGE value="Improve text contrast" />
|
|
671
|
+
<MESSAGE value="Improve text contrast in dark mode" />
|
|
672
|
+
<MESSAGE value="Add animation to dynamically added button in social section" />
|
|
673
|
+
<MESSAGE value="Implement normal state for PineappleBaseLayout" />
|
|
674
|
+
<MESSAGE value="Add custom toast" />
|
|
675
|
+
<MESSAGE value="Add simple text toast and toast queue" />
|
|
676
|
+
<MESSAGE value="Enforce stricter typing for Toast components" />
|
|
677
|
+
<MESSAGE value="Add dismissable toast" />
|
|
678
|
+
<MESSAGE value="Adjust default toast body styling and add shadow to toast" />
|
|
679
|
+
<MESSAGE value="Clean up todos" />
|
|
680
|
+
<MESSAGE value="Add default PR template" />
|
|
681
|
+
<option name="LAST_COMMIT_MESSAGE" value="Add default PR template" />
|
|
664
682
|
</component>
|
|
665
683
|
</project>
|
|
@@ -41,11 +41,11 @@ html, body {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/* todo: add some hues to the icon that should be in sync with primary and make them not pure darkness */
|
|
44
|
-
.turnip-button > img {
|
|
44
|
+
.turnip-button > img, .img-icon {
|
|
45
45
|
filter: grayscale(100%) brightness(0%) invert(25%);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.dark .turnip-button > img {
|
|
48
|
+
.dark .turnip-button > img, .dark .img-icon {
|
|
49
49
|
filter: grayscale(100%) brightness(0%) invert(100%);
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -164,4 +164,30 @@ a:active {
|
|
|
164
164
|
.accordion-item {
|
|
165
165
|
@apply variant-filled-primary rounded-md;
|
|
166
166
|
}
|
|
167
|
+
|
|
167
168
|
/* endregion Accordion css for handling missing styles in package */
|
|
169
|
+
|
|
170
|
+
:root {
|
|
171
|
+
--shadow-color: rgba(91, 79, 54, 0.5);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* todo: adjust shadow for each component + change depending on dark mode or not */
|
|
175
|
+
.fab, #shell-header {
|
|
176
|
+
box-shadow: 3px 3px 3px var(--shadow-color);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
#toast-progress {
|
|
180
|
+
position: relative;
|
|
181
|
+
top: 5px;
|
|
182
|
+
left: 6px;
|
|
183
|
+
width: calc(100% - 12px);
|
|
184
|
+
border-radius: 8px;
|
|
185
|
+
background: transparent;
|
|
186
|
+
height: 10px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
#toast-progress::-moz-progress-bar {
|
|
190
|
+
/*background-color: red;*/
|
|
191
|
+
background: rgba(var(--color-secondary-500));
|
|
192
|
+
}
|
|
193
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script>export let margin = "0";
|
|
2
|
-
export let marginBottom = "
|
|
2
|
+
export let marginBottom = "2lh";
|
|
3
3
|
export let overrideStyle = "";
|
|
4
4
|
export let includeDataNoSnippet = true;
|
|
5
5
|
const style = `
|
|
@@ -7,30 +7,30 @@ const style = `
|
|
|
7
7
|
--turnip-card-margin-bottom: ${marginBottom};
|
|
8
8
|
${overrideStyle};
|
|
9
9
|
`;
|
|
10
|
-
</script>
|
|
11
|
-
|
|
12
|
-
{#if (includeDataNoSnippet)}
|
|
13
|
-
<div class="card turnip-card" style={style} data-no-snippet>
|
|
14
|
-
<slot name="content" class="card" />
|
|
15
|
-
</div>
|
|
16
|
-
{:else }
|
|
17
|
-
<div class="card turnip-card" style={style}>
|
|
18
|
-
<slot name="content" class="card" />
|
|
19
|
-
</div>
|
|
20
|
-
{/if}
|
|
21
|
-
|
|
22
|
-
<style>
|
|
23
|
-
.turnip-card {
|
|
24
|
-
--tw-bg-opacity: 1;
|
|
25
|
-
background-color: rgb(var(--color-surface-100) / var(--tw-bg-opacity));
|
|
26
|
-
}
|
|
27
|
-
:is(.dark .turnip-card) {
|
|
28
|
-
--tw-bg-opacity: 1;
|
|
29
|
-
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
30
|
-
}
|
|
31
|
-
.turnip-card {
|
|
32
|
-
margin: var(--turnip-card-margin);
|
|
33
|
-
margin-bottom: var(--turnip-card-margin-bottom);
|
|
34
|
-
border-radius: var(--theme-rounded-container);
|
|
35
|
-
}
|
|
36
|
-
</style>
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
{#if (includeDataNoSnippet)}
|
|
13
|
+
<div class="card turnip-card" style={style} data-no-snippet>
|
|
14
|
+
<slot name="content" class="card" />
|
|
15
|
+
</div>
|
|
16
|
+
{:else }
|
|
17
|
+
<div class="card turnip-card" style={style}>
|
|
18
|
+
<slot name="content" class="card" />
|
|
19
|
+
</div>
|
|
20
|
+
{/if}
|
|
21
|
+
|
|
22
|
+
<style>
|
|
23
|
+
.turnip-card {
|
|
24
|
+
--tw-bg-opacity: 1;
|
|
25
|
+
background-color: rgb(var(--color-surface-100) / var(--tw-bg-opacity));
|
|
26
|
+
}
|
|
27
|
+
:is(.dark .turnip-card) {
|
|
28
|
+
--tw-bg-opacity: 1;
|
|
29
|
+
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
30
|
+
}
|
|
31
|
+
.turnip-card {
|
|
32
|
+
margin: var(--turnip-card-margin);
|
|
33
|
+
margin-bottom: var(--turnip-card-margin-bottom);
|
|
34
|
+
border-radius: var(--theme-rounded-container);
|
|
35
|
+
}
|
|
36
|
+
</style>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
<script>export let activeGameIndex;
|
|
2
2
|
export let selfIndex;
|
|
3
3
|
import { fly, slide, scale } from "svelte/transition";
|
|
4
|
-
</script>
|
|
5
|
-
|
|
6
|
-
{#if (activeGameIndex === selfIndex)}
|
|
7
|
-
<!--todo: make section consistent size for all-->
|
|
8
|
-
<section class="game-showcase"
|
|
9
|
-
in:fly={{x: '100%'}} out:fly={{x: '-100%'}}>
|
|
10
|
-
<slot/>
|
|
11
|
-
</section>
|
|
12
|
-
{/if}
|
|
13
|
-
|
|
14
|
-
<style>
|
|
15
|
-
.game-showcase {
|
|
16
|
-
scroll-snap-align: center;
|
|
17
|
-
border-radius: var(--theme-rounded-container);
|
|
18
|
-
margin: auto;
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
{#if (activeGameIndex === selfIndex)}
|
|
7
|
+
<!--todo: make section consistent size for all-->
|
|
8
|
+
<section class="game-showcase"
|
|
9
|
+
in:fly={{x: '100%'}} out:fly={{x: '-100%'}}>
|
|
10
|
+
<slot/>
|
|
11
|
+
</section>
|
|
12
|
+
{/if}
|
|
13
|
+
|
|
14
|
+
<style>
|
|
15
|
+
.game-showcase {
|
|
16
|
+
scroll-snap-align: center;
|
|
17
|
+
border-radius: var(--theme-rounded-container);
|
|
18
|
+
margin: auto;
|
|
19
19
|
width: 100%
|
|
20
|
-
}
|
|
20
|
+
}
|
|
21
21
|
</style>
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
<span class="chip variant-filled-tertiary">
|
|
2
|
-
<slot />
|
|
3
|
-
</span>
|
|
4
|
-
|
|
5
|
-
<style>
|
|
6
|
-
.chip {
|
|
7
|
-
border-radius: 1em;
|
|
8
|
-
margin: 0.25em;
|
|
9
|
-
font-weight: bold;
|
|
10
|
-
pointer-events: none;
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
<span class="chip variant-filled-tertiary">
|
|
2
|
+
<slot />
|
|
3
|
+
</span>
|
|
4
|
+
|
|
5
|
+
<style>
|
|
6
|
+
.chip {
|
|
7
|
+
border-radius: 1em;
|
|
8
|
+
margin: 0.25em;
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
pointer-events: none;
|
|
11
|
+
background-color: rgb(var(--color-tertiary-500) / var(--tw-bg-opacity));
|
|
12
|
+
}
|
|
13
|
+
</style>
|