@tuspe/components 1.8.1 → 1.8.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/README.md +2 -2
- package/dist/Button.svelte +2 -2
- package/dist/Button.svelte.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Easily replace most buttons in your project with this versatile button component
|
|
|
42
42
|
interface Props {
|
|
43
43
|
ariaControls?: string | undefined
|
|
44
44
|
ariaExpanded?: boolean | undefined
|
|
45
|
-
ariaLabel?: string
|
|
45
|
+
ariaLabel?: string | undefined
|
|
46
46
|
ariaPopup?: 'dialog' | 'listbox' | 'menu' | undefined
|
|
47
47
|
borderColor?: 'content' | 'default' | 'primary'
|
|
48
48
|
borderSize?: 0 | 1 | 2
|
|
@@ -68,7 +68,7 @@ Easily replace most buttons in your project with this versatile button component
|
|
|
68
68
|
role?: string
|
|
69
69
|
rounded?: 'full' | 'lg' | 'none' | 'sm'
|
|
70
70
|
target?: '_blank' | '_top' | undefined
|
|
71
|
-
title?: string
|
|
71
|
+
title?: string | undefined
|
|
72
72
|
type?: 'submit'
|
|
73
73
|
uppercase?: boolean
|
|
74
74
|
value?: string | number
|
package/dist/Button.svelte
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
interface Props {
|
|
6
6
|
ariaControls?: string | undefined
|
|
7
7
|
ariaExpanded?: boolean | undefined
|
|
8
|
-
ariaLabel?: string
|
|
8
|
+
ariaLabel?: string | undefined
|
|
9
9
|
ariaPopup?: 'dialog' | 'listbox' | 'menu' | undefined
|
|
10
10
|
borderColor?: 'content' | 'default' | 'primary'
|
|
11
11
|
borderSize?: 0 | 1 | 2
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
role?: string
|
|
32
32
|
rounded?: 'full' | 'lg' | 'none' | 'sm'
|
|
33
33
|
target?: '_blank' | '_top' | undefined
|
|
34
|
-
title?: string
|
|
34
|
+
title?: string | undefined
|
|
35
35
|
type?: 'submit'
|
|
36
36
|
uppercase?: boolean
|
|
37
37
|
value?: string | number
|
package/dist/Button.svelte.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { Snippet } from 'svelte';
|
|
|
2
2
|
interface Props {
|
|
3
3
|
ariaControls?: string | undefined;
|
|
4
4
|
ariaExpanded?: boolean | undefined;
|
|
5
|
-
ariaLabel?: string;
|
|
5
|
+
ariaLabel?: string | undefined;
|
|
6
6
|
ariaPopup?: 'dialog' | 'listbox' | 'menu' | undefined;
|
|
7
7
|
borderColor?: 'content' | 'default' | 'primary';
|
|
8
8
|
borderSize?: 0 | 1 | 2;
|
|
@@ -28,7 +28,7 @@ interface Props {
|
|
|
28
28
|
role?: string;
|
|
29
29
|
rounded?: 'full' | 'lg' | 'none' | 'sm';
|
|
30
30
|
target?: '_blank' | '_top' | undefined;
|
|
31
|
-
title?: string;
|
|
31
|
+
title?: string | undefined;
|
|
32
32
|
type?: 'submit';
|
|
33
33
|
uppercase?: boolean;
|
|
34
34
|
value?: string | number;
|