@turnipxenon/pineapple 2.4.15 → 2.4.16
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 +2 -2
- package/.svelte-kit/__package__/components/pineapple/PineappleBaseLayout.svelte +3 -2
- package/.svelte-kit/__package__/components/pineapple/PineappleBaseLayout.svelte.d.ts +3 -1
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/components/pineapple/PineappleBaseLayout.svelte +3 -2
- package/dist/components/pineapple/PineappleBaseLayout.svelte.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/components/pineapple/PineappleBaseLayout.svelte +3 -1
package/.idea/workspace.xml
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
7
|
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Fix dialog layout to make it usable on hobby site">
|
|
8
|
-
<change beforePath="$PROJECT_DIR$/
|
|
8
|
+
<change beforePath="$PROJECT_DIR$/src/lib/components/pineapple/PineappleBaseLayout.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/pineapple/PineappleBaseLayout.svelte" afterDir="false" />
|
|
9
9
|
</list>
|
|
10
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
11
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
<workItem from="1710623596666" duration="2298000" />
|
|
206
206
|
<workItem from="1710645881933" duration="8776000" />
|
|
207
207
|
<workItem from="1710721345686" duration="2025000" />
|
|
208
|
-
<workItem from="1710724001847" duration="
|
|
208
|
+
<workItem from="1710724001847" duration="11948000" />
|
|
209
209
|
</task>
|
|
210
210
|
<task id="LOCAL-00027" summary="Implement experience section">
|
|
211
211
|
<option name="closed" value="true" />
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script>export let showDialogByDefault = false;
|
|
2
|
+
import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
|
|
2
3
|
import RandomizedBackground from "../RandomizedBackground.svelte";
|
|
3
4
|
import { page } from "$app/stores";
|
|
4
5
|
import { enableBackground } from "../../store";
|
|
@@ -42,7 +43,7 @@ let enableDialogueOverlayValue = true;
|
|
|
42
43
|
enableDialogueOverlay.subscribe((value) => {
|
|
43
44
|
enableDialogueOverlayValue = value;
|
|
44
45
|
});
|
|
45
|
-
enableDialogueOverlay.set(
|
|
46
|
+
enableDialogueOverlay.set(showDialogByDefault);
|
|
46
47
|
</script>
|
|
47
48
|
|
|
48
49
|
<!-- App Shell -->
|
|
@@ -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: "ti8fmh"
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export async function get_hooks() {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
<script>
|
|
1
|
+
<script>export let showDialogByDefault = false;
|
|
2
|
+
import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
|
|
2
3
|
import RandomizedBackground from "../RandomizedBackground.svelte";
|
|
3
4
|
import { page } from "$app/stores";
|
|
4
5
|
import { enableBackground } from "../../store";
|
|
@@ -42,7 +43,7 @@ let enableDialogueOverlayValue = true;
|
|
|
42
43
|
enableDialogueOverlay.subscribe((value) => {
|
|
43
44
|
enableDialogueOverlayValue = value;
|
|
44
45
|
});
|
|
45
|
-
enableDialogueOverlay.set(
|
|
46
|
+
enableDialogueOverlay.set(showDialogByDefault);
|
|
46
47
|
</script>
|
|
47
48
|
|
|
48
49
|
<!-- App Shell -->
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turnipxenon/pineapple",
|
|
3
3
|
"description": "personal package for base styling for other personal projects",
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.16",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
7
7
|
"build": "npm run check-requirements && vite build && yarn package",
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
+
export let showDialogByDefault = false;
|
|
3
|
+
|
|
2
4
|
// For auto dark/light mode
|
|
3
5
|
import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
|
|
4
6
|
import RandomizedBackground from "$pkg/components/RandomizedBackground.svelte";
|
|
@@ -58,7 +60,7 @@
|
|
|
58
60
|
enableDialogueOverlayValue = value;
|
|
59
61
|
});
|
|
60
62
|
|
|
61
|
-
enableDialogueOverlay.set(
|
|
63
|
+
enableDialogueOverlay.set(showDialogByDefault);
|
|
62
64
|
</script>
|
|
63
65
|
|
|
64
66
|
<!-- App Shell -->
|