@likable-hair/svelte 3.0.61 → 3.0.62
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.
|
@@ -7,15 +7,15 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
7
7
|
</script>
|
|
8
8
|
|
|
9
9
|
<div
|
|
10
|
-
class="textfield-container {clazz
|
|
10
|
+
class="textfield-container {clazz?.container || ''}"
|
|
11
11
|
>
|
|
12
|
-
<div class="row {clazz
|
|
12
|
+
<div class="row {clazz?.row || ''}">
|
|
13
13
|
<slot name="prepend" {prependIcon} {iconSize}>
|
|
14
14
|
{#if !!prependIcon}
|
|
15
15
|
<Icon name={prependIcon} --icon-size={iconSize}></Icon>
|
|
16
16
|
{/if}
|
|
17
17
|
</slot>
|
|
18
|
-
<div class="textfield {clazz
|
|
18
|
+
<div class="textfield {clazz?.field || ''}">
|
|
19
19
|
<slot name="prepend-inner" {prependInnerIcon} {iconSize}>
|
|
20
20
|
{#if !!prependInnerIcon}
|
|
21
21
|
<Icon name={prependInnerIcon} --icon-size={iconSize}></Icon>
|
|
@@ -37,7 +37,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
37
37
|
on:keyup
|
|
38
38
|
on:change
|
|
39
39
|
name={name}
|
|
40
|
-
class={clazz
|
|
40
|
+
class={clazz?.input || ''}
|
|
41
41
|
bind:this={input}
|
|
42
42
|
{...$$restProps}
|
|
43
43
|
/>
|
|
@@ -57,7 +57,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
57
57
|
on:keyup
|
|
58
58
|
on:change
|
|
59
59
|
name={name}
|
|
60
|
-
class={clazz
|
|
60
|
+
class={clazz?.input || ''}
|
|
61
61
|
bind:this={input}
|
|
62
62
|
{...$$restProps}
|
|
63
63
|
/>
|
|
@@ -77,7 +77,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
77
77
|
on:keyup
|
|
78
78
|
on:change
|
|
79
79
|
name={name}
|
|
80
|
-
class={clazz
|
|
80
|
+
class={clazz?.input || ''}
|
|
81
81
|
bind:this={input}
|
|
82
82
|
{...$$restProps}
|
|
83
83
|
/>
|
|
@@ -97,7 +97,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
97
97
|
on:keyup
|
|
98
98
|
on:change
|
|
99
99
|
name={name}
|
|
100
|
-
class={clazz
|
|
100
|
+
class={clazz?.input || ''}
|
|
101
101
|
bind:this={input}
|
|
102
102
|
{...$$restProps}
|
|
103
103
|
/>
|
|
@@ -117,7 +117,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
117
117
|
on:keyup
|
|
118
118
|
on:change
|
|
119
119
|
name={name}
|
|
120
|
-
class={clazz
|
|
120
|
+
class={clazz?.input || ''}
|
|
121
121
|
bind:this={input}
|
|
122
122
|
{...$$restProps}
|
|
123
123
|
/>
|
|
@@ -134,7 +134,7 @@ export let value = void 0, type = "text", placeholder = void 0, disabled = false
|
|
|
134
134
|
{/if}
|
|
135
135
|
</slot>
|
|
136
136
|
</div>
|
|
137
|
-
<div class="row {clazz
|
|
137
|
+
<div class="row {clazz?.hint || ''}">
|
|
138
138
|
<slot name="hint">
|
|
139
139
|
{#if !!hint}
|
|
140
140
|
<span class="hint">{hint}</span>
|
|
@@ -4,7 +4,7 @@ declare const __propDef: {
|
|
|
4
4
|
src: string;
|
|
5
5
|
title?: string | undefined;
|
|
6
6
|
description?: string | undefined;
|
|
7
|
-
direction?: "
|
|
7
|
+
direction?: "row" | "column" | undefined;
|
|
8
8
|
reverse?: boolean | undefined;
|
|
9
9
|
avatarSpacing?: string | undefined;
|
|
10
10
|
width?: string | undefined;
|