luna-plus 1.0.0 → 1.0.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/Input/Input.svelte +2 -1
- package/package.json +1 -1
package/dist/Input/Input.svelte
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
onkeyup,
|
|
28
28
|
onclear,
|
|
29
29
|
class: cls = '',
|
|
30
|
+
style,
|
|
30
31
|
...attrs
|
|
31
32
|
}: InputProps = $props()
|
|
32
33
|
|
|
@@ -108,7 +109,7 @@
|
|
|
108
109
|
}
|
|
109
110
|
</script>
|
|
110
111
|
|
|
111
|
-
<div class={classes}>
|
|
112
|
+
<div class={classes} {style}>
|
|
112
113
|
<div class="ln-input__wrapper">
|
|
113
114
|
{#if hasPrefix}
|
|
114
115
|
<span class="ln-input__prefix">
|