@marianmeres/stuic 1.77.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.
@@ -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|passive
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|passive
142
+ on:touchstart
139
143
  on:touchend
140
144
  on:touchcancel
141
145
  on:mouseenter
@@ -53,6 +53,8 @@ declare const __propDef: {
53
53
  size?: "sm" | "md" | "lg" | "xs" | "xl" | undefined;
54
54
  };
55
55
  events: {
56
+ focus: FocusEvent;
57
+ blur: FocusEvent;
56
58
  click: MouseEvent;
57
59
  change: Event;
58
60
  keydown: KeyboardEvent;
@@ -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: {
@@ -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: {
@@ -63,6 +63,18 @@ $:
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:touchcancel
76
+ on:mouseenter
77
+ on:mouseleave
66
78
  />
67
79
  {/each}
68
80
  </div>
@@ -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: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "1.77.0",
3
+ "version": "1.79.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package && node ./scripts/date.js",