@marianmeres/stuic 1.77.0 → 1.78.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.
|
@@ -108,11 +108,13 @@ $:
|
|
|
108
108
|
data-button-shadow={shadow}
|
|
109
109
|
data-button-rounded={rounded}
|
|
110
110
|
data-button-variant={variant}
|
|
111
|
+
on:focus
|
|
112
|
+
on:blur
|
|
111
113
|
on:click
|
|
112
114
|
on:change
|
|
113
115
|
on:keydown
|
|
114
116
|
on:keyup
|
|
115
|
-
on:touchstart
|
|
117
|
+
on:touchstart
|
|
116
118
|
on:touchend
|
|
117
119
|
on:touchcancel
|
|
118
120
|
on:mouseenter
|
|
@@ -131,11 +133,13 @@ $:
|
|
|
131
133
|
data-button-rounded={rounded}
|
|
132
134
|
data-button-variant={variant}
|
|
133
135
|
{...$$restProps}
|
|
136
|
+
on:focus
|
|
137
|
+
on:blur
|
|
134
138
|
on:click
|
|
135
139
|
on:change
|
|
136
140
|
on:keydown
|
|
137
141
|
on:keyup
|
|
138
|
-
on:touchstart
|
|
142
|
+
on:touchstart
|
|
139
143
|
on:touchend
|
|
140
144
|
on:touchcancel
|
|
141
145
|
on:mouseenter
|
|
@@ -203,6 +203,18 @@ $:
|
|
|
203
203
|
? { ...(validate === true ? {} : validate), setValidationResult }
|
|
204
204
|
: undefined}
|
|
205
205
|
use:autogrow={{ allowed: textareaAutoEnlarge }}
|
|
206
|
+
on:blur
|
|
207
|
+
on:change
|
|
208
|
+
on:click
|
|
209
|
+
on:focus
|
|
210
|
+
on:input
|
|
211
|
+
on:keydown
|
|
212
|
+
on:keyup
|
|
213
|
+
on:touchstart
|
|
214
|
+
on:touchend
|
|
215
|
+
on:touchcancel
|
|
216
|
+
on:mouseenter
|
|
217
|
+
on:mouseleave
|
|
206
218
|
{...$$restProps}
|
|
207
219
|
/>
|
|
208
220
|
{:else}
|
|
@@ -231,6 +243,18 @@ $:
|
|
|
231
243
|
use:validateAction={validate
|
|
232
244
|
? { ...(validate === true ? {} : validate), setValidationResult }
|
|
233
245
|
: undefined}
|
|
246
|
+
on:blur
|
|
247
|
+
on:change
|
|
248
|
+
on:click
|
|
249
|
+
on:focus
|
|
250
|
+
on:input
|
|
251
|
+
on:keydown
|
|
252
|
+
on:keyup
|
|
253
|
+
on:touchstart
|
|
254
|
+
on:touchend
|
|
255
|
+
on:touchcancel
|
|
256
|
+
on:mouseenter
|
|
257
|
+
on:mouseleave
|
|
234
258
|
{...$$restProps}
|
|
235
259
|
/>
|
|
236
260
|
{/if}
|
|
@@ -57,6 +57,19 @@ declare const __propDef: {
|
|
|
57
57
|
showAsterixOnRequired?: boolean | undefined;
|
|
58
58
|
};
|
|
59
59
|
events: {
|
|
60
|
+
blur: FocusEvent;
|
|
61
|
+
change: Event;
|
|
62
|
+
click: MouseEvent;
|
|
63
|
+
focus: FocusEvent;
|
|
64
|
+
input: Event;
|
|
65
|
+
keydown: KeyboardEvent;
|
|
66
|
+
keyup: KeyboardEvent;
|
|
67
|
+
touchstart: TouchEvent;
|
|
68
|
+
touchend: TouchEvent;
|
|
69
|
+
touchcancel: TouchEvent;
|
|
70
|
+
mouseenter: MouseEvent;
|
|
71
|
+
mouseleave: MouseEvent;
|
|
72
|
+
} & {
|
|
60
73
|
[evt: string]: CustomEvent<any>;
|
|
61
74
|
};
|
|
62
75
|
slots: {
|