@turnipxenon/pineapple 2.4.1 → 2.4.2

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.
@@ -5,7 +5,8 @@
5
5
  </component>
6
6
  <component name="ChangeListManager">
7
7
  <list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Add missing npm run package to allow dist generation">
8
- <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
8
+ <change beforePath="$PROJECT_DIR$/src/lib/components/layouts/PineappleBaseLayout.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/layouts/PineappleBaseLayout.svelte" afterDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/src/lib/components/layouts/SeaweedBaseLayout.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/layouts/SeaweedBaseLayout.svelte" afterDir="false" />
9
10
  </list>
10
11
  <option name="SHOW_DIALOG" value="false" />
11
12
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -176,7 +177,7 @@
176
177
  <workItem from="1710210270086" duration="1413000" />
177
178
  <workItem from="1710214755264" duration="894000" />
178
179
  <workItem from="1710261021555" duration="1989000" />
179
- <workItem from="1710264559996" duration="3448000" />
180
+ <workItem from="1710264559996" duration="4587000" />
180
181
  </task>
181
182
  <task id="LOCAL-00003" summary="Update lazy load">
182
183
  <option name="closed" value="true" />
@@ -1,6 +1,4 @@
1
- <script>import "$lib/theme.postcss";
2
- import "$lib/app.postcss";
3
- import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
1
+ <script>import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
4
2
  import RandomizedBackground from "../RandomizedBackground.svelte";
5
3
  import { page } from "$app/stores";
6
4
  import { enableBackground } from "../../store";
@@ -1,6 +1,4 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import "$lib/theme.postcss";
3
- import "$lib/app.postcss";
4
2
  declare const __propDef: {
5
3
  props: Record<string, never>;
6
4
  events: {
@@ -1,6 +1,4 @@
1
- <script>import "../../theme.postcss";
2
- import "$lib/app.postcss";
3
- import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
1
+ <script>import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
4
2
  import RandomizedBackground from "../RandomizedBackground.svelte";
5
3
  import { enableBackground } from "../../store";
6
4
  import { enableDialogueOverlay } from "../dialog_manager/DialogManagerStore";
@@ -1,6 +1,4 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import "../../theme.postcss";
3
- import "$lib/app.postcss";
4
2
  declare const __propDef: {
5
3
  props: {
6
4
  shouldDisplayLeadingIcons?: boolean | undefined;
@@ -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: "9m4pff"
24
+ version_hash: "j2wjed"
25
25
  };
26
26
 
27
27
  export async function get_hooks() {
@@ -1,6 +1,4 @@
1
- <script>import "$lib/theme.postcss";
2
- import "$lib/app.postcss";
3
- import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
1
+ <script>import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
4
2
  import RandomizedBackground from "../RandomizedBackground.svelte";
5
3
  import { page } from "$app/stores";
6
4
  import { enableBackground } from "../../store";
@@ -1,6 +1,4 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import "$lib/theme.postcss";
3
- import "$lib/app.postcss";
4
2
  declare const __propDef: {
5
3
  props: Record<string, never>;
6
4
  events: {
@@ -1,6 +1,4 @@
1
- <script>import "../../theme.postcss";
2
- import "$lib/app.postcss";
3
- import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
1
+ <script>import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
4
2
  import RandomizedBackground from "../RandomizedBackground.svelte";
5
3
  import { enableBackground } from "../../store";
6
4
  import { enableDialogueOverlay } from "../dialog_manager/DialogManagerStore";
@@ -1,6 +1,4 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import "../../theme.postcss";
3
- import "$lib/app.postcss";
4
2
  declare const __propDef: {
5
3
  props: {
6
4
  shouldDisplayLeadingIcons?: boolean | undefined;
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.1",
4
+ "version": "2.4.2",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "npm run check-requirements && vite build && yarn package",
@@ -1,10 +1,4 @@
1
1
  <script lang="ts">
2
- // The ordering of these imports is critical to your app working properly
3
- import "$lib/theme.postcss";
4
- // If you have source.organizeImports set to true in VSCode, then it will auto change this ordering
5
- // import "@skeletonlabs/skeleton/styles/all.css";
6
- // Most of your app wide CSS should be put in this file
7
- import "$lib/app.postcss";
8
2
  // For auto dark/light mode
9
3
  import {AppBar, AppShell, autoModeWatcher, LightSwitch} from "@skeletonlabs/skeleton";
10
4
  import RandomizedBackground from "$lib/components/RandomizedBackground.svelte";
@@ -1,10 +1,4 @@
1
1
  <script lang="ts">
2
- // The ordering of these imports is critical to your app working properly
3
- import "../../theme.postcss";
4
- // If you have source.organizeImports set to true in VSCode, then it will auto change this ordering
5
- // import "@skeletonlabs/skeleton/styles/all.css";
6
- // Most of your app wide CSS should be put in this file
7
- import "$lib/app.postcss";
8
2
  // For auto dark/light mode
9
3
  import { AppBar, AppShell, autoModeWatcher, LightSwitch } from "@skeletonlabs/skeleton";
10
4
  import RandomizedBackground from "$lib/components/RandomizedBackground.svelte";