@turnipxenon/pineapple 2.5.0 → 2.5.1
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/workspace.xml +13 -15
- package/.svelte-kit/__package__/components/blog_template/BlogTemplate.svelte +2 -2
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/components/blog_template/BlogTemplate.svelte +2 -2
- package/package.json +1 -1
- package/src/lib/components/blog_template/BlogTemplate.svelte +2 -2
package/.idea/workspace.xml
CHANGED
|
@@ -4,10 +4,8 @@
|
|
|
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 afterPath="$PROJECT_DIR$/src/lib/components/blog_template/BlogTemplateInner.svelte" afterDir="false" />
|
|
7
|
+
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Add plain background BlogTemplates">
|
|
9
8
|
<change beforePath="$PROJECT_DIR$/src/lib/components/blog_template/BlogTemplate.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/blog_template/BlogTemplate.svelte" afterDir="false" />
|
|
10
|
-
<change beforePath="$PROJECT_DIR$/src/routes/(pineapple)/pineapple/(extra-pages)/page2/+page.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/routes/(pineapple)/pineapple/(extra-pages)/page2/+page.svelte" afterDir="false" />
|
|
11
9
|
</list>
|
|
12
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
13
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -394,15 +392,7 @@
|
|
|
394
392
|
<workItem from="1714369536254" duration="132000" />
|
|
395
393
|
<workItem from="1714369851969" duration="201000" />
|
|
396
394
|
<workItem from="1714521686105" duration="268000" />
|
|
397
|
-
<workItem from="1714761186955" duration="
|
|
398
|
-
</task>
|
|
399
|
-
<task id="LOCAL-00156" summary="Add serverSideQueryParams and extraComponent in SeaweedTemplate">
|
|
400
|
-
<option name="closed" value="true" />
|
|
401
|
-
<created>1712474458161</created>
|
|
402
|
-
<option name="number" value="00156" />
|
|
403
|
-
<option name="presentableId" value="LOCAL-00156" />
|
|
404
|
-
<option name="project" value="LOCAL" />
|
|
405
|
-
<updated>1712474458161</updated>
|
|
395
|
+
<workItem from="1714761186955" duration="2060000" />
|
|
406
396
|
</task>
|
|
407
397
|
<task id="LOCAL-00157" summary="Fix removeProxyWrapperOnString">
|
|
408
398
|
<option name="closed" value="true" />
|
|
@@ -788,7 +778,15 @@
|
|
|
788
778
|
<option name="project" value="LOCAL" />
|
|
789
779
|
<updated>1714369583643</updated>
|
|
790
780
|
</task>
|
|
791
|
-
<
|
|
781
|
+
<task id="LOCAL-00205" summary="Add plain background BlogTemplates">
|
|
782
|
+
<option name="closed" value="true" />
|
|
783
|
+
<created>1714763027973</created>
|
|
784
|
+
<option name="number" value="00205" />
|
|
785
|
+
<option name="presentableId" value="LOCAL-00205" />
|
|
786
|
+
<option name="project" value="LOCAL" />
|
|
787
|
+
<updated>1714763027973</updated>
|
|
788
|
+
</task>
|
|
789
|
+
<option name="localTasksCounter" value="206" />
|
|
792
790
|
<servers />
|
|
793
791
|
</component>
|
|
794
792
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -846,7 +844,6 @@
|
|
|
846
844
|
</option>
|
|
847
845
|
</component>
|
|
848
846
|
<component name="VcsManagerConfiguration">
|
|
849
|
-
<MESSAGE value="WIP attempt to fix slider" />
|
|
850
847
|
<MESSAGE value="Add hideable upper controls for NavigationComponent" />
|
|
851
848
|
<MESSAGE value="Add default value for allowUpperControl in NavigationComponent" />
|
|
852
849
|
<MESSAGE value="Add ChumBucket" />
|
|
@@ -871,6 +868,7 @@
|
|
|
871
868
|
<MESSAGE value="Update default styling for blogs" />
|
|
872
869
|
<MESSAGE value="Reduce margin bottom for default blog paragraphs" />
|
|
873
870
|
<MESSAGE value="Attempt for whole blog page" />
|
|
874
|
-
<
|
|
871
|
+
<MESSAGE value="Add plain background BlogTemplates" />
|
|
872
|
+
<option name="LAST_COMMIT_MESSAGE" value="Add plain background BlogTemplates" />
|
|
875
873
|
</component>
|
|
876
874
|
</project>
|
|
@@ -6,11 +6,11 @@ import BlogTemplateInner from "./BlogTemplateInner.svelte";
|
|
|
6
6
|
export let pageMeta;
|
|
7
7
|
export let shouldFillWholePage = false;
|
|
8
8
|
export let shouldEnableDialogOverlay = false;
|
|
9
|
-
enableBackground.set(
|
|
9
|
+
enableBackground.set(!shouldFillWholePage);
|
|
10
10
|
let initialDialogState = false;
|
|
11
11
|
onMount(() => {
|
|
12
12
|
initialDialogState = $enableDialogueOverlay;
|
|
13
|
-
enableDialogueOverlay.set(
|
|
13
|
+
enableDialogueOverlay.set(shouldEnableDialogOverlay);
|
|
14
14
|
});
|
|
15
15
|
onDestroy(() => {
|
|
16
16
|
enableBackground.set(true);
|
|
@@ -21,7 +21,7 @@ export const options = {
|
|
|
21
21
|
app: ({ head, body, assets, nonce, env }) => "<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<link rel=\"icon\" href=\"" + assets + "/favicon.png\" />\n\t\t<meta name=\"viewport\" content=\"width=device-width\" />\n\t\t" + head + "\n\t</head>\n\n\t<body data-sveltekit-preload-data=\"hover\" data-theme=\"crimson\">\n\t\t<div style=\"display: contents\" class=\"h-full overflow-hidden\">" + body + "</div>\n\t</body>\n</html>\n",
|
|
22
22
|
error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
|
|
23
23
|
},
|
|
24
|
-
version_hash: "
|
|
24
|
+
version_hash: "1ucpk8o"
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export async function get_hooks() {
|
|
@@ -6,11 +6,11 @@ import BlogTemplateInner from "./BlogTemplateInner.svelte";
|
|
|
6
6
|
export let pageMeta;
|
|
7
7
|
export let shouldFillWholePage = false;
|
|
8
8
|
export let shouldEnableDialogOverlay = false;
|
|
9
|
-
enableBackground.set(
|
|
9
|
+
enableBackground.set(!shouldFillWholePage);
|
|
10
10
|
let initialDialogState = false;
|
|
11
11
|
onMount(() => {
|
|
12
12
|
initialDialogState = $enableDialogueOverlay;
|
|
13
|
-
enableDialogueOverlay.set(
|
|
13
|
+
enableDialogueOverlay.set(shouldEnableDialogOverlay);
|
|
14
14
|
});
|
|
15
15
|
onDestroy(() => {
|
|
16
16
|
enableBackground.set(true);
|
package/package.json
CHANGED
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
export let shouldFillWholePage = false;
|
|
11
11
|
export let shouldEnableDialogOverlay = false;
|
|
12
12
|
|
|
13
|
-
enableBackground.set(
|
|
13
|
+
enableBackground.set(!shouldFillWholePage);
|
|
14
14
|
let initialDialogState = false;
|
|
15
15
|
|
|
16
16
|
onMount(() => {
|
|
17
17
|
initialDialogState = $enableDialogueOverlay;
|
|
18
|
-
enableDialogueOverlay.set(
|
|
18
|
+
enableDialogueOverlay.set(shouldEnableDialogOverlay);
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
onDestroy(() => {
|