@turnipxenon/pineapple 2.4.69 → 2.4.70

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,8 +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="CreateUrlForm" comment="Fix align-items">
8
- <change beforePath="$PROJECT_DIR$/src/lib/api/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/api/index.ts" afterDir="false" />
7
+ <list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="CreateUrlForm" comment="Export GetLatestBlogs properly">
8
+ <change beforePath="$PROJECT_DIR$/src/lib/template/seaweed/entries/ThisWebpage.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/template/seaweed/entries/ThisWebpage.svelte" afterDir="false" />
9
9
  </list>
10
10
  <option name="SHOW_DIALOG" value="false" />
11
11
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -357,15 +357,8 @@
357
357
  <workItem from="1712774708776" duration="809000" />
358
358
  <workItem from="1712777702027" duration="1171000" />
359
359
  <workItem from="1712779118025" duration="2950000" />
360
- <workItem from="1712782201465" duration="216000" />
361
- </task>
362
- <task id="LOCAL-00138" summary="Add cdktf">
363
- <option name="closed" value="true" />
364
- <created>1712393084567</created>
365
- <option name="number" value="00138" />
366
- <option name="presentableId" value="LOCAL-00138" />
367
- <option name="project" value="LOCAL" />
368
- <updated>1712393084568</updated>
360
+ <workItem from="1712782201465" duration="745000" />
361
+ <workItem from="1712790206684" duration="235000" />
369
362
  </task>
370
363
  <task id="LOCAL-00139" summary="Add cdktf">
371
364
  <option name="closed" value="true" />
@@ -751,7 +744,15 @@
751
744
  <option name="project" value="LOCAL" />
752
745
  <updated>1712782065010</updated>
753
746
  </task>
754
- <option name="localTasksCounter" value="187" />
747
+ <task id="LOCAL-00187" summary="Export GetLatestBlogs properly">
748
+ <option name="closed" value="true" />
749
+ <created>1712782430277</created>
750
+ <option name="number" value="00187" />
751
+ <option name="presentableId" value="LOCAL-00187" />
752
+ <option name="project" value="LOCAL" />
753
+ <updated>1712782430277</updated>
754
+ </task>
755
+ <option name="localTasksCounter" value="188" />
755
756
  <servers />
756
757
  </component>
757
758
  <component name="TypeScriptGeneratedFilesManager">
@@ -809,7 +810,6 @@
809
810
  </option>
810
811
  </component>
811
812
  <component name="VcsManagerConfiguration">
812
- <MESSAGE value="Delay parsing for query terms after page transformation" />
813
813
  <MESSAGE value="Put parseQTTerms in afterUpdate instead of onMount" />
814
814
  <MESSAGE value="Add logs to observe queryTermMap in downstream package" />
815
815
  <MESSAGE value="Add logs to observe parseQtTerms in downstream package" />
@@ -834,6 +834,7 @@
834
834
  <MESSAGE value="Add default value for allowUpperControl in NavigationComponent" />
835
835
  <MESSAGE value="Add ChumBucket" />
836
836
  <MESSAGE value="Fix align-items" />
837
- <option name="LAST_COMMIT_MESSAGE" value="Fix align-items" />
837
+ <MESSAGE value="Export GetLatestBlogs properly" />
838
+ <option name="LAST_COMMIT_MESSAGE" value="Export GetLatestBlogs properly" />
838
839
  </component>
839
840
  </project>
@@ -18,10 +18,9 @@ export let props;
18
18
  <h2>This webpage!</h2>
19
19
 
20
20
  <p>
21
- The webpage is made of two parts. The webpage that has the content for everything here, I've
22
- lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I
23
- want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
21
+ The webpage is made with two parts. The webpage that has the content for everything here, I've lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
24
22
  </p>
23
+ <p>The webpage can dynamically emphasize terms, rearrange the layout, use different terms, and save all these configurations as a shortened link. Additionally fetches the latest blog entries from turnipxenon.com via REST calls.</p>
25
24
 
26
25
  <p>
27
26
  <Chip>Svelte</Chip>
@@ -31,6 +30,7 @@ export let props;
31
30
  <Chip>YarnSpinner</Chip>
32
31
  <Chip>Postgres (SQL database)</Chip>
33
32
  <Chip>Prisma ORM</Chip>
33
+ <Chip>RESTful API</Chip>
34
34
  </p>
35
35
 
36
36
  <section class="game-link-section">
@@ -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: "u4p1xt"
24
+ version_hash: "som2z5"
25
25
  };
26
26
 
27
27
  export async function get_hooks() {
@@ -18,10 +18,9 @@ export let props;
18
18
  <h2>This webpage!</h2>
19
19
 
20
20
  <p>
21
- The webpage is made of two parts. The webpage that has the content for everything here, I've
22
- lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I
23
- want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
21
+ The webpage is made with two parts. The webpage that has the content for everything here, I've lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
24
22
  </p>
23
+ <p>The webpage can dynamically emphasize terms, rearrange the layout, use different terms, and save all these configurations as a shortened link. Additionally fetches the latest blog entries from turnipxenon.com via REST calls.</p>
25
24
 
26
25
  <p>
27
26
  <Chip>Svelte</Chip>
@@ -31,6 +30,7 @@ export let props;
31
30
  <Chip>YarnSpinner</Chip>
32
31
  <Chip>Postgres (SQL database)</Chip>
33
32
  <Chip>Prisma ORM</Chip>
33
+ <Chip>RESTful API</Chip>
34
34
  </p>
35
35
 
36
36
  <section class="game-link-section">
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.69",
4
+ "version": "2.4.70",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && yarn package",
@@ -21,10 +21,9 @@
21
21
  <h2>This webpage!</h2>
22
22
 
23
23
  <p>
24
- The webpage is made of two parts. The webpage that has the content for everything here, I've
25
- lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I
26
- want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
24
+ The webpage is made with two parts. The webpage that has the content for everything here, I've lovingly called Seaweed. I kept seaweed as a private package. On the other hand, the base package which I want to use for all spin offs of my websites is called Pineapple and have kept that codebase public.
27
25
  </p>
26
+ <p>The webpage can dynamically emphasize terms, rearrange the layout, use different terms, and save all these configurations as a shortened link. Additionally fetches the latest blog entries from turnipxenon.com via REST calls.</p>
28
27
 
29
28
  <p>
30
29
  <Chip>Svelte</Chip>
@@ -34,6 +33,7 @@
34
33
  <Chip>YarnSpinner</Chip>
35
34
  <Chip>Postgres (SQL database)</Chip>
36
35
  <Chip>Prisma ORM</Chip>
36
+ <Chip>RESTful API</Chip>
37
37
  </p>
38
38
 
39
39
  <section class="game-link-section">