@turnipxenon/pineapple 5.3.5 → 5.3.6
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.
- package/dist/modules/parsnip/ParsnipPhrasingChildren.svelte +2 -1
- package/dist/modules/parsnip/ParsnipPhrasingChildren.svelte.d.ts.map +1 -1
- package/dist/styles/app.css +17 -12
- package/dist/ui/templates/SeaweedLayout/ChumBucket.svelte +2 -2
- package/package.json +1 -1
- package/src/lib/styles/app.css +17 -12
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import ParsnipWikilink from "./ParsnipWikilink.svelte";
|
|
6
6
|
import { type PhrasingContent } from "mdast";
|
|
7
7
|
import Self from "./ParsnipPhrasingChildren.svelte";
|
|
8
|
+
import { page } from "$app/state";
|
|
8
9
|
|
|
9
10
|
const { phrasingChildren }: { phrasingChildren: PhrasingContent[] } = $props();
|
|
10
11
|
</script>
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
{#if child.url.includes('photo-gallery')}
|
|
27
28
|
<ParsnipImageCollection url={child.url} />
|
|
28
29
|
{:else }
|
|
29
|
-
<a href={child.url}>
|
|
30
|
+
<a href={child.url} rel={child.url.startsWith('https://') && !child.url.startsWith(page.url.origin) ? 'external' : undefined}>
|
|
30
31
|
<Self phrasingChildren={child.children} />
|
|
31
32
|
</a>
|
|
32
33
|
{/if}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ParsnipPhrasingChildren.svelte.d.ts","sourceRoot":"","sources":["../../../src/lib/modules/parsnip/ParsnipPhrasingChildren.svelte.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ParsnipPhrasingChildren.svelte.d.ts","sourceRoot":"","sources":["../../../src/lib/modules/parsnip/ParsnipPhrasingChildren.svelte.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,OAAO,CAAC;AAI5C,KAAK,gBAAgB,GAAI;IAAE,gBAAgB,EAAE,eAAe,EAAE,CAAA;CAAE,CAAC;AAkDlE,QAAA,MAAM,uBAAuB,sDAAwC,CAAC;AACtE,KAAK,uBAAuB,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC1E,eAAe,uBAAuB,CAAC"}
|
package/dist/styles/app.css
CHANGED
|
@@ -46,19 +46,24 @@ a.dialog-choice {
|
|
|
46
46
|
|
|
47
47
|
a.external-link {
|
|
48
48
|
cursor: url("$pkg/assets/icons/cursor-open-in-new.svg"), auto;
|
|
49
|
+
}
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
.external-link:after, a[rel="external"]:after {
|
|
52
|
+
content: '';
|
|
53
|
+
display: inline-block;
|
|
54
|
+
width: 0.8em;
|
|
55
|
+
height: 0.8em;
|
|
56
|
+
mask: url("$pkg/assets/icons/icon-open-in-new.svg") no-repeat center;
|
|
57
|
+
mask-size: contain;
|
|
58
|
+
background-color: currentColor;
|
|
59
|
+
vertical-align: middle;
|
|
60
|
+
position: relative;
|
|
61
|
+
top: -0.1lh;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
span.external-link:after {
|
|
65
|
+
left: 0.2em;
|
|
66
|
+
top: -0.05lh;
|
|
62
67
|
}
|
|
63
68
|
|
|
64
69
|
#toast-progress {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
<div class="chum-bucket">
|
|
25
25
|
<h2 class="text-start">More about me...</h2>
|
|
26
26
|
<p>Check out the latest things I've been rambling about at
|
|
27
|
-
<a href="https://turnipxenon.com" target="_blank">turnipxenon.com</a> or at
|
|
28
|
-
<a href="https://turnipxenon.com/blogs/coding-chagrin" target="_blank">turnipxenon.com/blogs/coding-chagrin.</a>
|
|
27
|
+
<a href="https://turnipxenon.com" target="_blank" rel="external">turnipxenon.com</a> or at
|
|
28
|
+
<a href="https://turnipxenon.com/blogs/coding-chagrin" target="_blank" rel="external">turnipxenon.com/blogs/coding-chagrin.</a>
|
|
29
29
|
</p>
|
|
30
30
|
|
|
31
31
|
<div class="chum-bucket-grid">
|
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": "5.3.
|
|
4
|
+
"version": "5.3.6",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@commitlint/cli": "^19.8.1",
|
|
7
7
|
"@commitlint/config-conventional": "^19.8.1",
|
package/src/lib/styles/app.css
CHANGED
|
@@ -46,19 +46,24 @@ a.dialog-choice {
|
|
|
46
46
|
|
|
47
47
|
a.external-link {
|
|
48
48
|
cursor: url("$pkg/assets/icons/cursor-open-in-new.svg"), auto;
|
|
49
|
+
}
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
.external-link:after, a[rel="external"]:after {
|
|
52
|
+
content: '';
|
|
53
|
+
display: inline-block;
|
|
54
|
+
width: 0.8em;
|
|
55
|
+
height: 0.8em;
|
|
56
|
+
mask: url("$pkg/assets/icons/icon-open-in-new.svg") no-repeat center;
|
|
57
|
+
mask-size: contain;
|
|
58
|
+
background-color: currentColor;
|
|
59
|
+
vertical-align: middle;
|
|
60
|
+
position: relative;
|
|
61
|
+
top: -0.1lh;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
span.external-link:after {
|
|
65
|
+
left: 0.2em;
|
|
66
|
+
top: -0.05lh;
|
|
62
67
|
}
|
|
63
68
|
|
|
64
69
|
#toast-progress {
|