@turnipxenon/pineapple 2.7.0 → 2.8.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.
- package/.idea/workspace.xml +5 -1
- package/.svelte-kit/__package__/components/blog_template/BlogTemplate.svelte +2 -1
- package/.svelte-kit/__package__/components/blog_template/BlogTemplate.svelte.d.ts +1 -0
- package/.svelte-kit/ambient.d.ts +0 -4
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/components/blog_template/BlogTemplate.svelte +2 -1
- package/dist/components/blog_template/BlogTemplate.svelte.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/components/blog_template/BlogTemplate.svelte +2 -1
package/.idea/workspace.xml
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
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="Update chum bucket display"
|
|
7
|
+
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Update chum bucket display">
|
|
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" />
|
|
9
|
+
</list>
|
|
8
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
9
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
10
12
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
@@ -394,6 +396,8 @@
|
|
|
394
396
|
<workItem from="1714785291683" duration="29000" />
|
|
395
397
|
<workItem from="1717797301446" duration="328000" />
|
|
396
398
|
<workItem from="1717818365490" duration="1400000" />
|
|
399
|
+
<workItem from="1718042449909" duration="152000" />
|
|
400
|
+
<workItem from="1718171450825" duration="153000" />
|
|
397
401
|
</task>
|
|
398
402
|
<task id="LOCAL-00160" summary="Support swappable group for backwards compatibility">
|
|
399
403
|
<option name="closed" value="true" />
|
|
@@ -6,6 +6,7 @@ import BlogTemplateInner from "./BlogTemplateInner.svelte";
|
|
|
6
6
|
export let pageMeta;
|
|
7
7
|
export let shouldFillWholePage = false;
|
|
8
8
|
export let shouldEnableDialogOverlay = false;
|
|
9
|
+
export let includeDataNoSnippet = false;
|
|
9
10
|
enableBackground.set(!shouldFillWholePage);
|
|
10
11
|
let initialDialogState = false;
|
|
11
12
|
onMount(() => {
|
|
@@ -25,7 +26,7 @@ onDestroy(() => {
|
|
|
25
26
|
</BlogTemplateInner>
|
|
26
27
|
</div>
|
|
27
28
|
{:else}
|
|
28
|
-
<Card>
|
|
29
|
+
<Card includeDataNoSnippet={includeDataNoSnippet}>
|
|
29
30
|
<div slot="content" class="default-card">
|
|
30
31
|
<BlogTemplateInner pageMeta={pageMeta}>
|
|
31
32
|
<slot />
|
package/.svelte-kit/ambient.d.ts
CHANGED
|
@@ -37,8 +37,6 @@ declare module '$env/static/private' {
|
|
|
37
37
|
export const COMSPEC: string;
|
|
38
38
|
export const DriverData: string;
|
|
39
39
|
export const EXEPATH: string;
|
|
40
|
-
export const FPS_BROWSER_APP_PROFILE_STRING: string;
|
|
41
|
-
export const FPS_BROWSER_USER_PROFILE_STRING: string;
|
|
42
40
|
export const GIT_XL_PATH: string;
|
|
43
41
|
export const GoLand: string;
|
|
44
42
|
export const GOPATH: string;
|
|
@@ -227,8 +225,6 @@ declare module '$env/dynamic/private' {
|
|
|
227
225
|
COMSPEC: string;
|
|
228
226
|
DriverData: string;
|
|
229
227
|
EXEPATH: string;
|
|
230
|
-
FPS_BROWSER_APP_PROFILE_STRING: string;
|
|
231
|
-
FPS_BROWSER_USER_PROFILE_STRING: string;
|
|
232
228
|
GIT_XL_PATH: string;
|
|
233
229
|
GoLand: string;
|
|
234
230
|
GOPATH: string;
|
|
@@ -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: "ia229r"
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export async function get_hooks() {
|
|
@@ -6,6 +6,7 @@ import BlogTemplateInner from "./BlogTemplateInner.svelte";
|
|
|
6
6
|
export let pageMeta;
|
|
7
7
|
export let shouldFillWholePage = false;
|
|
8
8
|
export let shouldEnableDialogOverlay = false;
|
|
9
|
+
export let includeDataNoSnippet = false;
|
|
9
10
|
enableBackground.set(!shouldFillWholePage);
|
|
10
11
|
let initialDialogState = false;
|
|
11
12
|
onMount(() => {
|
|
@@ -25,7 +26,7 @@ onDestroy(() => {
|
|
|
25
26
|
</BlogTemplateInner>
|
|
26
27
|
</div>
|
|
27
28
|
{:else}
|
|
28
|
-
<Card>
|
|
29
|
+
<Card includeDataNoSnippet={includeDataNoSnippet}>
|
|
29
30
|
<div slot="content" class="default-card">
|
|
30
31
|
<BlogTemplateInner pageMeta={pageMeta}>
|
|
31
32
|
<slot />
|
package/package.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
export let pageMeta: SimplePageMeta;
|
|
10
10
|
export let shouldFillWholePage = false;
|
|
11
11
|
export let shouldEnableDialogOverlay = false;
|
|
12
|
+
export let includeDataNoSnippet = false;
|
|
12
13
|
|
|
13
14
|
enableBackground.set(!shouldFillWholePage);
|
|
14
15
|
let initialDialogState = false;
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
</BlogTemplateInner>
|
|
33
34
|
</div>
|
|
34
35
|
{:else}
|
|
35
|
-
<Card>
|
|
36
|
+
<Card includeDataNoSnippet={includeDataNoSnippet}>
|
|
36
37
|
<div slot="content" class="default-card">
|
|
37
38
|
<BlogTemplateInner pageMeta={pageMeta}>
|
|
38
39
|
<slot />
|