@easemate/web-kit 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/elements.cjs +321 -283
- package/build/elements.cjs.map +1 -1
- package/build/elements.d.cts +5 -4
- package/build/elements.d.ts +5 -4
- package/build/elements.js +321 -283
- package/build/elements.js.map +1 -1
- package/build/index.cjs +297 -259
- package/build/index.cjs.map +1 -1
- package/build/index.js +297 -259
- package/build/index.js.map +1 -1
- package/build/react.cjs +423 -385
- package/build/react.cjs.map +1 -1
- package/build/react.js +423 -385
- package/build/react.js.map +1 -1
- package/build/register.cjs +394 -354
- package/build/register.cjs.map +1 -1
- package/build/register.js +394 -354
- package/build/register.js.map +1 -1
- package/package.json +1 -1
package/build/react.cjs
CHANGED
|
@@ -3075,10 +3075,15 @@ var init_checkbox = __esm({
|
|
|
3075
3075
|
return;
|
|
3076
3076
|
}
|
|
3077
3077
|
this.checked = !this.checked;
|
|
3078
|
-
|
|
3078
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
3079
|
+
const detail = {
|
|
3080
|
+
name,
|
|
3079
3081
|
value: this.checked,
|
|
3080
3082
|
event
|
|
3081
|
-
}
|
|
3083
|
+
};
|
|
3084
|
+
dispatchControlEvent(this, "checkbox", detail);
|
|
3085
|
+
dispatchControlEvent(this, "change", detail);
|
|
3086
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
3082
3087
|
}
|
|
3083
3088
|
static {
|
|
3084
3089
|
_initClass2();
|
|
@@ -3468,14 +3473,15 @@ function applyDecs2203RFactory3() {
|
|
|
3468
3473
|
function _apply_decs_2203_r3(targetClass, memberDecs, classDecs, parentClass) {
|
|
3469
3474
|
return (_apply_decs_2203_r3 = applyDecs2203RFactory3())(targetClass, memberDecs, classDecs, parentClass);
|
|
3470
3475
|
}
|
|
3471
|
-
var import_lit_html4, _dec8, _initClass3, _HTMLElement3, _dec13, _dec23, _dec33, _init_placement, _init_offset, _init_open, _initProto3, nextAnchorName, _Popover, Popover, popover_default;
|
|
3476
|
+
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
3477
|
var init_popover = __esm({
|
|
3473
3478
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/popover/index.ts"() {
|
|
3474
3479
|
"use strict";
|
|
3475
3480
|
import_lit_html4 = require("lit-html");
|
|
3476
3481
|
init_Component();
|
|
3477
3482
|
init_Prop();
|
|
3478
|
-
|
|
3483
|
+
init_Query();
|
|
3484
|
+
nextAnchorName = () => `--ease-popover-anchor-${crypto.randomUUID().slice(0, 8)}`;
|
|
3479
3485
|
_dec8 = Component({
|
|
3480
3486
|
tag: "ease-popover",
|
|
3481
3487
|
autoSlot: false,
|
|
@@ -3484,7 +3490,6 @@ var init_popover = __esm({
|
|
|
3484
3490
|
:host {
|
|
3485
3491
|
display: contents;
|
|
3486
3492
|
--ease-popover-offset: 8px;
|
|
3487
|
-
--ease-popover-anchor-name: --ease-popover-anchor;
|
|
3488
3493
|
--ease-popover-transform-origin: center center;
|
|
3489
3494
|
--ease-popover-duration: 200ms;
|
|
3490
3495
|
--ease-popover-content-min-width: auto;
|
|
@@ -3497,140 +3502,110 @@ var init_popover = __esm({
|
|
|
3497
3502
|
}
|
|
3498
3503
|
|
|
3499
3504
|
[part="content"] {
|
|
3500
|
-
position-anchor: var(--ease-popover-anchor-name);
|
|
3501
3505
|
position: fixed;
|
|
3506
|
+
position-anchor: var(--ease-popover-anchor-name);
|
|
3502
3507
|
margin: 0;
|
|
3503
|
-
|
|
3508
|
+
padding: 0;
|
|
3509
|
+
border: none;
|
|
3510
|
+
background: transparent;
|
|
3511
|
+
overflow: visible;
|
|
3504
3512
|
width: var(--ease-popover-content-width);
|
|
3505
3513
|
min-width: var(--ease-popover-content-min-width);
|
|
3506
3514
|
max-width: var(--ease-popover-content-max-width);
|
|
3507
3515
|
box-sizing: border-box;
|
|
3508
|
-
overscroll-behavior: contain;
|
|
3509
|
-
z-index: 100;
|
|
3510
|
-
display: none;
|
|
3511
3516
|
}
|
|
3512
3517
|
|
|
3513
|
-
|
|
3518
|
+
[part="content"]:popover-open {
|
|
3514
3519
|
display: block;
|
|
3515
3520
|
}
|
|
3516
3521
|
|
|
3517
3522
|
:host([placement="top-start"]) [part="content"] {
|
|
3518
|
-
position-area: top right;
|
|
3519
|
-
|
|
3520
|
-
left: anchor(left);
|
|
3521
|
-
translate: 0 calc(var(--ease-popover-offset) * -1);
|
|
3523
|
+
position-area: top span-right;
|
|
3524
|
+
margin-bottom: var(--ease-popover-offset);
|
|
3522
3525
|
}
|
|
3523
|
-
|
|
3524
3526
|
:host([placement="top-center"]) [part="content"] {
|
|
3525
3527
|
position-area: top center;
|
|
3526
|
-
|
|
3527
|
-
left: anchor(center);
|
|
3528
|
-
translate: 0 calc(var(--ease-popover-offset) * -1);
|
|
3528
|
+
margin-bottom: var(--ease-popover-offset);
|
|
3529
3529
|
}
|
|
3530
|
-
|
|
3531
3530
|
:host([placement="top-end"]) [part="content"] {
|
|
3532
|
-
position-area: top
|
|
3533
|
-
|
|
3534
|
-
right: anchor(right);
|
|
3535
|
-
translate: 0 calc(var(--ease-popover-offset) * -1);
|
|
3531
|
+
position-area: top span-left;
|
|
3532
|
+
margin-bottom: var(--ease-popover-offset);
|
|
3536
3533
|
}
|
|
3537
|
-
|
|
3538
3534
|
:host([placement="bottom-start"]) [part="content"] {
|
|
3539
|
-
position-area: bottom right;
|
|
3540
|
-
top:
|
|
3541
|
-
left: anchor(left);
|
|
3542
|
-
translate: 0 var(--ease-popover-offset);
|
|
3535
|
+
position-area: bottom span-right;
|
|
3536
|
+
margin-top: var(--ease-popover-offset);
|
|
3543
3537
|
}
|
|
3544
|
-
|
|
3545
3538
|
:host([placement="bottom-center"]) [part="content"] {
|
|
3546
3539
|
position-area: bottom center;
|
|
3547
|
-
top:
|
|
3548
|
-
left: anchor(left);
|
|
3549
|
-
translate: 0 var(--ease-popover-offset);
|
|
3540
|
+
margin-top: var(--ease-popover-offset);
|
|
3550
3541
|
}
|
|
3551
|
-
|
|
3552
3542
|
:host([placement="bottom-end"]) [part="content"] {
|
|
3553
|
-
position-area: bottom left;
|
|
3554
|
-
top:
|
|
3555
|
-
right: anchor(right);
|
|
3556
|
-
translate: 0 var(--ease-popover-offset);
|
|
3543
|
+
position-area: bottom span-left;
|
|
3544
|
+
margin-top: var(--ease-popover-offset);
|
|
3557
3545
|
}
|
|
3558
|
-
|
|
3559
3546
|
:host([placement="left-start"]) [part="content"] {
|
|
3560
|
-
position-area: left bottom;
|
|
3561
|
-
|
|
3562
|
-
left: anchor(left);
|
|
3563
|
-
translate: calc(var(--ease-popover-offset) * -1) 0;
|
|
3547
|
+
position-area: left span-bottom;
|
|
3548
|
+
margin-right: var(--ease-popover-offset);
|
|
3564
3549
|
}
|
|
3565
|
-
|
|
3566
3550
|
:host([placement="left-center"]) [part="content"] {
|
|
3567
3551
|
position-area: left center;
|
|
3568
|
-
|
|
3569
|
-
left: anchor(left);
|
|
3570
|
-
translate: calc(var(--ease-popover-offset) * -1) 0;
|
|
3552
|
+
margin-right: var(--ease-popover-offset);
|
|
3571
3553
|
}
|
|
3572
|
-
|
|
3573
3554
|
:host([placement="left-end"]) [part="content"] {
|
|
3574
|
-
position-area: left top;
|
|
3575
|
-
|
|
3576
|
-
left: anchor(left);
|
|
3577
|
-
translate: calc(var(--ease-popover-offset) * -1) 0;
|
|
3555
|
+
position-area: left span-top;
|
|
3556
|
+
margin-right: var(--ease-popover-offset);
|
|
3578
3557
|
}
|
|
3579
|
-
|
|
3580
3558
|
:host([placement="right-start"]) [part="content"] {
|
|
3581
|
-
position-area: right
|
|
3582
|
-
|
|
3583
|
-
left: anchor(right);
|
|
3584
|
-
translate: var(--ease-popover-offset) 0;
|
|
3559
|
+
position-area: right span-bottom;
|
|
3560
|
+
margin-left: var(--ease-popover-offset);
|
|
3585
3561
|
}
|
|
3586
|
-
|
|
3587
3562
|
:host([placement="right-center"]) [part="content"] {
|
|
3588
3563
|
position-area: right center;
|
|
3589
|
-
|
|
3590
|
-
left: anchor(right);
|
|
3591
|
-
translate: var(--ease-popover-offset) 0;
|
|
3564
|
+
margin-left: var(--ease-popover-offset);
|
|
3592
3565
|
}
|
|
3593
|
-
|
|
3594
3566
|
:host([placement="right-end"]) [part="content"] {
|
|
3595
|
-
position-area: right
|
|
3596
|
-
|
|
3597
|
-
left: anchor(right);
|
|
3598
|
-
translate: var(--ease-popover-offset) 0;
|
|
3567
|
+
position-area: right span-top;
|
|
3568
|
+
margin-left: var(--ease-popover-offset);
|
|
3599
3569
|
}
|
|
3600
3570
|
`
|
|
3601
|
-
}), _dec13 = Prop({
|
|
3571
|
+
}), _dec13 = Query('[part="content"]'), _dec23 = Prop({
|
|
3602
3572
|
reflect: true,
|
|
3603
|
-
defaultValue: "bottom-start"
|
|
3604
|
-
|
|
3605
|
-
this.handlePlacementChange();
|
|
3606
|
-
}
|
|
3607
|
-
}), _dec23 = Prop({
|
|
3573
|
+
defaultValue: "bottom-start"
|
|
3574
|
+
}), _dec33 = Prop({
|
|
3608
3575
|
type: Number,
|
|
3609
3576
|
reflect: true,
|
|
3610
3577
|
defaultValue: 8,
|
|
3611
3578
|
onChange() {
|
|
3612
3579
|
this.handleOffsetChange();
|
|
3613
3580
|
}
|
|
3614
|
-
}),
|
|
3581
|
+
}), _dec43 = Prop({
|
|
3615
3582
|
type: Boolean,
|
|
3616
|
-
reflect: true
|
|
3583
|
+
reflect: true,
|
|
3584
|
+
onChange() {
|
|
3585
|
+
this.handleOpenChange();
|
|
3586
|
+
}
|
|
3617
3587
|
});
|
|
3618
3588
|
Popover = class extends (_HTMLElement3 = HTMLElement) {
|
|
3619
3589
|
static {
|
|
3620
|
-
({ e: [_init_placement, _init_offset, _init_open, _initProto3], c: [_Popover, _initClass3] } = _apply_decs_2203_r3(this, [
|
|
3590
|
+
({ e: [_init_contentElement, _init_placement, _init_offset, _init_open, _initProto3], c: [_Popover, _initClass3] } = _apply_decs_2203_r3(this, [
|
|
3621
3591
|
[
|
|
3622
3592
|
_dec13,
|
|
3623
3593
|
1,
|
|
3624
|
-
"
|
|
3594
|
+
"contentElement"
|
|
3625
3595
|
],
|
|
3626
3596
|
[
|
|
3627
3597
|
_dec23,
|
|
3628
3598
|
1,
|
|
3629
|
-
"
|
|
3599
|
+
"placement"
|
|
3630
3600
|
],
|
|
3631
3601
|
[
|
|
3632
3602
|
_dec33,
|
|
3633
3603
|
1,
|
|
3604
|
+
"offset"
|
|
3605
|
+
],
|
|
3606
|
+
[
|
|
3607
|
+
_dec43,
|
|
3608
|
+
1,
|
|
3634
3609
|
"open"
|
|
3635
3610
|
]
|
|
3636
3611
|
], [
|
|
@@ -3638,85 +3613,75 @@ var init_popover = __esm({
|
|
|
3638
3613
|
], _HTMLElement3));
|
|
3639
3614
|
}
|
|
3640
3615
|
#anchorName;
|
|
3641
|
-
#
|
|
3642
|
-
#initialized;
|
|
3616
|
+
#___private_contentElement_1;
|
|
3643
3617
|
get contentElement() {
|
|
3644
|
-
return this.#
|
|
3618
|
+
return this.#___private_contentElement_1;
|
|
3619
|
+
}
|
|
3620
|
+
set contentElement(_v) {
|
|
3621
|
+
this.#___private_contentElement_1 = _v;
|
|
3645
3622
|
}
|
|
3646
|
-
#
|
|
3623
|
+
#___private_placement_2;
|
|
3647
3624
|
get placement() {
|
|
3648
|
-
return this.#
|
|
3625
|
+
return this.#___private_placement_2;
|
|
3649
3626
|
}
|
|
3650
3627
|
set placement(_v) {
|
|
3651
|
-
this.#
|
|
3628
|
+
this.#___private_placement_2 = _v;
|
|
3652
3629
|
}
|
|
3653
|
-
#
|
|
3630
|
+
#___private_offset_3;
|
|
3654
3631
|
get offset() {
|
|
3655
|
-
return this.#
|
|
3632
|
+
return this.#___private_offset_3;
|
|
3656
3633
|
}
|
|
3657
3634
|
set offset(_v) {
|
|
3658
|
-
this.#
|
|
3635
|
+
this.#___private_offset_3 = _v;
|
|
3659
3636
|
}
|
|
3660
|
-
#
|
|
3637
|
+
#___private_open_4;
|
|
3661
3638
|
get open() {
|
|
3662
|
-
return this.#
|
|
3639
|
+
return this.#___private_open_4;
|
|
3663
3640
|
}
|
|
3664
3641
|
set open(_v) {
|
|
3665
|
-
this.#
|
|
3642
|
+
this.#___private_open_4 = _v;
|
|
3643
|
+
}
|
|
3644
|
+
handleOffsetChange() {
|
|
3645
|
+
const offset = Number.isFinite(this.offset) ? this.offset : 8;
|
|
3646
|
+
this.style.setProperty("--ease-popover-offset", `${offset}px`);
|
|
3647
|
+
}
|
|
3648
|
+
handleOpenChange() {
|
|
3649
|
+
const content = this.contentElement;
|
|
3650
|
+
if (!content) {
|
|
3651
|
+
return;
|
|
3652
|
+
}
|
|
3653
|
+
if (this.open) {
|
|
3654
|
+
content.showPopover();
|
|
3655
|
+
} else {
|
|
3656
|
+
content.hidePopover();
|
|
3657
|
+
}
|
|
3666
3658
|
}
|
|
3667
3659
|
connectedCallback() {
|
|
3668
|
-
this.#
|
|
3669
|
-
this
|
|
3660
|
+
this.style.setProperty("--ease-popover-anchor-name", this.#anchorName);
|
|
3661
|
+
this.handleOffsetChange();
|
|
3670
3662
|
}
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
this
|
|
3663
|
+
afterRender() {
|
|
3664
|
+
const content = this.contentElement;
|
|
3665
|
+
if (content && this.open) {
|
|
3666
|
+
try {
|
|
3667
|
+
content.showPopover();
|
|
3668
|
+
} catch (_e) {
|
|
3669
|
+
}
|
|
3670
|
+
}
|
|
3674
3671
|
}
|
|
3675
3672
|
render() {
|
|
3676
3673
|
return import_lit_html4.html`
|
|
3677
|
-
<slot
|
|
3678
|
-
<div
|
|
3679
|
-
part="content"
|
|
3680
|
-
data-popover-content
|
|
3681
|
-
role="region"
|
|
3682
|
-
data-placement=${this.placement}
|
|
3683
|
-
>
|
|
3674
|
+
<slot name="trigger"></slot>
|
|
3675
|
+
<div part="content" popover="manual" role="region">
|
|
3684
3676
|
<slot></slot>
|
|
3685
3677
|
</div>
|
|
3686
3678
|
`;
|
|
3687
3679
|
}
|
|
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
3680
|
static {
|
|
3716
3681
|
_initClass3();
|
|
3717
3682
|
}
|
|
3718
3683
|
constructor(...args) {
|
|
3719
|
-
super(...args), this.#anchorName = (_initProto3(this), nextAnchorName()), this.#
|
|
3684
|
+
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
3685
|
}
|
|
3721
3686
|
};
|
|
3722
3687
|
popover_default = {
|
|
@@ -4804,7 +4769,7 @@ function applyDecs2203RFactory5() {
|
|
|
4804
4769
|
function _apply_decs_2203_r5(targetClass, memberDecs, classDecs, parentClass) {
|
|
4805
4770
|
return (_apply_decs_2203_r5 = applyDecs2203RFactory5())(targetClass, memberDecs, classDecs, parentClass);
|
|
4806
4771
|
}
|
|
4807
|
-
var import_lit_html6, _dec10, _initClass5, _HTMLElement5, _dec15, _dec24, _dec34,
|
|
4772
|
+
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
4773
|
var init_dropdown = __esm({
|
|
4809
4774
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/dropdown/index.ts"() {
|
|
4810
4775
|
"use strict";
|
|
@@ -5083,7 +5048,7 @@ var init_dropdown = __esm({
|
|
|
5083
5048
|
}), _dec34 = Prop({
|
|
5084
5049
|
type: Boolean,
|
|
5085
5050
|
reflect: true
|
|
5086
|
-
}),
|
|
5051
|
+
}), _dec44 = Prop({
|
|
5087
5052
|
type: Boolean,
|
|
5088
5053
|
reflect: true
|
|
5089
5054
|
}), _dec53 = Prop({
|
|
@@ -5142,7 +5107,7 @@ var init_dropdown = __esm({
|
|
|
5142
5107
|
"pill"
|
|
5143
5108
|
],
|
|
5144
5109
|
[
|
|
5145
|
-
|
|
5110
|
+
_dec44,
|
|
5146
5111
|
1,
|
|
5147
5112
|
"headless"
|
|
5148
5113
|
],
|
|
@@ -5504,6 +5469,7 @@ var init_dropdown = __esm({
|
|
|
5504
5469
|
}
|
|
5505
5470
|
}
|
|
5506
5471
|
dispatchControlEvent(this, "toggle", {
|
|
5472
|
+
name: this.name ?? void 0,
|
|
5507
5473
|
value: next,
|
|
5508
5474
|
event: origin
|
|
5509
5475
|
});
|
|
@@ -5767,6 +5733,7 @@ var init_dropdown = __esm({
|
|
|
5767
5733
|
}
|
|
5768
5734
|
#dispatchValueChange(value, label, event) {
|
|
5769
5735
|
dispatchControlEvent(this, "change", {
|
|
5736
|
+
name: this.name ?? void 0,
|
|
5770
5737
|
value,
|
|
5771
5738
|
event
|
|
5772
5739
|
});
|
|
@@ -6258,7 +6225,7 @@ function applyDecs2203RFactory6() {
|
|
|
6258
6225
|
function _apply_decs_2203_r6(targetClass, memberDecs, classDecs, parentClass) {
|
|
6259
6226
|
return (_apply_decs_2203_r6 = applyDecs2203RFactory6())(targetClass, memberDecs, classDecs, parentClass);
|
|
6260
6227
|
}
|
|
6261
|
-
var import_lit_html7, _dec17, _initClass6, _HTMLElement6, _dec18, _dec25, _dec35,
|
|
6228
|
+
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
6229
|
var init_input = __esm({
|
|
6263
6230
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/input/index.ts"() {
|
|
6264
6231
|
"use strict";
|
|
@@ -6462,7 +6429,7 @@ var init_input = __esm({
|
|
|
6462
6429
|
}), _dec35 = Prop({
|
|
6463
6430
|
reflect: true,
|
|
6464
6431
|
defaultValue: "text"
|
|
6465
|
-
}),
|
|
6432
|
+
}), _dec45 = Prop({
|
|
6466
6433
|
reflect: true
|
|
6467
6434
|
}), _dec54 = Prop({
|
|
6468
6435
|
type: Boolean,
|
|
@@ -6500,7 +6467,7 @@ var init_input = __esm({
|
|
|
6500
6467
|
"type"
|
|
6501
6468
|
],
|
|
6502
6469
|
[
|
|
6503
|
-
|
|
6470
|
+
_dec45,
|
|
6504
6471
|
1,
|
|
6505
6472
|
"name"
|
|
6506
6473
|
],
|
|
@@ -6642,20 +6609,28 @@ var init_input = __esm({
|
|
|
6642
6609
|
return;
|
|
6643
6610
|
}
|
|
6644
6611
|
this.value = target.value;
|
|
6645
|
-
|
|
6612
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
6613
|
+
const detail = {
|
|
6614
|
+
name,
|
|
6646
6615
|
value: this.value ?? "",
|
|
6647
6616
|
event
|
|
6648
|
-
}
|
|
6617
|
+
};
|
|
6618
|
+
dispatchControlEvent(this, "input", detail);
|
|
6619
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
6649
6620
|
}
|
|
6650
6621
|
handleChange(event, target) {
|
|
6651
6622
|
if (!target) {
|
|
6652
6623
|
return;
|
|
6653
6624
|
}
|
|
6654
6625
|
this.value = target.value;
|
|
6655
|
-
|
|
6626
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
6627
|
+
const detail = {
|
|
6628
|
+
name,
|
|
6656
6629
|
value: this.value ?? "",
|
|
6657
6630
|
event
|
|
6658
|
-
}
|
|
6631
|
+
};
|
|
6632
|
+
dispatchControlEvent(this, "change", detail);
|
|
6633
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
6659
6634
|
}
|
|
6660
6635
|
static {
|
|
6661
6636
|
_initClass6();
|
|
@@ -8211,7 +8186,7 @@ function applyDecs2203RFactory9() {
|
|
|
8211
8186
|
function _apply_decs_2203_r9(targetClass, memberDecs, classDecs, parentClass) {
|
|
8212
8187
|
return (_apply_decs_2203_r9 = applyDecs2203RFactory9())(targetClass, memberDecs, classDecs, parentClass);
|
|
8213
8188
|
}
|
|
8214
|
-
var import_lit_html11, _dec21, _initClass9, _HTMLElement9, _dec110, _dec26, _dec36,
|
|
8189
|
+
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
8190
|
var init_picker2 = __esm({
|
|
8216
8191
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/picker.ts"() {
|
|
8217
8192
|
"use strict";
|
|
@@ -8540,7 +8515,7 @@ var init_picker2 = __esm({
|
|
|
8540
8515
|
</div>
|
|
8541
8516
|
`;
|
|
8542
8517
|
}
|
|
8543
|
-
}), _dec110 = Query('[part="saturation"]'), _dec26 = Query('[part="hue"]'), _dec36 = Query('[part="hex-input"]'),
|
|
8518
|
+
}), _dec110 = Query('[part="saturation"]'), _dec26 = Query('[part="hue"]'), _dec36 = Query('[part="hex-input"]'), _dec46 = Prop({
|
|
8544
8519
|
reflect: true,
|
|
8545
8520
|
defaultValue: "#FF0000",
|
|
8546
8521
|
onChange(value) {
|
|
@@ -8568,7 +8543,7 @@ var init_picker2 = __esm({
|
|
|
8568
8543
|
"hexInput"
|
|
8569
8544
|
],
|
|
8570
8545
|
[
|
|
8571
|
-
|
|
8546
|
+
_dec46,
|
|
8572
8547
|
1,
|
|
8573
8548
|
"value"
|
|
8574
8549
|
]
|
|
@@ -9187,7 +9162,7 @@ function applyDecs2203RFactory10() {
|
|
|
9187
9162
|
function _apply_decs_2203_r10(targetClass, memberDecs, classDecs, parentClass) {
|
|
9188
9163
|
return (_apply_decs_2203_r10 = applyDecs2203RFactory10())(targetClass, memberDecs, classDecs, parentClass);
|
|
9189
9164
|
}
|
|
9190
|
-
var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37,
|
|
9165
|
+
var import_lit_html12, _dec27, _initClass10, _HTMLElement10, _dec111, _dec28, _dec37, _dec47, _dec55, _init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8, _ColorInput, ColorInput;
|
|
9191
9166
|
var init_color = __esm({
|
|
9192
9167
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts"() {
|
|
9193
9168
|
"use strict";
|
|
@@ -9271,13 +9246,16 @@ var init_color = __esm({
|
|
|
9271
9246
|
}), _dec37 = Prop({
|
|
9272
9247
|
type: Boolean,
|
|
9273
9248
|
reflect: true
|
|
9274
|
-
}),
|
|
9249
|
+
}), _dec47 = Prop({
|
|
9250
|
+
reflect: true,
|
|
9251
|
+
defaultValue: null
|
|
9252
|
+
}), _dec55 = Prop({
|
|
9275
9253
|
reflect: true,
|
|
9276
9254
|
defaultValue: "bottom-start"
|
|
9277
9255
|
});
|
|
9278
9256
|
ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
9279
9257
|
static {
|
|
9280
|
-
({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
|
|
9258
|
+
({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
|
|
9281
9259
|
[
|
|
9282
9260
|
_dec111,
|
|
9283
9261
|
1,
|
|
@@ -9294,7 +9272,12 @@ var init_color = __esm({
|
|
|
9294
9272
|
"disabled"
|
|
9295
9273
|
],
|
|
9296
9274
|
[
|
|
9297
|
-
|
|
9275
|
+
_dec47,
|
|
9276
|
+
1,
|
|
9277
|
+
"name"
|
|
9278
|
+
],
|
|
9279
|
+
[
|
|
9280
|
+
_dec55,
|
|
9298
9281
|
1,
|
|
9299
9282
|
"placement"
|
|
9300
9283
|
]
|
|
@@ -9324,12 +9307,19 @@ var init_color = __esm({
|
|
|
9324
9307
|
set disabled(_v) {
|
|
9325
9308
|
this.#___private_disabled_3 = _v;
|
|
9326
9309
|
}
|
|
9327
|
-
#
|
|
9310
|
+
#___private_name_4;
|
|
9311
|
+
get name() {
|
|
9312
|
+
return this.#___private_name_4;
|
|
9313
|
+
}
|
|
9314
|
+
set name(_v) {
|
|
9315
|
+
this.#___private_name_4 = _v;
|
|
9316
|
+
}
|
|
9317
|
+
#___private_placement_5;
|
|
9328
9318
|
get placement() {
|
|
9329
|
-
return this.#
|
|
9319
|
+
return this.#___private_placement_5;
|
|
9330
9320
|
}
|
|
9331
9321
|
set placement(_v) {
|
|
9332
|
-
this.#
|
|
9322
|
+
this.#___private_placement_5 = _v;
|
|
9333
9323
|
}
|
|
9334
9324
|
connectedCallback() {
|
|
9335
9325
|
this.#hasCustomTrigger = this.querySelector('[slot="trigger"]') !== null;
|
|
@@ -9374,21 +9364,24 @@ var init_color = __esm({
|
|
|
9374
9364
|
_initClass10();
|
|
9375
9365
|
}
|
|
9376
9366
|
constructor(...args) {
|
|
9377
|
-
super(...args), this.#hasCustomTrigger = (_initProto8(this), false), this.#___private_dropdown_1 = _init_dropdown(this), this.#___private_value_2 = _init_value5(this), this.#___private_disabled_3 = _init_disabled5(this, false), this.#
|
|
9367
|
+
super(...args), this.#hasCustomTrigger = (_initProto8(this), false), this.#___private_dropdown_1 = _init_dropdown(this), this.#___private_value_2 = _init_value5(this), this.#___private_disabled_3 = _init_disabled5(this, false), this.#___private_name_4 = _init_name4(this, null), this.#___private_placement_5 = _init_placement3(this, "bottom-start"), this.#handleInputChange = (event) => {
|
|
9378
9368
|
this.value = event.target.value;
|
|
9379
9369
|
dispatchControlEvent(this, "input", {
|
|
9370
|
+
name: this.name ?? void 0,
|
|
9380
9371
|
value: this.value,
|
|
9381
9372
|
event
|
|
9382
9373
|
});
|
|
9383
9374
|
}, this.#handlePickerInput = (event) => {
|
|
9384
9375
|
this.value = event.detail.value;
|
|
9385
9376
|
dispatchControlEvent(this, "input", {
|
|
9377
|
+
name: this.name ?? void 0,
|
|
9386
9378
|
value: this.value,
|
|
9387
9379
|
event
|
|
9388
9380
|
});
|
|
9389
9381
|
}, this.#handlePickerChange = (event) => {
|
|
9390
9382
|
this.value = event.detail.value;
|
|
9391
9383
|
dispatchControlEvent(this, "change", {
|
|
9384
|
+
name: this.name ?? void 0,
|
|
9392
9385
|
value: this.value,
|
|
9393
9386
|
event
|
|
9394
9387
|
});
|
|
@@ -9401,6 +9394,7 @@ var init_color = __esm({
|
|
|
9401
9394
|
}, this.#handlePickerApply = (event) => {
|
|
9402
9395
|
this.value = event.detail.value;
|
|
9403
9396
|
dispatchControlEvent(this, "change", {
|
|
9397
|
+
name: this.name ?? void 0,
|
|
9404
9398
|
value: this.value,
|
|
9405
9399
|
event
|
|
9406
9400
|
});
|
|
@@ -10626,7 +10620,7 @@ function applyDecs2203RFactory13() {
|
|
|
10626
10620
|
function _apply_decs_2203_r13(targetClass, memberDecs, classDecs, parentClass) {
|
|
10627
10621
|
return (_apply_decs_2203_r13 = applyDecs2203RFactory13())(targetClass, memberDecs, classDecs, parentClass);
|
|
10628
10622
|
}
|
|
10629
|
-
var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec113, _dec210, _dec38,
|
|
10623
|
+
var import_lit_html15, _dec31, _initClass13, _HTMLElement13, _dec113, _dec210, _dec38, _dec48, _dec56, _dec65, _dec74, _dec84, _dec94, _init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto9, _NumberInput, NumberInput;
|
|
10630
10624
|
var init_number = __esm({
|
|
10631
10625
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/number/index.ts"() {
|
|
10632
10626
|
"use strict";
|
|
@@ -10730,10 +10724,10 @@ var init_number = __esm({
|
|
|
10730
10724
|
}), _dec38 = Prop({
|
|
10731
10725
|
type: Number,
|
|
10732
10726
|
reflect: true
|
|
10733
|
-
}),
|
|
10727
|
+
}), _dec48 = Prop({
|
|
10734
10728
|
type: Number,
|
|
10735
10729
|
reflect: true
|
|
10736
|
-
}),
|
|
10730
|
+
}), _dec56 = Prop({
|
|
10737
10731
|
reflect: true
|
|
10738
10732
|
}), _dec65 = Prop({
|
|
10739
10733
|
type: Boolean,
|
|
@@ -10745,7 +10739,7 @@ var init_number = __esm({
|
|
|
10745
10739
|
});
|
|
10746
10740
|
NumberInput = class extends (_HTMLElement13 = HTMLElement) {
|
|
10747
10741
|
static {
|
|
10748
|
-
({ e: [_init_value6, _init_min, _init_max, _init_step,
|
|
10742
|
+
({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto9], c: [_NumberInput, _initClass13] } = _apply_decs_2203_r13(this, [
|
|
10749
10743
|
[
|
|
10750
10744
|
_dec113,
|
|
10751
10745
|
1,
|
|
@@ -10762,12 +10756,12 @@ var init_number = __esm({
|
|
|
10762
10756
|
"max"
|
|
10763
10757
|
],
|
|
10764
10758
|
[
|
|
10765
|
-
|
|
10759
|
+
_dec48,
|
|
10766
10760
|
1,
|
|
10767
10761
|
"step"
|
|
10768
10762
|
],
|
|
10769
10763
|
[
|
|
10770
|
-
|
|
10764
|
+
_dec56,
|
|
10771
10765
|
1,
|
|
10772
10766
|
"name"
|
|
10773
10767
|
],
|
|
@@ -10862,20 +10856,28 @@ var init_number = __esm({
|
|
|
10862
10856
|
return;
|
|
10863
10857
|
}
|
|
10864
10858
|
this.value = coerceNumber(target.value);
|
|
10865
|
-
|
|
10859
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
10860
|
+
const detail = {
|
|
10861
|
+
name,
|
|
10866
10862
|
value: this.value,
|
|
10867
10863
|
event
|
|
10868
|
-
}
|
|
10864
|
+
};
|
|
10865
|
+
dispatchControlEvent(this, "input", detail);
|
|
10866
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
10869
10867
|
}
|
|
10870
10868
|
handleChange(event, target) {
|
|
10871
10869
|
if (!target) {
|
|
10872
10870
|
return;
|
|
10873
10871
|
}
|
|
10874
10872
|
this.value = coerceNumber(target.value);
|
|
10875
|
-
|
|
10873
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
10874
|
+
const detail = {
|
|
10875
|
+
name,
|
|
10876
10876
|
value: this.value,
|
|
10877
10877
|
event
|
|
10878
|
-
}
|
|
10878
|
+
};
|
|
10879
|
+
dispatchControlEvent(this, "change", detail);
|
|
10880
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
10879
10881
|
}
|
|
10880
10882
|
addActiveLayer(button) {
|
|
10881
10883
|
const layer = document.createElement("div");
|
|
@@ -10913,7 +10915,7 @@ var init_number = __esm({
|
|
|
10913
10915
|
_initClass13();
|
|
10914
10916
|
}
|
|
10915
10917
|
constructor(...args) {
|
|
10916
|
-
super(...args), this.#___private_value_1 = (_initProto9(this), _init_value6(this)), this.#___private_min_2 = _init_min(this), this.#___private_max_3 = _init_max(this), this.#___private_step_4 = _init_step(this), this.#___private_name_5 =
|
|
10918
|
+
super(...args), this.#___private_value_1 = (_initProto9(this), _init_value6(this)), this.#___private_min_2 = _init_min(this), this.#___private_max_3 = _init_max(this), this.#___private_step_4 = _init_step(this), this.#___private_name_5 = _init_name5(this), this.#___private_disabled_6 = _init_disabled6(this), this.#___private_control_7 = _init_control3(this);
|
|
10917
10919
|
}
|
|
10918
10920
|
};
|
|
10919
10921
|
}
|
|
@@ -11296,7 +11298,7 @@ function applyDecs2203RFactory14() {
|
|
|
11296
11298
|
function _apply_decs_2203_r14(targetClass, memberDecs, classDecs, parentClass) {
|
|
11297
11299
|
return (_apply_decs_2203_r14 = applyDecs2203RFactory14())(targetClass, memberDecs, classDecs, parentClass);
|
|
11298
11300
|
}
|
|
11299
|
-
var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310,
|
|
11301
|
+
var import_lit_html16, _dec39, _initClass14, _HTMLElement14, _dec114, _dec211, _dec310, _dec49, _dec57, _init_value7, _init_disabled7, _init_control4, _init_name6, _initProto10, _Origin, Origin;
|
|
11300
11302
|
var init_origin = __esm({
|
|
11301
11303
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/origin/index.ts"() {
|
|
11302
11304
|
"use strict";
|
|
@@ -11445,15 +11447,15 @@ var init_origin = __esm({
|
|
|
11445
11447
|
}), _dec211 = Prop({
|
|
11446
11448
|
type: Boolean,
|
|
11447
11449
|
reflect: true
|
|
11448
|
-
}), _dec310 = Query("ease-dropdown"),
|
|
11450
|
+
}), _dec310 = Query("ease-dropdown"), _dec49 = Prop({
|
|
11449
11451
|
reflect: true,
|
|
11450
11452
|
defaultValue: ""
|
|
11451
|
-
}),
|
|
11453
|
+
}), _dec57 = Listen("change", {
|
|
11452
11454
|
selector: "ease-dropdown"
|
|
11453
11455
|
});
|
|
11454
11456
|
Origin = class extends (_HTMLElement14 = HTMLElement) {
|
|
11455
11457
|
static {
|
|
11456
|
-
({ e: [_init_value7, _init_disabled7, _init_control4,
|
|
11458
|
+
({ e: [_init_value7, _init_disabled7, _init_control4, _init_name6, _initProto10], c: [_Origin, _initClass14] } = _apply_decs_2203_r14(this, [
|
|
11457
11459
|
[
|
|
11458
11460
|
_dec114,
|
|
11459
11461
|
1,
|
|
@@ -11470,12 +11472,12 @@ var init_origin = __esm({
|
|
|
11470
11472
|
"control"
|
|
11471
11473
|
],
|
|
11472
11474
|
[
|
|
11473
|
-
|
|
11475
|
+
_dec49,
|
|
11474
11476
|
1,
|
|
11475
11477
|
"name"
|
|
11476
11478
|
],
|
|
11477
11479
|
[
|
|
11478
|
-
|
|
11480
|
+
_dec57,
|
|
11479
11481
|
2,
|
|
11480
11482
|
"handleChange"
|
|
11481
11483
|
]
|
|
@@ -11528,7 +11530,7 @@ var init_origin = __esm({
|
|
|
11528
11530
|
_initClass14();
|
|
11529
11531
|
}
|
|
11530
11532
|
constructor(...args) {
|
|
11531
|
-
super(...args), this.#___private_value_1 = (_initProto10(this), _init_value7(this, "center-center")), this.#___private_disabled_2 = _init_disabled7(this), this.#___private_control_3 = _init_control4(this), this.#___private_name_4 =
|
|
11533
|
+
super(...args), this.#___private_value_1 = (_initProto10(this), _init_value7(this, "center-center")), this.#___private_disabled_2 = _init_disabled7(this), this.#___private_control_3 = _init_control4(this), this.#___private_name_4 = _init_name6(this, ""), this.handleValueChange = (event) => {
|
|
11532
11534
|
this.value = String(this.control?.value ?? "center-center");
|
|
11533
11535
|
dispatchControlEvent(this, "change", {
|
|
11534
11536
|
value: this.value,
|
|
@@ -12660,7 +12662,7 @@ function applyDecs2203RFactory16() {
|
|
|
12660
12662
|
function _apply_decs_2203_r16(targetClass, memberDecs, classDecs, parentClass) {
|
|
12661
12663
|
return (_apply_decs_2203_r16 = applyDecs2203RFactory16())(targetClass, memberDecs, classDecs, parentClass);
|
|
12662
12664
|
}
|
|
12663
|
-
var import_lit_html18, _dec41, _initClass16, _HTMLElement16, _dec116, _dec213, _dec312,
|
|
12665
|
+
var import_lit_html18, _dec41, _initClass16, _HTMLElement16, _dec116, _dec213, _dec312, _dec410, _dec58, _dec66, _init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto12, _RadioInput, RadioInput;
|
|
12664
12666
|
var init_input2 = __esm({
|
|
12665
12667
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/input.ts"() {
|
|
12666
12668
|
"use strict";
|
|
@@ -12929,15 +12931,15 @@ var init_input2 = __esm({
|
|
|
12929
12931
|
reflect: true
|
|
12930
12932
|
}), _dec312 = Prop({
|
|
12931
12933
|
reflect: true
|
|
12932
|
-
}),
|
|
12934
|
+
}), _dec410 = Prop({
|
|
12933
12935
|
type: Boolean,
|
|
12934
12936
|
reflect: true
|
|
12935
|
-
}),
|
|
12937
|
+
}), _dec58 = Query("button"), _dec66 = Listen("click", {
|
|
12936
12938
|
selector: "button"
|
|
12937
12939
|
});
|
|
12938
12940
|
RadioInput = class extends (_HTMLElement16 = HTMLElement) {
|
|
12939
12941
|
static {
|
|
12940
|
-
({ e: [_init_checked2,
|
|
12942
|
+
({ e: [_init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto12], c: [_RadioInput, _initClass16] } = _apply_decs_2203_r16(this, [
|
|
12941
12943
|
[
|
|
12942
12944
|
_dec116,
|
|
12943
12945
|
1,
|
|
@@ -12954,12 +12956,12 @@ var init_input2 = __esm({
|
|
|
12954
12956
|
"value"
|
|
12955
12957
|
],
|
|
12956
12958
|
[
|
|
12957
|
-
|
|
12959
|
+
_dec410,
|
|
12958
12960
|
1,
|
|
12959
12961
|
"disabled"
|
|
12960
12962
|
],
|
|
12961
12963
|
[
|
|
12962
|
-
|
|
12964
|
+
_dec58,
|
|
12963
12965
|
1,
|
|
12964
12966
|
"control"
|
|
12965
12967
|
],
|
|
@@ -13052,16 +13054,22 @@ var init_input2 = __esm({
|
|
|
13052
13054
|
return;
|
|
13053
13055
|
}
|
|
13054
13056
|
this.checked = true;
|
|
13055
|
-
|
|
13057
|
+
const groupName = this.closest("ease-radio-group")?.getAttribute("name") ?? void 0;
|
|
13058
|
+
const name = this.getAttribute("name") ?? groupName ?? void 0;
|
|
13059
|
+
const detail = {
|
|
13060
|
+
name,
|
|
13056
13061
|
value: this.checked,
|
|
13057
13062
|
event
|
|
13058
|
-
}
|
|
13063
|
+
};
|
|
13064
|
+
dispatchControlEvent(this, "radio", detail);
|
|
13065
|
+
dispatchControlEvent(this, "change", detail);
|
|
13066
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
13059
13067
|
}
|
|
13060
13068
|
static {
|
|
13061
13069
|
_initClass16();
|
|
13062
13070
|
}
|
|
13063
13071
|
constructor(...args) {
|
|
13064
|
-
super(...args), this.#___private_checked_1 = (_initProto12(this), _init_checked2(this)), this.#___private_name_2 =
|
|
13072
|
+
super(...args), this.#___private_checked_1 = (_initProto12(this), _init_checked2(this)), this.#___private_name_2 = _init_name7(this), this.#___private_value_3 = _init_value9(this), this.#___private_disabled_4 = _init_disabled8(this), this.#___private_control_5 = _init_control5(this), this._firstRender = true, this.filterId = `goo-${crypto.randomUUID()}`;
|
|
13065
13073
|
}
|
|
13066
13074
|
};
|
|
13067
13075
|
}
|
|
@@ -13444,7 +13452,7 @@ function applyDecs2203RFactory17() {
|
|
|
13444
13452
|
function _apply_decs_2203_r17(targetClass, memberDecs, classDecs, parentClass) {
|
|
13445
13453
|
return (_apply_decs_2203_r17 = applyDecs2203RFactory17())(targetClass, memberDecs, classDecs, parentClass);
|
|
13446
13454
|
}
|
|
13447
|
-
var import_lit_html19, _dec50, _initClass17, _HTMLElement17, _dec117, _dec214, _dec313,
|
|
13455
|
+
var import_lit_html19, _dec50, _initClass17, _HTMLElement17, _dec117, _dec214, _dec313, _dec411, _dec59, _dec67, _dec75, _dec85, _dec95, _dec104, _dec118, _init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl, _initProto13, _Slider, Slider;
|
|
13448
13456
|
var init_slider = __esm({
|
|
13449
13457
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/slider/index.ts"() {
|
|
13450
13458
|
"use strict";
|
|
@@ -13566,11 +13574,15 @@ var init_slider = __esm({
|
|
|
13566
13574
|
.step=${this.step ?? 1}
|
|
13567
13575
|
.value=${String(this.value ?? 0)}
|
|
13568
13576
|
?disabled=${this.disabled}
|
|
13577
|
+
@input=${this.handleRangeInput}
|
|
13578
|
+
@change=${this.handleRangeChange}
|
|
13569
13579
|
?aria-disabled=${this.disabled}
|
|
13570
13580
|
/>
|
|
13571
13581
|
|
|
13572
13582
|
<ease-input
|
|
13573
13583
|
part="value"
|
|
13584
|
+
@input=${this.handleValueInput}
|
|
13585
|
+
@change=${this.handleValueChange}
|
|
13574
13586
|
type="number"
|
|
13575
13587
|
placeholder="-"
|
|
13576
13588
|
.disabled=${Boolean(this.disabled)}
|
|
@@ -13588,10 +13600,10 @@ var init_slider = __esm({
|
|
|
13588
13600
|
}), _dec313 = Prop({
|
|
13589
13601
|
type: Number,
|
|
13590
13602
|
reflect: true
|
|
13591
|
-
}),
|
|
13603
|
+
}), _dec411 = Prop({
|
|
13592
13604
|
type: Number,
|
|
13593
13605
|
reflect: true
|
|
13594
|
-
}),
|
|
13606
|
+
}), _dec59 = Prop({
|
|
13595
13607
|
type: Boolean,
|
|
13596
13608
|
reflect: true
|
|
13597
13609
|
}), _dec67 = Query("input"), _dec75 = Query("ease-input"), _dec85 = Listen("input", {
|
|
@@ -13624,12 +13636,12 @@ var init_slider = __esm({
|
|
|
13624
13636
|
"max"
|
|
13625
13637
|
],
|
|
13626
13638
|
[
|
|
13627
|
-
|
|
13639
|
+
_dec411,
|
|
13628
13640
|
1,
|
|
13629
13641
|
"step"
|
|
13630
13642
|
],
|
|
13631
13643
|
[
|
|
13632
|
-
|
|
13644
|
+
_dec59,
|
|
13633
13645
|
1,
|
|
13634
13646
|
"disabled"
|
|
13635
13647
|
],
|
|
@@ -13742,10 +13754,14 @@ var init_slider = __esm({
|
|
|
13742
13754
|
if (this.valueControl) {
|
|
13743
13755
|
this.valueControl.value = numericValue === null ? "" : String(numericValue);
|
|
13744
13756
|
}
|
|
13745
|
-
|
|
13757
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
13758
|
+
const detail = {
|
|
13759
|
+
name,
|
|
13746
13760
|
value: this.value,
|
|
13747
13761
|
event
|
|
13748
|
-
}
|
|
13762
|
+
};
|
|
13763
|
+
dispatchControlEvent(this, "input", detail);
|
|
13764
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
13749
13765
|
}
|
|
13750
13766
|
handleRangeChange(event, target) {
|
|
13751
13767
|
if (target) {
|
|
@@ -13756,10 +13772,14 @@ var init_slider = __esm({
|
|
|
13756
13772
|
this.valueControl.value = numericValue === null ? "" : String(numericValue);
|
|
13757
13773
|
}
|
|
13758
13774
|
}
|
|
13759
|
-
|
|
13775
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
13776
|
+
const detail = {
|
|
13777
|
+
name,
|
|
13760
13778
|
value: this.value,
|
|
13761
13779
|
event
|
|
13762
|
-
}
|
|
13780
|
+
};
|
|
13781
|
+
dispatchControlEvent(this, "change", detail);
|
|
13782
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
13763
13783
|
}
|
|
13764
13784
|
handleValueInput(event) {
|
|
13765
13785
|
const rawValue = event.detail?.value ?? "";
|
|
@@ -13769,10 +13789,15 @@ var init_slider = __esm({
|
|
|
13769
13789
|
if (this.control) {
|
|
13770
13790
|
this.control.value = String(numericValue ?? 0);
|
|
13771
13791
|
}
|
|
13772
|
-
|
|
13792
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
13793
|
+
const controlEvent = event.detail?.event ?? event;
|
|
13794
|
+
const detail = {
|
|
13795
|
+
name,
|
|
13773
13796
|
value: this.value,
|
|
13774
|
-
event:
|
|
13775
|
-
}
|
|
13797
|
+
event: controlEvent
|
|
13798
|
+
};
|
|
13799
|
+
dispatchControlEvent(this, "input", detail);
|
|
13800
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
13776
13801
|
}
|
|
13777
13802
|
handleValueChange(event) {
|
|
13778
13803
|
const rawValue = event.detail?.value ?? "";
|
|
@@ -13782,10 +13807,15 @@ var init_slider = __esm({
|
|
|
13782
13807
|
if (this.control) {
|
|
13783
13808
|
this.control.value = String(numericValue ?? 0);
|
|
13784
13809
|
}
|
|
13785
|
-
|
|
13810
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
13811
|
+
const controlEvent = event.detail?.event ?? event;
|
|
13812
|
+
const detail = {
|
|
13813
|
+
name,
|
|
13786
13814
|
value: this.value,
|
|
13787
|
-
event:
|
|
13788
|
-
}
|
|
13815
|
+
event: controlEvent
|
|
13816
|
+
};
|
|
13817
|
+
dispatchControlEvent(this, "change", detail);
|
|
13818
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
13789
13819
|
}
|
|
13790
13820
|
updateProgress() {
|
|
13791
13821
|
if (!this.control) {
|
|
@@ -14184,7 +14214,7 @@ function applyDecs2203RFactory18() {
|
|
|
14184
14214
|
function _apply_decs_2203_r18(targetClass, memberDecs, classDecs, parentClass) {
|
|
14185
14215
|
return (_apply_decs_2203_r18 = applyDecs2203RFactory18())(targetClass, memberDecs, classDecs, parentClass);
|
|
14186
14216
|
}
|
|
14187
|
-
var import_lit_html20, _dec51, _initClass18, _HTMLElement18, _dec119, _dec215, _dec314,
|
|
14217
|
+
var import_lit_html20, _dec51, _initClass18, _HTMLElement18, _dec119, _dec215, _dec314, _dec412, _init_checked3, _init_disabled10, _init_control7, _initProto14, _Toggle, Toggle;
|
|
14188
14218
|
var init_toggle = __esm({
|
|
14189
14219
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/toggle/index.ts"() {
|
|
14190
14220
|
"use strict";
|
|
@@ -14312,7 +14342,7 @@ var init_toggle = __esm({
|
|
|
14312
14342
|
}), _dec215 = Prop({
|
|
14313
14343
|
type: Boolean,
|
|
14314
14344
|
reflect: true
|
|
14315
|
-
}), _dec314 = Query("button"),
|
|
14345
|
+
}), _dec314 = Query("button"), _dec412 = Listen("click", {
|
|
14316
14346
|
selector: "button"
|
|
14317
14347
|
});
|
|
14318
14348
|
Toggle = class extends (_HTMLElement18 = HTMLElement) {
|
|
@@ -14334,7 +14364,7 @@ var init_toggle = __esm({
|
|
|
14334
14364
|
"control"
|
|
14335
14365
|
],
|
|
14336
14366
|
[
|
|
14337
|
-
|
|
14367
|
+
_dec412,
|
|
14338
14368
|
2,
|
|
14339
14369
|
"handleClick"
|
|
14340
14370
|
]
|
|
@@ -14379,10 +14409,15 @@ var init_toggle = __esm({
|
|
|
14379
14409
|
return;
|
|
14380
14410
|
}
|
|
14381
14411
|
this.checked = !this.checked;
|
|
14382
|
-
|
|
14412
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
14413
|
+
const detail = {
|
|
14414
|
+
name,
|
|
14383
14415
|
value: this.checked,
|
|
14384
14416
|
event
|
|
14385
|
-
}
|
|
14417
|
+
};
|
|
14418
|
+
dispatchControlEvent(this, "toggle", detail);
|
|
14419
|
+
dispatchControlEvent(this, "change", detail);
|
|
14420
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
14386
14421
|
}
|
|
14387
14422
|
static {
|
|
14388
14423
|
_initClass18();
|
|
@@ -14771,14 +14806,14 @@ function applyDecs2203RFactory19() {
|
|
|
14771
14806
|
function _apply_decs_2203_r19(targetClass, memberDecs, classDecs, parentClass) {
|
|
14772
14807
|
return (_apply_decs_2203_r19 = applyDecs2203RFactory19())(targetClass, memberDecs, classDecs, parentClass);
|
|
14773
14808
|
}
|
|
14774
|
-
var import_lit_html21,
|
|
14809
|
+
var import_lit_html21, _dec60, _initClass19, _HTMLElement19, _dec120, _dec216, _init_label, _init_fullWidth2, _initProto15, _Field, Field;
|
|
14775
14810
|
var init_field = __esm({
|
|
14776
14811
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/field/index.ts"() {
|
|
14777
14812
|
"use strict";
|
|
14778
14813
|
import_lit_html21 = require("lit-html");
|
|
14779
14814
|
init_Component();
|
|
14780
14815
|
init_Prop();
|
|
14781
|
-
|
|
14816
|
+
_dec60 = Component({
|
|
14782
14817
|
tag: "ease-field",
|
|
14783
14818
|
autoSlot: false,
|
|
14784
14819
|
shadowMode: "open",
|
|
@@ -14867,7 +14902,7 @@ var init_field = __esm({
|
|
|
14867
14902
|
"fullWidth"
|
|
14868
14903
|
]
|
|
14869
14904
|
], [
|
|
14870
|
-
|
|
14905
|
+
_dec60
|
|
14871
14906
|
], _HTMLElement19));
|
|
14872
14907
|
}
|
|
14873
14908
|
#___private_label_1;
|
|
@@ -15271,7 +15306,7 @@ function applyDecs2203RFactory20() {
|
|
|
15271
15306
|
function _apply_decs_2203_r20(targetClass, memberDecs, classDecs, parentClass) {
|
|
15272
15307
|
return (_apply_decs_2203_r20 = applyDecs2203RFactory20())(targetClass, memberDecs, classDecs, parentClass);
|
|
15273
15308
|
}
|
|
15274
|
-
var import_lit_html22,
|
|
15309
|
+
var import_lit_html22, _dec61, _initClass20, _HTMLElement20, _dec121, _dec217, _dec315, _dec413, _dec510, _dec68, _dec76, _init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement2, _init_bodyElement, _initProto16, _Panel, Panel;
|
|
15275
15310
|
var init_panel = __esm({
|
|
15276
15311
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts"() {
|
|
15277
15312
|
"use strict";
|
|
@@ -15281,7 +15316,7 @@ var init_panel = __esm({
|
|
|
15281
15316
|
init_Listen();
|
|
15282
15317
|
init_Prop();
|
|
15283
15318
|
init_Query();
|
|
15284
|
-
|
|
15319
|
+
_dec61 = Component({
|
|
15285
15320
|
tag: "ease-panel",
|
|
15286
15321
|
shadowMode: "open",
|
|
15287
15322
|
styles: `
|
|
@@ -15346,7 +15381,6 @@ var init_panel = __esm({
|
|
|
15346
15381
|
align-items: center;
|
|
15347
15382
|
gap: 2px;
|
|
15348
15383
|
flex-grow: 1;
|
|
15349
|
-
margin: 0 0 0 4px;
|
|
15350
15384
|
}
|
|
15351
15385
|
|
|
15352
15386
|
[part="tabs"]:empty {
|
|
@@ -15355,17 +15389,18 @@ var init_panel = __esm({
|
|
|
15355
15389
|
|
|
15356
15390
|
[part="tab"] {
|
|
15357
15391
|
appearance: none;
|
|
15392
|
+
border-radius: var(--ease-panel-tab-radius, var(--radii-md));
|
|
15393
|
+
background-color: var(--ease-panel-tab-background, transparent);
|
|
15394
|
+
box-sizing: border-box;
|
|
15395
|
+
padding: var(--ease-panel-tab-padding, 4px 8px);
|
|
15358
15396
|
font-size: var(--ease-panel-tab-font-size);
|
|
15359
15397
|
font-weight: var(--ease-panel-tab-font-weight);
|
|
15360
15398
|
line-height: 24px;
|
|
15361
15399
|
font-family: var(--ease-font-family);
|
|
15362
15400
|
color: var(--ease-panel-tab-color);
|
|
15363
|
-
background-color: transparent;
|
|
15364
15401
|
border: none;
|
|
15365
|
-
padding: 4px 8px;
|
|
15366
15402
|
margin: 0;
|
|
15367
15403
|
cursor: pointer;
|
|
15368
|
-
border-radius: var(--ease-panel-tab-radius);
|
|
15369
15404
|
transition: color 200ms, background-color 200ms;
|
|
15370
15405
|
transition-timing-function: cubic-bezier(.25, 0, .5, 1);
|
|
15371
15406
|
}
|
|
@@ -15531,14 +15566,14 @@ var init_panel = __esm({
|
|
|
15531
15566
|
reflect: true,
|
|
15532
15567
|
attribute: "max-height",
|
|
15533
15568
|
defaultValue: null
|
|
15534
|
-
}),
|
|
15569
|
+
}), _dec413 = Query('[part="content"]'), _dec510 = Query('[part="body"]'), _dec68 = Listen("slotchange", {
|
|
15535
15570
|
selector: 'slot[name="footer"]'
|
|
15536
15571
|
}), _dec76 = Listen("slotchange", {
|
|
15537
15572
|
selector: "slot:not([name])"
|
|
15538
15573
|
});
|
|
15539
15574
|
Panel = class extends (_HTMLElement20 = HTMLElement) {
|
|
15540
15575
|
static {
|
|
15541
|
-
({ e: [_init_activeTab, _init_headline, _init_maxHeight2,
|
|
15576
|
+
({ e: [_init_activeTab, _init_headline, _init_maxHeight2, _init_contentElement2, _init_bodyElement, _initProto16], c: [_Panel, _initClass20] } = _apply_decs_2203_r20(this, [
|
|
15542
15577
|
[
|
|
15543
15578
|
_dec121,
|
|
15544
15579
|
1,
|
|
@@ -15555,7 +15590,7 @@ var init_panel = __esm({
|
|
|
15555
15590
|
"maxHeight"
|
|
15556
15591
|
],
|
|
15557
15592
|
[
|
|
15558
|
-
|
|
15593
|
+
_dec413,
|
|
15559
15594
|
1,
|
|
15560
15595
|
"contentElement"
|
|
15561
15596
|
],
|
|
@@ -15575,7 +15610,7 @@ var init_panel = __esm({
|
|
|
15575
15610
|
"onDefaultSlotChange"
|
|
15576
15611
|
]
|
|
15577
15612
|
], [
|
|
15578
|
-
|
|
15613
|
+
_dec61
|
|
15579
15614
|
], _HTMLElement20));
|
|
15580
15615
|
}
|
|
15581
15616
|
#tabs;
|
|
@@ -15875,7 +15910,7 @@ var init_panel = __esm({
|
|
|
15875
15910
|
_initClass20();
|
|
15876
15911
|
}
|
|
15877
15912
|
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 =
|
|
15913
|
+
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
15914
|
}
|
|
15880
15915
|
};
|
|
15881
15916
|
}
|
|
@@ -16258,7 +16293,7 @@ function applyDecs2203RFactory21() {
|
|
|
16258
16293
|
function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
|
|
16259
16294
|
return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
|
|
16260
16295
|
}
|
|
16261
|
-
var import_lit_html23,
|
|
16296
|
+
var import_lit_html23, _dec69, _initClass21, _HTMLElement21, _dec123, _dec218, _dec316, _dec414, _dec511, _init_value11, _init_defaultSlot, _initProto17, readControlValue, getControlName, _State, State;
|
|
16262
16297
|
var init_state = __esm({
|
|
16263
16298
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts"() {
|
|
16264
16299
|
"use strict";
|
|
@@ -16289,7 +16324,7 @@ var init_state = __esm({
|
|
|
16289
16324
|
}
|
|
16290
16325
|
return element.getAttribute?.("name") ?? null;
|
|
16291
16326
|
};
|
|
16292
|
-
|
|
16327
|
+
_dec69 = Component({
|
|
16293
16328
|
tag: "ease-state",
|
|
16294
16329
|
shadowMode: "open",
|
|
16295
16330
|
styles: `
|
|
@@ -16308,7 +16343,7 @@ var init_state = __esm({
|
|
|
16308
16343
|
reflect: true
|
|
16309
16344
|
}), _dec218 = Query("slot"), _dec316 = Listen("input", {
|
|
16310
16345
|
target: (host) => host
|
|
16311
|
-
}),
|
|
16346
|
+
}), _dec414 = Listen("change", {
|
|
16312
16347
|
target: (host) => host
|
|
16313
16348
|
}), _dec511 = Listen(CONTROL_CHANGE_EVENT, {
|
|
16314
16349
|
target: (host) => host
|
|
@@ -16332,7 +16367,7 @@ var init_state = __esm({
|
|
|
16332
16367
|
"handleInternalInput"
|
|
16333
16368
|
],
|
|
16334
16369
|
[
|
|
16335
|
-
|
|
16370
|
+
_dec414,
|
|
16336
16371
|
2,
|
|
16337
16372
|
"handleInternalChange"
|
|
16338
16373
|
],
|
|
@@ -16342,7 +16377,7 @@ var init_state = __esm({
|
|
|
16342
16377
|
"handleControlChange"
|
|
16343
16378
|
]
|
|
16344
16379
|
], [
|
|
16345
|
-
|
|
16380
|
+
_dec69
|
|
16346
16381
|
], _HTMLElement21));
|
|
16347
16382
|
}
|
|
16348
16383
|
#controls;
|
|
@@ -16930,7 +16965,7 @@ function applyDecs2203RFactory22() {
|
|
|
16930
16965
|
function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
|
|
16931
16966
|
return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
|
|
16932
16967
|
}
|
|
16933
|
-
var import_lit_html24,
|
|
16968
|
+
var import_lit_html24, _dec70, _initClass22, _HTMLElement22, _dec124, _dec219, _dec317, _dec415, _dec512, _dec610, _init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement3, _initProto18, _Tooltip, Tooltip;
|
|
16934
16969
|
var init_tooltip = __esm({
|
|
16935
16970
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts"() {
|
|
16936
16971
|
"use strict";
|
|
@@ -16940,7 +16975,7 @@ var init_tooltip = __esm({
|
|
|
16940
16975
|
init_OutsideClick();
|
|
16941
16976
|
init_Prop();
|
|
16942
16977
|
init_Query();
|
|
16943
|
-
|
|
16978
|
+
_dec70 = Component({
|
|
16944
16979
|
tag: "ease-tooltip",
|
|
16945
16980
|
shadowMode: "open",
|
|
16946
16981
|
styles: `
|
|
@@ -16983,7 +17018,7 @@ var init_tooltip = __esm({
|
|
|
16983
17018
|
}), _dec317 = Prop({
|
|
16984
17019
|
reflect: true,
|
|
16985
17020
|
defaultValue: "top-center"
|
|
16986
|
-
}),
|
|
17021
|
+
}), _dec415 = Query('[slot="trigger"]'), _dec512 = Query("[data-tooltip-content]"), _dec610 = OutsideClick({
|
|
16987
17022
|
content: (host) => host.contentElement,
|
|
16988
17023
|
triggers: (host) => [
|
|
16989
17024
|
host.triggerElement
|
|
@@ -16992,7 +17027,7 @@ var init_tooltip = __esm({
|
|
|
16992
17027
|
});
|
|
16993
17028
|
Tooltip = class extends (_HTMLElement22 = HTMLElement) {
|
|
16994
17029
|
static {
|
|
16995
|
-
({ e: [_init_open3, _init_delay, _init_placement4, _init_triggerElement,
|
|
17030
|
+
({ e: [_init_open3, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement3, _initProto18], c: [_Tooltip, _initClass22] } = _apply_decs_2203_r22(this, [
|
|
16996
17031
|
[
|
|
16997
17032
|
_dec124,
|
|
16998
17033
|
1,
|
|
@@ -17009,7 +17044,7 @@ var init_tooltip = __esm({
|
|
|
17009
17044
|
"placement"
|
|
17010
17045
|
],
|
|
17011
17046
|
[
|
|
17012
|
-
|
|
17047
|
+
_dec415,
|
|
17013
17048
|
1,
|
|
17014
17049
|
"triggerElement"
|
|
17015
17050
|
],
|
|
@@ -17024,7 +17059,7 @@ var init_tooltip = __esm({
|
|
|
17024
17059
|
"handleOutsideDismiss"
|
|
17025
17060
|
]
|
|
17026
17061
|
], [
|
|
17027
|
-
|
|
17062
|
+
_dec70
|
|
17028
17063
|
], _HTMLElement22));
|
|
17029
17064
|
}
|
|
17030
17065
|
#hoverTimer;
|
|
@@ -17175,7 +17210,7 @@ var init_tooltip = __esm({
|
|
|
17175
17210
|
_initClass22();
|
|
17176
17211
|
}
|
|
17177
17212
|
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 =
|
|
17213
|
+
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
17214
|
this.#startTimer(() => {
|
|
17180
17215
|
this.open = true;
|
|
17181
17216
|
});
|
|
@@ -17571,7 +17606,7 @@ function applyDecs2203RFactory23() {
|
|
|
17571
17606
|
function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
|
|
17572
17607
|
return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
|
|
17573
17608
|
}
|
|
17574
|
-
var import_lit_html25,
|
|
17609
|
+
var import_lit_html25, _dec71, _initClass23, _HTMLElement23, _dec125, _dec220, _dec318, _dec416, _init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto19, CENTER, DOTS_DATA, INNER_DOT_IDS, OUTER_DOT_IDS, forceReflow, getAngle, sortByAngle, LOOP_DURATION, ROTATION_DURATION, _LogoLoader, LogoLoader;
|
|
17575
17610
|
var init_logo = __esm({
|
|
17576
17611
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts"() {
|
|
17577
17612
|
"use strict";
|
|
@@ -17725,7 +17760,7 @@ var init_logo = __esm({
|
|
|
17725
17760
|
sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).filter((dot) => dot != null).sort((a, b) => getAngle(a) - getAngle(b));
|
|
17726
17761
|
LOOP_DURATION = 1500;
|
|
17727
17762
|
ROTATION_DURATION = 600;
|
|
17728
|
-
|
|
17763
|
+
_dec71 = Component({
|
|
17729
17764
|
tag: "ease-logo-loader",
|
|
17730
17765
|
styles: `
|
|
17731
17766
|
:host {
|
|
@@ -17969,7 +18004,7 @@ var init_logo = __esm({
|
|
|
17969
18004
|
type: Number,
|
|
17970
18005
|
attribute: "size",
|
|
17971
18006
|
defaultValue: 36
|
|
17972
|
-
}),
|
|
18007
|
+
}), _dec416 = Prop({
|
|
17973
18008
|
type: "string",
|
|
17974
18009
|
attribute: "aria-label",
|
|
17975
18010
|
defaultValue: null
|
|
@@ -17993,12 +18028,12 @@ var init_logo = __esm({
|
|
|
17993
18028
|
"size"
|
|
17994
18029
|
],
|
|
17995
18030
|
[
|
|
17996
|
-
|
|
18031
|
+
_dec416,
|
|
17997
18032
|
1,
|
|
17998
18033
|
"ariaLabel"
|
|
17999
18034
|
]
|
|
18000
18035
|
], [
|
|
18001
|
-
|
|
18036
|
+
_dec71
|
|
18002
18037
|
], _HTMLElement23));
|
|
18003
18038
|
}
|
|
18004
18039
|
#___private_loading_1;
|
|
@@ -18870,7 +18905,7 @@ function applyDecs2203RFactory24() {
|
|
|
18870
18905
|
function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
|
|
18871
18906
|
return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
|
|
18872
18907
|
}
|
|
18873
|
-
var import_lit_html26,
|
|
18908
|
+
var import_lit_html26, _dec77, _initClass24, _HTMLElement24, _dec126, _dec221, _init_paused, _init_canvasEl, _initProto20, clamp, mean, quantile, computePercentile, computeMedian, formatNumber, formatMs, rateFps, _MonitorFps, MonitorFps;
|
|
18874
18909
|
var init_fps = __esm({
|
|
18875
18910
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/fps.ts"() {
|
|
18876
18911
|
"use strict";
|
|
@@ -18933,7 +18968,7 @@ var init_fps = __esm({
|
|
|
18933
18968
|
}
|
|
18934
18969
|
return "poor";
|
|
18935
18970
|
};
|
|
18936
|
-
|
|
18971
|
+
_dec77 = Component({
|
|
18937
18972
|
tag: "ease-monitor-fps",
|
|
18938
18973
|
autoSlot: false,
|
|
18939
18974
|
shadowMode: "open",
|
|
@@ -19052,7 +19087,7 @@ var init_fps = __esm({
|
|
|
19052
19087
|
"canvasEl"
|
|
19053
19088
|
]
|
|
19054
19089
|
], [
|
|
19055
|
-
|
|
19090
|
+
_dec77
|
|
19056
19091
|
], _HTMLElement24));
|
|
19057
19092
|
}
|
|
19058
19093
|
#___private_paused_1;
|
|
@@ -19713,7 +19748,7 @@ function applyDecs2203RFactory25() {
|
|
|
19713
19748
|
function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
|
|
19714
19749
|
return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
|
|
19715
19750
|
}
|
|
19716
|
-
var import_lit_html27,
|
|
19751
|
+
var import_lit_html27, _dec78, _initClass25, _HTMLElement25, _dec127, _dec222, _dec319, _init_metrics, _init_network, _initProto21, METRIC_THRESHOLDS, GLOBAL_BENCHMARKS, rateMetric, formatMetric, formatBytes, estimateCarbonFootprint, _Monitor, Monitor;
|
|
19717
19752
|
var init_monitor = __esm({
|
|
19718
19753
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/index.ts"() {
|
|
19719
19754
|
"use strict";
|
|
@@ -19831,7 +19866,7 @@ var init_monitor = __esm({
|
|
|
19831
19866
|
const emissions = totalBytes / 1e9 * 0.81;
|
|
19832
19867
|
return `${emissions.toFixed(3)}g CO2 eq.`;
|
|
19833
19868
|
};
|
|
19834
|
-
|
|
19869
|
+
_dec78 = Component({
|
|
19835
19870
|
tag: "ease-monitor",
|
|
19836
19871
|
styles: `
|
|
19837
19872
|
:host {
|
|
@@ -19975,7 +20010,7 @@ var init_monitor = __esm({
|
|
|
19975
20010
|
"handleFpsUpdate"
|
|
19976
20011
|
]
|
|
19977
20012
|
], [
|
|
19978
|
-
|
|
20013
|
+
_dec78
|
|
19979
20014
|
], _HTMLElement25));
|
|
19980
20015
|
}
|
|
19981
20016
|
#___private_metrics_1;
|
|
@@ -20869,13 +20904,13 @@ function applyDecs2203RFactory26() {
|
|
|
20869
20904
|
function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
|
|
20870
20905
|
return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
|
|
20871
20906
|
}
|
|
20872
|
-
var import_lit_html28,
|
|
20907
|
+
var import_lit_html28, _dec79, _initClass26, _HTMLElement26, _IconAnchorAdd, IconAnchorAdd;
|
|
20873
20908
|
var init_anchor_add = __esm({
|
|
20874
20909
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-add.ts"() {
|
|
20875
20910
|
"use strict";
|
|
20876
20911
|
import_lit_html28 = require("lit-html");
|
|
20877
20912
|
init_Component();
|
|
20878
|
-
|
|
20913
|
+
_dec79 = Component({
|
|
20879
20914
|
tag: "ease-icon-anchor-add",
|
|
20880
20915
|
styles: `
|
|
20881
20916
|
:host {
|
|
@@ -20905,7 +20940,7 @@ var init_anchor_add = __esm({
|
|
|
20905
20940
|
IconAnchorAdd = class extends (_HTMLElement26 = HTMLElement) {
|
|
20906
20941
|
static {
|
|
20907
20942
|
({ c: [_IconAnchorAdd, _initClass26] } = _apply_decs_2203_r26(this, [], [
|
|
20908
|
-
|
|
20943
|
+
_dec79
|
|
20909
20944
|
], _HTMLElement26));
|
|
20910
20945
|
}
|
|
20911
20946
|
static {
|
|
@@ -21292,13 +21327,13 @@ function applyDecs2203RFactory27() {
|
|
|
21292
21327
|
function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
|
|
21293
21328
|
return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
|
|
21294
21329
|
}
|
|
21295
|
-
var import_lit_html29,
|
|
21330
|
+
var import_lit_html29, _dec80, _initClass27, _HTMLElement27, _IconAnchorRemove, IconAnchorRemove;
|
|
21296
21331
|
var init_anchor_remove = __esm({
|
|
21297
21332
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-remove.ts"() {
|
|
21298
21333
|
"use strict";
|
|
21299
21334
|
import_lit_html29 = require("lit-html");
|
|
21300
21335
|
init_Component();
|
|
21301
|
-
|
|
21336
|
+
_dec80 = Component({
|
|
21302
21337
|
tag: "ease-icon-anchor-remove",
|
|
21303
21338
|
styles: `
|
|
21304
21339
|
:host {
|
|
@@ -21327,7 +21362,7 @@ var init_anchor_remove = __esm({
|
|
|
21327
21362
|
IconAnchorRemove = class extends (_HTMLElement27 = HTMLElement) {
|
|
21328
21363
|
static {
|
|
21329
21364
|
({ c: [_IconAnchorRemove, _initClass27] } = _apply_decs_2203_r27(this, [], [
|
|
21330
|
-
|
|
21365
|
+
_dec80
|
|
21331
21366
|
], _HTMLElement27));
|
|
21332
21367
|
}
|
|
21333
21368
|
static {
|
|
@@ -21714,13 +21749,13 @@ function applyDecs2203RFactory28() {
|
|
|
21714
21749
|
function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
|
|
21715
21750
|
return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
|
|
21716
21751
|
}
|
|
21717
|
-
var import_lit_html30,
|
|
21752
|
+
var import_lit_html30, _dec81, _initClass28, _HTMLElement28, _ArrowUp, ArrowUp;
|
|
21718
21753
|
var init_arrow_up = __esm({
|
|
21719
21754
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/arrow-up.ts"() {
|
|
21720
21755
|
"use strict";
|
|
21721
21756
|
import_lit_html30 = require("lit-html");
|
|
21722
21757
|
init_Component();
|
|
21723
|
-
|
|
21758
|
+
_dec81 = Component({
|
|
21724
21759
|
tag: "ease-icon-arrow-up",
|
|
21725
21760
|
styles: `
|
|
21726
21761
|
:host {
|
|
@@ -21745,7 +21780,7 @@ var init_arrow_up = __esm({
|
|
|
21745
21780
|
ArrowUp = class extends (_HTMLElement28 = HTMLElement) {
|
|
21746
21781
|
static {
|
|
21747
21782
|
({ c: [_ArrowUp, _initClass28] } = _apply_decs_2203_r28(this, [], [
|
|
21748
|
-
|
|
21783
|
+
_dec81
|
|
21749
21784
|
], _HTMLElement28));
|
|
21750
21785
|
}
|
|
21751
21786
|
static {
|
|
@@ -22132,13 +22167,13 @@ function applyDecs2203RFactory29() {
|
|
|
22132
22167
|
function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
|
|
22133
22168
|
return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
|
|
22134
22169
|
}
|
|
22135
|
-
var import_lit_html31,
|
|
22170
|
+
var import_lit_html31, _dec86, _initClass29, _HTMLElement29, _IconBezier, IconBezier;
|
|
22136
22171
|
var init_bezier = __esm({
|
|
22137
22172
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier.ts"() {
|
|
22138
22173
|
"use strict";
|
|
22139
22174
|
import_lit_html31 = require("lit-html");
|
|
22140
22175
|
init_Component();
|
|
22141
|
-
|
|
22176
|
+
_dec86 = Component({
|
|
22142
22177
|
tag: "ease-icon-bezier",
|
|
22143
22178
|
styles: `
|
|
22144
22179
|
:host {
|
|
@@ -22159,7 +22194,7 @@ var init_bezier = __esm({
|
|
|
22159
22194
|
IconBezier = class extends (_HTMLElement29 = HTMLElement) {
|
|
22160
22195
|
static {
|
|
22161
22196
|
({ c: [_IconBezier, _initClass29] } = _apply_decs_2203_r29(this, [], [
|
|
22162
|
-
|
|
22197
|
+
_dec86
|
|
22163
22198
|
], _HTMLElement29));
|
|
22164
22199
|
}
|
|
22165
22200
|
static {
|
|
@@ -22546,13 +22581,13 @@ function applyDecs2203RFactory30() {
|
|
|
22546
22581
|
function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
|
|
22547
22582
|
return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
|
|
22548
22583
|
}
|
|
22549
|
-
var import_lit_html32,
|
|
22584
|
+
var import_lit_html32, _dec87, _initClass30, _HTMLElement30, _IconBezierAngle, IconBezierAngle;
|
|
22550
22585
|
var init_bezier_angle = __esm({
|
|
22551
22586
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-angle.ts"() {
|
|
22552
22587
|
"use strict";
|
|
22553
22588
|
import_lit_html32 = require("lit-html");
|
|
22554
22589
|
init_Component();
|
|
22555
|
-
|
|
22590
|
+
_dec87 = Component({
|
|
22556
22591
|
tag: "ease-icon-bezier-angle",
|
|
22557
22592
|
styles: `
|
|
22558
22593
|
:host {
|
|
@@ -22580,7 +22615,7 @@ var init_bezier_angle = __esm({
|
|
|
22580
22615
|
IconBezierAngle = class extends (_HTMLElement30 = HTMLElement) {
|
|
22581
22616
|
static {
|
|
22582
22617
|
({ c: [_IconBezierAngle, _initClass30] } = _apply_decs_2203_r30(this, [], [
|
|
22583
|
-
|
|
22618
|
+
_dec87
|
|
22584
22619
|
], _HTMLElement30));
|
|
22585
22620
|
}
|
|
22586
22621
|
static {
|
|
@@ -22967,13 +23002,13 @@ function applyDecs2203RFactory31() {
|
|
|
22967
23002
|
function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
|
|
22968
23003
|
return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
|
|
22969
23004
|
}
|
|
22970
|
-
var import_lit_html33,
|
|
23005
|
+
var import_lit_html33, _dec88, _initClass31, _HTMLElement31, _IconBezierDistribute, IconBezierDistribute;
|
|
22971
23006
|
var init_bezier_distribute = __esm({
|
|
22972
23007
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-distribute.ts"() {
|
|
22973
23008
|
"use strict";
|
|
22974
23009
|
import_lit_html33 = require("lit-html");
|
|
22975
23010
|
init_Component();
|
|
22976
|
-
|
|
23011
|
+
_dec88 = Component({
|
|
22977
23012
|
tag: "ease-icon-bezier-distribute",
|
|
22978
23013
|
styles: `
|
|
22979
23014
|
:host {
|
|
@@ -23002,7 +23037,7 @@ var init_bezier_distribute = __esm({
|
|
|
23002
23037
|
IconBezierDistribute = class extends (_HTMLElement31 = HTMLElement) {
|
|
23003
23038
|
static {
|
|
23004
23039
|
({ c: [_IconBezierDistribute, _initClass31] } = _apply_decs_2203_r31(this, [], [
|
|
23005
|
-
|
|
23040
|
+
_dec88
|
|
23006
23041
|
], _HTMLElement31));
|
|
23007
23042
|
}
|
|
23008
23043
|
static {
|
|
@@ -23389,13 +23424,13 @@ function applyDecs2203RFactory32() {
|
|
|
23389
23424
|
function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
|
|
23390
23425
|
return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
|
|
23391
23426
|
}
|
|
23392
|
-
var import_lit_html34,
|
|
23427
|
+
var import_lit_html34, _dec89, _initClass32, _HTMLElement32, _IconBezierLength, IconBezierLength;
|
|
23393
23428
|
var init_bezier_length = __esm({
|
|
23394
23429
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-length.ts"() {
|
|
23395
23430
|
"use strict";
|
|
23396
23431
|
import_lit_html34 = require("lit-html");
|
|
23397
23432
|
init_Component();
|
|
23398
|
-
|
|
23433
|
+
_dec89 = Component({
|
|
23399
23434
|
tag: "ease-icon-bezier-length",
|
|
23400
23435
|
styles: `
|
|
23401
23436
|
:host {
|
|
@@ -23421,7 +23456,7 @@ var init_bezier_length = __esm({
|
|
|
23421
23456
|
IconBezierLength = class extends (_HTMLElement32 = HTMLElement) {
|
|
23422
23457
|
static {
|
|
23423
23458
|
({ c: [_IconBezierLength, _initClass32] } = _apply_decs_2203_r32(this, [], [
|
|
23424
|
-
|
|
23459
|
+
_dec89
|
|
23425
23460
|
], _HTMLElement32));
|
|
23426
23461
|
}
|
|
23427
23462
|
static {
|
|
@@ -23808,13 +23843,13 @@ function applyDecs2203RFactory33() {
|
|
|
23808
23843
|
function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
|
|
23809
23844
|
return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
|
|
23810
23845
|
}
|
|
23811
|
-
var import_lit_html35,
|
|
23846
|
+
var import_lit_html35, _dec90, _initClass33, _HTMLElement33, _IconBezierMirror, IconBezierMirror;
|
|
23812
23847
|
var init_bezier_mirror = __esm({
|
|
23813
23848
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-mirror.ts"() {
|
|
23814
23849
|
"use strict";
|
|
23815
23850
|
import_lit_html35 = require("lit-html");
|
|
23816
23851
|
init_Component();
|
|
23817
|
-
|
|
23852
|
+
_dec90 = Component({
|
|
23818
23853
|
tag: "ease-icon-bezier-mirror",
|
|
23819
23854
|
styles: `
|
|
23820
23855
|
:host {
|
|
@@ -23840,7 +23875,7 @@ var init_bezier_mirror = __esm({
|
|
|
23840
23875
|
IconBezierMirror = class extends (_HTMLElement33 = HTMLElement) {
|
|
23841
23876
|
static {
|
|
23842
23877
|
({ c: [_IconBezierMirror, _initClass33] } = _apply_decs_2203_r33(this, [], [
|
|
23843
|
-
|
|
23878
|
+
_dec90
|
|
23844
23879
|
], _HTMLElement33));
|
|
23845
23880
|
}
|
|
23846
23881
|
static {
|
|
@@ -24227,13 +24262,13 @@ function applyDecs2203RFactory34() {
|
|
|
24227
24262
|
function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
|
|
24228
24263
|
return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
|
|
24229
24264
|
}
|
|
24230
|
-
var import_lit_html36,
|
|
24265
|
+
var import_lit_html36, _dec91, _initClass34, _HTMLElement34, _IconCheck, IconCheck;
|
|
24231
24266
|
var init_check = __esm({
|
|
24232
24267
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/check.ts"() {
|
|
24233
24268
|
"use strict";
|
|
24234
24269
|
import_lit_html36 = require("lit-html");
|
|
24235
24270
|
init_Component();
|
|
24236
|
-
|
|
24271
|
+
_dec91 = Component({
|
|
24237
24272
|
tag: "ease-icon-check",
|
|
24238
24273
|
styles: `
|
|
24239
24274
|
:host {
|
|
@@ -24258,7 +24293,7 @@ var init_check = __esm({
|
|
|
24258
24293
|
IconCheck = class extends (_HTMLElement34 = HTMLElement) {
|
|
24259
24294
|
static {
|
|
24260
24295
|
({ c: [_IconCheck, _initClass34] } = _apply_decs_2203_r34(this, [], [
|
|
24261
|
-
|
|
24296
|
+
_dec91
|
|
24262
24297
|
], _HTMLElement34));
|
|
24263
24298
|
}
|
|
24264
24299
|
static {
|
|
@@ -24645,13 +24680,13 @@ function applyDecs2203RFactory35() {
|
|
|
24645
24680
|
function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
|
|
24646
24681
|
return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
|
|
24647
24682
|
}
|
|
24648
|
-
var import_lit_html37,
|
|
24683
|
+
var import_lit_html37, _dec96, _initClass35, _HTMLElement35, _IconCircleArrowLeft, IconCircleArrowLeft;
|
|
24649
24684
|
var init_circle_arrow_left = __esm({
|
|
24650
24685
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-left.ts"() {
|
|
24651
24686
|
"use strict";
|
|
24652
24687
|
import_lit_html37 = require("lit-html");
|
|
24653
24688
|
init_Component();
|
|
24654
|
-
|
|
24689
|
+
_dec96 = Component({
|
|
24655
24690
|
tag: "ease-icon-circle-arrow-left",
|
|
24656
24691
|
styles: `
|
|
24657
24692
|
:host {
|
|
@@ -24676,7 +24711,7 @@ var init_circle_arrow_left = __esm({
|
|
|
24676
24711
|
IconCircleArrowLeft = class extends (_HTMLElement35 = HTMLElement) {
|
|
24677
24712
|
static {
|
|
24678
24713
|
({ c: [_IconCircleArrowLeft, _initClass35] } = _apply_decs_2203_r35(this, [], [
|
|
24679
|
-
|
|
24714
|
+
_dec96
|
|
24680
24715
|
], _HTMLElement35));
|
|
24681
24716
|
}
|
|
24682
24717
|
static {
|
|
@@ -25063,13 +25098,13 @@ function applyDecs2203RFactory36() {
|
|
|
25063
25098
|
function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
|
|
25064
25099
|
return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
|
|
25065
25100
|
}
|
|
25066
|
-
var import_lit_html38,
|
|
25101
|
+
var import_lit_html38, _dec97, _initClass36, _HTMLElement36, _IconCircleArrowRight, IconCircleArrowRight;
|
|
25067
25102
|
var init_circle_arrow_right = __esm({
|
|
25068
25103
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-right.ts"() {
|
|
25069
25104
|
"use strict";
|
|
25070
25105
|
import_lit_html38 = require("lit-html");
|
|
25071
25106
|
init_Component();
|
|
25072
|
-
|
|
25107
|
+
_dec97 = Component({
|
|
25073
25108
|
tag: "ease-icon-circle-arrow-right",
|
|
25074
25109
|
styles: `
|
|
25075
25110
|
:host {
|
|
@@ -25094,7 +25129,7 @@ var init_circle_arrow_right = __esm({
|
|
|
25094
25129
|
IconCircleArrowRight = class extends (_HTMLElement36 = HTMLElement) {
|
|
25095
25130
|
static {
|
|
25096
25131
|
({ c: [_IconCircleArrowRight, _initClass36] } = _apply_decs_2203_r36(this, [], [
|
|
25097
|
-
|
|
25132
|
+
_dec97
|
|
25098
25133
|
], _HTMLElement36));
|
|
25099
25134
|
}
|
|
25100
25135
|
static {
|
|
@@ -25481,13 +25516,13 @@ function applyDecs2203RFactory37() {
|
|
|
25481
25516
|
function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
|
|
25482
25517
|
return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
|
|
25483
25518
|
}
|
|
25484
|
-
var import_lit_html39,
|
|
25519
|
+
var import_lit_html39, _dec98, _initClass37, _HTMLElement37, _IconClear, IconClear;
|
|
25485
25520
|
var init_clear = __esm({
|
|
25486
25521
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/clear.ts"() {
|
|
25487
25522
|
"use strict";
|
|
25488
25523
|
import_lit_html39 = require("lit-html");
|
|
25489
25524
|
init_Component();
|
|
25490
|
-
|
|
25525
|
+
_dec98 = Component({
|
|
25491
25526
|
tag: "ease-icon-clear",
|
|
25492
25527
|
styles: `
|
|
25493
25528
|
:host {
|
|
@@ -25556,7 +25591,7 @@ var init_clear = __esm({
|
|
|
25556
25591
|
IconClear = class extends (_HTMLElement37 = HTMLElement) {
|
|
25557
25592
|
static {
|
|
25558
25593
|
({ c: [_IconClear, _initClass37] } = _apply_decs_2203_r37(this, [], [
|
|
25559
|
-
|
|
25594
|
+
_dec98
|
|
25560
25595
|
], _HTMLElement37));
|
|
25561
25596
|
}
|
|
25562
25597
|
static {
|
|
@@ -25943,13 +25978,13 @@ function applyDecs2203RFactory38() {
|
|
|
25943
25978
|
function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
|
|
25944
25979
|
return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
|
|
25945
25980
|
}
|
|
25946
|
-
var import_lit_html40,
|
|
25981
|
+
var import_lit_html40, _dec99, _initClass38, _HTMLElement38, _IconCode, IconCode;
|
|
25947
25982
|
var init_code = __esm({
|
|
25948
25983
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/code.ts"() {
|
|
25949
25984
|
"use strict";
|
|
25950
25985
|
import_lit_html40 = require("lit-html");
|
|
25951
25986
|
init_Component();
|
|
25952
|
-
|
|
25987
|
+
_dec99 = Component({
|
|
25953
25988
|
tag: "ease-icon-code",
|
|
25954
25989
|
styles: `
|
|
25955
25990
|
:host {
|
|
@@ -25974,7 +26009,7 @@ var init_code = __esm({
|
|
|
25974
26009
|
IconCode = class extends (_HTMLElement38 = HTMLElement) {
|
|
25975
26010
|
static {
|
|
25976
26011
|
({ c: [_IconCode, _initClass38] } = _apply_decs_2203_r38(this, [], [
|
|
25977
|
-
|
|
26012
|
+
_dec99
|
|
25978
26013
|
], _HTMLElement38));
|
|
25979
26014
|
}
|
|
25980
26015
|
static {
|
|
@@ -26361,13 +26396,13 @@ function applyDecs2203RFactory39() {
|
|
|
26361
26396
|
function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
|
|
26362
26397
|
return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
|
|
26363
26398
|
}
|
|
26364
|
-
var import_lit_html41,
|
|
26399
|
+
var import_lit_html41, _dec100, _initClass39, _HTMLElement39, _IconDots, IconDots;
|
|
26365
26400
|
var init_dots = __esm({
|
|
26366
26401
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/dots.ts"() {
|
|
26367
26402
|
"use strict";
|
|
26368
26403
|
import_lit_html41 = require("lit-html");
|
|
26369
26404
|
init_Component();
|
|
26370
|
-
|
|
26405
|
+
_dec100 = Component({
|
|
26371
26406
|
tag: "ease-icon-dots",
|
|
26372
26407
|
styles: `
|
|
26373
26408
|
:host {
|
|
@@ -26394,7 +26429,7 @@ var init_dots = __esm({
|
|
|
26394
26429
|
IconDots = class extends (_HTMLElement39 = HTMLElement) {
|
|
26395
26430
|
static {
|
|
26396
26431
|
({ c: [_IconDots, _initClass39] } = _apply_decs_2203_r39(this, [], [
|
|
26397
|
-
|
|
26432
|
+
_dec100
|
|
26398
26433
|
], _HTMLElement39));
|
|
26399
26434
|
}
|
|
26400
26435
|
static {
|
|
@@ -26781,14 +26816,14 @@ function applyDecs2203RFactory40() {
|
|
|
26781
26816
|
function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
|
|
26782
26817
|
return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
|
|
26783
26818
|
}
|
|
26784
|
-
var import_lit_html42,
|
|
26819
|
+
var import_lit_html42, _dec101, _initClass40, _HTMLElement40, _dec128, _init_state2, _initProto22, _IconGrid, IconGrid;
|
|
26785
26820
|
var init_grid = __esm({
|
|
26786
26821
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/grid.ts"() {
|
|
26787
26822
|
"use strict";
|
|
26788
26823
|
import_lit_html42 = require("lit-html");
|
|
26789
26824
|
init_Component();
|
|
26790
26825
|
init_Prop();
|
|
26791
|
-
|
|
26826
|
+
_dec101 = Component({
|
|
26792
26827
|
tag: "ease-icon-grid",
|
|
26793
26828
|
styles: `
|
|
26794
26829
|
:host {
|
|
@@ -26847,7 +26882,7 @@ var init_grid = __esm({
|
|
|
26847
26882
|
"state"
|
|
26848
26883
|
]
|
|
26849
26884
|
], [
|
|
26850
|
-
|
|
26885
|
+
_dec101
|
|
26851
26886
|
], _HTMLElement40));
|
|
26852
26887
|
}
|
|
26853
26888
|
#___private_state_1;
|
|
@@ -27262,13 +27297,13 @@ function applyDecs2203RFactory41() {
|
|
|
27262
27297
|
function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
|
|
27263
27298
|
return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
|
|
27264
27299
|
}
|
|
27265
|
-
var import_lit_html43,
|
|
27300
|
+
var import_lit_html43, _dec105, _initClass41, _HTMLElement41, _Loading, Loading;
|
|
27266
27301
|
var init_loading = __esm({
|
|
27267
27302
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/loading.ts"() {
|
|
27268
27303
|
"use strict";
|
|
27269
27304
|
import_lit_html43 = require("lit-html");
|
|
27270
27305
|
init_Component();
|
|
27271
|
-
|
|
27306
|
+
_dec105 = Component({
|
|
27272
27307
|
tag: "ease-icon-loading",
|
|
27273
27308
|
styles: `
|
|
27274
27309
|
:host {
|
|
@@ -27331,7 +27366,7 @@ var init_loading = __esm({
|
|
|
27331
27366
|
Loading = class extends (_HTMLElement41 = HTMLElement) {
|
|
27332
27367
|
static {
|
|
27333
27368
|
({ c: [_Loading, _initClass41] } = _apply_decs_2203_r41(this, [], [
|
|
27334
|
-
|
|
27369
|
+
_dec105
|
|
27335
27370
|
], _HTMLElement41));
|
|
27336
27371
|
}
|
|
27337
27372
|
static {
|
|
@@ -27718,13 +27753,13 @@ function applyDecs2203RFactory42() {
|
|
|
27718
27753
|
function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
|
|
27719
27754
|
return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
|
|
27720
27755
|
}
|
|
27721
|
-
var import_lit_html44,
|
|
27756
|
+
var import_lit_html44, _dec106, _initClass42, _HTMLElement42, _IconMention, IconMention;
|
|
27722
27757
|
var init_mention = __esm({
|
|
27723
27758
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/mention.ts"() {
|
|
27724
27759
|
"use strict";
|
|
27725
27760
|
import_lit_html44 = require("lit-html");
|
|
27726
27761
|
init_Component();
|
|
27727
|
-
|
|
27762
|
+
_dec106 = Component({
|
|
27728
27763
|
tag: "ease-icon-mention",
|
|
27729
27764
|
styles: `
|
|
27730
27765
|
:host {
|
|
@@ -27749,7 +27784,7 @@ var init_mention = __esm({
|
|
|
27749
27784
|
IconMention = class extends (_HTMLElement42 = HTMLElement) {
|
|
27750
27785
|
static {
|
|
27751
27786
|
({ c: [_IconMention, _initClass42] } = _apply_decs_2203_r42(this, [], [
|
|
27752
|
-
|
|
27787
|
+
_dec106
|
|
27753
27788
|
], _HTMLElement42));
|
|
27754
27789
|
}
|
|
27755
27790
|
static {
|
|
@@ -28136,13 +28171,13 @@ function applyDecs2203RFactory43() {
|
|
|
28136
28171
|
function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
|
|
28137
28172
|
return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
|
|
28138
28173
|
}
|
|
28139
|
-
var import_lit_html45,
|
|
28174
|
+
var import_lit_html45, _dec107, _initClass43, _HTMLElement43, _Settings, Settings;
|
|
28140
28175
|
var init_settings = __esm({
|
|
28141
28176
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/settings.ts"() {
|
|
28142
28177
|
"use strict";
|
|
28143
28178
|
import_lit_html45 = require("lit-html");
|
|
28144
28179
|
init_Component();
|
|
28145
|
-
|
|
28180
|
+
_dec107 = Component({
|
|
28146
28181
|
tag: "ease-icon-settings",
|
|
28147
28182
|
styles: `
|
|
28148
28183
|
:host {
|
|
@@ -28167,7 +28202,7 @@ var init_settings = __esm({
|
|
|
28167
28202
|
Settings = class extends (_HTMLElement43 = HTMLElement) {
|
|
28168
28203
|
static {
|
|
28169
28204
|
({ c: [_Settings, _initClass43] } = _apply_decs_2203_r43(this, [], [
|
|
28170
|
-
|
|
28205
|
+
_dec107
|
|
28171
28206
|
], _HTMLElement43));
|
|
28172
28207
|
}
|
|
28173
28208
|
static {
|
|
@@ -28554,14 +28589,14 @@ function applyDecs2203RFactory44() {
|
|
|
28554
28589
|
function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
|
|
28555
28590
|
return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
|
|
28556
28591
|
}
|
|
28557
|
-
var import_lit_html46,
|
|
28592
|
+
var import_lit_html46, _dec108, _initClass44, _HTMLElement44, _dec129, _init_state3, _initProto23, _Snap, Snap;
|
|
28558
28593
|
var init_snap = __esm({
|
|
28559
28594
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/snap.ts"() {
|
|
28560
28595
|
"use strict";
|
|
28561
28596
|
import_lit_html46 = require("lit-html");
|
|
28562
28597
|
init_Component();
|
|
28563
28598
|
init_Prop();
|
|
28564
|
-
|
|
28599
|
+
_dec108 = Component({
|
|
28565
28600
|
tag: "ease-icon-snap",
|
|
28566
28601
|
styles: `
|
|
28567
28602
|
:host {
|
|
@@ -28662,7 +28697,7 @@ var init_snap = __esm({
|
|
|
28662
28697
|
"state"
|
|
28663
28698
|
]
|
|
28664
28699
|
], [
|
|
28665
|
-
|
|
28700
|
+
_dec108
|
|
28666
28701
|
], _HTMLElement44));
|
|
28667
28702
|
}
|
|
28668
28703
|
#___private_state_1;
|
|
@@ -29788,6 +29823,21 @@ var init_utils2 = __esm({
|
|
|
29788
29823
|
}
|
|
29789
29824
|
});
|
|
29790
29825
|
|
|
29826
|
+
// src/elements/shared.ts
|
|
29827
|
+
var dispatchControlEvent2;
|
|
29828
|
+
var init_shared2 = __esm({
|
|
29829
|
+
"src/elements/shared.ts"() {
|
|
29830
|
+
"use strict";
|
|
29831
|
+
dispatchControlEvent2 = (host, type, detail) => {
|
|
29832
|
+
host.dispatchEvent(new CustomEvent(type, {
|
|
29833
|
+
detail,
|
|
29834
|
+
bubbles: true,
|
|
29835
|
+
composed: true
|
|
29836
|
+
}));
|
|
29837
|
+
};
|
|
29838
|
+
}
|
|
29839
|
+
});
|
|
29840
|
+
|
|
29791
29841
|
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/constants.ts
|
|
29792
29842
|
var HIT_AREA_RADIUS, LINEAR_HIT_THRESHOLD, LINEAR_PATH_SAMPLES, DRAG_ACTIVATION_DISTANCE_PX, DRAG_ACTIVATION_DISTANCE_PX_SQUARED, DEFAULT_HANDLE_LENGTH, SVG_WIDTH, SVG_HEIGHT, BEZIER_CONTROL_MIN_Y, BEZIER_CONTROL_MAX_Y, EASING_PRESETS;
|
|
29793
29843
|
var init_constants = __esm({
|
|
@@ -30039,21 +30089,6 @@ var init_svg_renderer = __esm({
|
|
|
30039
30089
|
}
|
|
30040
30090
|
});
|
|
30041
30091
|
|
|
30042
|
-
// src/elements/shared.ts
|
|
30043
|
-
var dispatchControlEvent2;
|
|
30044
|
-
var init_shared2 = __esm({
|
|
30045
|
-
"src/elements/shared.ts"() {
|
|
30046
|
-
"use strict";
|
|
30047
|
-
dispatchControlEvent2 = (host, type, detail) => {
|
|
30048
|
-
host.dispatchEvent(new CustomEvent(type, {
|
|
30049
|
-
detail,
|
|
30050
|
-
bubbles: true,
|
|
30051
|
-
composed: true
|
|
30052
|
-
}));
|
|
30053
|
-
};
|
|
30054
|
-
}
|
|
30055
|
-
});
|
|
30056
|
-
|
|
30057
30092
|
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts
|
|
30058
30093
|
function applyDecs2203RFactory45() {
|
|
30059
30094
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -30427,7 +30462,7 @@ function applyDecs2203RFactory45() {
|
|
|
30427
30462
|
function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
|
|
30428
30463
|
return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
|
|
30429
30464
|
}
|
|
30430
|
-
var import_lit_html48,
|
|
30465
|
+
var import_lit_html48, _dec109, _initClass45, _HTMLElement45, _dec130, _dec223, _dec320, _dec417, _dec513, _dec611, _dec710, _dec810, _dec910, _init_easingType, _init_points, _init_showGrid, _init_snapToGrid, _init_gridSize, _init_focusedLinearIndex, _init_simplify, _init_round, _init_svgElement, _initProto24, _CurveCanvas, CurveCanvas, lerp, lerpPoint, findTForX, splitCurveSegment, evaluateCubicPointNormalized;
|
|
30431
30466
|
var init_canvas = __esm({
|
|
30432
30467
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts"() {
|
|
30433
30468
|
"use strict";
|
|
@@ -30441,7 +30476,7 @@ var init_canvas = __esm({
|
|
|
30441
30476
|
init_Prop();
|
|
30442
30477
|
init_Query();
|
|
30443
30478
|
init_shared2();
|
|
30444
|
-
|
|
30479
|
+
_dec109 = Component({
|
|
30445
30480
|
tag: "ease-curve-canvas",
|
|
30446
30481
|
styles: canvasStyles,
|
|
30447
30482
|
template() {
|
|
@@ -30477,7 +30512,7 @@ var init_canvas = __esm({
|
|
|
30477
30512
|
type: Boolean,
|
|
30478
30513
|
reflect: true,
|
|
30479
30514
|
defaultValue: true
|
|
30480
|
-
}),
|
|
30515
|
+
}), _dec417 = Prop({
|
|
30481
30516
|
type: Boolean,
|
|
30482
30517
|
reflect: true,
|
|
30483
30518
|
defaultValue: false
|
|
@@ -30517,7 +30552,7 @@ var init_canvas = __esm({
|
|
|
30517
30552
|
"showGrid"
|
|
30518
30553
|
],
|
|
30519
30554
|
[
|
|
30520
|
-
|
|
30555
|
+
_dec417,
|
|
30521
30556
|
1,
|
|
30522
30557
|
"snapToGrid"
|
|
30523
30558
|
],
|
|
@@ -30547,7 +30582,7 @@ var init_canvas = __esm({
|
|
|
30547
30582
|
"svgElement"
|
|
30548
30583
|
]
|
|
30549
30584
|
], [
|
|
30550
|
-
|
|
30585
|
+
_dec109
|
|
30551
30586
|
], _HTMLElement45));
|
|
30552
30587
|
}
|
|
30553
30588
|
#___private_easingType_1;
|
|
@@ -31431,6 +31466,7 @@ var init_canvas = __esm({
|
|
|
31431
31466
|
}, this.#emitPoints = (value, event) => {
|
|
31432
31467
|
const target = this.#getEventTarget();
|
|
31433
31468
|
const detail = {
|
|
31469
|
+
name: target.name,
|
|
31434
31470
|
value,
|
|
31435
31471
|
event
|
|
31436
31472
|
};
|
|
@@ -31441,6 +31477,7 @@ var init_canvas = __esm({
|
|
|
31441
31477
|
}
|
|
31442
31478
|
const target = this.#getEventTarget();
|
|
31443
31479
|
const detail = {
|
|
31480
|
+
name: target.name,
|
|
31444
31481
|
value: index,
|
|
31445
31482
|
event
|
|
31446
31483
|
};
|
|
@@ -32159,7 +32196,7 @@ function applyDecs2203RFactory46() {
|
|
|
32159
32196
|
function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
|
|
32160
32197
|
return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
|
|
32161
32198
|
}
|
|
32162
|
-
var import_lit_html49,
|
|
32199
|
+
var import_lit_html49, _dec131, _initClass46, _HTMLElement46, _dec133, _dec224, _dec321, _init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25, _CanvasControls, CanvasControls;
|
|
32163
32200
|
var init_canvas_controls = __esm({
|
|
32164
32201
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas-controls.ts"() {
|
|
32165
32202
|
"use strict";
|
|
@@ -32171,7 +32208,7 @@ var init_canvas_controls = __esm({
|
|
|
32171
32208
|
init_Component();
|
|
32172
32209
|
init_Prop();
|
|
32173
32210
|
init_shared2();
|
|
32174
|
-
|
|
32211
|
+
_dec131 = Component({
|
|
32175
32212
|
tag: "ease-curve-canvas-controls",
|
|
32176
32213
|
styles: canvasControlsStyles,
|
|
32177
32214
|
template() {
|
|
@@ -32231,7 +32268,7 @@ var init_canvas_controls = __esm({
|
|
|
32231
32268
|
</div>
|
|
32232
32269
|
`;
|
|
32233
32270
|
}
|
|
32234
|
-
}),
|
|
32271
|
+
}), _dec133 = Prop({
|
|
32235
32272
|
reflect: true
|
|
32236
32273
|
}), _dec224 = Prop({
|
|
32237
32274
|
type: Object,
|
|
@@ -32245,7 +32282,7 @@ var init_canvas_controls = __esm({
|
|
|
32245
32282
|
static {
|
|
32246
32283
|
({ e: [_init_easingType2, _init_points2, _init_focusedLinearIndex2, _initProto25], c: [_CanvasControls, _initClass46] } = _apply_decs_2203_r46(this, [
|
|
32247
32284
|
[
|
|
32248
|
-
|
|
32285
|
+
_dec133,
|
|
32249
32286
|
1,
|
|
32250
32287
|
"easingType"
|
|
32251
32288
|
],
|
|
@@ -32260,7 +32297,7 @@ var init_canvas_controls = __esm({
|
|
|
32260
32297
|
"focusedLinearIndex"
|
|
32261
32298
|
]
|
|
32262
32299
|
], [
|
|
32263
|
-
|
|
32300
|
+
_dec131
|
|
32264
32301
|
], _HTMLElement46));
|
|
32265
32302
|
}
|
|
32266
32303
|
#___private_easingType_1;
|
|
@@ -32378,6 +32415,7 @@ var init_canvas_controls = __esm({
|
|
|
32378
32415
|
}, this.#notifyHost = (type, value, event) => {
|
|
32379
32416
|
const target = this.#getEventTarget();
|
|
32380
32417
|
const detail = {
|
|
32418
|
+
name: target.name,
|
|
32381
32419
|
value,
|
|
32382
32420
|
event
|
|
32383
32421
|
};
|
|
@@ -32889,13 +32927,13 @@ function applyDecs2203RFactory47() {
|
|
|
32889
32927
|
function _apply_decs_2203_r47(targetClass, memberDecs, classDecs, parentClass) {
|
|
32890
32928
|
return (_apply_decs_2203_r47 = applyDecs2203RFactory47())(targetClass, memberDecs, classDecs, parentClass);
|
|
32891
32929
|
}
|
|
32892
|
-
var import_lit_html50,
|
|
32930
|
+
var import_lit_html50, _dec134, _initClass47, _HTMLElement47, _IconMinus2, IconMinus2;
|
|
32893
32931
|
var init_minus2 = __esm({
|
|
32894
32932
|
"src/elements/icons/interface/minus.ts"() {
|
|
32895
32933
|
"use strict";
|
|
32896
32934
|
import_lit_html50 = require("lit-html");
|
|
32897
32935
|
init_Component();
|
|
32898
|
-
|
|
32936
|
+
_dec134 = Component({
|
|
32899
32937
|
tag: "ease-icon-minus",
|
|
32900
32938
|
styles: `
|
|
32901
32939
|
:host {
|
|
@@ -32920,7 +32958,7 @@ var init_minus2 = __esm({
|
|
|
32920
32958
|
IconMinus2 = class extends (_HTMLElement47 = HTMLElement) {
|
|
32921
32959
|
static {
|
|
32922
32960
|
({ c: [_IconMinus2, _initClass47] } = _apply_decs_2203_r47(this, [], [
|
|
32923
|
-
|
|
32961
|
+
_dec134
|
|
32924
32962
|
], _HTMLElement47));
|
|
32925
32963
|
}
|
|
32926
32964
|
static {
|
|
@@ -33303,13 +33341,13 @@ function applyDecs2203RFactory48() {
|
|
|
33303
33341
|
function _apply_decs_2203_r48(targetClass, memberDecs, classDecs, parentClass) {
|
|
33304
33342
|
return (_apply_decs_2203_r48 = applyDecs2203RFactory48())(targetClass, memberDecs, classDecs, parentClass);
|
|
33305
33343
|
}
|
|
33306
|
-
var import_lit_html51,
|
|
33344
|
+
var import_lit_html51, _dec135, _initClass48, _HTMLElement48, _IconPlus2, IconPlus2;
|
|
33307
33345
|
var init_plus2 = __esm({
|
|
33308
33346
|
"src/elements/icons/interface/plus.ts"() {
|
|
33309
33347
|
"use strict";
|
|
33310
33348
|
import_lit_html51 = require("lit-html");
|
|
33311
33349
|
init_Component();
|
|
33312
|
-
|
|
33350
|
+
_dec135 = Component({
|
|
33313
33351
|
tag: "ease-icon-plus",
|
|
33314
33352
|
styles: `
|
|
33315
33353
|
:host {
|
|
@@ -33334,7 +33372,7 @@ var init_plus2 = __esm({
|
|
|
33334
33372
|
IconPlus2 = class extends (_HTMLElement48 = HTMLElement) {
|
|
33335
33373
|
static {
|
|
33336
33374
|
({ c: [_IconPlus2, _initClass48] } = _apply_decs_2203_r48(this, [], [
|
|
33337
|
-
|
|
33375
|
+
_dec135
|
|
33338
33376
|
], _HTMLElement48));
|
|
33339
33377
|
}
|
|
33340
33378
|
static {
|
|
@@ -33717,14 +33755,14 @@ function applyDecs2203RFactory49() {
|
|
|
33717
33755
|
function _apply_decs_2203_r49(targetClass, memberDecs, classDecs, parentClass) {
|
|
33718
33756
|
return (_apply_decs_2203_r49 = applyDecs2203RFactory49())(targetClass, memberDecs, classDecs, parentClass);
|
|
33719
33757
|
}
|
|
33720
|
-
var import_lit_html52,
|
|
33758
|
+
var import_lit_html52, _dec136, _initClass49, _HTMLElement49, _dec137, _dec225, _dec322, _dec418, _dec514, _dec612, _init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26, _Button2, Button2;
|
|
33721
33759
|
var init_button2 = __esm({
|
|
33722
33760
|
"src/elements/button/index.ts"() {
|
|
33723
33761
|
"use strict";
|
|
33724
33762
|
import_lit_html52 = require("lit-html");
|
|
33725
33763
|
init_Component();
|
|
33726
33764
|
init_Prop();
|
|
33727
|
-
|
|
33765
|
+
_dec136 = Component({
|
|
33728
33766
|
tag: "ease-button",
|
|
33729
33767
|
autoSlot: true,
|
|
33730
33768
|
shadowMode: "open",
|
|
@@ -33891,7 +33929,7 @@ var init_button2 = __esm({
|
|
|
33891
33929
|
}
|
|
33892
33930
|
}
|
|
33893
33931
|
`
|
|
33894
|
-
}),
|
|
33932
|
+
}), _dec137 = Prop({
|
|
33895
33933
|
type: Boolean,
|
|
33896
33934
|
reflect: true
|
|
33897
33935
|
}), _dec225 = Prop({
|
|
@@ -33900,7 +33938,7 @@ var init_button2 = __esm({
|
|
|
33900
33938
|
}), _dec322 = Prop({
|
|
33901
33939
|
type: Boolean,
|
|
33902
33940
|
reflect: true
|
|
33903
|
-
}),
|
|
33941
|
+
}), _dec418 = Prop({
|
|
33904
33942
|
type: String,
|
|
33905
33943
|
reflect: true,
|
|
33906
33944
|
defaultValue: "button"
|
|
@@ -33920,7 +33958,7 @@ var init_button2 = __esm({
|
|
|
33920
33958
|
static {
|
|
33921
33959
|
({ e: [_init_disabled11, _init_pill3, _init_fullWidth3, _init_type3, _init_block3, _init_variant2, _initProto26], c: [_Button2, _initClass49] } = _apply_decs_2203_r49(this, [
|
|
33922
33960
|
[
|
|
33923
|
-
|
|
33961
|
+
_dec137,
|
|
33924
33962
|
1,
|
|
33925
33963
|
"disabled"
|
|
33926
33964
|
],
|
|
@@ -33935,7 +33973,7 @@ var init_button2 = __esm({
|
|
|
33935
33973
|
"fullWidth"
|
|
33936
33974
|
],
|
|
33937
33975
|
[
|
|
33938
|
-
|
|
33976
|
+
_dec418,
|
|
33939
33977
|
1,
|
|
33940
33978
|
"type"
|
|
33941
33979
|
],
|
|
@@ -33950,7 +33988,7 @@ var init_button2 = __esm({
|
|
|
33950
33988
|
"variant"
|
|
33951
33989
|
]
|
|
33952
33990
|
], [
|
|
33953
|
-
|
|
33991
|
+
_dec136
|
|
33954
33992
|
], _HTMLElement49));
|
|
33955
33993
|
}
|
|
33956
33994
|
#___private_disabled_1;
|
|
@@ -34392,7 +34430,7 @@ function applyDecs2203RFactory50() {
|
|
|
34392
34430
|
function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
|
|
34393
34431
|
return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
|
|
34394
34432
|
}
|
|
34395
|
-
var import_lit_html53,
|
|
34433
|
+
var import_lit_html53, _dec138, _initClass50, _HTMLElement50, _dec139, _dec226, _dec323, _dec419, _dec515, _dec613, _init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27, _CurveControls, CurveControls;
|
|
34396
34434
|
var init_controls = __esm({
|
|
34397
34435
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/controls.ts"() {
|
|
34398
34436
|
"use strict";
|
|
@@ -34407,7 +34445,7 @@ var init_controls = __esm({
|
|
|
34407
34445
|
init_minus2();
|
|
34408
34446
|
init_plus2();
|
|
34409
34447
|
init_button2();
|
|
34410
|
-
|
|
34448
|
+
_dec138 = Component({
|
|
34411
34449
|
tag: "ease-curve-controls",
|
|
34412
34450
|
styles: controlsStyles,
|
|
34413
34451
|
template() {
|
|
@@ -34440,7 +34478,7 @@ var init_controls = __esm({
|
|
|
34440
34478
|
</ease-field>
|
|
34441
34479
|
`;
|
|
34442
34480
|
}
|
|
34443
|
-
}),
|
|
34481
|
+
}), _dec139 = Prop({
|
|
34444
34482
|
reflect: true
|
|
34445
34483
|
}), _dec226 = Prop({
|
|
34446
34484
|
type: Object,
|
|
@@ -34452,7 +34490,7 @@ var init_controls = __esm({
|
|
|
34452
34490
|
type: Boolean,
|
|
34453
34491
|
reflect: true,
|
|
34454
34492
|
defaultValue: true
|
|
34455
|
-
}),
|
|
34493
|
+
}), _dec419 = Prop({
|
|
34456
34494
|
type: Boolean,
|
|
34457
34495
|
reflect: true,
|
|
34458
34496
|
defaultValue: false
|
|
@@ -34472,7 +34510,7 @@ var init_controls = __esm({
|
|
|
34472
34510
|
static {
|
|
34473
34511
|
({ e: [_init_easingType3, _init_points3, _init_showGrid2, _init_snapToGrid2, _init_gridSize2, _init_focusedLinearIndex3, _initProto27], c: [_CurveControls, _initClass50] } = _apply_decs_2203_r50(this, [
|
|
34474
34512
|
[
|
|
34475
|
-
|
|
34513
|
+
_dec139,
|
|
34476
34514
|
1,
|
|
34477
34515
|
"easingType"
|
|
34478
34516
|
],
|
|
@@ -34487,7 +34525,7 @@ var init_controls = __esm({
|
|
|
34487
34525
|
"showGrid"
|
|
34488
34526
|
],
|
|
34489
34527
|
[
|
|
34490
|
-
|
|
34528
|
+
_dec419,
|
|
34491
34529
|
1,
|
|
34492
34530
|
"snapToGrid"
|
|
34493
34531
|
],
|
|
@@ -34502,7 +34540,7 @@ var init_controls = __esm({
|
|
|
34502
34540
|
"focusedLinearIndex"
|
|
34503
34541
|
]
|
|
34504
34542
|
], [
|
|
34505
|
-
|
|
34543
|
+
_dec138
|
|
34506
34544
|
], _HTMLElement50));
|
|
34507
34545
|
}
|
|
34508
34546
|
#___private_easingType_1;
|
|
@@ -35412,6 +35450,7 @@ var init_controls = __esm({
|
|
|
35412
35450
|
}, this.#notifyHost = (type, value, event) => {
|
|
35413
35451
|
const target = this.#getEventTarget();
|
|
35414
35452
|
const detail = {
|
|
35453
|
+
name: target.name,
|
|
35415
35454
|
value,
|
|
35416
35455
|
event
|
|
35417
35456
|
};
|
|
@@ -36061,7 +36100,7 @@ function applyDecs2203RFactory51() {
|
|
|
36061
36100
|
function _apply_decs_2203_r51(targetClass, memberDecs, classDecs, parentClass) {
|
|
36062
36101
|
return (_apply_decs_2203_r51 = applyDecs2203RFactory51())(targetClass, memberDecs, classDecs, parentClass);
|
|
36063
36102
|
}
|
|
36064
|
-
var import_lit_html54,
|
|
36103
|
+
var import_lit_html54, _dec140, _initClass51, _HTMLElement51, _dec141, _dec227, _init_language, _init_codeElement, _initProto28, _Code, Code;
|
|
36065
36104
|
var init_code2 = __esm({
|
|
36066
36105
|
"src/components/code/index.ts"() {
|
|
36067
36106
|
"use strict";
|
|
@@ -36072,7 +36111,7 @@ var init_code2 = __esm({
|
|
|
36072
36111
|
init_Component();
|
|
36073
36112
|
init_Prop();
|
|
36074
36113
|
init_Query();
|
|
36075
|
-
|
|
36114
|
+
_dec140 = Component({
|
|
36076
36115
|
tag: "ease-code",
|
|
36077
36116
|
shadowMode: "open",
|
|
36078
36117
|
autoSlot: false,
|
|
@@ -36097,14 +36136,14 @@ var init_code2 = __esm({
|
|
|
36097
36136
|
template() {
|
|
36098
36137
|
return import_lit_html54.html`<pre><code><slot></slot></code></pre>`;
|
|
36099
36138
|
}
|
|
36100
|
-
}),
|
|
36139
|
+
}), _dec141 = Prop({
|
|
36101
36140
|
reflect: true
|
|
36102
36141
|
}), _dec227 = Query("code");
|
|
36103
36142
|
Code = class extends (_HTMLElement51 = HTMLElement) {
|
|
36104
36143
|
static {
|
|
36105
36144
|
({ e: [_init_language, _init_codeElement, _initProto28], c: [_Code, _initClass51] } = _apply_decs_2203_r51(this, [
|
|
36106
36145
|
[
|
|
36107
|
-
|
|
36146
|
+
_dec141,
|
|
36108
36147
|
1,
|
|
36109
36148
|
"language"
|
|
36110
36149
|
],
|
|
@@ -36114,7 +36153,7 @@ var init_code2 = __esm({
|
|
|
36114
36153
|
"codeElement"
|
|
36115
36154
|
]
|
|
36116
36155
|
], [
|
|
36117
|
-
|
|
36156
|
+
_dec140
|
|
36118
36157
|
], _HTMLElement51));
|
|
36119
36158
|
}
|
|
36120
36159
|
#instanceId;
|
|
@@ -36621,7 +36660,7 @@ function applyDecs2203RFactory52() {
|
|
|
36621
36660
|
function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
|
|
36622
36661
|
return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
|
|
36623
36662
|
}
|
|
36624
|
-
var import_lit_html55,
|
|
36663
|
+
var import_lit_html55, _dec143, _initClass52, _HTMLElement52, _dec144, _dec228, _dec324, _dec420, _dec516, _dec614, _init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto29, _CurveOutput, CurveOutput;
|
|
36625
36664
|
var init_output = __esm({
|
|
36626
36665
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/output.ts"() {
|
|
36627
36666
|
"use strict";
|
|
@@ -36632,7 +36671,7 @@ var init_output = __esm({
|
|
|
36632
36671
|
init_Component();
|
|
36633
36672
|
init_Prop();
|
|
36634
36673
|
init_code2();
|
|
36635
|
-
|
|
36674
|
+
_dec143 = Component({
|
|
36636
36675
|
tag: "ease-curve-output",
|
|
36637
36676
|
styles: outputStyles,
|
|
36638
36677
|
template() {
|
|
@@ -36648,7 +36687,7 @@ var init_output = __esm({
|
|
|
36648
36687
|
</div>
|
|
36649
36688
|
`;
|
|
36650
36689
|
}
|
|
36651
|
-
}),
|
|
36690
|
+
}), _dec144 = Prop({
|
|
36652
36691
|
type: String,
|
|
36653
36692
|
reflect: true
|
|
36654
36693
|
}), _dec228 = Prop({
|
|
@@ -36657,7 +36696,7 @@ var init_output = __esm({
|
|
|
36657
36696
|
}), _dec324 = Prop({
|
|
36658
36697
|
reflect: true,
|
|
36659
36698
|
defaultValue: "ease-custom"
|
|
36660
|
-
}),
|
|
36699
|
+
}), _dec420 = Prop({
|
|
36661
36700
|
reflect: true,
|
|
36662
36701
|
defaultValue: "animation"
|
|
36663
36702
|
}), _dec516 = Prop({
|
|
@@ -36671,9 +36710,9 @@ var init_output = __esm({
|
|
|
36671
36710
|
});
|
|
36672
36711
|
CurveOutput = class extends (_HTMLElement52 = HTMLElement) {
|
|
36673
36712
|
static {
|
|
36674
|
-
({ e: [_init_easingType4, _init_points4,
|
|
36713
|
+
({ e: [_init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto29], c: [_CurveOutput, _initClass52] } = _apply_decs_2203_r52(this, [
|
|
36675
36714
|
[
|
|
36676
|
-
|
|
36715
|
+
_dec144,
|
|
36677
36716
|
1,
|
|
36678
36717
|
"easingType"
|
|
36679
36718
|
],
|
|
@@ -36688,7 +36727,7 @@ var init_output = __esm({
|
|
|
36688
36727
|
"name"
|
|
36689
36728
|
],
|
|
36690
36729
|
[
|
|
36691
|
-
|
|
36730
|
+
_dec420,
|
|
36692
36731
|
1,
|
|
36693
36732
|
"variant"
|
|
36694
36733
|
],
|
|
@@ -36703,7 +36742,7 @@ var init_output = __esm({
|
|
|
36703
36742
|
"round"
|
|
36704
36743
|
]
|
|
36705
36744
|
], [
|
|
36706
|
-
|
|
36745
|
+
_dec143
|
|
36707
36746
|
], _HTMLElement52));
|
|
36708
36747
|
}
|
|
36709
36748
|
#___private_easingType_1;
|
|
@@ -36825,7 +36864,7 @@ var init_output = __esm({
|
|
|
36825
36864
|
_initClass52();
|
|
36826
36865
|
}
|
|
36827
36866
|
constructor(...args) {
|
|
36828
|
-
super(...args), this.#___private_easingType_1 = (_initProto29(this), _init_easingType4(this)), this.#___private_points_2 = _init_points4(this), this.#___private_name_3 =
|
|
36867
|
+
super(...args), this.#___private_easingType_1 = (_initProto29(this), _init_easingType4(this)), this.#___private_points_2 = _init_points4(this), this.#___private_name_3 = _init_name8(this), this.#___private_variant_4 = _init_variant3(this), this.#___private_simplify_5 = _init_simplify2(this), this.#___private_round_6 = _init_round2(this), this.#copyTimeout = null, this.#animationTimeout = null, this.#isAnimating = false, this.#copyToClipboard = async (event) => {
|
|
36829
36868
|
event.preventDefault();
|
|
36830
36869
|
try {
|
|
36831
36870
|
await navigator.clipboard.writeText(this.timingFunction);
|
|
@@ -37237,7 +37276,7 @@ function applyDecs2203RFactory53() {
|
|
|
37237
37276
|
function _apply_decs_2203_r53(targetClass, memberDecs, classDecs, parentClass) {
|
|
37238
37277
|
return (_apply_decs_2203_r53 = applyDecs2203RFactory53())(targetClass, memberDecs, classDecs, parentClass);
|
|
37239
37278
|
}
|
|
37240
|
-
var import_lit_html56,
|
|
37279
|
+
var import_lit_html56, _dec145, _initClass53, _HTMLElement53, _dec146, _dec229, _dec325, _dec421, _dec517, _dec615, _init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30, _Tooltip2, Tooltip2;
|
|
37241
37280
|
var init_tooltip2 = __esm({
|
|
37242
37281
|
"src/elements/tooltip/index.ts"() {
|
|
37243
37282
|
"use strict";
|
|
@@ -37247,7 +37286,7 @@ var init_tooltip2 = __esm({
|
|
|
37247
37286
|
init_OutsideClick();
|
|
37248
37287
|
init_Prop();
|
|
37249
37288
|
init_Query();
|
|
37250
|
-
|
|
37289
|
+
_dec145 = Component({
|
|
37251
37290
|
tag: "ease-tooltip",
|
|
37252
37291
|
shadowMode: "open",
|
|
37253
37292
|
styles: `
|
|
@@ -37277,7 +37316,7 @@ var init_tooltip2 = __esm({
|
|
|
37277
37316
|
display: block;
|
|
37278
37317
|
}
|
|
37279
37318
|
`
|
|
37280
|
-
}),
|
|
37319
|
+
}), _dec146 = Prop({
|
|
37281
37320
|
type: Boolean,
|
|
37282
37321
|
reflect: true,
|
|
37283
37322
|
onChange(next, previous) {
|
|
@@ -37290,7 +37329,7 @@ var init_tooltip2 = __esm({
|
|
|
37290
37329
|
}), _dec325 = Prop({
|
|
37291
37330
|
reflect: true,
|
|
37292
37331
|
defaultValue: "top-center"
|
|
37293
|
-
}),
|
|
37332
|
+
}), _dec421 = Query('[slot="trigger"]'), _dec517 = Query("[data-tooltip-content]"), _dec615 = OutsideClick({
|
|
37294
37333
|
content: (host) => host.contentElement,
|
|
37295
37334
|
triggers: (host) => [
|
|
37296
37335
|
host.triggerElement
|
|
@@ -37299,9 +37338,9 @@ var init_tooltip2 = __esm({
|
|
|
37299
37338
|
});
|
|
37300
37339
|
Tooltip2 = class extends (_HTMLElement53 = HTMLElement) {
|
|
37301
37340
|
static {
|
|
37302
|
-
({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2,
|
|
37341
|
+
({ e: [_init_open4, _init_delay2, _init_placement5, _init_triggerElement2, _init_contentElement4, _initProto30], c: [_Tooltip2, _initClass53] } = _apply_decs_2203_r53(this, [
|
|
37303
37342
|
[
|
|
37304
|
-
|
|
37343
|
+
_dec146,
|
|
37305
37344
|
1,
|
|
37306
37345
|
"open"
|
|
37307
37346
|
],
|
|
@@ -37316,7 +37355,7 @@ var init_tooltip2 = __esm({
|
|
|
37316
37355
|
"placement"
|
|
37317
37356
|
],
|
|
37318
37357
|
[
|
|
37319
|
-
|
|
37358
|
+
_dec421,
|
|
37320
37359
|
1,
|
|
37321
37360
|
"triggerElement"
|
|
37322
37361
|
],
|
|
@@ -37331,7 +37370,7 @@ var init_tooltip2 = __esm({
|
|
|
37331
37370
|
"handleOutsideDismiss"
|
|
37332
37371
|
]
|
|
37333
37372
|
], [
|
|
37334
|
-
|
|
37373
|
+
_dec145
|
|
37335
37374
|
], _HTMLElement53));
|
|
37336
37375
|
}
|
|
37337
37376
|
#hoverTimer;
|
|
@@ -37482,7 +37521,7 @@ var init_tooltip2 = __esm({
|
|
|
37482
37521
|
_initClass53();
|
|
37483
37522
|
}
|
|
37484
37523
|
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 =
|
|
37524
|
+
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
37525
|
this.#startTimer(() => {
|
|
37487
37526
|
this.open = true;
|
|
37488
37527
|
});
|
|
@@ -37874,7 +37913,7 @@ function applyDecs2203RFactory54() {
|
|
|
37874
37913
|
function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
|
|
37875
37914
|
return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
|
|
37876
37915
|
}
|
|
37877
|
-
var import_lit_html57,
|
|
37916
|
+
var import_lit_html57, _dec147, _initClass54, _HTMLElement54, _dec148, _dec230, _dec326, _dec422, _dec518, _dec616, _dec711, _init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31, _CurveToolbar, CurveToolbar;
|
|
37878
37917
|
var init_toolbar = __esm({
|
|
37879
37918
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/toolbar.ts"() {
|
|
37880
37919
|
"use strict";
|
|
@@ -37889,7 +37928,7 @@ var init_toolbar = __esm({
|
|
|
37889
37928
|
init_plus2();
|
|
37890
37929
|
init_button2();
|
|
37891
37930
|
init_tooltip2();
|
|
37892
|
-
|
|
37931
|
+
_dec147 = Component({
|
|
37893
37932
|
tag: "ease-curve-toolbar",
|
|
37894
37933
|
styles: toolbarStyles,
|
|
37895
37934
|
template() {
|
|
@@ -38016,7 +38055,7 @@ var init_toolbar = __esm({
|
|
|
38016
38055
|
</div>
|
|
38017
38056
|
`;
|
|
38018
38057
|
}
|
|
38019
|
-
}),
|
|
38058
|
+
}), _dec148 = Prop({
|
|
38020
38059
|
reflect: true
|
|
38021
38060
|
}), _dec230 = Prop({
|
|
38022
38061
|
type: Object,
|
|
@@ -38025,7 +38064,7 @@ var init_toolbar = __esm({
|
|
|
38025
38064
|
type: Boolean,
|
|
38026
38065
|
reflect: true,
|
|
38027
38066
|
defaultValue: true
|
|
38028
|
-
}),
|
|
38067
|
+
}), _dec422 = Prop({
|
|
38029
38068
|
type: Boolean,
|
|
38030
38069
|
reflect: true,
|
|
38031
38070
|
defaultValue: false
|
|
@@ -38046,7 +38085,7 @@ var init_toolbar = __esm({
|
|
|
38046
38085
|
static {
|
|
38047
38086
|
({ e: [_init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto31], c: [_CurveToolbar, _initClass54] } = _apply_decs_2203_r54(this, [
|
|
38048
38087
|
[
|
|
38049
|
-
|
|
38088
|
+
_dec148,
|
|
38050
38089
|
1,
|
|
38051
38090
|
"easingType"
|
|
38052
38091
|
],
|
|
@@ -38061,7 +38100,7 @@ var init_toolbar = __esm({
|
|
|
38061
38100
|
"showGrid"
|
|
38062
38101
|
],
|
|
38063
38102
|
[
|
|
38064
|
-
|
|
38103
|
+
_dec422,
|
|
38065
38104
|
1,
|
|
38066
38105
|
"snapToGrid"
|
|
38067
38106
|
],
|
|
@@ -38081,7 +38120,7 @@ var init_toolbar = __esm({
|
|
|
38081
38120
|
"round"
|
|
38082
38121
|
]
|
|
38083
38122
|
], [
|
|
38084
|
-
|
|
38123
|
+
_dec147
|
|
38085
38124
|
], _HTMLElement54));
|
|
38086
38125
|
}
|
|
38087
38126
|
#___private_easingType_1;
|
|
@@ -38157,6 +38196,7 @@ var init_toolbar = __esm({
|
|
|
38157
38196
|
}, this.#notifyHost = (type, value, event) => {
|
|
38158
38197
|
const target = this.#getEventTarget();
|
|
38159
38198
|
const detail = {
|
|
38199
|
+
name: target.name,
|
|
38160
38200
|
value,
|
|
38161
38201
|
event
|
|
38162
38202
|
};
|
|
@@ -38729,7 +38769,7 @@ function applyDecs2203RFactory55() {
|
|
|
38729
38769
|
function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
|
|
38730
38770
|
return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
|
|
38731
38771
|
}
|
|
38732
|
-
var import_lit_html58,
|
|
38772
|
+
var import_lit_html58, _dec149, _initClass55, _HTMLElement55, _dec150, _dec231, _dec327, _dec423, _dec519, _dec617, _dec712, _dec811, _dec911, _dec1010, _dec1110, _dec1210, _dec1310, _dec1410, _dec153, _dec162, _dec172, _dec182, _init_name9, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32, _Curve, Curve;
|
|
38733
38773
|
var init_curve = __esm({
|
|
38734
38774
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/index.ts"() {
|
|
38735
38775
|
"use strict";
|
|
@@ -38741,13 +38781,14 @@ var init_curve = __esm({
|
|
|
38741
38781
|
init_Component();
|
|
38742
38782
|
init_Listen();
|
|
38743
38783
|
init_Prop();
|
|
38784
|
+
init_shared2();
|
|
38744
38785
|
init_canvas();
|
|
38745
38786
|
init_canvas_controls();
|
|
38746
38787
|
init_controls();
|
|
38747
38788
|
init_output();
|
|
38748
38789
|
init_toolbar();
|
|
38749
38790
|
init_types();
|
|
38750
|
-
|
|
38791
|
+
_dec149 = Component({
|
|
38751
38792
|
tag: "ease-curve",
|
|
38752
38793
|
styles: containerStyles,
|
|
38753
38794
|
template() {
|
|
@@ -38808,7 +38849,7 @@ var init_curve = __esm({
|
|
|
38808
38849
|
</div>
|
|
38809
38850
|
`;
|
|
38810
38851
|
}
|
|
38811
|
-
}),
|
|
38852
|
+
}), _dec150 = Prop({
|
|
38812
38853
|
reflect: true,
|
|
38813
38854
|
defaultValue: "ease-custom"
|
|
38814
38855
|
}), _dec231 = Prop({
|
|
@@ -38835,7 +38876,7 @@ var init_curve = __esm({
|
|
|
38835
38876
|
}
|
|
38836
38877
|
};
|
|
38837
38878
|
}
|
|
38838
|
-
}),
|
|
38879
|
+
}), _dec423 = Prop({
|
|
38839
38880
|
type: Boolean,
|
|
38840
38881
|
reflect: true,
|
|
38841
38882
|
defaultValue: true
|
|
@@ -38881,9 +38922,9 @@ var init_curve = __esm({
|
|
|
38881
38922
|
});
|
|
38882
38923
|
Curve = class extends (_HTMLElement55 = HTMLElement) {
|
|
38883
38924
|
static {
|
|
38884
|
-
({ e: [
|
|
38925
|
+
({ e: [_init_name9, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto32], c: [_Curve, _initClass55] } = _apply_decs_2203_r55(this, [
|
|
38885
38926
|
[
|
|
38886
|
-
|
|
38927
|
+
_dec150,
|
|
38887
38928
|
1,
|
|
38888
38929
|
"name"
|
|
38889
38930
|
],
|
|
@@ -38898,7 +38939,7 @@ var init_curve = __esm({
|
|
|
38898
38939
|
"points"
|
|
38899
38940
|
],
|
|
38900
38941
|
[
|
|
38901
|
-
|
|
38942
|
+
_dec423,
|
|
38902
38943
|
1,
|
|
38903
38944
|
"showGrid"
|
|
38904
38945
|
],
|
|
@@ -38973,7 +39014,7 @@ var init_curve = __esm({
|
|
|
38973
39014
|
"handleLinearPointFocus"
|
|
38974
39015
|
]
|
|
38975
39016
|
], [
|
|
38976
|
-
|
|
39017
|
+
_dec149
|
|
38977
39018
|
], _HTMLElement55));
|
|
38978
39019
|
}
|
|
38979
39020
|
#___private_name_1;
|
|
@@ -39247,20 +39288,17 @@ var init_curve = __esm({
|
|
|
39247
39288
|
}
|
|
39248
39289
|
emitPointsChange(value, sourceEvent) {
|
|
39249
39290
|
const detail = {
|
|
39291
|
+
name: this.name,
|
|
39250
39292
|
value,
|
|
39251
39293
|
event: sourceEvent ?? new Event("points-change")
|
|
39252
39294
|
};
|
|
39253
|
-
this
|
|
39254
|
-
detail,
|
|
39255
|
-
bubbles: true,
|
|
39256
|
-
composed: true
|
|
39257
|
-
}));
|
|
39295
|
+
dispatchControlEvent2(this, "points-change", detail);
|
|
39258
39296
|
}
|
|
39259
39297
|
static {
|
|
39260
39298
|
_initClass55();
|
|
39261
39299
|
}
|
|
39262
39300
|
constructor(...args) {
|
|
39263
|
-
super(...args), this.#___private_name_1 = (_initProto32(this),
|
|
39301
|
+
super(...args), this.#___private_name_1 = (_initProto32(this), _init_name9(this)), this.#___private_easingType_2 = _init_easingType6(this), this.#___private_points_3 = _init_points6(this), this.#___private_showGrid_4 = _init_showGrid4(this), this.#___private_snapToGrid_5 = _init_snapToGrid4(this), this.#___private_gridSize_6 = _init_gridSize4(this), this.#___private_simplify_7 = _init_simplify4(this), this.#___private_round_8 = _init_round4(this), this.#___private_focusedLinearIndex_9 = _init_focusedLinearIndex4(this, null);
|
|
39264
39302
|
}
|
|
39265
39303
|
};
|
|
39266
39304
|
}
|
|
@@ -39643,7 +39681,7 @@ function applyDecs2203RFactory56() {
|
|
|
39643
39681
|
function _apply_decs_2203_r56(targetClass, memberDecs, classDecs, parentClass) {
|
|
39644
39682
|
return (_apply_decs_2203_r56 = applyDecs2203RFactory56())(targetClass, memberDecs, classDecs, parentClass);
|
|
39645
39683
|
}
|
|
39646
|
-
var import_lit_html59,
|
|
39684
|
+
var import_lit_html59, _dec151, _initClass56, _HTMLElement56, _dec154, _dec232, _init_language2, _init_codeElement2, _initProto33, _Code2, Code2;
|
|
39647
39685
|
var init_code3 = __esm({
|
|
39648
39686
|
"swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/code/index.ts"() {
|
|
39649
39687
|
"use strict";
|
|
@@ -39654,7 +39692,7 @@ var init_code3 = __esm({
|
|
|
39654
39692
|
init_Component();
|
|
39655
39693
|
init_Prop();
|
|
39656
39694
|
init_Query();
|
|
39657
|
-
|
|
39695
|
+
_dec151 = Component({
|
|
39658
39696
|
tag: "ease-code",
|
|
39659
39697
|
shadowMode: "open",
|
|
39660
39698
|
autoSlot: false,
|
|
@@ -39679,14 +39717,14 @@ var init_code3 = __esm({
|
|
|
39679
39717
|
template() {
|
|
39680
39718
|
return import_lit_html59.html`<pre><code><slot></slot></code></pre>`;
|
|
39681
39719
|
}
|
|
39682
|
-
}),
|
|
39720
|
+
}), _dec154 = Prop({
|
|
39683
39721
|
reflect: true
|
|
39684
39722
|
}), _dec232 = Query("code");
|
|
39685
39723
|
Code2 = class extends (_HTMLElement56 = HTMLElement) {
|
|
39686
39724
|
static {
|
|
39687
39725
|
({ e: [_init_language2, _init_codeElement2, _initProto33], c: [_Code2, _initClass56] } = _apply_decs_2203_r56(this, [
|
|
39688
39726
|
[
|
|
39689
|
-
|
|
39727
|
+
_dec154,
|
|
39690
39728
|
1,
|
|
39691
39729
|
"language"
|
|
39692
39730
|
],
|
|
@@ -39696,7 +39734,7 @@ var init_code3 = __esm({
|
|
|
39696
39734
|
"codeElement"
|
|
39697
39735
|
]
|
|
39698
39736
|
], [
|
|
39699
|
-
|
|
39737
|
+
_dec151
|
|
39700
39738
|
], _HTMLElement56));
|
|
39701
39739
|
}
|
|
39702
39740
|
#instanceId;
|