@turnipxenon/pineapple 3.0.0-alpha.16 → 3.0.0-alpha.18
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/ui/modules/projects/Hepcat.svelte +1 -1
- package/dist/ui/modules/projects/Pengi.svelte +1 -1
- package/dist/ui/modules/projects/Soulwork.svelte +1 -1
- package/dist/ui/modules/projects/ThisWebpage.svelte +1 -1
- package/dist/ui/templates/PinyaPageLayout/PinyaPageLayout.svelte.d.ts +9 -0
- package/dist/ui/templates/PinyaPageLayout/index.d.ts +2 -0
- package/dist/ui/templates/PinyaPageLayout/index.js +2 -0
- package/dist/ui/templates/index.d.ts +1 -1
- package/dist/ui/templates/index.js +1 -1
- package/dist/ui/templates/seaweed-layout/SeaweedLayout.svelte +2 -2
- package/package.json +1 -1
- package/dist/ui/templates/pinya-page-layout/component.svelte.d.ts +0 -9
- package/dist/ui/templates/pinya-page-layout/index.d.ts +0 -2
- package/dist/ui/templates/pinya-page-layout/index.js +0 -2
- /package/dist/ui/templates/{pinya-page-layout/component.svelte → PinyaPageLayout/PinyaPageLayout.svelte} +0 -0
- /package/dist/ui/templates/{pinya-page-layout → PinyaPageLayout}/runes.svelte.d.ts +0 -0
- /package/dist/ui/templates/{pinya-page-layout → PinyaPageLayout}/runes.svelte.js +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { default as FourPartCard } from "../../components/FourPartCard.svelte";
|
|
6
6
|
import { default as ImageIcon } from "../../elements/ImageIcon.svelte";
|
|
7
7
|
import { default as PinyaButton } from "../../elements/PinyaButton/PinyaButton.svelte";
|
|
8
|
-
import {
|
|
8
|
+
import { ButtonVariant } from "../../elements/PinyaButton/PinyaButtonProps";
|
|
9
9
|
import { ItchLogoHotLink } from "../../../consts";
|
|
10
10
|
|
|
11
11
|
const key = "Hepcat";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { default as FourPartCard } from "../../components/FourPartCard.svelte";
|
|
6
6
|
import { default as ImageIcon } from "../../elements/ImageIcon.svelte";
|
|
7
7
|
import { default as PinyaButton } from "../../elements/PinyaButton/PinyaButton.svelte";
|
|
8
|
-
import {
|
|
8
|
+
import { ButtonVariant } from "../../elements/PinyaButton/PinyaButtonProps";
|
|
9
9
|
import { ItchLogoHotLink } from "../../../consts";
|
|
10
10
|
|
|
11
11
|
const key = "Pengi";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { default as FourPartCard } from "../../components/FourPartCard.svelte";
|
|
6
6
|
import { default as ImageIcon } from "../../elements/ImageIcon.svelte";
|
|
7
7
|
import { default as PinyaButton } from "../../elements/PinyaButton/PinyaButton.svelte";
|
|
8
|
-
import {
|
|
8
|
+
import { ButtonVariant } from "../../elements/PinyaButton/PinyaButtonProps";
|
|
9
9
|
import { ItchLogoHotLink } from "../../../consts";
|
|
10
10
|
|
|
11
11
|
const key = "Soulwork";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { default as FourPartCard } from "../../components/FourPartCard.svelte";
|
|
6
6
|
import { default as ImageIcon } from "../../elements/ImageIcon.svelte";
|
|
7
7
|
import { default as PinyaButton } from "../../elements/PinyaButton/PinyaButton.svelte";
|
|
8
|
-
import {
|
|
8
|
+
import { ButtonVariant } from "../../elements/PinyaButton/PinyaButtonProps";
|
|
9
9
|
import { default as TextChip } from "../../elements/text-chip/TextChip.svelte";
|
|
10
10
|
|
|
11
11
|
const key = "This Webpage";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Snippet } from "svelte";
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
children: Snippet;
|
|
4
|
+
appBarLead?: Snippet;
|
|
5
|
+
footer?: Snippet;
|
|
6
|
+
};
|
|
7
|
+
declare const PinyaPageLayout: import("svelte").Component<$$ComponentProps, {}, "appBarLead">;
|
|
8
|
+
type PinyaPageLayout = ReturnType<typeof PinyaPageLayout>;
|
|
9
|
+
export default PinyaPageLayout;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
import { fly } from "svelte/transition";
|
|
3
3
|
import type { ProjectGroup, SeaweedLayoutProps } from "./props";
|
|
4
4
|
import ChumBucket from "../../modules/seaweed/ChumBucket.svelte";
|
|
5
|
-
import { PinyaPageLayout } from "../
|
|
6
|
-
import { SocialSection } from "../../components/
|
|
5
|
+
import { default as PinyaPageLayout } from "../PinyaPageLayout/PinyaPageLayout.svelte";
|
|
6
|
+
import { default as SocialSection } from "../../components/SocialSection.svelte";
|
|
7
7
|
import EntryGroup from "./EntryGroup.svelte";
|
|
8
8
|
import PineappleSwitch from "../../elements/PineappleSwitch.svelte";
|
|
9
9
|
import { CodeBlock, TextChip } from "../../elements/index";
|
package/package.json
CHANGED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { Snippet } from "svelte";
|
|
2
|
-
type $$ComponentProps = {
|
|
3
|
-
children: Snippet;
|
|
4
|
-
appBarLead?: Snippet;
|
|
5
|
-
footer?: Snippet;
|
|
6
|
-
};
|
|
7
|
-
declare const Component: import("svelte").Component<$$ComponentProps, {}, "appBarLead">;
|
|
8
|
-
type Component = ReturnType<typeof Component>;
|
|
9
|
-
export default Component;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|