aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/lib/components/input.svelte
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-10-03 18:04:19 +0200
committerivarlovlie <git@ivarlovlie.no>2022-10-03 18:04:19 +0200
commit3352727aa638fcfcc6461d2aaded8ef9603acc0d (patch)
tree880b381af0c1e717803c6fa233cc8792193d84dd /apps/kit/src/lib/components/input.svelte
parentc5af87a9312affc84ee9dbc654f8a4942f0d1e1c (diff)
downloadgreatoffice-3352727aa638fcfcc6461d2aaded8ef9603acc0d.tar.xz
greatoffice-3352727aa638fcfcc6461d2aaded8ef9603acc0d.zip
feat: Initial setup facilitating testing
Diffstat (limited to 'apps/kit/src/lib/components/input.svelte')
-rw-r--r--apps/kit/src/lib/components/input.svelte3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/kit/src/lib/components/input.svelte b/apps/kit/src/lib/components/input.svelte
index 999c565..c0ed654 100644
--- a/apps/kit/src/lib/components/input.svelte
+++ b/apps/kit/src/lib/components/input.svelte
@@ -1,4 +1,5 @@
<script lang="ts">
+ import pwKey from "$actions/pwKey";
import { random_string } from "$lib/helpers";
import { ExclamationCircleIcon } from "./icons";
@@ -18,6 +19,7 @@
export let addon: string | undefined = undefined;
export let value: string | undefined;
export let wrapperClass: string | undefined = undefined;
+ export let _pwKey: string | undefined = undefined;
$: ariaErrorDescribedBy = id + "__" + "error";
$: attributes = {
@@ -70,6 +72,7 @@
{/if}
<input
use:typeAction
+ use:pwKey={_pwKey}
{name}
{id}
{...attributes}