@easemate/web-kit 0.3.5 → 0.3.6

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.
@@ -2187,10 +2187,15 @@ var Checkbox = class extends (_HTMLElement2 = HTMLElement) {
2187
2187
  return;
2188
2188
  }
2189
2189
  this.checked = !this.checked;
2190
- dispatchControlEvent(this, "checkbox", {
2190
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
2191
+ const detail = {
2192
+ name,
2191
2193
  value: this.checked,
2192
2194
  event
2193
- });
2195
+ };
2196
+ dispatchControlEvent(this, "checkbox", detail);
2197
+ dispatchControlEvent(this, "change", detail);
2198
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
2194
2199
  }
2195
2200
  static {
2196
2201
  _initClass2();
@@ -4570,6 +4575,7 @@ var Dropdown = class extends (_HTMLElement5 = HTMLElement) {
4570
4575
  }
4571
4576
  }
4572
4577
  dispatchControlEvent(this, "toggle", {
4578
+ name: this.name ?? void 0,
4573
4579
  value: next,
4574
4580
  event: origin
4575
4581
  });
@@ -4833,6 +4839,7 @@ var Dropdown = class extends (_HTMLElement5 = HTMLElement) {
4833
4839
  }
4834
4840
  #dispatchValueChange(value, label, event) {
4835
4841
  dispatchControlEvent(this, "change", {
4842
+ name: this.name ?? void 0,
4836
4843
  value,
4837
4844
  event
4838
4845
  });
@@ -5716,20 +5723,28 @@ var Input = class extends (_HTMLElement6 = HTMLElement) {
5716
5723
  return;
5717
5724
  }
5718
5725
  this.value = target.value;
5719
- dispatchControlEvent(this, "input", {
5726
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
5727
+ const detail = {
5728
+ name,
5720
5729
  value: this.value ?? "",
5721
5730
  event
5722
- });
5731
+ };
5732
+ dispatchControlEvent(this, "input", detail);
5733
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
5723
5734
  }
5724
5735
  handleChange(event, target) {
5725
5736
  if (!target) {
5726
5737
  return;
5727
5738
  }
5728
5739
  this.value = target.value;
5729
- dispatchControlEvent(this, "change", {
5740
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
5741
+ const detail = {
5742
+ name,
5730
5743
  value: this.value ?? "",
5731
5744
  event
5732
- });
5745
+ };
5746
+ dispatchControlEvent(this, "change", detail);
5747
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
5733
5748
  }
