@iroco/ui 1.0.0-7 → 1.0.0-8
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/Button.svelte
CHANGED
|
@@ -5,7 +5,6 @@ export let disabled = false;
|
|
|
5
5
|
export let kind = "basic";
|
|
6
6
|
export let size = "regular";
|
|
7
7
|
export let id;
|
|
8
|
-
export let node;
|
|
9
8
|
</script>
|
|
10
9
|
|
|
11
10
|
<button
|
|
@@ -15,7 +14,6 @@ export let node;
|
|
|
15
14
|
{type}
|
|
16
15
|
{disabled}
|
|
17
16
|
on:click
|
|
18
|
-
bind:this={node}
|
|
19
17
|
>
|
|
20
18
|
<slot />
|
|
21
19
|
</button>
|
package/dist/Button.svelte.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ declare const __propDef: {
|
|
|
6
6
|
kind?: "success" | "danger" | "dark" | "basic" | undefined;
|
|
7
7
|
size?: "small" | "regular" | undefined;
|
|
8
8
|
id: string;
|
|
9
|
-
node: HTMLElement;
|
|
10
9
|
};
|
|
11
10
|
events: {
|
|
12
11
|
click: MouseEvent;
|
|
@@ -36,8 +35,5 @@ export default class Button extends SvelteComponent<ButtonProps, ButtonEvents, B
|
|
|
36
35
|
get id(): string;
|
|
37
36
|
/**accessor*/
|
|
38
37
|
set id(_: string);
|
|
39
|
-
get node(): HTMLElement;
|
|
40
|
-
/**accessor*/
|
|
41
|
-
set node(_: HTMLElement);
|
|
42
38
|
}
|
|
43
39
|
export {};
|
package/dist/NumberInput.svelte
CHANGED
|
@@ -3,8 +3,8 @@ declare const __propDef: {
|
|
|
3
3
|
props: {
|
|
4
4
|
[x: string]: any;
|
|
5
5
|
id: string;
|
|
6
|
-
label
|
|
7
|
-
placeholder
|
|
6
|
+
label?: string | undefined;
|
|
7
|
+
placeholder?: string | undefined;
|
|
8
8
|
error?: string | null | undefined;
|
|
9
9
|
value?: number | null | undefined;
|
|
10
10
|
min: number | undefined;
|