rune-lab 0.4.2-beta.12 → 0.4.2-beta.13

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.
@@ -5,8 +5,8 @@
5
5
  localStorageDriver,
6
6
  initializeStores,
7
7
  defineRune,
8
- } from "./kernel/src/mod.ts";
9
- import type { PersistenceDriver, RunePlugin } from "./kernel/src/mod.ts";
8
+ } from "./kernel/src/mod.js";
9
+ import type { PersistenceDriver, RunePlugin } from "./kernel/src/mod.js";
10
10
 
11
11
  /**
12
12
  * Namespaced configuration for Rune Lab plugins.
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { portal } from "../../../kernel/src/mod.ts";
2
+ import { portal } from "../../../kernel/src/mod.js";
3
3
  import { type Snippet } from "svelte";
4
4
 
5
5
  let {
@@ -1,8 +1,8 @@
1
1
  <!-- src/lib/features/layout/smart/ConnectedNavigationPanel.svelte -->
2
2
  <script lang="ts">
3
- import { getLayoutStore, type NavigationSection } from "../../../kernel/src/mod.ts";
3
+ import { getLayoutStore, type NavigationSection } from "../../../kernel/src/mod.js";
4
4
  import NavigationPanel from "./NavigationPanel.svelte";
5
- import { createNavigationConnection } from "./connection-factory.ts";
5
+ import { createNavigationConnection } from "./connection-factory.js";
6
6
  import type { Snippet } from "svelte";
7
7
 
8
8
  let { sections, header, footer } = $props<{
@@ -1,8 +1,8 @@
1
1
  <!-- src/lib/features/layout/smart/ConnectedWorkspaceStrip.svelte -->
2
2
  <script lang="ts">
3
- import { getLayoutStore, type WorkspaceItem } from "../../../kernel/src/mod.ts";
3
+ import { getLayoutStore, type WorkspaceItem } from "../../../kernel/src/mod.js";
4
4
  import WorkspaceStrip from "./WorkspaceStrip.svelte";
5
- import { createWorkspaceConnection } from "./connection-factory.ts";
5
+ import { createWorkspaceConnection } from "./connection-factory.js";
6
6
  import type { Snippet } from "svelte";
7
7
 
8
8
  let { items, globalActions } = $props<{
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import ResourceSelector from "./ResourceSelector.svelte";
3
- import { getLanguageStore } from "../../../kernel/src/mod.ts";
4
- import { setLocale } from "../../../../i18n/paraglide/runtime.ts";
3
+ import { getLanguageStore } from "../../../kernel/src/mod.js";
4
+ import { setLocale } from "../../../../i18n/paraglide/runtime.js";
5
5
 
6
6
  const languageStore = getLanguageStore();
7
7
 
@@ -1,7 +1,7 @@
1
1
  <!-- src/lib/layout/NavigationPanel.svelte -->
2
2
  <script lang="ts">
3
3
  import type { Snippet } from "svelte";
4
- import type { NavigationItem, NavigationSection } from "../../../kernel/src/mod.ts";
4
+ import type { NavigationItem, NavigationSection } from "../../../kernel/src/mod.js";
5
5
 
6
6
  let {
7
7
  header,
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  import AppSettingSelector from "./AppSettingSelector.svelte";
3
- import type { ConfigStore } from "../../../kernel/src/mod.ts";
4
- import * as rlMessages from "../../../../i18n/paraglide/messages.ts";
3
+ import type { ConfigStore } from "../../../kernel/src/mod.js";
4
+ import * as rlMessages from "../../../../i18n/paraglide/messages.js";
5
5
  import { getContext, type Snippet } from "svelte";
6
6
 
7
7
  /**
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import ResourceSelector from "./ResourceSelector.svelte";
3
- import { getThemeStore, type Theme } from "../../../kernel/src/mod.ts";
3
+ import { getThemeStore, type Theme } from "../../../kernel/src/mod.js";
4
4
 
5
5
  const themeStore = getThemeStore();
6
6
 
@@ -1,7 +1,7 @@
1
1
  <!-- src/lib/layout/WorkspaceLayout.svelte -->
2
2
  <script module lang="ts">
3
3
  import type { Snippet } from "svelte";
4
- import type { LayoutConfig } from "./types.ts";
4
+ import type { LayoutConfig } from "./types.js";
5
5
 
6
6
  export interface WorkspaceLayoutProps {
7
7
  /** Content for the far-left vertical strip */
@@ -39,12 +39,12 @@
39
39
  import {
40
40
  getLayoutStore,
41
41
  getLanguageStore,
42
- } from "./mod.ts";
43
- import { LAYOUT_SHORTCUTS } from "./types.ts";
42
+ } from "./mod.js";
43
+ import { LAYOUT_SHORTCUTS } from "./types.js";
44
44
  import {
45
45
  getShortcutStore,
46
46
  shortcutListener,
47
- } from "../../palettes/src/mod.ts";
47
+ } from "../../palettes/src/mod.js";
48
48
  import { onMount } from "svelte";
