@marianmeres/stuic 1.78.0 → 1.79.0
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/components/Input/FieldCheckbox.svelte +12 -0
- package/dist/components/Input/FieldCheckbox.svelte.d.ts +13 -0
- package/dist/components/Input/FieldRadios.svelte +12 -0
- package/dist/components/Input/FieldRadios.svelte.d.ts +13 -0
- package/dist/components/Input/FieldSelect.svelte +12 -0
- package/dist/components/Input/FieldSelect.svelte.d.ts +13 -0
- package/dist/components/Input/XFieldRadioInternal.svelte +12 -0
- package/dist/components/Input/XFieldRadioInternal.svelte.d.ts +13 -0
- package/package.json +1 -1
|
@@ -108,6 +108,18 @@ $:
|
|
|
108
108
|
use:validateAction={validate
|
|
109
109
|
? { ...(validate === true ? {} : validate), setValidationResult }
|
|
110
110
|
: undefined}
|
|
111
|
+
on:blur
|
|
112
|
+
on:change
|
|
113
|
+
on:click
|
|
114
|
+
on:focus
|
|
115
|
+
on:input
|
|
116
|
+
on:keydown
|
|
117
|
+
on:keyup
|
|
118
|
+
on:touchstart
|
|
119
|
+
on:touchend
|
|
120
|
+
on:touchcancel
|
|
121
|
+
on:mouseenter
|
|
122
|
+
on:mouseleave
|
|
111
123
|
/>
|
|
112
124
|
</div>
|
|
113
125
|
<div class="ml-3 w-full">
|
|
@@ -34,6 +34,19 @@ declare const __propDef: {
|
|
|
34
34
|
validate?: ValidateOptions | true | undefined;
|
|
35
35
|
};
|
|
36
36
|
events: {
|
|
37
|
+
blur: FocusEvent;
|
|
38
|
+
change: Event;
|
|
39
|
+
click: MouseEvent;
|
|
40
|
+
focus: FocusEvent;
|
|
41
|
+
input: Event;
|
|
42
|
+
keydown: KeyboardEvent;
|
|
43
|
+
keyup: KeyboardEvent;
|
|
44
|
+
touchstart: TouchEvent;
|
|
45
|
+
touchend: TouchEvent;
|
|
46
|
+
touchcancel: TouchEvent;
|
|
47
|
+
mouseenter: MouseEvent;
|
|
48
|
+
mouseleave: MouseEvent;
|
|
49
|
+
} & {
|
|
37
50
|
[evt: string]: CustomEvent<any>;
|
|
38
51
|
};
|
|
39
52
|
slots: {
|
|
@@ -34,6 +34,19 @@ declare const __propDef: {
|
|
|
34
34
|
tabindex?: number | undefined;
|
|
35
35
|
};
|
|
36
36
|
events: {
|
|
37
|
+
blur: FocusEvent;
|
|
38
|
+
change: Event;
|
|
39
|
+
click: MouseEvent;
|
|
40
|
+
focus: FocusEvent;
|
|
41
|
+
input: Event;
|
|
42
|
+
keydown: KeyboardEvent;
|
|
43
|
+
keyup: KeyboardEvent;
|
|
44
|
+
touchstart: TouchEvent;
|
|
45
|
+
touchend: TouchEvent;
|
|
46
|
+
touchcancel: TouchEvent;
|
|
47
|
+
mouseenter: MouseEvent;
|
|
48
|
+
mouseleave: MouseEvent;
|
|
49
|
+
} & {
|
|
37
50
|
[evt: string]: CustomEvent<any>;
|
|
38
51
|
};
|
|
39
52
|
slots: {};
|
|
@@ -189,6 +189,18 @@ $:
|
|
|
189
189
|
use:validateAction={validate
|
|
190
190
|
? { ...(validate === true ? {} : validate), setValidationResult }
|
|
191
191
|
: undefined}
|
|
192
|
+
on:blur
|
|
193
|
+
on:change
|
|
194
|
+
on:click
|
|
195
|
+
on:focus
|
|
196
|
+
on:input
|
|
197
|
+
on:keydown
|
|
198
|
+
on:keyup
|
|
199
|
+
on:touchstart
|
|
200
|
+
on:touchend
|
|
201
|
+
on:touchcancel
|
|
202
|
+
on:mouseenter
|
|
203
|
+
on:mouseleave
|
|
192
204
|
>
|
|
193
205
|
{#each _options as o, i}
|
|
194
206
|
<option value={o.value}>{o.label}</option>
|
|
@@ -48,6 +48,19 @@ declare const __propDef: {
|
|
|
48
48
|
labelLeftWidth?: "normal" | "wide" | undefined;
|
|
49
49
|
};
|
|
50
50
|
events: {
|
|
51
|
+
blur: FocusEvent;
|
|
52
|
+
change: Event;
|
|
53
|
+
click: MouseEvent;
|
|
54
|
+
focus: FocusEvent;
|
|
55
|
+
input: Event;
|
|
56
|
+
keydown: KeyboardEvent;
|
|
57
|
+
keyup: KeyboardEvent;
|
|
58
|
+
touchstart: TouchEvent;
|
|
59
|
+
touchend: TouchEvent;
|
|
60
|
+
touchcancel: TouchEvent;
|
|
61
|
+
mouseenter: MouseEvent;
|
|
62
|
+
mouseleave: MouseEvent;
|
|
63
|
+
} & {
|
|
51
64
|
[evt: string]: CustomEvent<any>;
|
|
52
65
|
};
|
|
53
66
|
slots: {
|
|
@@ -97,6 +97,18 @@ $:
|
|
|
97
97
|
use:validateAction={validate
|
|
98
98
|
? { ...(validate === true ? {} : validate), setValidationResult }
|
|
99
99
|
: undefined}
|
|
100
|
+
on:blur
|
|
101
|
+
on:change
|
|
102
|
+
on:click
|
|
103
|
+
on:focus
|
|
104
|
+
on:input
|
|
105
|
+
on:keydown
|
|
106
|
+
on:keyup
|
|
107
|
+
on:touchstart
|
|
108
|
+
on:touchend
|
|
109
|
+
on:touchcancel
|
|
110
|
+
on:mouseenter
|
|
111
|
+
on:mouseleave
|
|
100
112
|
/>
|
|
101
113
|
</div>
|
|
102
114
|
<div class="ml-3 w-full">
|
|
@@ -16,6 +16,19 @@ declare const __propDef: {
|
|
|
16
16
|
validate?: ValidateOptions | true | undefined;
|
|
17
17
|
};
|
|
18
18
|
events: {
|
|
19
|
+
blur: FocusEvent;
|
|
20
|
+
change: Event;
|
|
21
|
+
click: MouseEvent;
|
|
22
|
+
focus: FocusEvent;
|
|
23
|
+
input: Event;
|
|
24
|
+
keydown: KeyboardEvent;
|
|
25
|
+
keyup: KeyboardEvent;
|
|
26
|
+
touchstart: TouchEvent;
|
|
27
|
+
touchend: TouchEvent;
|
|
28
|
+
touchcancel: TouchEvent;
|
|
29
|
+
mouseenter: MouseEvent;
|
|
30
|
+
mouseleave: MouseEvent;
|
|
31
|
+
} & {
|
|
19
32
|
[evt: string]: CustomEvent<any>;
|
|
20
33
|
};
|
|
21
34
|
slots: {};
|