@getmicdrop/svelte-components 2.0.4 → 2.0.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.
@@ -1,7 +1,7 @@
1
1
  <script context="module">
2
2
  import { Story } from "@storybook/addon-svelte-csf";
3
3
  import { Toaster } from "svelte-sonner";
4
- import { showToast } from "../../../stores/toaster";
4
+ import { showToast } from "../../stores/toaster";
5
5
 
6
6
  export const meta = {
7
7
  title: "Components/Toaster",
@@ -5,7 +5,7 @@
5
5
  import QuarterView from "../../Calendar/QuarterView.svelte";
6
6
  import { timeAgo } from "../../../utils/utils/utils";
7
7
  import { buildApiUrl, API_ENDPOINTS } from "../../../utils/apiConfig.js";
8
- import { auth, initializeAuthState } from "../../../../stores/auth.js";
8
+ import { auth, initializeAuthState } from "../../../stores/auth.js";
9
9
  import microphonePlaceholder from "../../../assets/images/microphone.png";
10
10
 
11
11
  export let show = false;
@@ -3,7 +3,7 @@
3
3
  import Icon from "../../Icons/Icon.svelte";
4
4
  import Input from "../../Input/Input.svelte";
5
5
  import Modal from "../../Modal/Modal.svelte";
6
- import { showToast } from "../../../../stores/toaster";
6
+ import { showToast } from "../../../stores/toaster";
7
7
  import { microphonePlaceholder, getUserDetails } from "../../../utils/utils";
8
8
  import {
9
9
  formatHour,
@@ -2,7 +2,7 @@
2
2
  import Input from "../../Input/Input.svelte";
3
3
  import Modal from "../../Modal/Modal.svelte";
4
4
  import VenueInfo from "./VenueInfo.svelte";
5
- import { showToast } from "../../../../stores/toaster";
5
+ import { showToast } from "../../../stores/toaster";
6
6
  import { getPerformerToken } from "../../../utils/utils";
7
7
  import { timeAgo } from "../../../utils/utils/utils";
8
8
  import { buildApiUrl, API_ENDPOINTS } from "../../../utils/apiConfig";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmicdrop/svelte-components",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Shared component library for Micdrop applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",