@turnipxenon/pineapple 3.0.0-alpha.13 → 3.0.0-alpha.15

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.
@@ -2,7 +2,7 @@ import type { LineBehaviorNode } from "../../line_core/LineBehaviorNode";
2
2
  import type { LineNodeArguments } from "../../line_core/LineNodeArguments";
3
3
  import type { LineBehaviorResult } from "../../line_core/LineBehaviorResult";
4
4
  import { SetVariableNode } from "../SetVariableNode";
5
- import type { IDialogManager } from "../../../../..";
5
+ import type { IDialogManager } from "../../../IDialogManager";
6
6
  export declare class JumpCommand implements LineBehaviorNode {
7
7
  setVariableNode: SetVariableNode;
8
8
  dialogManager: undefined | IDialogManager;
@@ -10,7 +10,7 @@ export class JumpCommand {
10
10
  }
11
11
  process(nodeArgs) {
12
12
  if (this.dialogManager === undefined) {
13
- console.error('Dialog Manger not yet initialized');
13
+ console.warn('Dialog Manger not yet initialized');
14
14
  return {
15
15
  renderedLine: "",
16
16
  nextState: nodeArgs.initState,
@@ -5,8 +5,9 @@
5
5
  import MailIcon from "../../assets/icons/mail.svg";
6
6
  import GithubIcon from "../../assets/icons/github-mark.svg";
7
7
  import LinkedinIcon from "../../assets/icons/linkedin.svg";
8
- import { ButtonVariant, ImageIcon, PinyaButton } from "../elements/index";
9
8
  import { ItchLogoHotLink } from "../../consts";
9
+ import { ButtonVariant, PinyaButton } from "../elements/pinya-button/index";
10
+ import ImageIcon from "../elements/ImageIcon.svelte";
10
11
 
11
12
  /** @type {{isSmallVersion?: boolean, email?: string, linkedinSlug?: string, isSlot?: boolean, allowLinkedIn?: boolean}} */
12
13
  let {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
- import { ColorScheme } from '..';
3
2
  import { ButtonVariant, type PinyaButtonProps } from './props';
3
+ import { ColorScheme } from "../ColorScheme";
4
4
 
5
5
  let {
6
6
  children,
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": "3.0.0-alpha.13",
4
+ "version": "3.0.0-alpha.15",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
7
7
  "build": "vite build && yarn package",
@@ -27,6 +27,7 @@
27
27
  "eslint-config-prettier": "^10.0.1",
28
28
  "eslint-plugin-svelte": "^3.0.0",
29
29
  "globals": "^16.0.0",
30
+ "madge": "^8.0.0",
30
31
  "prettier": "^3.4.2",
31
32
  "prettier-plugin-svelte": "^3.3.3",
32
33
  "prettier-plugin-tailwindcss": "^0.6.11",
@@ -50,7 +51,6 @@
50
51
  "@types/node": "^20.11.25",
51
52
  "highlight.js": "^11.8.0",
52
53
  "htmlparser2": "^9.1.0",
53
- "madge": "^8.0.0",
54
54
  "mode-watcher": "^0.5.1",
55
55
  "node-html-parser": "^6.1.5",
56
56
  "publint": "^0.2.7",