5734
5749
  static {
5735
5750
  _initClass6();
@@ -8229,9 +8244,11 @@ var _dec111;
8229
8244
  var _dec28;
8230
8245
  var _dec37;
8231
8246
  var _dec47;
8247
+ var _dec55;
8232
8248
  var _init_dropdown;
8233
8249
  var _init_value5;
8234
8250
  var _init_disabled5;
8251
+ var _init_name4;
8235
8252
  var _init_placement3;
8236
8253
  var _initProto8;
8237
8254
  var _ColorInput;
@@ -8306,12 +8323,15 @@ _dec27 = Component({
8306
8323
  type: Boolean,
8307
8324
  reflect: true
8308
8325
  }), _dec47 = Prop({
8326
+ reflect: true,
8327
+ defaultValue: null
8328
+ }), _dec55 = Prop({
8309
8329
  reflect: true,
8310
8330
  defaultValue: "bottom-start"
8311
8331
  });
8312
8332
  var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
8313
8333
  static {
8314
- ({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
8334
+ ({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
8315
8335
  [
8316
8336
  _dec111,
8317
8337
  1,
@@ -8330,6 +8350,11 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
8330
8350
  [
8331
8351
  _dec47,
8332
8352
  1,
8353
+ "name"
8354
+ ],
8355
+ [
8356
+ _dec55,
8357
+ 1,
8333
8358
  "placement"
8334
8359
  ]
8335
8360
  ], [
@@ -8358,12 +8383,19 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
8358
8383
  set disabled(_v) {
8359
8384
  this.#___private_disabled_3 = _v;
8360
8385
  }
8361
- #___private_placement_4;
8386
+ #___private_name_4;
8387
+ get name() {
8388
+ return this.#___private_name_4;
8389
+ }
8390
+ set name(_v) {
8391
+ this.#___private_name_4 = _v;
8392
+ }
8393
+ #___private_placement_5;
8362
8394
  get placement() {
8363
- return this.#___private_placement_4;
8395
+ return this.#___private_placement_5;
8364
8396
  }
8365
8397
  set placement(_v) {
8366
- this.#___private_placement_4 = _v;
8398
+ this.#___private_placement_5 = _v;
8367
8399
  }
8368
8400
  connectedCallback() {
8369
8401
  this.#hasCustomTrigger = this.querySelector('[slot="trigger"]') !== null;
@@ -8408,21 +8440,24 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
8408
8440
  _initClass10();
8409
8441
  }
8410
8442
  constructor(...args) {
8411
- super(...args), this.#hasCustomTrigger = (_initProto8(this), false), this.#___private_dropdown_1 = _init_dropdown(this), this.#___private_value_2 = _init_value5(this), this.#___private_disabled_3 = _init_disabled5(this, false), this.#___private_placement_4 = _init_placement3(this, "bottom-start"), this.#handleInputChange = (event) => {
8443
+ super(...args), this.#hasCustomTrigger = (_initProto8(this), false), this.#___private_dropdown_1 = _init_dropdown(this), this.#___private_value_2 = _init_value5(this), this.#___private_disabled_3 = _init_disabled5(this, false), this.#___private_name_4 = _init_name4(this, null), this.#___private_placement_5 = _init_placement3(this, "bottom-start"), this.#handleInputChange = (event) => {
8412
8444
  this.value = event.target.value;
8413
8445
  dispatchControlEvent(this, "input", {
8446
+ name: this.name ?? void 0,
8414
8447
  value: this.value,
8415
8448
  event
8416
8449
  });
8417
8450
  }, this.#handlePickerInput = (event) => {
8418
8451
  this.value = event.detail.value;
8419
8452
  dispatchControlEvent(this, "input", {
8453
+ name: this.name ?? void 0,
8420
8454
  value: this.value,
8421
8455
  event
8422
8456
  });
8423
8457
  }, this.#handlePickerChange = (event) => {
8424
8458
  this.value = event.detail.value;
8425
8459
  dispatchControlEvent(this, "change", {
8460
+ name: this.name ?? void 0,
8426
8461
  value: this.value,
8427
8462
  event
8428
8463
  });
@@ -8435,6 +8470,7 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
8435
8470
  }, this.#handlePickerApply = (event) => {
8436
8471
  this.value = event.detail.value;
8437
8472
  dispatchControlEvent(this, "change", {
8473
+ name: this.name ?? void 0,
8438
8474
  value: this.value,
8439
8475
  event
8440
8476
  });
@@ -9423,7 +9459,7 @@ _dec30 = Component({
9423
9459
  [part="content"] {
9424
9460
  height: 0;
9425
9461
  overflow: hidden;
9426
- transition: height 200ms cubic-bezier(.25, 0, .5, 1);
9462
+ transition: height 200ms cubic-bezier(.25, 0, .5, 1) !important;
9427
9463
  }
9428
9464
 
9429
9465
  :host([open]) [part="content"] {
@@ -13549,11 +13585,11 @@ function applyDecs2203RFactory21() {
13549
13585
  function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
13550
13586
  return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
13551
13587
  }
13552
- var _dec55;
13588
+ var _dec56;
13553
13589
  var _initClass21;
13554
13590
  var _HTMLElement21;
13555
13591
  var _IconBezier;
13556
- _dec55 = Component({
13592
+ _dec56 = Component({
13557
13593
  tag: "ease-icon-bezier",
13558
13594
  styles: `
13559
13595
  :host {
@@ -13574,7 +13610,7 @@ _dec55 = Component({
13574
13610
  var IconBezier = class extends (_HTMLElement21 = HTMLElement) {
13575
13611
  static {
13576
13612
  ({ c: [_IconBezier, _initClass21] } = _apply_decs_2203_r21(this, [], [
13577
- _dec55
13613
+ _dec56
13578
13614
  ], _HTMLElement21));
13579
13615
  }
13580
13616
  static {
@@ -13956,11 +13992,11 @@ function applyDecs2203RFactory22() {
13956
13992
  function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
13957
13993
  return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
13958
13994
  }
13959
- var _dec56;
13995
+ var _dec57;
13960
13996
  var _initClass22;
13961
13997
  var _HTMLElement22;
13962
13998
  var _IconBezierAngle;
13963
- _dec56 = Component({
13999
+ _dec57 = Component({
13964
14000
  tag: "ease-icon-bezier-angle",
13965
14001
  styles: `
13966
14002
  :host {
@@ -13988,7 +14024,7 @@ _dec56 = Component({
13988
14024
  var IconBezierAngle = class extends (_HTMLElement22 = HTMLElement) {
13989
14025
  static {
13990
14026
  ({ c: [_IconBezierAngle, _initClass22] } = _apply_decs_2203_r22(this, [], [
13991
- _dec56
14027
+ _dec57
13992
14028
  ], _HTMLElement22));
13993
14029
  }
13994
14030
  static {
@@ -14370,11 +14406,11 @@ function applyDecs2203RFactory23() {
14370
14406
  function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
14371
14407
  return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
14372
14408
  }
14373
- var _dec57;
14409
+ var _dec58;
14374
14410
  var _initClass23;
14375
14411
  var _HTMLElement23;
14376
14412
  var _IconBezierDistribute;
14377
- _dec57 = Component({
14413
+ _dec58 = Component({
14378
14414
  tag: "ease-icon-bezier-distribute",
14379
14415
  styles: `
14380
14416
  :host {
@@ -14403,7 +14439,7 @@ _dec57 = Component({
14403
14439
  var IconBezierDistribute = class extends (_HTMLElement23 = HTMLElement) {
14404
14440
  static {
14405
14441
  ({ c: [_IconBezierDistribute, _initClass23] } = _apply_decs_2203_r23(this, [], [
14406
- _dec57
14442
+ _dec58
14407
14443
  ], _HTMLElement23));
14408
14444
  }
14409
14445
  static {
@@ -14785,11 +14821,11 @@ function applyDecs2203RFactory24() {
14785
14821
  function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
14786
14822
  return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
14787
14823
  }
14788
- var _dec58;
14824
+ var _dec59;
14789
14825
  var _initClass24;
14790
14826
  var _HTMLElement24;
14791
14827
  var _IconBezierLength;
14792
- _dec58 = Component({
14828
+ _dec59 = Component({
14793
14829
  tag: "ease-icon-bezier-length",
14794
14830
  styles: `
14795
14831
  :host {
@@ -14815,7 +14851,7 @@ _dec58 = Component({
14815
14851
  var IconBezierLength = class extends (_HTMLElement24 = HTMLElement) {
14816
14852
  static {
14817
14853
  ({ c: [_IconBezierLength, _initClass24] } = _apply_decs_2203_r24(this, [], [
14818
- _dec58
14854
+ _dec59
14819
14855
  ], _HTMLElement24));
14820
14856
  }
14821
14857
  static {
@@ -15197,11 +15233,11 @@ function applyDecs2203RFactory25() {
15197
15233
  function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
15198
15234
  return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
15199
15235
  }
15200
- var _dec59;
15236
+ var _dec60;
15201
15237
  var _initClass25;
15202
15238
  var _HTMLElement25;
15203
15239
  var _IconBezierMirror;
15204
- _dec59 = Component({
15240
+ _dec60 = Component({
15205
15241
  tag: "ease-icon-bezier-mirror",
15206
15242
  styles: `
15207
15243
  :host {
@@ -15227,7 +15263,7 @@ _dec59 = Component({
15227
15263
  var IconBezierMirror = class extends (_HTMLElement25 = HTMLElement) {
15228
15264
  static {
15229
15265
  ({ c: [_IconBezierMirror, _initClass25] } = _apply_decs_2203_r25(this, [], [
15230
- _dec59
15266
+ _dec60
15231
15267
  ], _HTMLElement25));
15232
15268
  }
15233
15269
  static {
@@ -15609,11 +15645,11 @@ function applyDecs2203RFactory26() {
15609
15645
  function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
15610
15646
  return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
15611
15647
  }
15612
- var _dec60;
15648
+ var _dec61;
15613
15649
  var _initClass26;
15614
15650
  var _HTMLElement26;
15615
15651
  var _IconCheck;
15616
- _dec60 = Component({
15652
+ _dec61 = Component({
15617
15653
  tag: "ease-icon-check",
15618
15654
  styles: `
15619
15655
  :host {
@@ -15638,7 +15674,7 @@ _dec60 = Component({
15638
15674
  var IconCheck = class extends (_HTMLElement26 = HTMLElement) {
15639
15675
  static {
15640
15676
  ({ c: [_IconCheck, _initClass26] } = _apply_decs_2203_r26(this, [], [
15641
- _dec60
15677
+ _dec61
15642
15678
  ], _HTMLElement26));
15643
15679
  }
15644
15680
  static {
@@ -16020,11 +16056,11 @@ function applyDecs2203RFactory27() {
16020
16056
  function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
16021
16057
  return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
16022
16058
  }
16023
- var _dec61;
16059
+ var _dec65;
16024
16060
  var _initClass27;
16025
16061
  var _HTMLElement27;
16026
16062
  var _IconCircleArrowLeft;
16027
- _dec61 = Component({
16063
+ _dec65 = Component({
16028
16064
  tag: "ease-icon-circle-arrow-left",
16029
16065
  styles: `
16030
16066
  :host {
@@ -16049,7 +16085,7 @@ _dec61 = Component({
16049
16085
  var IconCircleArrowLeft = class extends (_HTMLElement27 = HTMLElement) {
16050
16086
  static {
16051
16087
  ({ c: [_IconCircleArrowLeft, _initClass27] } = _apply_decs_2203_r27(this, [], [
16052
- _dec61
16088
+ _dec65
16053
16089
  ], _HTMLElement27));
16054
16090
  }
16055
16091
  static {
@@ -16431,11 +16467,11 @@ function applyDecs2203RFactory28() {
16431
16467
  function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
16432
16468
  return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
16433
16469
  }
16434
- var _dec65;
16470
+ var _dec66;
16435
16471
  var _initClass28;
16436
16472
  var _HTMLElement28;
16437
16473
  var _IconCircleArrowRight;
16438
- _dec65 = Component({
16474
+ _dec66 = Component({
16439
16475
  tag: "ease-icon-circle-arrow-right",
16440
16476
  styles: `
16441
16477
  :host {
@@ -16460,7 +16496,7 @@ _dec65 = Component({
16460
16496
  var IconCircleArrowRight = class extends (_HTMLElement28 = HTMLElement) {
16461
16497
  static {
16462
16498
  ({ c: [_IconCircleArrowRight, _initClass28] } = _apply_decs_2203_r28(this, [], [
16463
- _dec65
16499
+ _dec66
16464
16500
  ], _HTMLElement28));
16465
16501
  }
16466
16502
  static {
@@ -16842,11 +16878,11 @@ function applyDecs2203RFactory29() {
16842
16878
  function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
16843
16879
  return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
16844
16880
  }
16845
- var _dec66;
16881
+ var _dec67;
16846
16882
  var _initClass29;
16847
16883
  var _HTMLElement29;
16848
16884
  var _IconCode;
16849
- _dec66 = Component({
16885
+ _dec67 = Component({
16850
16886
  tag: "ease-icon-code",
16851
16887
  styles: `
16852
16888
  :host {
@@ -16871,7 +16907,7 @@ _dec66 = Component({
16871
16907
  var IconCode = class extends (_HTMLElement29 = HTMLElement) {
16872
16908
  static {
16873
16909
  ({ c: [_IconCode, _initClass29] } = _apply_decs_2203_r29(this, [], [
16874
- _dec66
16910
+ _dec67
16875
16911
  ], _HTMLElement29));
16876
16912
  }
16877
16913
  static {
@@ -17253,11 +17289,11 @@ function applyDecs2203RFactory30() {
17253
17289
  function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
17254
17290
  return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
17255
17291
  }
17256
- var _dec67;
17292
+ var _dec68;
17257
17293
  var _initClass30;
17258
17294
  var _HTMLElement30;
17259
17295
  var _IconDots;
17260
- _dec67 = Component({
17296
+ _dec68 = Component({
17261
17297
  tag: "ease-icon-dots",
17262
17298
  styles: `
17263
17299
  :host {
@@ -17284,7 +17320,7 @@ _dec67 = Component({
17284
17320
  var IconDots = class extends (_HTMLElement30 = HTMLElement) {
17285
17321
  static {
17286
17322
  ({ c: [_IconDots, _initClass30] } = _apply_decs_2203_r30(this, [], [
17287
- _dec67
17323
+ _dec68
17288
17324
  ], _HTMLElement30));
17289
17325
  }
17290
17326
  static {
@@ -17666,11 +17702,11 @@ function applyDecs2203RFactory31() {
17666
17702
  function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
17667
17703
  return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
17668
17704
  }
17669
- var _dec68;
17705
+ var _dec69;
17670
17706
  var _initClass31;
17671
17707
  var _HTMLElement31;
17672
17708
  var _IconMention;
17673
- _dec68 = Component({
17709
+ _dec69 = Component({
17674
17710
  tag: "ease-icon-mention",
17675
17711
  styles: `
17676
17712
  :host {
@@ -17695,7 +17731,7 @@ _dec68 = Component({
17695
17731
  var IconMention = class extends (_HTMLElement31 = HTMLElement) {
17696
17732
  static {
17697
17733
  ({ c: [_IconMention, _initClass31] } = _apply_decs_2203_r31(this, [], [
17698
- _dec68
17734
+ _dec69
17699
17735
  ], _HTMLElement31));
17700
17736
  }
17701
17737
  static {
@@ -18077,11 +18113,11 @@ function applyDecs2203RFactory32() {
18077
18113
  function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
18078
18114
  return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
18079
18115
  }
18080
- var _dec69;
18116
+ var _dec70;
18081
18117
  var _initClass32;
18082
18118
  var _HTMLElement32;
18083
18119
  var _IconMinus;
18084
- _dec69 = Component({
18120
+ _dec70 = Component({
18085
18121
  tag: "ease-icon-minus",
18086
18122
  styles: `
18087
18123
  :host {
@@ -18106,7 +18142,7 @@ _dec69 = Component({
18106
18142
  var IconMinus = class extends (_HTMLElement32 = HTMLElement) {
18107
18143
  static {
18108
18144
  ({ c: [_IconMinus, _initClass32] } = _apply_decs_2203_r32(this, [], [
18109
- _dec69
18145
+ _dec70
18110
18146
  ], _HTMLElement32));
18111
18147
  }
18112
18148
  static {
@@ -18488,11 +18524,11 @@ function applyDecs2203RFactory33() {
18488
18524
  function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
18489
18525
  return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
18490
18526
  }
18491
- var _dec70;
18527
+ var _dec71;
18492
18528
  var _initClass33;
18493
18529
  var _HTMLElement33;
18494
18530
  var _IconPlus;
18495
- _dec70 = Component({
18531
+ _dec71 = Component({
18496
18532
  tag: "ease-icon-plus",
18497
18533
  styles: `
18498
18534
  :host {
@@ -18517,7 +18553,7 @@ _dec70 = Component({
18517
18553
  var IconPlus = class extends (_HTMLElement33 = HTMLElement) {
18518
18554
  static {
18519
18555
  ({ c: [_IconPlus, _initClass33] } = _apply_decs_2203_r33(this, [], [
18520
- _dec70
18556
+ _dec71
18521
18557
  ], _HTMLElement33));
18522
18558
  }
18523
18559
  static {
@@ -18899,11 +18935,11 @@ function applyDecs2203RFactory34() {
18899
18935
  function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
18900
18936
  return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
18901
18937
  }
18902
- var _dec71;
18938
+ var _dec74;
18903
18939
  var _initClass34;
18904
18940
  var _HTMLElement34;
18905
18941
  var _Settings;
18906
- _dec71 = Component({
18942
+ _dec74 = Component({
18907
18943
  tag: "ease-icon-settings",
18908
18944
  styles: `
18909
18945
  :host {
@@ -18928,7 +18964,7 @@ _dec71 = Component({
18928
18964
  var Settings = class extends (_HTMLElement34 = HTMLElement) {
18929
18965
  static {
18930
18966
  ({ c: [_Settings, _initClass34] } = _apply_decs_2203_r34(this, [], [
18931
- _dec71
18967
+ _dec74
18932
18968
  ], _HTMLElement34));
18933
18969
  }
18934
18970
  static {
@@ -19310,7 +19346,7 @@ function applyDecs2203RFactory35() {
19310
19346
  function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
19311
19347
  return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
19312
19348
  }
19313
- var _dec74;
19349
+ var _dec75;
19314
19350
  var _initClass35;
19315
19351
  var _HTMLElement35;
19316
19352
  var _dec118;
@@ -19470,7 +19506,7 @@ var sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).f
19470
19506
  var LOOP_DURATION = 1500;
19471
19507
  var ROTATION_DURATION = 600;
19472
19508
  var _LogoLoader;
19473
- _dec74 = Component({
19509
+ _dec75 = Component({
19474
19510
  tag: "ease-logo-loader",
19475
19511
  styles: `
19476
19512
  :host {
@@ -19743,7 +19779,7 @@ var LogoLoader = class extends (_HTMLElement35 = HTMLElement) {
19743
19779
  "ariaLabel"
19744
19780
  ]
19745
19781
  ], [
19746
- _dec74
19782
+ _dec75
19747
19783
  ], _HTMLElement35));
19748
19784
  }
19749
19785
  #___private_loading_1;
@@ -20607,7 +20643,7 @@ function applyDecs2203RFactory36() {
20607
20643
  function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
20608
20644
  return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
20609
20645
  }
20610
- var _dec75;
20646
+ var _dec76;
20611
20647
  var _initClass36;
20612
20648
  var _HTMLElement36;
20613
20649
  var _dec119;
@@ -20671,7 +20707,7 @@ var rateFps = (fps, targetFps) => {
20671
20707
  return "poor";
20672
20708
  };
20673
20709
  var _MonitorFps;
20674
- _dec75 = Component({
20710
+ _dec76 = Component({
20675
20711
  tag: "ease-monitor-fps",
20676
20712
  autoSlot: false,
20677
20713
  shadowMode: "open",
@@ -20790,7 +20826,7 @@ var MonitorFps = class extends (_HTMLElement36 = HTMLElement) {
20790
20826
  "canvasEl"
20791
20827
  ]
20792
20828
  ], [
20793
- _dec75
20829
+ _dec76
20794
20830
  ], _HTMLElement36));
20795
20831
  }
20796
20832
  #___private_paused_1;
@@ -21445,7 +21481,7 @@ function applyDecs2203RFactory37() {
21445
21481
  function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
21446
21482
  return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
21447
21483
  }
21448
- var _dec76;
21484
+ var _dec77;
21449
21485
  var _initClass37;
21450
21486
  var _HTMLElement37;
21451
21487
  var _dec120;
@@ -21563,7 +21599,7 @@ var estimateCarbonFootprint = (totalBytes) => {
21563
21599
  return `${emissions.toFixed(3)}g CO2 eq.`;
21564
21600
  };
21565
21601
  var _Monitor;
21566
- _dec76 = Component({
21602
+ _dec77 = Component({
21567
21603
  tag: "ease-monitor",
21568
21604
  styles: `
21569
21605
  :host {
@@ -21707,7 +21743,7 @@ var Monitor = class extends (_HTMLElement37 = HTMLElement) {
21707
21743
  "handleFpsUpdate"
21708
21744
  ]
21709
21745
  ], [
21710
- _dec76
21746
+ _dec77
21711
21747
  ], _HTMLElement37));
21712
21748
  }
21713
21749
  #___private_metrics_1;
@@ -22596,7 +22632,7 @@ function applyDecs2203RFactory38() {
22596
22632
  function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
22597
22633
  return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
22598
22634
  }
22599
- var _dec77;
22635
+ var _dec78;
22600
22636
  var _initClass38;
22601
22637
  var _HTMLElement38;
22602
22638
  var _dec121;
@@ -22605,19 +22641,19 @@ var _dec312;
22605
22641
  var _dec411;
22606
22642
  var _dec510;
22607
22643
  var _dec610;
22608
- var _dec78;
22644
+ var _dec79;
22609
22645
  var _dec84;
22610
22646
  var _dec94;
22611
22647
  var _init_value6;
22612
22648
  var _init_min;
22613
22649
  var _init_max;
22614
22650
  var _init_step;
22615
- var _init_name4;
22651
+ var _init_name5;
22616
22652
  var _init_disabled6;
22617
22653
  var _init_control3;
22618
22654
  var _initProto17;
22619
22655
  var _NumberInput;
22620
- _dec77 = Component({
22656
+ _dec78 = Component({
22621
22657
  tag: "ease-number-input",
22622
22658
  styles: `
22623
22659
  :host {
@@ -22716,14 +22752,14 @@ _dec77 = Component({
22716
22752
  }), _dec610 = Prop({
22717
22753
  type: Boolean,
22718
22754
  reflect: true
22719
- }), _dec78 = Query("input"), _dec84 = Listen("input", {
22755
+ }), _dec79 = Query("input"), _dec84 = Listen("input", {
22720
22756
  selector: "input"
22721
22757
  }), _dec94 = Listen("change", {
22722
22758
  selector: "input"
22723
22759
  });
22724
22760
  var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
22725
22761
  static {
22726
- ({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3, _initProto17], c: [_NumberInput, _initClass38] } = _apply_decs_2203_r38(this, [
22762
+ ({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto17], c: [_NumberInput, _initClass38] } = _apply_decs_2203_r38(this, [
22727
22763
  [
22728
22764
  _dec121,
22729
22765
  1,
@@ -22755,7 +22791,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
22755
22791
  "disabled"
22756
22792
  ],
22757
22793
  [
22758
- _dec78,
22794
+ _dec79,
22759
22795
  1,
22760
22796
  "control"
22761
22797
  ],
@@ -22770,7 +22806,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
22770
22806
  "handleChange"
22771
22807
  ]
22772
22808
  ], [
22773
- _dec77
22809
+ _dec78
22774
22810
  ], _HTMLElement38));
22775
22811
  }
22776
22812
  #___private_value_1;
@@ -22840,20 +22876,28 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
22840
22876
  return;
22841
22877
  }
22842
22878
  this.value = coerceNumber(target.value);
22843
- dispatchControlEvent(this, "input", {
22879
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
22880
+ const detail = {
22881
+ name,
22844
22882
  value: this.value,
22845
22883
  event
22846
- });
22884
+ };
22885
+ dispatchControlEvent(this, "input", detail);
22886
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
22847
22887
  }
22848
22888
  handleChange(event, target) {
22849
22889
  if (!target) {
22850
22890
  return;
22851
22891
  }
22852
22892
  this.value = coerceNumber(target.value);
22853
- dispatchControlEvent(this, "change", {
22893
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
22894
+ const detail = {
22895
+ name,
22854
22896
  value: this.value,
22855
22897
  event
22856
- });
22898
+ };
22899
+ dispatchControlEvent(this, "change", detail);
22900
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
22857
22901
  }
22858
22902
  addActiveLayer(button) {
22859
22903
  const layer = document.createElement("div");
@@ -22891,7 +22935,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
22891
22935
  _initClass38();
22892
22936
  }
22893
22937
  constructor(...args) {
22894
- super(...args), this.#___private_value_1 = (_initProto17(this), _init_value6(this)), this.#___private_min_2 = _init_min(this), this.#___private_max_3 = _init_max(this), this.#___private_step_4 = _init_step(this), this.#___private_name_5 = _init_name4(this), this.#___private_disabled_6 = _init_disabled6(this), this.#___private_control_7 = _init_control3(this);
22938
+ super(...args), this.#___private_value_1 = (_initProto17(this), _init_value6(this)), this.#___private_min_2 = _init_min(this), this.#___private_max_3 = _init_max(this), this.#___private_step_4 = _init_step(this), this.#___private_name_5 = _init_name5(this), this.#___private_disabled_6 = _init_disabled6(this), this.#___private_control_7 = _init_control3(this);
22895
22939
  }
22896
22940
  };
22897
22941
 
@@ -23269,7 +23313,7 @@ function applyDecs2203RFactory39() {
23269
23313
  function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
23270
23314
  return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
23271
23315
  }
23272
- var _dec79;
23316
+ var _dec80;
23273
23317
  var _initClass39;
23274
23318
  var _HTMLElement39;
23275
23319
  var _dec123;
@@ -23280,10 +23324,10 @@ var _dec511;
23280
23324
  var _init_value7;
23281
23325
  var _init_disabled7;
23282
23326
  var _init_control4;
23283
- var _init_name5;
23327
+ var _init_name6;
23284
23328
  var _initProto18;
23285
23329
  var _Origin;
23286
- _dec79 = Component({
23330
+ _dec80 = Component({
23287
23331
  tag: "ease-origin",
23288
23332
  styles: `
23289
23333
  :host {
@@ -23429,7 +23473,7 @@ _dec79 = Component({
23429
23473
  });
23430
23474
  var Origin = class extends (_HTMLElement39 = HTMLElement) {
23431
23475
  static {
23432
- ({ e: [_init_value7, _init_disabled7, _init_control4, _init_name5, _initProto18], c: [_Origin, _initClass39] } = _apply_decs_2203_r39(this, [
23476
+ ({ e: [_init_value7, _init_disabled7, _init_control4, _init_name6, _initProto18], c: [_Origin, _initClass39] } = _apply_decs_2203_r39(this, [
23433
23477
  [
23434
23478
  _dec123,
23435
23479
  1,
@@ -23456,7 +23500,7 @@ var Origin = class extends (_HTMLElement39 = HTMLElement) {
23456
23500
  "handleChange"
23457
23501
  ]
23458
23502
  ], [
23459
- _dec79
23503
+ _dec80
23460
23504
  ], _HTMLElement39));
23461
23505
  }
23462
23506
  #___private_value_1;
@@ -23504,7 +23548,7 @@ var Origin = class extends (_HTMLElement39 = HTMLElement) {
23504
23548
  _initClass39();
23505
23549
  }
23506
23550
  constructor(...args) {
23507
- super(...args), this.#___private_value_1 = (_initProto18(this), _init_value7(this, "center-center")), this.#___private_disabled_2 = _init_disabled7(this), this.#___private_control_3 = _init_control4(this), this.#___private_name_4 = _init_name5(this, ""), this.handleValueChange = (event) => {
23551
+ super(...args), this.#___private_value_1 = (_initProto18(this), _init_value7(this, "center-center")), this.#___private_disabled_2 = _init_disabled7(this), this.#___private_control_3 = _init_control4(this), this.#___private_name_4 = _init_name6(this, ""), this.handleValueChange = (event) => {
23508
23552
  this.value = String(this.control?.value ?? "center-center");
23509
23553
  dispatchControlEvent(this, "change", {
23510
23554
  value: this.value,
@@ -23888,7 +23932,7 @@ function applyDecs2203RFactory40() {
23888
23932
  function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
23889
23933
  return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
23890
23934
  }
23891
- var _dec80;
23935
+ var _dec81;
23892
23936
  var _initClass40;
23893
23937
  var _HTMLElement40;
23894
23938
  var _dec124;
@@ -23905,7 +23949,7 @@ var _init_contentElement2;
23905
23949
  var _init_bodyElement;
23906
23950
  var _initProto19;
23907
23951
  var _Panel;
23908
- _dec80 = Component({
23952
+ _dec81 = Component({
23909
23953
  tag: "ease-panel",
23910
23954
  shadowMode: "open",
23911
23955
  styles: `
@@ -23970,7 +24014,6 @@ _dec80 = Component({
23970
24014
  align-items: center;
23971
24015
  gap: 2px;
23972
24016
  flex-grow: 1;
23973
- margin: 0 0 0 4px;
23974
24017
  }
23975
24018
 
23976
24019
  [part="tabs"]:empty {
@@ -23979,17 +24022,18 @@ _dec80 = Component({
23979
24022
 
23980
24023
  [part="tab"] {
23981
24024
  appearance: none;
24025
+ border-radius: var(--ease-panel-tab-radius, var(--radii-md));
24026
+ background-color: var(--ease-panel-tab-background, transparent);
24027
+ box-sizing: border-box;
24028
+ padding: var(--ease-panel-tab-padding, 4px 8px);
23982
24029
  font-size: var(--ease-panel-tab-font-size);
23983
24030
  font-weight: var(--ease-panel-tab-font-weight);
23984
24031
  line-height: 24px;
23985
24032
  font-family: var(--ease-font-family);
23986
24033
  color: var(--ease-panel-tab-color);
23987
- background-color: transparent;
23988
24034
  border: none;
23989
- padding: 4px 8px;
23990
24035
  margin: 0;
23991
24036
  cursor: pointer;
23992
- border-radius: var(--ease-panel-tab-radius);
23993
24037
  transition: color 200ms, background-color 200ms;
23994
24038
  transition-timing-function: cubic-bezier(.25, 0, .5, 1);
23995
24039
  }
@@ -24199,7 +24243,7 @@ var Panel = class extends (_HTMLElement40 = HTMLElement) {
24199
24243
  "onDefaultSlotChange"
24200
24244
  ]
24201
24245
  ], [
24202
- _dec80
24246
+ _dec81
24203
24247
  ], _HTMLElement40));
24204
24248
  }
24205
24249
  #tabs;
@@ -24892,7 +24936,7 @@ function applyDecs2203RFactory41() {
24892
24936
  function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
24893
24937
  return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
24894
24938
  }
24895
- var _dec81;
24939
+ var _dec85;
24896
24940
  var _initClass41;
24897
24941
  var _HTMLElement41;
24898
24942
  var _dec125;
@@ -24917,7 +24961,7 @@ var nextPanelId2 = /* @__PURE__ */ (() => {
24917
24961
  };
24918
24962
  })();
24919
24963
  var _RadioGroup;
24920
- _dec81 = Component({
24964
+ _dec85 = Component({
24921
24965
  tag: "ease-radio-group",
24922
24966
  shadowMode: "open",
24923
24967
  styles: `
@@ -25009,7 +25053,7 @@ var RadioGroup = class extends (_HTMLElement41 = HTMLElement) {
25009
25053
  "contentSlot"
25010
25054
  ]
25011
25055
  ], [
25012
- _dec81
25056
+ _dec85
25013
25057
  ], _HTMLElement41));
25014
25058
  }
25015
25059
  #___private_value_1;
@@ -25610,7 +25654,7 @@ function applyDecs2203RFactory42() {
25610
25654
  function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
25611
25655
  return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
25612
25656
  }
25613
- var _dec85;
25657
+ var _dec86;
25614
25658
  var _initClass42;
25615
25659
  var _HTMLElement42;
25616
25660
  var _dec126;
@@ -25620,13 +25664,13 @@ var _dec414;
25620
25664
  var _dec513;
25621
25665
  var _dec612;
25622
25666
  var _init_checked2;
25623
- var _init_name6;
25667
+ var _init_name7;
25624
25668
  var _init_value9;
25625
25669
  var _init_disabled8;
25626
25670
  var _init_control5;
25627
25671
  var _initProto21;
25628
25672
  var _RadioInput;
25629
- _dec85 = Component({
25673
+ _dec86 = Component({
25630
25674
  tag: "ease-radio-input",
25631
25675
  shadowMode: "open",
25632
25676
  styles: `
@@ -25893,7 +25937,7 @@ _dec85 = Component({
25893
25937
  });
25894
25938
  var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
25895
25939
  static {
25896
- ({ e: [_init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5, _initProto21], c: [_RadioInput, _initClass42] } = _apply_decs_2203_r42(this, [
25940
+ ({ e: [_init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto21], c: [_RadioInput, _initClass42] } = _apply_decs_2203_r42(this, [
25897
25941
  [
25898
25942
  _dec126,
25899
25943
  1,
@@ -25925,7 +25969,7 @@ var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
25925
25969
  "handleClick"
25926
25970
  ]
25927
25971
  ], [
25928
- _dec85
25972
+ _dec86
25929
25973
  ], _HTMLElement42));
25930
25974
  }
25931
25975
  #___private_checked_1;
@@ -26008,16 +26052,22 @@ var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
26008
26052
  return;
26009
26053
  }
26010
26054
  this.checked = true;
26011
- dispatchControlEvent(this, "radio", {
26055
+ const groupName = this.closest("ease-radio-group")?.getAttribute("name") ?? void 0;
26056
+ const name = this.getAttribute("name") ?? groupName ?? void 0;
26057
+ const detail = {
26058
+ name,
26012
26059
  value: this.checked,
26013
26060
  event
26014
- });
26061
+ };
26062
+ dispatchControlEvent(this, "radio", detail);
26063
+ dispatchControlEvent(this, "change", detail);
26064
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
26015
26065
  }
26016
26066
  static {
26017
26067
  _initClass42();
26018
26068
  }
26019
26069
  constructor(...args) {
26020
- super(...args), this.#___private_checked_1 = (_initProto21(this), _init_checked2(this)), this.#___private_name_2 = _init_name6(this), this.#___private_value_3 = _init_value9(this), this.#___private_disabled_4 = _init_disabled8(this), this.#___private_control_5 = _init_control5(this), this._firstRender = true, this.filterId = `goo-${crypto.randomUUID()}`;
26070
+ super(...args), this.#___private_checked_1 = (_initProto21(this), _init_checked2(this)), this.#___private_name_2 = _init_name7(this), this.#___private_value_3 = _init_value9(this), this.#___private_disabled_4 = _init_disabled8(this), this.#___private_control_5 = _init_control5(this), this._firstRender = true, this.filterId = `goo-${crypto.randomUUID()}`;
26021
26071
  }
26022
26072
  };
26023
26073
 
@@ -26395,7 +26445,7 @@ function applyDecs2203RFactory43() {
26395
26445
  function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
26396
26446
  return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
26397
26447
  }
26398
- var _dec86;
26448
+ var _dec87;
26399
26449
  var _initClass43;
26400
26450
  var _HTMLElement43;
26401
26451
  var _dec127;
@@ -26405,7 +26455,7 @@ var _dec415;
26405
26455
  var _dec514;
26406
26456
  var _dec613;
26407
26457
  var _dec711;
26408
- var _dec87;
26458
+ var _dec88;
26409
26459
  var _dec95;
26410
26460
  var _dec104;
26411
26461
  var _dec1110;
@@ -26418,7 +26468,7 @@ var _init_control6;
26418
26468
  var _init_valueControl;
26419
26469
  var _initProto22;
26420
26470
  var _Slider;
26421
- _dec86 = Component({
26471
+ _dec87 = Component({
26422
26472
  tag: "ease-slider",
26423
26473
  styles: `
26424
26474
  :host {
@@ -26529,11 +26579,15 @@ _dec86 = Component({
26529
26579
  .step=${this.step ?? 1}
26530
26580
  .value=${String(this.value ?? 0)}
26531
26581
  ?disabled=${this.disabled}
26582
+ @input=${this.handleRangeInput}
26583
+ @change=${this.handleRangeChange}
26532
26584
  ?aria-disabled=${this.disabled}
26533
26585
  />
26534
26586
 
26535
26587
  <ease-input
26536
26588
  part="value"
26589
+ @input=${this.handleValueInput}
26590
+ @change=${this.handleValueChange}
26537
26591
  type="number"
26538
26592
  placeholder="-"
26539
26593
  .disabled=${Boolean(this.disabled)}
@@ -26557,7 +26611,7 @@ _dec86 = Component({
26557
26611
  }), _dec514 = Prop({
26558
26612
  type: Boolean,
26559
26613
  reflect: true
26560
- }), _dec613 = Query("input"), _dec711 = Query("ease-input"), _dec87 = Listen("input", {
26614
+ }), _dec613 = Query("input"), _dec711 = Query("ease-input"), _dec88 = Listen("input", {
26561
26615
  selector: 'input[type="range"]'
26562
26616
  }), _dec95 = Listen("change", {
26563
26617
  selector: 'input[type="range"]'
@@ -26607,7 +26661,7 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26607
26661
  "valueControl"
26608
26662
  ],
26609
26663
  [
26610
- _dec87,
26664
+ _dec88,
26611
26665
  2,
26612
26666
  "handleRangeInput"
26613
26667
  ],
@@ -26627,7 +26681,7 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26627
26681
  "handleValueChange"
26628
26682
  ]
26629
26683
  ], [
26630
- _dec86
26684
+ _dec87
26631
26685
  ], _HTMLElement43));
26632
26686
  }
26633
26687
  #___private_value_1;
@@ -26705,10 +26759,14 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26705
26759
  if (this.valueControl) {
26706
26760
  this.valueControl.value = numericValue === null ? "" : String(numericValue);
26707
26761
  }
26708
- dispatchControlEvent(this, "input", {
26762
+ const name = this.getAttribute("name") ?? void 0;
26763
+ const detail = {
26764
+ name,
26709
26765
  value: this.value,
26710
26766
  event
26711
- });
26767
+ };
26768
+ dispatchControlEvent(this, "input", detail);
26769
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
26712
26770
  }
26713
26771
  handleRangeChange(event, target) {
26714
26772
  if (target) {
@@ -26719,10 +26777,14 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26719
26777
  this.valueControl.value = numericValue === null ? "" : String(numericValue);
26720
26778
  }
26721
26779
  }
26722
- dispatchControlEvent(this, "change", {
26780
+ const name = this.getAttribute("name") ?? void 0;
26781
+ const detail = {
26782
+ name,
26723
26783
  value: this.value,
26724
26784
  event
26725
- });
26785
+ };
26786
+ dispatchControlEvent(this, "change", detail);
26787
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
26726
26788
  }
26727
26789
  handleValueInput(event) {
26728
26790
  const rawValue = event.detail?.value ?? "";
@@ -26732,10 +26794,15 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26732
26794
  if (this.control) {
26733
26795
  this.control.value = String(numericValue ?? 0);
26734
26796
  }
26735
- dispatchControlEvent(this, "input", {
26797
+ const name = this.getAttribute("name") ?? void 0;
26798
+ const controlEvent = event.detail?.event ?? event;
26799
+ const detail = {
26800
+ name,
26736
26801
  value: this.value,
26737
- event: event.detail?.event ?? event
26738
- });
26802
+ event: controlEvent
26803
+ };
26804
+ dispatchControlEvent(this, "input", detail);
26805
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
26739
26806
  }
26740
26807
  handleValueChange(event) {
26741
26808
  const rawValue = event.detail?.value ?? "";
@@ -26745,10 +26812,15 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
26745
26812
  if (this.control) {
26746
26813
  this.control.value = String(numericValue ?? 0);
26747
26814
  }
26748
- dispatchControlEvent(this, "change", {
26815
+ const name = this.getAttribute("name") ?? void 0;
26816
+ const controlEvent = event.detail?.event ?? event;
26817
+ const detail = {
26818
+ name,
26749
26819
  value: this.value,
26750
- event: event.detail?.event ?? event
26751
- });
26820
+ event: controlEvent
26821
+ };
26822
+ dispatchControlEvent(this, "change", detail);
26823
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
26752
26824
  }
26753
26825
  updateProgress() {
26754
26826
  if (!this.control) {
@@ -27142,7 +27214,7 @@ function applyDecs2203RFactory44() {
27142
27214
  function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
27143
27215
  return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
27144
27216
  }
27145
- var _dec88;
27217
+ var _dec89;
27146
27218
  var _initClass44;
27147
27219
  var _HTMLElement44;
27148
27220
  var _dec128;
@@ -27175,7 +27247,7 @@ var getControlName = (element) => {
27175
27247
  return element.getAttribute?.("name") ?? null;
27176
27248
  };
27177
27249
  var _State;
27178
- _dec88 = Component({
27250
+ _dec89 = Component({
27179
27251
  tag: "ease-state",
27180
27252
  shadowMode: "open",
27181
27253
  styles: `
@@ -27228,7 +27300,7 @@ var State = class extends (_HTMLElement44 = HTMLElement) {
27228
27300
  "handleControlChange"
27229
27301
  ]
27230
27302
  ], [
27231
- _dec88
27303
+ _dec89
27232
27304
  ], _HTMLElement44));
27233
27305
  }
27234
27306
  #controls;
@@ -27811,7 +27883,7 @@ function applyDecs2203RFactory45() {
27811
27883
  function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
27812
27884
  return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
27813
27885
  }
27814
- var _dec89;
27886
+ var _dec90;
27815
27887
  var _initClass45;
27816
27888
  var _HTMLElement45;
27817
27889
  var _dec129;
@@ -27823,7 +27895,7 @@ var _init_disabled10;
27823
27895
  var _init_control7;
27824
27896
  var _initProto24;
27825
27897
  var _Toggle;
27826
- _dec89 = Component({
27898
+ _dec90 = Component({
27827
27899
  tag: "ease-toggle",
27828
27900
  styles: `
27829
27901
  :host {
@@ -27968,7 +28040,7 @@ var Toggle = class extends (_HTMLElement45 = HTMLElement) {
27968
28040
  "handleClick"
27969
28041
  ]
27970
28042
  ], [
27971
- _dec89
28043
+ _dec90
27972
28044
  ], _HTMLElement45));
27973
28045
  }
27974
28046
  #___private_checked_1;
@@ -28008,10 +28080,15 @@ var Toggle = class extends (_HTMLElement45 = HTMLElement) {
28008
28080
  return;
28009
28081
  }
28010
28082
  this.checked = !this.checked;
28011
- dispatchControlEvent(this, "toggle", {
28083
+ const name = this.getAttribute("name") ?? void 0;
28084
+ const detail = {
28085
+ name,
28012
28086
  value: this.checked,
28013
28087
  event
28014
- });
28088
+ };
28089
+ dispatchControlEvent(this, "toggle", detail);
28090
+ dispatchControlEvent(this, "change", detail);
28091
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
28015
28092
  }
28016
28093
  static {
28017
28094
  _initClass45();
@@ -28395,7 +28472,7 @@ function applyDecs2203RFactory46() {
28395
28472
  function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
28396
28473
  return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
28397
28474
  }
28398
- var _dec90;
28475
+ var _dec91;
28399
28476
  var _initClass46;
28400
28477
  var _HTMLElement46;
28401
28478
  var _dec130;
@@ -28411,7 +28488,7 @@ var _init_triggerElement;
28411
28488
  var _init_contentElement3;
28412
28489
  var _initProto25;
28413
28490
  var _Tooltip;
28414
- _dec90 = Component({
28491
+ _dec91 = Component({
28415
28492
  tag: "ease-tooltip",
28416
28493
  shadowMode: "open",
28417
28494
  styles: `
@@ -28495,7 +28572,7 @@ var Tooltip = class extends (_HTMLElement46 = HTMLElement) {
28495
28572
  "handleOutsideDismiss"
28496
28573
  ]
28497
28574
  ], [
28498
- _dec90
28575
+ _dec91
28499
28576
  ], _HTMLElement46));
28500
28577
  }
28501
28578
  #hoverTimer;