@getmicdrop/svelte-components 2.0.2 → 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.
- package/dist/components/Layout/Header.svelte +2 -2
- package/dist/components/Modal/Modal.svelte +1 -1
- package/dist/components/pages/performers/AvailabilityCalendarModal.svelte +3 -3
- package/dist/components/pages/performers/ModalShowInfo.svelte +1 -1
- package/dist/components/pages/performers/ShowItemCard.svelte +2 -2
- package/dist/components/pages/performers/VenueInfo.svelte +1 -1
- package/dist/components/pages/performers/VenueItemCard.svelte +3 -3
- package/package.json +1 -1
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import { page } from '../../__LIB_STORES__.js';
|
|
3
3
|
import { base } from '../../__LIB_PATHS__.js';
|
|
4
4
|
import { goto } from '../../__LIB_NAVIGATION__.js';
|
|
5
|
-
import Logo from "
|
|
5
|
+
import Logo from "../../assets/images/Logo.png";
|
|
6
6
|
import { Avatar } from "flowbite-svelte";
|
|
7
7
|
import DarkModeToggle from "../DarkModeToggle.svelte";
|
|
8
8
|
import PageBackButton from "../pages/performers/PageBackButton.svelte";
|
|
9
9
|
import Icon from "../Icons/Icon.svelte";
|
|
10
10
|
import { fade, fly } from "svelte/transition";
|
|
11
11
|
import { cubicOut } from "svelte/easing";
|
|
12
|
-
import { portal } from "
|
|
12
|
+
import { portal } from "../../utils/portal.js";
|
|
13
13
|
|
|
14
14
|
export let signoutHandler = () => {};
|
|
15
15
|
export let name = "";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { createEventDispatcher, onMount, onDestroy } from "svelte";
|
|
3
3
|
import { fade, fly } from "svelte/transition";
|
|
4
4
|
import { cubicOut } from "svelte/easing";
|
|
5
|
-
import { portal } from "
|
|
5
|
+
import { portal } from "../../utils/portal.js";
|
|
6
6
|
|
|
7
7
|
export let show = false;
|
|
8
8
|
export let isProcessing = false;
|
|
@@ -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 "
|
|
7
|
-
import { buildApiUrl, API_ENDPOINTS } from "
|
|
6
|
+
import { timeAgo } from "../../../utils/utils/utils";
|
|
7
|
+
import { buildApiUrl, API_ENDPOINTS } from "../../../utils/apiConfig.js";
|
|
8
8
|
import { auth, initializeAuthState } from "../../../../stores/auth.js";
|
|
9
|
-
import microphonePlaceholder from "
|
|
9
|
+
import microphonePlaceholder from "../../../assets/images/microphone.png";
|
|
10
10
|
|
|
11
11
|
export let show = false;
|
|
12
12
|
export let venue = null;
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
import Input from "../../Input/Input.svelte";
|
|
5
5
|
import Modal from "../../Modal/Modal.svelte";
|
|
6
6
|
import { showToast } from "../../../../stores/toaster";
|
|
7
|
-
import { microphonePlaceholder, getUserDetails } from "
|
|
7
|
+
import { microphonePlaceholder, getUserDetails } from "../../../utils/utils";
|
|
8
8
|
import {
|
|
9
9
|
formatHour,
|
|
10
10
|
formattedDate,
|
|
11
11
|
formattedFullDate,
|
|
12
12
|
timeAgo,
|
|
13
|
-
} from "
|
|
13
|
+
} from "../../../utils/utils/utils";
|
|
14
14
|
import {
|
|
15
15
|
acceptInvite,
|
|
16
16
|
declineInvite,
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import Modal from "../../Modal/Modal.svelte";
|
|
4
4
|
import VenueInfo from "./VenueInfo.svelte";
|
|
5
5
|
import { showToast } from "../../../../stores/toaster";
|
|
6
|
-
import { getPerformerToken } from "
|
|
7
|
-
import { timeAgo } from "
|
|
8
|
-
import { buildApiUrl, API_ENDPOINTS } from "
|
|
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";
|