@easemate/web-kit 0.3.4 → 0.3.5

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
@@ -3468,14 +3468,15 @@ function applyDecs2203RFactory3() {
3468
3468
  function _apply_decs_2203_r3(targetClass, memberDecs, classDecs, parentClass) {
3469
3469
  return (_apply_decs_2203_r3 = applyDecs2203RFactory3())(targetClass, memberDecs, classDecs, parentClass);
3470
3470
  }
3471
- var import_lit_html4, _dec8, _initClass3, _HTMLElement3, _dec13, _dec23, _dec33, _init_placement, _init_offset, _init_open, _initProto3, nextAnchorName, _Popover, Popover, popover_default;
3471
+ var import_lit_html4, _dec8, _initClass3, _HTMLElement3, _dec13, _dec23, _dec33, _dec43, _init_contentElement, _init_placement, _init_offset, _init_open, _initProto3, nextAnchorName, _Popover, Popover, popover_default;
3472
3472
  var init_popover = __esm({
3473
3473
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/popover/index.ts"() {
3474
3474
  "use strict";
3475
3475
  import_lit_html4 = require("lit-html");
3476
3476
  init_Component();
3477
3477
  init_Prop();
3478
- nextAnchorName = () => `--ease-popover-anchor-${crypto.randomUUID()}`;
3478
+ init_Query();
3479
+ nextAnchorName = () => `--ease-popover-anchor-${crypto.randomUUID().slice(0, 8)}`;
3479
3480
  _dec8 = Component({
3480
3481
  tag: "ease-popover",
3481
3482
  autoSlot: false,
@@ -3484,7 +3485,6 @@ var init_popover = __esm({
3484
3485
  :host {
3485
3486
  display: contents;
3486
3487
  --ease-popover-offset: 8px;
3487
- --ease-popover-anchor-name: --ease-popover-anchor;
3488
3488
  --ease-popover-transform-origin: center center;
3489
3489
  --ease-popover-duration: 200ms;
3490
3490
  --ease-popover-content-min-width: auto;
@@ -3497,140 +3497,110 @@ var init_popover = __esm({
3497
3497
  }
3498
3498
 
3499
3499
  [part="content"] {
3500
- position-anchor: var(--ease-popover-anchor-name);
3501
3500
  position: fixed;
3501
+ position-anchor: var(--ease-popover-anchor-name);
3502
3502
  margin: 0;
3503
- transform-origin: var(--ease-popover-transform-origin);
3503
+ padding: 0;
3504
+ border: none;
3505
+ background: transparent;
3506
+ overflow: visible;
3504
3507
  width: var(--ease-popover-content-width);
3505
3508
  min-width: var(--ease-popover-content-min-width);
3506
3509
  max-width: var(--ease-popover-content-max-width);
3507
3510
  box-sizing: border-box;
3508
- overscroll-behavior: contain;
3509
- z-index: 100;
3510
- display: none;
3511
3511
  }
3512
3512
 
3513
- :host([open]) [part="content"] {
3513
+ [part="content"]:popover-open {
3514
3514
  display: block;
3515
3515
  }
3516
3516
 
3517
3517
  :host([placement="top-start"]) [part="content"] {
3518
- position-area: top right;
3519
- top: anchor(bottom);
3520
- left: anchor(left);
3521
- translate: 0 calc(var(--ease-popover-offset) * -1);
3518
+ position-area: top span-right;
3519
+ margin-bottom: var(--ease-popover-offset);
3522
3520
  }
3523
-
3524
3521
  :host([placement="top-center"]) [part="content"] {
3525
3522
  position-area: top center;
3526
- top: anchor(top);
3527
- left: anchor(center);
3528
- translate: 0 calc(var(--ease-popover-offset) * -1);
3523
+ margin-bottom: var(--ease-popover-offset);
3529
3524
  }
3530
-
3531
3525
  :host([placement="top-end"]) [part="content"] {
3532
- position-area: top right;
3533
- top: anchor(bottom);
3534
- right: anchor(right);
3535
- translate: 0 calc(var(--ease-popover-offset) * -1);
3526
+ position-area: top span-left;
3527
+ margin-bottom: var(--ease-popover-offset);
3536
3528
  }
3537
-
3538
3529
  :host([placement="bottom-start"]) [part="content"] {
3539
- position-area: bottom right;
3540
- top: anchor(bottom);
3541
- left: anchor(left);
3542
- translate: 0 var(--ease-popover-offset);
3530
+ position-area: bottom span-right;
3531
+ margin-top: var(--ease-popover-offset);
3543
3532
  }
3544
-
3545
3533
  :host([placement="bottom-center"]) [part="content"] {
3546
3534
  position-area: bottom center;
3547
- top: anchor(bottom);
3548
- left: anchor(left);
3549
- translate: 0 var(--ease-popover-offset);
3535
+ margin-top: var(--ease-popover-offset);
3550
3536
  }
3551
-
3552
3537
  :host([placement="bottom-end"]) [part="content"] {
3553
- position-area: bottom left;
3554
- top: anchor(bottom);
3555
- right: anchor(right);
3556
- translate: 0 var(--ease-popover-offset);
3538
+ position-area: bottom span-left;
3539
+ margin-top: var(--ease-popover-offset);
3557
3540
  }
3558
-
3559
3541
  :host([placement="left-start"]) [part="content"] {
3560
- position-area: left bottom;
3561
- top: anchor(top);
3562
- left: anchor(left);
3563
- translate: calc(var(--ease-popover-offset) * -1) 0;
3542
+ position-area: left span-bottom;
3543
+ margin-right: var(--ease-popover-offset);
3564
3544
  }
3565
-
3566
3545
  :host([placement="left-center"]) [part="content"] {
3567
3546
  position-area: left center;
3568
- top: anchor(top);
3569
- left: anchor(left);
3570
- translate: calc(var(--ease-popover-offset) * -1) 0;
3547
+ margin-right: var(--ease-popover-offset);
3571
3548
  }
3572
-
3573
3549
  :host([placement="left-end"]) [part="content"] {
3574
- position-area: left top;
3575
- top: anchor(top);
3576
- left: anchor(left);
3577
- translate: calc(var(--ease-popover-offset) * -1) 0;
3550
+ position-area: left span-top;
3551
+ margin-right: var(--ease-popover-offset);
3578
3552
  }
3579
-
3580
3553
  :host([placement="right-start"]) [part="content"] {
3581
- position-area: right end;
3582
- top: anchor(top);
3583
- left: anchor(right);
3584
- translate: var(--ease-popover-offset) 0;
3554
+ position-area: right span-bottom;
3555
+ margin-left: var(--ease-popover-offset);
3585
3556
  }
3586
-
3587
3557
  :host([placement="right-center"]) [part="content"] {
3588
3558
  position-area: right center;
3589
- top: anchor(top);
3590
- left: anchor(right);
3591
- translate: var(--ease-popover-offset) 0;
3559
+ margin-left: var(--ease-popover-offset);
3592
3560
  }
3593
-
3594
3561
  :host([placement="right-end"]) [part="content"] {
3595
- position-area: right start;
3596
- top: anchor(top);
3597
- left: anchor(right);
3598
- translate: var(--ease-popover-offset) 0;
3562
+ position-area: right span-top;
3563
+ margin-left: var(--ease-popover-offset);
3599
3564
  }
3600
3565
  `
3601
- }), _dec13 = Prop({
3566
+ }), _dec13 = Query('[part="content"]'), _dec23 = Prop({
3602
3567
  reflect: true,
3603
- defaultValue: "bottom-start",
3604
- onChange() {
3605
- this.handlePlacementChange();
3606
- }
3607
- }), _dec23 = Prop({
3568
+ defaultValue: "bottom-start"
3569
+ }), _dec33 = Prop({
3608
3570
  type: Number,
3609
3571
  reflect: true,
3610
3572
  defaultValue: 8,
3611
3573
  onChange() {
3612
3574
  this.handleOffsetChange();
3613
3575
  }
3614
- }), _dec33 = Prop({
3576
+ }), _dec43 = Prop({
3615
3577
  type: Boolean,
3616
- reflect: true
3578
+ reflect: true,
3579
+ onChange() {
3580
+ this.handleOpenChange();
3581
+ }
3617
3582
  });
3618
3583
  Popover = class extends (_HTMLElement3 = HTMLElement) {
3619
3584
  static {
3620
- ({ e: [_init_placement, _init_offset, _init_open, _initProto3], c: [_Popover, _initClass3] } = _apply_decs_2203_r3(this, [
3585
+ ({ e: [_init_contentElement, _init_placement, _init_offset, _init_open, _initProto3], c: [_Popover, _initClass3] } = _apply_decs_2203_r3(this, [
3621
3586
  [
3622
3587
  _dec13,
3623
3588
  1,
3624
- "placement"
3589
+ "contentElement"
3625
3590
  ],
3626
3591
  [
3627
3592
  _dec23,
3628
3593
  1,
3629
- "offset"
3594
+ "placement"
3630
3595
  ],
3631
3596
  [
3632
3597
  _dec33,
3633
3598
  1,
3599
+ "offset"
3600
+ ],
3601
+ [
3602
+ _dec43,
3603
+ 1,
3634
3604
  "open"
3635
3605
  ]
3636
3606
  ], [
@@ -3638,85 +3608,75 @@ var init_popover = __esm({
3638
3608
  ], _HTMLElement3));
3639
3609
  }
3640
3610
  #anchorName;
3641
- #contentElement;
3642
- #initialized;
3611
+ #___private_contentElement_1;
3643
3612
  get contentElement() {
3644
- return this.#contentElement;
3613
+ return this.#___private_contentElement_1;
3614
+ }
3615
+ set contentElement(_v) {
3616
+ this.#___private_contentElement_1 = _v;
3645
3617
  }
3646
- #___private_placement_1;
3618
+ #___private_placement_2;
3647
3619
  get placement() {
3648
- return this.#___private_placement_1;
3620
+ return this.#___private_placement_2;
3649
3621
  }
3650
3622
  set placement(_v) {
3651
- this.#___private_placement_1 = _v;
3623
+ this.#___private_placement_2 = _v;
3652
3624
  }
3653
- #___private_offset_2;
3625
+ #___private_offset_3;
3654
3626
  get offset() {
3655
- return this.#___private_offset_2;
3627
+ return this.#___private_offset_3;
3656
3628
  }
3657
3629
  set offset(_v) {
3658
- this.#___private_offset_2 = _v;
3630
+ this.#___private_offset_3 = _v;
3659
3631
  }
3660
- #___private_open_3;
3632
+ #___private_open_4;
3661
3633
  get open() {
3662
- return this.#___private_open_3;
3634
+ return this.#___private_open_4;
3663
3635
  }
3664
3636
  set open(_v) {
3665
- this.#___private_open_3 = _v;
3637
+ this.#___private_open_4 = _v;
3638
+ }
3639
+ handleOffsetChange() {
3640
+ const offset = Number.isFinite(this.offset) ? this.offset : 8;
3641
+ this.style.setProperty("--ease-popover-offset", `${offset}px`);
3642
+ }
3643
+ handleOpenChange() {
3644
+ const content = this.contentElement;
3645
+ if (!content) {
3646
+ return;
3647
+ }
3648
+ if (this.open) {
3649
+ content.showPopover();
3650
+ } else {
3651
+ content.hidePopover();
3652
+ }
3666
3653
  }
3667
3654
  connectedCallback() {
3668
- this.#syncAnchorName();
3669
- this.#syncOffset();
3655
+ this.style.setProperty("--ease-popover-anchor-name", this.#anchorName);
3656
+ this.handleOffsetChange();
3670
3657
  }
3671
- disconnectedCallback() {
3672
- this.#contentElement = null;
3673
- this.#initialized = false;
3658
+ afterRender() {
3659
+ const content = this.contentElement;
3660
+ if (content && this.open) {
3661
+ try {
3662
+ content.showPopover();
3663
+ } catch (_e) {
3664
+ }
3665
+ }
3674
3666
  }
3675
3667
  render() {
3676
3668
  return import_lit_html4.html`
3677
- <slot slot="trigger" name="trigger"></slot>
3678
- <div
3679
- part="content"
3680
- data-popover-content
3681
- role="region"
3682
- data-placement=${this.placement}
3683
- >
3669
+ <slot name="trigger"></slot>
3670
+ <div part="content" popover="manual" role="region">
3684
3671
  <slot></slot>
3685
3672
  </div>
3686
3673
  `;
3687
3674
  }
3688
- handlePlacementChange() {
3689
- if (!this.#initialized) {
3690
- this.requestRender();
3691
- return;
3692
- }
3693
- this.#syncPlacement();
3694
- }
3695
- handleOffsetChange() {
3696
- if (!this.#initialized) {
3697
- this.requestRender();
3698
- return;
3699
- }
3700
- this.#syncOffset();
3701
- }
3702
- #syncPlacement() {
3703
- this.dataset.placement = this.placement;
3704
- if (this.#contentElement) {
3705
- this.#contentElement.dataset.placement = this.placement;
3706
- }
3707
- }
3708
- #syncOffset() {
3709
- const offset = Number.isFinite(this.offset) ? this.offset : 0;
3710
- this.style.setProperty("--ease-popover-offset", `${offset}px`);
3711
- }
3712
- #syncAnchorName() {
3713
- this.style.setProperty("--ease-popover-anchor-name", this.#anchorName);
3714
- }
3715
3675
  static {
3716
3676
  _initClass3();
3717
3677
  }
3718
3678
  constructor(...args) {
3719
- super(...args), this.#anchorName = (_initProto3(this), nextAnchorName()), this.#contentElement = null, this.#initialized = false, this.#___private_placement_1 = _init_placement(this), this.#___private_offset_2 = _init_offset(this, 8), this.#___private_open_3 = _init_open(this, false);
3679
+ super(...args), this.#anchorName = (_initProto3(this), nextAnchorName()), this.#___private_contentElement_1 = _init_contentElement(this), this.#___private_placement_2 = _init_placement(this), this.#___private_offset_3 = _init_offset(this, 8), this.#___private_open_4 = _init_open(this, false);
3720
3680
  }
3721
3681
  };
3722
3682
  popover_default = {
@@ -4804,7 +4764,7 @@ function applyDecs2203RFactory5() {
4804
4764
  function _apply_decs_2203_r5(targetClass, memberDecs, classDecs, parentClass) {
4805
4765
  return (_apply_decs_2203_r5 = applyDecs2203RFactory5())(targetClass, memberDecs, classDecs, parentClass);
4806
4766
  }
4807
- var import_lit_html6, _dec10, _initClass5, _HTMLElement5, _dec15, _dec24, _dec34, _dec43, _dec53, _dec63, _dec72, _dec82, _dec92, _dec102, _dec11, _dec122, _dec132, _dec142, _dec152, _dec16, _init_open2, _init_disabled3, _init_pill2, _init_headless, _init_searchable, _init_block2, _init_maxHeight, _init_name2, _init_value2, _init_placeholder, _init_placement2, _init_trigger, _init_searchInput, _init_panelContent, _init_contentSlot, _initProto5, nextOptionId, nextPanelId, _Dropdown, Dropdown;
4767
+ var import_lit_html6, _dec10, _initClass5, _HTMLElement5, _dec15, _dec24, _dec34, _dec44, _dec53, _dec63, _dec72, _dec82, _dec92, _dec102, _dec11, _dec122, _dec132, _dec142, _dec152, _dec16, _init_open2, _init_disabled3, _init_pill2, _init_headless, _init_searchable, _init_block2, _init_maxHeight, _init_name2, _init_value2, _init_placeholder, _init_placement2, _init_trigger, _init_searchInput, _init_panelContent, _init_contentSlot, _initProto5, nextOptionId, nextPanelId, _Dropdown, Dropdown;
4808
4768
  var init_dropdown = __esm({
4809
4769
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/dropdown/index.ts"() {
4810
4770
  "use strict";
@@ -5083,7 +5043,7 @@ var init_dropdown = __esm({
5083
5043
  }), _dec34 = Prop({
5084
5044
  type: Boolean,
5085
5045
  reflect: true
5086
- }), _dec43 = Prop({
5046
+ }), _dec44 = Prop({
5087
5047
  type: Boolean,
5088
5048
  reflect: true
5089
5049
  }), _dec53 = Prop({
@@ -5142,7 +5102,7 @@ var init_dropdown = __esm({
5142
5102
  "pill"
5143
5103
  ],
5144
5104
  [
5145
- _dec43,
5105
+ _dec44,
5146
5106
  1,
5147
5107
  "headless"
5148
5108
  ],
@@ -6258,7 +6218,7 @@ function applyDecs2203RFactory6() {
6258
6218
  function _apply_decs_2203_r6(targetClass, memberDecs, classDecs, parentClass) {
6259
6219
  return (_apply_decs_2203_r6 = applyDecs2203RFactory6())(targetClass, memberDecs, classDecs, parentClass);
6260
6220
  }
6261
- var import_lit_html7, _dec17, _initClass6, _HTMLElement6, _dec18, _dec25, _dec35, _dec44, _dec54, _dec64, _dec73, _dec83, _dec93, _dec103, _dec112, _init_value3, _init_placeholder2, _init_type2, _init_name3, _init_disabled4, _init_headless2, _init_control2, _initProto6, _Input, Input;
6221
+ var import_lit_html7, _dec17, _initClass6, _HTMLElement6, _dec18, _dec25, _dec35, _dec45, _dec54, _dec64, _dec73, _dec83, _dec93, _dec103, _dec112, _init_value3, _init_placeholder2, _init_type2, _init_name3, _init_disabled4, _init_headless2, _init_control2, _initProto6, _Input, Input;
6262
6222
  var init_input = __esm({
6263
6223
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/input/index.ts"() {
6264
6224
  "use strict";
@@ -6462,7 +6422,7 @@ var init_input = __esm({
6462
6422
  }), _dec35 = Prop({
6463
6423
  reflect: true,
6464
6424
  defaultValue: "text"
6465
- }), _dec44 = Prop({
6425
+ }), _dec45 = Prop({
6466
6426
  reflect: true
6467
6427
  }), _dec54 = Prop({
6468
6428
  type: Boolean,
@@ -6500,7 +6460,7 @@ var init_input = __esm({
6500
6460
  "type"
6501
6461
  ],
6502
6462
  [
6503
- _dec44,
6463
+ _dec45,
6504
6464
  1,
6505
6465
  "name"
6506
6466
  ],
@@ -8211,7 +8171,7 @@ function applyDecs2203RFactory9() {
8211
8171
  function _apply_decs_2203_r9(targetClass, memberDecs, classDecs, parentClass) {
8212
8172
  return (_apply_decs_2203_r9 = applyDecs2203RFactory9())(targetClass, memberDecs, classDecs, parentClass);
8213
8173
  }
8214
- var import_lit_html11, _dec21, _initClass9, _HTMLElement9, _dec110, _dec26, _dec36, _dec45, _init_saturationArea, _init_hueArea, _init_hexInput, _init_value4, _initProto7, _ColorPicker, ColorPicker, picker_default;
8174
+ var import_lit_html11, _dec21, _initClass9, _HTMLElement9, _dec110, _dec26, _dec36, _dec46, _init_saturationArea, _init_hueArea, _init_hexInput, _init_value4, _initProto7, _ColorPicker, ColorPicker, picker_default;
8215
8175
  var init_picker2 = __esm({
8216
8176
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/picker.ts"() {
8217
8177
  "use strict";
@@ -8540,7 +8500,7 @@ var init_picker2 = __esm({
8540
8500
  </div>
8541
8501
  `;
8542
8502
  }
8543
- }), _dec110 = Query('[part="saturation"]'), _dec26 = Query('[part="hue"]'), _dec36 = Query('[part="hex-input"]'), _dec45 = Prop({
8503
+ }), _dec110 = Query('[part="saturation"]'), _dec26 = Query('[part="hue"]'), _dec36 = Query('[part="hex-input"]'), _dec46 = Prop({
8544
8504
  reflect: true,
8545
8505
  defaultValue: "#FF0000",
8546
8506
  onChange(value) {
@@ -8568,7 +8528,7 @@ var init_picker2 = __esm({
8568
8528
  "hexInput"
8569
8529
  ],
8570
8530
  [
8571
- _dec45,
8531
+ _dec46,
8572
8532
  1,
8573
8533
  "value"
8574
8534
  ]
@@ -9187,7 +9147,7 @@ function applyDecs2203RFactory10() {
9187
9147
  function _apply_decs_2203_r10(targetClass, memberDecs, classDecs, parentClass) {
9188
9148
  return (_apply_decs_2203_r10 = applyDecs2203RFactory10())(targetClass, memberDecs, classDecs, parentClass);
9189
9149
  }
9190
- var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37, _dec46, _init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8, _ColorInput, ColorInput;
9150
+ var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37, _dec47, _init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8, _ColorInput, ColorInput;
9191
9151
  var init_color = __esm({
9192
9152
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts"() {
9193
9153
  "use strict";
@@ -9271,7 +9231,7 @@ var init_color = __esm({
9271
9231
  }), _dec37 = Prop({
9272
9232
  type: Boolean,
9273
9233
  reflect: true
9274
- }), _dec46 = Prop({
9234
+ }), _dec47 = Prop({
9275
9235
  reflect: true,
9276
9236
  defaultValue: "bottom-start"
9277
9237
  });
@@ -9294,7 +9254,7 @@ var init_color = __esm({
9294
9254
  "disabled"
9295
9255
  ],
9296
9256
  [
9297
- _dec46,
9257
+ _dec47,
9298
9258
  1,
9299
9259
  "placement"
9300
9260
  ]
@@ -10626,7 +10586,7 @@ function applyDecs2203RFactory13() {
10626
10586
  function _apply_decs_2203_r13(targetClass, memberDecs, classDecs, parentClass) {
10627
10587
  return (_apply_decs_2203_r13 = applyDecs2203RFactory13())(targetClass, memberDecs, classDecs, parentClass);
10628
10588
  }
10629
- var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec113, _dec210, _dec38, _dec47, _dec55, _dec65, _dec74, _dec84, _dec94, _init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3, _initProto9, _NumberInput, NumberInput;
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;
10630
10590
  var init_number = __esm({
10631
10591
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/number/index.ts"() {
10632
10592
  "use strict";
@@ -10730,7 +10690,7 @@ var init_number = __esm({
10730
10690
  }), _dec38 = Prop({
10731
10691
  type: Number,
10732
10692
  reflect: true
10733
- }), _dec47 = Prop({
10693
+ }), _dec48 = Prop({
10734
10694
  type: Number,
10735
10695
  reflect: true
10736
10696
  }), _dec55 = Prop({
@@ -10762,7 +10722,7 @@ var init_number = __esm({
10762
10722
  "max"
10763
10723
  ],
10764
10724
  [
10765
- _dec47,
10725
+ _dec48,
10766
10726
  1,
10767
10727
  "step"
10768
10728
  ],
@@ -11296,7 +11256,7 @@ function applyDecs2203RFactory14() {
11296
11256
  function _apply_decs_2203_r14(targetClass, memberDecs, classDecs, parentClass) {
11297
11257
  return (_apply_decs_2203_r14 = applyDecs2203RFactory14())(targetClass, memberDecs, classDecs, parentClass);
11298
11258
  }
11299
- var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310, _dec48, _dec56, _init_value7, _init_disabled7, _init_control4, _init_name5, _initProto10, _Origin, Origin;
11259
+ var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310, _dec49, _dec56, _init_value7, _init_disabled7, _init_control4, _init_name5, _initProto10, _Origin, Origin;
11300
11260
  var init_origin = __esm({
11301
11261
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/origin/index.ts"() {
11302
11262
  "use strict";
@@ -11445,7 +11405,7 @@ var init_origin = __esm({
11445
11405
  }), _dec211 = Prop({
11446
11406
  type: Boolean,
11447
11407
  reflect: true
11448
- }), _dec310 = Query("ease-dropdown"), _dec48 = Prop({
11408
+ }), _dec310 = Query("ease-dropdown"), _dec49 = Prop({
11449
11409
  reflect: true,
11450
11410
  defaultValue: ""
11451
11411
  }), _dec56 = Listen("change", {
@@ -11470,7 +11430,7 @@ var init_origin = __esm({
11470
11430
  "control"
11471
11431
  ],
11472
11432
  [
11473
- _dec48,
11433
+ _dec49,
11474
11434
  1,
11475
11435
  "name"
11476
11436
  ],
@@ -12660,7 +12620,7 @@ function applyDecs2203RFactory16() {
12660
12620
  function _apply_decs_2203_r16(targetClass, memberDecs, classDecs, parentClass) {
12661
12621
  return (_apply_decs_2203_r16 = applyDecs2203RFactory16())(targetClass, memberDecs, classDecs, parentClass);
12662
12622
  }
12663
- var import_lit_html18, _dec41, _initClass16, _HTMLElement16, _dec116, _dec213, _dec312, _dec49, _dec57, _dec66, _init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5, _initProto12, _RadioInput, RadioInput;
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;
12664
12624
  var init_input2 = __esm({
12665
12625
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/input.ts"() {
12666
12626
  "use strict";
@@ -12929,7 +12889,7 @@ var init_input2 = __esm({
12929
12889
  reflect: true
12930
12890
  }), _dec312 = Prop({
12931
12891
  reflect: true
12932
- }), _dec49 = Prop({
12892
+ }), _dec410 = Prop({
12933
12893
  type: Boolean,
12934
12894
  reflect: true
12935
12895
  }), _dec57 = Query("button"), _dec66 = Listen("click", {
@@ -12954,7 +12914,7 @@ var init_input2 = __esm({
12954
12914
  "value"
12955
12915
  ],
12956
12916
  [
12957
- _dec49,
12917
+ _dec410,
12958
12918
  1,
12959
12919
  "disabled"
12960
12920
  ],
@@ -13444,7 +13404,7 @@ function applyDecs2203RFactory17() {
13444
13404
  function _apply_decs_2203_r17(targetClass, memberDecs, classDecs, parentClass) {
13445
13405
  return (_apply_decs_2203_r17 = applyDecs2203RFactory17())(targetClass, memberDecs, classDecs, parentClass);
13446
13406
  }
13447
- var import_lit_html19, _dec50, _initClass17, _HTMLElement17, _dec117, _dec214, _dec313, _dec410, _dec58, _dec67, _dec75, _dec85, _dec95, _dec104, _dec118, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl, _initProto13, _Slider, Slider;
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;
13448
13408
  var init_slider = __esm({
13449
13409
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/slider/index.ts"() {
13450
13410
  "use strict";
@@ -13588,7 +13548,7 @@ var init_slider = __esm({
13588
13548
  }), _dec313 = Prop({
13589
13549
  type: Number,
13590
13550
  reflect: true
13591
- }), _dec410 = Prop({
13551
+ }), _dec411 = Prop({
13592
13552
  type: Number,
13593
13553
  reflect: true
13594
13554
  }), _dec58 = Prop({
@@ -13624,7 +13584,7 @@ var init_slider = __esm({
13624
13584
  "max"
13625
13585
  ],
13626
13586
  [
13627
- _dec410,
13587
+ _dec411,
13628
13588
  1,
13629
13589
  "step"
13630
13590
  ],
@@ -14184,7 +14144,7 @@ function applyDecs2203RFactory18() {
14184
14144
  function _apply_decs_2203_r18(targetClass, memberDecs, classDecs, parentClass) {
14185
14145
  return (_apply_decs_2203_r18 = applyDecs2203RFactory18())(targetClass, memberDecs, classDecs, parentClass);
14186
14146
  }
14187
- var import_lit_html20, _dec51, _initClass18, _HTMLElement18, _dec119, _dec215, _dec314, _dec411, _init_checked3, _init_disabled10, _init_control7, _initProto14, _Toggle, Toggle;
14147
+ var import_lit_html20, _dec51, _initClass18, _HTMLElement18, _dec119, _dec215, _dec314, _dec412, _init_checked3, _init_disabled10, _init_control7, _initProto14, _Toggle, Toggle;
14188
14148
  var init_toggle = __esm({
14189
14149
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/toggle/index.ts"() {
14190
14150
  "use strict";
@@ -14312,7 +14272,7 @@ var init_toggle = __esm({
14312
14272
  }), _dec215 = Prop({
14313
14273
  type: Boolean,
14314
14274
  reflect: true
14315
- }), _dec314 = Query("button"), _dec411 = Listen("click", {
14275
+ }), _dec314 = Query("button"), _dec412 = Listen("click", {
14316
14276
  selector: "button"
14317
14277
  });
14318
14278
  Toggle = class extends (_HTMLElement18 = HTMLElement) {
@@ -14334,7 +14294,7 @@ var init_toggle = __esm({
14334
14294
  "control"
14335
14295
  ],
14336
14296
  [
14337
- _dec411,
14297
+ _dec412,
14338
14298
  2,
14339
14299
  "handleClick"
14340
14300
  ]
@@ -15271,7 +15231,7 @@ function applyDecs2203RFactory20() {
15271
15231
  function _apply_decs_2203_r20(targetClass, memberDecs, classDecs, parentClass) {
15272
15232
  return (_apply_decs_2203_r20 = applyDecs2203RFactory20())(targetClass, memberDecs, classDecs, parentClass);
15273
15233
  }
15274
- var import_lit_html22, _dec60, _initClass20, _HTMLElement20, _dec121, _dec217, _dec315, _dec412, _dec510, _dec68, _dec76, _init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement, _init_bodyElement, _initProto16, _Panel, Panel;
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;
15275
15235
  var init_panel = __esm({
15276
15236
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts"() {
15277
15237
  "use strict";
@@ -15531,14 +15491,14 @@ var init_panel = __esm({
15531
15491
  reflect: true,
15532
15492
  attribute: "max-height",
15533
15493
  defaultValue: null
15534
- }), _dec412 = Query('[part="content"]'), _dec510 = Query('[part="body"]'), _dec68 = Listen("slotchange", {
15494
+ }), _dec413 = Query('[part="content"]'), _dec510 = Query('[part="body"]'), _dec68 = Listen("slotchange", {
15535
15495
  selector: 'slot[name="footer"]'
15536
15496
  }), _dec76 = Listen("slotchange", {
15537
15497
  selector: "slot:not([name])"
15538
15498
  });
15539
15499
  Panel = class extends (_HTMLElement20 = HTMLElement) {
15540
15500
  static {
15541
- ({ e: [_init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement, _init_bodyElement, _initProto16], c: [_Panel, _initClass20] } = _apply_decs_2203_r20(this, [
15501
+ ({ e: [_init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement2, _init_bodyElement, _initProto16], c: [_Panel, _initClass20] } = _apply_decs_2203_r20(this, [
15542
15502
  [
15543
15503
  _dec121,
15544
15504
  1,
@@ -15555,7 +15515,7 @@ var init_panel = __esm({
15555
15515
  "maxHeight"
15556
15516
  ],
15557
15517
  [
15558
- _dec412,
15518
+ _dec413,
15559
15519
  1,
15560
15520
  "contentElement"
15561
15521
  ],
@@ -15875,7 +15835,7 @@ var init_panel = __esm({
15875
15835
  _initClass20();
15876
15836
  }
15877
15837
  constructor(...args) {
15878
- super(...args), this.#tabs = (_initProto16(this), []), this.#isAnimating = false, this.#___private_activeTab_1 = _init_activeTab(this, 0), this.#___private_headline_2 = _init_headline(this, null), this.#___private_maxHeight_3 = _init_maxHeight2(this, null), this.#___private_contentElement_4 = _init_contentElement(this), this.#___private_bodyElement_5 = _init_bodyElement(this);
15838
+ super(...args), this.#tabs = (_initProto16(this), []), this.#isAnimating = false, this.#___private_activeTab_1 = _init_activeTab(this, 0), this.#___private_headline_2 = _init_headline(this, null), this.#___private_maxHeight_3 = _init_maxHeight2(this, null), this.#___private_contentElement_4 = _init_contentElement2(this), this.#___private_bodyElement_5 = _init_bodyElement(this);
15879
15839
  }
15880
15840
  };
15881
15841
  }
@@ -16258,7 +16218,7 @@ function applyDecs2203RFactory21() {
16258
16218
  function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
16259
16219
  return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
16260
16220
  }
16261
- var import_lit_html23, _dec61, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec413, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16221
+ var import_lit_html23, _dec61, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
16262
16222
  var init_state = __esm({
16263
16223
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts"() {
16264
16224
  "use strict";
@@ -16308,7 +16268,7 @@ var init_state = __esm({
16308
16268
  reflect: true
16309
16269
  }), _dec218 = Query("slot"), _dec316 = Listen("input", {
16310
16270
  target: (host) => host
16311
- }), _dec413 = Listen("change", {
16271
+ }), _dec414 = Listen("change", {
16312
16272
  target: (host) => host
16313
16273
  }), _dec511 = Listen(CONTROL_CHANGE_EVENT, {
16314
16274
  target: (host) => host
@@ -16332,7 +16292,7 @@ var init_state = __esm({
16332
16292
  "handleInternalInput"
16333
16293
  ],
16334
16294
  [
16335
- _dec413,
16295
+ _dec414,
16336
16296
  2,
16337
16297
  "handleInternalChange"
16338
16298
  ],
@@ -16930,7 +16890,7 @@ function applyDecs2203RFactory22() {
16930
16890
  function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
16931
16891
  return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
16932
16892
  }
16933
- var import_lit_html24, _dec69, _initClass22, _HTMLElement22, _dec124, _dec219, _dec317, _dec414, _dec512, _dec610, _init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement2, _initProto18, _Tooltip, Tooltip;
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;
16934
16894
  var init_tooltip = __esm({
16935
16895
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts"() {
16936
16896
  "use strict";
@@ -16983,7 +16943,7 @@ var init_tooltip = __esm({
16983
16943
  }), _dec317 = Prop({
16984
16944
  reflect: true,
16985
16945
  defaultValue: "top-center"
16986
- }), _dec414 = Query('[slot="trigger"]'), _dec512 = Query("[data-tooltip-content]"), _dec610 = OutsideClick({
16946
+ }), _dec415 = Query('[slot="trigger"]'), _dec512 = Query("[data-tooltip-content]"), _dec610 = OutsideClick({
16987
16947
  content: (host) => host.contentElement,
16988
16948
  triggers: (host) => [
16989
16949
  host.triggerElement
@@ -16992,7 +16952,7 @@ var init_tooltip = __esm({
16992
16952
  });
16993
16953
  Tooltip = class extends (_HTMLElement22 = HTMLElement) {
16994
16954
  static {
16995
- ({ e: [_init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement2, _initProto18], c: [_Tooltip, _initClass22] } = _apply_decs_2203_r22(this, [
16955
+ ({ e: [_init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement3, _initProto18], c: [_Tooltip, _initClass22] } = _apply_decs_2203_r22(this, [
16996
16956
  [
16997
16957
  _dec124,
16998
16958
  1,
@@ -17009,7 +16969,7 @@ var init_tooltip = __esm({
17009
16969
  "placement"
17010
16970
  ],
17011
16971
  [
17012
- _dec414,
16972
+ _dec415,
17013
16973
  1,
17014
16974
  "triggerElement"
17015
16975
  ],
@@ -17175,7 +17135,7 @@ var init_tooltip = __esm({
17175
17135
  _initClass22();
17176
17136
  }
17177
17137
  constructor(...args) {
17178
- super(...args), this.#hoverTimer = (_initProto18(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open3(this, false), this.#___private_delay_2 = _init_delay(this, 300), this.#___private_placement_3 = _init_placement4(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement(this), this.#___private_contentElement_5 = _init_contentElement2(this), this.#handleEnter = () => {
17138
+ super(...args), this.#hoverTimer = (_initProto18(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open3(this, false), this.#___private_delay_2 = _init_delay(this, 300), this.#___private_placement_3 = _init_placement4(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement(this), this.#___private_contentElement_5 = _init_contentElement3(this), this.#handleEnter = () => {
17179
17139
  this.#startTimer(() => {
17180
17140
  this.open = true;
17181
17141
  });
@@ -17571,7 +17531,7 @@ function applyDecs2203RFactory23() {
17571
17531
  function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
17572
17532
  return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
17573
17533
  }
17574
- var import_lit_html25, _dec70, _initClass23, _HTMLElement23, _dec125, _dec220, _dec318, _dec415, _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;
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;
17575
17535
  var init_logo = __esm({
17576
17536
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts"() {
17577
17537
  "use strict";
@@ -17969,7 +17929,7 @@ var init_logo = __esm({
17969
17929
  type: Number,
17970
17930
  attribute: "size",
17971
17931
  defaultValue: 36
17972
- }), _dec415 = Prop({
17932
+ }), _dec416 = Prop({
17973
17933
  type: "string",
17974
17934
  attribute: "aria-label",
17975
17935
  defaultValue: null
@@ -17993,7 +17953,7 @@ var init_logo = __esm({
17993
17953
  "size"
17994
17954
  ],
17995
17955
  [
17996
- _dec415,
17956
+ _dec416,
17997
17957
  1,
17998
17958
  "ariaLabel"
17999
17959
  ]
@@ -30427,7 +30387,7 @@ function applyDecs2203RFactory45() {
30427
30387
  function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
30428
30388
  return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
30429
30389
  }
30430
- var import_lit_html48, _dec108, _initClass45, _HTMLElement45, _dec130, _dec223, _dec320, _dec416, _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;
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;
30431
30391
  var init_canvas = __esm({
30432
30392
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts"() {
30433
30393
  "use strict";
@@ -30477,7 +30437,7 @@ var init_canvas = __esm({
30477
30437
  type: Boolean,
30478
30438
  reflect: true,
30479
30439
  defaultValue: true
30480
- }), _dec416 = Prop({
30440
+ }), _dec417 = Prop({
30481
30441
  type: Boolean,
30482
30442
  reflect: true,
30483
30443
  defaultValue: false
@@ -30517,7 +30477,7 @@ var init_canvas = __esm({
30517
30477
  "showGrid"
30518
30478
  ],
30519
30479
  [
30520
- _dec416,
30480
+ _dec417,
30521
30481
  1,
30522
30482
  "snapToGrid"
30523
30483
  ],
@@ -33717,7 +33677,7 @@ function applyDecs2203RFactory49() {
33717
33677
  function _apply_decs_2203_r49(targetClass, memberDecs, classDecs, parentClass) {
33718
33678
  return (_apply_decs_2203_r49 = applyDecs2203RFactory49())(targetClass, memberDecs, classDecs, parentClass);
33719
33679
  }
33720
- var import_lit_html52, _dec135, _initClass49, _HTMLElement49, _dec136, _dec225, _dec322, _dec417, _dec514, _dec612, _init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26, _Button2, Button2;
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;
33721
33681
  var init_button2 = __esm({
33722
33682
  "src/elements/button/index.ts"() {
33723
33683
  "use strict";
@@ -33900,7 +33860,7 @@ var init_button2 = __esm({
33900
33860
  }), _dec322 = Prop({
33901
33861
  type: Boolean,
33902
33862
  reflect: true
33903
- }), _dec417 = Prop({
33863
+ }), _dec418 = Prop({
33904
33864
  type: String,
33905
33865
  reflect: true,
33906
33866
  defaultValue: "button"
@@ -33935,7 +33895,7 @@ var init_button2 = __esm({
33935
33895
  "fullWidth"
33936
33896
  ],
33937
33897
  [
33938
- _dec417,
33898
+ _dec418,
33939
33899
  1,
33940
33900
  "type"
33941
33901
  ],
@@ -34392,7 +34352,7 @@ function applyDecs2203RFactory50() {
34392
34352
  function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
34393
34353
  return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
34394
34354
  }
34395
- var import_lit_html53, _dec137, _initClass50, _HTMLElement50, _dec138, _dec226, _dec323, _dec418, _dec515, _dec613, _init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27, _CurveControls, CurveControls;
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;
34396
34356
  var init_controls = __esm({
34397
34357
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/controls.ts"() {
34398
34358
  "use strict";
@@ -34452,7 +34412,7 @@ var init_controls = __esm({
34452
34412
  type: Boolean,
34453
34413
  reflect: true,
34454
34414
  defaultValue: true
34455
- }), _dec418 = Prop({
34415
+ }), _dec419 = Prop({
34456
34416
  type: Boolean,
34457
34417
  reflect: true,
34458
34418
  defaultValue: false
@@ -34487,7 +34447,7 @@ var init_controls = __esm({
34487
34447
  "showGrid"
34488
34448
  ],
34489
34449
  [
34490
- _dec418,
34450
+ _dec419,
34491
34451
  1,
34492
34452
  "snapToGrid"
34493
34453
  ],
@@ -36621,7 +36581,7 @@ function applyDecs2203RFactory52() {
36621
36581
  function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
36622
36582
  return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
36623
36583
  }
36624
- var import_lit_html55, _dec141, _initClass52, _HTMLElement52, _dec143, _dec228, _dec324, _dec419, _dec516, _dec614, _init_easingType4, _init_points4, _init_name7, _init_variant3, _init_simplify2, _init_round2, _initProto29, _CurveOutput, CurveOutput;
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;
36625
36585
  var init_output = __esm({
36626
36586
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/output.ts"() {
36627
36587
  "use strict";
@@ -36657,7 +36617,7 @@ var init_output = __esm({
36657
36617
  }), _dec324 = Prop({
36658
36618
  reflect: true,
36659
36619
  defaultValue: "ease-custom"
36660
- }), _dec419 = Prop({
36620
+ }), _dec420 = Prop({
36661
36621
  reflect: true,
36662
36622
  defaultValue: "animation"
36663
36623
  }), _dec516 = Prop({
@@ -36688,7 +36648,7 @@ var init_output = __esm({
36688
36648
  "name"
36689
36649
  ],
36690
36650
  [
36691
- _dec419,
36651
+ _dec420,
36692
36652
  1,
36693
36653
  "variant"
36694
36654
  ],
@@ -37237,7 +37197,7 @@ function applyDecs2203RFactory53() {
37237
37197
  function _apply_decs_2203_r53(targetClass, memberDecs, classDecs, parentClass) {
37238
37198
  return (_apply_decs_2203_r53 = applyDecs2203RFactory53())(targetClass, memberDecs, classDecs, parentClass);
37239
37199
  }
37240
- var import_lit_html56, _dec144, _initClass53, _HTMLElement53, _dec145, _dec229, _dec325, _dec420, _dec517, _dec615, _init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement3, _initProto30, _Tooltip2, Tooltip2;
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;
37241
37201
  var init_tooltip2 = __esm({
37242
37202
  "src/elements/tooltip/index.ts"() {
37243
37203
  "use strict";
@@ -37290,7 +37250,7 @@ var init_tooltip2 = __esm({
37290
37250
  }), _dec325 = Prop({
37291
37251
  reflect: true,
37292
37252
  defaultValue: "top-center"
37293
- }), _dec420 = Query('[slot="trigger"]'), _dec517 = Query("[data-tooltip-content]"), _dec615 = OutsideClick({
37253
+ }), _dec421 = Query('[slot="trigger"]'), _dec517 = Query("[data-tooltip-content]"), _dec615 = OutsideClick({
37294
37254
  content: (host) => host.contentElement,
37295
37255
  triggers: (host) => [
37296
37256
  host.triggerElement
@@ -37299,7 +37259,7 @@ var init_tooltip2 = __esm({
37299
37259
  });
37300
37260
  Tooltip2 = class extends (_HTMLElement53 = HTMLElement) {
37301
37261
  static {
37302
- ({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement3, _initProto30], c: [_Tooltip2, _initClass53] } = _apply_decs_2203_r53(this, [
37262
+ ({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30], c: [_Tooltip2, _initClass53] } = _apply_decs_2203_r53(this, [
37303
37263
  [
37304
37264
  _dec145,
37305
37265
  1,
@@ -37316,7 +37276,7 @@ var init_tooltip2 = __esm({
37316
37276
  "placement"
37317
37277
  ],
37318
37278
  [
37319
- _dec420,
37279
+ _dec421,
37320
37280
  1,
37321
37281
  "triggerElement"
37322
37282
  ],
@@ -37482,7 +37442,7 @@ var init_tooltip2 = __esm({
37482
37442
  _initClass53();
37483
37443
  }
37484
37444
  constructor(...args) {
37485
- super(...args), this.#hoverTimer = (_initProto30(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open4(this, false), this.#___private_delay_2 = _init_delay2(this, 300), this.#___private_placement_3 = _init_placement5(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement2(this), this.#___private_contentElement_5 = _init_contentElement3(this), this.#handleEnter = () => {
37445
+ super(...args), this.#hoverTimer = (_initProto30(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open4(this, false), this.#___private_delay_2 = _init_delay2(this, 300), this.#___private_placement_3 = _init_placement5(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement2(this), this.#___private_contentElement_5 = _init_contentElement4(this), this.#handleEnter = () => {
37486
37446
  this.#startTimer(() => {
37487
37447
  this.open = true;
37488
37448
  });
@@ -37874,7 +37834,7 @@ function applyDecs2203RFactory54() {
37874
37834
  function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
37875
37835
  return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
37876
37836
  }
37877
- var import_lit_html57, _dec146, _initClass54, _HTMLElement54, _dec147, _dec230, _dec326, _dec421, _dec518, _dec616, _dec711, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31, _CurveToolbar, CurveToolbar;
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;
37878
37838
  var init_toolbar = __esm({
37879
37839
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/toolbar.ts"() {
37880
37840
  "use strict";
@@ -38025,7 +37985,7 @@ var init_toolbar = __esm({
38025
37985
  type: Boolean,
38026
37986
  reflect: true,
38027
37987
  defaultValue: true
38028
- }), _dec421 = Prop({
37988
+ }), _dec422 = Prop({
38029
37989
  type: Boolean,
38030
37990
  reflect: true,
38031
37991
  defaultValue: false
@@ -38061,7 +38021,7 @@ var init_toolbar = __esm({
38061
38021
  "showGrid"
38062
38022
  ],
38063
38023
  [
38064
- _dec421,
38024
+ _dec422,
38065
38025
  1,
38066
38026
  "snapToGrid"
38067
38027
  ],
@@ -38729,7 +38689,7 @@ function applyDecs2203RFactory55() {
38729
38689
  function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
38730
38690
  return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
38731
38691
  }
38732
- var import_lit_html58, _dec148, _initClass55, _HTMLElement55, _dec149, _dec231, _dec327, _dec422, _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;
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;
38733
38693
  var init_curve = __esm({
38734
38694
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/index.ts"() {
38735
38695
  "use strict";
@@ -38835,7 +38795,7 @@ var init_curve = __esm({
38835
38795
  }
38836
38796
  };
38837
38797
  }
38838
- }), _dec422 = Prop({
38798
+ }), _dec423 = Prop({
38839
38799
  type: Boolean,
38840
38800
  reflect: true,
38841
38801
  defaultValue: true
@@ -38898,7 +38858,7 @@ var init_curve = __esm({
38898
38858
  "points"
38899
38859
  ],
38900
38860
  [
38901
- _dec422,
38861
+ _dec423,
38902
38862
  1,
38903
38863
  "showGrid"
38904
38864
  ],