12 implement twilio sms #37

Merged
BenjaminPalko merged 26 commits from 12-implement-twilio-sms into master 2025-01-02 20:11:28 -05:00
5 changed files with 4 additions and 6 deletions
Showing only changes of commit 12e9233ace - Show all commits

View file

@ -1 +1,2 @@
export { default as Textarea } from './Textarea.svelte'; export { default as Textarea } from './Textarea.svelte';
export { default as TextInput } from './TextInput.svelte';

View file

@ -1,3 +0,0 @@
import TextInput from './TextInput.svelte';
export default TextInput;

View file

@ -1,6 +1,6 @@
<script lang="ts"> <script lang="ts">
import Button from '$lib/components/common/Button'; import Button from '$lib/components/common/Button';
import TextInput from '$lib/components/common/TextInput'; import { TextInput } from '$lib/components/DataInput';
import Tabs from '$lib/components/Navigation/Tabs'; import Tabs from '$lib/components/Navigation/Tabs';
import { messages } from '$lib/i18n/index.js'; import { messages } from '$lib/i18n/index.js';
import { fade } from 'svelte/transition'; import { fade } from 'svelte/transition';
@ -79,4 +79,4 @@
.page { .page {
@apply flex flex-col items-center justify-around gap-24 py-[10%]; @apply flex flex-col items-center justify-around gap-24 py-[10%];
} }
</style> </style>