@marianmeres/stuic 1.78.0 → 1.81.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/Button/Button.svelte +6 -4
- package/dist/components/Button/Button.svelte.d.ts +1 -0
- package/dist/components/Input/Field.svelte +6 -4
- package/dist/components/Input/Field.svelte.d.ts +1 -0
- package/dist/components/Input/FieldCheckbox.svelte +13 -0
- package/dist/components/Input/FieldCheckbox.svelte.d.ts +14 -0
- package/dist/components/Input/FieldRadios.svelte +13 -0
- package/dist/components/Input/FieldRadios.svelte.d.ts +14 -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 +13 -0
- package/dist/components/Input/XFieldRadioInternal.svelte.d.ts +14 -0
- package/dist/components/Switch/Switch.svelte +2 -1
- package/dist/components/Switch/Switch.svelte.d.ts +1 -0
- package/package.json +1 -1
|
@@ -114,8 +114,9 @@ $:
|
|
|
114
114
|
on:change
|
|
115
115
|
on:keydown
|
|
116
116
|
on:keyup
|
|
117
|
-
on:touchstart
|
|
118
|
-
on:touchend
|
|
117
|
+
on:touchstart|passive
|
|
118
|
+
on:touchend|passive
|
|
119
|
+
on:touchmove|passive
|
|
119
120
|
on:touchcancel
|
|
120
121
|
on:mouseenter
|
|
121
122
|
on:mouseleave
|
|
@@ -139,8 +140,9 @@ $:
|
|
|
139
140
|
on:change
|
|
140
141
|
on:keydown
|
|
141
142
|
on:keyup
|
|
142
|
-
on:touchstart
|
|
143
|
-
on:touchend
|
|
143
|
+
on:touchstart|passive
|
|
144
|
+
on:touchend|passive
|
|
145
|
+
on:touchmove|passive
|
|
144
146
|
on:touchcancel
|
|
145
147
|
on:mouseenter
|
|
146
148
|
on:mouseleave
|
|
@@ -210,8 +210,9 @@ $:
|
|
|
210
210
|
on:input
|
|
211
211
|
on:keydown
|
|
212
212
|
on:keyup
|
|
213
|
-
on:touchstart
|
|
214
|
-
on:touchend
|
|
213
|
+
on:touchstart|passive
|
|
214
|
+
on:touchend|passive
|
|
215
|
+
on:touchmove|passive
|
|
215
216
|
on:touchcancel
|
|
216
217
|
on:mouseenter
|
|
217
218
|
on:mouseleave
|
|
@@ -250,8 +251,9 @@ $:
|
|
|
250
251
|
on:input
|
|
251
252
|
on:keydown
|
|
252
253
|
on:keyup
|
|
253
|
-
on:touchstart
|
|
254
|
-
on:touchend
|
|
254
|
+
on:touchstart|passive
|
|
255
|
+
on:touchend|passive
|
|
256
|
+
on:touchmove|passive
|
|
255
257
|
on:touchcancel
|
|
256
258
|
on:mouseenter
|
|
257
259
|
on:mouseleave
|
|
@@ -108,6 +108,19 @@ $:
|
|
|
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|passive
|
|
119
|
+
on:touchend|passive
|
|
120
|
+
on:touchmove|passive
|
|
121
|
+
on:touchcancel
|
|
122
|
+
on:mouseenter
|
|
123
|
+
on:mouseleave
|
|
111
124
|
/>
|
|
112
125
|
</div>
|
|
113
126
|
<div class="ml-3 w-full">
|
|
@@ -34,6 +34,20 @@ 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
|
+
touchmove: TouchEvent;
|
|
47
|
+
touchcancel: TouchEvent;
|
|
48
|
+
mouseenter: MouseEvent;
|
|
49
|
+
mouseleave: MouseEvent;
|
|
50
|
+
} & {
|
|
37
51
|
[evt: string]: CustomEvent<any>;
|
|
38
52
|
};
|
|
39
53
|
slots: {
|
|
@@ -63,6 +63,19 @@ $:
|
|
|
63
63
|
{tabindex}
|
|
64
64
|
{required}
|
|
65
65
|
{size}
|
|
66
|
+
on:blur
|
|
67
|
+
on:change
|
|
68
|
+
on:click
|
|
69
|
+
on:focus
|
|
70
|
+
on:input
|
|
71
|
+
on:keydown
|
|
72
|
+
on:keyup
|
|
73
|
+
on:touchstart
|
|
74
|
+
on:touchend
|
|
75
|
+
on:touchmove
|
|
76
|
+
on:touchcancel
|
|
77
|
+
on:mouseenter
|
|
78
|
+
on:mouseleave
|
|
66
79
|
/>
|
|
67
80
|
{/each}
|
|
68
81
|
</div>
|
|
@@ -34,6 +34,20 @@ 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
|
+
touchmove: TouchEvent;
|
|
47
|
+
touchcancel: TouchEvent;
|
|
48
|
+
mouseenter: MouseEvent;
|
|
49
|
+
mouseleave: MouseEvent;
|
|
50
|
+
} & {
|
|
37
51
|
[evt: string]: CustomEvent<any>;
|
|
38
52
|
};
|
|
39
53
|
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|passive
|
|
200
|
+
on:touchend|passive
|
|
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,19 @@ $:
|
|
|
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|passive
|
|
108
|
+
on:touchend|passive
|
|
109
|
+
on:touchmove|passive
|
|
110
|
+
on:touchcancel
|
|
111
|
+
on:mouseenter
|
|
112
|
+
on:mouseleave
|
|
100
113
|
/>
|
|
101
114
|
</div>
|
|
102
115
|
<div class="ml-3 w-full">
|
|
@@ -16,6 +16,20 @@ 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
|
+
touchmove: TouchEvent;
|
|
29
|
+
touchcancel: TouchEvent;
|
|
30
|
+
mouseenter: MouseEvent;
|
|
31
|
+
mouseleave: MouseEvent;
|
|
32
|
+
} & {
|
|
19
33
|
[evt: string]: CustomEvent<any>;
|
|
20
34
|
};
|
|
21
35
|
slots: {};
|