hamzus-ui 0.0.53 → 0.0.55
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/package.json
CHANGED
|
@@ -142,7 +142,11 @@
|
|
|
142
142
|
|
|
143
143
|
<div class="date-picker {variant}">
|
|
144
144
|
{#if label}
|
|
145
|
-
<h5>{label}
|
|
145
|
+
<h5>{label}
|
|
146
|
+
{#if required}
|
|
147
|
+
<span style="color:var(--red)">*</span>
|
|
148
|
+
{/if}
|
|
149
|
+
</h5>
|
|
146
150
|
{/if}
|
|
147
151
|
<DropdownMenu.Root triggerFullWidth bind:toggleDisplay>
|
|
148
152
|
<DropdownMenu.Trigger slot="trigger">
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
export let fullWidth = false;
|
|
22
22
|
export let type = '';
|
|
23
23
|
export let style = '';
|
|
24
|
+
export let step = '';
|
|
24
25
|
export let placeholder = '';
|
|
25
26
|
export let errorMessage = '';
|
|
26
27
|
export let isLoading = false;
|
|
@@ -127,6 +128,7 @@
|
|
|
127
128
|
{value}
|
|
128
129
|
{required}
|
|
129
130
|
disabled={isLoading ? true : disabled}
|
|
131
|
+
{step}
|
|
130
132
|
|
|
131
133
|
/>
|
|
132
134
|
{#if type == 'password'}
|