@turnipxenon/pineapple 4.0.0-alpha.2 → 4.0.0
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/styles/turnip-theme.css +4 -0
- package/dist/ui/elements/index.d.ts +1 -1
- package/dist/ui/elements/index.js +1 -1
- package/dist/ui/modules/dialog_overlay/DialogOverlay.svelte +1 -1
- package/dist/ui/modules/projects/Soulwork.svelte +1 -1
- package/dist/ui/modules/projects/Soulwork.svelte.d.ts +1 -1
- package/dist/ui/modules/projects/ThisWebpage.svelte +1 -1
- package/dist/ui/templates/SeaweedLayout/CreateUrlForm.svelte +1 -1
- package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte +2 -2
- package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte.d.ts +1 -1
- package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte +1 -1
- package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte.d.ts +1 -1
- package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte +5 -5
- package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte.d.ts +1 -1
- package/dist/ui/templates/SeaweedLayout/SeaweedLayout.svelte +2 -1
- package/dist/ui/templates/SeaweedLayout/props.d.ts +1 -1
- package/dist/ui/templates/blog_template/BlogTemplate.svelte +1 -1
- package/package.json +1 -1
- /package/dist/ui/elements/{text-chip → TextChip}/TextChip.svelte +0 -0
- /package/dist/ui/elements/{text-chip → TextChip}/TextChip.svelte.d.ts +0 -0
- /package/dist/ui/elements/{text-chip → TextChip}/TextChipProps.d.ts +0 -0
- /package/dist/ui/elements/{text-chip → TextChip}/TextChipProps.js +0 -0
- /package/dist/ui/elements/{text-chip → TextChip}/index.d.ts +0 -0
- /package/dist/ui/elements/{text-chip → TextChip}/index.js +0 -0
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { DialogState } from "../../../types/pineapple_fiber/DialogState";
|
|
7
7
|
import { dialogManager } from "../../../components/dialog_manager/DialogManager";
|
|
8
8
|
import PinyaCard from "../../elements/PinyaCard/PinyaCard.svelte";
|
|
9
|
-
import { appState } from "../../templates/
|
|
9
|
+
import { appState } from "../../templates/PinyaPageLayout/runes.svelte";
|
|
10
10
|
import CloseIcon from "../../../assets/icons/close.svg";
|
|
11
11
|
import FABIcon from "../../../assets/bg_tiled/bg_tiled_turnip.png";
|
|
12
12
|
import { enableDialogueOverlay } from "../../../components/dialog_manager/DialogManagerStore";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script module lang="ts">
|
|
2
2
|
import HeaderSoulwork from "../../../assets/temp/header-soulwork.mp4";
|
|
3
3
|
import GithubIcon from "../../../assets/icons/github-mark.svg";
|
|
4
|
-
import type { ProjectComponentProps } from "../../templates/
|
|
4
|
+
import type { ProjectComponentProps } from "../../templates/SeaweedLayout";
|
|
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";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ProjectComponentProps } from "../../templates/
|
|
1
|
+
import type { ProjectComponentProps } from "../../templates/SeaweedLayout";
|
|
2
2
|
declare const key = "Soulwork";
|
|
3
3
|
export { component, key };
|
|
4
4
|
declare const component: (props: ProjectComponentProps) => ReturnType<import("svelte").Snippet>;
|
|
@@ -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 { default as TextChip } from "../../elements/
|
|
8
|
+
import { default as TextChip } from "../../elements/TextChip/TextChip.svelte";
|
|
9
9
|
import { ButtonVariant } from "../../elements/PinyaButtonCommon/ButtonVariant";
|
|
10
10
|
|
|
11
11
|
const key = "This Webpage";
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import type { ToastContext } from "@skeletonlabs/skeleton-svelte";
|
|
4
4
|
import { getContext } from "svelte";
|
|
5
5
|
import type { ToastSettings } from "./ToastSettings";
|
|
6
|
-
import
|
|
6
|
+
import PinyaButton from "../../elements/PinyaButton/PinyaButton.svelte";
|
|
7
7
|
|
|
8
8
|
export const toast: ToastContext = getContext("toast");
|
|
9
9
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import CloseIcon from "../../../assets/icons/close.svg";
|
|
3
2
|
import UpwardIcon from "../../../assets/icons/arrow-upward.svg";
|
|
4
|
-
import
|
|
5
|
-
import { getContext, onMount } from "svelte";
|
|
6
|
-
import { PinyaCard } from "../../elements/index";
|
|
3
|
+
import CloseIcon from "../../../assets/icons/close.svg";
|
|
7
4
|
import PinyaCombobox from "../../elements/pinya-combobox/PinyaCombobox.svelte";
|
|
8
|
-
import { PinyaButton } from "../../elements/
|
|
5
|
+
import { PinyaButton } from "../../elements/PinyaButton";
|
|
6
|
+
import { PinyaCard } from "../../elements/PinyaCard";
|
|
7
|
+
import type { ProjectGroup, SnippetMeta } from "./";
|
|
9
8
|
import { type ToastContext } from "@skeletonlabs/skeleton-svelte";
|
|
9
|
+
import { getContext } from "svelte";
|
|
10
10
|
|
|
11
11
|
export const toast: ToastContext = getContext("toast");
|
|
12
12
|
|
|
@@ -6,7 +6,8 @@
|
|
|
6
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
|
-
import { CodeBlock
|
|
9
|
+
import { CodeBlock } from "../../elements/CodeBlock";
|
|
10
|
+
import { TextChip } from "../../elements/TextChip";
|
|
10
11
|
import { SvelteMap } from "svelte/reactivity";
|
|
11
12
|
import EntryOrderConfig from "./EntryOrderConfig.svelte";
|
|
12
13
|
import CreateUrlForm from "./CreateUrlForm.svelte";
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import type { SimplePageMeta } from "../../modules/NavigationMenu/index";
|
|
6
6
|
import { enableDialogueOverlay } from "../../../components/dialog_manager/DialogManagerStore";
|
|
7
7
|
import PinyaCard from "../../elements/PinyaCard/PinyaCard.svelte";
|
|
8
|
-
import { appState } from "../
|
|
8
|
+
import { appState } from "../PinyaPageLayout/runes.svelte";
|
|
9
9
|
|
|
10
10
|
// grab page meta from the adjacent meta.json
|
|
11
11
|
interface Props {
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|