@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.
@@ -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
@@ -61,6 +61,7 @@ declare const __propDef: {
61
61
  keyup: KeyboardEvent;
62
62
  touchstart: TouchEvent;
63
63
  touchend: TouchEvent;
64
+ touchmove: TouchEvent;
64
65
  touchcancel: TouchEvent;
65
66
  mouseenter: MouseEvent;
66
67
  mouseleave: MouseEvent;
@@ -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
@@ -66,6 +66,7 @@ declare const __propDef: {
66
66
  keyup: KeyboardEvent;
67
67
  touchstart: TouchEvent;
68
68
  touchend: TouchEvent;
69
+ touchmove: TouchEvent;
69
70
  touchcancel: TouchEvent;
70
71
  mouseenter: MouseEvent;
71
72
  mouseleave: MouseEvent;
@@ -115,8 +115,9 @@ $:
115
115
  on:input
116
116
  on:keydown
117
117
  on:keyup
118
- on:touchstart
119
- on:touchend
118
+ on:touchstart|passive
119
+ on:touchend|passive
120
+ on:touchmove|passive
120
121
  on:touchcancel
121
122
  on:mouseenter
122
123
  on:mouseleave
@@ -43,6 +43,7 @@ declare const __propDef: {
43
43
  keyup: KeyboardEvent;
44
44
  touchstart: TouchEvent;
45
45
  touchend: TouchEvent;
46
+ touchmove: TouchEvent;
46
47
  touchcancel: TouchEvent;
47
48
  mouseenter: MouseEvent;
48
49
  mouseleave: MouseEvent;
@@ -72,6 +72,7 @@ $:
72
72
  on:keyup
73
73
  on:touchstart
74
74
  on:touchend
75
+ on:touchmove
75
76
  on:touchcancel
76
77
  on:mouseenter
77
78
  on:mouseleave
@@ -43,6 +43,7 @@ declare const __propDef: {
43
43
  keyup: KeyboardEvent;
44
44
  touchstart: TouchEvent;
45
45
  touchend: TouchEvent;
46
+ touchmove: TouchEvent;
46
47
  touchcancel: TouchEvent;
47
48
  mouseenter: MouseEvent;
48
49
  mouseleave: MouseEvent;
@@ -196,8 +196,8 @@ $:
196
196
  on:input
197
197
  on:keydown
198
198
  on:keyup
199
- on:touchstart
200
- on:touchend
199
+ on:touchstart|passive
200
+ on:touchend|passive
201
201
  on:touchcancel
202
202
  on:mouseenter
203
203
  on:mouseleave
@@ -104,8 +104,9 @@ $:
104
104
  on:input
105
105
  on:keydown
106
106
  on:keyup
107
- on:touchstart
108
- on:touchend
107
+ on:touchstart|passive
108
+ on:touchend|passive
109
+ on:touchmove|passive
109
110
  on:touchcancel
110
111
  on:mouseenter
111
112
  on:mouseleave
@@ -25,6 +25,7 @@ declare const __propDef: {
25
25
  keyup: KeyboardEvent;
26
26
  touchstart: TouchEvent;
27
27
  touchend: TouchEvent;
28
+ touchmove: TouchEvent;
28
29
  touchcancel: TouchEvent;
29
30
  mouseenter: MouseEvent;
30
31
  mouseleave: MouseEvent;
@@ -114,7 +114,8 @@ const dispatch = createEventDispatcher();
114
114
  on:keydown
115
115
  on:keyup
116
116
  on:touchstart|passive
117
- on:touchend
117
+ on:touchend|passive
118
+ on:touchmove|passive
118
119
  on:touchcancel
119
120
  on:mouseenter
120
121
  on:mouseleave
@@ -44,6 +44,7 @@ declare const __propDef: {
44
44
  keyup: KeyboardEvent;
45
45
  touchstart: TouchEvent;
46
46
  touchend: TouchEvent;
47
+ touchmove: TouchEvent;
47
48
  touchcancel: TouchEvent;
48
49
  mouseenter: MouseEvent;
49
50
  mouseleave: MouseEvent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "1.79.0",
3
+ "version": "1.81.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package && node ./scripts/date.js",