@getmicdrop/svelte-components 4.1.0 → 4.1.1
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/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/InputModal.svelte +1 -1
- package/dist/recipes/modals/ModalStateManager.svelte +1 -1
- package/dist/recipes/modals/StatusModal.svelte +1 -1
- 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
|
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { createEventDispatcher } from "svelte";
|
|
3
|
-
import { ExclamationTriangleOutline } from "
|
|
3
|
+
import { ExclamationTriangleOutline } from "../../primitives/Icons";
|
|
4
4
|
import Button from "../Button/Button.svelte";
|
|
5
5
|
import Cancel from "../../assets/svg/cancel.svg";
|
|
6
6
|
import Modal from "./Modal.svelte";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
2
|
import { createEventDispatcher } from "svelte";
|
|
3
|
-
import { CheckOutline, CloseOutline, ExclamationTriangleOutline, InfoCircleOutline } from "
|
|
3
|
+
import { CheckOutline, CloseOutline, ExclamationTriangleOutline, InfoCircleOutline } from "../../primitives/Icons";
|
|
4
4
|
import Button from "../Button/Button.svelte";
|
|
5
5
|
import Cancel from "../../assets/svg/cancel.svg";
|
|
6
6
|
import Modal from "./Modal.svelte";
|