lutra 0.1.64 → 0.1.65
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/css/2-base.css
CHANGED
|
@@ -292,6 +292,12 @@ input:disabled, textarea:disabled, select:disabled {
|
|
|
292
292
|
padding-block: calc(var(--button-padding-block) * 0.5);
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
.button.xs {
|
|
296
|
+
padding-inline: calc(var(--button-padding-inline) * 0.25);
|
|
297
|
+
padding-block: calc(var(--button-padding-block) * 0.25);
|
|
298
|
+
font-size: var(--font-size-xs);
|
|
299
|
+
}
|
|
300
|
+
|
|
295
301
|
.button:hover,
|
|
296
302
|
::file-selector-button:hover {
|
|
297
303
|
color: var(--button-submit-color-hover);
|
package/dist/form/Button.svelte
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
href?: string;
|
|
18
18
|
type?: 'button' | 'submit' | 'reset';
|
|
19
19
|
kind?: 'default' | 'outlined' | 'secondary' | 'warn';
|
|
20
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
20
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
21
21
|
class?: string;
|
|
22
22
|
disabled?: boolean;
|
|
23
23
|
icon?: string | Component;
|
|
@@ -3,7 +3,7 @@ type $$ComponentProps = {
|
|
|
3
3
|
href?: string;
|
|
4
4
|
type?: 'button' | 'submit' | 'reset';
|
|
5
5
|
kind?: 'default' | 'outlined' | 'secondary' | 'warn';
|
|
6
|
-
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
6
|
+
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
7
7
|
class?: string;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
icon?: string | Component;
|