@joewinke/jatui 0.1.4 → 0.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joewinke/jatui",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "description": "Shared Svelte 5 component library for JAT projects",
6
6
  "type": "module",
@@ -10,8 +10,8 @@
10
10
  PipelineViewMode,
11
11
  StageColors,
12
12
  PipelineTableColumn
13
- } from '$lib/types/pipeline';
14
- import { DEFAULT_PIPELINE_CONFIG } from '$lib/types/pipeline';
13
+ } from '../../types/pipeline';
14
+ import { DEFAULT_PIPELINE_CONFIG } from '../../types/pipeline';
15
15
  import PipelineColumn from './PipelineColumn.svelte';
16
16
 
17
17
  interface Props {
@@ -1,5 +1,5 @@
1
1
  <script lang="ts">
2
- import type { PipelineItem, PipelineStage, StageColors } from '$lib/types/pipeline';
2
+ import type { PipelineItem, PipelineStage, StageColors } from '../../types/pipeline';
3
3
 
4
4
  interface Props {
5
5
  item: PipelineItem;
@@ -5,7 +5,7 @@
5
5
  PipelineItem,
6
6
  StageColors,
7
7
  PipelineDragConfig
8
- } from '$lib/types/pipeline';
8
+ } from '../../types/pipeline';
9
9
  import { dndzone } from 'svelte-dnd-action';
10
10
  import { flip } from 'svelte/animate';
11
11
  import PipelineCard from './PipelineCard.svelte';