@marianmeres/stuic 1.79.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 +3 -2
- package/dist/components/Input/FieldCheckbox.svelte.d.ts +1 -0
- package/dist/components/Input/FieldRadios.svelte +1 -0
- package/dist/components/Input/FieldRadios.svelte.d.ts +1 -0
- package/dist/components/Input/FieldSelect.svelte +2 -2
- package/dist/components/Input/XFieldRadioInternal.svelte +3 -2
- package/dist/components/Input/XFieldRadioInternal.svelte.d.ts +1 -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
|