@turnipxenon/pineapple 2.4.40 → 2.4.41

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,9 +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="Changes" comment="Allow preventing NavigationComponent pagination">
8
- <change beforePath="$PROJECT_DIR$/src/lib/components/SocialSection.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/components/SocialSection.svelte" afterDir="false" />
9
- <change beforePath="$PROJECT_DIR$/src/lib/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/index.ts" afterDir="false" />
7
+ <list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Fix allowLinkedin arg in SocialSection">
8
+ <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
10
9
  </list>
11
10
  <option name="SHOW_DIALOG" value="false" />
12
11
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -253,23 +252,8 @@
253
252
  <workItem from="1711677762467" duration="3110000" />
254
253
  <workItem from="1711680966158" duration="444000" />
255
254
  <workItem from="1711681779901" duration="6000" />
256
- <workItem from="1711682341820" duration="256000" />
257
- </task>
258
- <task id="LOCAL-00068" summary="Add dismissable toast">
259
- <option name="closed" value="true" />
260
- <created>1710648639268</created>
261
- <option name="number" value="00068" />
262
- <option name="presentableId" value="LOCAL-00068" />
263
- <option name="project" value="LOCAL" />
264
- <updated>1710648639269</updated>
265
- </task>
266
- <task id="LOCAL-00069" summary="Adjust default toast body styling and add shadow to toast">
267
- <option name="closed" value="true" />
268
- <created>1710650031611</created>
269
- <option name="number" value="00069" />
270
- <option name="presentableId" value="LOCAL-00069" />
271
- <option name="project" value="LOCAL" />
272
- <updated>1710650031611</updated>
255
+ <workItem from="1711682341820" duration="414000" />
256
+ <workItem from="1711682931608" duration="198000" />
273
257
  </task>
274
258
  <task id="LOCAL-00070" summary="Clean up todos">
275
259
  <option name="closed" value="true" />
@@ -647,7 +631,23 @@
647
631
  <option name="project" value="LOCAL" />
648
632
  <updated>1711681303815</updated>
649
633
  </task>
650
- <option name="localTasksCounter" value="117" />
634
+ <task id="LOCAL-00117" summary="Export SocialSection">
635
+ <option name="closed" value="true" />
636
+ <created>1711682610806</created>
637
+ <option name="number" value="00117" />
638
+ <option name="presentableId" value="LOCAL-00117" />
639
+ <option name="project" value="LOCAL" />
640
+ <updated>1711682610806</updated>
641
+ </task>
642
+ <task id="LOCAL-00118" summary="Fix allowLinkedin arg in SocialSection">
643
+ <option name="closed" value="true" />
644
+ <created>1711683031188</created>
645
+ <option name="number" value="00118" />
646
+ <option name="presentableId" value="LOCAL-00118" />
647
+ <option name="project" value="LOCAL" />
648
+ <updated>1711683031188</updated>
649
+ </task>
650
+ <option name="localTasksCounter" value="119" />
651
651
  <servers />
652
652
  </component>
653
653
  <component name="TypeScriptGeneratedFilesManager">
@@ -705,8 +705,6 @@
705
705
  </option>
706
706
  </component>
707
707
  <component name="VcsManagerConfiguration">
708
- <MESSAGE value="Fix package main index" />
709
- <MESSAGE value="Fix dialog positioning&#10;&#10;Dialog positioning seemed to be broken when the styles from Seaweed moved to postcss, even if the dialog solely exists in Pineapple" />
710
708
  <MESSAGE value="Place fab on a higher z-index" />
711
709
  <MESSAGE value="v2.4.29" />
712
710
  <MESSAGE value="Implement basic navigation component logic" />
@@ -730,6 +728,8 @@
730
728
  <MESSAGE value="yarn scripts" />
731
729
  <MESSAGE value="Layout adjustments to PineappleBaseLayout" />
732
730
  <MESSAGE value="Allow preventing NavigationComponent pagination" />
733
- <option name="LAST_COMMIT_MESSAGE" value="Allow preventing NavigationComponent pagination" />
731
+ <MESSAGE value="Export SocialSection" />
732
+ <MESSAGE value="Fix allowLinkedin arg in SocialSection" />
733
+ <option name="LAST_COMMIT_MESSAGE" value="Fix allowLinkedin arg in SocialSection" />
734
734
  </component>
735
735
  </project>
