@iroco/ui 1.15.3 → 1.16.1
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/NumberInput.svelte
CHANGED
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
text-overflow: ellipsis;
|
|
238
238
|
white-space: nowrap;
|
|
239
239
|
overflow: hidden;
|
|
240
|
-
border-radius: 0.
|
|
240
|
+
border-radius: 0.5rem;
|
|
241
241
|
}
|
|
242
242
|
.iroco-ui-form .iroco-ui-input input::placeholder {
|
|
243
243
|
color: var(--form-text-placeholder);
|
|
@@ -329,6 +329,7 @@
|
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
.password-aria-live {
|
|
332
|
+
height: 0;
|
|
332
333
|
width: 0;
|
|
333
334
|
overflow: hidden;
|
|
334
335
|
}</style>
|
package/dist/RadioButton.svelte
CHANGED
package/dist/TextInput.svelte
CHANGED
package/dist/scss/forms.scss
CHANGED
|
@@ -272,6 +272,7 @@
|
|
|
272
272
|
>
|
|
273
273
|
<!-- circle -->
|
|
274
274
|
<button
|
|
275
|
+
disabled={!clickable}
|
|
275
276
|
class="step
|
|
276
277
|
{i <= $progress ? (step.alert ? 'bg-danger' : 'bg-primary') : 'bg-secondary'}
|
|
277
278
|
text-light
|
|
@@ -327,6 +328,7 @@
|
|
|
327
328
|
<!-- text label -->
|
|
328
329
|
{#if typeof step.text != 'undefined'}
|
|
329
330
|
<button
|
|
331
|
+
disabled={!clickable}
|
|
330
332
|
class="steps__label"
|
|
331
333
|
class:hover-highlight={clickable}
|
|
332
334
|
style:margin-left={vertical ? (reverse ? null : stepLabelSpace) : null}
|