@easemate/web-kit 0.3.5 → 0.3.7

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/build/react.cjs CHANGED
@@ -3075,10 +3075,15 @@ var init_checkbox = __esm({
3075
3075
  return;
3076
3076
  }
3077
3077
  this.checked = !this.checked;
3078
- dispatchControlEvent(this, "checkbox", {
3078
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
3079
+ const detail = {
3080
+ name,
3079
3081
  value: this.checked,
3080
3082
  event
3081
- });
3083
+ };
3084
+ dispatchControlEvent(this, "checkbox", detail);
3085
+ dispatchControlEvent(this, "change", detail);
3086
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
3082
3087
  }
3083
3088
  static {
3084
3089
  _initClass2();
@@ -5464,6 +5469,7 @@ var init_dropdown = __esm({
5464
5469
  }
5465
5470
  }
5466
5471
  dispatchControlEvent(this, "toggle", {
5472
+ name: this.name ?? void 0,
5467
5473
  value: next,
5468
5474
  event: origin
5469
5475
  });
@@ -5727,6 +5733,7 @@ var init_dropdown = __esm({
5727
5733
  }
5728
5734
  #dispatchValueChange(value, label, event) {
5729
5735
  dispatchControlEvent(this, "change", {
5736
+ name: this.name ?? void 0,
5730
5737
  value,
5731
5738
  event
5732
5739
  });
@@ -6602,20 +6609,28 @@ var init_input = __esm({
6602
6609
  return;
6603
6610
  }
6604
6611
  this.value = target.value;
6605
- dispatchControlEvent(this, "input", {
6612
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
6613
+ const detail = {
6614
+ name,
6606
6615
  value: this.value ?? "",
6607
6616
  event
6608
- });
6617
+ };
6618
+ dispatchControlEvent(this, "input", detail);
6619
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
6609
6620
  }
6610
6621
  handleChange(event, target) {
6611
6622
  if (!target) {
6612
6623
  return;
6613
6624
  }
6614
6625
  this.value = target.value;
6615
- dispatchControlEvent(this, "change", {
6626
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
6627
+ const detail = {
6628
+ name,
6616
6629
  value: this.value ?? "",
6617
6630
  event
6618
- });
6631
+ };
6632
+ dispatchControlEvent(this, "change", detail);
6633
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
6619
6634
  }
6620
6635
  static {
6621
6636
  _initClass6();
@@ -9147,7 +9162,7 @@ function applyDecs2203RFactory10() {
9147
9162
  function _apply_decs_2203_r10(targetClass, memberDecs, classDecs, parentClass) {
9148
9163
  return (_apply_decs_2203_r10 = applyDecs2203RFactory10())(targetClass, memberDecs, classDecs, parentClass);
9149
9164
  }
9150
- var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37, _dec47, _init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8, _ColorInput, ColorInput;
9165
+ var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37, _dec47, _dec55, _init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8, _ColorInput, ColorInput;
9151
9166
  var init_color = __esm({
9152
9167
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts"() {
9153
9168
  "use strict";
@@ -9232,12 +9247,15 @@ var init_color = __esm({
9232
9247
  type: Boolean,
9233
9248
  reflect: true
9234
9249
  }), _dec47 = Prop({
9250
+ reflect: true,
9251
+ defaultValue: null
9252
+ }), _dec55 = Prop({
9235
9253
  reflect: true,
9236
9254
  defaultValue: "bottom-start"
9237
9255
  });
9238
9256
  ColorInput = class extends (_HTMLElement10 = HTMLElement) {
9239
9257
  static {
9240
- ({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
9258
+ ({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
9241
9259
  [
9242
9260
  _dec111,
9243
9261
  1,
@@ -9256,6 +9274,11 @@ var init_color = __esm({
9256
9274
  [
9257
9275
  _dec47,
9258
9276
  1,
9277
+ "name"
9278
+ ],
9279
+ [
9280
+ _dec55,
9281
+ 1,
9259
9282
  "placement"
9260
9283
  ]
9261
9284
  ], [
@@ -9284,12 +9307,19 @@ var init_color = __esm({
9284
9307
  set disabled(_v) {
9285
9308
  this.#___private_disabled_3 = _v;
9286
9309
  }
9287
- #___private_placement_4;
9310
+ #___private_name_4;
9311
+ get name() {
9312
+ return this.#___private_name_4;
9313
+ }
9314
+ set name(_v) {
9315
+ this.#___private_name_4 = _v;
9316
+ }
9317
+ #___private_placement_5;
9288
9318
  get placement() {
9289
- return this.#___private_placement_4;
9319
+ return this.#___private_placement_5;
9290
9320
  }
9291
9321
  set placement(_v) {
9292
- this.#___private_placement_4 = _v;
9322
+ this.#___private_placement_5 = _v;
9293
9323
  }
9294
9324
  connectedCallback() {
9295
9325
  this.#hasCustomTrigger = this.querySelector('[slot="trigger"]') !== null;
@@ -9334,21 +9364,24 @@ var init_color = __esm({
9334
9364
  _initClass10();
9335
9365
  }
9336
9366
  constructor(...args) {
9337
- 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) => {
9367
+ 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) => {
9338
9368
  this.value = event.target.value;
9339
9369
  dispatchControlEvent(this, "input", {
9370
+ name: this.name ?? void 0,
9340
9371
  value: this.value,
9341
9372
  event
9342
9373
  });
9343
9374
  }, this.#handlePickerInput = (event) => {
9344
9375
  this.value = event.detail.value;
9345
9376
  dispatchControlEvent(this, "input", {
9377
+ name: this.name ?? void 0,
9346
9378
  value: this.value,
9347
9379
  event
9348
9380
  });
9349
9381
  }, this.#handlePickerChange = (event) => {
9350
9382
  this.value = event.detail.value;
9351
9383
  dispatchControlEvent(this, "change", {
9384
+ name: this.name ?? void 0,
9352
9385
  value: this.value,
9353
9386
  event
9354
9387
  });
@@ -9361,6 +9394,7 @@ var init_color = __esm({
9361
9394
  }, this.#handlePickerApply = (event) => {
9362
9395
  this.value = event.detail.value;
9363
9396
  dispatchControlEvent(this, "change", {
9397
+ name: this.name ?? void 0,
9364
9398
  value: this.value,
9365
9399
  event
9366
9400
  });
@@ -10586,7 +10620,7 @@ function applyDecs2203RFactory13() {
10586
10620
  function _apply_decs_2203_r13(targetClass, memberDecs, classDecs, parentClass) {
10587
10621
  return (_apply_decs_2203_r13 = applyDecs2203RFactory13())(targetClass, memberDecs, classDecs, parentClass);
10588
10622
  }
10589
- var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec113, _dec210, _dec38, _dec48, _dec55, _dec65, _dec74, _dec84, _dec94, _init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3, _initProto9, _NumberInput, NumberInput;
10623
+ var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec113, _dec210, _dec38, _dec48, _dec56, _dec65, _dec74, _dec84, _dec94, _init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto9, _NumberInput, NumberInput;
10590
10624
  var init_number = __esm({
10591
10625
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/number/index.ts"() {
10592
10626
  "use strict";
@@ -10693,7 +10727,7 @@ var init_number = __esm({
10693
10727
  }), _dec48 = Prop({
10694
10728
  type: Number,
10695
10729
  reflect: true
10696
- }), _dec55 = Prop({
10730
+ }), _dec56 = Prop({
10697
10731
  reflect: true
10698
10732
  }), _dec65 = Prop({
10699
10733
  type: Boolean,
@@ -10705,7 +10739,7 @@ var init_number = __esm({
10705
10739
  });
10706
10740
  NumberInput = class extends (_HTMLElement13 = HTMLElement) {
10707
10741
  static {
10708
- ({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3, _initProto9], c: [_NumberInput, _initClass13] } = _apply_decs_2203_r13(this, [
10742
+ ({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto9], c: [_NumberInput, _initClass13] } = _apply_decs_2203_r13(this, [
10709
10743
  [
10710
10744
  _dec113,
10711
10745
  1,
@@ -10727,7 +10761,7 @@ var init_number = __esm({
10727
10761
  "step"
10728
10762
  ],
10729
10763
  [
10730
- _dec55,
10764
+ _dec56,
10731
10765
  1,
10732
10766
  "name"
10733
10767
  ],
@@ -10822,20 +10856,28 @@ var init_number = __esm({
10822
10856
  return;
10823
10857
  }
10824
10858
  this.value = coerceNumber(target.value);
10825
- dispatchControlEvent(this, "input", {
10859
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
10860
+ const detail = {
10861
+ name,
10826
10862
  value: this.value,
10827
10863
  event
10828
- });
10864
+ };
10865
+ dispatchControlEvent(this, "input", detail);
10866
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
10829
10867
  }
10830
10868
  handleChange(event, target) {
10831
10869
  if (!target) {
10832
10870
  return;
10833
10871
  }
10834
10872
  this.value = coerceNumber(target.value);
10835
- dispatchControlEvent(this, "change", {
10873
+ const name = this.name ?? this.getAttribute("name") ?? void 0;
10874
+ const detail = {
10875
+ name,
10836
10876
  value: this.value,
10837
10877
  event
10838
- });
10878
+ };
10879
+ dispatchControlEvent(this, "change", detail);
10880
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
10839
10881
  }
10840
10882
  addActiveLayer(button) {
10841
10883
  const layer = document.createElement("div");
@@ -10873,7 +10915,7 @@ var init_number = __esm({
10873
10915
  _initClass13();
10874
10916
  }
10875
10917
  constructor(...args) {
10876
- super(...args), this.#___private_value_1 = (_initProto9(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);
10918
+ super(...args), this.#___private_value_1 = (_initProto9(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);
10877
10919
  }
10878
10920
  };
10879
10921
  }
@@ -11256,7 +11298,7 @@ function applyDecs2203RFactory14() {
11256
11298
  function _apply_decs_2203_r14(targetClass, memberDecs, classDecs, parentClass) {
11257
11299
  return (_apply_decs_2203_r14 = applyDecs2203RFactory14())(targetClass, memberDecs, classDecs, parentClass);
11258
11300
  }
11259
- var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310, _dec49, _dec56, _init_value7, _init_disabled7, _init_control4, _init_name5, _initProto10, _Origin, Origin;
11301
+ var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310, _dec49, _dec57, _init_value7, _init_disabled7, _init_control4, _init_name6, _initProto10, _Origin, Origin;
11260
11302
  var init_origin = __esm({
11261
11303
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/origin/index.ts"() {
11262
11304
  "use strict";
@@ -11408,12 +11450,12 @@ var init_origin = __esm({
11408
11450
  }), _dec310 = Query("ease-dropdown"), _dec49 = Prop({
11409
11451
  reflect: true,
11410
11452
  defaultValue: ""
11411
- }), _dec56 = Listen("change", {
11453
+ }), _dec57 = Listen("change", {
11412
11454
  selector: "ease-dropdown"
11413
11455
  });
11414
11456
  Origin = class extends (_HTMLElement14 = HTMLElement) {
11415
11457
  static {
11416
- ({ e: [_init_value7, _init_disabled7, _init_control4, _init_name5, _initProto10], c: [_Origin, _initClass14] } = _apply_decs_2203_r14(this, [
11458
+ ({ e: [_init_value7, _init_disabled7, _init_control4, _init_name6, _initProto10], c: [_Origin, _initClass14] } = _apply_decs_2203_r14(this, [
11417
11459
  [
11418
11460
  _dec114,
11419
11461
  1,
@@ -11435,7 +11477,7 @@ var init_origin = __esm({
11435
11477
  "name"
11436
11478
  ],
11437
11479
  [
11438
- _dec56,
11480
+ _dec57,
11439
11481
  2,
11440
11482
  "handleChange"
11441
11483
  ]
@@ -11488,7 +11530,7 @@ var init_origin = __esm({
11488
11530
  _initClass14();
11489
11531
  }
11490
11532
  constructor(...args) {
11491
- super(...args), this.#___private_value_1 = (_initProto10(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) => {
11533
+ super(...args), this.#___private_value_1 = (_initProto10(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) => {
11492
11534
  this.value = String(this.control?.value ?? "center-center");
11493
11535
  dispatchControlEvent(this, "change", {
11494
11536
  value: this.value,
@@ -12620,7 +12662,7 @@ function applyDecs2203RFactory16() {
12620
12662
  function _apply_decs_2203_r16(targetClass, memberDecs, classDecs, parentClass) {
12621
12663
  return (_apply_decs_2203_r16 = applyDecs2203RFactory16())(targetClass, memberDecs, classDecs, parentClass);
12622
12664
  }
12623
- var import_lit_html18, _dec41, _initClass16, _HTMLElement16, _dec116, _dec213, _dec312, _dec410, _dec57, _dec66, _init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5, _initProto12, _RadioInput, RadioInput;
12665
+ var import_lit_html18, _dec41, _initClass16, _HTMLElement16, _dec116, _dec213, _dec312, _dec410, _dec58, _dec66, _init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto12, _RadioInput, RadioInput;
12624
12666
  var init_input2 = __esm({
12625
12667
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/input.ts"() {
12626
12668
  "use strict";
@@ -12892,12 +12934,12 @@ var init_input2 = __esm({
12892
12934
  }), _dec410 = Prop({
12893
12935
  type: Boolean,
12894
12936
  reflect: true
12895
- }), _dec57 = Query("button"), _dec66 = Listen("click", {
12937
+ }), _dec58 = Query("button"), _dec66 = Listen("click", {
12896
12938
  selector: "button"
12897
12939
  });
12898
12940
  RadioInput = class extends (_HTMLElement16 = HTMLElement) {
12899
12941
  static {
12900
- ({ e: [_init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5, _initProto12], c: [_RadioInput, _initClass16] } = _apply_decs_2203_r16(this, [
12942
+ ({ e: [_init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto12], c: [_RadioInput, _initClass16] } = _apply_decs_2203_r16(this, [
12901
12943
  [
12902
12944
  _dec116,
12903
12945
  1,
@@ -12919,7 +12961,7 @@ var init_input2 = __esm({
12919
12961
  "disabled"
12920
12962
  ],
12921
12963
  [
12922
- _dec57,
12964
+ _dec58,
12923
12965
  1,
12924
12966
  "control"
12925
12967
  ],
@@ -13012,16 +13054,22 @@ var init_input2 = __esm({
13012
13054
  return;
13013
13055
  }
13014
13056
  this.checked = true;
13015
- dispatchControlEvent(this, "radio", {
13057
+ const groupName = this.closest("ease-radio-group")?.getAttribute("name") ?? void 0;
13058
+ const name = this.getAttribute("name") ?? groupName ?? void 0;
13059
+ const detail = {
13060
+ name,
13016
13061
  value: this.checked,
13017
13062
  event
13018
- });
13063
+ };
13064
+ dispatchControlEvent(this, "radio", detail);
13065
+ dispatchControlEvent(this, "change", detail);
13066
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13019
13067
  }
13020
13068
  static {
13021
13069
  _initClass16();
13022
13070
  }
13023
13071
  constructor(...args) {
13024
- super(...args), this.#___private_checked_1 = (_initProto12(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()}`;
13072
+ super(...args), this.#___private_checked_1 = (_initProto12(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()}`;
13025
13073
  }
13026
13074
  };
13027
13075
  }
@@ -13404,7 +13452,7 @@ function applyDecs2203RFactory17() {
13404
13452
  function _apply_decs_2203_r17(targetClass, memberDecs, classDecs, parentClass) {
13405
13453
  return (_apply_decs_2203_r17 = applyDecs2203RFactory17())(targetClass, memberDecs, classDecs, parentClass);
13406
13454
  }
13407
- var import_lit_html19, _dec50, _initClass17, _HTMLElement17, _dec117, _dec214, _dec313, _dec411, _dec58, _dec67, _dec75, _dec85, _dec95, _dec104, _dec118, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl, _initProto13, _Slider, Slider;
13455
+ var import_lit_html19, _dec50, _initClass17, _HTMLElement17, _dec117, _dec214, _dec313, _dec411, _dec59, _dec67, _dec75, _dec85, _dec95, _dec104, _dec118, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl, _initProto13, _Slider, Slider;
13408
13456
  var init_slider = __esm({
13409
13457
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/slider/index.ts"() {
13410
13458
  "use strict";
@@ -13526,11 +13574,15 @@ var init_slider = __esm({
13526
13574
  .step=${this.step ?? 1}
13527
13575
  .value=${String(this.value ?? 0)}
13528
13576
  ?disabled=${this.disabled}
13577
+ @input=${this.handleRangeInput}
13578
+ @change=${this.handleRangeChange}
13529
13579
  ?aria-disabled=${this.disabled}
13530
13580
  />
13531
13581
 
13532
13582
  <ease-input
13533
13583
  part="value"
13584
+ @input=${this.handleValueInput}
13585
+ @change=${this.handleValueChange}
13534
13586
  type="number"
13535
13587
  placeholder="-"
13536
13588
  .disabled=${Boolean(this.disabled)}
@@ -13551,7 +13603,7 @@ var init_slider = __esm({
13551
13603
  }), _dec411 = Prop({
13552
13604
  type: Number,
13553
13605
  reflect: true
13554
- }), _dec58 = Prop({
13606
+ }), _dec59 = Prop({
13555
13607
  type: Boolean,
13556
13608
  reflect: true
13557
13609
  }), _dec67 = Query("input"), _dec75 = Query("ease-input"), _dec85 = Listen("input", {
@@ -13589,7 +13641,7 @@ var init_slider = __esm({
13589
13641
  "step"
13590
13642
  ],
13591
13643
  [
13592
- _dec58,
13644
+ _dec59,
13593
13645
  1,
13594
13646
  "disabled"
13595
13647
  ],
@@ -13702,10 +13754,13 @@ var init_slider = __esm({
13702
13754
  if (this.valueControl) {
13703
13755
  this.valueControl.value = numericValue === null ? "" : String(numericValue);
13704
13756
  }
13705
- dispatchControlEvent(this, "input", {
13757
+ const name = this.getAttribute("name") ?? void 0;
13758
+ const detail = {
13759
+ name,
13706
13760
  value: this.value,
13707
13761
  event
13708
- });
13762
+ };
13763
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13709
13764
  }
13710
13765
  handleRangeChange(event, target) {
13711
13766
  if (target) {
@@ -13716,10 +13771,13 @@ var init_slider = __esm({
13716
13771
  this.valueControl.value = numericValue === null ? "" : String(numericValue);
13717
13772
  }
13718
13773
  }
13719
- dispatchControlEvent(this, "change", {
13774
+ const name = this.getAttribute("name") ?? void 0;
13775
+ const detail = {
13776
+ name,
13720
13777
  value: this.value,
13721
13778
  event
13722
- });
13779
+ };
13780
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13723
13781
  }
13724
13782
  handleValueInput(event) {
13725
13783
  const rawValue = event.detail?.value ?? "";
@@ -13729,10 +13787,15 @@ var init_slider = __esm({
13729
13787
  if (this.control) {
13730
13788
  this.control.value = String(numericValue ?? 0);
13731
13789
  }
13732
- dispatchControlEvent(this, "input", {
13790
+ const name = this.getAttribute("name") ?? void 0;
13791
+ const controlEvent = event.detail?.event ?? event;
13792
+ const detail = {
13793
+ name,
13733
13794
  value: this.value,
13734
- event: event.detail?.event ?? event
13735
- });
13795
+ event: controlEvent
13796
+ };
13797
+ dispatchControlEvent(this, "input", detail);
13798
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13736
13799
  }
13737
13800
  handleValueChange(event) {
13738
13801
  const rawValue = event.detail?.value ?? "";
@@ -13742,10 +13805,15 @@ var init_slider = __esm({
13742
13805
  if (this.control) {
13743
13806
  this.control.value = String(numericValue ?? 0);
13744
13807
  }
13745
- dispatchControlEvent(this, "change", {
13808
+ const name = this.getAttribute("name") ?? void 0;
13809
+ const controlEvent = event.detail?.event ?? event;
13810
+ const detail = {
13811
+ name,
13746
13812
  value: this.value,
13747
- event: event.detail?.event ?? event
13748
- });
13813
+ event: controlEvent
13814
+ };
13815
+ dispatchControlEvent(this, "change", detail);
13816
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13749
13817
  }
13750
13818
  updateProgress() {
13751
13819
  if (!this.control) {
@@ -14339,10 +14407,15 @@ var init_toggle = __esm({
14339
14407
  return;
14340
14408
  }
14341
14409
  this.checked = !this.checked;
14342
- dispatchControlEvent(this, "toggle", {
14410
+ const name = this.getAttribute("name") ?? void 0;
14411
+ const detail = {
14412
+ name,
14343
14413
  value: this.checked,
14344
14414
  event
14345
- });
14415
+ };
14416
+ dispatchControlEvent(this, "toggle", detail);
14417
+ dispatchControlEvent(this, "change", detail);
14418
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
14346
14419
  }
14347
14420
  static {
14348
14421
  _initClass18();
@@ -14731,14 +14804,14 @@ function applyDecs2203RFactory19() {
14731
14804
  function _apply_decs_2203_r19(targetClass, memberDecs, classDecs, parentClass) {
14732
14805
  return (_apply_decs_2203_r19 = applyDecs2203RFactory19())(targetClass, memberDecs, classDecs, parentClass);
14733
14806
  }
14734
- var import_lit_html21, _dec59, _initClass19, _HTMLElement19, _dec120, _dec216, _init_label, _init_fullWidth2, _initProto15, _Field, Field;
14807
+ var import_lit_html21, _dec60, _initClass19, _HTMLElement19, _dec120, _dec216, _init_label, _init_fullWidth2, _initProto15, _Field, Field;
14735
14808
  var init_field = __esm({
14736
14809
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/field/index.ts"() {
14737
14810
  "use strict";
14738
14811
  import_lit_html21 = require("lit-html");
14739
14812
  init_Component();
14740
14813
  init_Prop();
14741
- _dec59 = Component({
14814
+ _dec60 = Component({
14742
14815
  tag: "ease-field",
14743
14816
  autoSlot: false,
14744
14817
  shadowMode: "open",
@@ -14827,7 +14900,7 @@ var init_field = __esm({
14827
14900
  "fullWidth"
14828
14901
  ]
14829
14902
  ], [
14830
- _dec59
14903
+ _dec60
14831
14904
  ], _HTMLElement19));
14832
14905
  }
14833
14906
  #___private_label_1;
@@ -15231,7 +15304,7 @@ function applyDecs2203RFactory20() {
15231
15304
  function _apply_decs_2203_r20(targetClass, memberDecs, classDecs, parentClass) {
15232
15305
  return (_apply_decs_2203_r20 = applyDecs2203RFactory20())(targetClass, memberDecs, classDecs, parentClass);
15233
15306
  }
15234
- var import_lit_html22, _dec60, _initClass20, _HTMLElement20, _dec121, _dec217, _dec315, _dec413, _dec510, _dec68, _dec76, _init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement2, _init_bodyElement, _initProto16, _Panel, Panel;
15307
+ var import_lit_html22, _dec61, _initClass20, _HTMLElement20, _dec121, _dec217, _dec315, _dec413, _dec510, _dec68, _dec76, _init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement2, _init_bodyElement, _initProto16, _Panel, Panel;
15235
15308
  var init_panel = __esm({
15236
15309
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts"() {
15237
15310
  "use strict";
@@ -15241,7 +15314,7 @@ var init_panel = __esm({
15241
15314
  init_Listen();
15242
15315
  init_Prop();
15243
15316
  init_Query();
15244
- _dec60 = Component({
15317
+ _dec61 = Component({
15245
15318
  tag: "ease-panel",
15246
15319
  shadowMode: "open",
15247
15320
  styles: `
@@ -15306,7 +15379,6 @@ var init_panel = __esm({
15306
15379
  align-items: center;
15307
15380
  gap: 2px;
15308
15381
  flex-grow: 1;
15309
- margin: 0 0 0 4px;
15310
15382
  }
15311
15383
 
15312
15384
  [part="tabs"]:empty {
@@ -15315,17 +15387,18 @@ var init_panel = __esm({
15315
15387
 
15316
15388
  [part="tab"] {
15317
15389
  appearance: none;
15390
+ border-radius: var(--ease-panel-tab-radius, var(--radii-md));
15391
+ background-color: var(--ease-panel-tab-background, transparent);
15392
+ box-sizing: border-box;
15393
+ padding: var(--ease-panel-tab-padding, 4px 8px);
15318
15394
  font-size: var(--ease-panel-tab-font-size);
15319
15395
  font-weight: var(--ease-panel-tab-font-weight);
15320
15396
  line-height: 24px;
15321
15397
  font-family: var(--ease-font-family);
15322
15398
  color: var(--ease-panel-tab-color);
15323
- background-color: transparent;
15324
15399
  border: none;
15325
- padding: 4px 8px;
15326
15400
  margin: 0;
15327
15401
  cursor: pointer;
15328
- border-radius: var(--ease-panel-tab-radius);
15329
15402
  transition: color 200ms, background-color 200ms;
15330
15403
  transition-timing-function: cubic-bezier(.25, 0, .5, 1);
15331
15404
  }
@@ -15535,7 +15608,7 @@ var init_panel = __esm({
15535
15608
  "onDefaultSlotChange"
15536
15609
  ]
15537
15610
  ], [
15538
- _dec60
15611
+ _dec61
15539
15612
  ], _HTMLElement20));
15540
15613
  }
15541
15614
  #tabs;
@@ -16218,7 +16291,7 @@ function applyDecs2203RFactory21() {
16218
16291
  function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
16219
16292
  return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
16220
16293
  }
16221
- var import_lit_html23, _dec61, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16294
+ var import_lit_html23, _dec69, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16222
16295
  var init_state = __esm({
16223
16296
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts"() {
16224
16297
  "use strict";
@@ -16249,7 +16322,7 @@ var init_state = __esm({
16249
16322
  }
16250
16323
  return element.getAttribute?.("name") ?? null;
16251
16324
  };
16252
- _dec61 = Component({
16325
+ _dec69 = Component({
16253
16326
  tag: "ease-state",
16254
16327
  shadowMode: "open",
16255
16328
  styles: `
@@ -16302,7 +16375,7 @@ var init_state = __esm({
16302
16375
  "handleControlChange"
16303
16376
  ]
16304
16377
  ], [
16305
- _dec61
16378
+ _dec69
16306
16379
  ], _HTMLElement21));
16307
16380
  }
16308
16381
  #controls;
@@ -16890,7 +16963,7 @@ function applyDecs2203RFactory22() {
16890
16963
  function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
16891
16964
  return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
16892
16965
  }
16893
- var import_lit_html24, _dec69, _initClass22, _HTMLElement22, _dec124, _dec219, _dec317, _dec415, _dec512, _dec610, _init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement3, _initProto18, _Tooltip, Tooltip;
16966
+ var import_lit_html24, _dec70, _initClass22, _HTMLElement22, _dec124, _dec219, _dec317, _dec415, _dec512, _dec610, _init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement3, _initProto18, _Tooltip, Tooltip;
16894
16967
  var init_tooltip = __esm({
16895
16968
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts"() {
16896
16969
  "use strict";
@@ -16900,7 +16973,7 @@ var init_tooltip = __esm({
16900
16973
  init_OutsideClick();
16901
16974
  init_Prop();
16902
16975
  init_Query();
16903
- _dec69 = Component({
16976
+ _dec70 = Component({
16904
16977
  tag: "ease-tooltip",
16905
16978
  shadowMode: "open",
16906
16979
  styles: `
@@ -16984,7 +17057,7 @@ var init_tooltip = __esm({
16984
17057
  "handleOutsideDismiss"
16985
17058
  ]
16986
17059
  ], [
16987
- _dec69
17060
+ _dec70
16988
17061
  ], _HTMLElement22));
16989
17062
  }
16990
17063
  #hoverTimer;
@@ -17531,7 +17604,7 @@ function applyDecs2203RFactory23() {
17531
17604
  function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
17532
17605
  return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
17533
17606
  }
17534
- var import_lit_html25, _dec70, _initClass23, _HTMLElement23, _dec125, _dec220, _dec318, _dec416, _init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto19, CENTER, DOTS_DATA, INNER_DOT_IDS, OUTER_DOT_IDS, forceReflow, getAngle, sortByAngle, LOOP_DURATION, ROTATION_DURATION, _LogoLoader, LogoLoader;
17607
+ var import_lit_html25, _dec71, _initClass23, _HTMLElement23, _dec125, _dec220, _dec318, _dec416, _init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto19, CENTER, DOTS_DATA, INNER_DOT_IDS, OUTER_DOT_IDS, forceReflow, getAngle, sortByAngle, LOOP_DURATION, ROTATION_DURATION, _LogoLoader, LogoLoader;
17535
17608
  var init_logo = __esm({
17536
17609
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts"() {
17537
17610
  "use strict";
@@ -17685,7 +17758,7 @@ var init_logo = __esm({
17685
17758
  sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).filter((dot) => dot != null).sort((a, b) => getAngle(a) - getAngle(b));
17686
17759
  LOOP_DURATION = 1500;
17687
17760
  ROTATION_DURATION = 600;
17688
- _dec70 = Component({
17761
+ _dec71 = Component({
17689
17762
  tag: "ease-logo-loader",
17690
17763
  styles: `
17691
17764
  :host {
@@ -17958,7 +18031,7 @@ var init_logo = __esm({
17958
18031
  "ariaLabel"
17959
18032
  ]
17960
18033
  ], [
17961
- _dec70
18034
+ _dec71
17962
18035
  ], _HTMLElement23));
17963
18036
  }
17964
18037
  #___private_loading_1;
@@ -18830,7 +18903,7 @@ function applyDecs2203RFactory24() {
18830
18903
  function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
18831
18904
  return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
18832
18905
  }
18833
- var import_lit_html26, _dec71, _initClass24, _HTMLElement24, _dec126, _dec221, _init_paused, _init_canvasEl, _initProto20, clamp, mean, quantile, computePercentile, computeMedian, formatNumber, formatMs, rateFps, _MonitorFps, MonitorFps;
18906
+ var import_lit_html26, _dec77, _initClass24, _HTMLElement24, _dec126, _dec221, _init_paused, _init_canvasEl, _initProto20, clamp, mean, quantile, computePercentile, computeMedian, formatNumber, formatMs, rateFps, _MonitorFps, MonitorFps;
18834
18907
  var init_fps = __esm({
18835
18908
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/fps.ts"() {
18836
18909
  "use strict";
@@ -18893,7 +18966,7 @@ var init_fps = __esm({
18893
18966
  }
18894
18967
  return "poor";
18895
18968
  };
18896
- _dec71 = Component({
18969
+ _dec77 = Component({
18897
18970
  tag: "ease-monitor-fps",
18898
18971
  autoSlot: false,
18899
18972
  shadowMode: "open",
@@ -19012,7 +19085,7 @@ var init_fps = __esm({
19012
19085
  "canvasEl"
19013
19086
  ]
19014
19087
  ], [
19015
- _dec71
19088
+ _dec77
19016
19089
  ], _HTMLElement24));
19017
19090
  }
19018
19091
  #___private_paused_1;
@@ -19673,7 +19746,7 @@ function applyDecs2203RFactory25() {
19673
19746
  function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
19674
19747
  return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
19675
19748
  }
19676
- var import_lit_html27, _dec77, _initClass25, _HTMLElement25, _dec127, _dec222, _dec319, _init_metrics, _init_network, _initProto21, METRIC_THRESHOLDS, GLOBAL_BENCHMARKS, rateMetric, formatMetric, formatBytes, estimateCarbonFootprint, _Monitor, Monitor;
19749
+ var import_lit_html27, _dec78, _initClass25, _HTMLElement25, _dec127, _dec222, _dec319, _init_metrics, _init_network, _initProto21, METRIC_THRESHOLDS, GLOBAL_BENCHMARKS, rateMetric, formatMetric, formatBytes, estimateCarbonFootprint, _Monitor, Monitor;
19677
19750
  var init_monitor = __esm({
19678
19751
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/index.ts"() {
19679
19752
  "use strict";
@@ -19791,7 +19864,7 @@ var init_monitor = __esm({
19791
19864
  const emissions = totalBytes / 1e9 * 0.81;
19792
19865
  return `${emissions.toFixed(3)}g CO2 eq.`;
19793
19866
  };
19794
- _dec77 = Component({
19867
+ _dec78 = Component({
19795
19868
  tag: "ease-monitor",
19796
19869
  styles: `
19797
19870
  :host {
@@ -19935,7 +20008,7 @@ var init_monitor = __esm({
19935
20008
  "handleFpsUpdate"
19936
20009
  ]
19937
20010
  ], [
19938
- _dec77
20011
+ _dec78
19939
20012
  ], _HTMLElement25));
19940
20013
  }
19941
20014
  #___private_metrics_1;
@@ -20829,13 +20902,13 @@ function applyDecs2203RFactory26() {
20829
20902
  function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
20830
20903
  return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
20831
20904
  }
20832
- var import_lit_html28, _dec78, _initClass26, _HTMLElement26, _IconAnchorAdd, IconAnchorAdd;
20905
+ var import_lit_html28, _dec79, _initClass26, _HTMLElement26, _IconAnchorAdd, IconAnchorAdd;
20833
20906
  var init_anchor_add = __esm({
20834
20907
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-add.ts"() {
20835
20908
  "use strict";
20836
20909
  import_lit_html28 = require("lit-html");
20837
20910
  init_Component();
20838
- _dec78 = Component({
20911
+ _dec79 = Component({
20839
20912
  tag: "ease-icon-anchor-add",
20840
20913
  styles: `
20841
20914
  :host {
@@ -20865,7 +20938,7 @@ var init_anchor_add = __esm({
20865
20938
  IconAnchorAdd = class extends (_HTMLElement26 = HTMLElement) {
20866
20939
  static {
20867
20940
  ({ c: [_IconAnchorAdd, _initClass26] } = _apply_decs_2203_r26(this, [], [
20868
- _dec78
20941
+ _dec79
20869
20942
  ], _HTMLElement26));
20870
20943
  }
20871
20944
  static {
@@ -21252,13 +21325,13 @@ function applyDecs2203RFactory27() {
21252
21325
  function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
21253
21326
  return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
21254
21327
  }
21255
- var import_lit_html29, _dec79, _initClass27, _HTMLElement27, _IconAnchorRemove, IconAnchorRemove;
21328
+ var import_lit_html29, _dec80, _initClass27, _HTMLElement27, _IconAnchorRemove, IconAnchorRemove;
21256
21329
  var init_anchor_remove = __esm({
21257
21330
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-remove.ts"() {
21258
21331
  "use strict";
21259
21332
  import_lit_html29 = require("lit-html");
21260
21333
  init_Component();
21261
- _dec79 = Component({
21334
+ _dec80 = Component({
21262
21335
  tag: "ease-icon-anchor-remove",
21263
21336
  styles: `
21264
21337
  :host {
@@ -21287,7 +21360,7 @@ var init_anchor_remove = __esm({
21287
21360
  IconAnchorRemove = class extends (_HTMLElement27 = HTMLElement) {
21288
21361
  static {
21289
21362
  ({ c: [_IconAnchorRemove, _initClass27] } = _apply_decs_2203_r27(this, [], [
21290
- _dec79
21363
+ _dec80
21291
21364
  ], _HTMLElement27));
21292
21365
  }
21293
21366
  static {
@@ -21674,13 +21747,13 @@ function applyDecs2203RFactory28() {
21674
21747
  function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
21675
21748
  return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
21676
21749
  }
21677
- var import_lit_html30, _dec80, _initClass28, _HTMLElement28, _ArrowUp, ArrowUp;
21750
+ var import_lit_html30, _dec81, _initClass28, _HTMLElement28, _ArrowUp, ArrowUp;
21678
21751
  var init_arrow_up = __esm({
21679
21752
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/arrow-up.ts"() {
21680
21753
  "use strict";
21681
21754
  import_lit_html30 = require("lit-html");
21682
21755
  init_Component();
21683
- _dec80 = Component({
21756
+ _dec81 = Component({
21684
21757
  tag: "ease-icon-arrow-up",
21685
21758
  styles: `
21686
21759
  :host {
@@ -21705,7 +21778,7 @@ var init_arrow_up = __esm({
21705
21778
  ArrowUp = class extends (_HTMLElement28 = HTMLElement) {
21706
21779
  static {
21707
21780
  ({ c: [_ArrowUp, _initClass28] } = _apply_decs_2203_r28(this, [], [
21708
- _dec80
21781
+ _dec81
21709
21782
  ], _HTMLElement28));
21710
21783
  }
21711
21784
  static {
@@ -22092,13 +22165,13 @@ function applyDecs2203RFactory29() {
22092
22165
  function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
22093
22166
  return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
22094
22167
  }
22095
- var import_lit_html31, _dec81, _initClass29, _HTMLElement29, _IconBezier, IconBezier;
22168
+ var import_lit_html31, _dec86, _initClass29, _HTMLElement29, _IconBezier, IconBezier;
22096
22169
  var init_bezier = __esm({
22097
22170
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier.ts"() {
22098
22171
  "use strict";
22099
22172
  import_lit_html31 = require("lit-html");
22100
22173
  init_Component();
22101
- _dec81 = Component({
22174
+ _dec86 = Component({
22102
22175
  tag: "ease-icon-bezier",
22103
22176
  styles: `
22104
22177
  :host {
@@ -22119,7 +22192,7 @@ var init_bezier = __esm({
22119
22192
  IconBezier = class extends (_HTMLElement29 = HTMLElement) {
22120
22193
  static {
22121
22194
  ({ c: [_IconBezier, _initClass29] } = _apply_decs_2203_r29(this, [], [
22122
- _dec81
22195
+ _dec86
22123
22196
  ], _HTMLElement29));
22124
22197
  }
22125
22198
  static {
@@ -22506,13 +22579,13 @@ function applyDecs2203RFactory30() {
22506
22579
  function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
22507
22580
  return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
22508
22581
  }
22509
- var import_lit_html32, _dec86, _initClass30, _HTMLElement30, _IconBezierAngle, IconBezierAngle;
22582
+ var import_lit_html32, _dec87, _initClass30, _HTMLElement30, _IconBezierAngle, IconBezierAngle;
22510
22583
  var init_bezier_angle = __esm({
22511
22584
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-angle.ts"() {
22512
22585
  "use strict";
22513
22586
  import_lit_html32 = require("lit-html");
22514
22587
  init_Component();
22515
- _dec86 = Component({
22588
+ _dec87 = Component({
22516
22589
  tag: "ease-icon-bezier-angle",
22517
22590
  styles: `
22518
22591
  :host {
@@ -22540,7 +22613,7 @@ var init_bezier_angle = __esm({
22540
22613
  IconBezierAngle = class extends (_HTMLElement30 = HTMLElement) {
22541
22614
  static {
22542
22615
  ({ c: [_IconBezierAngle, _initClass30] } = _apply_decs_2203_r30(this, [], [
22543
- _dec86
22616
+ _dec87
22544
22617
  ], _HTMLElement30));
22545
22618
  }
22546
22619
  static {
@@ -22927,13 +23000,13 @@ function applyDecs2203RFactory31() {
22927
23000
  function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
22928
23001
  return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
22929
23002
  }
22930
- var import_lit_html33, _dec87, _initClass31, _HTMLElement31, _IconBezierDistribute, IconBezierDistribute;
23003
+ var import_lit_html33, _dec88, _initClass31, _HTMLElement31, _IconBezierDistribute, IconBezierDistribute;
22931
23004
  var init_bezier_distribute = __esm({
22932
23005
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-distribute.ts"() {
22933
23006
  "use strict";
22934
23007
  import_lit_html33 = require("lit-html");
22935
23008
  init_Component();
22936
- _dec87 = Component({
23009
+ _dec88 = Component({
22937
23010
  tag: "ease-icon-bezier-distribute",
22938
23011
  styles: `
22939
23012
  :host {
@@ -22962,7 +23035,7 @@ var init_bezier_distribute = __esm({
22962
23035
  IconBezierDistribute = class extends (_HTMLElement31 = HTMLElement) {
22963
23036
  static {
22964
23037
  ({ c: [_IconBezierDistribute, _initClass31] } = _apply_decs_2203_r31(this, [], [
22965
- _dec87
23038
+ _dec88
22966
23039
  ], _HTMLElement31));
22967
23040
  }
22968
23041
  static {
@@ -23349,13 +23422,13 @@ function applyDecs2203RFactory32() {
23349
23422
  function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
23350
23423
  return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
23351
23424
  }
23352
- var import_lit_html34, _dec88, _initClass32, _HTMLElement32, _IconBezierLength, IconBezierLength;
23425
+ var import_lit_html34, _dec89, _initClass32, _HTMLElement32, _IconBezierLength, IconBezierLength;
23353
23426
  var init_bezier_length = __esm({
23354
23427
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-length.ts"() {
23355
23428
  "use strict";
23356
23429
  import_lit_html34 = require("lit-html");
23357
23430
  init_Component();
23358
- _dec88 = Component({
23431
+ _dec89 = Component({
23359
23432
  tag: "ease-icon-bezier-length",
23360
23433
  styles: `
23361
23434
  :host {
@@ -23381,7 +23454,7 @@ var init_bezier_length = __esm({
23381
23454
  IconBezierLength = class extends (_HTMLElement32 = HTMLElement) {
23382
23455
  static {
23383
23456
  ({ c: [_IconBezierLength, _initClass32] } = _apply_decs_2203_r32(this, [], [
23384
- _dec88
23457
+ _dec89
23385
23458
  ], _HTMLElement32));
23386
23459
  }
23387
23460
  static {
@@ -23768,13 +23841,13 @@ function applyDecs2203RFactory33() {
23768
23841
  function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
23769
23842
  return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
23770
23843
  }
23771
- var import_lit_html35, _dec89, _initClass33, _HTMLElement33, _IconBezierMirror, IconBezierMirror;
23844
+ var import_lit_html35, _dec90, _initClass33, _HTMLElement33, _IconBezierMirror, IconBezierMirror;
23772
23845
  var init_bezier_mirror = __esm({
23773
23846
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-mirror.ts"() {
23774
23847
  "use strict";
23775
23848
  import_lit_html35 = require("lit-html");
23776
23849
  init_Component();
23777
- _dec89 = Component({
23850
+ _dec90 = Component({
23778
23851
  tag: "ease-icon-bezier-mirror",
23779
23852
  styles: `
23780
23853
  :host {
@@ -23800,7 +23873,7 @@ var init_bezier_mirror = __esm({
23800
23873
  IconBezierMirror = class extends (_HTMLElement33 = HTMLElement) {
23801
23874
  static {
23802
23875
  ({ c: [_IconBezierMirror, _initClass33] } = _apply_decs_2203_r33(this, [], [
23803
- _dec89
23876
+ _dec90
23804
23877
  ], _HTMLElement33));
23805
23878
  }
23806
23879
  static {
@@ -24187,13 +24260,13 @@ function applyDecs2203RFactory34() {
24187
24260
  function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
24188
24261
  return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
24189
24262
  }
24190
- var import_lit_html36, _dec90, _initClass34, _HTMLElement34, _IconCheck, IconCheck;
24263
+ var import_lit_html36, _dec91, _initClass34, _HTMLElement34, _IconCheck, IconCheck;
24191
24264
  var init_check = __esm({
24192
24265
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/check.ts"() {
24193
24266
  "use strict";
24194
24267
  import_lit_html36 = require("lit-html");
24195
24268
  init_Component();
24196
- _dec90 = Component({
24269
+ _dec91 = Component({
24197
24270
  tag: "ease-icon-check",
24198
24271
  styles: `
24199
24272
  :host {
@@ -24218,7 +24291,7 @@ var init_check = __esm({
24218
24291
  IconCheck = class extends (_HTMLElement34 = HTMLElement) {
24219
24292
  static {
24220
24293
  ({ c: [_IconCheck, _initClass34] } = _apply_decs_2203_r34(this, [], [
24221
- _dec90
24294
+ _dec91
24222
24295
  ], _HTMLElement34));
24223
24296
  }
24224
24297
  static {
@@ -24605,13 +24678,13 @@ function applyDecs2203RFactory35() {
24605
24678
  function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
24606
24679
  return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
24607
24680
  }
24608
- var import_lit_html37, _dec91, _initClass35, _HTMLElement35, _IconCircleArrowLeft, IconCircleArrowLeft;
24681
+ var import_lit_html37, _dec96, _initClass35, _HTMLElement35, _IconCircleArrowLeft, IconCircleArrowLeft;
24609
24682
  var init_circle_arrow_left = __esm({
24610
24683
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-left.ts"() {
24611
24684
  "use strict";
24612
24685
  import_lit_html37 = require("lit-html");
24613
24686
  init_Component();
24614
- _dec91 = Component({
24687
+ _dec96 = Component({
24615
24688
  tag: "ease-icon-circle-arrow-left",
24616
24689
  styles: `
24617
24690
  :host {
@@ -24636,7 +24709,7 @@ var init_circle_arrow_left = __esm({
24636
24709
  IconCircleArrowLeft = class extends (_HTMLElement35 = HTMLElement) {
24637
24710
  static {
24638
24711
  ({ c: [_IconCircleArrowLeft, _initClass35] } = _apply_decs_2203_r35(this, [], [
24639
- _dec91
24712
+ _dec96
24640
24713
  ], _HTMLElement35));
24641
24714
  }
24642
24715
  static {
@@ -25023,13 +25096,13 @@ function applyDecs2203RFactory36() {
25023
25096
  function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
25024
25097
  return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
25025
25098
  }
25026
- var import_lit_html38, _dec96, _initClass36, _HTMLElement36, _IconCircleArrowRight, IconCircleArrowRight;
25099
+ var import_lit_html38, _dec97, _initClass36, _HTMLElement36, _IconCircleArrowRight, IconCircleArrowRight;
25027
25100
  var init_circle_arrow_right = __esm({
25028
25101
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-right.ts"() {
25029
25102
  "use strict";
25030
25103
  import_lit_html38 = require("lit-html");
25031
25104
  init_Component();
25032
- _dec96 = Component({
25105
+ _dec97 = Component({
25033
25106
  tag: "ease-icon-circle-arrow-right",
25034
25107
  styles: `
25035
25108
  :host {
@@ -25054,7 +25127,7 @@ var init_circle_arrow_right = __esm({
25054
25127
  IconCircleArrowRight = class extends (_HTMLElement36 = HTMLElement) {
25055
25128
  static {
25056
25129
  ({ c: [_IconCircleArrowRight, _initClass36] } = _apply_decs_2203_r36(this, [], [
25057
- _dec96
25130
+ _dec97
25058
25131
  ], _HTMLElement36));
25059
25132
  }
25060
25133
  static {
@@ -25441,13 +25514,13 @@ function applyDecs2203RFactory37() {
25441
25514
  function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
25442
25515
  return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
25443
25516
  }
25444
- var import_lit_html39, _dec97, _initClass37, _HTMLElement37, _IconClear, IconClear;
25517
+ var import_lit_html39, _dec98, _initClass37, _HTMLElement37, _IconClear, IconClear;
25445
25518
  var init_clear = __esm({
25446
25519
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/clear.ts"() {
25447
25520
  "use strict";
25448
25521
  import_lit_html39 = require("lit-html");
25449
25522
  init_Component();
25450
- _dec97 = Component({
25523
+ _dec98 = Component({
25451
25524
  tag: "ease-icon-clear",
25452
25525
  styles: `
25453
25526
  :host {
@@ -25516,7 +25589,7 @@ var init_clear = __esm({
25516
25589
  IconClear = class extends (_HTMLElement37 = HTMLElement) {
25517
25590
  static {
25518
25591
  ({ c: [_IconClear, _initClass37] } = _apply_decs_2203_r37(this, [], [
25519
- _dec97
25592
+ _dec98
25520
25593
  ], _HTMLElement37));
25521
25594
  }
25522
25595
  static {
@@ -25903,13 +25976,13 @@ function applyDecs2203RFactory38() {
25903
25976
  function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
25904
25977
  return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
25905
25978
  }
25906
- var import_lit_html40, _dec98, _initClass38, _HTMLElement38, _IconCode, IconCode;
25979
+ var import_lit_html40, _dec99, _initClass38, _HTMLElement38, _IconCode, IconCode;
25907
25980
  var init_code = __esm({
25908
25981
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/code.ts"() {
25909
25982
  "use strict";
25910
25983
  import_lit_html40 = require("lit-html");
25911
25984
  init_Component();
25912
- _dec98 = Component({
25985
+ _dec99 = Component({
25913
25986
  tag: "ease-icon-code",
25914
25987
  styles: `
25915
25988
  :host {
@@ -25934,7 +26007,7 @@ var init_code = __esm({
25934
26007
  IconCode = class extends (_HTMLElement38 = HTMLElement) {
25935
26008
  static {
25936
26009
  ({ c: [_IconCode, _initClass38] } = _apply_decs_2203_r38(this, [], [
25937
- _dec98
26010
+ _dec99
25938
26011
  ], _HTMLElement38));
25939
26012
  }
25940
26013
  static {
@@ -26321,13 +26394,13 @@ function applyDecs2203RFactory39() {
26321
26394
  function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
26322
26395
  return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
26323
26396
  }
26324
- var import_lit_html41, _dec99, _initClass39, _HTMLElement39, _IconDots, IconDots;
26397
+ var import_lit_html41, _dec100, _initClass39, _HTMLElement39, _IconDots, IconDots;
26325
26398
  var init_dots = __esm({
26326
26399
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/dots.ts"() {
26327
26400
  "use strict";
26328
26401
  import_lit_html41 = require("lit-html");
26329
26402
  init_Component();
26330
- _dec99 = Component({
26403
+ _dec100 = Component({
26331
26404
  tag: "ease-icon-dots",
26332
26405
  styles: `
26333
26406
  :host {
@@ -26354,7 +26427,7 @@ var init_dots = __esm({
26354
26427
  IconDots = class extends (_HTMLElement39 = HTMLElement) {
26355
26428
  static {
26356
26429
  ({ c: [_IconDots, _initClass39] } = _apply_decs_2203_r39(this, [], [
26357
- _dec99
26430
+ _dec100
26358
26431
  ], _HTMLElement39));
26359
26432
  }
26360
26433
  static {
@@ -26741,14 +26814,14 @@ function applyDecs2203RFactory40() {
26741
26814
  function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
26742
26815
  return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
26743
26816
  }
26744
- var import_lit_html42, _dec100, _initClass40, _HTMLElement40, _dec128, _init_state2, _initProto22, _IconGrid, IconGrid;
26817
+ var import_lit_html42, _dec101, _initClass40, _HTMLElement40, _dec128, _init_state2, _initProto22, _IconGrid, IconGrid;
26745
26818
  var init_grid = __esm({
26746
26819
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/grid.ts"() {
26747
26820
  "use strict";
26748
26821
  import_lit_html42 = require("lit-html");
26749
26822
  init_Component();
26750
26823
  init_Prop();
26751
- _dec100 = Component({
26824
+ _dec101 = Component({
26752
26825
  tag: "ease-icon-grid",
26753
26826
  styles: `
26754
26827
  :host {
@@ -26807,7 +26880,7 @@ var init_grid = __esm({
26807
26880
  "state"
26808
26881
  ]
26809
26882
  ], [
26810
- _dec100
26883
+ _dec101
26811
26884
  ], _HTMLElement40));
26812
26885
  }
26813
26886
  #___private_state_1;
@@ -27222,13 +27295,13 @@ function applyDecs2203RFactory41() {
27222
27295
  function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
27223
27296
  return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
27224
27297
  }
27225
- var import_lit_html43, _dec101, _initClass41, _HTMLElement41, _Loading, Loading;
27298
+ var import_lit_html43, _dec105, _initClass41, _HTMLElement41, _Loading, Loading;
27226
27299
  var init_loading = __esm({
27227
27300
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/loading.ts"() {
27228
27301
  "use strict";
27229
27302
  import_lit_html43 = require("lit-html");
27230
27303
  init_Component();
27231
- _dec101 = Component({
27304
+ _dec105 = Component({
27232
27305
  tag: "ease-icon-loading",
27233
27306
  styles: `
27234
27307
  :host {
@@ -27291,7 +27364,7 @@ var init_loading = __esm({
27291
27364
  Loading = class extends (_HTMLElement41 = HTMLElement) {
27292
27365
  static {
27293
27366
  ({ c: [_Loading, _initClass41] } = _apply_decs_2203_r41(this, [], [
27294
- _dec101
27367
+ _dec105
27295
27368
  ], _HTMLElement41));
27296
27369
  }
27297
27370
  static {
@@ -27678,13 +27751,13 @@ function applyDecs2203RFactory42() {
27678
27751
  function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
27679
27752
  return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
27680
27753
  }
27681
- var import_lit_html44, _dec105, _initClass42, _HTMLElement42, _IconMention, IconMention;
27754
+ var import_lit_html44, _dec106, _initClass42, _HTMLElement42, _IconMention, IconMention;
27682
27755
  var init_mention = __esm({
27683
27756
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/mention.ts"() {
27684
27757
  "use strict";
27685
27758
  import_lit_html44 = require("lit-html");
27686
27759
  init_Component();
27687
- _dec105 = Component({
27760
+ _dec106 = Component({
27688
27761
  tag: "ease-icon-mention",
27689
27762
  styles: `
27690
27763
  :host {
@@ -27709,7 +27782,7 @@ var init_mention = __esm({
27709
27782
  IconMention = class extends (_HTMLElement42 = HTMLElement) {
27710
27783
  static {
27711
27784
  ({ c: [_IconMention, _initClass42] } = _apply_decs_2203_r42(this, [], [
27712
- _dec105
27785
+ _dec106
27713
27786
  ], _HTMLElement42));
27714
27787
  }
27715
27788
  static {
@@ -28096,13 +28169,13 @@ function applyDecs2203RFactory43() {
28096
28169
  function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
28097
28170
  return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
28098
28171
  }
28099
- var import_lit_html45, _dec106, _initClass43, _HTMLElement43, _Settings, Settings;
28172
+ var import_lit_html45, _dec107, _initClass43, _HTMLElement43, _Settings, Settings;
28100
28173
  var init_settings = __esm({
28101
28174
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/settings.ts"() {
28102
28175
  "use strict";
28103
28176
  import_lit_html45 = require("lit-html");
28104
28177
  init_Component();
28105
- _dec106 = Component({
28178
+ _dec107 = Component({
28106
28179
  tag: "ease-icon-settings",
28107
28180
  styles: `
28108
28181
  :host {
@@ -28127,7 +28200,7 @@ var init_settings = __esm({
28127
28200
  Settings = class extends (_HTMLElement43 = HTMLElement) {
28128
28201
  static {
28129
28202
  ({ c: [_Settings, _initClass43] } = _apply_decs_2203_r43(this, [], [
28130
- _dec106
28203
+ _dec107
28131
28204
  ], _HTMLElement43));
28132
28205
  }
28133
28206
  static {
@@ -28514,14 +28587,14 @@ function applyDecs2203RFactory44() {
28514
28587
  function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
28515
28588
  return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
28516
28589
  }
28517
- var import_lit_html46, _dec107, _initClass44, _HTMLElement44, _dec129, _init_state3, _initProto23, _Snap, Snap;
28590
+ var import_lit_html46, _dec108, _initClass44, _HTMLElement44, _dec129, _init_state3, _initProto23, _Snap, Snap;
28518
28591
  var init_snap = __esm({
28519
28592
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/snap.ts"() {
28520
28593
  "use strict";
28521
28594
  import_lit_html46 = require("lit-html");
28522
28595
  init_Component();
28523
28596
  init_Prop();
28524
- _dec107 = Component({
28597
+ _dec108 = Component({
28525
28598
  tag: "ease-icon-snap",
28526
28599
  styles: `
28527
28600
  :host {
@@ -28622,7 +28695,7 @@ var init_snap = __esm({
28622
28695
  "state"
28623
28696
  ]
28624
28697
  ], [
28625
- _dec107
28698
+ _dec108
28626
28699
  ], _HTMLElement44));
28627
28700
  }
28628
28701
  #___private_state_1;
@@ -29748,6 +29821,21 @@ var init_utils2 = __esm({
29748
29821
  }
29749
29822
  });
29750
29823
 
29824
+ // src/elements/shared.ts
29825
+ var dispatchControlEvent2;
29826
+ var init_shared2 = __esm({
29827
+ "src/elements/shared.ts"() {
29828
+ "use strict";
29829
+ dispatchControlEvent2 = (host, type, detail) => {
29830
+ host.dispatchEvent(new CustomEvent(type, {
29831
+ detail,
29832
+ bubbles: true,
29833
+ composed: true
29834
+ }));
29835
+ };
29836
+ }
29837
+ });
29838
+
29751
29839
  // swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/constants.ts
29752
29840
  var HIT_AREA_RADIUS, LINEAR_HIT_THRESHOLD, LINEAR_PATH_SAMPLES, DRAG_ACTIVATION_DISTANCE_PX, DRAG_ACTIVATION_DISTANCE_PX_SQUARED, DEFAULT_HANDLE_LENGTH, SVG_WIDTH, SVG_HEIGHT, BEZIER_CONTROL_MIN_Y, BEZIER_CONTROL_MAX_Y, EASING_PRESETS;
29753
29841
  var init_constants = __esm({
@@ -29999,21 +30087,6 @@ var init_svg_renderer = __esm({
29999
30087
  }
30000
30088
  });
30001
30089
 
30002
- // src/elements/shared.ts
30003
- var dispatchControlEvent2;
30004
- var init_shared2 = __esm({
30005
- "src/elements/shared.ts"() {
30006
- "use strict";
30007
- dispatchControlEvent2 = (host, type, detail) => {
30008
- host.dispatchEvent(new CustomEvent(type, {
30009
- detail,
30010
- bubbles: true,
30011
- composed: true
30012
- }));
30013
- };
30014
- }
30015
- });
30016
-
30017
30090
  // swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts
30018
30091
  function applyDecs2203RFactory45() {
30019
30092
  function createAddInitializerMethod(initializers, decoratorFinishedRef) {
@@ -30387,7 +30460,7 @@ function applyDecs2203RFactory45() {
30387
30460
  function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
30388
30461
  return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
30389
30462
  }
30390
- var import_lit_html48, _dec108, _initClass45, _HTMLElement45, _dec130, _dec223, _dec320, _dec417, _dec513, _dec611, _dec710, _dec810, _dec910, _init_easingType, _init_points, _init_showGrid, _init_snapToGrid, _init_gridSize, _init_focusedLinearIndex, _init_simplify, _init_round, _init_svgElement, _initProto24, _CurveCanvas, CurveCanvas, lerp, lerpPoint, findTForX, splitCurveSegment, evaluateCubicPointNormalized;
30463
+ var import_lit_html48, _dec109, _initClass45, _HTMLElement45, _dec130, _dec223, _dec320, _dec417, _dec513, _dec611, _dec710, _dec810, _dec910, _init_easingType, _init_points, _init_showGrid, _init_snapToGrid, _init_gridSize, _init_focusedLinearIndex, _init_simplify, _init_round, _init_svgElement, _initProto24, _CurveCanvas, CurveCanvas, lerp, lerpPoint, findTForX, splitCurveSegment, evaluateCubicPointNormalized;
30391
30464
  var init_canvas = __esm({
30392
30465
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts"() {
30393
30466
  "use strict";
@@ -30401,7 +30474,7 @@ var init_canvas = __esm({
30401
30474
  init_Prop();
30402
30475
  init_Query();
30403
30476
  init_shared2();
30404
- _dec108 = Component({
30477
+ _dec109 = Component({
30405
30478
  tag: "ease-curve-canvas",
30406
30479
  styles: canvasStyles,
30407
30480
  template() {
@@ -30507,7 +30580,7 @@ var init_canvas = __esm({
30507
30580
  "svgElement"
30508
30581
  ]
30509
30582
  ], [
30510
- _dec108
30583
+ _dec109
30511
30584
  ], _HTMLElement45));
30512
30585
  }
30513
30586
  #___private_easingType_1;
@@ -31391,6 +31464,7 @@ var init_canvas = __esm({
31391
31464
  }, this.#emitPoints = (value, event) => {
31392
31465
  const target = this.#getEventTarget();
31393
31466
  const detail = {
31467
+ name: target.name,
31394
31468
  value,
31395
31469
  event
31396
31470
  };
@@ -31401,6 +31475,7 @@ var init_canvas = __esm({
31401
31475
  }
31402
31476
  const target = this.#getEventTarget();
31403
31477
  const detail = {
31478
+ name: target.name,
31404
31479
  value: index,
31405
31480
  event
31406
31481
  };
@@ -32119,7 +32194,7 @@ function applyDecs2203RFactory46() {
32119
32194
  function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
32120
32195
  return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
32121
32196
  }
32122
- var import_lit_html49, _dec109, _initClass46, _HTMLElement46, _dec131, _dec224, _dec321, _init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25, _CanvasControls, CanvasControls;
32197
+ var import_lit_html49, _dec131, _initClass46, _HTMLElement46, _dec133, _dec224, _dec321, _init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25, _CanvasControls, CanvasControls;
32123
32198
  var init_canvas_controls = __esm({
32124
32199
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas-controls.ts"() {
32125
32200
  "use strict";
@@ -32131,7 +32206,7 @@ var init_canvas_controls = __esm({
32131
32206
  init_Component();
32132
32207
  init_Prop();
32133
32208
  init_shared2();
32134
- _dec109 = Component({
32209
+ _dec131 = Component({
32135
32210
  tag: "ease-curve-canvas-controls",
32136
32211
  styles: canvasControlsStyles,
32137
32212
  template() {
@@ -32191,7 +32266,7 @@ var init_canvas_controls = __esm({
32191
32266
  </div>
32192
32267
  `;
32193
32268
  }
32194
- }), _dec131 = Prop({
32269
+ }), _dec133 = Prop({
32195
32270
  reflect: true
32196
32271
  }), _dec224 = Prop({
32197
32272
  type: Object,
@@ -32205,7 +32280,7 @@ var init_canvas_controls = __esm({
32205
32280
  static {
32206
32281
  ({ e: [_init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25], c: [_CanvasControls, _initClass46] } = _apply_decs_2203_r46(this, [
32207
32282
  [
32208
- _dec131,
32283
+ _dec133,
32209
32284
  1,
32210
32285
  "easingType"
32211
32286
  ],
@@ -32220,7 +32295,7 @@ var init_canvas_controls = __esm({
32220
32295
  "focusedLinearIndex"
32221
32296
  ]
32222
32297
  ], [
32223
- _dec109
32298
+ _dec131
32224
32299
  ], _HTMLElement46));
32225
32300
  }
32226
32301
  #___private_easingType_1;
@@ -32338,6 +32413,7 @@ var init_canvas_controls = __esm({
32338
32413
  }, this.#notifyHost = (type, value, event) => {
32339
32414
  const target = this.#getEventTarget();
32340
32415
  const detail = {
32416
+ name: target.name,
32341
32417
  value,
32342
32418
  event
32343
32419
  };
@@ -32849,13 +32925,13 @@ function applyDecs2203RFactory47() {
32849
32925
  function _apply_decs_2203_r47(targetClass, memberDecs, classDecs, parentClass) {
32850
32926
  return (_apply_decs_2203_r47 = applyDecs2203RFactory47())(targetClass, memberDecs, classDecs, parentClass);
32851
32927
  }
32852
- var import_lit_html50, _dec133, _initClass47, _HTMLElement47, _IconMinus2, IconMinus2;
32928
+ var import_lit_html50, _dec134, _initClass47, _HTMLElement47, _IconMinus2, IconMinus2;
32853
32929
  var init_minus2 = __esm({
32854
32930
  "src/elements/icons/interface/minus.ts"() {
32855
32931
  "use strict";
32856
32932
  import_lit_html50 = require("lit-html");
32857
32933
  init_Component();
32858
- _dec133 = Component({
32934
+ _dec134 = Component({
32859
32935
  tag: "ease-icon-minus",
32860
32936
  styles: `
32861
32937
  :host {
@@ -32880,7 +32956,7 @@ var init_minus2 = __esm({
32880
32956
  IconMinus2 = class extends (_HTMLElement47 = HTMLElement) {
32881
32957
  static {
32882
32958
  ({ c: [_IconMinus2, _initClass47] } = _apply_decs_2203_r47(this, [], [
32883
- _dec133
32959
+ _dec134
32884
32960
  ], _HTMLElement47));
32885
32961
  }
32886
32962
  static {
@@ -33263,13 +33339,13 @@ function applyDecs2203RFactory48() {
33263
33339
  function _apply_decs_2203_r48(targetClass, memberDecs, classDecs, parentClass) {
33264
33340
  return (_apply_decs_2203_r48 = applyDecs2203RFactory48())(targetClass, memberDecs, classDecs, parentClass);
33265
33341
  }
33266
- var import_lit_html51, _dec134, _initClass48, _HTMLElement48, _IconPlus2, IconPlus2;
33342
+ var import_lit_html51, _dec135, _initClass48, _HTMLElement48, _IconPlus2, IconPlus2;
33267
33343
  var init_plus2 = __esm({
33268
33344
  "src/elements/icons/interface/plus.ts"() {
33269
33345
  "use strict";
33270
33346
  import_lit_html51 = require("lit-html");
33271
33347
  init_Component();
33272
- _dec134 = Component({
33348
+ _dec135 = Component({
33273
33349
  tag: "ease-icon-plus",
33274
33350
  styles: `
33275
33351
  :host {
@@ -33294,7 +33370,7 @@ var init_plus2 = __esm({
33294
33370
  IconPlus2 = class extends (_HTMLElement48 = HTMLElement) {
33295
33371
  static {
33296
33372
  ({ c: [_IconPlus2, _initClass48] } = _apply_decs_2203_r48(this, [], [
33297
- _dec134
33373
+ _dec135
33298
33374
  ], _HTMLElement48));
33299
33375
  }
33300
33376
  static {
@@ -33677,14 +33753,14 @@ function applyDecs2203RFactory49() {
33677
33753
  function _apply_decs_2203_r49(targetClass, memberDecs, classDecs, parentClass) {
33678
33754
  return (_apply_decs_2203_r49 = applyDecs2203RFactory49())(targetClass, memberDecs, classDecs, parentClass);
33679
33755
  }
33680
- var import_lit_html52, _dec135, _initClass49, _HTMLElement49, _dec136, _dec225, _dec322, _dec418, _dec514, _dec612, _init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26, _Button2, Button2;
33756
+ var import_lit_html52, _dec136, _initClass49, _HTMLElement49, _dec137, _dec225, _dec322, _dec418, _dec514, _dec612, _init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26, _Button2, Button2;
33681
33757
  var init_button2 = __esm({
33682
33758
  "src/elements/button/index.ts"() {
33683
33759
  "use strict";
33684
33760
  import_lit_html52 = require("lit-html");
33685
33761
  init_Component();
33686
33762
  init_Prop();
33687
- _dec135 = Component({
33763
+ _dec136 = Component({
33688
33764
  tag: "ease-button",
33689
33765
  autoSlot: true,
33690
33766
  shadowMode: "open",
@@ -33851,7 +33927,7 @@ var init_button2 = __esm({
33851
33927
  }
33852
33928
  }
33853
33929
  `
33854
- }), _dec136 = Prop({
33930
+ }), _dec137 = Prop({
33855
33931
  type: Boolean,
33856
33932
  reflect: true
33857
33933
  }), _dec225 = Prop({
@@ -33880,7 +33956,7 @@ var init_button2 = __esm({
33880
33956
  static {
33881
33957
  ({ e: [_init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26], c: [_Button2, _initClass49] } = _apply_decs_2203_r49(this, [
33882
33958
  [
33883
- _dec136,
33959
+ _dec137,
33884
33960
  1,
33885
33961
  "disabled"
33886
33962
  ],
@@ -33910,7 +33986,7 @@ var init_button2 = __esm({
33910
33986
  "variant"
33911
33987
  ]
33912
33988
  ], [
33913
- _dec135
33989
+ _dec136
33914
33990
  ], _HTMLElement49));
33915
33991
  }
33916
33992
  #___private_disabled_1;
@@ -34352,7 +34428,7 @@ function applyDecs2203RFactory50() {
34352
34428
  function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
34353
34429
  return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
34354
34430
  }
34355
- var import_lit_html53, _dec137, _initClass50, _HTMLElement50, _dec138, _dec226, _dec323, _dec419, _dec515, _dec613, _init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27, _CurveControls, CurveControls;
34431
+ var import_lit_html53, _dec138, _initClass50, _HTMLElement50, _dec139, _dec226, _dec323, _dec419, _dec515, _dec613, _init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27, _CurveControls, CurveControls;
34356
34432
  var init_controls = __esm({
34357
34433
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/controls.ts"() {
34358
34434
  "use strict";
@@ -34367,7 +34443,7 @@ var init_controls = __esm({
34367
34443
  init_minus2();
34368
34444
  init_plus2();
34369
34445
  init_button2();
34370
- _dec137 = Component({
34446
+ _dec138 = Component({
34371
34447
  tag: "ease-curve-controls",
34372
34448
  styles: controlsStyles,
34373
34449
  template() {
@@ -34400,7 +34476,7 @@ var init_controls = __esm({
34400
34476
  </ease-field>
34401
34477
  `;
34402
34478
  }
34403
- }), _dec138 = Prop({
34479
+ }), _dec139 = Prop({
34404
34480
  reflect: true
34405
34481
  }), _dec226 = Prop({
34406
34482
  type: Object,
@@ -34432,7 +34508,7 @@ var init_controls = __esm({
34432
34508
  static {
34433
34509
  ({ e: [_init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27], c: [_CurveControls, _initClass50] } = _apply_decs_2203_r50(this, [
34434
34510
  [
34435
- _dec138,
34511
+ _dec139,
34436
34512
  1,
34437
34513
  "easingType"
34438
34514
  ],
@@ -34462,7 +34538,7 @@ var init_controls = __esm({
34462
34538
  "focusedLinearIndex"
34463
34539
  ]
34464
34540
  ], [
34465
- _dec137
34541
+ _dec138
34466
34542
  ], _HTMLElement50));
34467
34543
  }
34468
34544
  #___private_easingType_1;
@@ -35372,6 +35448,7 @@ var init_controls = __esm({
35372
35448
  }, this.#notifyHost = (type, value, event) => {
35373
35449
  const target = this.#getEventTarget();
35374
35450
  const detail = {
35451
+ name: target.name,
35375
35452
  value,
35376
35453
  event
35377
35454
  };
@@ -36021,7 +36098,7 @@ function applyDecs2203RFactory51() {
36021
36098
  function _apply_decs_2203_r51(targetClass, memberDecs, classDecs, parentClass) {
36022
36099
  return (_apply_decs_2203_r51 = applyDecs2203RFactory51())(targetClass, memberDecs, classDecs, parentClass);
36023
36100
  }
36024
- var import_lit_html54, _dec139, _initClass51, _HTMLElement51, _dec140, _dec227, _init_language, _init_codeElement, _initProto28, _Code, Code;
36101
+ var import_lit_html54, _dec140, _initClass51, _HTMLElement51, _dec141, _dec227, _init_language, _init_codeElement, _initProto28, _Code, Code;
36025
36102
  var init_code2 = __esm({
36026
36103
  "src/components/code/index.ts"() {
36027
36104
  "use strict";
@@ -36032,7 +36109,7 @@ var init_code2 = __esm({
36032
36109
  init_Component();
36033
36110
  init_Prop();
36034
36111
  init_Query();
36035
- _dec139 = Component({
36112
+ _dec140 = Component({
36036
36113
  tag: "ease-code",
36037
36114
  shadowMode: "open",
36038
36115
  autoSlot: false,
@@ -36057,14 +36134,14 @@ var init_code2 = __esm({
36057
36134
  template() {
36058
36135
  return import_lit_html54.html`<pre><code><slot></slot></code></pre>`;
36059
36136
  }
36060
- }), _dec140 = Prop({
36137
+ }), _dec141 = Prop({
36061
36138
  reflect: true
36062
36139
  }), _dec227 = Query("code");
36063
36140
  Code = class extends (_HTMLElement51 = HTMLElement) {
36064
36141
  static {
36065
36142
  ({ e: [_init_language, _init_codeElement, _initProto28], c: [_Code, _initClass51] } = _apply_decs_2203_r51(this, [
36066
36143
  [
36067
- _dec140,
36144
+ _dec141,
36068
36145
  1,
36069
36146
  "language"
36070
36147
  ],
@@ -36074,7 +36151,7 @@ var init_code2 = __esm({
36074
36151
  "codeElement"
36075
36152
  ]
36076
36153
  ], [
36077
- _dec139
36154
+ _dec140
36078
36155
  ], _HTMLElement51));
36079
36156
  }
36080
36157
  #instanceId;
@@ -36581,7 +36658,7 @@ function applyDecs2203RFactory52() {
36581
36658
  function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
36582
36659
  return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
36583
36660
  }
36584
- var import_lit_html55, _dec141, _initClass52, _HTMLElement52, _dec143, _dec228, _dec324, _dec420, _dec516, _dec614, _init_easingType4, _init_points4, _init_name7, _init_variant3, _init_simplify2, _init_round2, _initProto29, _CurveOutput, CurveOutput;
36661
+ var import_lit_html55, _dec143, _initClass52, _HTMLElement52, _dec144, _dec228, _dec324, _dec420, _dec516, _dec614, _init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto29, _CurveOutput, CurveOutput;
36585
36662
  var init_output = __esm({
36586
36663
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/output.ts"() {
36587
36664
  "use strict";
@@ -36592,7 +36669,7 @@ var init_output = __esm({
36592
36669
  init_Component();
36593
36670
  init_Prop();
36594
36671
  init_code2();
36595
- _dec141 = Component({
36672
+ _dec143 = Component({
36596
36673
  tag: "ease-curve-output",
36597
36674
  styles: outputStyles,
36598
36675
  template() {
@@ -36608,7 +36685,7 @@ var init_output = __esm({
36608
36685
  </div>
36609
36686
  `;
36610
36687
  }
36611
- }), _dec143 = Prop({
36688
+ }), _dec144 = Prop({
36612
36689
  type: String,
36613
36690
  reflect: true
36614
36691
  }), _dec228 = Prop({
@@ -36631,9 +36708,9 @@ var init_output = __esm({
36631
36708
  });
36632
36709
  CurveOutput = class extends (_HTMLElement52 = HTMLElement) {
36633
36710
  static {
36634
- ({ e: [_init_easingType4, _init_points4, _init_name7, _init_variant3, _init_simplify2, _init_round2, _initProto29], c: [_CurveOutput, _initClass52] } = _apply_decs_2203_r52(this, [
36711
+ ({ e: [_init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto29], c: [_CurveOutput, _initClass52] } = _apply_decs_2203_r52(this, [
36635
36712
  [
36636
- _dec143,
36713
+ _dec144,
36637
36714
  1,
36638
36715
  "easingType"
36639
36716
  ],
@@ -36663,7 +36740,7 @@ var init_output = __esm({
36663
36740
  "round"
36664
36741
  ]
36665
36742
  ], [
36666
- _dec141
36743
+ _dec143
36667
36744
  ], _HTMLElement52));
36668
36745
  }
36669
36746
  #___private_easingType_1;
@@ -36785,7 +36862,7 @@ var init_output = __esm({
36785
36862
  _initClass52();
36786
36863
  }
36787
36864
  constructor(...args) {
36788
- super(...args), this.#___private_easingType_1 = (_initProto29(this), _init_easingType4(this)), this.#___private_points_2 = _init_points4(this), this.#___private_name_3 = _init_name7(this), this.#___private_variant_4 = _init_variant3(this), this.#___private_simplify_5 = _init_simplify2(this), this.#___private_round_6 = _init_round2(this), this.#copyTimeout = null, this.#animationTimeout = null, this.#isAnimating = false, this.#copyToClipboard = async (event) => {
36865
+ super(...args), this.#___private_easingType_1 = (_initProto29(this), _init_easingType4(this)), this.#___private_points_2 = _init_points4(this), this.#___private_name_3 = _init_name8(this), this.#___private_variant_4 = _init_variant3(this), this.#___private_simplify_5 = _init_simplify2(this), this.#___private_round_6 = _init_round2(this), this.#copyTimeout = null, this.#animationTimeout = null, this.#isAnimating = false, this.#copyToClipboard = async (event) => {
36789
36866
  event.preventDefault();
36790
36867
  try {
36791
36868
  await navigator.clipboard.writeText(this.timingFunction);
@@ -37197,7 +37274,7 @@ function applyDecs2203RFactory53() {
37197
37274
  function _apply_decs_2203_r53(targetClass, memberDecs, classDecs, parentClass) {
37198
37275
  return (_apply_decs_2203_r53 = applyDecs2203RFactory53())(targetClass, memberDecs, classDecs, parentClass);
37199
37276
  }
37200
- var import_lit_html56, _dec144, _initClass53, _HTMLElement53, _dec145, _dec229, _dec325, _dec421, _dec517, _dec615, _init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30, _Tooltip2, Tooltip2;
37277
+ var import_lit_html56, _dec145, _initClass53, _HTMLElement53, _dec146, _dec229, _dec325, _dec421, _dec517, _dec615, _init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30, _Tooltip2, Tooltip2;
37201
37278
  var init_tooltip2 = __esm({
37202
37279
  "src/elements/tooltip/index.ts"() {
37203
37280
  "use strict";
@@ -37207,7 +37284,7 @@ var init_tooltip2 = __esm({
37207
37284
  init_OutsideClick();
37208
37285
  init_Prop();
37209
37286
  init_Query();
37210
- _dec144 = Component({
37287
+ _dec145 = Component({
37211
37288
  tag: "ease-tooltip",
37212
37289
  shadowMode: "open",
37213
37290
  styles: `
@@ -37237,7 +37314,7 @@ var init_tooltip2 = __esm({
37237
37314
  display: block;
37238
37315
  }
37239
37316
  `
37240
- }), _dec145 = Prop({
37317
+ }), _dec146 = Prop({
37241
37318
  type: Boolean,
37242
37319
  reflect: true,
37243
37320
  onChange(next, previous) {
@@ -37261,7 +37338,7 @@ var init_tooltip2 = __esm({
37261
37338
  static {
37262
37339
  ({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30], c: [_Tooltip2, _initClass53] } = _apply_decs_2203_r53(this, [
37263
37340
  [
37264
- _dec145,
37341
+ _dec146,
37265
37342
  1,
37266
37343
  "open"
37267
37344
  ],
@@ -37291,7 +37368,7 @@ var init_tooltip2 = __esm({
37291
37368
  "handleOutsideDismiss"
37292
37369
  ]
37293
37370
  ], [
37294
- _dec144
37371
+ _dec145
37295
37372
  ], _HTMLElement53));
37296
37373
  }
37297
37374
  #hoverTimer;
@@ -37834,7 +37911,7 @@ function applyDecs2203RFactory54() {
37834
37911
  function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
37835
37912
  return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
37836
37913
  }
37837
- var import_lit_html57, _dec146, _initClass54, _HTMLElement54, _dec147, _dec230, _dec326, _dec422, _dec518, _dec616, _dec711, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31, _CurveToolbar, CurveToolbar;
37914
+ var import_lit_html57, _dec147, _initClass54, _HTMLElement54, _dec148, _dec230, _dec326, _dec422, _dec518, _dec616, _dec711, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31, _CurveToolbar, CurveToolbar;
37838
37915
  var init_toolbar = __esm({
37839
37916
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/toolbar.ts"() {
37840
37917
  "use strict";
@@ -37849,7 +37926,7 @@ var init_toolbar = __esm({
37849
37926
  init_plus2();
37850
37927
  init_button2();
37851
37928
  init_tooltip2();
37852
- _dec146 = Component({
37929
+ _dec147 = Component({
37853
37930
  tag: "ease-curve-toolbar",
37854
37931
  styles: toolbarStyles,
37855
37932
  template() {
@@ -37976,7 +38053,7 @@ var init_toolbar = __esm({
37976
38053
  </div>
37977
38054
  `;
37978
38055
  }
37979
- }), _dec147 = Prop({
38056
+ }), _dec148 = Prop({
37980
38057
  reflect: true
37981
38058
  }), _dec230 = Prop({
37982
38059
  type: Object,
@@ -38006,7 +38083,7 @@ var init_toolbar = __esm({
38006
38083
  static {
38007
38084
  ({ e: [_init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31], c: [_CurveToolbar, _initClass54] } = _apply_decs_2203_r54(this, [
38008
38085
  [
38009
- _dec147,
38086
+ _dec148,
38010
38087
  1,
38011
38088
  "easingType"
38012
38089
  ],
@@ -38041,7 +38118,7 @@ var init_toolbar = __esm({
38041
38118
  "round"
38042
38119
  ]
38043
38120
  ], [
38044
- _dec146
38121
+ _dec147
38045
38122
  ], _HTMLElement54));
38046
38123
  }
38047
38124
  #___private_easingType_1;
@@ -38117,6 +38194,7 @@ var init_toolbar = __esm({
38117
38194
  }, this.#notifyHost = (type, value, event) => {
38118
38195
  const target = this.#getEventTarget();
38119
38196
  const detail = {
38197
+ name: target.name,
38120
38198
  value,
38121
38199
  event
38122
38200
  };
@@ -38689,7 +38767,7 @@ function applyDecs2203RFactory55() {
38689
38767
  function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
38690
38768
  return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
38691
38769
  }
38692
- var import_lit_html58, _dec148, _initClass55, _HTMLElement55, _dec149, _dec231, _dec327, _dec423, _dec519, _dec617, _dec712, _dec811, _dec911, _dec1010, _dec1110, _dec1210, _dec1310, _dec1410, _dec153, _dec162, _dec172, _dec182, _init_name8, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32, _Curve, Curve;
38770
+ var import_lit_html58, _dec149, _initClass55, _HTMLElement55, _dec150, _dec231, _dec327, _dec423, _dec519, _dec617, _dec712, _dec811, _dec911, _dec1010, _dec1110, _dec1210, _dec1310, _dec1410, _dec153, _dec162, _dec172, _dec182, _init_name9, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32, _Curve, Curve;
38693
38771
  var init_curve = __esm({
38694
38772
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/index.ts"() {
38695
38773
  "use strict";
@@ -38701,13 +38779,14 @@ var init_curve = __esm({
38701
38779
  init_Component();
38702
38780
  init_Listen();
38703
38781
  init_Prop();
38782
+ init_shared2();
38704
38783
  init_canvas();
38705
38784
  init_canvas_controls();
38706
38785
  init_controls();
38707
38786
  init_output();
38708
38787
  init_toolbar();
38709
38788
  init_types();
38710
- _dec148 = Component({
38789
+ _dec149 = Component({
38711
38790
  tag: "ease-curve",
38712
38791
  styles: containerStyles,
38713
38792
  template() {
@@ -38768,7 +38847,7 @@ var init_curve = __esm({
38768
38847
  </div>
38769
38848
  `;
38770
38849
  }
38771
- }), _dec149 = Prop({
38850
+ }), _dec150 = Prop({
38772
38851
  reflect: true,
38773
38852
  defaultValue: "ease-custom"
38774
38853
  }), _dec231 = Prop({
@@ -38841,9 +38920,9 @@ var init_curve = __esm({
38841
38920
  });
38842
38921
  Curve = class extends (_HTMLElement55 = HTMLElement) {
38843
38922
  static {
38844
- ({ e: [_init_name8, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32], c: [_Curve, _initClass55] } = _apply_decs_2203_r55(this, [
38923
+ ({ e: [_init_name9, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32], c: [_Curve, _initClass55] } = _apply_decs_2203_r55(this, [
38845
38924
  [
38846
- _dec149,
38925
+ _dec150,
38847
38926
  1,
38848
38927
  "name"
38849
38928
  ],
@@ -38933,7 +39012,7 @@ var init_curve = __esm({
38933
39012
  "handleLinearPointFocus"
38934
39013
  ]
38935
39014
  ], [
38936
- _dec148
39015
+ _dec149
38937
39016
  ], _HTMLElement55));
38938
39017
  }
38939
39018
  #___private_name_1;
@@ -39207,20 +39286,17 @@ var init_curve = __esm({
39207
39286
  }
39208
39287
  emitPointsChange(value, sourceEvent) {
39209
39288
  const detail = {
39289
+ name: this.name,
39210
39290
  value,
39211
39291
  event: sourceEvent ?? new Event("points-change")
39212
39292
  };
39213
- this.dispatchEvent(new CustomEvent("points-change", {
39214
- detail,
39215
- bubbles: true,
39216
- composed: true
39217
- }));
39293
+ dispatchControlEvent2(this, "points-change", detail);
39218
39294
  }
39219
39295
  static {
39220
39296
  _initClass55();
39221
39297
  }
39222
39298
  constructor(...args) {
39223
- super(...args), this.#___private_name_1 = (_initProto32(this), _init_name8(this)), this.#___private_easingType_2 = _init_easingType6(this), this.#___private_points_3 = _init_points6(this), this.#___private_showGrid_4 = _init_showGrid4(this), this.#___private_snapToGrid_5 = _init_snapToGrid4(this), this.#___private_gridSize_6 = _init_gridSize4(this), this.#___private_simplify_7 = _init_simplify4(this), this.#___private_round_8 = _init_round4(this), this.#___private_focusedLinearIndex_9 = _init_focusedLinearIndex4(this, null);
39299
+ super(...args), this.#___private_name_1 = (_initProto32(this), _init_name9(this)), this.#___private_easingType_2 = _init_easingType6(this), this.#___private_points_3 = _init_points6(this), this.#___private_showGrid_4 = _init_showGrid4(this), this.#___private_snapToGrid_5 = _init_snapToGrid4(this), this.#___private_gridSize_6 = _init_gridSize4(this), this.#___private_simplify_7 = _init_simplify4(this), this.#___private_round_8 = _init_round4(this), this.#___private_focusedLinearIndex_9 = _init_focusedLinearIndex4(this, null);
39224
39300
  }
39225
39301
  };
39226
39302
  }
@@ -39603,7 +39679,7 @@ function applyDecs2203RFactory56() {
39603
39679
  function _apply_decs_2203_r56(targetClass, memberDecs, classDecs, parentClass) {
39604
39680
  return (_apply_decs_2203_r56 = applyDecs2203RFactory56())(targetClass, memberDecs, classDecs, parentClass);
39605
39681
  }
39606
- var import_lit_html59, _dec150, _initClass56, _HTMLElement56, _dec151, _dec232, _init_language2, _init_codeElement2, _initProto33, _Code2, Code2;
39682
+ var import_lit_html59, _dec151, _initClass56, _HTMLElement56, _dec154, _dec232, _init_language2, _init_codeElement2, _initProto33, _Code2, Code2;
39607
39683
  var init_code3 = __esm({
39608
39684
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/code/index.ts"() {
39609
39685
  "use strict";
@@ -39614,7 +39690,7 @@ var init_code3 = __esm({
39614
39690
  init_Component();
39615
39691
  init_Prop();
39616
39692
  init_Query();
39617
- _dec150 = Component({
39693
+ _dec151 = Component({
39618
39694
  tag: "ease-code",
39619
39695
  shadowMode: "open",
39620
39696
  autoSlot: false,
@@ -39639,14 +39715,14 @@ var init_code3 = __esm({
39639
39715
  template() {
39640
39716
  return import_lit_html59.html`<pre><code><slot></slot></code></pre>`;
39641
39717
  }
39642
- }), _dec151 = Prop({
39718
+ }), _dec154 = Prop({
39643
39719
  reflect: true
39644
39720
  }), _dec232 = Query("code");
39645
39721
  Code2 = class extends (_HTMLElement56 = HTMLElement) {
39646
39722
  static {
39647
39723
  ({ e: [_init_language2, _init_codeElement2, _initProto33], c: [_Code2, _initClass56] } = _apply_decs_2203_r56(this, [
39648
39724
  [
39649
- _dec151,
39725
+ _dec154,
39650
39726
  1,
39651
39727
  "language"
39652
39728
  ],
@@ -39656,7 +39732,7 @@ var init_code3 = __esm({
39656
39732
  "codeElement"
39657
39733
  ]
39658
39734
  ], [
39659
- _dec150
39735
+ _dec151
39660
39736
  ], _HTMLElement56));
39661
39737
  }
39662
39738
  #instanceId;