@getmicdrop/svelte-components 4.1.0 → 4.1.2
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/calendar/FAQs/FAQs.svelte +1 -1
- package/dist/patterns/forms/FormValidationSummary.svelte +1 -1
- package/dist/patterns/navigation/Header.svelte +1 -1
- package/dist/recipes/CropImage/CropImage.svelte +1 -1
- package/dist/recipes/feedback/ErrorDisplay.svelte +1 -1
- package/dist/recipes/inputs/MultiSelect.svelte +1 -1
- package/dist/recipes/inputs/PlaceAutocomplete/PlaceAutocomplete.svelte +1 -1
- package/dist/recipes/inputs/Search.svelte +1 -1
- package/dist/recipes/inputs/SelectDropdown.svelte +1 -1
- package/dist/recipes/modals/ConfirmationModal.svelte +1 -1
- package/dist/recipes/modals/InputModal.svelte +2 -2
- package/dist/recipes/modals/ModalStateManager.svelte +2 -2
- package/dist/recipes/modals/StatusModal.svelte +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { slide } from "svelte/transition";
|
|
3
3
|
import { cubicOut } from "svelte/easing";
|
|
4
|
-
import WarningIcon from "
|
|
4
|
+
import WarningIcon from "../../primitives/Icons/WarningIcon.svelte";
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Object mapping field keys to error messages
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import { base } from '../../__LIB_PATHS__.js';
|
|
4
4
|
import { goto } from '../../__LIB_NAVIGATION__.js';
|
|
5
5
|
import Logo from "../../assets/images/Logo.png";
|
|
6
|
-
import Avatar from "
|
|
6
|
+
import Avatar from "../../primitives/Avatar/Avatar.svelte";
|
|
7
7
|
import DarkModeToggle from "../../primitives/DarkModeToggle.svelte";
|
|
8
8
|
import Icon from "../../primitives/Icons/Icon.svelte";
|
|
9
9
|
import ChevronLeft from "../../primitives/Icons/ChevronLeft.svelte";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import Cropper from 'svelte-easy-crop';
|
|
3
|
-
import { CloseOutline, MinusOutline, PlusOutline } from "
|
|
3
|
+
import { CloseOutline, MinusOutline, PlusOutline } from "../../primitives/Icons";
|
|
4
4
|
import Button from '../../primitives/Button/Button.svelte';
|
|
5
5
|
|
|
6
6
|
export let showModal = false;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import { onMount } from 'svelte';
|
|
3
|
-
import { SearchOutline } from "
|
|
3
|
+
import { SearchOutline } from "../../../primitives/Icons";
|
|
4
4
|
import * as GMaps from '@googlemaps/js-api-loader';
|
|
5
5
|
import { PUBLIC_GOOGLE_MAPS_API_KEY } from '../../../config.js';
|
|
6
6
|
const { Loader } = GMaps;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* />
|
|
13
13
|
*/
|
|
14
14
|
import { createEventDispatcher, onMount, onDestroy, tick } from "svelte";
|
|
15
|
-
import { ChevronDownOutline } from "
|
|
15
|
+
import { ChevronDownOutline } from "../../primitives/Icons";
|
|
16
16
|
|
|
17
17
|
/** @type {Array<{label: string, value: string}>} Options to display */
|
|
18
18
|
export let options = [];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { createEventDispatcher } from "svelte";
|
|
3
|
-
import { ExclamationTriangleOutline } from "
|
|
4
|
-
import Button from "
|
|
3
|
+
import { ExclamationTriangleOutline } from "../../primitives/Icons";
|
|
4
|
+
import Button from "../../primitives/Button/Button.svelte";
|
|
5
5
|
import Cancel from "../../assets/svg/cancel.svg";
|
|
6
6
|
import Modal from "./Modal.svelte";
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import Icon from "
|
|
3
|
-
import Button from "
|
|
2
|
+
import Icon from "../../primitives/Icons/Icon.svelte";
|
|
3
|
+
import Button from "../../primitives/Button/Button.svelte";
|
|
4
4
|
|
|
5
5
|
/** Whether the modal is currently processing an action */
|
|
6
6
|
export let isProcessing = false;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { createEventDispatcher } from "svelte";
|
|
3
|
-
import { CheckOutline, CloseOutline, ExclamationTriangleOutline, InfoCircleOutline } from "
|
|
4
|
-
import Button from "
|
|
3
|
+
import { CheckOutline, CloseOutline, ExclamationTriangleOutline, InfoCircleOutline } from "../../primitives/Icons";
|
|
4
|
+
import Button from "../../primitives/Button/Button.svelte";
|
|
5
5
|
import Cancel from "../../assets/svg/cancel.svg";
|
|
6
6
|
import Modal from "./Modal.svelte";
|
|
7
7
|
|