49
49
 
50
50
  /**
@@ -1,7 +1,7 @@
1
1
  <!-- src/lib/layout/WorkspaceStrip.svelte -->
2
2
  <script lang="ts">
3
3
  import type { Snippet } from "svelte";
4
- import type { WorkspaceItem } from "../../../kernel/src/mod.ts";
4
+ import type { WorkspaceItem } from "../../../kernel/src/mod.js";
5
5
 
6
6
  let {
7
7
  items = [],
@@ -1,9 +1,9 @@
1
1
  <!-- src/client/sdk/ui/src/features/config/CommandPalette.svelte -->
2
2
  <script lang="ts">
3
3
  import { tick } from "svelte";
4
- import { getCommandStore, type Command } from "../../../../kernel/src/mod.ts";
5
- import { getShortcutStore } from "../../../../kernel/src/mod.ts";
6
- import { Icon } from "../../../layout/src/mod.ts";
4
+ import { getCommandStore, type Command } from "../../../../kernel/src/mod.js";
5
+ import { getShortcutStore } from "../../../../kernel/src/mod.js";
6
+ import { Icon } from "../../../layout/src/mod.js";
7
7
 
8
8
  let { shortcutKey = "shift+k" } = $props<{ shortcutKey?: string }>();
9
9
 
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import { getToastStore, portal } from "../../../../kernel/src/mod.ts";
2
+ import { getToastStore, portal } from "../../../../kernel/src/mod.js";
3
3
  import { flip } from "svelte/animate";
4
4
  import { fade, fly } from "svelte/transition";
5
5
 
@@ -1,12 +1,12 @@
1
1
  <!-- src/lib/features/shortcuts/ShortcutPalette.svelte -->
2
2
  <script lang="ts">
3
3
  import { tick } from "svelte";
4
- import type { ShortcutEntry } from "../../../../kernel/src/mod.ts";
4
+ import type { ShortcutEntry } from "../../../../kernel/src/mod.js";
5
5
  import {
6
6
  getAppStore,
7
7
  getShortcutStore,
8
8
  LAYOUT_SHORTCUTS,
9
- } from "../../../../kernel/src/mod.ts";
9
+ } from "../../../../kernel/src/mod.js";
10
10
 
11
11
  const appStore = getAppStore();
12
12
  const shortcutStore = getShortcutStore();
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
- import { ResourceSelector } from "../../../layout/src/mod.ts";
3
- import { getCurrencyStore } from "../../../../kernel/src/mod.ts";
2
+ import { ResourceSelector } from "../../../layout/src/mod.js";
3
+ import { getCurrencyStore } from "../../../../kernel/src/mod.js";
4
4
 
5
5
  const currencyStore = getCurrencyStore();
6
6
 
@@ -1,11 +1,11 @@
1
1
  <script lang="ts">
2
- import { getLanguageStore, getCurrencyStore } from "../../../../kernel/src/mod.ts";
2
+ import { getLanguageStore, getCurrencyStore } from "../../../../kernel/src/mod.js";
3
3
  import {
4
4
  formatAmount,
5
5
  toMinorUnit,
6
6
  type ISO4217Code,
7
7
  MoneyPrimitive,
8
- } from "./mod.ts";
8
+ } from "./mod.js";
9
9
  import { DEV } from "esm-env";
10
10
 
11
11
  let {
@@ -1,6 +1,6 @@
1
1
  <script module lang="ts">
2
- import type { ISO4217Code } from "./mod.ts";
3
- import { MoneyPrimitive } from "./mod.ts";
2
+ import type { ISO4217Code } from "./mod.js";
3
+ import { MoneyPrimitive } from "./mod.js";
4
4
 
5
5
  export interface MoneyInputProps {
6
6
  /** Current value in minor or major units (see unit prop) */
@@ -34,8 +34,8 @@
34
34
  </script>
35
35
 
36
36
  <script lang="ts">
37
- import { getCurrencyStore } from "../../../../kernel/src/mod.ts";
38
- import { toMinorUnit } from "./mod.ts";
37
+ import { getCurrencyStore } from "../../../../kernel/src/mod.js";
38
+ import { toMinorUnit } from "./mod.js";
39
39
  import { DEV } from "esm-env";
40
40
 
41
41
  let {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rune-lab",
3
- "version": "0.4.2-beta.12",
3
+ "version": "0.4.2-beta.13",
4
4
  "description": "Modern toolkit for Svelte 5 Runes applications.",
5
5
  "type": "module",
6
6
  "readme": "./README.md",