@turnipxenon/pineapple 2.3.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.
@@ -4,13 +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="Move from dist to lib for package path">
8
- <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
9
- <change beforePath="$PROJECT_DIR$/src/lib/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/index.ts" afterDir="false" />
10
- <change beforePath="$PROJECT_DIR$/src/lib/template/SeaweedTemplate.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/template/SeaweedTemplate.svelte" afterDir="false" />
11
- <change beforePath="$PROJECT_DIR$/src/routes/portfolio/SocialSection.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/SocialSection.svelte" afterDir="false" />
12
- <change beforePath="$PROJECT_DIR$/svelte.config.js" beforeDir="false" afterPath="$PROJECT_DIR$/svelte.config.js" afterDir="false" />
13
- <change beforePath="$PROJECT_DIR$/yarn.lock" beforeDir="false" afterPath="$PROJECT_DIR$/yarn.lock" afterDir="false" />
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$/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" />
14
10
  </list>
15
11
  <option name="SHOW_DIALOG" value="false" />
16
12
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -181,15 +177,7 @@
181
177
  <workItem from="1710210270086" duration="1413000" />
182
178
  <workItem from="1710214755264" duration="894000" />
183
179
  <workItem from="1710261021555" duration="1989000" />
184
- <workItem from="1710264559996" duration="3105000" />
185
- </task>
186
- <task id="LOCAL-00002" summary="Update lazy load">
187
- <option name="closed" value="true" />
188
- <created>1695247384764</created>
189
- <option name="number" value="00002" />
190
- <option name="presentableId" value="LOCAL-00002" />
191
- <option name="project" value="LOCAL" />
192
- <updated>1695247384764</updated>
180
+ <workItem from="1710264559996" duration="4587000" />
193
181
  </task>
194
182
  <task id="LOCAL-00003" summary="Update lazy load">
195
183
  <option name="closed" value="true" />
@@ -575,7 +563,15 @@
575
563
  <option name="project" value="LOCAL" />
576
564
  <updated>1710263983434</updated>
577
565
  </task>
578
- <option name="localTasksCounter" value="51" />
566
+ <task id="LOCAL-00051" summary="Add missing npm run package to allow dist generation">
567
+ <option name="closed" value="true" />
568
+ <created>1710267769805</created>
569
+ <option name="number" value="00051" />
570
+ <option name="presentableId" value="LOCAL-00051" />
571
+ <option name="project" value="LOCAL" />
572
+ <updated>1710267769806</updated>
573
+ </task>
574
+ <option name="localTasksCounter" value="52" />
579
575
  <servers />
580
576
  </component>
581
577
  <component name="TypeScriptGeneratedFilesManager">
@@ -633,7 +629,6 @@
633
629
  </option>
634
630
  </component>
635
631
  <component name="VcsManagerConfiguration">
636
- <MESSAGE value="Implement base layout for portfolio" />
637
632
  <MESSAGE value="Implement experience section" />
638
633
  <MESSAGE value="WIP carousel&#10;&#10;To be removed since it's distracting" />
639
634
  <MESSAGE value="Add game section" />
@@ -658,6 +653,7 @@
658
653
  <MESSAGE value="Extract head elements out of template component" />
659
654
  <MESSAGE value="Fix path for Seaweed" />
660
655
  <MESSAGE value="Move from dist to lib for package path" />
661
- <option name="LAST_COMMIT_MESSAGE" value="Move from dist to lib for package path" />
656
+ <MESSAGE value="Add missing npm run package to allow dist generation" />
657
+ <option name="LAST_COMMIT_MESSAGE" value="Add missing npm run package to allow dist generation" />
662
658
  </component>
663
659
  </project>
@@ -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.3.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";