@@ -20,7 +20,7 @@
20
20
  `;
21
21
 
22
22
  onMount(() => {
23
- shouldShowExtra = allowLinkedIn && window.screen.availWidth >= 440;
23
+ shouldShowExtra = window.screen.availWidth >= 440;
24
24
  });
25
25
  </script>
26
26
 
@@ -34,15 +34,17 @@
34
34
  <span>TurnipXenon</span>
35
35
  {/if}
36
36
  </button>
37
- <button type="button" class="social-button turnip-button"
38
- role="link"
39
- title={`https://www.linkedin.com/in/${linkedinSlug}/`}
40
- on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
41
- <img src={LinkedinIcon} alt="linkedin icon">
42
- {#if (!isSmallVersion)}
43
- <span>{linkedinSlug}</span>
44
- {/if}
45
- </button>
37
+ {#if allowLinkedIn}
38
+ <button type="button" class="social-button turnip-button"
39
+ role="link"
40
+ title={`https://www.linkedin.com/in/${linkedinSlug}/`}
41
+ on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
42
+ <img src={LinkedinIcon} alt="linkedin icon">
43
+ {#if (!isSmallVersion)}
44
+ <span>{linkedinSlug}</span>
45
+ {/if}
46
+ </button>
47
+ {/if}
46
48
  <button type="button" class="social-button turnip-button"
47
49
  role="link"
48
50
  title={`mailto:${email}`}
@@ -20,7 +20,7 @@
20
20
  `;
21
21
 
22
22
  onMount(() => {
23
- shouldShowExtra = allowLinkedIn && window.screen.availWidth >= 440;
23
+ shouldShowExtra = window.screen.availWidth >= 440;
24
24
  });
25
25
  </script>
26
26
 
@@ -34,15 +34,17 @@
34
34
  <span>TurnipXenon</span>
35
35
  {/if}
36
36
  </button>
37
- <button type="button" class="social-button turnip-button"
38
- role="link"
39
- title={`https://www.linkedin.com/in/${linkedinSlug}/`}
40
- on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
41
- <img src={LinkedinIcon} alt="linkedin icon">
42
- {#if (!isSmallVersion)}
43
- <span>{linkedinSlug}</span>
44
- {/if}
45
- </button>
37
+ {#if allowLinkedIn}
38
+ <button type="button" class="social-button turnip-button"
39
+ role="link"
40
+ title={`https://www.linkedin.com/in/${linkedinSlug}/`}
41
+ on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
42
+ <img src={LinkedinIcon} alt="linkedin icon">
43
+ {#if (!isSmallVersion)}
44
+ <span>{linkedinSlug}</span>
45
+ {/if}
46
+ </button>
47
+ {/if}
46
48
  <button type="button" class="social-button turnip-button"
47
49
  role="link"
48
50
  title={`mailto:${email}`}
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.40",
4
+ "version": "2.4.41",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "npm run check-requirements && vite build && yarn package",
@@ -20,7 +20,7 @@
20
20
  `;
21
21
 
22
22
  onMount(() => {
23
- shouldShowExtra = allowLinkedIn && window.screen.availWidth >= 440;
23
+ shouldShowExtra = window.screen.availWidth >= 440;
24
24
  });
25
25
  </script>
26
26
 
@@ -34,15 +34,17 @@
34
34
  <span>TurnipXenon</span>
35
35
  {/if}
36
36
  </button>
37
- <button type="button" class="social-button turnip-button"
38
- role="link"
39
- title={`https://www.linkedin.com/in/${linkedinSlug}/`}
40
- on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
41
- <img src={LinkedinIcon} alt="linkedin icon">
42
- {#if (!isSmallVersion)}
43
- <span>{linkedinSlug}</span>
44
- {/if}
45
- </button>
37
+ {#if allowLinkedIn}
38
+ <button type="button" class="social-button turnip-button"
39
+ role="link"
40
+ title={`https://www.linkedin.com/in/${linkedinSlug}/`}
41
+ on:click={() => window.open(`https://www.linkedin.com/in/${linkedinSlug}/`)}>
42
+ <img src={LinkedinIcon} alt="linkedin icon">
43
+ {#if (!isSmallVersion)}
44
+ <span>{linkedinSlug}</span>
45
+ {/if}
46
+ </button>
47
+ {/if}
46
48
  <button type="button" class="social-button turnip-button"
47
49
  role="link"
48
50
  title={`mailto:${email}`}