@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.
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,14 @@ 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, "input", detail);
13764
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13709
13765
  }
13710
13766
  handleRangeChange(event, target) {
13711
13767
  if (target) {
@@ -13716,10 +13772,14 @@ var init_slider = __esm({
13716
13772
  this.valueControl.value = numericValue === null ? "" : String(numericValue);
13717
13773
  }
13718
13774
  }
13719
- dispatchControlEvent(this, "change", {
13775
+ const name = this.getAttribute("name") ?? void 0;
13776
+ const detail = {
13777
+ name,
13720
13778
  value: this.value,
13721
13779
  event
13722
- });
13780
+ };
13781
+ dispatchControlEvent(this, "change", detail);
13782
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13723
13783
  }
13724
13784
  handleValueInput(event) {
13725
13785
  const rawValue = event.detail?.value ?? "";
@@ -13729,10 +13789,15 @@ var init_slider = __esm({
13729
13789
  if (this.control) {
13730
13790
  this.control.value = String(numericValue ?? 0);
13731
13791
  }
13732
- dispatchControlEvent(this, "input", {
13792
+ const name = this.getAttribute("name") ?? void 0;
13793
+ const controlEvent = event.detail?.event ?? event;
13794
+ const detail = {
13795
+ name,
13733
13796
  value: this.value,
13734
- event: event.detail?.event ?? event
13735
- });
13797
+ event: controlEvent
13798
+ };
13799
+ dispatchControlEvent(this, "input", detail);
13800
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13736
13801
  }
13737
13802
  handleValueChange(event) {
13738
13803
  const rawValue = event.detail?.value ?? "";
@@ -13742,10 +13807,15 @@ var init_slider = __esm({
13742
13807
  if (this.control) {
13743
13808
  this.control.value = String(numericValue ?? 0);
13744
13809
  }
13745
- dispatchControlEvent(this, "change", {
13810
+ const name = this.getAttribute("name") ?? void 0;
13811
+ const controlEvent = event.detail?.event ?? event;
13812
+ const detail = {
13813
+ name,
13746
13814
  value: this.value,
13747
- event: event.detail?.event ?? event
13748
- });
13815
+ event: controlEvent
13816
+ };
13817
+ dispatchControlEvent(this, "change", detail);
13818
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
13749
13819
  }
13750
13820
  updateProgress() {
13751
13821
  if (!this.control) {
@@ -14339,10 +14409,15 @@ var init_toggle = __esm({
14339
14409
  return;
14340
14410
  }
14341
14411
  this.checked = !this.checked;
14342
- dispatchControlEvent(this, "toggle", {
14412
+ const name = this.getAttribute("name") ?? void 0;
14413
+ const detail = {
14414
+ name,
14343
14415
  value: this.checked,
14344
14416
  event
14345
- });
14417
+ };
14418
+ dispatchControlEvent(this, "toggle", detail);
14419
+ dispatchControlEvent(this, "change", detail);
14420
+ dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
14346
14421
  }
14347
14422
  static {
14348
14423
  _initClass18();
@@ -14731,14 +14806,14 @@ function applyDecs2203RFactory19() {
14731
14806
  function _apply_decs_2203_r19(targetClass, memberDecs, classDecs, parentClass) {
14732
14807
  return (_apply_decs_2203_r19 = applyDecs2203RFactory19())(targetClass, memberDecs, classDecs, parentClass);
14733
14808
  }
14734
- var import_lit_html21, _dec59, _initClass19, _HTMLElement19, _dec120, _dec216, _init_label, _init_fullWidth2, _initProto15, _Field, Field;
14809
+ var import_lit_html21, _dec60, _initClass19, _HTMLElement19, _dec120, _dec216, _init_label, _init_fullWidth2, _initProto15, _Field, Field;
14735
14810
  var init_field = __esm({
14736
14811
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/field/index.ts"() {
14737
14812
  "use strict";
14738
14813
  import_lit_html21 = require("lit-html");
14739
14814
  init_Component();
14740
14815
  init_Prop();
14741
- _dec59 = Component({
14816
+ _dec60 = Component({
14742
14817
  tag: "ease-field",
14743
14818
  autoSlot: false,
14744
14819
  shadowMode: "open",
@@ -14827,7 +14902,7 @@ var init_field = __esm({
14827
14902
  "fullWidth"
14828
14903
  ]
14829
14904
  ], [
14830
- _dec59
14905
+ _dec60
14831
14906
  ], _HTMLElement19));
14832
14907
  }
14833
14908
  #___private_label_1;
@@ -15231,7 +15306,7 @@ function applyDecs2203RFactory20() {
15231
15306
  function _apply_decs_2203_r20(targetClass, memberDecs, classDecs, parentClass) {
15232
15307
  return (_apply_decs_2203_r20 = applyDecs2203RFactory20())(targetClass, memberDecs, classDecs, parentClass);
15233
15308
  }
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;
15309
+ 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
15310
  var init_panel = __esm({
15236
15311
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts"() {
15237
15312
  "use strict";
@@ -15241,7 +15316,7 @@ var init_panel = __esm({
15241
15316
  init_Listen();
15242
15317
  init_Prop();
15243
15318
  init_Query();
15244
- _dec60 = Component({
15319
+ _dec61 = Component({
15245
15320
  tag: "ease-panel",
15246
15321
  shadowMode: "open",
15247
15322
  styles: `
@@ -15306,7 +15381,6 @@ var init_panel = __esm({
15306
15381
  align-items: center;
15307
15382
  gap: 2px;
15308
15383
  flex-grow: 1;
15309
- margin: 0 0 0 4px;
15310
15384
  }
15311
15385
 
15312
15386
  [part="tabs"]:empty {
@@ -15315,17 +15389,18 @@ var init_panel = __esm({
15315
15389
 
15316
15390
  [part="tab"] {
15317
15391
  appearance: none;
15392
+ border-radius: var(--ease-panel-tab-radius, var(--radii-md));
15393
+ background-color: var(--ease-panel-tab-background, transparent);
15394
+ box-sizing: border-box;
15395
+ padding: var(--ease-panel-tab-padding, 4px 8px);
15318
15396
  font-size: var(--ease-panel-tab-font-size);
15319
15397
  font-weight: var(--ease-panel-tab-font-weight);
15320
15398
  line-height: 24px;
15321
15399
  font-family: var(--ease-font-family);
15322
15400
  color: var(--ease-panel-tab-color);
15323
- background-color: transparent;
15324
15401
  border: none;
15325
- padding: 4px 8px;
15326
15402
  margin: 0;
15327
15403
  cursor: pointer;
15328
- border-radius: var(--ease-panel-tab-radius);
15329
15404
  transition: color 200ms, background-color 200ms;
15330
15405
  transition-timing-function: cubic-bezier(.25, 0, .5, 1);
15331
15406
  }
@@ -15535,7 +15610,7 @@ var init_panel = __esm({
15535
15610
  "onDefaultSlotChange"
15536
15611
  ]
15537
15612
  ], [
15538
- _dec60
15613
+ _dec61
15539
15614
  ], _HTMLElement20));
15540
15615
  }
15541
15616
  #tabs;
@@ -16218,7 +16293,7 @@ function applyDecs2203RFactory21() {
16218
16293
  function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
16219
16294
  return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
16220
16295
  }
16221
- var import_lit_html23, _dec61, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16296
+ var import_lit_html23, _dec69, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16222
16297
  var init_state = __esm({
16223
16298
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts"() {
16224
16299
  "use strict";
@@ -16249,7 +16324,7 @@ var init_state = __esm({
16249
16324
  }
16250
16325
  return element.getAttribute?.("name") ?? null;
16251
16326
  };
16252
- _dec61 = Component({
16327
+ _dec69 = Component({
16253
16328
  tag: "ease-state",
16254
16329
  shadowMode: "open",
16255
16330
  styles: `
@@ -16302,7 +16377,7 @@ var init_state = __esm({
16302
16377
  "handleControlChange"
16303
16378
  ]
16304
16379
  ], [
16305
- _dec61
16380
+ _dec69
16306
16381
  ], _HTMLElement21));
16307
16382
  }
16308
16383
  #controls;
@@ -16890,7 +16965,7 @@ function applyDecs2203RFactory22() {
16890
16965
  function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
16891
16966
  return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
16892
16967
  }
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;
16968
+ 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
16969
  var init_tooltip = __esm({
16895
16970
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts"() {
16896
16971
  "use strict";
@@ -16900,7 +16975,7 @@ var init_tooltip = __esm({
16900
16975
  init_OutsideClick();
16901
16976
  init_Prop();
16902
16977
  init_Query();
16903
- _dec69 = Component({
16978
+ _dec70 = Component({
16904
16979
  tag: "ease-tooltip",
16905
16980
  shadowMode: "open",
16906
16981
  styles: `
@@ -16984,7 +17059,7 @@ var init_tooltip = __esm({
16984
17059
  "handleOutsideDismiss"
16985
17060
  ]
16986
17061
  ], [
16987
- _dec69
17062
+ _dec70
16988
17063
  ], _HTMLElement22));
16989
17064
  }
16990
17065
  #hoverTimer;
@@ -17531,7 +17606,7 @@ function applyDecs2203RFactory23() {
17531
17606
  function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
17532
17607
  return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
17533
17608
  }
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;
17609
+ 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
17610
  var init_logo = __esm({
17536
17611
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts"() {
17537
17612
  "use strict";
@@ -17685,7 +17760,7 @@ var init_logo = __esm({
17685
17760
  sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).filter((dot) => dot != null).sort((a, b) => getAngle(a) - getAngle(b));
17686
17761
  LOOP_DURATION = 1500;
17687
17762
  ROTATION_DURATION = 600;
17688
- _dec70 = Component({
17763
+ _dec71 = Component({
17689
17764
  tag: "ease-logo-loader",
17690
17765
  styles: `
17691
17766
  :host {
@@ -17958,7 +18033,7 @@ var init_logo = __esm({
17958
18033
  "ariaLabel"
17959
18034
  ]
17960
18035
  ], [
17961
- _dec70
18036
+ _dec71
17962
18037
  ], _HTMLElement23));
17963
18038
  }
17964
18039
  #___private_loading_1;
@@ -18830,7 +18905,7 @@ function applyDecs2203RFactory24() {
18830
18905
  function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
18831
18906
  return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
18832
18907
  }
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;
18908
+ 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
18909
  var init_fps = __esm({
18835
18910
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/fps.ts"() {
18836
18911
  "use strict";
@@ -18893,7 +18968,7 @@ var init_fps = __esm({
18893
18968
  }
18894
18969
  return "poor";
18895
18970
  };
18896
- _dec71 = Component({
18971
+ _dec77 = Component({
18897
18972
  tag: "ease-monitor-fps",
18898
18973
  autoSlot: false,
18899
18974
  shadowMode: "open",
@@ -19012,7 +19087,7 @@ var init_fps = __esm({
19012
19087
  "canvasEl"
19013
19088
  ]
19014
19089
  ], [
19015
- _dec71
19090
+ _dec77
19016
19091
  ], _HTMLElement24));
19017
19092
  }
19018
19093
  #___private_paused_1;
@@ -19673,7 +19748,7 @@ function applyDecs2203RFactory25() {
19673
19748
  function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
19674
19749
  return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
19675
19750
  }
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;
19751
+ 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
19752
  var init_monitor = __esm({
19678
19753
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/index.ts"() {
19679
19754
  "use strict";
@@ -19791,7 +19866,7 @@ var init_monitor = __esm({
19791
19866
  const emissions = totalBytes / 1e9 * 0.81;
19792
19867
  return `${emissions.toFixed(3)}g CO2 eq.`;
19793
19868
  };
19794
- _dec77 = Component({
19869
+ _dec78 = Component({
19795
19870
  tag: "ease-monitor",
19796
19871
  styles: `
19797
19872
  :host {
@@ -19935,7 +20010,7 @@ var init_monitor = __esm({
19935
20010
  "handleFpsUpdate"
19936
20011
  ]
19937
20012
  ], [
19938
- _dec77
20013
+ _dec78
19939
20014
  ], _HTMLElement25));
19940
20015
  }
19941
20016
  #___private_metrics_1;
@@ -20829,13 +20904,13 @@ function applyDecs2203RFactory26() {
20829
20904
  function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
20830
20905
  return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
20831
20906
  }
20832
- var import_lit_html28, _dec78, _initClass26, _HTMLElement26, _IconAnchorAdd, IconAnchorAdd;
20907
+ var import_lit_html28, _dec79, _initClass26, _HTMLElement26, _IconAnchorAdd, IconAnchorAdd;
20833
20908
  var init_anchor_add = __esm({
20834
20909
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-add.ts"() {
20835
20910
  "use strict";
20836
20911
  import_lit_html28 = require("lit-html");
20837
20912
  init_Component();
20838
- _dec78 = Component({
20913
+ _dec79 = Component({
20839
20914
  tag: "ease-icon-anchor-add",
20840
20915
  styles: `
20841
20916
  :host {
@@ -20865,7 +20940,7 @@ var init_anchor_add = __esm({
20865
20940
  IconAnchorAdd = class extends (_HTMLElement26 = HTMLElement) {
20866
20941
  static {
20867
20942
  ({ c: [_IconAnchorAdd, _initClass26] } = _apply_decs_2203_r26(this, [], [
20868
- _dec78
20943
+ _dec79
20869
20944
  ], _HTMLElement26));
20870
20945
  }
20871
20946
  static {
@@ -21252,13 +21327,13 @@ function applyDecs2203RFactory27() {
21252
21327
  function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
21253
21328
  return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
21254
21329
  }
21255
- var import_lit_html29, _dec79, _initClass27, _HTMLElement27, _IconAnchorRemove, IconAnchorRemove;
21330
+ var import_lit_html29, _dec80, _initClass27, _HTMLElement27, _IconAnchorRemove, IconAnchorRemove;
21256
21331
  var init_anchor_remove = __esm({
21257
21332
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-remove.ts"() {
21258
21333
  "use strict";
21259
21334
  import_lit_html29 = require("lit-html");
21260
21335
  init_Component();
21261
- _dec79 = Component({
21336
+ _dec80 = Component({
21262
21337
  tag: "ease-icon-anchor-remove",
21263
21338
  styles: `
21264
21339
  :host {
@@ -21287,7 +21362,7 @@ var init_anchor_remove = __esm({
21287
21362
  IconAnchorRemove = class extends (_HTMLElement27 = HTMLElement) {
21288
21363
  static {
21289
21364
  ({ c: [_IconAnchorRemove, _initClass27] } = _apply_decs_2203_r27(this, [], [
21290
- _dec79
21365
+ _dec80
21291
21366
  ], _HTMLElement27));
21292
21367
  }
21293
21368
  static {
@@ -21674,13 +21749,13 @@ function applyDecs2203RFactory28() {
21674
21749
  function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
21675
21750
  return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
21676
21751
  }
21677
- var import_lit_html30, _dec80, _initClass28, _HTMLElement28, _ArrowUp, ArrowUp;
21752
+ var import_lit_html30, _dec81, _initClass28, _HTMLElement28, _ArrowUp, ArrowUp;
21678
21753
  var init_arrow_up = __esm({
21679
21754
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/arrow-up.ts"() {
21680
21755
  "use strict";
21681
21756
  import_lit_html30 = require("lit-html");
21682
21757
  init_Component();
21683
- _dec80 = Component({
21758
+ _dec81 = Component({
21684
21759
  tag: "ease-icon-arrow-up",
21685
21760
  styles: `
21686
21761
  :host {
@@ -21705,7 +21780,7 @@ var init_arrow_up = __esm({
21705
21780
  ArrowUp = class extends (_HTMLElement28 = HTMLElement) {
21706
21781
  static {
21707
21782
  ({ c: [_ArrowUp, _initClass28] } = _apply_decs_2203_r28(this, [], [
21708
- _dec80
21783
+ _dec81
21709
21784
  ], _HTMLElement28));
21710
21785
  }
21711
21786
  static {
@@ -22092,13 +22167,13 @@ function applyDecs2203RFactory29() {
22092
22167
  function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
22093
22168
  return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
22094
22169
  }
22095
- var import_lit_html31, _dec81, _initClass29, _HTMLElement29, _IconBezier, IconBezier;
22170
+ var import_lit_html31, _dec86, _initClass29, _HTMLElement29, _IconBezier, IconBezier;
22096
22171
  var init_bezier = __esm({
22097
22172
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier.ts"() {
22098
22173
  "use strict";
22099
22174
  import_lit_html31 = require("lit-html");
22100
22175
  init_Component();
22101
- _dec81 = Component({
22176
+ _dec86 = Component({
22102
22177
  tag: "ease-icon-bezier",
22103
22178
  styles: `
22104
22179
  :host {
@@ -22119,7 +22194,7 @@ var init_bezier = __esm({
22119
22194
  IconBezier = class extends (_HTMLElement29 = HTMLElement) {
22120
22195
  static {
22121
22196
  ({ c: [_IconBezier, _initClass29] } = _apply_decs_2203_r29(this, [], [
22122
- _dec81
22197
+ _dec86
22123
22198
  ], _HTMLElement29));
22124
22199
  }
22125
22200
  static {
@@ -22506,13 +22581,13 @@ function applyDecs2203RFactory30() {
22506
22581
  function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
22507
22582
  return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
22508
22583
  }
22509
- var import_lit_html32, _dec86, _initClass30, _HTMLElement30, _IconBezierAngle, IconBezierAngle;
22584
+ var import_lit_html32, _dec87, _initClass30, _HTMLElement30, _IconBezierAngle, IconBezierAngle;
22510
22585
  var init_bezier_angle = __esm({
22511
22586
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-angle.ts"() {
22512
22587
  "use strict";
22513
22588
  import_lit_html32 = require("lit-html");
22514
22589
  init_Component();
22515
- _dec86 = Component({
22590
+ _dec87 = Component({
22516
22591
  tag: "ease-icon-bezier-angle",
22517
22592
  styles: `
22518
22593
  :host {
@@ -22540,7 +22615,7 @@ var init_bezier_angle = __esm({
22540
22615
  IconBezierAngle = class extends (_HTMLElement30 = HTMLElement) {
22541
22616
  static {
22542
22617
  ({ c: [_IconBezierAngle, _initClass30] } = _apply_decs_2203_r30(this, [], [
22543
- _dec86
22618
+ _dec87
22544
22619
  ], _HTMLElement30));
22545
22620
  }
22546
22621
  static {
@@ -22927,13 +23002,13 @@ function applyDecs2203RFactory31() {
22927
23002
  function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
22928
23003
  return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
22929
23004
  }
22930
- var import_lit_html33, _dec87, _initClass31, _HTMLElement31, _IconBezierDistribute, IconBezierDistribute;
23005
+ var import_lit_html33, _dec88, _initClass31, _HTMLElement31, _IconBezierDistribute, IconBezierDistribute;
22931
23006
  var init_bezier_distribute = __esm({
22932
23007
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-distribute.ts"() {
22933
23008
  "use strict";
22934
23009
  import_lit_html33 = require("lit-html");
22935
23010
  init_Component();
22936
- _dec87 = Component({
23011
+ _dec88 = Component({
22937
23012
  tag: "ease-icon-bezier-distribute",
22938
23013
  styles: `
22939
23014
  :host {
@@ -22962,7 +23037,7 @@ var init_bezier_distribute = __esm({
22962
23037
  IconBezierDistribute = class extends (_HTMLElement31 = HTMLElement) {
22963
23038
  static {
22964
23039
  ({ c: [_IconBezierDistribute, _initClass31] } = _apply_decs_2203_r31(this, [], [
22965
- _dec87
23040
+ _dec88
22966
23041
  ], _HTMLElement31));
22967
23042
  }
22968
23043
  static {
@@ -23349,13 +23424,13 @@ function applyDecs2203RFactory32() {
23349
23424
  function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
23350
23425
  return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
23351
23426
  }
23352
- var import_lit_html34, _dec88, _initClass32, _HTMLElement32, _IconBezierLength, IconBezierLength;
23427
+ var import_lit_html34, _dec89, _initClass32, _HTMLElement32, _IconBezierLength, IconBezierLength;
23353
23428
  var init_bezier_length = __esm({
23354
23429
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-length.ts"() {
23355
23430
  "use strict";
23356
23431
  import_lit_html34 = require("lit-html");
23357
23432
  init_Component();
23358
- _dec88 = Component({
23433
+ _dec89 = Component({
23359
23434
  tag: "ease-icon-bezier-length",
23360
23435
  styles: `
23361
23436
  :host {
@@ -23381,7 +23456,7 @@ var init_bezier_length = __esm({
23381
23456
  IconBezierLength = class extends (_HTMLElement32 = HTMLElement) {
23382
23457
  static {
23383
23458
  ({ c: [_IconBezierLength, _initClass32] } = _apply_decs_2203_r32(this, [], [
23384
- _dec88
23459
+ _dec89
23385
23460
  ], _HTMLElement32));
23386
23461
  }
23387
23462
  static {
@@ -23768,13 +23843,13 @@ function applyDecs2203RFactory33() {
23768
23843
  function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
23769
23844
  return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
23770
23845
  }
23771
- var import_lit_html35, _dec89, _initClass33, _HTMLElement33, _IconBezierMirror, IconBezierMirror;
23846
+ var import_lit_html35, _dec90, _initClass33, _HTMLElement33, _IconBezierMirror, IconBezierMirror;
23772
23847
  var init_bezier_mirror = __esm({
23773
23848
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-mirror.ts"() {
23774
23849
  "use strict";
23775
23850
  import_lit_html35 = require("lit-html");
23776
23851
  init_Component();
23777
- _dec89 = Component({
23852
+ _dec90 = Component({
23778
23853
  tag: "ease-icon-bezier-mirror",
23779
23854
  styles: `
23780
23855
  :host {
@@ -23800,7 +23875,7 @@ var init_bezier_mirror = __esm({
23800
23875
  IconBezierMirror = class extends (_HTMLElement33 = HTMLElement) {
23801
23876
  static {
23802
23877
  ({ c: [_IconBezierMirror, _initClass33] } = _apply_decs_2203_r33(this, [], [
23803
- _dec89
23878
+ _dec90
23804
23879
  ], _HTMLElement33));
23805
23880
  }
23806
23881
  static {
@@ -24187,13 +24262,13 @@ function applyDecs2203RFactory34() {
24187
24262
  function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
24188
24263
  return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
24189
24264
  }
24190
- var import_lit_html36, _dec90, _initClass34, _HTMLElement34, _IconCheck, IconCheck;
24265
+ var import_lit_html36, _dec91, _initClass34, _HTMLElement34, _IconCheck, IconCheck;
24191
24266
  var init_check = __esm({
24192
24267
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/check.ts"() {
24193
24268
  "use strict";
24194
24269
  import_lit_html36 = require("lit-html");
24195
24270
  init_Component();
24196
- _dec90 = Component({
24271
+ _dec91 = Component({
24197
24272
  tag: "ease-icon-check",
24198
24273
  styles: `
24199
24274
  :host {
@@ -24218,7 +24293,7 @@ var init_check = __esm({
24218
24293
  IconCheck = class extends (_HTMLElement34 = HTMLElement) {
24219
24294
  static {
24220
24295
  ({ c: [_IconCheck, _initClass34] } = _apply_decs_2203_r34(this, [], [
24221
- _dec90
24296
+ _dec91
24222
24297
  ], _HTMLElement34));
24223
24298
  }
24224
24299
  static {
@@ -24605,13 +24680,13 @@ function applyDecs2203RFactory35() {
24605
24680
  function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
24606
24681
  return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
24607
24682
  }
24608
- var import_lit_html37, _dec91, _initClass35, _HTMLElement35, _IconCircleArrowLeft, IconCircleArrowLeft;
24683
+ var import_lit_html37, _dec96, _initClass35, _HTMLElement35, _IconCircleArrowLeft, IconCircleArrowLeft;
24609
24684
  var init_circle_arrow_left = __esm({
24610
24685
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-left.ts"() {
24611
24686
  "use strict";
24612
24687
  import_lit_html37 = require("lit-html");
24613
24688
  init_Component();
24614
- _dec91 = Component({
24689
+ _dec96 = Component({
24615
24690
  tag: "ease-icon-circle-arrow-left",
24616
24691
  styles: `
24617
24692
  :host {
@@ -24636,7 +24711,7 @@ var init_circle_arrow_left = __esm({
24636
24711
  IconCircleArrowLeft = class extends (_HTMLElement35 = HTMLElement) {
24637
24712
  static {
24638
24713
  ({ c: [_IconCircleArrowLeft, _initClass35] } = _apply_decs_2203_r35(this, [], [
24639
- _dec91
24714
+ _dec96
24640
24715
  ], _HTMLElement35));
24641
24716
  }
24642
24717
  static {
@@ -25023,13 +25098,13 @@ function applyDecs2203RFactory36() {
25023
25098
  function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
25024
25099
  return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
25025
25100
  }
25026
- var import_lit_html38, _dec96, _initClass36, _HTMLElement36, _IconCircleArrowRight, IconCircleArrowRight;
25101
+ var import_lit_html38, _dec97, _initClass36, _HTMLElement36, _IconCircleArrowRight, IconCircleArrowRight;
25027
25102
  var init_circle_arrow_right = __esm({
25028
25103
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-right.ts"() {
25029
25104
  "use strict";
25030
25105
  import_lit_html38 = require("lit-html");
25031
25106
  init_Component();
25032
- _dec96 = Component({
25107
+ _dec97 = Component({
25033
25108
  tag: "ease-icon-circle-arrow-right",
25034
25109
  styles: `
25035
25110
  :host {
@@ -25054,7 +25129,7 @@ var init_circle_arrow_right = __esm({
25054
25129
  IconCircleArrowRight = class extends (_HTMLElement36 = HTMLElement) {
25055
25130
  static {
25056
25131
  ({ c: [_IconCircleArrowRight, _initClass36] } = _apply_decs_2203_r36(this, [], [
25057
- _dec96
25132
+ _dec97
25058
25133
  ], _HTMLElement36));
25059
25134
  }
25060
25135
  static {
@@ -25441,13 +25516,13 @@ function applyDecs2203RFactory37() {
25441
25516
  function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
25442
25517
  return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
25443
25518
  }
25444
- var import_lit_html39, _dec97, _initClass37, _HTMLElement37, _IconClear, IconClear;
25519
+ var import_lit_html39, _dec98, _initClass37, _HTMLElement37, _IconClear, IconClear;
25445
25520
  var init_clear = __esm({
25446
25521
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/clear.ts"() {
25447
25522
  "use strict";
25448
25523
  import_lit_html39 = require("lit-html");
25449
25524
  init_Component();
25450
- _dec97 = Component({
25525
+ _dec98 = Component({
25451
25526
  tag: "ease-icon-clear",
25452
25527
  styles: `
25453
25528
  :host {
@@ -25516,7 +25591,7 @@ var init_clear = __esm({
25516
25591
  IconClear = class extends (_HTMLElement37 = HTMLElement) {
25517
25592
  static {
25518
25593
  ({ c: [_IconClear, _initClass37] } = _apply_decs_2203_r37(this, [], [
25519
- _dec97
25594
+ _dec98
25520
25595
  ], _HTMLElement37));
25521
25596
  }
25522
25597
  static {
@@ -25903,13 +25978,13 @@ function applyDecs2203RFactory38() {
25903
25978
  function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
25904
25979
  return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
25905
25980
  }
25906
- var import_lit_html40, _dec98, _initClass38, _HTMLElement38, _IconCode, IconCode;
25981
+ var import_lit_html40, _dec99, _initClass38, _HTMLElement38, _IconCode, IconCode;
25907
25982
  var init_code = __esm({
25908
25983
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/code.ts"() {
25909
25984
  "use strict";
25910
25985
  import_lit_html40 = require("lit-html");
25911
25986
  init_Component();
25912
- _dec98 = Component({
25987
+ _dec99 = Component({
25913
25988
  tag: "ease-icon-code",
25914
25989
  styles: `
25915
25990
  :host {
@@ -25934,7 +26009,7 @@ var init_code = __esm({
25934
26009
  IconCode = class extends (_HTMLElement38 = HTMLElement) {
25935
26010
  static {
25936
26011
  ({ c: [_IconCode, _initClass38] } = _apply_decs_2203_r38(this, [], [
25937
- _dec98
26012
+ _dec99
25938
26013
  ], _HTMLElement38));
25939
26014
  }
25940
26015
  static {
@@ -26321,13 +26396,13 @@ function applyDecs2203RFactory39() {
26321
26396
  function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
26322
26397
  return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
26323
26398
  }
26324
- var import_lit_html41, _dec99, _initClass39, _HTMLElement39, _IconDots, IconDots;
26399
+ var import_lit_html41, _dec100, _initClass39, _HTMLElement39, _IconDots, IconDots;
26325
26400
  var init_dots = __esm({
26326
26401
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/dots.ts"() {
26327
26402
  "use strict";
26328
26403
  import_lit_html41 = require("lit-html");
26329
26404
  init_Component();
26330
- _dec99 = Component({
26405
+ _dec100 = Component({
26331
26406
  tag: "ease-icon-dots",
26332
26407
  styles: `
26333
26408
  :host {
@@ -26354,7 +26429,7 @@ var init_dots = __esm({
26354
26429
  IconDots = class extends (_HTMLElement39 = HTMLElement) {
26355
26430
  static {
26356
26431
  ({ c: [_IconDots, _initClass39] } = _apply_decs_2203_r39(this, [], [
26357
- _dec99
26432
+ _dec100
26358
26433
  ], _HTMLElement39));
26359
26434
  }
26360
26435
  static {
@@ -26741,14 +26816,14 @@ function applyDecs2203RFactory40() {
26741
26816
  function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
26742
26817
  return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
26743
26818
  }
26744
- var import_lit_html42, _dec100, _initClass40, _HTMLElement40, _dec128, _init_state2, _initProto22, _IconGrid, IconGrid;
26819
+ var import_lit_html42, _dec101, _initClass40, _HTMLElement40, _dec128, _init_state2, _initProto22, _IconGrid, IconGrid;
26745
26820
  var init_grid = __esm({
26746
26821
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/grid.ts"() {
26747
26822
  "use strict";
26748
26823
  import_lit_html42 = require("lit-html");
26749
26824
  init_Component();
26750
26825
  init_Prop();
26751
- _dec100 = Component({
26826
+ _dec101 = Component({
26752
26827
  tag: "ease-icon-grid",
26753
26828
  styles: `
26754
26829
  :host {
@@ -26807,7 +26882,7 @@ var init_grid = __esm({
26807
26882
  "state"
26808
26883
  ]
26809
26884
  ], [
26810
- _dec100
26885
+ _dec101
26811
26886
  ], _HTMLElement40));
26812
26887
  }
26813
26888
  #___private_state_1;
@@ -27222,13 +27297,13 @@ function applyDecs2203RFactory41() {
27222
27297
  function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
27223
27298
  return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
27224
27299
  }
27225
- var import_lit_html43, _dec101, _initClass41, _HTMLElement41, _Loading, Loading;
27300
+ var import_lit_html43, _dec105, _initClass41, _HTMLElement41, _Loading, Loading;
27226
27301
  var init_loading = __esm({
27227
27302
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/loading.ts"() {
27228
27303
  "use strict";
27229
27304
  import_lit_html43 = require("lit-html");
27230
27305
  init_Component();
27231
- _dec101 = Component({
27306
+ _dec105 = Component({
27232
27307
  tag: "ease-icon-loading",
27233
27308
  styles: `
27234
27309
  :host {
@@ -27291,7 +27366,7 @@ var init_loading = __esm({
27291
27366
  Loading = class extends (_HTMLElement41 = HTMLElement) {
27292
27367
  static {
27293
27368
  ({ c: [_Loading, _initClass41] } = _apply_decs_2203_r41(this, [], [
27294
- _dec101
27369
+ _dec105
27295
27370
  ], _HTMLElement41));
27296
27371
  }
27297
27372
  static {
@@ -27678,13 +27753,13 @@ function applyDecs2203RFactory42() {
27678
27753
  function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
27679
27754
  return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
27680
27755
  }
27681
- var import_lit_html44, _dec105, _initClass42, _HTMLElement42, _IconMention, IconMention;
27756
+ var import_lit_html44, _dec106, _initClass42, _HTMLElement42, _IconMention, IconMention;
27682
27757
  var init_mention = __esm({
27683
27758
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/mention.ts"() {
27684
27759
  "use strict";
27685
27760
  import_lit_html44 = require("lit-html");
27686
27761
  init_Component();
27687
- _dec105 = Component({
27762
+ _dec106 = Component({
27688
27763
  tag: "ease-icon-mention",
27689
27764
  styles: `
27690
27765
  :host {
@@ -27709,7 +27784,7 @@ var init_mention = __esm({
27709
27784
  IconMention = class extends (_HTMLElement42 = HTMLElement) {
27710
27785
  static {
27711
27786
  ({ c: [_IconMention, _initClass42] } = _apply_decs_2203_r42(this, [], [
27712
- _dec105
27787
+ _dec106
27713
27788
  ], _HTMLElement42));
27714
27789
  }
27715
27790
  static {
@@ -28096,13 +28171,13 @@ function applyDecs2203RFactory43() {
28096
28171
  function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
28097
28172
  return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
28098
28173
  }
28099
- var import_lit_html45, _dec106, _initClass43, _HTMLElement43, _Settings, Settings;
28174
+ var import_lit_html45, _dec107, _initClass43, _HTMLElement43, _Settings, Settings;
28100
28175
  var init_settings = __esm({
28101
28176
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/settings.ts"() {
28102
28177
  "use strict";
28103
28178
  import_lit_html45 = require("lit-html");
28104
28179
  init_Component();
28105
- _dec106 = Component({
28180
+ _dec107 = Component({
28106
28181
  tag: "ease-icon-settings",
28107
28182
  styles: `
28108
28183
  :host {
@@ -28127,7 +28202,7 @@ var init_settings = __esm({
28127
28202
  Settings = class extends (_HTMLElement43 = HTMLElement) {
28128
28203
  static {
28129
28204
  ({ c: [_Settings, _initClass43] } = _apply_decs_2203_r43(this, [], [
28130
- _dec106
28205
+ _dec107
28131
28206
  ], _HTMLElement43));
28132
28207
  }
28133
28208
  static {
@@ -28514,14 +28589,14 @@ function applyDecs2203RFactory44() {
28514
28589
  function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
28515
28590
  return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
28516
28591
  }
28517
- var import_lit_html46, _dec107, _initClass44, _HTMLElement44, _dec129, _init_state3, _initProto23, _Snap, Snap;
28592
+ var import_lit_html46, _dec108, _initClass44, _HTMLElement44, _dec129, _init_state3, _initProto23, _Snap, Snap;
28518
28593
  var init_snap = __esm({
28519
28594
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/snap.ts"() {
28520
28595
  "use strict";
28521
28596
  import_lit_html46 = require("lit-html");
28522
28597
  init_Component();
28523
28598
  init_Prop();
28524
- _dec107 = Component({
28599
+ _dec108 = Component({
28525
28600
  tag: "ease-icon-snap",
28526
28601
  styles: `
28527
28602
  :host {
@@ -28622,7 +28697,7 @@ var init_snap = __esm({
28622
28697
  "state"
28623
28698
  ]
28624
28699
  ], [
28625
- _dec107
28700
+ _dec108
28626
28701
  ], _HTMLElement44));
28627
28702
  }
28628
28703
  #___private_state_1;
@@ -29748,6 +29823,21 @@ var init_utils2 = __esm({
29748
29823
  }
29749
29824
  });
29750
29825
 
29826
+ // src/elements/shared.ts
29827
+ var dispatchControlEvent2;
29828
+ var init_shared2 = __esm({
29829
+ "src/elements/shared.ts"() {
29830
+ "use strict";
29831
+ dispatchControlEvent2 = (host, type, detail) => {
29832
+ host.dispatchEvent(new CustomEvent(type, {
29833
+ detail,
29834
+ bubbles: true,
29835
+ composed: true
29836
+ }));
29837
+ };
29838
+ }
29839
+ });
29840
+
29751
29841
  // swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/constants.ts
29752
29842
  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
29843
  var init_constants = __esm({
@@ -29999,21 +30089,6 @@ var init_svg_renderer = __esm({
29999
30089
  }
30000
30090
  });
30001
30091
 
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
30092
  // swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts
30018
30093
  function applyDecs2203RFactory45() {
30019
30094
  function createAddInitializerMethod(initializers, decoratorFinishedRef) {
@@ -30387,7 +30462,7 @@ function applyDecs2203RFactory45() {
30387
30462
  function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
30388
30463
  return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
30389
30464
  }
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;
30465
+ 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
30466
  var init_canvas = __esm({
30392
30467
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts"() {
30393
30468
  "use strict";
@@ -30401,7 +30476,7 @@ var init_canvas = __esm({
30401
30476
  init_Prop();
30402
30477
  init_Query();
30403
30478
  init_shared2();
30404
- _dec108 = Component({
30479
+ _dec109 = Component({
30405
30480
  tag: "ease-curve-canvas",
30406
30481
  styles: canvasStyles,
30407
30482
  template() {
@@ -30507,7 +30582,7 @@ var init_canvas = __esm({
30507
30582
  "svgElement"
30508
30583
  ]
30509
30584
  ], [
30510
- _dec108
30585
+ _dec109
30511
30586
  ], _HTMLElement45));
30512
30587
  }
30513
30588
  #___private_easingType_1;
@@ -31391,6 +31466,7 @@ var init_canvas = __esm({
31391
31466
  }, this.#emitPoints = (value, event) => {
31392
31467
  const target = this.#getEventTarget();
31393
31468
  const detail = {
31469
+ name: target.name,
31394
31470
  value,
31395
31471
  event
31396
31472
  };
@@ -31401,6 +31477,7 @@ var init_canvas = __esm({
31401
31477
  }
31402
31478
  const target = this.#getEventTarget();
31403
31479
  const detail = {
31480
+ name: target.name,
31404
31481
  value: index,
31405
31482
  event
31406
31483
  };
@@ -32119,7 +32196,7 @@ function applyDecs2203RFactory46() {
32119
32196
  function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
32120
32197
  return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
32121
32198
  }
32122
- var import_lit_html49, _dec109, _initClass46, _HTMLElement46, _dec131, _dec224, _dec321, _init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25, _CanvasControls, CanvasControls;
32199
+ var import_lit_html49, _dec131, _initClass46, _HTMLElement46, _dec133, _dec224, _dec321, _init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25, _CanvasControls, CanvasControls;
32123
32200
  var init_canvas_controls = __esm({
32124
32201
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas-controls.ts"() {
32125
32202
  "use strict";
@@ -32131,7 +32208,7 @@ var init_canvas_controls = __esm({
32131
32208
  init_Component();
32132
32209
  init_Prop();
32133
32210
  init_shared2();
32134
- _dec109 = Component({
32211
+ _dec131 = Component({
32135
32212
  tag: "ease-curve-canvas-controls",
32136
32213
  styles: canvasControlsStyles,
32137
32214
  template() {
@@ -32191,7 +32268,7 @@ var init_canvas_controls = __esm({
32191
32268
  </div>
32192
32269
  `;
32193
32270
  }
32194
- }), _dec131 = Prop({
32271
+ }), _dec133 = Prop({
32195
32272
  reflect: true
32196
32273
  }), _dec224 = Prop({
32197
32274
  type: Object,
@@ -32205,7 +32282,7 @@ var init_canvas_controls = __esm({
32205
32282
  static {
32206
32283
  ({ e: [_init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25], c: [_CanvasControls, _initClass46] } = _apply_decs_2203_r46(this, [
32207
32284
  [
32208
- _dec131,
32285
+ _dec133,
32209
32286
  1,
32210
32287
  "easingType"
32211
32288
  ],
@@ -32220,7 +32297,7 @@ var init_canvas_controls = __esm({
32220
32297
  "focusedLinearIndex"
32221
32298
  ]
32222
32299
  ], [
32223
- _dec109
32300
+ _dec131
32224
32301
  ], _HTMLElement46));
32225
32302
  }
32226
32303
  #___private_easingType_1;
@@ -32338,6 +32415,7 @@ var init_canvas_controls = __esm({
32338
32415
  }, this.#notifyHost = (type, value, event) => {
32339
32416
  const target = this.#getEventTarget();
32340
32417
  const detail = {
32418
+ name: target.name,
32341
32419
  value,
32342
32420
  event
32343
32421
  };
@@ -32849,13 +32927,13 @@ function applyDecs2203RFactory47() {
32849
32927
  function _apply_decs_2203_r47(targetClass, memberDecs, classDecs, parentClass) {
32850
32928
  return (_apply_decs_2203_r47 = applyDecs2203RFactory47())(targetClass, memberDecs, classDecs, parentClass);
32851
32929
  }
32852
- var import_lit_html50, _dec133, _initClass47, _HTMLElement47, _IconMinus2, IconMinus2;
32930
+ var import_lit_html50, _dec134, _initClass47, _HTMLElement47, _IconMinus2, IconMinus2;
32853
32931
  var init_minus2 = __esm({
32854
32932
  "src/elements/icons/interface/minus.ts"() {
32855
32933
  "use strict";
32856
32934
  import_lit_html50 = require("lit-html");
32857
32935
  init_Component();
32858
- _dec133 = Component({
32936
+ _dec134 = Component({
32859
32937
  tag: "ease-icon-minus",
32860
32938
  styles: `
32861
32939
  :host {
@@ -32880,7 +32958,7 @@ var init_minus2 = __esm({
32880
32958
  IconMinus2 = class extends (_HTMLElement47 = HTMLElement) {
32881
32959
  static {
32882
32960
  ({ c: [_IconMinus2, _initClass47] } = _apply_decs_2203_r47(this, [], [
32883
- _dec133
32961
+ _dec134
32884
32962
  ], _HTMLElement47));
32885
32963
  }
32886
32964
  static {
@@ -33263,13 +33341,13 @@ function applyDecs2203RFactory48() {
33263
33341
  function _apply_decs_2203_r48(targetClass, memberDecs, classDecs, parentClass) {
33264
33342
  return (_apply_decs_2203_r48 = applyDecs2203RFactory48())(targetClass, memberDecs, classDecs, parentClass);
33265
33343
  }
33266
- var import_lit_html51, _dec134, _initClass48, _HTMLElement48, _IconPlus2, IconPlus2;
33344
+ var import_lit_html51, _dec135, _initClass48, _HTMLElement48, _IconPlus2, IconPlus2;
33267
33345
  var init_plus2 = __esm({
33268
33346
  "src/elements/icons/interface/plus.ts"() {
33269
33347
  "use strict";
33270
33348
  import_lit_html51 = require("lit-html");
33271
33349
  init_Component();
33272
- _dec134 = Component({
33350
+ _dec135 = Component({
33273
33351
  tag: "ease-icon-plus",
33274
33352
  styles: `
33275
33353
  :host {
@@ -33294,7 +33372,7 @@ var init_plus2 = __esm({
33294
33372
  IconPlus2 = class extends (_HTMLElement48 = HTMLElement) {
33295
33373
  static {
33296
33374
  ({ c: [_IconPlus2, _initClass48] } = _apply_decs_2203_r48(this, [], [
33297
- _dec134
33375
+ _dec135
33298
33376
  ], _HTMLElement48));
33299
33377
  }
33300
33378
  static {
@@ -33677,14 +33755,14 @@ function applyDecs2203RFactory49() {
33677
33755
  function _apply_decs_2203_r49(targetClass, memberDecs, classDecs, parentClass) {
33678
33756
  return (_apply_decs_2203_r49 = applyDecs2203RFactory49())(targetClass, memberDecs, classDecs, parentClass);
33679
33757
  }
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;
33758
+ 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
33759
  var init_button2 = __esm({
33682
33760
  "src/elements/button/index.ts"() {
33683
33761
  "use strict";
33684
33762
  import_lit_html52 = require("lit-html");
33685
33763
  init_Component();
33686
33764
  init_Prop();
33687
- _dec135 = Component({
33765
+ _dec136 = Component({
33688
33766
  tag: "ease-button",
33689
33767
  autoSlot: true,
33690
33768
  shadowMode: "open",
@@ -33851,7 +33929,7 @@ var init_button2 = __esm({
33851
33929
  }
33852
33930
  }
33853
33931
  `
33854
- }), _dec136 = Prop({
33932
+ }), _dec137 = Prop({
33855
33933
  type: Boolean,
33856
33934
  reflect: true
33857
33935
  }), _dec225 = Prop({
@@ -33880,7 +33958,7 @@ var init_button2 = __esm({
33880
33958
  static {
33881
33959
  ({ e: [_init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26], c: [_Button2, _initClass49] } = _apply_decs_2203_r49(this, [
33882
33960
  [
33883
- _dec136,
33961
+ _dec137,
33884
33962
  1,
33885
33963
  "disabled"
33886
33964
  ],
@@ -33910,7 +33988,7 @@ var init_button2 = __esm({
33910
33988
  "variant"
33911
33989
  ]
33912
33990
  ], [
33913
- _dec135
33991
+ _dec136
33914
33992
  ], _HTMLElement49));
33915
33993
  }
33916
33994
  #___private_disabled_1;
@@ -34352,7 +34430,7 @@ function applyDecs2203RFactory50() {
34352
34430
  function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
34353
34431
  return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
34354
34432
  }
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;
34433
+ 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
34434
  var init_controls = __esm({
34357
34435
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/controls.ts"() {
34358
34436
  "use strict";
@@ -34367,7 +34445,7 @@ var init_controls = __esm({
34367
34445
  init_minus2();
34368
34446
  init_plus2();
34369
34447
  init_button2();
34370
- _dec137 = Component({
34448
+ _dec138 = Component({
34371
34449
  tag: "ease-curve-controls",
34372
34450
  styles: controlsStyles,
34373
34451
  template() {
@@ -34400,7 +34478,7 @@ var init_controls = __esm({
34400
34478
  </ease-field>
34401
34479
  `;
34402
34480
  }
34403
- }), _dec138 = Prop({
34481
+ }), _dec139 = Prop({
34404
34482
  reflect: true
34405
34483
  }), _dec226 = Prop({
34406
34484
  type: Object,
@@ -34432,7 +34510,7 @@ var init_controls = __esm({
34432
34510
  static {
34433
34511
  ({ e: [_init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27], c: [_CurveControls, _initClass50] } = _apply_decs_2203_r50(this, [
34434
34512
  [
34435
- _dec138,
34513
+ _dec139,
34436
34514
  1,
34437
34515
  "easingType"
34438
34516
  ],
@@ -34462,7 +34540,7 @@ var init_controls = __esm({
34462
34540
  "focusedLinearIndex"
34463
34541
  ]
34464
34542
  ], [
34465
- _dec137
34543
+ _dec138
34466
34544
  ], _HTMLElement50));
34467
34545
  }
34468
34546
  #___private_easingType_1;
@@ -35372,6 +35450,7 @@ var init_controls = __esm({
35372
35450
  }, this.#notifyHost = (type, value, event) => {
35373
35451
  const target = this.#getEventTarget();
35374
35452
  const detail = {
35453
+ name: target.name,
35375
35454
  value,
35376
35455
  event
35377
35456
  };
@@ -36021,7 +36100,7 @@ function applyDecs2203RFactory51() {
36021
36100
  function _apply_decs_2203_r51(targetClass, memberDecs, classDecs, parentClass) {
36022
36101
  return (_apply_decs_2203_r51 = applyDecs2203RFactory51())(targetClass, memberDecs, classDecs, parentClass);
36023
36102
  }
36024
- var import_lit_html54, _dec139, _initClass51, _HTMLElement51, _dec140, _dec227, _init_language, _init_codeElement, _initProto28, _Code, Code;
36103
+ var import_lit_html54, _dec140, _initClass51, _HTMLElement51, _dec141, _dec227, _init_language, _init_codeElement, _initProto28, _Code, Code;
36025
36104
  var init_code2 = __esm({
36026
36105
  "src/components/code/index.ts"() {
36027
36106
  "use strict";
@@ -36032,7 +36111,7 @@ var init_code2 = __esm({
36032
36111
  init_Component();
36033
36112
  init_Prop();
36034
36113
  init_Query();
36035
- _dec139 = Component({
36114
+ _dec140 = Component({
36036
36115
  tag: "ease-code",
36037
36116
  shadowMode: "open",
36038
36117
  autoSlot: false,
@@ -36057,14 +36136,14 @@ var init_code2 = __esm({
36057
36136
  template() {
36058
36137
  return import_lit_html54.html`<pre><code><slot></slot></code></pre>`;
36059
36138
  }
36060
- }), _dec140 = Prop({
36139
+ }), _dec141 = Prop({
36061
36140
  reflect: true
36062
36141
  }), _dec227 = Query("code");
36063
36142
  Code = class extends (_HTMLElement51 = HTMLElement) {
36064
36143
  static {
36065
36144
  ({ e: [_init_language, _init_codeElement, _initProto28], c: [_Code, _initClass51] } = _apply_decs_2203_r51(this, [
36066
36145
  [
36067
- _dec140,
36146
+ _dec141,
36068
36147
  1,
36069
36148
  "language"
36070
36149
  ],
@@ -36074,7 +36153,7 @@ var init_code2 = __esm({
36074
36153
  "codeElement"
36075
36154
  ]
36076
36155
  ], [
36077
- _dec139
36156
+ _dec140
36078
36157
  ], _HTMLElement51));
36079
36158
  }
36080
36159
  #instanceId;
@@ -36581,7 +36660,7 @@ function applyDecs2203RFactory52() {
36581
36660
  function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
36582
36661
  return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
36583
36662
  }
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;
36663
+ 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
36664
  var init_output = __esm({
36586
36665
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/output.ts"() {
36587
36666
  "use strict";
@@ -36592,7 +36671,7 @@ var init_output = __esm({
36592
36671
  init_Component();
36593
36672
  init_Prop();
36594
36673
  init_code2();
36595
- _dec141 = Component({
36674
+ _dec143 = Component({
36596
36675
  tag: "ease-curve-output",
36597
36676
  styles: outputStyles,
36598
36677
  template() {
@@ -36608,7 +36687,7 @@ var init_output = __esm({
36608
36687
  </div>
36609
36688
  `;
36610
36689
  }
36611
- }), _dec143 = Prop({
36690
+ }), _dec144 = Prop({
36612
36691
  type: String,
36613
36692
  reflect: true
36614
36693
  }), _dec228 = Prop({
@@ -36631,9 +36710,9 @@ var init_output = __esm({
36631
36710
  });
36632
36711
  CurveOutput = class extends (_HTMLElement52 = HTMLElement) {
36633
36712
  static {
36634
- ({ e: [_init_easingType4, _init_points4, _init_name7, _init_variant3, _init_simplify2, _init_round2, _initProto29], c: [_CurveOutput, _initClass52] } = _apply_decs_2203_r52(this, [
36713
+ ({ e: [_init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto29], c: [_CurveOutput, _initClass52] } = _apply_decs_2203_r52(this, [
36635
36714
  [
36636
- _dec143,
36715
+ _dec144,
36637
36716
  1,
36638
36717
  "easingType"
36639
36718
  ],
@@ -36663,7 +36742,7 @@ var init_output = __esm({
36663
36742
  "round"
36664
36743
  ]
36665
36744
  ], [
36666
- _dec141
36745
+ _dec143
36667
36746
  ], _HTMLElement52));
36668
36747
  }
36669
36748
  #___private_easingType_1;
@@ -36785,7 +36864,7 @@ var init_output = __esm({
36785
36864
  _initClass52();
36786
36865
  }
36787
36866
  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) => {
36867
+ 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
36868
  event.preventDefault();
36790
36869
  try {
36791
36870
  await navigator.clipboard.writeText(this.timingFunction);
@@ -37197,7 +37276,7 @@ function applyDecs2203RFactory53() {
37197
37276
  function _apply_decs_2203_r53(targetClass, memberDecs, classDecs, parentClass) {
37198
37277
  return (_apply_decs_2203_r53 = applyDecs2203RFactory53())(targetClass, memberDecs, classDecs, parentClass);
37199
37278
  }
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;
37279
+ 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
37280
  var init_tooltip2 = __esm({
37202
37281
  "src/elements/tooltip/index.ts"() {
37203
37282
  "use strict";
@@ -37207,7 +37286,7 @@ var init_tooltip2 = __esm({
37207
37286
  init_OutsideClick();
37208
37287
  init_Prop();
37209
37288
  init_Query();
37210
- _dec144 = Component({
37289
+ _dec145 = Component({
37211
37290
  tag: "ease-tooltip",
37212
37291
  shadowMode: "open",
37213
37292
  styles: `
@@ -37237,7 +37316,7 @@ var init_tooltip2 = __esm({
37237
37316
  display: block;
37238
37317
  }
37239
37318
  `
37240
- }), _dec145 = Prop({
37319
+ }), _dec146 = Prop({
37241
37320
  type: Boolean,
37242
37321
  reflect: true,
37243
37322
  onChange(next, previous) {
@@ -37261,7 +37340,7 @@ var init_tooltip2 = __esm({
37261
37340
  static {
37262
37341
  ({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30], c: [_Tooltip2, _initClass53] } = _apply_decs_2203_r53(this, [
37263
37342
  [
37264
- _dec145,
37343
+ _dec146,
37265
37344
  1,
37266
37345
  "open"
37267
37346
  ],
@@ -37291,7 +37370,7 @@ var init_tooltip2 = __esm({
37291
37370
  "handleOutsideDismiss"
37292
37371
  ]
37293
37372
  ], [
37294
- _dec144
37373
+ _dec145
37295
37374
  ], _HTMLElement53));
37296
37375
  }
37297
37376
  #hoverTimer;
@@ -37834,7 +37913,7 @@ function applyDecs2203RFactory54() {
37834
37913
  function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
37835
37914
  return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
37836
37915
  }
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;
37916
+ 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
37917
  var init_toolbar = __esm({
37839
37918
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/toolbar.ts"() {
37840
37919
  "use strict";
@@ -37849,7 +37928,7 @@ var init_toolbar = __esm({
37849
37928
  init_plus2();
37850
37929
  init_button2();
37851
37930
  init_tooltip2();
37852
- _dec146 = Component({
37931
+ _dec147 = Component({
37853
37932
  tag: "ease-curve-toolbar",
37854
37933
  styles: toolbarStyles,
37855
37934
  template() {
@@ -37976,7 +38055,7 @@ var init_toolbar = __esm({
37976
38055
  </div>
37977
38056
  `;
37978
38057
  }
37979
- }), _dec147 = Prop({
38058
+ }), _dec148 = Prop({
37980
38059
  reflect: true
37981
38060
  }), _dec230 = Prop({
37982
38061
  type: Object,
@@ -38006,7 +38085,7 @@ var init_toolbar = __esm({
38006
38085
  static {
38007
38086
  ({ 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
38087
  [
38009
- _dec147,
38088
+ _dec148,
38010
38089
  1,
38011
38090
  "easingType"
38012
38091
  ],
@@ -38041,7 +38120,7 @@ var init_toolbar = __esm({
38041
38120
  "round"
38042
38121
  ]
38043
38122
  ], [
38044
- _dec146
38123
+ _dec147
38045
38124
  ], _HTMLElement54));
38046
38125
  }
38047
38126
  #___private_easingType_1;
@@ -38117,6 +38196,7 @@ var init_toolbar = __esm({
38117
38196
  }, this.#notifyHost = (type, value, event) => {
38118
38197
  const target = this.#getEventTarget();
38119
38198
  const detail = {
38199
+ name: target.name,
38120
38200
  value,
38121
38201
  event
38122
38202
  };
@@ -38689,7 +38769,7 @@ function applyDecs2203RFactory55() {
38689
38769
  function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
38690
38770
  return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
38691
38771
  }
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;
38772
+ 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
38773
  var init_curve = __esm({
38694
38774
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/index.ts"() {
38695
38775
  "use strict";
@@ -38701,13 +38781,14 @@ var init_curve = __esm({
38701
38781
  init_Component();
38702
38782
  init_Listen();
38703
38783
  init_Prop();
38784
+ init_shared2();
38704
38785
  init_canvas();
38705
38786
  init_canvas_controls();
38706
38787
  init_controls();
38707
38788
  init_output();
38708
38789
  init_toolbar();
38709
38790
  init_types();
38710
- _dec148 = Component({
38791
+ _dec149 = Component({
38711
38792
  tag: "ease-curve",
38712
38793
  styles: containerStyles,
38713
38794
  template() {
@@ -38768,7 +38849,7 @@ var init_curve = __esm({
38768
38849
  </div>
38769
38850
  `;
38770
38851
  }
38771
- }), _dec149 = Prop({
38852
+ }), _dec150 = Prop({
38772
38853
  reflect: true,
38773
38854
  defaultValue: "ease-custom"
38774
38855
  }), _dec231 = Prop({
@@ -38841,9 +38922,9 @@ var init_curve = __esm({
38841
38922
  });
38842
38923
  Curve = class extends (_HTMLElement55 = HTMLElement) {
38843
38924
  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, [
38925
+ ({ 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
38926
  [
38846
- _dec149,
38927
+ _dec150,
38847
38928
  1,
38848
38929
  "name"
38849
38930
  ],
@@ -38933,7 +39014,7 @@ var init_curve = __esm({
38933
39014
  "handleLinearPointFocus"
38934
39015
  ]
38935
39016
  ], [
38936
- _dec148
39017
+ _dec149
38937
39018
  ], _HTMLElement55));
38938
39019
  }
38939
39020
  #___private_name_1;
@@ -39207,20 +39288,17 @@ var init_curve = __esm({
39207
39288
  }
39208
39289
  emitPointsChange(value, sourceEvent) {
39209
39290
  const detail = {
39291
+ name: this.name,
39210
39292
  value,
39211
39293
  event: sourceEvent ?? new Event("points-change")
39212
39294
  };
39213
- this.dispatchEvent(new CustomEvent("points-change", {
39214
- detail,
39215
- bubbles: true,
39216
- composed: true
39217
- }));
39295
+ dispatchControlEvent2(this, "points-change", detail);
39218
39296
  }
39219
39297
  static {
39220
39298
  _initClass55();
39221
39299
  }
39222
39300
  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);
39301
+ 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
39302
  }
39225
39303
  };
39226
39304
  }
@@ -39603,7 +39681,7 @@ function applyDecs2203RFactory56() {
39603
39681
  function _apply_decs_2203_r56(targetClass, memberDecs, classDecs, parentClass) {
39604
39682
  return (_apply_decs_2203_r56 = applyDecs2203RFactory56())(targetClass, memberDecs, classDecs, parentClass);
39605
39683
  }
39606
- var import_lit_html59, _dec150, _initClass56, _HTMLElement56, _dec151, _dec232, _init_language2, _init_codeElement2, _initProto33, _Code2, Code2;
39684
+ var import_lit_html59, _dec151, _initClass56, _HTMLElement56, _dec154, _dec232, _init_language2, _init_codeElement2, _initProto33, _Code2, Code2;
39607
39685
  var init_code3 = __esm({
39608
39686
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/code/index.ts"() {
39609
39687
  "use strict";
@@ -39614,7 +39692,7 @@ var init_code3 = __esm({
39614
39692
  init_Component();
39615
39693
  init_Prop();
39616
39694
  init_Query();
39617
- _dec150 = Component({
39695
+ _dec151 = Component({
39618
39696
  tag: "ease-code",
39619
39697
  shadowMode: "open",
39620
39698
  autoSlot: false,
@@ -39639,14 +39717,14 @@ var init_code3 = __esm({
39639
39717
  template() {
39640
39718
  return import_lit_html59.html`<pre><code><slot></slot></code></pre>`;
39641
39719
  }
39642
- }), _dec151 = Prop({
39720
+ }), _dec154 = Prop({
39643
39721
  reflect: true
39644
39722
  }), _dec232 = Query("code");
39645
39723
  Code2 = class extends (_HTMLElement56 = HTMLElement) {
39646
39724
  static {
39647
39725
  ({ e: [_init_language2, _init_codeElement2, _initProto33], c: [_Code2, _initClass56] } = _apply_decs_2203_r56(this, [
39648
39726
  [
39649
- _dec151,
39727
+ _dec154,
39650
39728
  1,
39651
39729
  "language"
39652
39730
  ],
@@ -39656,7 +39734,7 @@ var init_code3 = __esm({
39656
39734
  "codeElement"
39657
39735
  ]
39658
39736
  ], [
39659
- _dec150
39737
+ _dec151
39660
39738
  ], _HTMLElement56));
39661
39739
  }
39662
39740
  #instanceId;