@turnipxenon/pineapple 2.4.4 → 2.4.5

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,7 +4,11 @@
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="Fix accordion rounded border missing" />
7
+ <list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Fix accordion rounded border missing">
8
+ <change beforePath="$PROJECT_DIR$/src/lib/app.postcss" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/app.postcss" afterDir="false" />
9
+ <change beforePath="$PROJECT_DIR$/src/lib/template/SeaweedTemplate.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/template/SeaweedTemplate.svelte" afterDir="false" />
10
+ <change beforePath="$PROJECT_DIR$/src/routes/portfolio/+page.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/routes/portfolio/+page.svelte" afterDir="false" />
11
+ </list>
8
12
  <option name="SHOW_DIALOG" value="false" />
9
13
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
14
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -180,7 +184,7 @@
180
184
  <workItem from="1710274381105" duration="206000" />
181
185
  <workItem from="1710274942044" duration="14000" />
182
186
  <workItem from="1710275377359" duration="5036000" />
183
- <workItem from="1710289549437" duration="826000" />
187
+ <workItem from="1710289549437" duration="2609000" />
184
188
  </task>
185
189
  <task id="LOCAL-00007" summary="Update to yarn&#10;&#10;Updating to yarn to prevent dependency conflicts">
186
190
  <option name="closed" value="true" />
@@ -151,3 +151,13 @@ a:active {
151
151
  .dark a:active {
152
152
  color: rgb(var(--color-secondary-100));
153
153
  }
154
+
155
+ /* region Accordion css for handling missing styles in package */
156
+ .accordion-control {
157
+ @apply hover:bg-surface-hover-token;
158
+ }
159
+
160
+ .accordion-item {
161
+ @apply variant-filled-primary rounded-md;
162
+ }
163
+ /* endregion Accordion css for handling missing styles in package */
@@ -209,10 +209,10 @@ $:
209
209
  </ul>
210
210
  <br>
211
211
  <!-- todo: turn off flashing when accordion is expanded -->
212
- <Accordion hover="hover:bg-surface-hover-token" rounded="rounded-md">
213
- <AccordionItem class="variant-filled-primary rounded-md">
212
+ <Accordion>
213
+ <AccordionItem>
214
214
  <div slot="summary">
215
- <h2 class="mt-2">More experience</h2>
215
+ <h2 class="accordion-header">More experience</h2>
216
216
  </div>
217
217
  <svelte:fragment slot="content">
218
218
  <section class="more-section">
@@ -904,4 +904,8 @@ $:
904
904
  [class*='qt-'] {
905
905
  font-weight: var(--qt-font-weight);
906
906
  }
907
+
908
+ .accordion-header {
909
+ margin-top: 0.25em;
910
+ }
907
911
  </style>
@@ -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: "j6s48u"
24
+ version_hash: "15ujmvw"
25
25
  };
26
26
 
27
27
  export async function get_hooks() {
package/dist/app.postcss CHANGED
@@ -151,3 +151,13 @@ a:active {
151
151
  .dark a:active {
152
152
  color: rgb(var(--color-secondary-100));
153
153
  }
154
+
155
+ /* region Accordion css for handling missing styles in package */
156
+ .accordion-control {
157
+ @apply hover:bg-surface-hover-token;
158
+ }
159
+
160
+ .accordion-item {
161
+ @apply variant-filled-primary rounded-md;
162
+ }
163
+ /* endregion Accordion css for handling missing styles in package */
@@ -209,10 +209,10 @@ $:
209
209
  </ul>
210
210
  <br>
211
211
  <!-- todo: turn off flashing when accordion is expanded -->
212
- <Accordion hover="hover:bg-surface-hover-token" rounded="rounded-md">
213
- <AccordionItem class="variant-filled-primary rounded-md">
212
+ <Accordion>
213
+ <AccordionItem>
214
214
  <div slot="summary">
215
- <h2 class="mt-2">More experience</h2>
215
+ <h2 class="accordion-header">More experience</h2>
216
216
  </div>
217
217
  <svelte:fragment slot="content">
218
218
  <section class="more-section">
@@ -904,4 +904,8 @@ $:
904
904
  [class*='qt-'] {
905
905
  font-weight: var(--qt-font-weight);
906
906
  }
907
+
908
+ .accordion-header {
909
+ margin-top: 0.25em;
910
+ }
907
911
  </style>
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",
4
+ "version": "2.4.5",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "npm run check-requirements && vite build && yarn package",
@@ -151,3 +151,13 @@ a:active {
151
151
  .dark a:active {
152
152
  color: rgb(var(--color-secondary-100));
153
153
  }
154
+
155
+ /* region Accordion css for handling missing styles in package */
156
+ .accordion-control {
157
+ @apply hover:bg-surface-hover-token;
158
+ }
159
+
160
+ .accordion-item {
161
+ @apply variant-filled-primary rounded-md;
162
+ }
163
+ /* endregion Accordion css for handling missing styles in package */
@@ -246,10 +246,10 @@
246
246
  </ul>
247
247
  <br>
248
248
  <!-- todo: turn off flashing when accordion is expanded -->
249
- <Accordion hover="hover:bg-surface-hover-token" rounded="rounded-md">
250
- <AccordionItem class="variant-filled-primary rounded-md">
249
+ <Accordion>
250
+ <AccordionItem>
251
251
  <div slot="summary">
252
- <h2 class="mt-2">More experience</h2>
252
+ <h2 class="accordion-header">More experience</h2>
253
253
  </div>
254
254
  <svelte:fragment slot="content">
255
255
  <section class="more-section">
@@ -871,4 +871,8 @@
871
871
  [class*='qt-'] {
872
872
  font-weight: var(--qt-font-weight);
873
873
  }
874
+
875
+ .accordion-header {
876
+ margin-top: 0.25em;
877
+ }
874
878
  </style>
@@ -17,4 +17,4 @@
17
17
  </svelte:head>
18
18
 
19
19
  <!--todo: maybe add check that this is always false? -->
20
- <SeaweedTemplate letChaos={true}></SeaweedTemplate>
20
+ <SeaweedTemplate letChaos={false}></SeaweedTemplate>