iconograph-ui 2.0.3 → 2.0.4
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
// @ts-nocheck
|
|
3
3
|
import { onMount } from 'svelte';
|
|
4
|
-
import { clickOutside } from '
|
|
4
|
+
import { clickOutside } from './../../utils/ui/clickOutside';
|
|
5
5
|
import detailsIcon from '../../assets/icons/icon-details.svg?url';
|
|
6
6
|
import Portal from '../display/Portal.svelte';
|
|
7
7
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { onMount } from 'svelte';
|
|
4
4
|
import Portal from '../display/Portal.svelte';
|
|
5
5
|
import UserPicture from '../user/UserPicture.svelte';
|
|
6
|
-
import {clickOutside} from '
|
|
6
|
+
import { clickOutside } from './../../utils/ui/clickOutside';
|
|
7
7
|
import { createEventDispatcher } from 'svelte'
|
|
8
8
|
import loaderIcon from '../../assets/icons/loader-ring-grey.svg?url';
|
|
9
9
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @ts-nocheck
|
|
3
3
|
import { onMount, createEventDispatcher } from 'svelte';
|
|
4
4
|
import TableColumnFilter from './TableColumnFilter.svelte';
|
|
5
|
-
import {clickOutside} from '
|
|
5
|
+
import { clickOutside } from './../../utils/ui/clickOutside';
|
|
6
6
|
import searchIcon from '../../assets/icons/icon-search-white.svg?url';
|
|
7
7
|
|
|
8
8
|
const dispatch = createEventDispatcher();
|