@valerius_petrini/corekit-ui 0.1.26 → 0.1.27

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 @@
2
2
  import { twMerge } from "tailwind-merge";
3
3
  import { onMount } from "svelte";
4
4
 
5
- import type { DisplaySegment, TypewriterAction } from "../types.js";
5
+ import type { DisplaySegment, TypewriterAction } from "../types/Typewriter.d.js";
6
6
 
7
7
  let { actions = [] as TypewriterAction[], class: className = "" } = $props();
8
8
 
@@ -1,4 +1,4 @@
1
- import type { TypewriterAction } from "../types.js";
1
+ import type { TypewriterAction } from "../types/Typewriter.d.ts";
2
2
  declare const Typewriter: import("svelte").Component<{
3
3
  actions?: TypewriterAction[];
4
4
  class?: string;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import Button from "./components/Button.svelte";
2
- import Typewriter from "./components/Typewriter.svelte";
3
- import Analytics from "./components/Analytics.svelte";
4
- import SEO from "./components/SEO.svelte";
5
- import { fbmBackground } from "./actions/fbm.ts";
6
- export { Button, Typewriter, Analytics, SEO, fbmBackground };
1
+ export { default as Button } from "./components/Button.svelte";
2
+ export { default as Typewriter } from "./components/Typewriter.svelte";
3
+ export { default as Analytics } from "./components/Analytics.svelte";
4
+ export { default as SEO } from "./components/SEO.svelte";
5
+ export { fbmBackground } from "./actions/fbm.ts";
6
+ export type { TypewriterAction, DisplaySegment } from "./types/Typewriter.d.ts";
package/dist/index.js CHANGED
@@ -1,7 +1,5 @@
1
- // Reexport your entry components here
2
- import Button from "./components/Button.svelte";
3
- import Typewriter from "./components/Typewriter.svelte";
4
- import Analytics from "./components/Analytics.svelte";
5
- import SEO from "./components/SEO.svelte";
6
- import { fbmBackground } from "./actions/fbm.js";
7
- export { Button, Typewriter, Analytics, SEO, fbmBackground };
1
+ export { default as Button } from "./components/Button.svelte";
2
+ export { default as Typewriter } from "./components/Typewriter.svelte";
3
+ export { default as Analytics } from "./components/Analytics.svelte";
4
+ export { default as SEO } from "./components/SEO.svelte";
5
+ export { fbmBackground } from "./actions/fbm.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valerius_petrini/corekit-ui",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Component Library used across all my projects",
5
5
  "author": "Valerius Petrini Jr.",
6
6
  "license": "MIT",
File without changes