@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/index.cjs CHANGED
@@ -9757,14 +9757,15 @@ function applyDecs2203RFactory10() {
9757
9757
  function _apply_decs_2203_r10(targetClass, memberDecs, classDecs, parentClass) {
9758
9758
  return (_apply_decs_2203_r10 = applyDecs2203RFactory10())(targetClass, memberDecs, classDecs, parentClass);
9759
9759
  }
9760
- var import_lit_html12, _dec21, _initClass10, _HTMLElement10, _dec112, _dec28, _dec37, _init_placement, _init_offset, _init_open, _initProto8, nextAnchorName, _Popover, Popover, popover_default;
9760
+ var import_lit_html12, _dec21, _initClass10, _HTMLElement10, _dec112, _dec28, _dec37, _dec45, _init_contentElement, _init_placement, _init_offset, _init_open, _initProto8, nextAnchorName, _Popover, Popover, popover_default;
9761
9761
  var init_popover = __esm({
9762
9762
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/popover/index.ts"() {
9763
9763
  "use strict";
9764
9764
  import_lit_html12 = require("lit-html");
9765
9765
  init_Component();
9766
9766
  init_Prop();
9767
- nextAnchorName = () => `--ease-popover-anchor-${crypto.randomUUID()}`;
9767
+ init_Query();
9768
+ nextAnchorName = () => `--ease-popover-anchor-${crypto.randomUUID().slice(0, 8)}`;
9768
9769
  _dec21 = Component({
9769
9770
  tag: "ease-popover",
9770
9771
  autoSlot: false,
@@ -9773,7 +9774,6 @@ var init_popover = __esm({
9773
9774
  :host {
9774
9775
  display: contents;
9775
9776
  --ease-popover-offset: 8px;
9776
- --ease-popover-anchor-name: --ease-popover-anchor;
9777
9777
  --ease-popover-transform-origin: center center;
9778
9778
  --ease-popover-duration: 200ms;
9779
9779
  --ease-popover-content-min-width: auto;
@@ -9786,140 +9786,110 @@ var init_popover = __esm({
9786
9786
  }
9787
9787
 
9788
9788
  [part="content"] {
9789
- position-anchor: var(--ease-popover-anchor-name);
9790
9789
  position: fixed;
9790
+ position-anchor: var(--ease-popover-anchor-name);
9791
9791
  margin: 0;
9792
- transform-origin: var(--ease-popover-transform-origin);
9792
+ padding: 0;
9793
+ border: none;
9794
+ background: transparent;
9795
+ overflow: visible;
9793
9796
  width: var(--ease-popover-content-width);
9794
9797
  min-width: var(--ease-popover-content-min-width);
9795
9798
  max-width: var(--ease-popover-content-max-width);
9796
9799
  box-sizing: border-box;
9797
- overscroll-behavior: contain;
9798
- z-index: 100;
9799
- display: none;
9800
9800
  }
9801
9801
 
9802
- :host([open]) [part="content"] {
9802
+ [part="content"]:popover-open {
9803
9803
  display: block;
9804
9804
  }
9805
9805
 
9806
9806
  :host([placement="top-start"]) [part="content"] {
9807
- position-area: top right;
9808
- top: anchor(bottom);
9809
- left: anchor(left);
9810
- translate: 0 calc(var(--ease-popover-offset) * -1);
9807
+ position-area: top span-right;
9808
+ margin-bottom: var(--ease-popover-offset);
9811
9809
  }
9812
-
9813
9810
  :host([placement="top-center"]) [part="content"] {
9814
9811
  position-area: top center;
9815
- top: anchor(top);
9816
- left: anchor(center);
9817
- translate: 0 calc(var(--ease-popover-offset) * -1);
9812
+ margin-bottom: var(--ease-popover-offset);
9818
9813
  }
9819
-
9820
9814
  :host([placement="top-end"]) [part="content"] {
9821
- position-area: top right;
9822
- top: anchor(bottom);
9823
- right: anchor(right);
9824
- translate: 0 calc(var(--ease-popover-offset) * -1);
9815
+ position-area: top span-left;
9816
+ margin-bottom: var(--ease-popover-offset);
9825
9817
  }
9826
-
9827
9818
  :host([placement="bottom-start"]) [part="content"] {
9828
- position-area: bottom right;
9829
- top: anchor(bottom);
9830
- left: anchor(left);
9831
- translate: 0 var(--ease-popover-offset);
9819
+ position-area: bottom span-right;
9820
+ margin-top: var(--ease-popover-offset);
9832
9821
  }
9833
-
9834
9822
  :host([placement="bottom-center"]) [part="content"] {
9835
9823
  position-area: bottom center;
9836
- top: anchor(bottom);
9837
- left: anchor(left);
9838
- translate: 0 var(--ease-popover-offset);
9824
+ margin-top: var(--ease-popover-offset);
9839
9825
  }
9840
-
9841
9826
  :host([placement="bottom-end"]) [part="content"] {
9842
- position-area: bottom left;
9843
- top: anchor(bottom);
9844
- right: anchor(right);
9845
- translate: 0 var(--ease-popover-offset);
9827
+ position-area: bottom span-left;
9828
+ margin-top: var(--ease-popover-offset);
9846
9829
  }
9847
-
9848
9830
  :host([placement="left-start"]) [part="content"] {
9849
- position-area: left bottom;
9850
- top: anchor(top);
9851
- left: anchor(left);
9852
- translate: calc(var(--ease-popover-offset) * -1) 0;
9831
+ position-area: left span-bottom;
9832
+ margin-right: var(--ease-popover-offset);
9853
9833
  }
9854
-
9855
9834
  :host([placement="left-center"]) [part="content"] {
9856
9835
  position-area: left center;
9857
- top: anchor(top);
9858
- left: anchor(left);
9859
- translate: calc(var(--ease-popover-offset) * -1) 0;
9836
+ margin-right: var(--ease-popover-offset);
9860
9837
  }
9861
-
9862
9838
  :host([placement="left-end"]) [part="content"] {
9863
- position-area: left top;
9864
- top: anchor(top);
9865
- left: anchor(left);
9866
- translate: calc(var(--ease-popover-offset) * -1) 0;
9839
+ position-area: left span-top;
9840
+ margin-right: var(--ease-popover-offset);
9867
9841
  }
9868
-
9869
9842
  :host([placement="right-start"]) [part="content"] {
9870
- position-area: right end;
9871
- top: anchor(top);
9872
- left: anchor(right);
9873
- translate: var(--ease-popover-offset) 0;
9843
+ position-area: right span-bottom;
9844
+ margin-left: var(--ease-popover-offset);
9874
9845
  }
9875
-
9876
9846
  :host([placement="right-center"]) [part="content"] {
9877
9847
  position-area: right center;
9878
- top: anchor(top);
9879
- left: anchor(right);
9880
- translate: var(--ease-popover-offset) 0;
9848
+ margin-left: var(--ease-popover-offset);
9881
9849
  }
9882
-
9883
9850
  :host([placement="right-end"]) [part="content"] {
9884
- position-area: right start;
9885
- top: anchor(top);
9886
- left: anchor(right);
9887
- translate: var(--ease-popover-offset) 0;
9851
+ position-area: right span-top;
9852
+ margin-left: var(--ease-popover-offset);
9888
9853
  }
9889
9854
  `
9890
- }), _dec112 = Prop({
9855
+ }), _dec112 = Query('[part="content"]'), _dec28 = Prop({
9891
9856
  reflect: true,
9892
- defaultValue: "bottom-start",
9893
- onChange() {
9894
- this.handlePlacementChange();
9895
- }
9896
- }), _dec28 = Prop({
9857
+ defaultValue: "bottom-start"
9858
+ }), _dec37 = Prop({
9897
9859
  type: Number,
9898
9860
  reflect: true,
9899
9861
  defaultValue: 8,
9900
9862
  onChange() {
9901
9863
  this.handleOffsetChange();
9902
9864
  }
9903
- }), _dec37 = Prop({
9865
+ }), _dec45 = Prop({
9904
9866
  type: Boolean,
9905
- reflect: true
9867
+ reflect: true,
9868
+ onChange() {
9869
+ this.handleOpenChange();
9870
+ }
9906
9871
  });
9907
9872
  Popover = class extends (_HTMLElement10 = HTMLElement) {
9908
9873
  static {
9909
- ({ e: [_init_placement, _init_offset, _init_open, _initProto8], c: [_Popover, _initClass10] } = _apply_decs_2203_r10(this, [
9874
+ ({ e: [_init_contentElement, _init_placement, _init_offset, _init_open, _initProto8], c: [_Popover, _initClass10] } = _apply_decs_2203_r10(this, [
9910
9875
  [
9911
9876
  _dec112,
9912
9877
  1,
9913
- "placement"
9878
+ "contentElement"
9914
9879
  ],
9915
9880
  [
9916
9881
  _dec28,
9917
9882
  1,
9918
- "offset"
9883
+ "placement"
9919
9884
  ],
9920
9885
  [
9921
9886
  _dec37,
9922
9887
  1,
9888
+ "offset"
9889
+ ],
9890
+ [
9891
+ _dec45,
9892
+ 1,
9923
9893
  "open"
9924
9894
  ]
9925
9895
  ], [
@@ -9927,85 +9897,75 @@ var init_popover = __esm({
9927
9897
  ], _HTMLElement10));
9928
9898
  }
9929
9899
  #anchorName;
9930
- #contentElement;
9931
- #initialized;
9900
+ #___private_contentElement_1;
9932
9901
  get contentElement() {
9933
- return this.#contentElement;
9902
+ return this.#___private_contentElement_1;
9903
+ }
9904
+ set contentElement(_v) {
9905
+ this.#___private_contentElement_1 = _v;
9934
9906
  }
9935
- #___private_placement_1;
9907
+ #___private_placement_2;
9936
9908
  get placement() {
9937
- return this.#___private_placement_1;
9909
+ return this.#___private_placement_2;
9938
9910
  }
9939
9911
  set placement(_v) {
9940
- this.#___private_placement_1 = _v;
9912
+ this.#___private_placement_2 = _v;
9941
9913
  }
9942
- #___private_offset_2;
9914
+ #___private_offset_3;
9943
9915
  get offset() {
9944
- return this.#___private_offset_2;
9916
+ return this.#___private_offset_3;
9945
9917
  }
9946
9918
  set offset(_v) {
9947
- this.#___private_offset_2 = _v;
9919
+ this.#___private_offset_3 = _v;
9948
9920
  }
9949
- #___private_open_3;
9921
+ #___private_open_4;
9950
9922
  get open() {
9951
- return this.#___private_open_3;
9923
+ return this.#___private_open_4;
9952
9924
  }
9953
9925
  set open(_v) {
9954
- this.#___private_open_3 = _v;
9926
+ this.#___private_open_4 = _v;
9927
+ }
9928
+ handleOffsetChange() {
9929
+ const offset = Number.isFinite(this.offset) ? this.offset : 8;
9930
+ this.style.setProperty("--ease-popover-offset", `${offset}px`);
9931
+ }
9932
+ handleOpenChange() {
9933
+ const content = this.contentElement;
9934
+ if (!content) {
9935
+ return;
9936
+ }
9937
+ if (this.open) {
9938
+ content.showPopover();
9939
+ } else {
9940
+ content.hidePopover();
9941
+ }
9955
9942
  }
9956
9943
  connectedCallback() {
9957
- this.#syncAnchorName();
9958
- this.#syncOffset();
9944
+ this.style.setProperty("--ease-popover-anchor-name", this.#anchorName);
9945
+ this.handleOffsetChange();
9959
9946
  }
9960
- disconnectedCallback() {
9961
- this.#contentElement = null;
9962
- this.#initialized = false;
9947
+ afterRender() {
9948
+ const content = this.contentElement;
9949
+ if (content && this.open) {
9950
+ try {
9951
+ content.showPopover();
9952
+ } catch (_e) {
9953
+ }
9954
+ }
9963
9955
  }
9964
9956
  render() {
9965
9957
  return import_lit_html12.html`
9966
- <slot slot="trigger" name="trigger"></slot>
9967
- <div
9968
- part="content"
9969
- data-popover-content
9970
- role="region"
9971
- data-placement=${this.placement}
9972
- >
9958
+ <slot name="trigger"></slot>
9959
+ <div part="content" popover="manual" role="region">
9973
9960
  <slot></slot>
9974
9961
  </div>
9975
9962
  `;
9976
9963
  }
9977
- handlePlacementChange() {
9978
- if (!this.#initialized) {
9979
- this.requestRender();
9980
- return;
9981
- }
9982
- this.#syncPlacement();
9983
- }
9984
- handleOffsetChange() {
9985
- if (!this.#initialized) {
9986
- this.requestRender();
9987
- return;
9988
- }
9989
- this.#syncOffset();
9990
- }
9991
- #syncPlacement() {
9992
- this.dataset.placement = this.placement;
9993
- if (this.#contentElement) {
9994
- this.#contentElement.dataset.placement = this.placement;
9995
- }
9996
- }
9997
- #syncOffset() {
9998
- const offset = Number.isFinite(this.offset) ? this.offset : 0;
9999
- this.style.setProperty("--ease-popover-offset", `${offset}px`);
10000
- }
10001
- #syncAnchorName() {
10002
- this.style.setProperty("--ease-popover-anchor-name", this.#anchorName);
10003
- }
10004
9964
  static {
10005
9965
  _initClass10();
10006
9966
  }
10007
9967
  constructor(...args) {
10008
- super(...args), this.#anchorName = (_initProto8(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);
9968
+ super(...args), this.#anchorName = (_initProto8(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);
10009
9969
  }
10010
9970
  };
10011
9971
  popover_default = {
@@ -10620,7 +10580,7 @@ function applyDecs2203RFactory11() {
10620
10580
  function _apply_decs_2203_r11(targetClass, memberDecs, classDecs, parentClass) {
10621
10581
  return (_apply_decs_2203_r11 = applyDecs2203RFactory11())(targetClass, memberDecs, classDecs, parentClass);
10622
10582
  }
10623
- var import_lit_html13, _dec29, _initClass11, _HTMLElement11, _dec113, _dec210, _dec38, _dec45, _dec55, _dec65, _init_open2, _init_delay, _init_placement2, _init_triggerElement, _init_contentElement, _initProto9, _Tooltip, Tooltip;
10583
+ var import_lit_html13, _dec29, _initClass11, _HTMLElement11, _dec113, _dec210, _dec38, _dec46, _dec55, _dec65, _init_open2, _init_delay, _init_placement2, _init_triggerElement, _init_contentElement2, _initProto9, _Tooltip, Tooltip;
10624
10584
  var init_tooltip = __esm({
10625
10585
  "src/elements/tooltip/index.ts"() {
10626
10586
  "use strict";
@@ -10673,7 +10633,7 @@ var init_tooltip = __esm({
10673
10633
  }), _dec38 = Prop({
10674
10634
  reflect: true,
10675
10635
  defaultValue: "top-center"
10676
- }), _dec45 = Query('[slot="trigger"]'), _dec55 = Query("[data-tooltip-content]"), _dec65 = OutsideClick({
10636
+ }), _dec46 = Query('[slot="trigger"]'), _dec55 = Query("[data-tooltip-content]"), _dec65 = OutsideClick({
10677
10637
  content: (host) => host.contentElement,
10678
10638
  triggers: (host) => [
10679
10639
  host.triggerElement
@@ -10682,7 +10642,7 @@ var init_tooltip = __esm({
10682
10642
  });
10683
10643
  Tooltip = class extends (_HTMLElement11 = HTMLElement) {
10684
10644
  static {
10685
- ({ e: [_init_open2, _init_delay, _init_placement2, _init_triggerElement, _init_contentElement, _initProto9], c: [_Tooltip, _initClass11] } = _apply_decs_2203_r11(this, [
10645
+ ({ e: [_init_open2, _init_delay, _init_placement2, _init_triggerElement, _init_contentElement2, _initProto9], c: [_Tooltip, _initClass11] } = _apply_decs_2203_r11(this, [
10686
10646
  [
10687
10647
  _dec113,
10688
10648
  1,
@@ -10699,7 +10659,7 @@ var init_tooltip = __esm({
10699
10659
  "placement"
10700
10660
  ],
10701
10661
  [
10702
- _dec45,
10662
+ _dec46,
10703
10663
  1,
10704
10664
  "triggerElement"
10705
10665
  ],
@@ -10865,7 +10825,7 @@ var init_tooltip = __esm({
10865
10825
  _initClass11();
10866
10826
  }
10867
10827
  constructor(...args) {
10868
- super(...args), this.#hoverTimer = (_initProto9(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open2(this, false), this.#___private_delay_2 = _init_delay(this, 300), this.#___private_placement_3 = _init_placement2(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement(this), this.#___private_contentElement_5 = _init_contentElement(this), this.#handleEnter = () => {
10828
+ super(...args), this.#hoverTimer = (_initProto9(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open2(this, false), this.#___private_delay_2 = _init_delay(this, 300), this.#___private_placement_3 = _init_placement2(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement(this), this.#___private_contentElement_5 = _init_contentElement2(this), this.#handleEnter = () => {
10869
10829
  this.#startTimer(() => {
10870
10830
  this.open = true;
10871
10831
  });
@@ -11257,7 +11217,7 @@ function applyDecs2203RFactory12() {
11257
11217
  function _apply_decs_2203_r12(targetClass, memberDecs, classDecs, parentClass) {
11258
11218
  return (_apply_decs_2203_r12 = applyDecs2203RFactory12())(targetClass, memberDecs, classDecs, parentClass);
11259
11219
  }
11260
- var import_lit_html14, _dec30, _initClass12, _HTMLElement12, _dec114, _dec211, _dec39, _dec46, _dec56, _dec66, _dec72, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto10, _CurveToolbar, CurveToolbar;
11220
+ var import_lit_html14, _dec30, _initClass12, _HTMLElement12, _dec114, _dec211, _dec39, _dec47, _dec56, _dec66, _dec72, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto10, _CurveToolbar, CurveToolbar;
11261
11221
  var init_toolbar = __esm({
11262
11222
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/toolbar.ts"() {
11263
11223
  "use strict";
@@ -11408,7 +11368,7 @@ var init_toolbar = __esm({
11408
11368
  type: Boolean,
11409
11369
  reflect: true,
11410
11370
  defaultValue: true
11411
- }), _dec46 = Prop({
11371
+ }), _dec47 = Prop({
11412
11372
  type: Boolean,
11413
11373
  reflect: true,
11414
11374
  defaultValue: false
@@ -11444,7 +11404,7 @@ var init_toolbar = __esm({
11444
11404
  "showGrid"
11445
11405
  ],
11446
11406
  [
11447
- _dec46,
11407
+ _dec47,
11448
11408
  1,
11449
11409
  "snapToGrid"
11450
11410
  ],
@@ -12112,7 +12072,7 @@ function applyDecs2203RFactory13() {
12112
12072
  function _apply_decs_2203_r13(targetClass, memberDecs, classDecs, parentClass) {
12113
12073
  return (_apply_decs_2203_r13 = applyDecs2203RFactory13())(targetClass, memberDecs, classDecs, parentClass);
12114
12074
  }
12115
- var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec115, _dec212, _dec310, _dec47, _dec57, _dec67, _dec73, _dec82, _dec92, _dec102, _dec116, _dec122, _dec132, _dec142, _dec152, _dec162, _dec172, _dec182, _init_name2, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto11, _Curve, Curve;
12075
+ var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec115, _dec212, _dec310, _dec48, _dec57, _dec67, _dec73, _dec82, _dec92, _dec102, _dec116, _dec122, _dec132, _dec142, _dec152, _dec162, _dec172, _dec182, _init_name2, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto11, _Curve, Curve;
12116
12076
  var init_curve = __esm({
12117
12077
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/index.ts"() {
12118
12078
  "use strict";
@@ -12218,7 +12178,7 @@ var init_curve = __esm({
12218
12178
  }
12219
12179
  };
12220
12180
  }
12221
- }), _dec47 = Prop({
12181
+ }), _dec48 = Prop({
12222
12182
  type: Boolean,
12223
12183
  reflect: true,
12224
12184
  defaultValue: true
@@ -12281,7 +12241,7 @@ var init_curve = __esm({
12281
12241
  "points"
12282
12242
  ],
12283
12243
  [
12284
- _dec47,
12244
+ _dec48,
12285
12245
  1,
12286
12246
  "showGrid"
12287
12247
  ],
@@ -13026,7 +12986,7 @@ function applyDecs2203RFactory14() {
13026
12986
  function _apply_decs_2203_r14(targetClass, memberDecs, classDecs, parentClass) {
13027
12987
  return (_apply_decs_2203_r14 = applyDecs2203RFactory14())(targetClass, memberDecs, classDecs, parentClass);
13028
12988
  }
13029
- var import_lit_html17, _dec40, _initClass14, _HTMLElement14, _dec117, _dec213, _dec311, _dec48, _dec58, _dec68, _init_disabled2, _init_pill2, _init_fullWidth2, _init_type2, _init_block2, _init_variant3, _initProto12, _Button2, Button2;
12989
+ var import_lit_html17, _dec40, _initClass14, _HTMLElement14, _dec117, _dec213, _dec311, _dec49, _dec58, _dec68, _init_disabled2, _init_pill2, _init_fullWidth2, _init_type2, _init_block2, _init_variant3, _initProto12, _Button2, Button2;
13030
12990
  var init_button2 = __esm({
13031
12991
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/button/index.ts"() {
13032
12992
  "use strict";
@@ -13209,7 +13169,7 @@ var init_button2 = __esm({
13209
13169
  }), _dec311 = Prop({
13210
13170
  type: Boolean,
13211
13171
  reflect: true
13212
- }), _dec48 = Prop({
13172
+ }), _dec49 = Prop({
13213
13173
  type: String,
13214
13174
  reflect: true,
13215
13175
  defaultValue: "button"
@@ -13244,7 +13204,7 @@ var init_button2 = __esm({
13244
13204
  "fullWidth"
13245
13205
  ],
13246
13206
  [
13247
- _dec48,
13207
+ _dec49,
13248
13208
  1,
13249
13209
  "type"
13250
13210
  ],
@@ -13753,7 +13713,7 @@ function applyDecs2203RFactory15() {
13753
13713
  function _apply_decs_2203_r15(targetClass, memberDecs, classDecs, parentClass) {
13754
13714
  return (_apply_decs_2203_r15 = applyDecs2203RFactory15())(targetClass, memberDecs, classDecs, parentClass);
13755
13715
  }
13756
- var import_lit_html18, _dec41, _initClass15, _HTMLElement15, _dec118, _dec214, _dec312, _dec49, _dec59, _dec69, _init_checked, _init_name3, _init_value, _init_disabled3, _init_control, _initProto13, _Checkbox, Checkbox;
13716
+ var import_lit_html18, _dec41, _initClass15, _HTMLElement15, _dec118, _dec214, _dec312, _dec410, _dec59, _dec69, _init_checked, _init_name3, _init_value, _init_disabled3, _init_control, _initProto13, _Checkbox, Checkbox;
13757
13717
  var init_checkbox = __esm({
13758
13718
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/checkbox/index.ts"() {
13759
13719
  "use strict";
@@ -14015,7 +13975,7 @@ var init_checkbox = __esm({
14015
13975
  reflect: true
14016
13976
  }), _dec312 = Prop({
14017
13977
  reflect: true
14018
- }), _dec49 = Prop({
13978
+ }), _dec410 = Prop({
14019
13979
  type: Boolean,
14020
13980
  reflect: true
14021
13981
  }), _dec59 = Query("button"), _dec69 = Listen("click", {
@@ -14040,7 +14000,7 @@ var init_checkbox = __esm({
14040
14000
  "value"
14041
14001
  ],
14042
14002
  [
14043
- _dec49,
14003
+ _dec410,
14044
14004
  1,
14045
14005
  "disabled"
14046
14006
  ],
@@ -14995,7 +14955,7 @@ function applyDecs2203RFactory17() {
14995
14955
  function _apply_decs_2203_r17(targetClass, memberDecs, classDecs, parentClass) {
14996
14956
  return (_apply_decs_2203_r17 = applyDecs2203RFactory17())(targetClass, memberDecs, classDecs, parentClass);
14997
14957
  }
14998
- var import_lit_html20, _dec51, _initClass17, _HTMLElement17, _dec120, _dec215, _dec313, _dec410, _dec510, _dec610, _dec74, _dec83, _dec93, _dec103, _dec1110, _dec123, _dec133, _dec143, _dec153, _dec163, _init_open3, _init_disabled4, _init_pill3, _init_headless, _init_searchable, _init_block3, _init_maxHeight, _init_name4, _init_value2, _init_placeholder, _init_placement3, _init_trigger, _init_searchInput, _init_panelContent, _init_contentSlot, _initProto15, nextOptionId, nextPanelId, _Dropdown, Dropdown;
14958
+ var import_lit_html20, _dec51, _initClass17, _HTMLElement17, _dec120, _dec215, _dec313, _dec411, _dec510, _dec610, _dec74, _dec83, _dec93, _dec103, _dec1110, _dec123, _dec133, _dec143, _dec153, _dec163, _init_open3, _init_disabled4, _init_pill3, _init_headless, _init_searchable, _init_block3, _init_maxHeight, _init_name4, _init_value2, _init_placeholder, _init_placement3, _init_trigger, _init_searchInput, _init_panelContent, _init_contentSlot, _initProto15, nextOptionId, nextPanelId, _Dropdown, Dropdown;
14999
14959
  var init_dropdown = __esm({
15000
14960
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/dropdown/index.ts"() {
15001
14961
  "use strict";
@@ -15274,7 +15234,7 @@ var init_dropdown = __esm({
15274
15234
  }), _dec313 = Prop({
15275
15235
  type: Boolean,
15276
15236
  reflect: true
15277
- }), _dec410 = Prop({
15237
+ }), _dec411 = Prop({
15278
15238
  type: Boolean,
15279
15239
  reflect: true
15280
15240
  }), _dec510 = Prop({
@@ -15333,7 +15293,7 @@ var init_dropdown = __esm({
15333
15293
  "pill"
15334
15294
  ],
15335
15295
  [
15336
- _dec410,
15296
+ _dec411,
15337
15297
  1,
15338
15298
  "headless"
15339
15299
  ],
@@ -16449,7 +16409,7 @@ function applyDecs2203RFactory18() {
16449
16409
  function _apply_decs_2203_r18(targetClass, memberDecs, classDecs, parentClass) {
16450
16410
  return (_apply_decs_2203_r18 = applyDecs2203RFactory18())(targetClass, memberDecs, classDecs, parentClass);
16451
16411
  }
16452
- var import_lit_html21, _dec60, _initClass18, _HTMLElement18, _dec121, _dec216, _dec314, _dec411, _dec511, _dec611, _dec75, _dec84, _dec94, _dec104, _dec1111, _init_value3, _init_placeholder2, _init_type3, _init_name5, _init_disabled5, _init_headless2, _init_control2, _initProto16, _Input, Input;
16412
+ var import_lit_html21, _dec60, _initClass18, _HTMLElement18, _dec121, _dec216, _dec314, _dec412, _dec511, _dec611, _dec75, _dec84, _dec94, _dec104, _dec1111, _init_value3, _init_placeholder2, _init_type3, _init_name5, _init_disabled5, _init_headless2, _init_control2, _initProto16, _Input, Input;
16453
16413
  var init_input = __esm({
16454
16414
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/input/index.ts"() {
16455
16415
  "use strict";
@@ -16653,7 +16613,7 @@ var init_input = __esm({
16653
16613
  }), _dec314 = Prop({
16654
16614
  reflect: true,
16655
16615
  defaultValue: "text"
16656
- }), _dec411 = Prop({
16616
+ }), _dec412 = Prop({
16657
16617
  reflect: true
16658
16618
  }), _dec511 = Prop({
16659
16619
  type: Boolean,
@@ -16691,7 +16651,7 @@ var init_input = __esm({
16691
16651
  "type"
16692
16652
  ],
16693
16653
  [
16694
- _dec411,
16654
+ _dec412,
16695
16655
  1,
16696
16656
  "name"
16697
16657
  ],
@@ -18402,7 +18362,7 @@ function applyDecs2203RFactory21() {
18402
18362
  function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
18403
18363
  return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
18404
18364
  }
18405
- var import_lit_html25, _dec71, _initClass21, _HTMLElement21, _dec124, _dec217, _dec315, _dec412, _init_saturationArea, _init_hueArea, _init_hexInput, _init_value4, _initProto17, _ColorPicker, ColorPicker, picker_default;
18365
+ var import_lit_html25, _dec71, _initClass21, _HTMLElement21, _dec124, _dec217, _dec315, _dec413, _init_saturationArea, _init_hueArea, _init_hexInput, _init_value4, _initProto17, _ColorPicker, ColorPicker, picker_default;
18406
18366
  var init_picker2 = __esm({
18407
18367
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/picker.ts"() {
18408
18368
  "use strict";
@@ -18731,7 +18691,7 @@ var init_picker2 = __esm({
18731
18691
  </div>
18732
18692
  `;
18733
18693
  }
18734
- }), _dec124 = Query('[part="saturation"]'), _dec217 = Query('[part="hue"]'), _dec315 = Query('[part="hex-input"]'), _dec412 = Prop({
18694
+ }), _dec124 = Query('[part="saturation"]'), _dec217 = Query('[part="hue"]'), _dec315 = Query('[part="hex-input"]'), _dec413 = Prop({
18735
18695
  reflect: true,
18736
18696
  defaultValue: "#FF0000",
18737
18697
  onChange(value) {
@@ -18759,7 +18719,7 @@ var init_picker2 = __esm({
18759
18719
  "hexInput"
18760
18720
  ],
18761
18721
  [
18762
- _dec412,
18722
+ _dec413,
18763
18723
  1,
18764
18724
  "value"
18765
18725
  ]
@@ -19378,7 +19338,7 @@ function applyDecs2203RFactory22() {
19378
19338
  function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
19379
19339
  return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
19380
19340
  }
19381
- var import_lit_html26, _dec76, _initClass22, _HTMLElement22, _dec125, _dec218, _dec316, _dec413, _init_dropdown, _init_value5, _init_disabled6, _init_placement4, _initProto18, _ColorInput, ColorInput;
19341
+ var import_lit_html26, _dec76, _initClass22, _HTMLElement22, _dec125, _dec218, _dec316, _dec414, _init_dropdown, _init_value5, _init_disabled6, _init_placement4, _initProto18, _ColorInput, ColorInput;
19382
19342
  var init_color = __esm({
19383
19343
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts"() {
19384
19344
  "use strict";
@@ -19462,7 +19422,7 @@ var init_color = __esm({
19462
19422
  }), _dec316 = Prop({
19463
19423
  type: Boolean,
19464
19424
  reflect: true
19465
- }), _dec413 = Prop({
19425
+ }), _dec414 = Prop({
19466
19426
  reflect: true,
19467
19427
  defaultValue: "bottom-start"
19468
19428
  });
@@ -19485,7 +19445,7 @@ var init_color = __esm({
19485
19445
  "disabled"
19486
19446
  ],
19487
19447
  [
19488
- _dec413,
19448
+ _dec414,
19489
19449
  1,
19490
19450
  "placement"
19491
19451
  ]
@@ -29539,7 +29499,7 @@ function applyDecs2203RFactory47() {
29539
29499
  function _apply_decs_2203_r47(targetClass, memberDecs, classDecs, parentClass) {
29540
29500
  return (_apply_decs_2203_r47 = applyDecs2203RFactory47())(targetClass, memberDecs, classDecs, parentClass);
29541
29501
  }
29542
- var import_lit_html51, _dec131, _initClass47, _HTMLElement47, _dec134, _dec221, _dec318, _dec414, _init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto24, CENTER, DOTS_DATA, INNER_DOT_IDS, OUTER_DOT_IDS, forceReflow, getAngle, sortByAngle, LOOP_DURATION, ROTATION_DURATION, _LogoLoader, LogoLoader;
29502
+ var import_lit_html51, _dec131, _initClass47, _HTMLElement47, _dec134, _dec221, _dec318, _dec415, _init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto24, CENTER, DOTS_DATA, INNER_DOT_IDS, OUTER_DOT_IDS, forceReflow, getAngle, sortByAngle, LOOP_DURATION, ROTATION_DURATION, _LogoLoader, LogoLoader;
29543
29503
  var init_logo = __esm({
29544
29504
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts"() {
29545
29505
  "use strict";
@@ -29937,7 +29897,7 @@ var init_logo = __esm({
29937
29897
  type: Number,
29938
29898
  attribute: "size",
29939
29899
  defaultValue: 36
29940
- }), _dec414 = Prop({
29900
+ }), _dec415 = Prop({
29941
29901
  type: "string",
29942
29902
  attribute: "aria-label",
29943
29903
  defaultValue: null
@@ -29961,7 +29921,7 @@ var init_logo = __esm({
29961
29921
  "size"
29962
29922
  ],
29963
29923
  [
29964
- _dec414,
29924
+ _dec415,
29965
29925
  1,
29966
29926
  "ariaLabel"
29967
29927
  ]
@@ -32837,7 +32797,7 @@ function applyDecs2203RFactory50() {
32837
32797
  function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
32838
32798
  return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
32839
32799
  }
32840
- var import_lit_html54, _dec139, _initClass50, _HTMLElement50, _dec140, _dec224, _dec320, _dec415, _dec512, _dec612, _dec710, _dec810, _dec910, _init_value6, _init_min, _init_max, _init_step, _init_name6, _init_disabled7, _init_control3, _initProto27, _NumberInput, NumberInput;
32800
+ var import_lit_html54, _dec139, _initClass50, _HTMLElement50, _dec140, _dec224, _dec320, _dec416, _dec512, _dec612, _dec710, _dec810, _dec910, _init_value6, _init_min, _init_max, _init_step, _init_name6, _init_disabled7, _init_control3, _initProto27, _NumberInput, NumberInput;
32841
32801
  var init_number = __esm({
32842
32802
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/number/index.ts"() {
32843
32803
  "use strict";
@@ -32941,7 +32901,7 @@ var init_number = __esm({
32941
32901
  }), _dec320 = Prop({
32942
32902
  type: Number,
32943
32903
  reflect: true
32944
- }), _dec415 = Prop({
32904
+ }), _dec416 = Prop({
32945
32905
  type: Number,
32946
32906
  reflect: true
32947
32907
  }), _dec512 = Prop({
@@ -32973,7 +32933,7 @@ var init_number = __esm({
32973
32933
  "max"
32974
32934
  ],
32975
32935
  [
32976
- _dec415,
32936
+ _dec416,
32977
32937
  1,
32978
32938
  "step"
32979
32939
  ],
@@ -33507,7 +33467,7 @@ function applyDecs2203RFactory51() {
33507
33467
  function _apply_decs_2203_r51(targetClass, memberDecs, classDecs, parentClass) {
33508
33468
  return (_apply_decs_2203_r51 = applyDecs2203RFactory51())(targetClass, memberDecs, classDecs, parentClass);
33509
33469
  }
33510
- var import_lit_html55, _dec141, _initClass51, _HTMLElement51, _dec144, _dec225, _dec321, _dec416, _dec513, _init_value7, _init_disabled8, _init_control4, _init_name7, _initProto28, _Origin, Origin;
33470
+ var import_lit_html55, _dec141, _initClass51, _HTMLElement51, _dec144, _dec225, _dec321, _dec417, _dec513, _init_value7, _init_disabled8, _init_control4, _init_name7, _initProto28, _Origin, Origin;
33511
33471
  var init_origin = __esm({
33512
33472
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/origin/index.ts"() {
33513
33473
  "use strict";
@@ -33656,7 +33616,7 @@ var init_origin = __esm({
33656
33616
  }), _dec225 = Prop({
33657
33617
  type: Boolean,
33658
33618
  reflect: true
33659
- }), _dec321 = Query("ease-dropdown"), _dec416 = Prop({
33619
+ }), _dec321 = Query("ease-dropdown"), _dec417 = Prop({
33660
33620
  reflect: true,
33661
33621
  defaultValue: ""
33662
33622
  }), _dec513 = Listen("change", {
@@ -33681,7 +33641,7 @@ var init_origin = __esm({
33681
33641
  "control"
33682
33642
  ],
33683
33643
  [
33684
- _dec416,
33644
+ _dec417,
33685
33645
  1,
33686
33646
  "name"
33687
33647
  ],
@@ -34128,7 +34088,7 @@ function applyDecs2203RFactory52() {
34128
34088
  function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
34129
34089
  return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
34130
34090
  }
34131
- var import_lit_html56, _dec145, _initClass52, _HTMLElement52, _dec146, _dec226, _dec322, _dec417, _dec514, _dec613, _dec711, _init_activeTab, _init_headline2, _init_maxHeight3, _init_contentElement2, _init_bodyElement, _initProto29, _Panel, Panel;
34091
+ var import_lit_html56, _dec145, _initClass52, _HTMLElement52, _dec146, _dec226, _dec322, _dec418, _dec514, _dec613, _dec711, _init_activeTab, _init_headline2, _init_maxHeight3, _init_contentElement3, _init_bodyElement, _initProto29, _Panel, Panel;
34132
34092
  var init_panel = __esm({
34133
34093
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts"() {
34134
34094
  "use strict";
@@ -34388,14 +34348,14 @@ var init_panel = __esm({
34388
34348
  reflect: true,
34389
34349
  attribute: "max-height",
34390
34350
  defaultValue: null
34391
- }), _dec417 = Query('[part="content"]'), _dec514 = Query('[part="body"]'), _dec613 = Listen("slotchange", {
34351
+ }), _dec418 = Query('[part="content"]'), _dec514 = Query('[part="body"]'), _dec613 = Listen("slotchange", {
34392
34352
  selector: 'slot[name="footer"]'
34393
34353
  }), _dec711 = Listen("slotchange", {
34394
34354
  selector: "slot:not([name])"
34395
34355
  });
34396
34356
  Panel = class extends (_HTMLElement52 = HTMLElement) {
34397
34357
  static {
34398
- ({ e: [_init_activeTab, _init_headline2, _init_maxHeight3, _init_contentElement2, _init_bodyElement, _initProto29], c: [_Panel, _initClass52] } = _apply_decs_2203_r52(this, [
34358
+ ({ e: [_init_activeTab, _init_headline2, _init_maxHeight3, _init_contentElement3, _init_bodyElement, _initProto29], c: [_Panel, _initClass52] } = _apply_decs_2203_r52(this, [
34399
34359
  [
34400
34360
  _dec146,
34401
34361
  1,
@@ -34412,7 +34372,7 @@ var init_panel = __esm({
34412
34372
  "maxHeight"
34413
34373
  ],
34414
34374
  [
34415
- _dec417,
34375
+ _dec418,
34416
34376
  1,
34417
34377
  "contentElement"
34418
34378
  ],
@@ -34732,7 +34692,7 @@ var init_panel = __esm({
34732
34692
  _initClass52();
34733
34693
  }
34734
34694
  constructor(...args) {
34735
- super(...args), this.#tabs = (_initProto29(this), []), this.#isAnimating = false, this.#___private_activeTab_1 = _init_activeTab(this, 0), this.#___private_headline_2 = _init_headline2(this, null), this.#___private_maxHeight_3 = _init_maxHeight3(this, null), this.#___private_contentElement_4 = _init_contentElement2(this), this.#___private_bodyElement_5 = _init_bodyElement(this);
34695
+ super(...args), this.#tabs = (_initProto29(this), []), this.#isAnimating = false, this.#___private_activeTab_1 = _init_activeTab(this, 0), this.#___private_headline_2 = _init_headline2(this, null), this.#___private_maxHeight_3 = _init_maxHeight3(this, null), this.#___private_contentElement_4 = _init_contentElement3(this), this.#___private_bodyElement_5 = _init_bodyElement(this);
34736
34696
  }
34737
34697
  };
34738
34698
  }
@@ -35858,7 +35818,7 @@ function applyDecs2203RFactory54() {
35858
35818
  function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
35859
35819
  return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
35860
35820
  }
35861
- var import_lit_html58, _dec149, _initClass54, _HTMLElement54, _dec150, _dec228, _dec324, _dec418, _dec515, _dec614, _init_checked2, _init_name8, _init_value9, _init_disabled9, _init_control5, _initProto31, _RadioInput, RadioInput;
35821
+ var import_lit_html58, _dec149, _initClass54, _HTMLElement54, _dec150, _dec228, _dec324, _dec419, _dec515, _dec614, _init_checked2, _init_name8, _init_value9, _init_disabled9, _init_control5, _initProto31, _RadioInput, RadioInput;
35862
35822
  var init_input2 = __esm({
35863
35823
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/input.ts"() {
35864
35824
  "use strict";
@@ -36127,7 +36087,7 @@ var init_input2 = __esm({
36127
36087
  reflect: true
36128
36088
  }), _dec324 = Prop({
36129
36089
  reflect: true
36130
- }), _dec418 = Prop({
36090
+ }), _dec419 = Prop({
36131
36091
  type: Boolean,
36132
36092
  reflect: true
36133
36093
  }), _dec515 = Query("button"), _dec614 = Listen("click", {
@@ -36152,7 +36112,7 @@ var init_input2 = __esm({
36152
36112
  "value"
36153
36113
  ],
36154
36114
  [
36155
- _dec418,
36115
+ _dec419,
36156
36116
  1,
36157
36117
  "disabled"
36158
36118
  ],
@@ -36642,7 +36602,7 @@ function applyDecs2203RFactory55() {
36642
36602
  function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
36643
36603
  return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
36644
36604
  }
36645
- var import_lit_html59, _dec151, _initClass55, _HTMLElement55, _dec154, _dec229, _dec325, _dec419, _dec516, _dec615, _dec712, _dec811, _dec911, _dec1010, _dec1112, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled10, _init_control6, _init_valueControl, _initProto32, _Slider, Slider;
36605
+ var import_lit_html59, _dec151, _initClass55, _HTMLElement55, _dec154, _dec229, _dec325, _dec420, _dec516, _dec615, _dec712, _dec811, _dec911, _dec1010, _dec1112, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled10, _init_control6, _init_valueControl, _initProto32, _Slider, Slider;
36646
36606
  var init_slider = __esm({
36647
36607
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/slider/index.ts"() {
36648
36608
  "use strict";
@@ -36786,7 +36746,7 @@ var init_slider = __esm({
36786
36746
  }), _dec325 = Prop({
36787
36747
  type: Number,
36788
36748
  reflect: true
36789
- }), _dec419 = Prop({
36749
+ }), _dec420 = Prop({
36790
36750
  type: Number,
36791
36751
  reflect: true
36792
36752
  }), _dec516 = Prop({
@@ -36822,7 +36782,7 @@ var init_slider = __esm({
36822
36782
  "max"
36823
36783
  ],
36824
36784
  [
36825
- _dec419,
36785
+ _dec420,
36826
36786
  1,
36827
36787
  "step"
36828
36788
  ],
@@ -37382,7 +37342,7 @@ function applyDecs2203RFactory56() {
37382
37342
  function _apply_decs_2203_r56(targetClass, memberDecs, classDecs, parentClass) {
37383
37343
  return (_apply_decs_2203_r56 = applyDecs2203RFactory56())(targetClass, memberDecs, classDecs, parentClass);
37384
37344
  }
37385
- var import_lit_html60, _dec155, _initClass56, _HTMLElement56, _dec156, _dec230, _dec326, _dec420, _dec517, _init_value11, _init_defaultSlot, _initProto33, readControlValue2, getControlName, _State, State;
37345
+ var import_lit_html60, _dec155, _initClass56, _HTMLElement56, _dec156, _dec230, _dec326, _dec421, _dec517, _init_value11, _init_defaultSlot, _initProto33, readControlValue2, getControlName, _State, State;
37386
37346
  var init_state = __esm({
37387
37347
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts"() {
37388
37348
  "use strict";
@@ -37432,7 +37392,7 @@ var init_state = __esm({
37432
37392
  reflect: true
37433
37393
  }), _dec230 = Query("slot"), _dec326 = Listen("input", {
37434
37394
  target: (host) => host
37435
- }), _dec420 = Listen("change", {
37395
+ }), _dec421 = Listen("change", {
37436
37396
  target: (host) => host
37437
37397
  }), _dec517 = Listen(CONTROL_CHANGE_EVENT, {
37438
37398
  target: (host) => host
@@ -37456,7 +37416,7 @@ var init_state = __esm({
37456
37416
  "handleInternalInput"
37457
37417
  ],
37458
37418
  [
37459
- _dec420,
37419
+ _dec421,
37460
37420
  2,
37461
37421
  "handleInternalChange"
37462
37422
  ],
@@ -38054,7 +38014,7 @@ function applyDecs2203RFactory57() {
38054
38014
  function _apply_decs_2203_r57(targetClass, memberDecs, classDecs, parentClass) {
38055
38015
  return (_apply_decs_2203_r57 = applyDecs2203RFactory57())(targetClass, memberDecs, classDecs, parentClass);
38056
38016
  }
38057
- var import_lit_html61, _dec157, _initClass57, _HTMLElement57, _dec158, _dec231, _dec327, _dec421, _init_checked3, _init_disabled11, _init_control7, _initProto34, _Toggle, Toggle;
38017
+ var import_lit_html61, _dec157, _initClass57, _HTMLElement57, _dec158, _dec231, _dec327, _dec422, _init_checked3, _init_disabled11, _init_control7, _initProto34, _Toggle, Toggle;
38058
38018
  var init_toggle = __esm({
38059
38019
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/toggle/index.ts"() {
38060
38020
  "use strict";
@@ -38182,7 +38142,7 @@ var init_toggle = __esm({
38182
38142
  }), _dec231 = Prop({
38183
38143
  type: Boolean,
38184
38144
  reflect: true
38185
- }), _dec327 = Query("button"), _dec421 = Listen("click", {
38145
+ }), _dec327 = Query("button"), _dec422 = Listen("click", {
38186
38146
  selector: "button"
38187
38147
  });
38188
38148
  Toggle = class extends (_HTMLElement57 = HTMLElement) {
@@ -38204,7 +38164,7 @@ var init_toggle = __esm({
38204
38164
  "control"
38205
38165
  ],
38206
38166
  [
38207
- _dec421,
38167
+ _dec422,
38208
38168
  2,
38209
38169
  "handleClick"
38210
38170
  ]
@@ -38641,7 +38601,7 @@ function applyDecs2203RFactory58() {
38641
38601
  function _apply_decs_2203_r58(targetClass, memberDecs, classDecs, parentClass) {
38642
38602
  return (_apply_decs_2203_r58 = applyDecs2203RFactory58())(targetClass, memberDecs, classDecs, parentClass);
38643
38603
  }
38644
- var import_lit_html62, _dec159, _initClass58, _HTMLElement58, _dec160, _dec232, _dec328, _dec422, _dec518, _dec616, _init_open5, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement3, _initProto35, _Tooltip2, Tooltip2;
38604
+ var import_lit_html62, _dec159, _initClass58, _HTMLElement58, _dec160, _dec232, _dec328, _dec423, _dec518, _dec616, _init_open5, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto35, _Tooltip2, Tooltip2;
38645
38605
  var init_tooltip2 = __esm({
38646
38606
  "swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts"() {
38647
38607
  "use strict";
@@ -38694,7 +38654,7 @@ var init_tooltip2 = __esm({
38694
38654
  }), _dec328 = Prop({
38695
38655
  reflect: true,
38696
38656
  defaultValue: "top-center"
38697
- }), _dec422 = Query('[slot="trigger"]'), _dec518 = Query("[data-tooltip-content]"), _dec616 = OutsideClick({
38657
+ }), _dec423 = Query('[slot="trigger"]'), _dec518 = Query("[data-tooltip-content]"), _dec616 = OutsideClick({
38698
38658
  content: (host) => host.contentElement,
38699
38659
  triggers: (host) => [
38700
38660
  host.triggerElement
@@ -38703,7 +38663,7 @@ var init_tooltip2 = __esm({
38703
38663
  });
38704
38664
  Tooltip2 = class extends (_HTMLElement58 = HTMLElement) {
38705
38665
  static {
38706
- ({ e: [_init_open5, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement3, _initProto35], c: [_Tooltip2, _initClass58] } = _apply_decs_2203_r58(this, [
38666
+ ({ e: [_init_open5, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto35], c: [_Tooltip2, _initClass58] } = _apply_decs_2203_r58(this, [
38707
38667
  [
38708
38668
  _dec160,
38709
38669
  1,
@@ -38720,7 +38680,7 @@ var init_tooltip2 = __esm({
38720
38680
  "placement"
38721
38681
  ],
38722
38682
  [
38723
- _dec422,
38683
+ _dec423,
38724
38684
  1,
38725
38685
  "triggerElement"
38726
38686
  ],
@@ -38886,7 +38846,7 @@ var init_tooltip2 = __esm({
38886
38846
  _initClass58();
38887
38847
  }
38888
38848
  constructor(...args) {
38889
- super(...args), this.#hoverTimer = (_initProto35(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open5(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 = () => {
38849
+ super(...args), this.#hoverTimer = (_initProto35(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open5(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 = () => {
38890
38850
  this.#startTimer(() => {
38891
38851
  this.open = true;
38892
38852
  });