add rules read timeout of 30 seconds
All checks were successful
delpoy / build-and-deploy (push) Successful in 42s

This commit is contained in:
2023-11-29 01:25:50 +01:00
parent 47867738f8
commit 9cd78231c3
4 changed files with 33 additions and 27 deletions

View File

@@ -12,6 +12,7 @@
export let readonly = false;
export let size: 'xs' | 'sm' | 'md' | 'lg' = 'md';
export let pickyWidth = true;
export let containerClass = '';
export let inputElement: HTMLInputElement | undefined = undefined;
@@ -34,7 +35,7 @@
</script>
<!-- the cursor-not-allowed class must be set here because a disabled button does not respect the 'cursor' css property -->
<div class={type === 'submit' && disabled ? 'cursor-not-allowed' : ''}>
<div class={containerClass} class:cursor-not-allowed={type === 'submit' && disabled}>
{#if type === 'submit'}
<input
class="btn"