@easemate/web-kit 0.3.5 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/elements.cjs +202 -127
- package/build/elements.cjs.map +1 -1
- package/build/elements.d.cts +1 -0
- package/build/elements.d.ts +1 -0
- package/build/elements.js +202 -127
- package/build/elements.js.map +1 -1
- package/build/index.cjs +158 -82
- package/build/index.cjs.map +1 -1
- package/build/index.js +158 -82
- package/build/index.js.map +1 -1
- package/build/react.cjs +284 -208
- package/build/react.cjs.map +1 -1
- package/build/react.js +284 -208
- package/build/react.js.map +1 -1
- package/build/register.cjs +272 -195
- package/build/register.cjs.map +1 -1
- package/build/register.js +272 -195
- package/build/register.js.map +1 -1
- package/package.json +1 -1
package/build/register.cjs
CHANGED
|
@@ -2097,10 +2097,15 @@ var Checkbox = class extends (_HTMLElement2 = HTMLElement) {
|
|
|
2097
2097
|
return;
|
|
2098
2098
|
}
|
|
2099
2099
|
this.checked = !this.checked;
|
|
2100
|
-
|
|
2100
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
2101
|
+
const detail = {
|
|
2102
|
+
name,
|
|
2101
2103
|
value: this.checked,
|
|
2102
2104
|
event
|
|
2103
|
-
}
|
|
2105
|
+
};
|
|
2106
|
+
dispatchControlEvent(this, "checkbox", detail);
|
|
2107
|
+
dispatchControlEvent(this, "change", detail);
|
|
2108
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
2104
2109
|
}
|
|
2105
2110
|
static {
|
|
2106
2111
|
_initClass2();
|
|
@@ -4480,6 +4485,7 @@ var Dropdown = class extends (_HTMLElement5 = HTMLElement) {
|
|
|
4480
4485
|
}
|
|
4481
4486
|
}
|
|
4482
4487
|
dispatchControlEvent(this, "toggle", {
|
|
4488
|
+
name: this.name ?? void 0,
|
|
4483
4489
|
value: next,
|
|
4484
4490
|
event: origin
|
|
4485
4491
|
});
|
|
@@ -4743,6 +4749,7 @@ var Dropdown = class extends (_HTMLElement5 = HTMLElement) {
|
|
|
4743
4749
|
}
|
|
4744
4750
|
#dispatchValueChange(value, label, event) {
|
|
4745
4751
|
dispatchControlEvent(this, "change", {
|
|
4752
|
+
name: this.name ?? void 0,
|
|
4746
4753
|
value,
|
|
4747
4754
|
event
|
|
4748
4755
|
});
|
|
@@ -5626,20 +5633,28 @@ var Input = class extends (_HTMLElement6 = HTMLElement) {
|
|
|
5626
5633
|
return;
|
|
5627
5634
|
}
|
|
5628
5635
|
this.value = target.value;
|
|
5629
|
-
|
|
5636
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
5637
|
+
const detail = {
|
|
5638
|
+
name,
|
|
5630
5639
|
value: this.value ?? "",
|
|
5631
5640
|
event
|
|
5632
|
-
}
|
|
5641
|
+
};
|
|
5642
|
+
dispatchControlEvent(this, "input", detail);
|
|
5643
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
5633
5644
|
}
|
|
5634
5645
|
handleChange(event, target) {
|
|
5635
5646
|
if (!target) {
|
|
5636
5647
|
return;
|
|
5637
5648
|
}
|
|
5638
5649
|
this.value = target.value;
|
|
5639
|
-
|
|
5650
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
5651
|
+
const detail = {
|
|
5652
|
+
name,
|
|
5640
5653
|
value: this.value ?? "",
|
|
5641
5654
|
event
|
|
5642
|
-
}
|
|
5655
|
+
};
|
|
5656
|
+
dispatchControlEvent(this, "change", detail);
|
|
5657
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
5643
5658
|
}
|
|
5644
5659
|
static {
|
|
5645
5660
|
_initClass6();
|
|
@@ -8139,9 +8154,11 @@ var _dec111;
|
|
|
8139
8154
|
var _dec28;
|
|
8140
8155
|
var _dec37;
|
|
8141
8156
|
var _dec47;
|
|
8157
|
+
var _dec55;
|
|
8142
8158
|
var _init_dropdown;
|
|
8143
8159
|
var _init_value5;
|
|
8144
8160
|
var _init_disabled5;
|
|
8161
|
+
var _init_name4;
|
|
8145
8162
|
var _init_placement3;
|
|
8146
8163
|
var _initProto8;
|
|
8147
8164
|
var _ColorInput;
|
|
@@ -8216,12 +8233,15 @@ _dec27 = Component({
|
|
|
8216
8233
|
type: Boolean,
|
|
8217
8234
|
reflect: true
|
|
8218
8235
|
}), _dec47 = Prop({
|
|
8236
|
+
reflect: true,
|
|
8237
|
+
defaultValue: null
|
|
8238
|
+
}), _dec55 = Prop({
|
|
8219
8239
|
reflect: true,
|
|
8220
8240
|
defaultValue: "bottom-start"
|
|
8221
8241
|
});
|
|
8222
8242
|
var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
8223
8243
|
static {
|
|
8224
|
-
({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
|
|
8244
|
+
({ e: [_init_dropdown, _init_value5, _init_disabled5, _init_name4, _init_placement3, _initProto8], c: [_ColorInput, _initClass10] } = _apply_decs_2203_r10(this, [
|
|
8225
8245
|
[
|
|
8226
8246
|
_dec111,
|
|
8227
8247
|
1,
|
|
@@ -8240,6 +8260,11 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
|
8240
8260
|
[
|
|
8241
8261
|
_dec47,
|
|
8242
8262
|
1,
|
|
8263
|
+
"name"
|
|
8264
|
+
],
|
|
8265
|
+
[
|
|
8266
|
+
_dec55,
|
|
8267
|
+
1,
|
|
8243
8268
|
"placement"
|
|
8244
8269
|
]
|
|
8245
8270
|
], [
|
|
@@ -8268,12 +8293,19 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
|
8268
8293
|
set disabled(_v) {
|
|
8269
8294
|
this.#___private_disabled_3 = _v;
|
|
8270
8295
|
}
|
|
8271
|
-
#
|
|
8296
|
+
#___private_name_4;
|
|
8297
|
+
get name() {
|
|
8298
|
+
return this.#___private_name_4;
|
|
8299
|
+
}
|
|
8300
|
+
set name(_v) {
|
|
8301
|
+
this.#___private_name_4 = _v;
|
|
8302
|
+
}
|
|
8303
|
+
#___private_placement_5;
|
|
8272
8304
|
get placement() {
|
|
8273
|
-
return this.#
|
|
8305
|
+
return this.#___private_placement_5;
|
|
8274
8306
|
}
|
|
8275
8307
|
set placement(_v) {
|
|
8276
|
-
this.#
|
|
8308
|
+
this.#___private_placement_5 = _v;
|
|
8277
8309
|
}
|
|
8278
8310
|
connectedCallback() {
|
|
8279
8311
|
this.#hasCustomTrigger = this.querySelector('[slot="trigger"]') !== null;
|
|
@@ -8318,21 +8350,24 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
|
8318
8350
|
_initClass10();
|
|
8319
8351
|
}
|
|
8320
8352
|
constructor(...args) {
|
|
8321
|
-
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.#
|
|
8353
|
+
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) => {
|
|
8322
8354
|
this.value = event.target.value;
|
|
8323
8355
|
dispatchControlEvent(this, "input", {
|
|
8356
|
+
name: this.name ?? void 0,
|
|
8324
8357
|
value: this.value,
|
|
8325
8358
|
event
|
|
8326
8359
|
});
|
|
8327
8360
|
}, this.#handlePickerInput = (event) => {
|
|
8328
8361
|
this.value = event.detail.value;
|
|
8329
8362
|
dispatchControlEvent(this, "input", {
|
|
8363
|
+
name: this.name ?? void 0,
|
|
8330
8364
|
value: this.value,
|
|
8331
8365
|
event
|
|
8332
8366
|
});
|
|
8333
8367
|
}, this.#handlePickerChange = (event) => {
|
|
8334
8368
|
this.value = event.detail.value;
|
|
8335
8369
|
dispatchControlEvent(this, "change", {
|
|
8370
|
+
name: this.name ?? void 0,
|
|
8336
8371
|
value: this.value,
|
|
8337
8372
|
event
|
|
8338
8373
|
});
|
|
@@ -8345,6 +8380,7 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
|
8345
8380
|
}, this.#handlePickerApply = (event) => {
|
|
8346
8381
|
this.value = event.detail.value;
|
|
8347
8382
|
dispatchControlEvent(this, "change", {
|
|
8383
|
+
name: this.name ?? void 0,
|
|
8348
8384
|
value: this.value,
|
|
8349
8385
|
event
|
|
8350
8386
|
});
|
|
@@ -9333,7 +9369,7 @@ _dec30 = Component({
|
|
|
9333
9369
|
[part="content"] {
|
|
9334
9370
|
height: 0;
|
|
9335
9371
|
overflow: hidden;
|
|
9336
|
-
transition: height 200ms cubic-bezier(.25, 0, .5, 1);
|
|
9372
|
+
transition: height 200ms cubic-bezier(.25, 0, .5, 1) !important;
|
|
9337
9373
|
}
|
|
9338
9374
|
|
|
9339
9375
|
:host([open]) [part="content"] {
|
|
@@ -13459,11 +13495,11 @@ function applyDecs2203RFactory21() {
|
|
|
13459
13495
|
function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
|
|
13460
13496
|
return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
|
|
13461
13497
|
}
|
|
13462
|
-
var
|
|
13498
|
+
var _dec56;
|
|
13463
13499
|
var _initClass21;
|
|
13464
13500
|
var _HTMLElement21;
|
|
13465
13501
|
var _IconBezier;
|
|
13466
|
-
|
|
13502
|
+
_dec56 = Component({
|
|
13467
13503
|
tag: "ease-icon-bezier",
|
|
13468
13504
|
styles: `
|
|
13469
13505
|
:host {
|
|
@@ -13484,7 +13520,7 @@ _dec55 = Component({
|
|
|
13484
13520
|
var IconBezier = class extends (_HTMLElement21 = HTMLElement) {
|
|
13485
13521
|
static {
|
|
13486
13522
|
({ c: [_IconBezier, _initClass21] } = _apply_decs_2203_r21(this, [], [
|
|
13487
|
-
|
|
13523
|
+
_dec56
|
|
13488
13524
|
], _HTMLElement21));
|
|
13489
13525
|
}
|
|
13490
13526
|
static {
|
|
@@ -13866,11 +13902,11 @@ function applyDecs2203RFactory22() {
|
|
|
13866
13902
|
function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
|
|
13867
13903
|
return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
|
|
13868
13904
|
}
|
|
13869
|
-
var
|
|
13905
|
+
var _dec57;
|
|
13870
13906
|
var _initClass22;
|
|
13871
13907
|
var _HTMLElement22;
|
|
13872
13908
|
var _IconBezierAngle;
|
|
13873
|
-
|
|
13909
|
+
_dec57 = Component({
|
|
13874
13910
|
tag: "ease-icon-bezier-angle",
|
|
13875
13911
|
styles: `
|
|
13876
13912
|
:host {
|
|
@@ -13898,7 +13934,7 @@ _dec56 = Component({
|
|
|
13898
13934
|
var IconBezierAngle = class extends (_HTMLElement22 = HTMLElement) {
|
|
13899
13935
|
static {
|
|
13900
13936
|
({ c: [_IconBezierAngle, _initClass22] } = _apply_decs_2203_r22(this, [], [
|
|
13901
|
-
|
|
13937
|
+
_dec57
|
|
13902
13938
|
], _HTMLElement22));
|
|
13903
13939
|
}
|
|
13904
13940
|
static {
|
|
@@ -14280,11 +14316,11 @@ function applyDecs2203RFactory23() {
|
|
|
14280
14316
|
function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
|
|
14281
14317
|
return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
|
|
14282
14318
|
}
|
|
14283
|
-
var
|
|
14319
|
+
var _dec58;
|
|
14284
14320
|
var _initClass23;
|
|
14285
14321
|
var _HTMLElement23;
|
|
14286
14322
|
var _IconBezierDistribute;
|
|
14287
|
-
|
|
14323
|
+
_dec58 = Component({
|
|
14288
14324
|
tag: "ease-icon-bezier-distribute",
|
|
14289
14325
|
styles: `
|
|
14290
14326
|
:host {
|
|
@@ -14313,7 +14349,7 @@ _dec57 = Component({
|
|
|
14313
14349
|
var IconBezierDistribute = class extends (_HTMLElement23 = HTMLElement) {
|
|
14314
14350
|
static {
|
|
14315
14351
|
({ c: [_IconBezierDistribute, _initClass23] } = _apply_decs_2203_r23(this, [], [
|
|
14316
|
-
|
|
14352
|
+
_dec58
|
|
14317
14353
|
], _HTMLElement23));
|
|
14318
14354
|
}
|
|
14319
14355
|
static {
|
|
@@ -14695,11 +14731,11 @@ function applyDecs2203RFactory24() {
|
|
|
14695
14731
|
function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
|
|
14696
14732
|
return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
|
|
14697
14733
|
}
|
|
14698
|
-
var
|
|
14734
|
+
var _dec59;
|
|
14699
14735
|
var _initClass24;
|
|
14700
14736
|
var _HTMLElement24;
|
|
14701
14737
|
var _IconBezierLength;
|
|
14702
|
-
|
|
14738
|
+
_dec59 = Component({
|
|
14703
14739
|
tag: "ease-icon-bezier-length",
|
|
14704
14740
|
styles: `
|
|
14705
14741
|
:host {
|
|
@@ -14725,7 +14761,7 @@ _dec58 = Component({
|
|
|
14725
14761
|
var IconBezierLength = class extends (_HTMLElement24 = HTMLElement) {
|
|
14726
14762
|
static {
|
|
14727
14763
|
({ c: [_IconBezierLength, _initClass24] } = _apply_decs_2203_r24(this, [], [
|
|
14728
|
-
|
|
14764
|
+
_dec59
|
|
14729
14765
|
], _HTMLElement24));
|
|
14730
14766
|
}
|
|
14731
14767
|
static {
|
|
@@ -15107,11 +15143,11 @@ function applyDecs2203RFactory25() {
|
|
|
15107
15143
|
function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
|
|
15108
15144
|
return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
|
|
15109
15145
|
}
|
|
15110
|
-
var
|
|
15146
|
+
var _dec60;
|
|
15111
15147
|
var _initClass25;
|
|
15112
15148
|
var _HTMLElement25;
|
|
15113
15149
|
var _IconBezierMirror;
|
|
15114
|
-
|
|
15150
|
+
_dec60 = Component({
|
|
15115
15151
|
tag: "ease-icon-bezier-mirror",
|
|
15116
15152
|
styles: `
|
|
15117
15153
|
:host {
|
|
@@ -15137,7 +15173,7 @@ _dec59 = Component({
|
|
|
15137
15173
|
var IconBezierMirror = class extends (_HTMLElement25 = HTMLElement) {
|
|
15138
15174
|
static {
|
|
15139
15175
|
({ c: [_IconBezierMirror, _initClass25] } = _apply_decs_2203_r25(this, [], [
|
|
15140
|
-
|
|
15176
|
+
_dec60
|
|
15141
15177
|
], _HTMLElement25));
|
|
15142
15178
|
}
|
|
15143
15179
|
static {
|
|
@@ -15519,11 +15555,11 @@ function applyDecs2203RFactory26() {
|
|
|
15519
15555
|
function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
|
|
15520
15556
|
return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
|
|
15521
15557
|
}
|
|
15522
|
-
var
|
|
15558
|
+
var _dec61;
|
|
15523
15559
|
var _initClass26;
|
|
15524
15560
|
var _HTMLElement26;
|
|
15525
15561
|
var _IconCheck;
|
|
15526
|
-
|
|
15562
|
+
_dec61 = Component({
|
|
15527
15563
|
tag: "ease-icon-check",
|
|
15528
15564
|
styles: `
|
|
15529
15565
|
:host {
|
|
@@ -15548,7 +15584,7 @@ _dec60 = Component({
|
|
|
15548
15584
|
var IconCheck = class extends (_HTMLElement26 = HTMLElement) {
|
|
15549
15585
|
static {
|
|
15550
15586
|
({ c: [_IconCheck, _initClass26] } = _apply_decs_2203_r26(this, [], [
|
|
15551
|
-
|
|
15587
|
+
_dec61
|
|
15552
15588
|
], _HTMLElement26));
|
|
15553
15589
|
}
|
|
15554
15590
|
static {
|
|
@@ -15930,11 +15966,11 @@ function applyDecs2203RFactory27() {
|
|
|
15930
15966
|
function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
|
|
15931
15967
|
return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
|
|
15932
15968
|
}
|
|
15933
|
-
var
|
|
15969
|
+
var _dec65;
|
|
15934
15970
|
var _initClass27;
|
|
15935
15971
|
var _HTMLElement27;
|
|
15936
15972
|
var _IconCircleArrowLeft;
|
|
15937
|
-
|
|
15973
|
+
_dec65 = Component({
|
|
15938
15974
|
tag: "ease-icon-circle-arrow-left",
|
|
15939
15975
|
styles: `
|
|
15940
15976
|
:host {
|
|
@@ -15959,7 +15995,7 @@ _dec61 = Component({
|
|
|
15959
15995
|
var IconCircleArrowLeft = class extends (_HTMLElement27 = HTMLElement) {
|
|
15960
15996
|
static {
|
|
15961
15997
|
({ c: [_IconCircleArrowLeft, _initClass27] } = _apply_decs_2203_r27(this, [], [
|
|
15962
|
-
|
|
15998
|
+
_dec65
|
|
15963
15999
|
], _HTMLElement27));
|
|
15964
16000
|
}
|
|
15965
16001
|
static {
|
|
@@ -16341,11 +16377,11 @@ function applyDecs2203RFactory28() {
|
|
|
16341
16377
|
function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
|
|
16342
16378
|
return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
|
|
16343
16379
|
}
|
|
16344
|
-
var
|
|
16380
|
+
var _dec66;
|
|
16345
16381
|
var _initClass28;
|
|
16346
16382
|
var _HTMLElement28;
|
|
16347
16383
|
var _IconCircleArrowRight;
|
|
16348
|
-
|
|
16384
|
+
_dec66 = Component({
|
|
16349
16385
|
tag: "ease-icon-circle-arrow-right",
|
|
16350
16386
|
styles: `
|
|
16351
16387
|
:host {
|
|
@@ -16370,7 +16406,7 @@ _dec65 = Component({
|
|
|
16370
16406
|
var IconCircleArrowRight = class extends (_HTMLElement28 = HTMLElement) {
|
|
16371
16407
|
static {
|
|
16372
16408
|
({ c: [_IconCircleArrowRight, _initClass28] } = _apply_decs_2203_r28(this, [], [
|
|
16373
|
-
|
|
16409
|
+
_dec66
|
|
16374
16410
|
], _HTMLElement28));
|
|
16375
16411
|
}
|
|
16376
16412
|
static {
|
|
@@ -16752,11 +16788,11 @@ function applyDecs2203RFactory29() {
|
|
|
16752
16788
|
function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
|
|
16753
16789
|
return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
|
|
16754
16790
|
}
|
|
16755
|
-
var
|
|
16791
|
+
var _dec67;
|
|
16756
16792
|
var _initClass29;
|
|
16757
16793
|
var _HTMLElement29;
|
|
16758
16794
|
var _IconCode;
|
|
16759
|
-
|
|
16795
|
+
_dec67 = Component({
|
|
16760
16796
|
tag: "ease-icon-code",
|
|
16761
16797
|
styles: `
|
|
16762
16798
|
:host {
|
|
@@ -16781,7 +16817,7 @@ _dec66 = Component({
|
|
|
16781
16817
|
var IconCode = class extends (_HTMLElement29 = HTMLElement) {
|
|
16782
16818
|
static {
|
|
16783
16819
|
({ c: [_IconCode, _initClass29] } = _apply_decs_2203_r29(this, [], [
|
|
16784
|
-
|
|
16820
|
+
_dec67
|
|
16785
16821
|
], _HTMLElement29));
|
|
16786
16822
|
}
|
|
16787
16823
|
static {
|
|
@@ -17163,11 +17199,11 @@ function applyDecs2203RFactory30() {
|
|
|
17163
17199
|
function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
|
|
17164
17200
|
return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
|
|
17165
17201
|
}
|
|
17166
|
-
var
|
|
17202
|
+
var _dec68;
|
|
17167
17203
|
var _initClass30;
|
|
17168
17204
|
var _HTMLElement30;
|
|
17169
17205
|
var _IconDots;
|
|
17170
|
-
|
|
17206
|
+
_dec68 = Component({
|
|
17171
17207
|
tag: "ease-icon-dots",
|
|
17172
17208
|
styles: `
|
|
17173
17209
|
:host {
|
|
@@ -17194,7 +17230,7 @@ _dec67 = Component({
|
|
|
17194
17230
|
var IconDots = class extends (_HTMLElement30 = HTMLElement) {
|
|
17195
17231
|
static {
|
|
17196
17232
|
({ c: [_IconDots, _initClass30] } = _apply_decs_2203_r30(this, [], [
|
|
17197
|
-
|
|
17233
|
+
_dec68
|
|
17198
17234
|
], _HTMLElement30));
|
|
17199
17235
|
}
|
|
17200
17236
|
static {
|
|
@@ -17576,11 +17612,11 @@ function applyDecs2203RFactory31() {
|
|
|
17576
17612
|
function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
|
|
17577
17613
|
return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
|
|
17578
17614
|
}
|
|
17579
|
-
var
|
|
17615
|
+
var _dec69;
|
|
17580
17616
|
var _initClass31;
|
|
17581
17617
|
var _HTMLElement31;
|
|
17582
17618
|
var _IconMention;
|
|
17583
|
-
|
|
17619
|
+
_dec69 = Component({
|
|
17584
17620
|
tag: "ease-icon-mention",
|
|
17585
17621
|
styles: `
|
|
17586
17622
|
:host {
|
|
@@ -17605,7 +17641,7 @@ _dec68 = Component({
|
|
|
17605
17641
|
var IconMention = class extends (_HTMLElement31 = HTMLElement) {
|
|
17606
17642
|
static {
|
|
17607
17643
|
({ c: [_IconMention, _initClass31] } = _apply_decs_2203_r31(this, [], [
|
|
17608
|
-
|
|
17644
|
+
_dec69
|
|
17609
17645
|
], _HTMLElement31));
|
|
17610
17646
|
}
|
|
17611
17647
|
static {
|
|
@@ -17987,11 +18023,11 @@ function applyDecs2203RFactory32() {
|
|
|
17987
18023
|
function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
|
|
17988
18024
|
return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
|
|
17989
18025
|
}
|
|
17990
|
-
var
|
|
18026
|
+
var _dec70;
|
|
17991
18027
|
var _initClass32;
|
|
17992
18028
|
var _HTMLElement32;
|
|
17993
18029
|
var _IconMinus;
|
|
17994
|
-
|
|
18030
|
+
_dec70 = Component({
|
|
17995
18031
|
tag: "ease-icon-minus",
|
|
17996
18032
|
styles: `
|
|
17997
18033
|
:host {
|
|
@@ -18016,7 +18052,7 @@ _dec69 = Component({
|
|
|
18016
18052
|
var IconMinus = class extends (_HTMLElement32 = HTMLElement) {
|
|
18017
18053
|
static {
|
|
18018
18054
|
({ c: [_IconMinus, _initClass32] } = _apply_decs_2203_r32(this, [], [
|
|
18019
|
-
|
|
18055
|
+
_dec70
|
|
18020
18056
|
], _HTMLElement32));
|
|
18021
18057
|
}
|
|
18022
18058
|
static {
|
|
@@ -18398,11 +18434,11 @@ function applyDecs2203RFactory33() {
|
|
|
18398
18434
|
function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
|
|
18399
18435
|
return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
|
|
18400
18436
|
}
|
|
18401
|
-
var
|
|
18437
|
+
var _dec71;
|
|
18402
18438
|
var _initClass33;
|
|
18403
18439
|
var _HTMLElement33;
|
|
18404
18440
|
var _IconPlus;
|
|
18405
|
-
|
|
18441
|
+
_dec71 = Component({
|
|
18406
18442
|
tag: "ease-icon-plus",
|
|
18407
18443
|
styles: `
|
|
18408
18444
|
:host {
|
|
@@ -18427,7 +18463,7 @@ _dec70 = Component({
|
|
|
18427
18463
|
var IconPlus = class extends (_HTMLElement33 = HTMLElement) {
|
|
18428
18464
|
static {
|
|
18429
18465
|
({ c: [_IconPlus, _initClass33] } = _apply_decs_2203_r33(this, [], [
|
|
18430
|
-
|
|
18466
|
+
_dec71
|
|
18431
18467
|
], _HTMLElement33));
|
|
18432
18468
|
}
|
|
18433
18469
|
static {
|
|
@@ -18809,11 +18845,11 @@ function applyDecs2203RFactory34() {
|
|
|
18809
18845
|
function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
|
|
18810
18846
|
return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
|
|
18811
18847
|
}
|
|
18812
|
-
var
|
|
18848
|
+
var _dec74;
|
|
18813
18849
|
var _initClass34;
|
|
18814
18850
|
var _HTMLElement34;
|
|
18815
18851
|
var _Settings;
|
|
18816
|
-
|
|
18852
|
+
_dec74 = Component({
|
|
18817
18853
|
tag: "ease-icon-settings",
|
|
18818
18854
|
styles: `
|
|
18819
18855
|
:host {
|
|
@@ -18838,7 +18874,7 @@ _dec71 = Component({
|
|
|
18838
18874
|
var Settings = class extends (_HTMLElement34 = HTMLElement) {
|
|
18839
18875
|
static {
|
|
18840
18876
|
({ c: [_Settings, _initClass34] } = _apply_decs_2203_r34(this, [], [
|
|
18841
|
-
|
|
18877
|
+
_dec74
|
|
18842
18878
|
], _HTMLElement34));
|
|
18843
18879
|
}
|
|
18844
18880
|
static {
|
|
@@ -19220,7 +19256,7 @@ function applyDecs2203RFactory35() {
|
|
|
19220
19256
|
function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
|
|
19221
19257
|
return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
|
|
19222
19258
|
}
|
|
19223
|
-
var
|
|
19259
|
+
var _dec75;
|
|
19224
19260
|
var _initClass35;
|
|
19225
19261
|
var _HTMLElement35;
|
|
19226
19262
|
var _dec118;
|
|
@@ -19380,7 +19416,7 @@ var sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).f
|
|
|
19380
19416
|
var LOOP_DURATION = 1500;
|
|
19381
19417
|
var ROTATION_DURATION = 600;
|
|
19382
19418
|
var _LogoLoader;
|
|
19383
|
-
|
|
19419
|
+
_dec75 = Component({
|
|
19384
19420
|
tag: "ease-logo-loader",
|
|
19385
19421
|
styles: `
|
|
19386
19422
|
:host {
|
|
@@ -19653,7 +19689,7 @@ var LogoLoader = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
19653
19689
|
"ariaLabel"
|
|
19654
19690
|
]
|
|
19655
19691
|
], [
|
|
19656
|
-
|
|
19692
|
+
_dec75
|
|
19657
19693
|
], _HTMLElement35));
|
|
19658
19694
|
}
|
|
19659
19695
|
#___private_loading_1;
|
|
@@ -20517,7 +20553,7 @@ function applyDecs2203RFactory36() {
|
|
|
20517
20553
|
function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
|
|
20518
20554
|
return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
|
|
20519
20555
|
}
|
|
20520
|
-
var
|
|
20556
|
+
var _dec76;
|
|
20521
20557
|
var _initClass36;
|
|
20522
20558
|
var _HTMLElement36;
|
|
20523
20559
|
var _dec119;
|
|
@@ -20581,7 +20617,7 @@ var rateFps = (fps, targetFps) => {
|
|
|
20581
20617
|
return "poor";
|
|
20582
20618
|
};
|
|
20583
20619
|
var _MonitorFps;
|
|
20584
|
-
|
|
20620
|
+
_dec76 = Component({
|
|
20585
20621
|
tag: "ease-monitor-fps",
|
|
20586
20622
|
autoSlot: false,
|
|
20587
20623
|
shadowMode: "open",
|
|
@@ -20700,7 +20736,7 @@ var MonitorFps = class extends (_HTMLElement36 = HTMLElement) {
|
|
|
20700
20736
|
"canvasEl"
|
|
20701
20737
|
]
|
|
20702
20738
|
], [
|
|
20703
|
-
|
|
20739
|
+
_dec76
|
|
20704
20740
|
], _HTMLElement36));
|
|
20705
20741
|
}
|
|
20706
20742
|
#___private_paused_1;
|
|
@@ -21355,7 +21391,7 @@ function applyDecs2203RFactory37() {
|
|
|
21355
21391
|
function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
|
|
21356
21392
|
return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
|
|
21357
21393
|
}
|
|
21358
|
-
var
|
|
21394
|
+
var _dec77;
|
|
21359
21395
|
var _initClass37;
|
|
21360
21396
|
var _HTMLElement37;
|
|
21361
21397
|
var _dec120;
|
|
@@ -21473,7 +21509,7 @@ var estimateCarbonFootprint = (totalBytes) => {
|
|
|
21473
21509
|
return `${emissions.toFixed(3)}g CO2 eq.`;
|
|
21474
21510
|
};
|
|
21475
21511
|
var _Monitor;
|
|
21476
|
-
|
|
21512
|
+
_dec77 = Component({
|
|
21477
21513
|
tag: "ease-monitor",
|
|
21478
21514
|
styles: `
|
|
21479
21515
|
:host {
|
|
@@ -21617,7 +21653,7 @@ var Monitor = class extends (_HTMLElement37 = HTMLElement) {
|
|
|
21617
21653
|
"handleFpsUpdate"
|
|
21618
21654
|
]
|
|
21619
21655
|
], [
|
|
21620
|
-
|
|
21656
|
+
_dec77
|
|
21621
21657
|
], _HTMLElement37));
|
|
21622
21658
|
}
|
|
21623
21659
|
#___private_metrics_1;
|
|
@@ -22506,7 +22542,7 @@ function applyDecs2203RFactory38() {
|
|
|
22506
22542
|
function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
|
|
22507
22543
|
return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
|
|
22508
22544
|
}
|
|
22509
|
-
var
|
|
22545
|
+
var _dec78;
|
|
22510
22546
|
var _initClass38;
|
|
22511
22547
|
var _HTMLElement38;
|
|
22512
22548
|
var _dec121;
|
|
@@ -22515,19 +22551,19 @@ var _dec312;
|
|
|
22515
22551
|
var _dec411;
|
|
22516
22552
|
var _dec510;
|
|
22517
22553
|
var _dec610;
|
|
22518
|
-
var
|
|
22554
|
+
var _dec79;
|
|
22519
22555
|
var _dec84;
|
|
22520
22556
|
var _dec94;
|
|
22521
22557
|
var _init_value6;
|
|
22522
22558
|
var _init_min;
|
|
22523
22559
|
var _init_max;
|
|
22524
22560
|
var _init_step;
|
|
22525
|
-
var
|
|
22561
|
+
var _init_name5;
|
|
22526
22562
|
var _init_disabled6;
|
|
22527
22563
|
var _init_control3;
|
|
22528
22564
|
var _initProto17;
|
|
22529
22565
|
var _NumberInput;
|
|
22530
|
-
|
|
22566
|
+
_dec78 = Component({
|
|
22531
22567
|
tag: "ease-number-input",
|
|
22532
22568
|
styles: `
|
|
22533
22569
|
:host {
|
|
@@ -22626,14 +22662,14 @@ _dec77 = Component({
|
|
|
22626
22662
|
}), _dec610 = Prop({
|
|
22627
22663
|
type: Boolean,
|
|
22628
22664
|
reflect: true
|
|
22629
|
-
}),
|
|
22665
|
+
}), _dec79 = Query("input"), _dec84 = Listen("input", {
|
|
22630
22666
|
selector: "input"
|
|
22631
22667
|
}), _dec94 = Listen("change", {
|
|
22632
22668
|
selector: "input"
|
|
22633
22669
|
});
|
|
22634
22670
|
var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
22635
22671
|
static {
|
|
22636
|
-
({ e: [_init_value6, _init_min, _init_max, _init_step,
|
|
22672
|
+
({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name5, _init_disabled6, _init_control3, _initProto17], c: [_NumberInput, _initClass38] } = _apply_decs_2203_r38(this, [
|
|
22637
22673
|
[
|
|
22638
22674
|
_dec121,
|
|
22639
22675
|
1,
|
|
@@ -22665,7 +22701,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
22665
22701
|
"disabled"
|
|
22666
22702
|
],
|
|
22667
22703
|
[
|
|
22668
|
-
|
|
22704
|
+
_dec79,
|
|
22669
22705
|
1,
|
|
22670
22706
|
"control"
|
|
22671
22707
|
],
|
|
@@ -22680,7 +22716,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
22680
22716
|
"handleChange"
|
|
22681
22717
|
]
|
|
22682
22718
|
], [
|
|
22683
|
-
|
|
22719
|
+
_dec78
|
|
22684
22720
|
], _HTMLElement38));
|
|
22685
22721
|
}
|
|
22686
22722
|
#___private_value_1;
|
|
@@ -22750,20 +22786,28 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
22750
22786
|
return;
|
|
22751
22787
|
}
|
|
22752
22788
|
this.value = coerceNumber(target.value);
|
|
22753
|
-
|
|
22789
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
22790
|
+
const detail = {
|
|
22791
|
+
name,
|
|
22754
22792
|
value: this.value,
|
|
22755
22793
|
event
|
|
22756
|
-
}
|
|
22794
|
+
};
|
|
22795
|
+
dispatchControlEvent(this, "input", detail);
|
|
22796
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
22757
22797
|
}
|
|
22758
22798
|
handleChange(event, target) {
|
|
22759
22799
|
if (!target) {
|
|
22760
22800
|
return;
|
|
22761
22801
|
}
|
|
22762
22802
|
this.value = coerceNumber(target.value);
|
|
22763
|
-
|
|
22803
|
+
const name = this.name ?? this.getAttribute("name") ?? void 0;
|
|
22804
|
+
const detail = {
|
|
22805
|
+
name,
|
|
22764
22806
|
value: this.value,
|
|
22765
22807
|
event
|
|
22766
|
-
}
|
|
22808
|
+
};
|
|
22809
|
+
dispatchControlEvent(this, "change", detail);
|
|
22810
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
22767
22811
|
}
|
|
22768
22812
|
addActiveLayer(button) {
|
|
22769
22813
|
const layer = document.createElement("div");
|
|
@@ -22801,7 +22845,7 @@ var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
22801
22845
|
_initClass38();
|
|
22802
22846
|
}
|
|
22803
22847
|
constructor(...args) {
|
|
22804
|
-
super(...args), this.#___private_value_1 = (_initProto17(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 =
|
|
22848
|
+
super(...args), this.#___private_value_1 = (_initProto17(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);
|
|
22805
22849
|
}
|
|
22806
22850
|
};
|
|
22807
22851
|
|
|
@@ -23179,7 +23223,7 @@ function applyDecs2203RFactory39() {
|
|
|
23179
23223
|
function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
|
|
23180
23224
|
return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
|
|
23181
23225
|
}
|
|
23182
|
-
var
|
|
23226
|
+
var _dec80;
|
|
23183
23227
|
var _initClass39;
|
|
23184
23228
|
var _HTMLElement39;
|
|
23185
23229
|
var _dec123;
|
|
@@ -23190,10 +23234,10 @@ var _dec511;
|
|
|
23190
23234
|
var _init_value7;
|
|
23191
23235
|
var _init_disabled7;
|
|
23192
23236
|
var _init_control4;
|
|
23193
|
-
var
|
|
23237
|
+
var _init_name6;
|
|
23194
23238
|
var _initProto18;
|
|
23195
23239
|
var _Origin;
|
|
23196
|
-
|
|
23240
|
+
_dec80 = Component({
|
|
23197
23241
|
tag: "ease-origin",
|
|
23198
23242
|
styles: `
|
|
23199
23243
|
:host {
|
|
@@ -23339,7 +23383,7 @@ _dec79 = Component({
|
|
|
23339
23383
|
});
|
|
23340
23384
|
var Origin = class extends (_HTMLElement39 = HTMLElement) {
|
|
23341
23385
|
static {
|
|
23342
|
-
({ e: [_init_value7, _init_disabled7, _init_control4,
|
|
23386
|
+
({ e: [_init_value7, _init_disabled7, _init_control4, _init_name6, _initProto18], c: [_Origin, _initClass39] } = _apply_decs_2203_r39(this, [
|
|
23343
23387
|
[
|
|
23344
23388
|
_dec123,
|
|
23345
23389
|
1,
|
|
@@ -23366,7 +23410,7 @@ var Origin = class extends (_HTMLElement39 = HTMLElement) {
|
|
|
23366
23410
|
"handleChange"
|
|
23367
23411
|
]
|
|
23368
23412
|
], [
|
|
23369
|
-
|
|
23413
|
+
_dec80
|
|
23370
23414
|
], _HTMLElement39));
|
|
23371
23415
|
}
|
|
23372
23416
|
#___private_value_1;
|
|
@@ -23414,7 +23458,7 @@ var Origin = class extends (_HTMLElement39 = HTMLElement) {
|
|
|
23414
23458
|
_initClass39();
|
|
23415
23459
|
}
|
|
23416
23460
|
constructor(...args) {
|
|
23417
|
-
super(...args), this.#___private_value_1 = (_initProto18(this), _init_value7(this, "center-center")), this.#___private_disabled_2 = _init_disabled7(this), this.#___private_control_3 = _init_control4(this), this.#___private_name_4 =
|
|
23461
|
+
super(...args), this.#___private_value_1 = (_initProto18(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) => {
|
|
23418
23462
|
this.value = String(this.control?.value ?? "center-center");
|
|
23419
23463
|
dispatchControlEvent(this, "change", {
|
|
23420
23464
|
value: this.value,
|
|
@@ -23798,7 +23842,7 @@ function applyDecs2203RFactory40() {
|
|
|
23798
23842
|
function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
|
|
23799
23843
|
return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
|
|
23800
23844
|
}
|
|
23801
|
-
var
|
|
23845
|
+
var _dec81;
|
|
23802
23846
|
var _initClass40;
|
|
23803
23847
|
var _HTMLElement40;
|
|
23804
23848
|
var _dec124;
|
|
@@ -23815,7 +23859,7 @@ var _init_contentElement2;
|
|
|
23815
23859
|
var _init_bodyElement;
|
|
23816
23860
|
var _initProto19;
|
|
23817
23861
|
var _Panel;
|
|
23818
|
-
|
|
23862
|
+
_dec81 = Component({
|
|
23819
23863
|
tag: "ease-panel",
|
|
23820
23864
|
shadowMode: "open",
|
|
23821
23865
|
styles: `
|
|
@@ -23880,7 +23924,6 @@ _dec80 = Component({
|
|
|
23880
23924
|
align-items: center;
|
|
23881
23925
|
gap: 2px;
|
|
23882
23926
|
flex-grow: 1;
|
|
23883
|
-
margin: 0 0 0 4px;
|
|
23884
23927
|
}
|
|
23885
23928
|
|
|
23886
23929
|
[part="tabs"]:empty {
|
|
@@ -23889,17 +23932,18 @@ _dec80 = Component({
|
|
|
23889
23932
|
|
|
23890
23933
|
[part="tab"] {
|
|
23891
23934
|
appearance: none;
|
|
23935
|
+
border-radius: var(--ease-panel-tab-radius, var(--radii-md));
|
|
23936
|
+
background-color: var(--ease-panel-tab-background, transparent);
|
|
23937
|
+
box-sizing: border-box;
|
|
23938
|
+
padding: var(--ease-panel-tab-padding, 4px 8px);
|
|
23892
23939
|
font-size: var(--ease-panel-tab-font-size);
|
|
23893
23940
|
font-weight: var(--ease-panel-tab-font-weight);
|
|
23894
23941
|
line-height: 24px;
|
|
23895
23942
|
font-family: var(--ease-font-family);
|
|
23896
23943
|
color: var(--ease-panel-tab-color);
|
|
23897
|
-
background-color: transparent;
|
|
23898
23944
|
border: none;
|
|
23899
|
-
padding: 4px 8px;
|
|
23900
23945
|
margin: 0;
|
|
23901
23946
|
cursor: pointer;
|
|
23902
|
-
border-radius: var(--ease-panel-tab-radius);
|
|
23903
23947
|
transition: color 200ms, background-color 200ms;
|
|
23904
23948
|
transition-timing-function: cubic-bezier(.25, 0, .5, 1);
|
|
23905
23949
|
}
|
|
@@ -24109,7 +24153,7 @@ var Panel = class extends (_HTMLElement40 = HTMLElement) {
|
|
|
24109
24153
|
"onDefaultSlotChange"
|
|
24110
24154
|
]
|
|
24111
24155
|
], [
|
|
24112
|
-
|
|
24156
|
+
_dec81
|
|
24113
24157
|
], _HTMLElement40));
|
|
24114
24158
|
}
|
|
24115
24159
|
#tabs;
|
|
@@ -24802,7 +24846,7 @@ function applyDecs2203RFactory41() {
|
|
|
24802
24846
|
function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
|
|
24803
24847
|
return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
|
|
24804
24848
|
}
|
|
24805
|
-
var
|
|
24849
|
+
var _dec85;
|
|
24806
24850
|
var _initClass41;
|
|
24807
24851
|
var _HTMLElement41;
|
|
24808
24852
|
var _dec125;
|
|
@@ -24827,7 +24871,7 @@ var nextPanelId2 = /* @__PURE__ */ (() => {
|
|
|
24827
24871
|
};
|
|
24828
24872
|
})();
|
|
24829
24873
|
var _RadioGroup;
|
|
24830
|
-
|
|
24874
|
+
_dec85 = Component({
|
|
24831
24875
|
tag: "ease-radio-group",
|
|
24832
24876
|
shadowMode: "open",
|
|
24833
24877
|
styles: `
|
|
@@ -24919,7 +24963,7 @@ var RadioGroup = class extends (_HTMLElement41 = HTMLElement) {
|
|
|
24919
24963
|
"contentSlot"
|
|
24920
24964
|
]
|
|
24921
24965
|
], [
|
|
24922
|
-
|
|
24966
|
+
_dec85
|
|
24923
24967
|
], _HTMLElement41));
|
|
24924
24968
|
}
|
|
24925
24969
|
#___private_value_1;
|
|
@@ -25520,7 +25564,7 @@ function applyDecs2203RFactory42() {
|
|
|
25520
25564
|
function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
|
|
25521
25565
|
return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
|
|
25522
25566
|
}
|
|
25523
|
-
var
|
|
25567
|
+
var _dec86;
|
|
25524
25568
|
var _initClass42;
|
|
25525
25569
|
var _HTMLElement42;
|
|
25526
25570
|
var _dec126;
|
|
@@ -25530,13 +25574,13 @@ var _dec414;
|
|
|
25530
25574
|
var _dec513;
|
|
25531
25575
|
var _dec612;
|
|
25532
25576
|
var _init_checked2;
|
|
25533
|
-
var
|
|
25577
|
+
var _init_name7;
|
|
25534
25578
|
var _init_value9;
|
|
25535
25579
|
var _init_disabled8;
|
|
25536
25580
|
var _init_control5;
|
|
25537
25581
|
var _initProto21;
|
|
25538
25582
|
var _RadioInput;
|
|
25539
|
-
|
|
25583
|
+
_dec86 = Component({
|
|
25540
25584
|
tag: "ease-radio-input",
|
|
25541
25585
|
shadowMode: "open",
|
|
25542
25586
|
styles: `
|
|
@@ -25803,7 +25847,7 @@ _dec85 = Component({
|
|
|
25803
25847
|
});
|
|
25804
25848
|
var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
|
|
25805
25849
|
static {
|
|
25806
|
-
({ e: [_init_checked2,
|
|
25850
|
+
({ e: [_init_checked2, _init_name7, _init_value9, _init_disabled8, _init_control5, _initProto21], c: [_RadioInput, _initClass42] } = _apply_decs_2203_r42(this, [
|
|
25807
25851
|
[
|
|
25808
25852
|
_dec126,
|
|
25809
25853
|
1,
|
|
@@ -25835,7 +25879,7 @@ var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
|
|
|
25835
25879
|
"handleClick"
|
|
25836
25880
|
]
|
|
25837
25881
|
], [
|
|
25838
|
-
|
|
25882
|
+
_dec86
|
|
25839
25883
|
], _HTMLElement42));
|
|
25840
25884
|
}
|
|
25841
25885
|
#___private_checked_1;
|
|
@@ -25918,16 +25962,22 @@ var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
|
|
|
25918
25962
|
return;
|
|
25919
25963
|
}
|
|
25920
25964
|
this.checked = true;
|
|
25921
|
-
|
|
25965
|
+
const groupName = this.closest("ease-radio-group")?.getAttribute("name") ?? void 0;
|
|
25966
|
+
const name = this.getAttribute("name") ?? groupName ?? void 0;
|
|
25967
|
+
const detail = {
|
|
25968
|
+
name,
|
|
25922
25969
|
value: this.checked,
|
|
25923
25970
|
event
|
|
25924
|
-
}
|
|
25971
|
+
};
|
|
25972
|
+
dispatchControlEvent(this, "radio", detail);
|
|
25973
|
+
dispatchControlEvent(this, "change", detail);
|
|
25974
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
25925
25975
|
}
|
|
25926
25976
|
static {
|
|
25927
25977
|
_initClass42();
|
|
25928
25978
|
}
|
|
25929
25979
|
constructor(...args) {
|
|
25930
|
-
super(...args), this.#___private_checked_1 = (_initProto21(this), _init_checked2(this)), this.#___private_name_2 =
|
|
25980
|
+
super(...args), this.#___private_checked_1 = (_initProto21(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()}`;
|
|
25931
25981
|
}
|
|
25932
25982
|
};
|
|
25933
25983
|
|
|
@@ -26305,7 +26355,7 @@ function applyDecs2203RFactory43() {
|
|
|
26305
26355
|
function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
|
|
26306
26356
|
return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
|
|
26307
26357
|
}
|
|
26308
|
-
var
|
|
26358
|
+
var _dec87;
|
|
26309
26359
|
var _initClass43;
|
|
26310
26360
|
var _HTMLElement43;
|
|
26311
26361
|
var _dec127;
|
|
@@ -26315,7 +26365,7 @@ var _dec415;
|
|
|
26315
26365
|
var _dec514;
|
|
26316
26366
|
var _dec613;
|
|
26317
26367
|
var _dec711;
|
|
26318
|
-
var
|
|
26368
|
+
var _dec88;
|
|
26319
26369
|
var _dec95;
|
|
26320
26370
|
var _dec104;
|
|
26321
26371
|
var _dec1110;
|
|
@@ -26328,7 +26378,7 @@ var _init_control6;
|
|
|
26328
26378
|
var _init_valueControl;
|
|
26329
26379
|
var _initProto22;
|
|
26330
26380
|
var _Slider;
|
|
26331
|
-
|
|
26381
|
+
_dec87 = Component({
|
|
26332
26382
|
tag: "ease-slider",
|
|
26333
26383
|
styles: `
|
|
26334
26384
|
:host {
|
|
@@ -26439,11 +26489,15 @@ _dec86 = Component({
|
|
|
26439
26489
|
.step=${this.step ?? 1}
|
|
26440
26490
|
.value=${String(this.value ?? 0)}
|
|
26441
26491
|
?disabled=${this.disabled}
|
|
26492
|
+
@input=${this.handleRangeInput}
|
|
26493
|
+
@change=${this.handleRangeChange}
|
|
26442
26494
|
?aria-disabled=${this.disabled}
|
|
26443
26495
|
/>
|
|
26444
26496
|
|
|
26445
26497
|
<ease-input
|
|
26446
26498
|
part="value"
|
|
26499
|
+
@input=${this.handleValueInput}
|
|
26500
|
+
@change=${this.handleValueChange}
|
|
26447
26501
|
type="number"
|
|
26448
26502
|
placeholder="-"
|
|
26449
26503
|
.disabled=${Boolean(this.disabled)}
|
|
@@ -26467,7 +26521,7 @@ _dec86 = Component({
|
|
|
26467
26521
|
}), _dec514 = Prop({
|
|
26468
26522
|
type: Boolean,
|
|
26469
26523
|
reflect: true
|
|
26470
|
-
}), _dec613 = Query("input"), _dec711 = Query("ease-input"),
|
|
26524
|
+
}), _dec613 = Query("input"), _dec711 = Query("ease-input"), _dec88 = Listen("input", {
|
|
26471
26525
|
selector: 'input[type="range"]'
|
|
26472
26526
|
}), _dec95 = Listen("change", {
|
|
26473
26527
|
selector: 'input[type="range"]'
|
|
@@ -26517,7 +26571,7 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26517
26571
|
"valueControl"
|
|
26518
26572
|
],
|
|
26519
26573
|
[
|
|
26520
|
-
|
|
26574
|
+
_dec88,
|
|
26521
26575
|
2,
|
|
26522
26576
|
"handleRangeInput"
|
|
26523
26577
|
],
|
|
@@ -26537,7 +26591,7 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26537
26591
|
"handleValueChange"
|
|
26538
26592
|
]
|
|
26539
26593
|
], [
|
|
26540
|
-
|
|
26594
|
+
_dec87
|
|
26541
26595
|
], _HTMLElement43));
|
|
26542
26596
|
}
|
|
26543
26597
|
#___private_value_1;
|
|
@@ -26615,10 +26669,13 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26615
26669
|
if (this.valueControl) {
|
|
26616
26670
|
this.valueControl.value = numericValue === null ? "" : String(numericValue);
|
|
26617
26671
|
}
|
|
26618
|
-
|
|
26672
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
26673
|
+
const detail = {
|
|
26674
|
+
name,
|
|
26619
26675
|
value: this.value,
|
|
26620
26676
|
event
|
|
26621
|
-
}
|
|
26677
|
+
};
|
|
26678
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
26622
26679
|
}
|
|
26623
26680
|
handleRangeChange(event, target) {
|
|
26624
26681
|
if (target) {
|
|
@@ -26629,10 +26686,13 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26629
26686
|
this.valueControl.value = numericValue === null ? "" : String(numericValue);
|
|
26630
26687
|
}
|
|
26631
26688
|
}
|
|
26632
|
-
|
|
26689
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
26690
|
+
const detail = {
|
|
26691
|
+
name,
|
|
26633
26692
|
value: this.value,
|
|
26634
26693
|
event
|
|
26635
|
-
}
|
|
26694
|
+
};
|
|
26695
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
26636
26696
|
}
|
|
26637
26697
|
handleValueInput(event) {
|
|
26638
26698
|
const rawValue = event.detail?.value ?? "";
|
|
@@ -26642,10 +26702,15 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26642
26702
|
if (this.control) {
|
|
26643
26703
|
this.control.value = String(numericValue ?? 0);
|
|
26644
26704
|
}
|
|
26645
|
-
|
|
26705
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
26706
|
+
const controlEvent = event.detail?.event ?? event;
|
|
26707
|
+
const detail = {
|
|
26708
|
+
name,
|
|
26646
26709
|
value: this.value,
|
|
26647
|
-
event:
|
|
26648
|
-
}
|
|
26710
|
+
event: controlEvent
|
|
26711
|
+
};
|
|
26712
|
+
dispatchControlEvent(this, "input", detail);
|
|
26713
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
26649
26714
|
}
|
|
26650
26715
|
handleValueChange(event) {
|
|
26651
26716
|
const rawValue = event.detail?.value ?? "";
|
|
@@ -26655,10 +26720,15 @@ var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26655
26720
|
if (this.control) {
|
|
26656
26721
|
this.control.value = String(numericValue ?? 0);
|
|
26657
26722
|
}
|
|
26658
|
-
|
|
26723
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
26724
|
+
const controlEvent = event.detail?.event ?? event;
|
|
26725
|
+
const detail = {
|
|
26726
|
+
name,
|
|
26659
26727
|
value: this.value,
|
|
26660
|
-
event:
|
|
26661
|
-
}
|
|
26728
|
+
event: controlEvent
|
|
26729
|
+
};
|
|
26730
|
+
dispatchControlEvent(this, "change", detail);
|
|
26731
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
26662
26732
|
}
|
|
26663
26733
|
updateProgress() {
|
|
26664
26734
|
if (!this.control) {
|
|
@@ -27052,7 +27122,7 @@ function applyDecs2203RFactory44() {
|
|
|
27052
27122
|
function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
|
|
27053
27123
|
return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
|
|
27054
27124
|
}
|
|
27055
|
-
var
|
|
27125
|
+
var _dec89;
|
|
27056
27126
|
var _initClass44;
|
|
27057
27127
|
var _HTMLElement44;
|
|
27058
27128
|
var _dec128;
|
|
@@ -27085,7 +27155,7 @@ var getControlName = (element) => {
|
|
|
27085
27155
|
return element.getAttribute?.("name") ?? null;
|
|
27086
27156
|
};
|
|
27087
27157
|
var _State;
|
|
27088
|
-
|
|
27158
|
+
_dec89 = Component({
|
|
27089
27159
|
tag: "ease-state",
|
|
27090
27160
|
shadowMode: "open",
|
|
27091
27161
|
styles: `
|
|
@@ -27138,7 +27208,7 @@ var State = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27138
27208
|
"handleControlChange"
|
|
27139
27209
|
]
|
|
27140
27210
|
], [
|
|
27141
|
-
|
|
27211
|
+
_dec89
|
|
27142
27212
|
], _HTMLElement44));
|
|
27143
27213
|
}
|
|
27144
27214
|
#controls;
|
|
@@ -27721,7 +27791,7 @@ function applyDecs2203RFactory45() {
|
|
|
27721
27791
|
function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
|
|
27722
27792
|
return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
|
|
27723
27793
|
}
|
|
27724
|
-
var
|
|
27794
|
+
var _dec90;
|
|
27725
27795
|
var _initClass45;
|
|
27726
27796
|
var _HTMLElement45;
|
|
27727
27797
|
var _dec129;
|
|
@@ -27733,7 +27803,7 @@ var _init_disabled10;
|
|
|
27733
27803
|
var _init_control7;
|
|
27734
27804
|
var _initProto24;
|
|
27735
27805
|
var _Toggle;
|
|
27736
|
-
|
|
27806
|
+
_dec90 = Component({
|
|
27737
27807
|
tag: "ease-toggle",
|
|
27738
27808
|
styles: `
|
|
27739
27809
|
:host {
|
|
@@ -27878,7 +27948,7 @@ var Toggle = class extends (_HTMLElement45 = HTMLElement) {
|
|
|
27878
27948
|
"handleClick"
|
|
27879
27949
|
]
|
|
27880
27950
|
], [
|
|
27881
|
-
|
|
27951
|
+
_dec90
|
|
27882
27952
|
], _HTMLElement45));
|
|
27883
27953
|
}
|
|
27884
27954
|
#___private_checked_1;
|
|
@@ -27918,10 +27988,15 @@ var Toggle = class extends (_HTMLElement45 = HTMLElement) {
|
|
|
27918
27988
|
return;
|
|
27919
27989
|
}
|
|
27920
27990
|
this.checked = !this.checked;
|
|
27921
|
-
|
|
27991
|
+
const name = this.getAttribute("name") ?? void 0;
|
|
27992
|
+
const detail = {
|
|
27993
|
+
name,
|
|
27922
27994
|
value: this.checked,
|
|
27923
27995
|
event
|
|
27924
|
-
}
|
|
27996
|
+
};
|
|
27997
|
+
dispatchControlEvent(this, "toggle", detail);
|
|
27998
|
+
dispatchControlEvent(this, "change", detail);
|
|
27999
|
+
dispatchControlEvent(this, CONTROL_CHANGE_EVENT, detail);
|
|
27925
28000
|
}
|
|
27926
28001
|
static {
|
|
27927
28002
|
_initClass45();
|
|
@@ -28305,7 +28380,7 @@ function applyDecs2203RFactory46() {
|
|
|
28305
28380
|
function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
|
|
28306
28381
|
return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
|
|
28307
28382
|
}
|
|
28308
|
-
var
|
|
28383
|
+
var _dec91;
|
|
28309
28384
|
var _initClass46;
|
|
28310
28385
|
var _HTMLElement46;
|
|
28311
28386
|
var _dec130;
|
|
@@ -28321,7 +28396,7 @@ var _init_triggerElement;
|
|
|
28321
28396
|
var _init_contentElement3;
|
|
28322
28397
|
var _initProto25;
|
|
28323
28398
|
var _Tooltip;
|
|
28324
|
-
|
|
28399
|
+
_dec91 = Component({
|
|
28325
28400
|
tag: "ease-tooltip",
|
|
28326
28401
|
shadowMode: "open",
|
|
28327
28402
|
styles: `
|
|
@@ -28405,7 +28480,7 @@ var Tooltip = class extends (_HTMLElement46 = HTMLElement) {
|
|
|
28405
28480
|
"handleOutsideDismiss"
|
|
28406
28481
|
]
|
|
28407
28482
|
], [
|
|
28408
|
-
|
|
28483
|
+
_dec91
|
|
28409
28484
|
], _HTMLElement46));
|
|
28410
28485
|
}
|
|
28411
28486
|
#hoverTimer;
|
|
@@ -29190,7 +29265,7 @@ function applyDecs2203RFactory47() {
|
|
|
29190
29265
|
function _apply_decs_2203_r47(targetClass, memberDecs, classDecs, parentClass) {
|
|
29191
29266
|
return (_apply_decs_2203_r47 = applyDecs2203RFactory47())(targetClass, memberDecs, classDecs, parentClass);
|
|
29192
29267
|
}
|
|
29193
|
-
var
|
|
29268
|
+
var _dec96;
|
|
29194
29269
|
var _initClass47;
|
|
29195
29270
|
var _HTMLElement47;
|
|
29196
29271
|
var _dec131;
|
|
@@ -29199,7 +29274,7 @@ var _init_language;
|
|
|
29199
29274
|
var _init_codeElement;
|
|
29200
29275
|
var _initProto26;
|
|
29201
29276
|
var _Code;
|
|
29202
|
-
|
|
29277
|
+
_dec96 = Component({
|
|
29203
29278
|
tag: "ease-code",
|
|
29204
29279
|
shadowMode: "open",
|
|
29205
29280
|
autoSlot: false,
|
|
@@ -29241,7 +29316,7 @@ var Code = class extends (_HTMLElement47 = HTMLElement) {
|
|
|
29241
29316
|
"codeElement"
|
|
29242
29317
|
]
|
|
29243
29318
|
], [
|
|
29244
|
-
|
|
29319
|
+
_dec96
|
|
29245
29320
|
], _HTMLElement47));
|
|
29246
29321
|
}
|
|
29247
29322
|
#instanceId;
|
|
@@ -30426,6 +30501,15 @@ var smoothLinearPoints = (points, tension = 0.25) => {
|
|
|
30426
30501
|
});
|
|
30427
30502
|
};
|
|
30428
30503
|
|
|
30504
|
+
// src/elements/shared.ts
|
|
30505
|
+
var dispatchControlEvent2 = (host, type, detail) => {
|
|
30506
|
+
host.dispatchEvent(new CustomEvent(type, {
|
|
30507
|
+
detail,
|
|
30508
|
+
bubbles: true,
|
|
30509
|
+
composed: true
|
|
30510
|
+
}));
|
|
30511
|
+
};
|
|
30512
|
+
|
|
30429
30513
|
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts
|
|
30430
30514
|
var import_lit_html51 = require("lit-html");
|
|
30431
30515
|
|
|
@@ -30667,15 +30751,6 @@ var generateGridLines = (gridStep) => {
|
|
|
30667
30751
|
return lines;
|
|
30668
30752
|
};
|
|
30669
30753
|
|
|
30670
|
-
// src/elements/shared.ts
|
|
30671
|
-
var dispatchControlEvent2 = (host, type, detail) => {
|
|
30672
|
-
host.dispatchEvent(new CustomEvent(type, {
|
|
30673
|
-
detail,
|
|
30674
|
-
bubbles: true,
|
|
30675
|
-
composed: true
|
|
30676
|
-
}));
|
|
30677
|
-
};
|
|
30678
|
-
|
|
30679
30754
|
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/components/curve/canvas.ts
|
|
30680
30755
|
function applyDecs2203RFactory48() {
|
|
30681
30756
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -31049,7 +31124,7 @@ function applyDecs2203RFactory48() {
|
|
|
31049
31124
|
function _apply_decs_2203_r48(targetClass, memberDecs, classDecs, parentClass) {
|
|
31050
31125
|
return (_apply_decs_2203_r48 = applyDecs2203RFactory48())(targetClass, memberDecs, classDecs, parentClass);
|
|
31051
31126
|
}
|
|
31052
|
-
var
|
|
31127
|
+
var _dec97;
|
|
31053
31128
|
var _initClass48;
|
|
31054
31129
|
var _HTMLElement48;
|
|
31055
31130
|
var _dec133;
|
|
@@ -31060,7 +31135,7 @@ var _dec517;
|
|
|
31060
31135
|
var _dec615;
|
|
31061
31136
|
var _dec712;
|
|
31062
31137
|
var _dec810;
|
|
31063
|
-
var
|
|
31138
|
+
var _dec98;
|
|
31064
31139
|
var _init_easingType;
|
|
31065
31140
|
var _init_points;
|
|
31066
31141
|
var _init_showGrid;
|
|
@@ -31072,7 +31147,7 @@ var _init_round;
|
|
|
31072
31147
|
var _init_svgElement;
|
|
31073
31148
|
var _initProto27;
|
|
31074
31149
|
var _CurveCanvas;
|
|
31075
|
-
|
|
31150
|
+
_dec97 = Component({
|
|
31076
31151
|
tag: "ease-curve-canvas",
|
|
31077
31152
|
styles: canvasStyles,
|
|
31078
31153
|
template() {
|
|
@@ -31128,7 +31203,7 @@ _dec96 = Component({
|
|
|
31128
31203
|
type: Number,
|
|
31129
31204
|
reflect: true,
|
|
31130
31205
|
defaultValue: 5
|
|
31131
|
-
}),
|
|
31206
|
+
}), _dec98 = Query("svg");
|
|
31132
31207
|
var CurveCanvas = class extends (_HTMLElement48 = HTMLElement) {
|
|
31133
31208
|
static {
|
|
31134
31209
|
({ e: [_init_easingType, _init_points, _init_showGrid, _init_snapToGrid, _init_gridSize, _init_focusedLinearIndex, _init_simplify, _init_round, _init_svgElement, _initProto27], c: [_CurveCanvas, _initClass48] } = _apply_decs_2203_r48(this, [
|
|
@@ -31173,12 +31248,12 @@ var CurveCanvas = class extends (_HTMLElement48 = HTMLElement) {
|
|
|
31173
31248
|
"round"
|
|
31174
31249
|
],
|
|
31175
31250
|
[
|
|
31176
|
-
|
|
31251
|
+
_dec98,
|
|
31177
31252
|
1,
|
|
31178
31253
|
"svgElement"
|
|
31179
31254
|
]
|
|
31180
31255
|
], [
|
|
31181
|
-
|
|
31256
|
+
_dec97
|
|
31182
31257
|
], _HTMLElement48));
|
|
31183
31258
|
}
|
|
31184
31259
|
#___private_easingType_1;
|
|
@@ -32062,6 +32137,7 @@ var CurveCanvas = class extends (_HTMLElement48 = HTMLElement) {
|
|
|
32062
32137
|
}, this.#emitPoints = (value, event) => {
|
|
32063
32138
|
const target = this.#getEventTarget();
|
|
32064
32139
|
const detail = {
|
|
32140
|
+
name: target.name,
|
|
32065
32141
|
value,
|
|
32066
32142
|
event
|
|
32067
32143
|
};
|
|
@@ -32072,6 +32148,7 @@ var CurveCanvas = class extends (_HTMLElement48 = HTMLElement) {
|
|
|
32072
32148
|
}
|
|
32073
32149
|
const target = this.#getEventTarget();
|
|
32074
32150
|
const detail = {
|
|
32151
|
+
name: target.name,
|
|
32075
32152
|
value: index,
|
|
32076
32153
|
event
|
|
32077
32154
|
};
|
|
@@ -32789,7 +32866,7 @@ function applyDecs2203RFactory49() {
|
|
|
32789
32866
|
function _apply_decs_2203_r49(targetClass, memberDecs, classDecs, parentClass) {
|
|
32790
32867
|
return (_apply_decs_2203_r49 = applyDecs2203RFactory49())(targetClass, memberDecs, classDecs, parentClass);
|
|
32791
32868
|
}
|
|
32792
|
-
var
|
|
32869
|
+
var _dec99;
|
|
32793
32870
|
var _initClass49;
|
|
32794
32871
|
var _HTMLElement49;
|
|
32795
32872
|
var _dec134;
|
|
@@ -32800,7 +32877,7 @@ var _init_points2;
|
|
|
32800
32877
|
var _init_focusedLinearIndex2;
|
|
32801
32878
|
var _initProto28;
|
|
32802
32879
|
var _CanvasControls;
|
|
32803
|
-
|
|
32880
|
+
_dec99 = Component({
|
|
32804
32881
|
tag: "ease-curve-canvas-controls",
|
|
32805
32882
|
styles: canvasControlsStyles,
|
|
32806
32883
|
template() {
|
|
@@ -32889,7 +32966,7 @@ var CanvasControls = class extends (_HTMLElement49 = HTMLElement) {
|
|
|
32889
32966
|
"focusedLinearIndex"
|
|
32890
32967
|
]
|
|
32891
32968
|
], [
|
|
32892
|
-
|
|
32969
|
+
_dec99
|
|
32893
32970
|
], _HTMLElement49));
|
|
32894
32971
|
}
|
|
32895
32972
|
#___private_easingType_1;
|
|
@@ -33007,6 +33084,7 @@ var CanvasControls = class extends (_HTMLElement49 = HTMLElement) {
|
|
|
33007
33084
|
}, this.#notifyHost = (type, value, event) => {
|
|
33008
33085
|
const target = this.#getEventTarget();
|
|
33009
33086
|
const detail = {
|
|
33087
|
+
name: target.name,
|
|
33010
33088
|
value,
|
|
33011
33089
|
event
|
|
33012
33090
|
};
|
|
@@ -33520,11 +33598,11 @@ function applyDecs2203RFactory50() {
|
|
|
33520
33598
|
function _apply_decs_2203_r50(targetClass, memberDecs, classDecs, parentClass) {
|
|
33521
33599
|
return (_apply_decs_2203_r50 = applyDecs2203RFactory50())(targetClass, memberDecs, classDecs, parentClass);
|
|
33522
33600
|
}
|
|
33523
|
-
var
|
|
33601
|
+
var _dec100;
|
|
33524
33602
|
var _initClass50;
|
|
33525
33603
|
var _HTMLElement50;
|
|
33526
33604
|
var _IconMinus2;
|
|
33527
|
-
|
|
33605
|
+
_dec100 = Component({
|
|
33528
33606
|
tag: "ease-icon-minus",
|
|
33529
33607
|
styles: `
|
|
33530
33608
|
:host {
|
|
@@ -33549,7 +33627,7 @@ _dec99 = Component({
|
|
|
33549
33627
|
var IconMinus2 = class extends (_HTMLElement50 = HTMLElement) {
|
|
33550
33628
|
static {
|
|
33551
33629
|
({ c: [_IconMinus2, _initClass50] } = _apply_decs_2203_r50(this, [], [
|
|
33552
|
-
|
|
33630
|
+
_dec100
|
|
33553
33631
|
], _HTMLElement50));
|
|
33554
33632
|
}
|
|
33555
33633
|
static {
|
|
@@ -33931,11 +34009,11 @@ function applyDecs2203RFactory51() {
|
|
|
33931
34009
|
function _apply_decs_2203_r51(targetClass, memberDecs, classDecs, parentClass) {
|
|
33932
34010
|
return (_apply_decs_2203_r51 = applyDecs2203RFactory51())(targetClass, memberDecs, classDecs, parentClass);
|
|
33933
34011
|
}
|
|
33934
|
-
var
|
|
34012
|
+
var _dec101;
|
|
33935
34013
|
var _initClass51;
|
|
33936
34014
|
var _HTMLElement51;
|
|
33937
34015
|
var _IconPlus2;
|
|
33938
|
-
|
|
34016
|
+
_dec101 = Component({
|
|
33939
34017
|
tag: "ease-icon-plus",
|
|
33940
34018
|
styles: `
|
|
33941
34019
|
:host {
|
|
@@ -33960,7 +34038,7 @@ _dec100 = Component({
|
|
|
33960
34038
|
var IconPlus2 = class extends (_HTMLElement51 = HTMLElement) {
|
|
33961
34039
|
static {
|
|
33962
34040
|
({ c: [_IconPlus2, _initClass51] } = _apply_decs_2203_r51(this, [], [
|
|
33963
|
-
|
|
34041
|
+
_dec101
|
|
33964
34042
|
], _HTMLElement51));
|
|
33965
34043
|
}
|
|
33966
34044
|
static {
|
|
@@ -34342,7 +34420,7 @@ function applyDecs2203RFactory52() {
|
|
|
34342
34420
|
function _apply_decs_2203_r52(targetClass, memberDecs, classDecs, parentClass) {
|
|
34343
34421
|
return (_apply_decs_2203_r52 = applyDecs2203RFactory52())(targetClass, memberDecs, classDecs, parentClass);
|
|
34344
34422
|
}
|
|
34345
|
-
var
|
|
34423
|
+
var _dec105;
|
|
34346
34424
|
var _initClass52;
|
|
34347
34425
|
var _HTMLElement52;
|
|
34348
34426
|
var _dec135;
|
|
@@ -34359,7 +34437,7 @@ var _init_block3;
|
|
|
34359
34437
|
var _init_variant2;
|
|
34360
34438
|
var _initProto29;
|
|
34361
34439
|
var _Button2;
|
|
34362
|
-
|
|
34440
|
+
_dec105 = Component({
|
|
34363
34441
|
tag: "ease-button",
|
|
34364
34442
|
autoSlot: true,
|
|
34365
34443
|
shadowMode: "open",
|
|
@@ -34585,7 +34663,7 @@ var Button2 = class extends (_HTMLElement52 = HTMLElement) {
|
|
|
34585
34663
|
"variant"
|
|
34586
34664
|
]
|
|
34587
34665
|
], [
|
|
34588
|
-
|
|
34666
|
+
_dec105
|
|
34589
34667
|
], _HTMLElement52));
|
|
34590
34668
|
}
|
|
34591
34669
|
#___private_disabled_1;
|
|
@@ -35025,7 +35103,7 @@ function applyDecs2203RFactory53() {
|
|
|
35025
35103
|
function _apply_decs_2203_r53(targetClass, memberDecs, classDecs, parentClass) {
|
|
35026
35104
|
return (_apply_decs_2203_r53 = applyDecs2203RFactory53())(targetClass, memberDecs, classDecs, parentClass);
|
|
35027
35105
|
}
|
|
35028
|
-
var
|
|
35106
|
+
var _dec106;
|
|
35029
35107
|
var _initClass53;
|
|
35030
35108
|
var _HTMLElement53;
|
|
35031
35109
|
var _dec136;
|
|
@@ -35042,7 +35120,7 @@ var _init_gridSize2;
|
|
|
35042
35120
|
var _init_focusedLinearIndex3;
|
|
35043
35121
|
var _initProto30;
|
|
35044
35122
|
var _CurveControls;
|
|
35045
|
-
|
|
35123
|
+
_dec106 = Component({
|
|
35046
35124
|
tag: "ease-curve-controls",
|
|
35047
35125
|
styles: controlsStyles,
|
|
35048
35126
|
template() {
|
|
@@ -35137,7 +35215,7 @@ var CurveControls = class extends (_HTMLElement53 = HTMLElement) {
|
|
|
35137
35215
|
"focusedLinearIndex"
|
|
35138
35216
|
]
|
|
35139
35217
|
], [
|
|
35140
|
-
|
|
35218
|
+
_dec106
|
|
35141
35219
|
], _HTMLElement53));
|
|
35142
35220
|
}
|
|
35143
35221
|
#___private_easingType_1;
|
|
@@ -36047,6 +36125,7 @@ var CurveControls = class extends (_HTMLElement53 = HTMLElement) {
|
|
|
36047
36125
|
}, this.#notifyHost = (type, value, event) => {
|
|
36048
36126
|
const target = this.#getEventTarget();
|
|
36049
36127
|
const detail = {
|
|
36128
|
+
name: target.name,
|
|
36050
36129
|
value,
|
|
36051
36130
|
event
|
|
36052
36131
|
};
|
|
@@ -36432,7 +36511,7 @@ function applyDecs2203RFactory54() {
|
|
|
36432
36511
|
function _apply_decs_2203_r54(targetClass, memberDecs, classDecs, parentClass) {
|
|
36433
36512
|
return (_apply_decs_2203_r54 = applyDecs2203RFactory54())(targetClass, memberDecs, classDecs, parentClass);
|
|
36434
36513
|
}
|
|
36435
|
-
var
|
|
36514
|
+
var _dec107;
|
|
36436
36515
|
var _initClass54;
|
|
36437
36516
|
var _HTMLElement54;
|
|
36438
36517
|
var _dec137;
|
|
@@ -36441,7 +36520,7 @@ var _init_language2;
|
|
|
36441
36520
|
var _init_codeElement2;
|
|
36442
36521
|
var _initProto31;
|
|
36443
36522
|
var _Code2;
|
|
36444
|
-
|
|
36523
|
+
_dec107 = Component({
|
|
36445
36524
|
tag: "ease-code",
|
|
36446
36525
|
shadowMode: "open",
|
|
36447
36526
|
autoSlot: false,
|
|
@@ -36483,7 +36562,7 @@ var Code2 = class extends (_HTMLElement54 = HTMLElement) {
|
|
|
36483
36562
|
"codeElement"
|
|
36484
36563
|
]
|
|
36485
36564
|
], [
|
|
36486
|
-
|
|
36565
|
+
_dec107
|
|
36487
36566
|
], _HTMLElement54));
|
|
36488
36567
|
}
|
|
36489
36568
|
#instanceId;
|
|
@@ -36988,7 +37067,7 @@ function applyDecs2203RFactory55() {
|
|
|
36988
37067
|
function _apply_decs_2203_r55(targetClass, memberDecs, classDecs, parentClass) {
|
|
36989
37068
|
return (_apply_decs_2203_r55 = applyDecs2203RFactory55())(targetClass, memberDecs, classDecs, parentClass);
|
|
36990
37069
|
}
|
|
36991
|
-
var
|
|
37070
|
+
var _dec108;
|
|
36992
37071
|
var _initClass55;
|
|
36993
37072
|
var _HTMLElement55;
|
|
36994
37073
|
var _dec138;
|
|
@@ -36999,13 +37078,13 @@ var _dec520;
|
|
|
36999
37078
|
var _dec618;
|
|
37000
37079
|
var _init_easingType4;
|
|
37001
37080
|
var _init_points4;
|
|
37002
|
-
var
|
|
37081
|
+
var _init_name8;
|
|
37003
37082
|
var _init_variant3;
|
|
37004
37083
|
var _init_simplify2;
|
|
37005
37084
|
var _init_round2;
|
|
37006
37085
|
var _initProto32;
|
|
37007
37086
|
var _CurveOutput;
|
|
37008
|
-
|
|
37087
|
+
_dec108 = Component({
|
|
37009
37088
|
tag: "ease-curve-output",
|
|
37010
37089
|
styles: outputStyles,
|
|
37011
37090
|
template() {
|
|
@@ -37044,7 +37123,7 @@ _dec107 = Component({
|
|
|
37044
37123
|
});
|
|
37045
37124
|
var CurveOutput = class extends (_HTMLElement55 = HTMLElement) {
|
|
37046
37125
|
static {
|
|
37047
|
-
({ e: [_init_easingType4, _init_points4,
|
|
37126
|
+
({ e: [_init_easingType4, _init_points4, _init_name8, _init_variant3, _init_simplify2, _init_round2, _initProto32], c: [_CurveOutput, _initClass55] } = _apply_decs_2203_r55(this, [
|
|
37048
37127
|
[
|
|
37049
37128
|
_dec138,
|
|
37050
37129
|
1,
|
|
@@ -37076,7 +37155,7 @@ var CurveOutput = class extends (_HTMLElement55 = HTMLElement) {
|
|
|
37076
37155
|
"round"
|
|
37077
37156
|
]
|
|
37078
37157
|
], [
|
|
37079
|
-
|
|
37158
|
+
_dec108
|
|
37080
37159
|
], _HTMLElement55));
|
|
37081
37160
|
}
|
|
37082
37161
|
#___private_easingType_1;
|
|
@@ -37198,7 +37277,7 @@ var CurveOutput = class extends (_HTMLElement55 = HTMLElement) {
|
|
|
37198
37277
|
_initClass55();
|
|
37199
37278
|
}
|
|
37200
37279
|
constructor(...args) {
|
|
37201
|
-
super(...args), this.#___private_easingType_1 = (_initProto32(this), _init_easingType4(this)), this.#___private_points_2 = _init_points4(this), this.#___private_name_3 =
|
|
37280
|
+
super(...args), this.#___private_easingType_1 = (_initProto32(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) => {
|
|
37202
37281
|
event.preventDefault();
|
|
37203
37282
|
try {
|
|
37204
37283
|
await navigator.clipboard.writeText(this.timingFunction);
|
|
@@ -37612,7 +37691,7 @@ function applyDecs2203RFactory56() {
|
|
|
37612
37691
|
function _apply_decs_2203_r56(targetClass, memberDecs, classDecs, parentClass) {
|
|
37613
37692
|
return (_apply_decs_2203_r56 = applyDecs2203RFactory56())(targetClass, memberDecs, classDecs, parentClass);
|
|
37614
37693
|
}
|
|
37615
|
-
var
|
|
37694
|
+
var _dec109;
|
|
37616
37695
|
var _initClass56;
|
|
37617
37696
|
var _HTMLElement56;
|
|
37618
37697
|
var _dec139;
|
|
@@ -37628,7 +37707,7 @@ var _init_triggerElement2;
|
|
|
37628
37707
|
var _init_contentElement4;
|
|
37629
37708
|
var _initProto33;
|
|
37630
37709
|
var _Tooltip2;
|
|
37631
|
-
|
|
37710
|
+
_dec109 = Component({
|
|
37632
37711
|
tag: "ease-tooltip",
|
|
37633
37712
|
shadowMode: "open",
|
|
37634
37713
|
styles: `
|
|
@@ -37712,7 +37791,7 @@ var Tooltip2 = class extends (_HTMLElement56 = HTMLElement) {
|
|
|
37712
37791
|
"handleOutsideDismiss"
|
|
37713
37792
|
]
|
|
37714
37793
|
], [
|
|
37715
|
-
|
|
37794
|
+
_dec109
|
|
37716
37795
|
], _HTMLElement56));
|
|
37717
37796
|
}
|
|
37718
37797
|
#hoverTimer;
|
|
@@ -38253,10 +38332,10 @@ function applyDecs2203RFactory57() {
|
|
|
38253
38332
|
function _apply_decs_2203_r57(targetClass, memberDecs, classDecs, parentClass) {
|
|
38254
38333
|
return (_apply_decs_2203_r57 = applyDecs2203RFactory57())(targetClass, memberDecs, classDecs, parentClass);
|
|
38255
38334
|
}
|
|
38256
|
-
var
|
|
38335
|
+
var _dec140;
|
|
38257
38336
|
var _initClass57;
|
|
38258
38337
|
var _HTMLElement57;
|
|
38259
|
-
var
|
|
38338
|
+
var _dec141;
|
|
38260
38339
|
var _dec232;
|
|
38261
38340
|
var _dec327;
|
|
38262
38341
|
var _dec424;
|
|
@@ -38272,7 +38351,7 @@ var _init_simplify3;
|
|
|
38272
38351
|
var _init_round3;
|
|
38273
38352
|
var _initProto34;
|
|
38274
38353
|
var _CurveToolbar;
|
|
38275
|
-
|
|
38354
|
+
_dec140 = Component({
|
|
38276
38355
|
tag: "ease-curve-toolbar",
|
|
38277
38356
|
styles: toolbarStyles,
|
|
38278
38357
|
template() {
|
|
@@ -38399,7 +38478,7 @@ _dec109 = Component({
|
|
|
38399
38478
|
</div>
|
|
38400
38479
|
`;
|
|
38401
38480
|
}
|
|
38402
|
-
}),
|
|
38481
|
+
}), _dec141 = Prop({
|
|
38403
38482
|
reflect: true
|
|
38404
38483
|
}), _dec232 = Prop({
|
|
38405
38484
|
type: Object,
|
|
@@ -38429,7 +38508,7 @@ var CurveToolbar = class extends (_HTMLElement57 = HTMLElement) {
|
|
|
38429
38508
|
static {
|
|
38430
38509
|
({ e: [_init_easingType5, _init_points5, _init_showGrid3, _init_snapToGrid3, _init_gridSize3, _init_simplify3, _init_round3, _initProto34], c: [_CurveToolbar, _initClass57] } = _apply_decs_2203_r57(this, [
|
|
38431
38510
|
[
|
|
38432
|
-
|
|
38511
|
+
_dec141,
|
|
38433
38512
|
1,
|
|
38434
38513
|
"easingType"
|
|
38435
38514
|
],
|
|
@@ -38464,7 +38543,7 @@ var CurveToolbar = class extends (_HTMLElement57 = HTMLElement) {
|
|
|
38464
38543
|
"round"
|
|
38465
38544
|
]
|
|
38466
38545
|
], [
|
|
38467
|
-
|
|
38546
|
+
_dec140
|
|
38468
38547
|
], _HTMLElement57));
|
|
38469
38548
|
}
|
|
38470
38549
|
#___private_easingType_1;
|
|
@@ -38540,6 +38619,7 @@ var CurveToolbar = class extends (_HTMLElement57 = HTMLElement) {
|
|
|
38540
38619
|
}, this.#notifyHost = (type, value, event) => {
|
|
38541
38620
|
const target = this.#getEventTarget();
|
|
38542
38621
|
const detail = {
|
|
38622
|
+
name: target.name,
|
|
38543
38623
|
value,
|
|
38544
38624
|
event
|
|
38545
38625
|
};
|
|
@@ -39105,10 +39185,10 @@ function applyDecs2203RFactory58() {
|
|
|
39105
39185
|
function _apply_decs_2203_r58(targetClass, memberDecs, classDecs, parentClass) {
|
|
39106
39186
|
return (_apply_decs_2203_r58 = applyDecs2203RFactory58())(targetClass, memberDecs, classDecs, parentClass);
|
|
39107
39187
|
}
|
|
39108
|
-
var
|
|
39188
|
+
var _dec143;
|
|
39109
39189
|
var _initClass58;
|
|
39110
39190
|
var _HTMLElement58;
|
|
39111
|
-
var
|
|
39191
|
+
var _dec144;
|
|
39112
39192
|
var _dec233;
|
|
39113
39193
|
var _dec328;
|
|
39114
39194
|
var _dec425;
|
|
@@ -39121,12 +39201,12 @@ var _dec1010;
|
|
|
39121
39201
|
var _dec1111;
|
|
39122
39202
|
var _dec1210;
|
|
39123
39203
|
var _dec1310;
|
|
39124
|
-
var
|
|
39204
|
+
var _dec145;
|
|
39125
39205
|
var _dec153;
|
|
39126
39206
|
var _dec162;
|
|
39127
39207
|
var _dec172;
|
|
39128
39208
|
var _dec182;
|
|
39129
|
-
var
|
|
39209
|
+
var _init_name9;
|
|
39130
39210
|
var _init_easingType6;
|
|
39131
39211
|
var _init_points6;
|
|
39132
39212
|
var _init_showGrid4;
|
|
@@ -39137,7 +39217,7 @@ var _init_round4;
|
|
|
39137
39217
|
var _init_focusedLinearIndex4;
|
|
39138
39218
|
var _initProto35;
|
|
39139
39219
|
var _Curve;
|
|
39140
|
-
|
|
39220
|
+
_dec143 = Component({
|
|
39141
39221
|
tag: "ease-curve",
|
|
39142
39222
|
styles: containerStyles,
|
|
39143
39223
|
template() {
|
|
@@ -39198,7 +39278,7 @@ _dec141 = Component({
|
|
|
39198
39278
|
</div>
|
|
39199
39279
|
`;
|
|
39200
39280
|
}
|
|
39201
|
-
}),
|
|
39281
|
+
}), _dec144 = Prop({
|
|
39202
39282
|
reflect: true,
|
|
39203
39283
|
defaultValue: "ease-custom"
|
|
39204
39284
|
}), _dec233 = Prop({
|
|
@@ -39257,7 +39337,7 @@ _dec141 = Component({
|
|
|
39257
39337
|
target: "light"
|
|
39258
39338
|
}), _dec1310 = Listen("grid-size-change", {
|
|
39259
39339
|
target: "light"
|
|
39260
|
-
}),
|
|
39340
|
+
}), _dec145 = Listen("simplify-change", {
|
|
39261
39341
|
target: "light"
|
|
39262
39342
|
}), _dec153 = Listen("round-change", {
|
|
39263
39343
|
target: "light"
|
|
@@ -39271,9 +39351,9 @@ _dec141 = Component({
|
|
|
39271
39351
|
});
|
|
39272
39352
|
var Curve = class extends (_HTMLElement58 = HTMLElement) {
|
|
39273
39353
|
static {
|
|
39274
|
-
({ e: [
|
|
39354
|
+
({ e: [_init_name9, _init_easingType6, _init_points6, _init_showGrid4, _init_snapToGrid4, _init_gridSize4, _init_simplify4, _init_round4, _init_focusedLinearIndex4, _initProto35], c: [_Curve, _initClass58] } = _apply_decs_2203_r58(this, [
|
|
39275
39355
|
[
|
|
39276
|
-
|
|
39356
|
+
_dec144,
|
|
39277
39357
|
1,
|
|
39278
39358
|
"name"
|
|
39279
39359
|
],
|
|
@@ -39338,7 +39418,7 @@ var Curve = class extends (_HTMLElement58 = HTMLElement) {
|
|
|
39338
39418
|
"handleGridSizeChange"
|
|
39339
39419
|
],
|
|
39340
39420
|
[
|
|
39341
|
-
|
|
39421
|
+
_dec145,
|
|
39342
39422
|
2,
|
|
39343
39423
|
"handleSimplifyChange"
|
|
39344
39424
|
],
|
|
@@ -39363,7 +39443,7 @@ var Curve = class extends (_HTMLElement58 = HTMLElement) {
|
|
|
39363
39443
|
"handleLinearPointFocus"
|
|
39364
39444
|
]
|
|
39365
39445
|
], [
|
|
39366
|
-
|
|
39446
|
+
_dec143
|
|
39367
39447
|
], _HTMLElement58));
|
|
39368
39448
|
}
|
|
39369
39449
|
#___private_name_1;
|
|
@@ -39637,20 +39717,17 @@ var Curve = class extends (_HTMLElement58 = HTMLElement) {
|
|
|
39637
39717
|
}
|
|
39638
39718
|
emitPointsChange(value, sourceEvent) {
|
|
39639
39719
|
const detail = {
|
|
39720
|
+
name: this.name,
|
|
39640
39721
|
value,
|
|
39641
39722
|
event: sourceEvent ?? new Event("points-change")
|
|
39642
39723
|
};
|
|
39643
|
-
this
|
|
39644
|
-
detail,
|
|
39645
|
-
bubbles: true,
|
|
39646
|
-
composed: true
|
|
39647
|
-
}));
|
|
39724
|
+
dispatchControlEvent2(this, "points-change", detail);
|
|
39648
39725
|
}
|
|
39649
39726
|
static {
|
|
39650
39727
|
_initClass58();
|
|
39651
39728
|
}
|
|
39652
39729
|
constructor(...args) {
|
|
39653
|
-
super(...args), this.#___private_name_1 = (_initProto35(this),
|
|
39730
|
+
super(...args), this.#___private_name_1 = (_initProto35(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);
|
|
39654
39731
|
}
|
|
39655
39732
|
};
|
|
39656
39733
|
//# sourceMappingURL=register.cjs.map
|