@getmicdrop/svelte-components 2.0.6 → 2.0.7

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.
@@ -3,10 +3,10 @@
3
3
  import { writable } from "svelte/store";
4
4
  import { jwtDecode } from "jwt-decode";
5
5
  import QuarterView from "../../Calendar/QuarterView.svelte";
6
- import { timeAgo } from "../../utils/utils/utils";
7
- import { buildApiUrl, API_ENDPOINTS } from "../../utils/apiConfig.js";
8
- import { auth, initializeAuthState } from "../../stores/auth.js";
9
- import microphonePlaceholder from "../../assets/images/microphone.png";
6
+ import { timeAgo } from "../../../utils/utils/utils";
7
+ import { buildApiUrl, API_ENDPOINTS } from "../../../utils/apiConfig.js";
8
+ import { auth, initializeAuthState } from "../../../stores/auth.js";
9
+ import microphonePlaceholder from "../../../assets/images/microphone.png";
10
10
 
11
11
  export let show = false;
12
12
  export let venue = null;
@@ -1,5 +1,5 @@
1
1
  <script>
2
- import { microphonePlaceholder } from "../../utils/utils";
2
+ import { microphonePlaceholder } from "../../../utils/utils";
3
3
 
4
4
  export let image;
5
5
  export let title;
@@ -3,14 +3,14 @@
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";
7
- import { microphonePlaceholder, getUserDetails } from "../../utils/utils";
6
+ import { showToast } from "../../../stores/toaster";
7
+ import { microphonePlaceholder, getUserDetails } from "../../../utils/utils";
8
8
  import {
9
9
  formatHour,
10
10
  formattedDate,
11
11
  formattedFullDate,
12
12
  timeAgo,
13
- } from "../../utils/utils/utils";
13
+ } from "../../../utils/utils/utils";
14
14
  import {
15
15
  acceptInvite,
16
16
  declineInvite,
@@ -1,5 +1,5 @@
1
1
  <script>
2
- import { parseLocation, microphonePlaceholder } from "../../utils/utils";
2
+ import { parseLocation, microphonePlaceholder } from "../../../utils/utils";
3
3
 
4
4
  export let name = "";
5
5
  export let image = "";
@@ -2,10 +2,10 @@
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";
6
- import { getPerformerToken } from "../../utils/utils";
7
- import { timeAgo } from "../../utils/utils/utils";
8
- import { buildApiUrl, API_ENDPOINTS } from "../../utils/apiConfig";
5
+ import { showToast } from "../../../stores/toaster";
6
+ import { getPerformerToken } from "../../../utils/utils";
7
+ import { timeAgo } from "../../../utils/utils/utils";
8
+ import { buildApiUrl, API_ENDPOINTS } from "../../../utils/apiConfig";
9
9
  import { Dropdown, DropdownItem } from "flowbite-svelte";
10
10
  import { DotsHorizontalOutline } from "flowbite-svelte-icons";
11
11
  import Button from "../../Button/Button.svelte";
@@ -4,10 +4,10 @@
4
4
  export let readonly = false;
5
5
  export let shape = "default";
6
6
  export let label = "";
7
- import CancelIcon from "../../../assets/svg/cancel.svg";
7
+ import CancelIcon from "../../../../assets/svg/cancel.svg";
8
8
 
9
- import AddMain from "../../../assets/svg/add-main-01.svg";
10
- import CloudUpload from "../../../assets/svg/cloud-upload.svg";
9
+ import AddMain from "../../../../assets/svg/add-main-01.svg";
10
+ import CloudUpload from "../../../../assets/svg/cloud-upload.svg";
11
11
 
12
12
  let images = [];
13
13
  let error = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getmicdrop/svelte-components",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Shared component library for Micdrop applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",