@aurodesignsystem-dev/auro-formkit 0.0.0-pr624.73 → 0.0.0-pr624.74
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.
|
@@ -70,7 +70,8 @@ Custom element for the purpose of allowing users to select one or more options o
|
|
|
70
70
|
|-------------------------|--------------------|
|
|
71
71
|
| `auroCheckbox-focusin` | `CustomEvent<any>` |
|
|
72
72
|
| `auroCheckbox-focusout` | `CustomEvent<any>` |
|
|
73
|
-
| `auroCheckbox-input` | `CustomEvent<any>` |
|
|
73
|
+
| `auroCheckbox-input` | `CustomEvent<any>` |
|
|
74
|
+
| [input](#input) | `CustomEvent<any>` |
|
|
74
75
|
|
|
75
76
|
## CSS Shadow Parts
|
|
76
77
|
|
|
@@ -287,6 +287,13 @@ class AuroCheckbox extends i$2 {
|
|
|
287
287
|
handleInput(event) {
|
|
288
288
|
this.checked = event.target.checked;
|
|
289
289
|
|
|
290
|
+
this.dispatchEvent(new CustomEvent('input', {
|
|
291
|
+
bubbles: true,
|
|
292
|
+
cancelable: false,
|
|
293
|
+
composed: true,
|
|
294
|
+
}));
|
|
295
|
+
|
|
296
|
+
// Old event we need to deprecate
|
|
290
297
|
this.dispatchEvent(new CustomEvent('auroCheckbox-input', {
|
|
291
298
|
bubbles: true,
|
|
292
299
|
cancelable: false,
|
|
@@ -279,6 +279,13 @@ class AuroCheckbox extends i$2 {
|
|
|
279
279
|
handleInput(event) {
|
|
280
280
|
this.checked = event.target.checked;
|
|
281
281
|
|
|
282
|
+
this.dispatchEvent(new CustomEvent('input', {
|
|
283
|
+
bubbles: true,
|
|
284
|
+
cancelable: false,
|
|
285
|
+
composed: true,
|
|
286
|
+
}));
|
|
287
|
+
|
|
288
|
+
// Old event we need to deprecate
|
|
282
289
|
this.dispatchEvent(new CustomEvent('auroCheckbox-input', {
|
|
283
290
|
bubbles: true,
|
|
284
291
|
cancelable: false,
|
|
@@ -239,6 +239,13 @@ class AuroCheckbox extends LitElement {
|
|
|
239
239
|
handleInput(event) {
|
|
240
240
|
this.checked = event.target.checked;
|
|
241
241
|
|
|
242
|
+
this.dispatchEvent(new CustomEvent('input', {
|
|
243
|
+
bubbles: true,
|
|
244
|
+
cancelable: false,
|
|
245
|
+
composed: true,
|
|
246
|
+
}));
|
|
247
|
+
|
|
248
|
+
// Old event we need to deprecate
|
|
242
249
|
this.dispatchEvent(new CustomEvent('auroCheckbox-input', {
|
|
243
250
|
bubbles: true,
|
|
244
251
|
cancelable: false,
|
|
@@ -239,6 +239,13 @@ class AuroCheckbox extends LitElement {
|
|
|
239
239
|
handleInput(event) {
|
|
240
240
|
this.checked = event.target.checked;
|
|
241
241
|
|
|
242
|
+
this.dispatchEvent(new CustomEvent('input', {
|
|
243
|
+
bubbles: true,
|
|
244
|
+
cancelable: false,
|
|
245
|
+
composed: true,
|
|
246
|
+
}));
|
|
247
|
+
|
|
248
|
+
// Old event we need to deprecate
|
|
242
249
|
this.dispatchEvent(new CustomEvent('auroCheckbox-input', {
|
|
243
250
|
bubbles: true,
|
|
244
251
|
cancelable: false,
|
package/package.json
CHANGED