@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.
Files changed (24) hide show
  1. package/dist/styles/turnip-theme.css +4 -0
  2. package/dist/ui/elements/index.d.ts +1 -1
  3. package/dist/ui/elements/index.js +1 -1
  4. package/dist/ui/modules/dialog_overlay/DialogOverlay.svelte +1 -1
  5. package/dist/ui/modules/projects/Soulwork.svelte +1 -1
  6. package/dist/ui/modules/projects/Soulwork.svelte.d.ts +1 -1
  7. package/dist/ui/modules/projects/ThisWebpage.svelte +1 -1
  8. package/dist/ui/templates/SeaweedLayout/CreateUrlForm.svelte +1 -1
  9. package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte +2 -2
  10. package/dist/ui/templates/SeaweedLayout/EntryGroup.svelte.d.ts +1 -1
  11. package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte +1 -1
  12. package/dist/ui/templates/SeaweedLayout/EntryOrderConfig.svelte.d.ts +1 -1
  13. package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte +5 -5
  14. package/dist/ui/templates/SeaweedLayout/ProjectGroupConfig.svelte.d.ts +1 -1
  15. package/dist/ui/templates/SeaweedLayout/SeaweedLayout.svelte +2 -1
  16. package/dist/ui/templates/SeaweedLayout/props.d.ts +1 -1
  17. package/dist/ui/templates/blog_template/BlogTemplate.svelte +1 -1
  18. package/package.json +1 -1
  19. /package/dist/ui/elements/{text-chip → TextChip}/TextChip.svelte +0 -0
  20. /package/dist/ui/elements/{text-chip → TextChip}/TextChip.svelte.d.ts +0 -0
  21. /package/dist/ui/elements/{text-chip → TextChip}/TextChipProps.d.ts +0 -0
  22. /package/dist/ui/elements/{text-chip → TextChip}/TextChipProps.js +0 -0
  23. /package/dist/ui/elements/{text-chip → TextChip}/index.d.ts +0 -0
  24. /package/dist/ui/elements/{text-chip → TextChip}/index.js +0 -0
@@ -328,6 +328,10 @@ ol {
328
328
  list-style: decimal inside;
329
329
  }
330
330
 
331
+ li > ul, li > ol {
332
+ margin-inline-start: 2em;
333
+ }
334
+
331
335
  p {
332
336
  @apply mb-3;
333
337
  }
@@ -9,5 +9,5 @@ export * from "./PinyaCard/index";
9
9
  export * from "./WrapperProps";
10
10
  export * from "./PinyaButton";
11
11
  export * from "./PinyaAnchorButton";
12
- export * from "./text-chip";
12
+ export * from "./TextChip";
13
13
  export * from "./CodeBlock";
@@ -11,5 +11,5 @@ export * from "./PinyaCard/index";
11
11
  export * from "./WrapperProps";
12
12
  export * from "./PinyaButton";
13
13
  export * from "./PinyaAnchorButton";
14
- export * from "./text-chip";
14
+ export * from "./TextChip";
15
15
  export * from "./CodeBlock";
@@ -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/index";
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/index";
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/index";
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/text-chip/TextChip.svelte";
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 { PinyaButton } from "../../elements/index";
6
+ import PinyaButton from "../../elements/PinyaButton/PinyaButton.svelte";
7
7
 
8
8
  export const toast: ToastContext = getContext("toast");
9
9
 
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
- import type { ProjectGroup, SnippetMeta } from "../index";
3
- import { PinyaCard } from "../../elements/index";
2
+ import { PinyaCard } from "../../elements/PinyaCard";
3
+ import type { ProjectGroup, SnippetMeta } from "./";
4
4
 
5
5
  let {
6
6
  title,
@@ -1,4 +1,4 @@
1
- import type { ProjectGroup } from "../index";
1
+ import type { ProjectGroup } from "./";
2
2
  declare const EntryGroup: import("svelte").Component<ProjectGroup, {}, "">;
3
3
  type EntryGroup = ReturnType<typeof EntryGroup>;
4
4
  export default EntryGroup;
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import type { ProjectGroup, SnippetMeta } from "../index";
2
+ import type { ProjectGroup, SnippetMeta } from "./";
3
3
  import ProjectGroupConfig from "./ProjectGroupConfig.svelte";
4
4
 
5
5
  interface Props {
@@ -1,4 +1,4 @@
1
- import type { ProjectGroup, SnippetMeta } from "../index";
1
+ import type { ProjectGroup, SnippetMeta } from "./";
2
2
  interface Props {
3
3
  layout: ProjectGroup[];
4
4
  orderUrl: string;
@@ -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 type { ProjectGroup, SnippetMeta } from "../index";
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/index.js";
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
 
@@ -1,4 +1,4 @@
1
- import type { ProjectGroup, SnippetMeta } from "../index";
1
+ import type { ProjectGroup, SnippetMeta } from "./";
2
2
  import { type ToastContext } from "@skeletonlabs/skeleton-svelte";
3
3
  interface Props {
4
4
  layout: ProjectGroup[];
@@ -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, TextChip } from "../../elements/index";
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";
@@ -1,5 +1,5 @@
1
1
  import type { Snippet } from "svelte";
2
- import type { ProjectComponentProps } from "../index";
2
+ import type { ProjectComponentProps } from "./";
3
3
  type ComponentSnippet = Snippet<[ProjectComponentProps]>;
4
4
  export interface SnippetMeta {
5
5
  key: string;
@@ -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 "../index";
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
@@ -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": "4.0.0-alpha.2",
4
+ "version": "4.0.0",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && yarn package",