Skip to content

Commit

Permalink
Merge pull request #1547 from AdrianGonz97/fix/modal-store-import
Browse files Browse the repository at this point in the history
fix: modal store needs to be imported directly
  • Loading branch information
endigo9740 authored May 23, 2023
2 parents f94229d + b5c1a16 commit 2832b3d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/skeleton/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skeletonlabs/skeleton",
"version": "1.6.0",
"version": "1.6.1",
"description": "A SvelteKit component library.",
"author": "endigo9740 <[email protected]>",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/skeleton/src/lib/components/Table/Table.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { createEventDispatcher } from 'svelte';
import { tableA11y } from '../..';
import { tableA11y } from '../../utilities/DataTable/actions';
// Types
import type { CssClasses, TableSource } from '../..';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import type { CssClasses } from '../..';
import { storeHighlightJs } from './stores';
import { clipboard } from '../..';
import { clipboard } from '../../actions/Clipboard/clipboard';
// Props
/** Sets a language alias for Highlight.js syntax highlighting. */
Expand Down
2 changes: 1 addition & 1 deletion packages/skeleton/src/lib/utilities/Drawer/Drawer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import type { CssClasses } from '../..';
// Actions
import { focusTrap } from '../..';
import { focusTrap } from '../../actions/FocusTrap/focusTrap';
// Drawer Utils
import type { DrawerSettings } from './types';
Expand Down
3 changes: 2 additions & 1 deletion packages/skeleton/src/lib/utilities/Modal/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
// Types
import type { CssClasses } from '../..';
import { focusTrap, modalStore } from '../..';
import { modalStore } from './stores';
import { focusTrap } from '../../actions/FocusTrap/focusTrap';
import type { ModalComponent, ModalSettings } from './types';
// Props
Expand Down

0 comments on commit 2832b3d

Please sign in to comment.