@easemate/web-kit 0.3.2 → 0.3.4
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/README.md +204 -34
- package/build/decorators.cjs +7 -7
- package/build/decorators.cjs.map +1 -1
- package/build/decorators.js +7 -7
- package/build/decorators.js.map +1 -1
- package/build/elements.cjs +1902 -747
- package/build/elements.cjs.map +1 -1
- package/build/elements.d.cts +51 -2
- package/build/elements.d.ts +51 -2
- package/build/elements.js +1899 -746
- package/build/elements.js.map +1 -1
- package/build/{index-NzGpn7ai.d.cts → index-BKwMPyPy.d.cts} +3 -0
- package/build/{index-NzGpn7ai.d.ts → index-BKwMPyPy.d.ts} +3 -0
- package/build/index.cjs +7338 -3477
- package/build/index.cjs.map +1 -1
- package/build/index.d.cts +4 -4
- package/build/index.d.ts +4 -4
- package/build/index.js +7569 -3710
- package/build/index.js.map +1 -1
- package/build/{init-CaP7khA2.d.ts → init-C4Q5EEAr.d.ts} +1 -1
- package/build/{init-DmqoRv6_.d.cts → init-yLajTNMT.d.cts} +1 -1
- package/build/jsx.cjs.map +1 -1
- package/build/jsx.d.cts +61 -7
- package/build/jsx.d.ts +61 -7
- package/build/jsx.js.map +1 -1
- package/build/react.cjs +4402 -1658
- package/build/react.cjs.map +1 -1
- package/build/react.d.cts +4 -4
- package/build/react.d.ts +4 -4
- package/build/react.js +4403 -1659
- package/build/react.js.map +1 -1
- package/build/register.cjs +10895 -7033
- package/build/register.cjs.map +1 -1
- package/build/register.js +10877 -7015
- package/build/register.js.map +1 -1
- package/build/{registry-YCv1Ctoe.d.cts → registry-GVSJPmus.d.cts} +1 -0
- package/build/{registry-YCv1Ctoe.d.ts → registry-GVSJPmus.d.ts} +1 -0
- package/build/theme.cjs +34 -3
- package/build/theme.cjs.map +1 -1
- package/build/theme.d.cts +2 -2
- package/build/theme.d.ts +2 -2
- package/build/theme.js +34 -3
- package/build/theme.js.map +1 -1
- package/build/utils.cjs +3 -3
- package/build/utils.cjs.map +1 -1
- package/build/utils.js +3 -3
- package/build/utils.js.map +1 -1
- package/package.json +2 -12
package/build/elements.cjs
CHANGED
|
@@ -28,6 +28,7 @@ __export(elements_exports, {
|
|
|
28
28
|
ColorPicker: () => _ColorPicker,
|
|
29
29
|
Dropdown: () => _Dropdown,
|
|
30
30
|
Field: () => _Field,
|
|
31
|
+
Folder: () => _Folder,
|
|
31
32
|
IconAnchorAdd: () => _IconAnchorAdd,
|
|
32
33
|
IconAnchorRemove: () => _IconAnchorRemove,
|
|
33
34
|
IconArrowsVertical: () => _IconArrowsVertical,
|
|
@@ -43,6 +44,7 @@ __export(elements_exports, {
|
|
|
43
44
|
IconClear: () => _IconClear,
|
|
44
45
|
IconCode: () => _IconCode,
|
|
45
46
|
IconDots: () => _IconDots,
|
|
47
|
+
IconFolder: () => _IconFolder,
|
|
46
48
|
IconGrid: () => _IconGrid,
|
|
47
49
|
IconMention: () => _IconMention,
|
|
48
50
|
IconMinus: () => _IconMinus,
|
|
@@ -73,7 +75,7 @@ __export(elements_exports, {
|
|
|
73
75
|
});
|
|
74
76
|
module.exports = __toCommonJS(elements_exports);
|
|
75
77
|
|
|
76
|
-
// swc:/
|
|
78
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/button/index.ts
|
|
77
79
|
var import_lit_html2 = require("lit-html");
|
|
78
80
|
|
|
79
81
|
// src/decorators/Component.ts
|
|
@@ -475,7 +477,7 @@ function Prop(options = {}) {
|
|
|
475
477
|
};
|
|
476
478
|
}
|
|
477
479
|
|
|
478
|
-
// swc:/
|
|
480
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/button/index.ts
|
|
479
481
|
function applyDecs2203RFactory() {
|
|
480
482
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
481
483
|
return function addInitializer(initializer) {
|
|
@@ -1158,10 +1160,10 @@ var Button = class extends (_HTMLElement = HTMLElement) {
|
|
|
1158
1160
|
}
|
|
1159
1161
|
};
|
|
1160
1162
|
|
|
1161
|
-
// swc:/
|
|
1163
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/checkbox/index.ts
|
|
1162
1164
|
var import_lit_html3 = require("lit-html");
|
|
1163
1165
|
|
|
1164
|
-
// swc:/
|
|
1166
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/shared.ts
|
|
1165
1167
|
var CONTROL_CHANGE_EVENT = "control-change";
|
|
1166
1168
|
var dispatchControlEvent = (host, type, detail) => {
|
|
1167
1169
|
host.dispatchEvent(new CustomEvent(type, {
|
|
@@ -1425,7 +1427,7 @@ function Query(selector, userOptions) {
|
|
|
1425
1427
|
return createQueryDecorator(selector, merged);
|
|
1426
1428
|
}
|
|
1427
1429
|
|
|
1428
|
-
// swc:/
|
|
1430
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/checkbox/index.ts
|
|
1429
1431
|
function applyDecs2203RFactory2() {
|
|
1430
1432
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
1431
1433
|
return function addInitializer(initializer) {
|
|
@@ -2198,10 +2200,10 @@ var Checkbox = class extends (_HTMLElement2 = HTMLElement) {
|
|
|
2198
2200
|
}
|
|
2199
2201
|
};
|
|
2200
2202
|
|
|
2201
|
-
// swc:/
|
|
2203
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts
|
|
2202
2204
|
var import_lit_html12 = require("lit-html");
|
|
2203
2205
|
|
|
2204
|
-
// swc:/
|
|
2206
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/popover/index.ts
|
|
2205
2207
|
var import_lit_html4 = require("lit-html");
|
|
2206
2208
|
function applyDecs2203RFactory3() {
|
|
2207
2209
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -2831,7 +2833,7 @@ var Popover = class extends (_HTMLElement3 = HTMLElement) {
|
|
|
2831
2833
|
}
|
|
2832
2834
|
};
|
|
2833
2835
|
|
|
2834
|
-
// swc:/
|
|
2836
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/chevron.ts
|
|
2835
2837
|
var import_lit_html5 = require("lit-html");
|
|
2836
2838
|
function applyDecs2203RFactory4() {
|
|
2837
2839
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -3295,10 +3297,10 @@ var IconChevron = class extends (_HTMLElement4 = HTMLElement) {
|
|
|
3295
3297
|
}
|
|
3296
3298
|
};
|
|
3297
3299
|
|
|
3298
|
-
// swc:/
|
|
3300
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/dropdown/index.ts
|
|
3299
3301
|
var import_lit_html6 = require("lit-html");
|
|
3300
3302
|
|
|
3301
|
-
// swc:/
|
|
3303
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/utils/dismiss-controller.ts
|
|
3302
3304
|
var DismissController = class {
|
|
3303
3305
|
#onDismiss;
|
|
3304
3306
|
#context;
|
|
@@ -3510,7 +3512,7 @@ function OutsideClick(options = {}) {
|
|
|
3510
3512
|
};
|
|
3511
3513
|
}
|
|
3512
3514
|
|
|
3513
|
-
// swc:/
|
|
3515
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/dropdown/index.ts
|
|
3514
3516
|
function applyDecs2203RFactory5() {
|
|
3515
3517
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
3516
3518
|
return function addInitializer(initializer) {
|
|
@@ -4982,7 +4984,7 @@ var Dropdown = class extends (_HTMLElement5 = HTMLElement) {
|
|
|
4982
4984
|
}
|
|
4983
4985
|
};
|
|
4984
4986
|
|
|
4985
|
-
// swc:/
|
|
4987
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/input/index.ts
|
|
4986
4988
|
var import_lit_html7 = require("lit-html");
|
|
4987
4989
|
function applyDecs2203RFactory6() {
|
|
4988
4990
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -5776,10 +5778,10 @@ var Input = class extends (_HTMLElement6 = HTMLElement) {
|
|
|
5776
5778
|
}
|
|
5777
5779
|
};
|
|
5778
5780
|
|
|
5779
|
-
// swc:/
|
|
5781
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/picker.ts
|
|
5780
5782
|
var import_lit_html11 = require("lit-html");
|
|
5781
5783
|
|
|
5782
|
-
// swc:/
|
|
5784
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/utils.ts
|
|
5783
5785
|
var clamp01 = (value) => Math.max(0, Math.min(1, value));
|
|
5784
5786
|
function hsvToRgb(h, s, v) {
|
|
5785
5787
|
let hue = (h % 360 + 360) % 360;
|
|
@@ -6093,7 +6095,7 @@ function styleObject(input) {
|
|
|
6093
6095
|
return (0, import_style_map.styleMap)(definedEntries);
|
|
6094
6096
|
}
|
|
6095
6097
|
|
|
6096
|
-
// swc:/
|
|
6098
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/arrows-vertical.ts
|
|
6097
6099
|
var import_lit_html9 = require("lit-html");
|
|
6098
6100
|
function applyDecs2203RFactory7() {
|
|
6099
6101
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -6504,7 +6506,7 @@ var IconArrowsVertical = class extends (_HTMLElement7 = HTMLElement) {
|
|
|
6504
6506
|
}
|
|
6505
6507
|
};
|
|
6506
6508
|
|
|
6507
|
-
// swc:/
|
|
6509
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/picker.ts
|
|
6508
6510
|
var import_lit_html10 = require("lit-html");
|
|
6509
6511
|
function applyDecs2203RFactory8() {
|
|
6510
6512
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -6919,7 +6921,7 @@ var IconPicker = class extends (_HTMLElement8 = HTMLElement) {
|
|
|
6919
6921
|
}
|
|
6920
6922
|
};
|
|
6921
6923
|
|
|
6922
|
-
// swc:/
|
|
6924
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/picker.ts
|
|
6923
6925
|
function applyDecs2203RFactory9() {
|
|
6924
6926
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
6925
6927
|
return function addInitializer(initializer) {
|
|
@@ -7886,7 +7888,7 @@ var ColorPicker = class extends (_HTMLElement9 = HTMLElement) {
|
|
|
7886
7888
|
}
|
|
7887
7889
|
};
|
|
7888
7890
|
|
|
7889
|
-
// swc:/
|
|
7891
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/color/index.ts
|
|
7890
7892
|
function applyDecs2203RFactory10() {
|
|
7891
7893
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
7892
7894
|
return function addInitializer(initializer) {
|
|
@@ -8482,7 +8484,7 @@ var ColorInput = class extends (_HTMLElement10 = HTMLElement) {
|
|
|
8482
8484
|
}
|
|
8483
8485
|
};
|
|
8484
8486
|
|
|
8485
|
-
// swc:/
|
|
8487
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/field/index.ts
|
|
8486
8488
|
var import_lit_html13 = require("lit-html");
|
|
8487
8489
|
function applyDecs2203RFactory11() {
|
|
8488
8490
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -8876,6 +8878,7 @@ _dec29 = Component({
|
|
|
8876
8878
|
}
|
|
8877
8879
|
|
|
8878
8880
|
[part="field"] {
|
|
8881
|
+
scroll-snap-align: start;
|
|
8879
8882
|
display: grid;
|
|
8880
8883
|
grid-template-columns: var(--ease-field-label-width, 36%) auto;
|
|
8881
8884
|
column-gap: var(--ease-field-column-gap, 12px);
|
|
@@ -8978,7 +8981,7 @@ var Field = class extends (_HTMLElement11 = HTMLElement) {
|
|
|
8978
8981
|
}
|
|
8979
8982
|
};
|
|
8980
8983
|
|
|
8981
|
-
// swc:/
|
|
8984
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/folder/index.ts
|
|
8982
8985
|
var import_lit_html14 = require("lit-html");
|
|
8983
8986
|
function applyDecs2203RFactory12() {
|
|
8984
8987
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
@@ -9355,87 +9358,1166 @@ function _apply_decs_2203_r12(targetClass, memberDecs, classDecs, parentClass) {
|
|
|
9355
9358
|
var _dec30;
|
|
9356
9359
|
var _initClass12;
|
|
9357
9360
|
var _HTMLElement12;
|
|
9358
|
-
var
|
|
9361
|
+
var _dec114;
|
|
9362
|
+
var _dec211;
|
|
9363
|
+
var _dec38;
|
|
9364
|
+
var _init_open3;
|
|
9365
|
+
var _init_headline;
|
|
9366
|
+
var _init_maxHeight2;
|
|
9367
|
+
var _initProto10;
|
|
9368
|
+
var _Folder;
|
|
9359
9369
|
_dec30 = Component({
|
|
9360
|
-
tag: "ease-
|
|
9370
|
+
tag: "ease-folder",
|
|
9371
|
+
shadowMode: "open",
|
|
9361
9372
|
styles: `
|
|
9373
|
+
@property --top-fade {
|
|
9374
|
+
syntax: "<length>";
|
|
9375
|
+
inherits: false;
|
|
9376
|
+
initial-value: 0px;
|
|
9377
|
+
}
|
|
9378
|
+
|
|
9379
|
+
@property --bottom-fade {
|
|
9380
|
+
syntax: "<length>";
|
|
9381
|
+
inherits: false;
|
|
9382
|
+
initial-value: 0px;
|
|
9383
|
+
}
|
|
9384
|
+
|
|
9385
|
+
@keyframes scroll-fade {
|
|
9386
|
+
0% {
|
|
9387
|
+
--top-fade: 0px;
|
|
9388
|
+
}
|
|
9389
|
+
10%, 100% {
|
|
9390
|
+
--top-fade: 8px;
|
|
9391
|
+
}
|
|
9392
|
+
0%, 90% {
|
|
9393
|
+
--bottom-fade: 8px;
|
|
9394
|
+
}
|
|
9395
|
+
100% {
|
|
9396
|
+
--bottom-fade: 0px;
|
|
9397
|
+
}
|
|
9398
|
+
}
|
|
9399
|
+
|
|
9400
|
+
|
|
9362
9401
|
:host {
|
|
9363
9402
|
display: block;
|
|
9364
|
-
width:
|
|
9365
|
-
height: var(--ease-icon-size, 16px);
|
|
9366
|
-
fill: none;
|
|
9367
|
-
stroke: currentColor;
|
|
9368
|
-
stroke-width: .75;
|
|
9369
|
-
stroke-linecap: round;
|
|
9370
|
-
stroke-linejoin: round;
|
|
9403
|
+
width: 100%;
|
|
9371
9404
|
}
|
|
9372
9405
|
|
|
9373
|
-
[part="
|
|
9374
|
-
|
|
9406
|
+
[part="section"] {
|
|
9407
|
+
display: block;
|
|
9408
|
+
width: 100%;
|
|
9409
|
+
border-radius: var(--ease-folder-radius);
|
|
9410
|
+
border: 1px solid var(--ease-folder-border-color);
|
|
9411
|
+
background-color: var(--ease-folder-background);
|
|
9412
|
+
background-clip: padding-box;
|
|
9413
|
+
box-sizing: border-box;
|
|
9414
|
+
overflow: hidden;
|
|
9415
|
+
}
|
|
9375
9416
|
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
|
|
9417
|
+
[part="header"] {
|
|
9418
|
+
display: flex;
|
|
9419
|
+
align-items: center;
|
|
9420
|
+
gap: 8px;
|
|
9421
|
+
width: 100%;
|
|
9422
|
+
padding: var(--ease-folder-padding);
|
|
9423
|
+
box-sizing: border-box;
|
|
9424
|
+
cursor: pointer;
|
|
9425
|
+
user-select: none;
|
|
9426
|
+
}
|
|
9381
9427
|
|
|
9382
|
-
|
|
9383
|
-
|
|
9384
|
-
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
|
|
9428
|
+
[part="icon"] {
|
|
9429
|
+
flex: 0 0 auto;
|
|
9430
|
+
display: flex;
|
|
9431
|
+
align-items: center;
|
|
9432
|
+
justify-content: center;
|
|
9433
|
+
color: var(--ease-folder-icon-color);
|
|
9434
|
+
}
|
|
9389
9435
|
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
|
|
9393
|
-
|
|
9394
|
-
|
|
9436
|
+
[part="headline"] {
|
|
9437
|
+
flex: 1 1 auto;
|
|
9438
|
+
font-size: var(--ease-folder-title-font-size);
|
|
9439
|
+
font-weight: var(--ease-folder-title-font-weight);
|
|
9440
|
+
line-height: 16px;
|
|
9441
|
+
font-family: var(--ease-font-family);
|
|
9442
|
+
color: var(--ease-folder-title-color);
|
|
9443
|
+
margin: 0;
|
|
9444
|
+
overflow: hidden;
|
|
9445
|
+
text-overflow: ellipsis;
|
|
9446
|
+
white-space: nowrap;
|
|
9447
|
+
}
|
|
9395
9448
|
|
|
9396
|
-
|
|
9397
|
-
|
|
9398
|
-
|
|
9399
|
-
|
|
9400
|
-
|
|
9449
|
+
[part="chevron"] {
|
|
9450
|
+
flex: 0 0 auto;
|
|
9451
|
+
display: flex;
|
|
9452
|
+
align-items: center;
|
|
9453
|
+
justify-content: center;
|
|
9454
|
+
color: var(--ease-folder-chevron-color);
|
|
9455
|
+
transition: color 200ms cubic-bezier(.25, 0, .5, 1);
|
|
9456
|
+
}
|
|
9401
9457
|
|
|
9402
|
-
|
|
9403
|
-
|
|
9404
|
-
|
|
9405
|
-
|
|
9406
|
-
|
|
9407
|
-
|
|
9458
|
+
[part="header"]:hover [part="chevron"] {
|
|
9459
|
+
color: var(--ease-folder-chevron-color-hover);
|
|
9460
|
+
}
|
|
9461
|
+
|
|
9462
|
+
[part="content"] {
|
|
9463
|
+
height: 0;
|
|
9464
|
+
overflow: hidden;
|
|
9465
|
+
transition: height 200ms cubic-bezier(.25, 0, .5, 1);
|
|
9466
|
+
}
|
|
9467
|
+
|
|
9468
|
+
:host([open]) [part="content"] {
|
|
9469
|
+
height: auto;
|
|
9470
|
+
}
|
|
9471
|
+
|
|
9472
|
+
[part="body"] {
|
|
9473
|
+
display: grid;
|
|
9474
|
+
grid-gap: var(--ease-folder-gap);
|
|
9475
|
+
padding: var(--ease-folder-padding);
|
|
9476
|
+
overflow-y: auto;
|
|
9477
|
+
overscroll-behavior: contain;
|
|
9478
|
+
mask-image: linear-gradient(to bottom, #0000, #ffff var(--top-fade) calc(100% - var(--bottom-fade)), #0000);
|
|
9479
|
+
animation-name: scroll-fade;
|
|
9480
|
+
animation-timeline: scroll(self y);
|
|
9481
|
+
scroll-snap-type: y mandatory;
|
|
9482
|
+
scrollbar-width: none;
|
|
9483
|
+
|
|
9484
|
+
&::-webkit-scrollbar {
|
|
9485
|
+
display: none;
|
|
9408
9486
|
}
|
|
9409
9487
|
}
|
|
9410
|
-
|
|
9411
|
-
|
|
9488
|
+
|
|
9489
|
+
`
|
|
9490
|
+
}), _dec114 = Prop({
|
|
9491
|
+
type: Boolean,
|
|
9492
|
+
reflect: true,
|
|
9493
|
+
attribute: "open",
|
|
9494
|
+
defaultValue: false
|
|
9495
|
+
}), _dec211 = Prop({
|
|
9496
|
+
reflect: true,
|
|
9497
|
+
attribute: "headline",
|
|
9498
|
+
defaultValue: ""
|
|
9499
|
+
}), _dec38 = Prop({
|
|
9500
|
+
reflect: true,
|
|
9501
|
+
attribute: "max-height",
|
|
9502
|
+
defaultValue: null
|
|
9503
|
+
});
|
|
9504
|
+
var Folder = class extends (_HTMLElement12 = HTMLElement) {
|
|
9505
|
+
static {
|
|
9506
|
+
({ e: [_init_open3, _init_headline, _init_maxHeight2, _initProto10], c: [_Folder, _initClass12] } = _apply_decs_2203_r12(this, [
|
|
9507
|
+
[
|
|
9508
|
+
_dec114,
|
|
9509
|
+
1,
|
|
9510
|
+
"open"
|
|
9511
|
+
],
|
|
9512
|
+
[
|
|
9513
|
+
_dec211,
|
|
9514
|
+
1,
|
|
9515
|
+
"headline"
|
|
9516
|
+
],
|
|
9517
|
+
[
|
|
9518
|
+
_dec38,
|
|
9519
|
+
1,
|
|
9520
|
+
"maxHeight"
|
|
9521
|
+
]
|
|
9522
|
+
], [
|
|
9523
|
+
_dec30
|
|
9524
|
+
], _HTMLElement12));
|
|
9525
|
+
}
|
|
9526
|
+
#___private_open_1;
|
|
9527
|
+
get open() {
|
|
9528
|
+
return this.#___private_open_1;
|
|
9529
|
+
}
|
|
9530
|
+
set open(_v) {
|
|
9531
|
+
this.#___private_open_1 = _v;
|
|
9532
|
+
}
|
|
9533
|
+
#___private_headline_2;
|
|
9534
|
+
get headline() {
|
|
9535
|
+
return this.#___private_headline_2;
|
|
9536
|
+
}
|
|
9537
|
+
set headline(_v) {
|
|
9538
|
+
this.#___private_headline_2 = _v;
|
|
9539
|
+
}
|
|
9540
|
+
#___private_maxHeight_3;
|
|
9541
|
+
get maxHeight() {
|
|
9542
|
+
return this.#___private_maxHeight_3;
|
|
9543
|
+
}
|
|
9544
|
+
set maxHeight(_v) {
|
|
9545
|
+
this.#___private_maxHeight_3 = _v;
|
|
9546
|
+
}
|
|
9547
|
+
render() {
|
|
9412
9548
|
return import_lit_html14.html`
|
|
9413
|
-
<
|
|
9414
|
-
<
|
|
9415
|
-
|
|
9416
|
-
|
|
9417
|
-
|
|
9418
|
-
|
|
9419
|
-
|
|
9420
|
-
|
|
9421
|
-
|
|
9549
|
+
<section part="section">
|
|
9550
|
+
<div part="header" @click=${this.#handleHeaderClick}>
|
|
9551
|
+
<span part="icon">
|
|
9552
|
+
<ease-icon-folder state=${this.open ? "open" : "close"}></ease-icon-folder>
|
|
9553
|
+
</span>
|
|
9554
|
+
<span part="headline">
|
|
9555
|
+
${this.headline}
|
|
9556
|
+
</span>
|
|
9557
|
+
<span part="chevron">
|
|
9558
|
+
<ease-icon-chevron state=${this.open ? "up" : "down"}></ease-icon-chevron>
|
|
9559
|
+
</span>
|
|
9560
|
+
</div>
|
|
9561
|
+
<div part="content" style=${this.maxHeight ? `max-height: ${this.maxHeight}` : ""}>
|
|
9562
|
+
<div part="body">
|
|
9563
|
+
<slot></slot>
|
|
9564
|
+
</div>
|
|
9565
|
+
</div>
|
|
9566
|
+
</section>
|
|
9422
9567
|
`;
|
|
9423
9568
|
}
|
|
9569
|
+
toggle() {
|
|
9570
|
+
this.open = !this.open;
|
|
9571
|
+
}
|
|
9572
|
+
#handleHeaderClick;
|
|
9573
|
+
#stopPropagation;
|
|
9574
|
+
static {
|
|
9575
|
+
_initClass12();
|
|
9576
|
+
}
|
|
9577
|
+
constructor(...args) {
|
|
9578
|
+
super(...args), this.#___private_open_1 = (_initProto10(this), _init_open3(this, false)), this.#___private_headline_2 = _init_headline(this, null), this.#___private_maxHeight_3 = _init_maxHeight2(this, null), this.#handleHeaderClick = (event) => {
|
|
9579
|
+
this.toggle();
|
|
9580
|
+
this.dispatchEvent(new CustomEvent("folder-toggle", {
|
|
9581
|
+
detail: {
|
|
9582
|
+
open: this.open,
|
|
9583
|
+
event
|
|
9584
|
+
},
|
|
9585
|
+
bubbles: true,
|
|
9586
|
+
composed: true
|
|
9587
|
+
}));
|
|
9588
|
+
}, this.#stopPropagation = (event) => {
|
|
9589
|
+
event.stopPropagation();
|
|
9590
|
+
};
|
|
9591
|
+
}
|
|
9592
|
+
};
|
|
9593
|
+
|
|
9594
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/clear.ts
|
|
9595
|
+
var import_lit_html15 = require("lit-html");
|
|
9596
|
+
function applyDecs2203RFactory13() {
|
|
9597
|
+
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
9598
|
+
return function addInitializer(initializer) {
|
|
9599
|
+
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
9600
|
+
assertCallable(initializer, "An initializer");
|
|
9601
|
+
initializers.push(initializer);
|
|
9602
|
+
};
|
|
9603
|
+
}
|
|
9604
|
+
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value) {
|
|
9605
|
+
var kindStr;
|
|
9606
|
+
switch (kind) {
|
|
9607
|
+
case 1:
|
|
9608
|
+
kindStr = "accessor";
|
|
9609
|
+
break;
|
|
9610
|
+
case 2:
|
|
9611
|
+
kindStr = "method";
|
|
9612
|
+
break;
|
|
9613
|
+
case 3:
|
|
9614
|
+
kindStr = "getter";
|
|
9615
|
+
break;
|
|
9616
|
+
case 4:
|
|
9617
|
+
kindStr = "setter";
|
|
9618
|
+
break;
|
|
9619
|
+
default:
|
|
9620
|
+
kindStr = "field";
|
|
9621
|
+
}
|
|
9622
|
+
var ctx = {
|
|
9623
|
+
kind: kindStr,
|
|
9624
|
+
name: isPrivate ? "#" + name : name,
|
|
9625
|
+
static: isStatic,
|
|
9626
|
+
private: isPrivate,
|
|
9627
|
+
metadata
|
|
9628
|
+
};
|
|
9629
|
+
var decoratorFinishedRef = {
|
|
9630
|
+
v: false
|
|
9631
|
+
};
|
|
9632
|
+
ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
|
|
9633
|
+
var get, set;
|
|
9634
|
+
if (kind === 0) {
|
|
9635
|
+
if (isPrivate) {
|
|
9636
|
+
get = desc.get;
|
|
9637
|
+
set = desc.set;
|
|
9638
|
+
} else {
|
|
9639
|
+
get = function() {
|
|
9640
|
+
return this[name];
|
|
9641
|
+
};
|
|
9642
|
+
set = function(v) {
|
|
9643
|
+
this[name] = v;
|
|
9644
|
+
};
|
|
9645
|
+
}
|
|
9646
|
+
} else if (kind === 2) {
|
|
9647
|
+
get = function() {
|
|
9648
|
+
return desc.value;
|
|
9649
|
+
};
|
|
9650
|
+
} else {
|
|
9651
|
+
if (kind === 1 || kind === 3) {
|
|
9652
|
+
get = function() {
|
|
9653
|
+
return desc.get.call(this);
|
|
9654
|
+
};
|
|
9655
|
+
}
|
|
9656
|
+
if (kind === 1 || kind === 4) {
|
|
9657
|
+
set = function(v) {
|
|
9658
|
+
desc.set.call(this, v);
|
|
9659
|
+
};
|
|
9660
|
+
}
|
|
9661
|
+
}
|
|
9662
|
+
ctx.access = get && set ? {
|
|
9663
|
+
get,
|
|
9664
|
+
set
|
|
9665
|
+
} : get ? {
|
|
9666
|
+
get
|
|
9667
|
+
} : {
|
|
9668
|
+
set
|
|
9669
|
+
};
|
|
9670
|
+
try {
|
|
9671
|
+
return dec(value, ctx);
|
|
9672
|
+
} finally {
|
|
9673
|
+
decoratorFinishedRef.v = true;
|
|
9674
|
+
}
|
|
9675
|
+
}
|
|
9676
|
+
function assertNotFinished(decoratorFinishedRef, fnName) {
|
|
9677
|
+
if (decoratorFinishedRef.v) {
|
|
9678
|
+
throw new Error("attempted to call " + fnName + " after decoration was finished");
|
|
9679
|
+
}
|
|
9680
|
+
}
|
|
9681
|
+
function assertCallable(fn, hint) {
|
|
9682
|
+
if (typeof fn !== "function") {
|
|
9683
|
+
throw new TypeError(hint + " must be a function");
|
|
9684
|
+
}
|
|
9685
|
+
}
|
|
9686
|
+
function assertValidReturnValue(kind, value) {
|
|
9687
|
+
var type = typeof value;
|
|
9688
|
+
if (kind === 1) {
|
|
9689
|
+
if (type !== "object" || value === null) {
|
|
9690
|
+
throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
|
|
9691
|
+
}
|
|
9692
|
+
if (value.get !== void 0) {
|
|
9693
|
+
assertCallable(value.get, "accessor.get");
|
|
9694
|
+
}
|
|
9695
|
+
if (value.set !== void 0) {
|
|
9696
|
+
assertCallable(value.set, "accessor.set");
|
|
9697
|
+
}
|
|
9698
|
+
if (value.init !== void 0) {
|
|
9699
|
+
assertCallable(value.init, "accessor.init");
|
|
9700
|
+
}
|
|
9701
|
+
} else if (type !== "function") {
|
|
9702
|
+
var hint;
|
|
9703
|
+
if (kind === 0) {
|
|
9704
|
+
hint = "field";
|
|
9705
|
+
} else if (kind === 10) {
|
|
9706
|
+
hint = "class";
|
|
9707
|
+
} else {
|
|
9708
|
+
hint = "method";
|
|
9709
|
+
}
|
|
9710
|
+
throw new TypeError(hint + " decorators must return a function or void 0");
|
|
9711
|
+
}
|
|
9712
|
+
}
|
|
9713
|
+
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata) {
|
|
9714
|
+
var decs = decInfo[0];
|
|
9715
|
+
var desc, init, value;
|
|
9716
|
+
if (isPrivate) {
|
|
9717
|
+
if (kind === 0 || kind === 1) {
|
|
9718
|
+
desc = {
|
|
9719
|
+
get: decInfo[3],
|
|
9720
|
+
set: decInfo[4]
|
|
9721
|
+
};
|
|
9722
|
+
} else if (kind === 3) {
|
|
9723
|
+
desc = {
|
|
9724
|
+
get: decInfo[3]
|
|
9725
|
+
};
|
|
9726
|
+
} else if (kind === 4) {
|
|
9727
|
+
desc = {
|
|
9728
|
+
set: decInfo[3]
|
|
9729
|
+
};
|
|
9730
|
+
} else {
|
|
9731
|
+
desc = {
|
|
9732
|
+
value: decInfo[3]
|
|
9733
|
+
};
|
|
9734
|
+
}
|
|
9735
|
+
} else if (kind !== 0) {
|
|
9736
|
+
desc = Object.getOwnPropertyDescriptor(base, name);
|
|
9737
|
+
}
|
|
9738
|
+
if (kind === 1) {
|
|
9739
|
+
value = {
|
|
9740
|
+
get: desc.get,
|
|
9741
|
+
set: desc.set
|
|
9742
|
+
};
|
|
9743
|
+
} else if (kind === 2) {
|
|
9744
|
+
value = desc.value;
|
|
9745
|
+
} else if (kind === 3) {
|
|
9746
|
+
value = desc.get;
|
|
9747
|
+
} else if (kind === 4) {
|
|
9748
|
+
value = desc.set;
|
|
9749
|
+
}
|
|
9750
|
+
var newValue, get, set;
|
|
9751
|
+
if (typeof decs === "function") {
|
|
9752
|
+
newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
|
|
9753
|
+
if (newValue !== void 0) {
|
|
9754
|
+
assertValidReturnValue(kind, newValue);
|
|
9755
|
+
if (kind === 0) {
|
|
9756
|
+
init = newValue;
|
|
9757
|
+
} else if (kind === 1) {
|
|
9758
|
+
init = newValue.init;
|
|
9759
|
+
get = newValue.get || value.get;
|
|
9760
|
+
set = newValue.set || value.set;
|
|
9761
|
+
value = {
|
|
9762
|
+
get,
|
|
9763
|
+
set
|
|
9764
|
+
};
|
|
9765
|
+
} else {
|
|
9766
|
+
value = newValue;
|
|
9767
|
+
}
|
|
9768
|
+
}
|
|
9769
|
+
} else {
|
|
9770
|
+
for (var i = decs.length - 1; i >= 0; i--) {
|
|
9771
|
+
var dec = decs[i];
|
|
9772
|
+
newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
|
|
9773
|
+
if (newValue !== void 0) {
|
|
9774
|
+
assertValidReturnValue(kind, newValue);
|
|
9775
|
+
var newInit;
|
|
9776
|
+
if (kind === 0) {
|
|
9777
|
+
newInit = newValue;
|
|
9778
|
+
} else if (kind === 1) {
|
|
9779
|
+
newInit = newValue.init;
|
|
9780
|
+
get = newValue.get || value.get;
|
|
9781
|
+
set = newValue.set || value.set;
|
|
9782
|
+
value = {
|
|
9783
|
+
get,
|
|
9784
|
+
set
|
|
9785
|
+
};
|
|
9786
|
+
} else {
|
|
9787
|
+
value = newValue;
|
|
9788
|
+
}
|
|
9789
|
+
if (newInit !== void 0) {
|
|
9790
|
+
if (init === void 0) {
|
|
9791
|
+
init = newInit;
|
|
9792
|
+
} else if (typeof init === "function") {
|
|
9793
|
+
init = [
|
|
9794
|
+
init,
|
|
9795
|
+
newInit
|
|
9796
|
+
];
|
|
9797
|
+
} else {
|
|
9798
|
+
init.push(newInit);
|
|
9799
|
+
}
|
|
9800
|
+
}
|
|
9801
|
+
}
|
|
9802
|
+
}
|
|
9803
|
+
}
|
|
9804
|
+
if (kind === 0 || kind === 1) {
|
|
9805
|
+
if (init === void 0) {
|
|
9806
|
+
init = function(instance, init2) {
|
|
9807
|
+
return init2;
|
|
9808
|
+
};
|
|
9809
|
+
} else if (typeof init !== "function") {
|
|
9810
|
+
var ownInitializers = init;
|
|
9811
|
+
init = function(instance, init2) {
|
|
9812
|
+
var value2 = init2;
|
|
9813
|
+
for (var i2 = 0; i2 < ownInitializers.length; i2++) {
|
|
9814
|
+
value2 = ownInitializers[i2].call(instance, value2);
|
|
9815
|
+
}
|
|
9816
|
+
return value2;
|
|
9817
|
+
};
|
|
9818
|
+
} else {
|
|
9819
|
+
var originalInitializer = init;
|
|
9820
|
+
init = function(instance, init2) {
|
|
9821
|
+
return originalInitializer.call(instance, init2);
|
|
9822
|
+
};
|
|
9823
|
+
}
|
|
9824
|
+
ret.push(init);
|
|
9825
|
+
}
|
|
9826
|
+
if (kind !== 0) {
|
|
9827
|
+
if (kind === 1) {
|
|
9828
|
+
desc.get = value.get;
|
|
9829
|
+
desc.set = value.set;
|
|
9830
|
+
} else if (kind === 2) {
|
|
9831
|
+
desc.value = value;
|
|
9832
|
+
} else if (kind === 3) {
|
|
9833
|
+
desc.get = value;
|
|
9834
|
+
} else if (kind === 4) {
|
|
9835
|
+
desc.set = value;
|
|
9836
|
+
}
|
|
9837
|
+
if (isPrivate) {
|
|
9838
|
+
if (kind === 1) {
|
|
9839
|
+
ret.push(function(instance, args) {
|
|
9840
|
+
return value.get.call(instance, args);
|
|
9841
|
+
});
|
|
9842
|
+
ret.push(function(instance, args) {
|
|
9843
|
+
return value.set.call(instance, args);
|
|
9844
|
+
});
|
|
9845
|
+
} else if (kind === 2) {
|
|
9846
|
+
ret.push(value);
|
|
9847
|
+
} else {
|
|
9848
|
+
ret.push(function(instance, args) {
|
|
9849
|
+
return value.call(instance, args);
|
|
9850
|
+
});
|
|
9851
|
+
}
|
|
9852
|
+
} else {
|
|
9853
|
+
Object.defineProperty(base, name, desc);
|
|
9854
|
+
}
|
|
9855
|
+
}
|
|
9856
|
+
}
|
|
9857
|
+
function applyMemberDecs(Class, decInfos, metadata) {
|
|
9858
|
+
var ret = [];
|
|
9859
|
+
var protoInitializers;
|
|
9860
|
+
var staticInitializers;
|
|
9861
|
+
var existingProtoNonFields = /* @__PURE__ */ new Map();
|
|
9862
|
+
var existingStaticNonFields = /* @__PURE__ */ new Map();
|
|
9863
|
+
for (var i = 0; i < decInfos.length; i++) {
|
|
9864
|
+
var decInfo = decInfos[i];
|
|
9865
|
+
if (!Array.isArray(decInfo)) continue;
|
|
9866
|
+
var kind = decInfo[1];
|
|
9867
|
+
var name = decInfo[2];
|
|
9868
|
+
var isPrivate = decInfo.length > 3;
|
|
9869
|
+
var isStatic = kind >= 5;
|
|
9870
|
+
var base;
|
|
9871
|
+
var initializers;
|
|
9872
|
+
if (isStatic) {
|
|
9873
|
+
base = Class;
|
|
9874
|
+
kind = kind - 5;
|
|
9875
|
+
staticInitializers = staticInitializers || [];
|
|
9876
|
+
initializers = staticInitializers;
|
|
9877
|
+
} else {
|
|
9878
|
+
base = Class.prototype;
|
|
9879
|
+
protoInitializers = protoInitializers || [];
|
|
9880
|
+
initializers = protoInitializers;
|
|
9881
|
+
}
|
|
9882
|
+
if (kind !== 0 && !isPrivate) {
|
|
9883
|
+
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
|
|
9884
|
+
var existingKind = existingNonFields.get(name) || 0;
|
|
9885
|
+
if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
|
|
9886
|
+
throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
|
|
9887
|
+
} else if (!existingKind && kind > 2) {
|
|
9888
|
+
existingNonFields.set(name, kind);
|
|
9889
|
+
} else {
|
|
9890
|
+
existingNonFields.set(name, true);
|
|
9891
|
+
}
|
|
9892
|
+
}
|
|
9893
|
+
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata);
|
|
9894
|
+
}
|
|
9895
|
+
pushInitializers(ret, protoInitializers);
|
|
9896
|
+
pushInitializers(ret, staticInitializers);
|
|
9897
|
+
return ret;
|
|
9898
|
+
}
|
|
9899
|
+
function pushInitializers(ret, initializers) {
|
|
9900
|
+
if (initializers) {
|
|
9901
|
+
ret.push(function(instance) {
|
|
9902
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
9903
|
+
initializers[i].call(instance);
|
|
9904
|
+
}
|
|
9905
|
+
return instance;
|
|
9906
|
+
});
|
|
9907
|
+
}
|
|
9908
|
+
}
|
|
9909
|
+
function applyClassDecs(targetClass, classDecs, metadata) {
|
|
9910
|
+
if (classDecs.length > 0) {
|
|
9911
|
+
var initializers = [];
|
|
9912
|
+
var newClass = targetClass;
|
|
9913
|
+
var name = targetClass.name;
|
|
9914
|
+
for (var i = classDecs.length - 1; i >= 0; i--) {
|
|
9915
|
+
var decoratorFinishedRef = {
|
|
9916
|
+
v: false
|
|
9917
|
+
};
|
|
9918
|
+
try {
|
|
9919
|
+
var nextNewClass = classDecs[i](newClass, {
|
|
9920
|
+
kind: "class",
|
|
9921
|
+
name,
|
|
9922
|
+
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef),
|
|
9923
|
+
metadata
|
|
9924
|
+
});
|
|
9925
|
+
} finally {
|
|
9926
|
+
decoratorFinishedRef.v = true;
|
|
9927
|
+
}
|
|
9928
|
+
if (nextNewClass !== void 0) {
|
|
9929
|
+
assertValidReturnValue(10, nextNewClass);
|
|
9930
|
+
newClass = nextNewClass;
|
|
9931
|
+
}
|
|
9932
|
+
}
|
|
9933
|
+
return [
|
|
9934
|
+
defineMetadata(newClass, metadata),
|
|
9935
|
+
function() {
|
|
9936
|
+
for (var i2 = 0; i2 < initializers.length; i2++) {
|
|
9937
|
+
initializers[i2].call(newClass);
|
|
9938
|
+
}
|
|
9939
|
+
}
|
|
9940
|
+
];
|
|
9941
|
+
}
|
|
9942
|
+
}
|
|
9943
|
+
function defineMetadata(Class, metadata) {
|
|
9944
|
+
return Object.defineProperty(Class, Symbol.metadata || /* @__PURE__ */ Symbol.for("Symbol.metadata"), {
|
|
9945
|
+
configurable: true,
|
|
9946
|
+
enumerable: true,
|
|
9947
|
+
value: metadata
|
|
9948
|
+
});
|
|
9949
|
+
}
|
|
9950
|
+
return function applyDecs2203R(targetClass, memberDecs, classDecs, parentClass) {
|
|
9951
|
+
if (parentClass !== void 0) {
|
|
9952
|
+
var parentMetadata = parentClass[Symbol.metadata || /* @__PURE__ */ Symbol.for("Symbol.metadata")];
|
|
9953
|
+
}
|
|
9954
|
+
var metadata = Object.create(parentMetadata === void 0 ? null : parentMetadata);
|
|
9955
|
+
var e = applyMemberDecs(targetClass, memberDecs, metadata);
|
|
9956
|
+
if (!classDecs.length) defineMetadata(targetClass, metadata);
|
|
9957
|
+
return {
|
|
9958
|
+
e,
|
|
9959
|
+
get c() {
|
|
9960
|
+
return applyClassDecs(targetClass, classDecs, metadata);
|
|
9961
|
+
}
|
|
9962
|
+
};
|
|
9963
|
+
};
|
|
9964
|
+
}
|
|
9965
|
+
function _apply_decs_2203_r13(targetClass, memberDecs, classDecs, parentClass) {
|
|
9966
|
+
return (_apply_decs_2203_r13 = applyDecs2203RFactory13())(targetClass, memberDecs, classDecs, parentClass);
|
|
9967
|
+
}
|
|
9968
|
+
var _dec31;
|
|
9969
|
+
var _initClass13;
|
|
9970
|
+
var _HTMLElement13;
|
|
9971
|
+
var _IconClear;
|
|
9972
|
+
_dec31 = Component({
|
|
9973
|
+
tag: "ease-icon-clear",
|
|
9974
|
+
styles: `
|
|
9975
|
+
:host {
|
|
9976
|
+
display: block;
|
|
9977
|
+
width: var(--ease-icon-size, 16px);
|
|
9978
|
+
height: var(--ease-icon-size, 16px);
|
|
9979
|
+
fill: none;
|
|
9980
|
+
stroke: currentColor;
|
|
9981
|
+
stroke-width: .75;
|
|
9982
|
+
stroke-linecap: round;
|
|
9983
|
+
stroke-linejoin: round;
|
|
9984
|
+
}
|
|
9985
|
+
|
|
9986
|
+
[part="clear"] {
|
|
9987
|
+
& > path {
|
|
9988
|
+
|
|
9989
|
+
&:first-child {
|
|
9990
|
+
translate: var(--ease-icon-clear-path-translate, 0);
|
|
9991
|
+
transition: translate var(--ease-icon-clear-path-duration, 0.2s);
|
|
9992
|
+
transition-delay: var(--ease-icon-clear-path-delay, 0s);
|
|
9993
|
+
}
|
|
9994
|
+
|
|
9995
|
+
&:not(:first-child) {
|
|
9996
|
+
stroke-dasharray: 100 0 100;
|
|
9997
|
+
stroke-dashoffset: var(--ease-icon-clear-lines-offset, 100);
|
|
9998
|
+
transition: stroke-dashoffset var(--ease-icon-clear-lines-duration, 0.2s);
|
|
9999
|
+
transition-delay: var(--ease-icon-clear-lines-delay, 0s);
|
|
10000
|
+
}
|
|
10001
|
+
}
|
|
10002
|
+
|
|
10003
|
+
g {
|
|
10004
|
+
path {
|
|
10005
|
+
transform-box: fill-box;
|
|
10006
|
+
transform-origin: 50% 50%;
|
|
10007
|
+
transition: rotate var(--ease-icon-clear-star-duration, 0.2s), scale var(--ease-icon-clear-star-duration, 0.2s);
|
|
10008
|
+
|
|
10009
|
+
&:first-child {
|
|
10010
|
+
rotate: var(--ease-icon-clear-star-1-rotate, 0deg);
|
|
10011
|
+
scale: var(--ease-icon-clear-star-1-scale, 1);
|
|
10012
|
+
transition-delay: var(--ease-icon-clear-star-1-delay, 0s);
|
|
10013
|
+
}
|
|
10014
|
+
|
|
10015
|
+
&:last-child {
|
|
10016
|
+
rotate: var(--ease-icon-clear-star-2-rotate, 0deg);
|
|
10017
|
+
scale: var(--ease-icon-clear-star-2-scale, 1);
|
|
10018
|
+
transition-delay: var(--ease-icon-clear-star-2-delay, 0s);
|
|
10019
|
+
}
|
|
10020
|
+
}
|
|
10021
|
+
}
|
|
10022
|
+
}
|
|
10023
|
+
`,
|
|
10024
|
+
template() {
|
|
10025
|
+
return import_lit_html15.html`
|
|
10026
|
+
<svg part="clear" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10027
|
+
<path d="M11.7613 10.334L13.7071 12.2798C14.1011 12.6739 14.1011 13.3127 13.7071 13.7067C13.3131 14.1007 12.6742 14.1007 12.2802 13.7067L10.3344 11.7609M11.7613 10.334L10.9541 8.08932M11.7613 10.334L10.3344 11.7609M10.3344 11.7609L8.08973 10.9537M6.69581 12.3476L12.348 6.69544C12.6942 6.34922 12.6942 5.7879 12.348 5.44168L11.892 4.98574C11.5458 4.63952 10.9845 4.63952 10.6383 4.98574L4.9861 10.6379C4.63989 10.9841 4.63989 11.5454 4.9861 11.8917L5.44204 12.3476C5.78826 12.6938 6.34959 12.6938 6.69581 12.3476Z" />
|
|
10028
|
+
<g>
|
|
10029
|
+
<path d="M3.3313 2.6645H4.66519M3.99824 1.99756V3.33145" />
|
|
10030
|
+
<path d="M4.66516 5.99946H5.99905M5.33211 5.33252V6.66641" />
|
|
10031
|
+
</g>
|
|
10032
|
+
<path d="M7.33301 1.99756L8.6669 3.33145" pathlength="100" />
|
|
10033
|
+
<path d="M3.6648 8.33386L1.99744 6.6665" pathlength="100" />
|
|
10034
|
+
</svg>
|
|
10035
|
+
`;
|
|
10036
|
+
}
|
|
10037
|
+
});
|
|
10038
|
+
var IconClear = class extends (_HTMLElement13 = HTMLElement) {
|
|
10039
|
+
static {
|
|
10040
|
+
({ c: [_IconClear, _initClass13] } = _apply_decs_2203_r13(this, [], [
|
|
10041
|
+
_dec31
|
|
10042
|
+
], _HTMLElement13));
|
|
10043
|
+
}
|
|
10044
|
+
static {
|
|
10045
|
+
_initClass13();
|
|
10046
|
+
}
|
|
10047
|
+
};
|
|
10048
|
+
|
|
10049
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/folder.ts
|
|
10050
|
+
var import_lit_html16 = require("lit-html");
|
|
10051
|
+
function applyDecs2203RFactory14() {
|
|
10052
|
+
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
10053
|
+
return function addInitializer(initializer) {
|
|
10054
|
+
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
10055
|
+
assertCallable(initializer, "An initializer");
|
|
10056
|
+
initializers.push(initializer);
|
|
10057
|
+
};
|
|
10058
|
+
}
|
|
10059
|
+
function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value) {
|
|
10060
|
+
var kindStr;
|
|
10061
|
+
switch (kind) {
|
|
10062
|
+
case 1:
|
|
10063
|
+
kindStr = "accessor";
|
|
10064
|
+
break;
|
|
10065
|
+
case 2:
|
|
10066
|
+
kindStr = "method";
|
|
10067
|
+
break;
|
|
10068
|
+
case 3:
|
|
10069
|
+
kindStr = "getter";
|
|
10070
|
+
break;
|
|
10071
|
+
case 4:
|
|
10072
|
+
kindStr = "setter";
|
|
10073
|
+
break;
|
|
10074
|
+
default:
|
|
10075
|
+
kindStr = "field";
|
|
10076
|
+
}
|
|
10077
|
+
var ctx = {
|
|
10078
|
+
kind: kindStr,
|
|
10079
|
+
name: isPrivate ? "#" + name : name,
|
|
10080
|
+
static: isStatic,
|
|
10081
|
+
private: isPrivate,
|
|
10082
|
+
metadata
|
|
10083
|
+
};
|
|
10084
|
+
var decoratorFinishedRef = {
|
|
10085
|
+
v: false
|
|
10086
|
+
};
|
|
10087
|
+
ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
|
|
10088
|
+
var get, set;
|
|
10089
|
+
if (kind === 0) {
|
|
10090
|
+
if (isPrivate) {
|
|
10091
|
+
get = desc.get;
|
|
10092
|
+
set = desc.set;
|
|
10093
|
+
} else {
|
|
10094
|
+
get = function() {
|
|
10095
|
+
return this[name];
|
|
10096
|
+
};
|
|
10097
|
+
set = function(v) {
|
|
10098
|
+
this[name] = v;
|
|
10099
|
+
};
|
|
10100
|
+
}
|
|
10101
|
+
} else if (kind === 2) {
|
|
10102
|
+
get = function() {
|
|
10103
|
+
return desc.value;
|
|
10104
|
+
};
|
|
10105
|
+
} else {
|
|
10106
|
+
if (kind === 1 || kind === 3) {
|
|
10107
|
+
get = function() {
|
|
10108
|
+
return desc.get.call(this);
|
|
10109
|
+
};
|
|
10110
|
+
}
|
|
10111
|
+
if (kind === 1 || kind === 4) {
|
|
10112
|
+
set = function(v) {
|
|
10113
|
+
desc.set.call(this, v);
|
|
10114
|
+
};
|
|
10115
|
+
}
|
|
10116
|
+
}
|
|
10117
|
+
ctx.access = get && set ? {
|
|
10118
|
+
get,
|
|
10119
|
+
set
|
|
10120
|
+
} : get ? {
|
|
10121
|
+
get
|
|
10122
|
+
} : {
|
|
10123
|
+
set
|
|
10124
|
+
};
|
|
10125
|
+
try {
|
|
10126
|
+
return dec(value, ctx);
|
|
10127
|
+
} finally {
|
|
10128
|
+
decoratorFinishedRef.v = true;
|
|
10129
|
+
}
|
|
10130
|
+
}
|
|
10131
|
+
function assertNotFinished(decoratorFinishedRef, fnName) {
|
|
10132
|
+
if (decoratorFinishedRef.v) {
|
|
10133
|
+
throw new Error("attempted to call " + fnName + " after decoration was finished");
|
|
10134
|
+
}
|
|
10135
|
+
}
|
|
10136
|
+
function assertCallable(fn, hint) {
|
|
10137
|
+
if (typeof fn !== "function") {
|
|
10138
|
+
throw new TypeError(hint + " must be a function");
|
|
10139
|
+
}
|
|
10140
|
+
}
|
|
10141
|
+
function assertValidReturnValue(kind, value) {
|
|
10142
|
+
var type = typeof value;
|
|
10143
|
+
if (kind === 1) {
|
|
10144
|
+
if (type !== "object" || value === null) {
|
|
10145
|
+
throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
|
|
10146
|
+
}
|
|
10147
|
+
if (value.get !== void 0) {
|
|
10148
|
+
assertCallable(value.get, "accessor.get");
|
|
10149
|
+
}
|
|
10150
|
+
if (value.set !== void 0) {
|
|
10151
|
+
assertCallable(value.set, "accessor.set");
|
|
10152
|
+
}
|
|
10153
|
+
if (value.init !== void 0) {
|
|
10154
|
+
assertCallable(value.init, "accessor.init");
|
|
10155
|
+
}
|
|
10156
|
+
} else if (type !== "function") {
|
|
10157
|
+
var hint;
|
|
10158
|
+
if (kind === 0) {
|
|
10159
|
+
hint = "field";
|
|
10160
|
+
} else if (kind === 10) {
|
|
10161
|
+
hint = "class";
|
|
10162
|
+
} else {
|
|
10163
|
+
hint = "method";
|
|
10164
|
+
}
|
|
10165
|
+
throw new TypeError(hint + " decorators must return a function or void 0");
|
|
10166
|
+
}
|
|
10167
|
+
}
|
|
10168
|
+
function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata) {
|
|
10169
|
+
var decs = decInfo[0];
|
|
10170
|
+
var desc, init, value;
|
|
10171
|
+
if (isPrivate) {
|
|
10172
|
+
if (kind === 0 || kind === 1) {
|
|
10173
|
+
desc = {
|
|
10174
|
+
get: decInfo[3],
|
|
10175
|
+
set: decInfo[4]
|
|
10176
|
+
};
|
|
10177
|
+
} else if (kind === 3) {
|
|
10178
|
+
desc = {
|
|
10179
|
+
get: decInfo[3]
|
|
10180
|
+
};
|
|
10181
|
+
} else if (kind === 4) {
|
|
10182
|
+
desc = {
|
|
10183
|
+
set: decInfo[3]
|
|
10184
|
+
};
|
|
10185
|
+
} else {
|
|
10186
|
+
desc = {
|
|
10187
|
+
value: decInfo[3]
|
|
10188
|
+
};
|
|
10189
|
+
}
|
|
10190
|
+
} else if (kind !== 0) {
|
|
10191
|
+
desc = Object.getOwnPropertyDescriptor(base, name);
|
|
10192
|
+
}
|
|
10193
|
+
if (kind === 1) {
|
|
10194
|
+
value = {
|
|
10195
|
+
get: desc.get,
|
|
10196
|
+
set: desc.set
|
|
10197
|
+
};
|
|
10198
|
+
} else if (kind === 2) {
|
|
10199
|
+
value = desc.value;
|
|
10200
|
+
} else if (kind === 3) {
|
|
10201
|
+
value = desc.get;
|
|
10202
|
+
} else if (kind === 4) {
|
|
10203
|
+
value = desc.set;
|
|
10204
|
+
}
|
|
10205
|
+
var newValue, get, set;
|
|
10206
|
+
if (typeof decs === "function") {
|
|
10207
|
+
newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
|
|
10208
|
+
if (newValue !== void 0) {
|
|
10209
|
+
assertValidReturnValue(kind, newValue);
|
|
10210
|
+
if (kind === 0) {
|
|
10211
|
+
init = newValue;
|
|
10212
|
+
} else if (kind === 1) {
|
|
10213
|
+
init = newValue.init;
|
|
10214
|
+
get = newValue.get || value.get;
|
|
10215
|
+
set = newValue.set || value.set;
|
|
10216
|
+
value = {
|
|
10217
|
+
get,
|
|
10218
|
+
set
|
|
10219
|
+
};
|
|
10220
|
+
} else {
|
|
10221
|
+
value = newValue;
|
|
10222
|
+
}
|
|
10223
|
+
}
|
|
10224
|
+
} else {
|
|
10225
|
+
for (var i = decs.length - 1; i >= 0; i--) {
|
|
10226
|
+
var dec = decs[i];
|
|
10227
|
+
newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
|
|
10228
|
+
if (newValue !== void 0) {
|
|
10229
|
+
assertValidReturnValue(kind, newValue);
|
|
10230
|
+
var newInit;
|
|
10231
|
+
if (kind === 0) {
|
|
10232
|
+
newInit = newValue;
|
|
10233
|
+
} else if (kind === 1) {
|
|
10234
|
+
newInit = newValue.init;
|
|
10235
|
+
get = newValue.get || value.get;
|
|
10236
|
+
set = newValue.set || value.set;
|
|
10237
|
+
value = {
|
|
10238
|
+
get,
|
|
10239
|
+
set
|
|
10240
|
+
};
|
|
10241
|
+
} else {
|
|
10242
|
+
value = newValue;
|
|
10243
|
+
}
|
|
10244
|
+
if (newInit !== void 0) {
|
|
10245
|
+
if (init === void 0) {
|
|
10246
|
+
init = newInit;
|
|
10247
|
+
} else if (typeof init === "function") {
|
|
10248
|
+
init = [
|
|
10249
|
+
init,
|
|
10250
|
+
newInit
|
|
10251
|
+
];
|
|
10252
|
+
} else {
|
|
10253
|
+
init.push(newInit);
|
|
10254
|
+
}
|
|
10255
|
+
}
|
|
10256
|
+
}
|
|
10257
|
+
}
|
|
10258
|
+
}
|
|
10259
|
+
if (kind === 0 || kind === 1) {
|
|
10260
|
+
if (init === void 0) {
|
|
10261
|
+
init = function(instance, init2) {
|
|
10262
|
+
return init2;
|
|
10263
|
+
};
|
|
10264
|
+
} else if (typeof init !== "function") {
|
|
10265
|
+
var ownInitializers = init;
|
|
10266
|
+
init = function(instance, init2) {
|
|
10267
|
+
var value2 = init2;
|
|
10268
|
+
for (var i2 = 0; i2 < ownInitializers.length; i2++) {
|
|
10269
|
+
value2 = ownInitializers[i2].call(instance, value2);
|
|
10270
|
+
}
|
|
10271
|
+
return value2;
|
|
10272
|
+
};
|
|
10273
|
+
} else {
|
|
10274
|
+
var originalInitializer = init;
|
|
10275
|
+
init = function(instance, init2) {
|
|
10276
|
+
return originalInitializer.call(instance, init2);
|
|
10277
|
+
};
|
|
10278
|
+
}
|
|
10279
|
+
ret.push(init);
|
|
10280
|
+
}
|
|
10281
|
+
if (kind !== 0) {
|
|
10282
|
+
if (kind === 1) {
|
|
10283
|
+
desc.get = value.get;
|
|
10284
|
+
desc.set = value.set;
|
|
10285
|
+
} else if (kind === 2) {
|
|
10286
|
+
desc.value = value;
|
|
10287
|
+
} else if (kind === 3) {
|
|
10288
|
+
desc.get = value;
|
|
10289
|
+
} else if (kind === 4) {
|
|
10290
|
+
desc.set = value;
|
|
10291
|
+
}
|
|
10292
|
+
if (isPrivate) {
|
|
10293
|
+
if (kind === 1) {
|
|
10294
|
+
ret.push(function(instance, args) {
|
|
10295
|
+
return value.get.call(instance, args);
|
|
10296
|
+
});
|
|
10297
|
+
ret.push(function(instance, args) {
|
|
10298
|
+
return value.set.call(instance, args);
|
|
10299
|
+
});
|
|
10300
|
+
} else if (kind === 2) {
|
|
10301
|
+
ret.push(value);
|
|
10302
|
+
} else {
|
|
10303
|
+
ret.push(function(instance, args) {
|
|
10304
|
+
return value.call(instance, args);
|
|
10305
|
+
});
|
|
10306
|
+
}
|
|
10307
|
+
} else {
|
|
10308
|
+
Object.defineProperty(base, name, desc);
|
|
10309
|
+
}
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
function applyMemberDecs(Class, decInfos, metadata) {
|
|
10313
|
+
var ret = [];
|
|
10314
|
+
var protoInitializers;
|
|
10315
|
+
var staticInitializers;
|
|
10316
|
+
var existingProtoNonFields = /* @__PURE__ */ new Map();
|
|
10317
|
+
var existingStaticNonFields = /* @__PURE__ */ new Map();
|
|
10318
|
+
for (var i = 0; i < decInfos.length; i++) {
|
|
10319
|
+
var decInfo = decInfos[i];
|
|
10320
|
+
if (!Array.isArray(decInfo)) continue;
|
|
10321
|
+
var kind = decInfo[1];
|
|
10322
|
+
var name = decInfo[2];
|
|
10323
|
+
var isPrivate = decInfo.length > 3;
|
|
10324
|
+
var isStatic = kind >= 5;
|
|
10325
|
+
var base;
|
|
10326
|
+
var initializers;
|
|
10327
|
+
if (isStatic) {
|
|
10328
|
+
base = Class;
|
|
10329
|
+
kind = kind - 5;
|
|
10330
|
+
staticInitializers = staticInitializers || [];
|
|
10331
|
+
initializers = staticInitializers;
|
|
10332
|
+
} else {
|
|
10333
|
+
base = Class.prototype;
|
|
10334
|
+
protoInitializers = protoInitializers || [];
|
|
10335
|
+
initializers = protoInitializers;
|
|
10336
|
+
}
|
|
10337
|
+
if (kind !== 0 && !isPrivate) {
|
|
10338
|
+
var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
|
|
10339
|
+
var existingKind = existingNonFields.get(name) || 0;
|
|
10340
|
+
if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
|
|
10341
|
+
throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
|
|
10342
|
+
} else if (!existingKind && kind > 2) {
|
|
10343
|
+
existingNonFields.set(name, kind);
|
|
10344
|
+
} else {
|
|
10345
|
+
existingNonFields.set(name, true);
|
|
10346
|
+
}
|
|
10347
|
+
}
|
|
10348
|
+
applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata);
|
|
10349
|
+
}
|
|
10350
|
+
pushInitializers(ret, protoInitializers);
|
|
10351
|
+
pushInitializers(ret, staticInitializers);
|
|
10352
|
+
return ret;
|
|
10353
|
+
}
|
|
10354
|
+
function pushInitializers(ret, initializers) {
|
|
10355
|
+
if (initializers) {
|
|
10356
|
+
ret.push(function(instance) {
|
|
10357
|
+
for (var i = 0; i < initializers.length; i++) {
|
|
10358
|
+
initializers[i].call(instance);
|
|
10359
|
+
}
|
|
10360
|
+
return instance;
|
|
10361
|
+
});
|
|
10362
|
+
}
|
|
10363
|
+
}
|
|
10364
|
+
function applyClassDecs(targetClass, classDecs, metadata) {
|
|
10365
|
+
if (classDecs.length > 0) {
|
|
10366
|
+
var initializers = [];
|
|
10367
|
+
var newClass = targetClass;
|
|
10368
|
+
var name = targetClass.name;
|
|
10369
|
+
for (var i = classDecs.length - 1; i >= 0; i--) {
|
|
10370
|
+
var decoratorFinishedRef = {
|
|
10371
|
+
v: false
|
|
10372
|
+
};
|
|
10373
|
+
try {
|
|
10374
|
+
var nextNewClass = classDecs[i](newClass, {
|
|
10375
|
+
kind: "class",
|
|
10376
|
+
name,
|
|
10377
|
+
addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef),
|
|
10378
|
+
metadata
|
|
10379
|
+
});
|
|
10380
|
+
} finally {
|
|
10381
|
+
decoratorFinishedRef.v = true;
|
|
10382
|
+
}
|
|
10383
|
+
if (nextNewClass !== void 0) {
|
|
10384
|
+
assertValidReturnValue(10, nextNewClass);
|
|
10385
|
+
newClass = nextNewClass;
|
|
10386
|
+
}
|
|
10387
|
+
}
|
|
10388
|
+
return [
|
|
10389
|
+
defineMetadata(newClass, metadata),
|
|
10390
|
+
function() {
|
|
10391
|
+
for (var i2 = 0; i2 < initializers.length; i2++) {
|
|
10392
|
+
initializers[i2].call(newClass);
|
|
10393
|
+
}
|
|
10394
|
+
}
|
|
10395
|
+
];
|
|
10396
|
+
}
|
|
10397
|
+
}
|
|
10398
|
+
function defineMetadata(Class, metadata) {
|
|
10399
|
+
return Object.defineProperty(Class, Symbol.metadata || /* @__PURE__ */ Symbol.for("Symbol.metadata"), {
|
|
10400
|
+
configurable: true,
|
|
10401
|
+
enumerable: true,
|
|
10402
|
+
value: metadata
|
|
10403
|
+
});
|
|
10404
|
+
}
|
|
10405
|
+
return function applyDecs2203R(targetClass, memberDecs, classDecs, parentClass) {
|
|
10406
|
+
if (parentClass !== void 0) {
|
|
10407
|
+
var parentMetadata = parentClass[Symbol.metadata || /* @__PURE__ */ Symbol.for("Symbol.metadata")];
|
|
10408
|
+
}
|
|
10409
|
+
var metadata = Object.create(parentMetadata === void 0 ? null : parentMetadata);
|
|
10410
|
+
var e = applyMemberDecs(targetClass, memberDecs, metadata);
|
|
10411
|
+
if (!classDecs.length) defineMetadata(targetClass, metadata);
|
|
10412
|
+
return {
|
|
10413
|
+
e,
|
|
10414
|
+
get c() {
|
|
10415
|
+
return applyClassDecs(targetClass, classDecs, metadata);
|
|
10416
|
+
}
|
|
10417
|
+
};
|
|
10418
|
+
};
|
|
10419
|
+
}
|
|
10420
|
+
function _apply_decs_2203_r14(targetClass, memberDecs, classDecs, parentClass) {
|
|
10421
|
+
return (_apply_decs_2203_r14 = applyDecs2203RFactory14())(targetClass, memberDecs, classDecs, parentClass);
|
|
10422
|
+
}
|
|
10423
|
+
var _dec39;
|
|
10424
|
+
var _initClass14;
|
|
10425
|
+
var _HTMLElement14;
|
|
10426
|
+
var _dec115;
|
|
10427
|
+
var _init_state2;
|
|
10428
|
+
var _initProto11;
|
|
10429
|
+
var _IconFolder;
|
|
10430
|
+
_dec39 = Component({
|
|
10431
|
+
tag: "ease-icon-folder",
|
|
10432
|
+
styles: `
|
|
10433
|
+
:host {
|
|
10434
|
+
display: contents;
|
|
10435
|
+
}
|
|
10436
|
+
|
|
10437
|
+
[part="folder"] {
|
|
10438
|
+
display: block;
|
|
10439
|
+
position: relative;
|
|
10440
|
+
width: var(--ease-icon-size, 16px);
|
|
10441
|
+
height: var(--ease-icon-size, 16px);
|
|
10442
|
+
}
|
|
10443
|
+
|
|
10444
|
+
[part="folder"]::before {
|
|
10445
|
+
content: '';
|
|
10446
|
+
position: absolute;
|
|
10447
|
+
z-index: 1;
|
|
10448
|
+
width: 12px;
|
|
10449
|
+
height: 6px;
|
|
10450
|
+
top: 6px;
|
|
10451
|
+
left: 50%;
|
|
10452
|
+
transform: translate(-50%, .5px);
|
|
10453
|
+
background-color: currentColor;
|
|
10454
|
+
border-radius: 3px 3px 1px 1px;
|
|
10455
|
+
transform-origin: 50% 100%;
|
|
10456
|
+
transition: transform 200ms cubic-bezier(.25, 0, .5, 1);
|
|
10457
|
+
}
|
|
10458
|
+
|
|
10459
|
+
[part="folder"][data-state="open"]::before {
|
|
10460
|
+
transform: translate(-50%, .5px) scaleY(0.85) skewX(-28deg);
|
|
10461
|
+
}
|
|
10462
|
+
|
|
10463
|
+
svg {
|
|
10464
|
+
display: block;
|
|
10465
|
+
width: var(--ease-icon-size, 16px);
|
|
10466
|
+
height: var(--ease-icon-size, 16px);
|
|
10467
|
+
fill: none;
|
|
10468
|
+
stroke: currentColor;
|
|
10469
|
+
stroke-width: 1.5;
|
|
10470
|
+
stroke-linecap: round;
|
|
10471
|
+
stroke-linejoin: round;
|
|
10472
|
+
}
|
|
10473
|
+
`,
|
|
10474
|
+
observedAttributes: [
|
|
10475
|
+
"state"
|
|
10476
|
+
]
|
|
10477
|
+
}), _dec115 = Prop({
|
|
10478
|
+
reflect: true,
|
|
10479
|
+
attribute: "state",
|
|
10480
|
+
defaultValue: "close"
|
|
9424
10481
|
});
|
|
9425
|
-
var
|
|
10482
|
+
var IconFolder = class extends (_HTMLElement14 = HTMLElement) {
|
|
9426
10483
|
static {
|
|
9427
|
-
({ c: [
|
|
9428
|
-
|
|
9429
|
-
|
|
10484
|
+
({ e: [_init_state2, _initProto11], c: [_IconFolder, _initClass14] } = _apply_decs_2203_r14(this, [
|
|
10485
|
+
[
|
|
10486
|
+
_dec115,
|
|
10487
|
+
1,
|
|
10488
|
+
"state"
|
|
10489
|
+
]
|
|
10490
|
+
], [
|
|
10491
|
+
_dec39
|
|
10492
|
+
], _HTMLElement14));
|
|
10493
|
+
}
|
|
10494
|
+
#___private_state_1;
|
|
10495
|
+
get state() {
|
|
10496
|
+
return this.#___private_state_1;
|
|
10497
|
+
}
|
|
10498
|
+
set state(_v) {
|
|
10499
|
+
this.#___private_state_1 = _v;
|
|
10500
|
+
}
|
|
10501
|
+
render() {
|
|
10502
|
+
return import_lit_html16.html`
|
|
10503
|
+
<div part="folder" data-state=${this.state}>
|
|
10504
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
10505
|
+
<path d="M2 11V5C2 3.89543 2.89543 3 4 3H5.5C6.12951 3 6.72229 3.29639 7.1 3.8L7.4 4.2C7.77771 4.70361 8.37049 5 9 5H12C13.1046 5 14 5.89543 14 7V11C14 12.1046 13.1046 13 12 13H4C2.89543 13 2 12.1046 2 11Z" />
|
|
10506
|
+
</svg>
|
|
10507
|
+
</div>
|
|
10508
|
+
`;
|
|
9430
10509
|
}
|
|
9431
10510
|
static {
|
|
9432
|
-
|
|
10511
|
+
_initClass14();
|
|
10512
|
+
}
|
|
10513
|
+
constructor(...args) {
|
|
10514
|
+
super(...args), this.#___private_state_1 = (_initProto11(this), _init_state2(this));
|
|
9433
10515
|
}
|
|
9434
10516
|
};
|
|
9435
10517
|
|
|
9436
|
-
// swc:/
|
|
9437
|
-
var
|
|
9438
|
-
function
|
|
10518
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/grid.ts
|
|
10519
|
+
var import_lit_html17 = require("lit-html");
|
|
10520
|
+
function applyDecs2203RFactory15() {
|
|
9439
10521
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
9440
10522
|
return function addInitializer(initializer) {
|
|
9441
10523
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -9804,17 +10886,17 @@ function applyDecs2203RFactory13() {
|
|
|
9804
10886
|
};
|
|
9805
10887
|
};
|
|
9806
10888
|
}
|
|
9807
|
-
function
|
|
9808
|
-
return (
|
|
10889
|
+
function _apply_decs_2203_r15(targetClass, memberDecs, classDecs, parentClass) {
|
|
10890
|
+
return (_apply_decs_2203_r15 = applyDecs2203RFactory15())(targetClass, memberDecs, classDecs, parentClass);
|
|
9809
10891
|
}
|
|
9810
|
-
var
|
|
9811
|
-
var
|
|
9812
|
-
var
|
|
9813
|
-
var
|
|
9814
|
-
var
|
|
9815
|
-
var
|
|
10892
|
+
var _dec40;
|
|
10893
|
+
var _initClass15;
|
|
10894
|
+
var _HTMLElement15;
|
|
10895
|
+
var _dec116;
|
|
10896
|
+
var _init_state3;
|
|
10897
|
+
var _initProto12;
|
|
9816
10898
|
var _IconGrid;
|
|
9817
|
-
|
|
10899
|
+
_dec40 = Component({
|
|
9818
10900
|
tag: "ease-icon-grid",
|
|
9819
10901
|
styles: `
|
|
9820
10902
|
:host {
|
|
@@ -9859,22 +10941,22 @@ _dec31 = Component({
|
|
|
9859
10941
|
observedAttributes: [
|
|
9860
10942
|
"state"
|
|
9861
10943
|
]
|
|
9862
|
-
}),
|
|
10944
|
+
}), _dec116 = Prop({
|
|
9863
10945
|
reflect: true,
|
|
9864
10946
|
attribute: "state",
|
|
9865
10947
|
defaultValue: "show"
|
|
9866
10948
|
});
|
|
9867
|
-
var IconGrid = class extends (
|
|
10949
|
+
var IconGrid = class extends (_HTMLElement15 = HTMLElement) {
|
|
9868
10950
|
static {
|
|
9869
|
-
({ e: [
|
|
10951
|
+
({ e: [_init_state3, _initProto12], c: [_IconGrid, _initClass15] } = _apply_decs_2203_r15(this, [
|
|
9870
10952
|
[
|
|
9871
|
-
|
|
10953
|
+
_dec116,
|
|
9872
10954
|
1,
|
|
9873
10955
|
"state"
|
|
9874
10956
|
]
|
|
9875
10957
|
], [
|
|
9876
|
-
|
|
9877
|
-
],
|
|
10958
|
+
_dec40
|
|
10959
|
+
], _HTMLElement15));
|
|
9878
10960
|
}
|
|
9879
10961
|
#___private_state_1;
|
|
9880
10962
|
get state() {
|
|
@@ -9884,7 +10966,7 @@ var IconGrid = class extends (_HTMLElement13 = HTMLElement) {
|
|
|
9884
10966
|
this.#___private_state_1 = _v;
|
|
9885
10967
|
}
|
|
9886
10968
|
render() {
|
|
9887
|
-
return
|
|
10969
|
+
return import_lit_html17.html`
|
|
9888
10970
|
<svg part="grid" viewBox="0 0 12 12" state=${this.state} xmlns="http://www.w3.org/2000/svg">
|
|
9889
10971
|
<path d="M10.5018 5.49971V3.99909C10.5018 2.6178 9.38204 1.49805 8.00076 1.49805H3.99909C2.6178 1.49805 1.49805 2.6178 1.49805 3.99909V8.00076C1.49805 9.38204 2.6178 10.5018 3.99909 10.5018H5.49971" />
|
|
9890
10972
|
<g data-state=${this.state}>
|
|
@@ -9902,16 +10984,16 @@ var IconGrid = class extends (_HTMLElement13 = HTMLElement) {
|
|
|
9902
10984
|
`;
|
|
9903
10985
|
}
|
|
9904
10986
|
static {
|
|
9905
|
-
|
|
10987
|
+
_initClass15();
|
|
9906
10988
|
}
|
|
9907
10989
|
constructor(...args) {
|
|
9908
|
-
super(...args), this.#___private_state_1 = (
|
|
10990
|
+
super(...args), this.#___private_state_1 = (_initProto12(this), _init_state3(this));
|
|
9909
10991
|
}
|
|
9910
10992
|
};
|
|
9911
10993
|
|
|
9912
|
-
// swc:/
|
|
9913
|
-
var
|
|
9914
|
-
function
|
|
10994
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/loading.ts
|
|
10995
|
+
var import_lit_html18 = require("lit-html");
|
|
10996
|
+
function applyDecs2203RFactory16() {
|
|
9915
10997
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
9916
10998
|
return function addInitializer(initializer) {
|
|
9917
10999
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -10280,14 +11362,14 @@ function applyDecs2203RFactory14() {
|
|
|
10280
11362
|
};
|
|
10281
11363
|
};
|
|
10282
11364
|
}
|
|
10283
|
-
function
|
|
10284
|
-
return (
|
|
11365
|
+
function _apply_decs_2203_r16(targetClass, memberDecs, classDecs, parentClass) {
|
|
11366
|
+
return (_apply_decs_2203_r16 = applyDecs2203RFactory16())(targetClass, memberDecs, classDecs, parentClass);
|
|
10285
11367
|
}
|
|
10286
|
-
var
|
|
10287
|
-
var
|
|
10288
|
-
var
|
|
11368
|
+
var _dec41;
|
|
11369
|
+
var _initClass16;
|
|
11370
|
+
var _HTMLElement16;
|
|
10289
11371
|
var _Loading;
|
|
10290
|
-
|
|
11372
|
+
_dec41 = Component({
|
|
10291
11373
|
tag: "ease-icon-loading",
|
|
10292
11374
|
styles: `
|
|
10293
11375
|
:host {
|
|
@@ -10339,7 +11421,7 @@ _dec38 = Component({
|
|
|
10339
11421
|
}
|
|
10340
11422
|
`,
|
|
10341
11423
|
template() {
|
|
10342
|
-
return
|
|
11424
|
+
return import_lit_html18.html`
|
|
10343
11425
|
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
10344
11426
|
<circle cx="6" cy="6" r="4.5" stroke-opacity="0.25" />
|
|
10345
11427
|
<circle cx="6" cy="6" r="4.5" part="loading" pathlength="100" />
|
|
@@ -10347,20 +11429,20 @@ _dec38 = Component({
|
|
|
10347
11429
|
`;
|
|
10348
11430
|
}
|
|
10349
11431
|
});
|
|
10350
|
-
var Loading = class extends (
|
|
11432
|
+
var Loading = class extends (_HTMLElement16 = HTMLElement) {
|
|
10351
11433
|
static {
|
|
10352
|
-
({ c: [_Loading,
|
|
10353
|
-
|
|
10354
|
-
],
|
|
11434
|
+
({ c: [_Loading, _initClass16] } = _apply_decs_2203_r16(this, [], [
|
|
11435
|
+
_dec41
|
|
11436
|
+
], _HTMLElement16));
|
|
10355
11437
|
}
|
|
10356
11438
|
static {
|
|
10357
|
-
|
|
11439
|
+
_initClass16();
|
|
10358
11440
|
}
|
|
10359
11441
|
};
|
|
10360
11442
|
|
|
10361
|
-
// swc:/
|
|
10362
|
-
var
|
|
10363
|
-
function
|
|
11443
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/animation/snap.ts
|
|
11444
|
+
var import_lit_html19 = require("lit-html");
|
|
11445
|
+
function applyDecs2203RFactory17() {
|
|
10364
11446
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
10365
11447
|
return function addInitializer(initializer) {
|
|
10366
11448
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -10729,17 +11811,17 @@ function applyDecs2203RFactory15() {
|
|
|
10729
11811
|
};
|
|
10730
11812
|
};
|
|
10731
11813
|
}
|
|
10732
|
-
function
|
|
10733
|
-
return (
|
|
11814
|
+
function _apply_decs_2203_r17(targetClass, memberDecs, classDecs, parentClass) {
|
|
11815
|
+
return (_apply_decs_2203_r17 = applyDecs2203RFactory17())(targetClass, memberDecs, classDecs, parentClass);
|
|
10734
11816
|
}
|
|
10735
|
-
var
|
|
10736
|
-
var
|
|
10737
|
-
var
|
|
10738
|
-
var
|
|
10739
|
-
var
|
|
10740
|
-
var
|
|
11817
|
+
var _dec47;
|
|
11818
|
+
var _initClass17;
|
|
11819
|
+
var _HTMLElement17;
|
|
11820
|
+
var _dec117;
|
|
11821
|
+
var _init_state4;
|
|
11822
|
+
var _initProto13;
|
|
10741
11823
|
var _Snap;
|
|
10742
|
-
|
|
11824
|
+
_dec47 = Component({
|
|
10743
11825
|
tag: "ease-icon-snap",
|
|
10744
11826
|
styles: `
|
|
10745
11827
|
:host {
|
|
@@ -10826,22 +11908,22 @@ _dec39 = Component({
|
|
|
10826
11908
|
observedAttributes: [
|
|
10827
11909
|
"state"
|
|
10828
11910
|
]
|
|
10829
|
-
}),
|
|
11911
|
+
}), _dec117 = Prop({
|
|
10830
11912
|
reflect: true,
|
|
10831
11913
|
attribute: "state",
|
|
10832
11914
|
defaultValue: "default"
|
|
10833
11915
|
});
|
|
10834
|
-
var Snap = class extends (
|
|
11916
|
+
var Snap = class extends (_HTMLElement17 = HTMLElement) {
|
|
10835
11917
|
static {
|
|
10836
|
-
({ e: [
|
|
11918
|
+
({ e: [_init_state4, _initProto13], c: [_Snap, _initClass17] } = _apply_decs_2203_r17(this, [
|
|
10837
11919
|
[
|
|
10838
|
-
|
|
11920
|
+
_dec117,
|
|
10839
11921
|
1,
|
|
10840
11922
|
"state"
|
|
10841
11923
|
]
|
|
10842
11924
|
], [
|
|
10843
|
-
|
|
10844
|
-
],
|
|
11925
|
+
_dec47
|
|
11926
|
+
], _HTMLElement17));
|
|
10845
11927
|
}
|
|
10846
11928
|
#___private_state_1;
|
|
10847
11929
|
get state() {
|
|
@@ -10857,7 +11939,7 @@ var Snap = class extends (_HTMLElement15 = HTMLElement) {
|
|
|
10857
11939
|
const activePath2 = "M6.30855 7.08196C6.48218 6.9692 6.71426 7.01871 6.8271 7.19231C6.93984 7.36595 6.89035 7.59803 6.71675 7.71087C6.55769 7.8143 6.51399 7.8829 6.50288 7.9052C6.50718 7.91375 6.51671 7.92905 6.53804 7.95208C6.59186 8.01016 6.676 8.06871 6.76265 8.11614C6.80333 8.1384 6.83994 8.15555 6.86519 8.16692C6.87727 8.17236 6.88667 8.1762 6.89253 8.17864C6.89522 8.17976 6.89739 8.18117 6.89839 8.18157C6.92411 8.19492 6.94982 8.20826 6.97554 8.22161C7.34059 8.4726 7.44425 8.52362 7.48433 8.54387C7.51885 8.56133 7.56761 8.58533 7.62788 8.63665C7.66711 8.67009 7.71609 8.719 7.77827 8.78118C7.84064 8.84354 7.88955 8.89167 7.9228 8.93059C7.97354 8.98999 7.99693 9.03787 8.0146 9.07219C8.02503 9.09247 8.04365 9.12833 8.09077 9.20501C8.1741 9.33099 8.25744 9.45696 8.34077 9.58294C8.35477 9.60931 8.36876 9.63567 8.38276 9.66204C8.38276 9.66171 8.38276 9.66139 8.38276 9.66106C8.38311 9.66194 8.3836 9.6642 8.38472 9.66692C8.38713 9.67278 8.39182 9.68272 8.39741 9.69524C8.40866 9.72041 8.42527 9.75637 8.44722 9.7968C8.49432 9.88353 8.55171 9.96872 8.60933 10.0224C8.63022 10.0418 8.64563 10.0499 8.65425 10.0546C8.67716 10.0429 8.74616 9.99929 8.84858 9.84173C8.96155 9.66836 9.19361 9.61954 9.36714 9.73235C9.54063 9.84525 9.59026 10.0773 9.47749 10.2509C9.29202 10.5362 9.06335 10.7493 8.77534 10.7988C8.47563 10.8502 8.24137 10.7041 8.09858 10.5712C7.95494 10.4374 7.85125 10.2716 7.78804 10.1552C7.75497 10.0943 7.72938 10.0401 7.71187 10.0009C7.70702 9.99006 7.70284 9.98022 7.69917 9.97161C7.45448 9.61671 7.38641 9.49034 7.34761 9.41497C7.34662 9.41306 7.34544 9.41155 7.34468 9.41009C7.33244 9.39698 7.30693 9.37136 7.24702 9.31145C7.18316 9.24759 7.15849 9.22387 7.14644 9.21282C7.07033 9.17434 6.9431 9.10751 6.58589 8.86321C6.57737 8.85954 6.56726 8.85532 6.55659 8.85052C6.51749 8.83289 6.46383 8.80746 6.40327 8.77434C6.28687 8.71066 6.12089 8.60606 5.98726 8.46184C5.85457 8.31851 5.70938 8.0836 5.76069 7.78411C5.81025 7.49606 6.02305 7.26752 6.30855 7.08196C6.30855 7.08196 6.30855 7.08196 6.30855 7.08196Z";
|
|
10858
11940
|
const path1 = this.state === "active" ? activePath : defaultPath;
|
|
10859
11941
|
const path2 = this.state === "active" ? activePath2 : defaultPath2;
|
|
10860
|
-
return
|
|
11942
|
+
return import_lit_html19.html`
|
|
10861
11943
|
<svg part="snap" viewBox="0 0 12 12" state=${this.state} xmlns="http://www.w3.org/2000/svg">
|
|
10862
11944
|
<g part="cursor">
|
|
10863
11945
|
<path d=${path1} />
|
|
@@ -10883,16 +11965,16 @@ var Snap = class extends (_HTMLElement15 = HTMLElement) {
|
|
|
10883
11965
|
`;
|
|
10884
11966
|
}
|
|
10885
11967
|
static {
|
|
10886
|
-
|
|
11968
|
+
_initClass17();
|
|
10887
11969
|
}
|
|
10888
11970
|
constructor(...args) {
|
|
10889
|
-
super(...args), this.#___private_state_1 = (
|
|
11971
|
+
super(...args), this.#___private_state_1 = (_initProto13(this), _init_state4(this));
|
|
10890
11972
|
}
|
|
10891
11973
|
};
|
|
10892
11974
|
|
|
10893
|
-
// swc:/
|
|
10894
|
-
var
|
|
10895
|
-
function
|
|
11975
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-add.ts
|
|
11976
|
+
var import_lit_html20 = require("lit-html");
|
|
11977
|
+
function applyDecs2203RFactory18() {
|
|
10896
11978
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
10897
11979
|
return function addInitializer(initializer) {
|
|
10898
11980
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -11261,14 +12343,14 @@ function applyDecs2203RFactory16() {
|
|
|
11261
12343
|
};
|
|
11262
12344
|
};
|
|
11263
12345
|
}
|
|
11264
|
-
function
|
|
11265
|
-
return (
|
|
12346
|
+
function _apply_decs_2203_r18(targetClass, memberDecs, classDecs, parentClass) {
|
|
12347
|
+
return (_apply_decs_2203_r18 = applyDecs2203RFactory18())(targetClass, memberDecs, classDecs, parentClass);
|
|
11266
12348
|
}
|
|
11267
|
-
var
|
|
11268
|
-
var
|
|
11269
|
-
var
|
|
12349
|
+
var _dec48;
|
|
12350
|
+
var _initClass18;
|
|
12351
|
+
var _HTMLElement18;
|
|
11270
12352
|
var _IconAnchorAdd;
|
|
11271
|
-
|
|
12353
|
+
_dec48 = Component({
|
|
11272
12354
|
tag: "ease-icon-anchor-add",
|
|
11273
12355
|
styles: `
|
|
11274
12356
|
:host {
|
|
@@ -11283,7 +12365,7 @@ _dec40 = Component({
|
|
|
11283
12365
|
}
|
|
11284
12366
|
`,
|
|
11285
12367
|
template() {
|
|
11286
|
-
return
|
|
12368
|
+
return import_lit_html20.html`
|
|
11287
12369
|
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11288
12370
|
<path d="M2.70508 10.5003L5.30008 7.90527" />
|
|
11289
12371
|
<path d="M6.59557 6.61121C6.95348 6.96913 6.95348 7.54942 6.59557 7.90734C6.23765 8.26525 5.65736 8.26525 5.29944 7.90734C4.94153 7.54942 4.94153 6.96913 5.29944 6.61121C5.65736 6.25329 6.23765 6.25329 6.59557 6.61121" />
|
|
@@ -11295,20 +12377,20 @@ _dec40 = Component({
|
|
|
11295
12377
|
`;
|
|
11296
12378
|
}
|
|
11297
12379
|
});
|
|
11298
|
-
var IconAnchorAdd = class extends (
|
|
12380
|
+
var IconAnchorAdd = class extends (_HTMLElement18 = HTMLElement) {
|
|
11299
12381
|
static {
|
|
11300
|
-
({ c: [_IconAnchorAdd,
|
|
11301
|
-
|
|
11302
|
-
],
|
|
12382
|
+
({ c: [_IconAnchorAdd, _initClass18] } = _apply_decs_2203_r18(this, [], [
|
|
12383
|
+
_dec48
|
|
12384
|
+
], _HTMLElement18));
|
|
11303
12385
|
}
|
|
11304
12386
|
static {
|
|
11305
|
-
|
|
12387
|
+
_initClass18();
|
|
11306
12388
|
}
|
|
11307
12389
|
};
|
|
11308
12390
|
|
|
11309
|
-
// swc:/
|
|
11310
|
-
var
|
|
11311
|
-
function
|
|
12391
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/anchor-remove.ts
|
|
12392
|
+
var import_lit_html21 = require("lit-html");
|
|
12393
|
+
function applyDecs2203RFactory19() {
|
|
11312
12394
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
11313
12395
|
return function addInitializer(initializer) {
|
|
11314
12396
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -11677,14 +12759,14 @@ function applyDecs2203RFactory17() {
|
|
|
11677
12759
|
};
|
|
11678
12760
|
};
|
|
11679
12761
|
}
|
|
11680
|
-
function
|
|
11681
|
-
return (
|
|
12762
|
+
function _apply_decs_2203_r19(targetClass, memberDecs, classDecs, parentClass) {
|
|
12763
|
+
return (_apply_decs_2203_r19 = applyDecs2203RFactory19())(targetClass, memberDecs, classDecs, parentClass);
|
|
11682
12764
|
}
|
|
11683
|
-
var
|
|
11684
|
-
var
|
|
11685
|
-
var
|
|
12765
|
+
var _dec49;
|
|
12766
|
+
var _initClass19;
|
|
12767
|
+
var _HTMLElement19;
|
|
11686
12768
|
var _IconAnchorRemove;
|
|
11687
|
-
|
|
12769
|
+
_dec49 = Component({
|
|
11688
12770
|
tag: "ease-icon-anchor-remove",
|
|
11689
12771
|
styles: `
|
|
11690
12772
|
:host {
|
|
@@ -11699,7 +12781,7 @@ _dec41 = Component({
|
|
|
11699
12781
|
}
|
|
11700
12782
|
`,
|
|
11701
12783
|
template() {
|
|
11702
|
-
return
|
|
12784
|
+
return import_lit_html21.html`
|
|
11703
12785
|
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11704
12786
|
<path d="M2.70508 10.5003L5.30008 7.90527" />
|
|
11705
12787
|
<path d="M6.59557 6.61121C6.95348 6.96913 6.95348 7.54942 6.59557 7.90734C6.23765 8.26525 5.65736 8.26525 5.29944 7.90734C4.94153 7.54942 4.94153 6.96913 5.29944 6.61121C5.65736 6.25329 6.23765 6.25329 6.59557 6.61121" />
|
|
@@ -11710,20 +12792,20 @@ _dec41 = Component({
|
|
|
11710
12792
|
`;
|
|
11711
12793
|
}
|
|
11712
12794
|
});
|
|
11713
|
-
var IconAnchorRemove = class extends (
|
|
12795
|
+
var IconAnchorRemove = class extends (_HTMLElement19 = HTMLElement) {
|
|
11714
12796
|
static {
|
|
11715
|
-
({ c: [_IconAnchorRemove,
|
|
11716
|
-
|
|
11717
|
-
],
|
|
12797
|
+
({ c: [_IconAnchorRemove, _initClass19] } = _apply_decs_2203_r19(this, [], [
|
|
12798
|
+
_dec49
|
|
12799
|
+
], _HTMLElement19));
|
|
11718
12800
|
}
|
|
11719
12801
|
static {
|
|
11720
|
-
|
|
12802
|
+
_initClass19();
|
|
11721
12803
|
}
|
|
11722
12804
|
};
|
|
11723
12805
|
|
|
11724
|
-
// swc:/
|
|
11725
|
-
var
|
|
11726
|
-
function
|
|
12806
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/arrow-up.ts
|
|
12807
|
+
var import_lit_html22 = require("lit-html");
|
|
12808
|
+
function applyDecs2203RFactory20() {
|
|
11727
12809
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
11728
12810
|
return function addInitializer(initializer) {
|
|
11729
12811
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -12092,14 +13174,14 @@ function applyDecs2203RFactory18() {
|
|
|
12092
13174
|
};
|
|
12093
13175
|
};
|
|
12094
13176
|
}
|
|
12095
|
-
function
|
|
12096
|
-
return (
|
|
13177
|
+
function _apply_decs_2203_r20(targetClass, memberDecs, classDecs, parentClass) {
|
|
13178
|
+
return (_apply_decs_2203_r20 = applyDecs2203RFactory20())(targetClass, memberDecs, classDecs, parentClass);
|
|
12097
13179
|
}
|
|
12098
|
-
var
|
|
12099
|
-
var
|
|
12100
|
-
var
|
|
13180
|
+
var _dec50;
|
|
13181
|
+
var _initClass20;
|
|
13182
|
+
var _HTMLElement20;
|
|
12101
13183
|
var _ArrowUp;
|
|
12102
|
-
|
|
13184
|
+
_dec50 = Component({
|
|
12103
13185
|
tag: "ease-icon-arrow-up",
|
|
12104
13186
|
styles: `
|
|
12105
13187
|
:host {
|
|
@@ -12114,27 +13196,27 @@ _dec47 = Component({
|
|
|
12114
13196
|
}
|
|
12115
13197
|
`,
|
|
12116
13198
|
template() {
|
|
12117
|
-
return
|
|
13199
|
+
return import_lit_html22.html`
|
|
12118
13200
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
12119
13201
|
<path d="M6.99992 12.6666V3.33331M6.99992 3.33331L2.33325 7.99998M6.99992 3.33331L11.6666 7.99998" />
|
|
12120
13202
|
</svg>
|
|
12121
13203
|
`;
|
|
12122
13204
|
}
|
|
12123
13205
|
});
|
|
12124
|
-
var ArrowUp = class extends (
|
|
13206
|
+
var ArrowUp = class extends (_HTMLElement20 = HTMLElement) {
|
|
12125
13207
|
static {
|
|
12126
|
-
({ c: [_ArrowUp,
|
|
12127
|
-
|
|
12128
|
-
],
|
|
13208
|
+
({ c: [_ArrowUp, _initClass20] } = _apply_decs_2203_r20(this, [], [
|
|
13209
|
+
_dec50
|
|
13210
|
+
], _HTMLElement20));
|
|
12129
13211
|
}
|
|
12130
13212
|
static {
|
|
12131
|
-
|
|
13213
|
+
_initClass20();
|
|
12132
13214
|
}
|
|
12133
13215
|
};
|
|
12134
13216
|
|
|
12135
|
-
// swc:/
|
|
12136
|
-
var
|
|
12137
|
-
function
|
|
13217
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier.ts
|
|
13218
|
+
var import_lit_html23 = require("lit-html");
|
|
13219
|
+
function applyDecs2203RFactory21() {
|
|
12138
13220
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
12139
13221
|
return function addInitializer(initializer) {
|
|
12140
13222
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -12503,14 +13585,14 @@ function applyDecs2203RFactory19() {
|
|
|
12503
13585
|
};
|
|
12504
13586
|
};
|
|
12505
13587
|
}
|
|
12506
|
-
function
|
|
12507
|
-
return (
|
|
13588
|
+
function _apply_decs_2203_r21(targetClass, memberDecs, classDecs, parentClass) {
|
|
13589
|
+
return (_apply_decs_2203_r21 = applyDecs2203RFactory21())(targetClass, memberDecs, classDecs, parentClass);
|
|
12508
13590
|
}
|
|
12509
|
-
var
|
|
12510
|
-
var
|
|
12511
|
-
var
|
|
13591
|
+
var _dec51;
|
|
13592
|
+
var _initClass21;
|
|
13593
|
+
var _HTMLElement21;
|
|
12512
13594
|
var _IconBezier;
|
|
12513
|
-
|
|
13595
|
+
_dec51 = Component({
|
|
12514
13596
|
tag: "ease-icon-bezier",
|
|
12515
13597
|
styles: `
|
|
12516
13598
|
:host {
|
|
@@ -12521,27 +13603,27 @@ _dec48 = Component({
|
|
|
12521
13603
|
}
|
|
12522
13604
|
`,
|
|
12523
13605
|
template() {
|
|
12524
|
-
return
|
|
13606
|
+
return import_lit_html23.html`
|
|
12525
13607
|
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
12526
13608
|
<path d="M9.44279 8.84005C9.56156 9.00972 9.79538 9.05098 9.96505 8.93221C10.1347 8.81344 10.176 8.57962 10.0572 8.40995L9.75 8.625L9.44279 8.84005ZM1.94279 8.40995C1.82402 8.57962 1.86528 8.81344 2.03495 8.93221C2.20462 9.05098 2.43844 9.00972 2.55721 8.84005L2.25 8.625L1.94279 8.40995ZM7.21875 4.21875H6.84375C6.84375 4.68474 6.46599 5.0625 6 5.0625V5.4375V5.8125C6.8802 5.8125 7.59375 5.09895 7.59375 4.21875H7.21875ZM6 5.4375V5.0625C5.53401 5.0625 5.15625 4.68474 5.15625 4.21875H4.78125H4.40625C4.40625 5.09895 5.1198 5.8125 6 5.8125V5.4375ZM4.78125 4.21875H5.15625C5.15625 3.75276 5.53401 3.375 6 3.375V3V2.625C5.1198 2.625 4.40625 3.33855 4.40625 4.21875H4.78125ZM6 3V3.375C6.46599 3.375 6.84375 3.75276 6.84375 4.21875H7.21875H7.59375C7.59375 3.33855 6.8802 2.625 6 2.625V3ZM7.125 4.875L6.81779 5.09005L9.44279 8.84005L9.75 8.625L10.0572 8.40995L7.43221 4.65995L7.125 4.875ZM4.875 4.875L4.56779 4.65995L1.94279 8.40995L2.25 8.625L2.55721 8.84005L5.18221 5.09005L4.875 4.875Z" />
|
|
12527
13609
|
</svg>
|
|
12528
13610
|
`;
|
|
12529
13611
|
}
|
|
12530
13612
|
});
|
|
12531
|
-
var IconBezier = class extends (
|
|
13613
|
+
var IconBezier = class extends (_HTMLElement21 = HTMLElement) {
|
|
12532
13614
|
static {
|
|
12533
|
-
({ c: [_IconBezier,
|
|
12534
|
-
|
|
12535
|
-
],
|
|
13615
|
+
({ c: [_IconBezier, _initClass21] } = _apply_decs_2203_r21(this, [], [
|
|
13616
|
+
_dec51
|
|
13617
|
+
], _HTMLElement21));
|
|
12536
13618
|
}
|
|
12537
13619
|
static {
|
|
12538
|
-
|
|
13620
|
+
_initClass21();
|
|
12539
13621
|
}
|
|
12540
13622
|
};
|
|
12541
13623
|
|
|
12542
|
-
// swc:/
|
|
12543
|
-
var
|
|
12544
|
-
function
|
|
13624
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-angle.ts
|
|
13625
|
+
var import_lit_html24 = require("lit-html");
|
|
13626
|
+
function applyDecs2203RFactory22() {
|
|
12545
13627
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
12546
13628
|
return function addInitializer(initializer) {
|
|
12547
13629
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -12910,14 +13992,14 @@ function applyDecs2203RFactory20() {
|
|
|
12910
13992
|
};
|
|
12911
13993
|
};
|
|
12912
13994
|
}
|
|
12913
|
-
function
|
|
12914
|
-
return (
|
|
13995
|
+
function _apply_decs_2203_r22(targetClass, memberDecs, classDecs, parentClass) {
|
|
13996
|
+
return (_apply_decs_2203_r22 = applyDecs2203RFactory22())(targetClass, memberDecs, classDecs, parentClass);
|
|
12915
13997
|
}
|
|
12916
|
-
var
|
|
12917
|
-
var
|
|
12918
|
-
var
|
|
13998
|
+
var _dec55;
|
|
13999
|
+
var _initClass22;
|
|
14000
|
+
var _HTMLElement22;
|
|
12919
14001
|
var _IconBezierAngle;
|
|
12920
|
-
|
|
14002
|
+
_dec55 = Component({
|
|
12921
14003
|
tag: "ease-icon-bezier-angle",
|
|
12922
14004
|
styles: `
|
|
12923
14005
|
:host {
|
|
@@ -12928,7 +14010,7 @@ _dec49 = Component({
|
|
|
12928
14010
|
}
|
|
12929
14011
|
`,
|
|
12930
14012
|
template() {
|
|
12931
|
-
return
|
|
14013
|
+
return import_lit_html24.html`
|
|
12932
14014
|
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
12933
14015
|
<path d="M1.875 4.21875C1.875 4.63296 1.53921 4.96875 1.125 4.96875C0.710786 4.96875 0.375 4.63296 0.375 4.21875C0.375 3.80454 0.710786 3.46875 1.125 3.46875C1.53921 3.46875 1.875 3.80454 1.875 4.21875Z" fill-opacity="0.9"/>
|
|
12934
14016
|
<path d="M1.64062 4.21875C1.64062 3.93398 1.40977 3.70312 1.125 3.70312C0.840228 3.70312 0.609375 3.93398 0.609375 4.21875C0.609375 4.50352 0.840228 4.73438 1.125 4.73438C1.40977 4.73438 1.64062 4.50352 1.64062 4.21875ZM2.10938 4.21875C2.10938 4.76241 1.66866 5.20312 1.125 5.20312C0.581345 5.20312 0.140625 4.76241 0.140625 4.21875C0.140625 3.67509 0.581345 3.23438 1.125 3.23438C1.66866 3.23438 2.10938 3.67509 2.10938 4.21875Z" />
|
|
@@ -12942,20 +14024,20 @@ _dec49 = Component({
|
|
|
12942
14024
|
`;
|
|
12943
14025
|
}
|
|
12944
14026
|
});
|
|
12945
|
-
var IconBezierAngle = class extends (
|
|
14027
|
+
var IconBezierAngle = class extends (_HTMLElement22 = HTMLElement) {
|
|
12946
14028
|
static {
|
|
12947
|
-
({ c: [_IconBezierAngle,
|
|
12948
|
-
|
|
12949
|
-
],
|
|
14029
|
+
({ c: [_IconBezierAngle, _initClass22] } = _apply_decs_2203_r22(this, [], [
|
|
14030
|
+
_dec55
|
|
14031
|
+
], _HTMLElement22));
|
|
12950
14032
|
}
|
|
12951
14033
|
static {
|
|
12952
|
-
|
|
14034
|
+
_initClass22();
|
|
12953
14035
|
}
|
|
12954
14036
|
};
|
|
12955
14037
|
|
|
12956
|
-
// swc:/
|
|
12957
|
-
var
|
|
12958
|
-
function
|
|
14038
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-distribute.ts
|
|
14039
|
+
var import_lit_html25 = require("lit-html");
|
|
14040
|
+
function applyDecs2203RFactory23() {
|
|
12959
14041
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
12960
14042
|
return function addInitializer(initializer) {
|
|
12961
14043
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -13324,14 +14406,14 @@ function applyDecs2203RFactory21() {
|
|
|
13324
14406
|
};
|
|
13325
14407
|
};
|
|
13326
14408
|
}
|
|
13327
|
-
function
|
|
13328
|
-
return (
|
|
13329
|
-
}
|
|
13330
|
-
var
|
|
13331
|
-
var
|
|
13332
|
-
var
|
|
14409
|
+
function _apply_decs_2203_r23(targetClass, memberDecs, classDecs, parentClass) {
|
|
14410
|
+
return (_apply_decs_2203_r23 = applyDecs2203RFactory23())(targetClass, memberDecs, classDecs, parentClass);
|
|
14411
|
+
}
|
|
14412
|
+
var _dec56;
|
|
14413
|
+
var _initClass23;
|
|
14414
|
+
var _HTMLElement23;
|
|
13333
14415
|
var _IconBezierDistribute;
|
|
13334
|
-
|
|
14416
|
+
_dec56 = Component({
|
|
13335
14417
|
tag: "ease-icon-bezier-distribute",
|
|
13336
14418
|
styles: `
|
|
13337
14419
|
:host {
|
|
@@ -13342,7 +14424,7 @@ _dec50 = Component({
|
|
|
13342
14424
|
}
|
|
13343
14425
|
`,
|
|
13344
14426
|
template() {
|
|
13345
|
-
return
|
|
14427
|
+
return import_lit_html25.html`
|
|
13346
14428
|
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
13347
14429
|
<path d="M5.125 5.64502C5.33211 5.64502 5.5 5.81291 5.5 6.02002C5.5 6.22713 5.33211 6.39502 5.125 6.39502H2.5C2.29289 6.39502 2.125 6.22713 2.125 6.02002C2.125 5.81291 2.29289 5.64502 2.5 5.64502H5.125Z" />
|
|
13348
14430
|
<path d="M2.125 6.02002C2.125 5.81313 1.95689 5.64502 1.75 5.64502C1.54311 5.64502 1.375 5.81313 1.375 6.02002C1.375 6.22691 1.54311 6.39502 1.75 6.39502C1.95689 6.39502 2.125 6.22691 2.125 6.02002ZM2.875 6.02002C2.875 6.64113 2.37111 7.14502 1.75 7.14502C1.12889 7.14502 0.625 6.64113 0.625 6.02002C0.625 5.39891 1.12889 4.89502 1.75 4.89502C2.37111 4.89502 2.875 5.39891 2.875 6.02002Z" />
|
|
@@ -13357,20 +14439,20 @@ _dec50 = Component({
|
|
|
13357
14439
|
`;
|
|
13358
14440
|
}
|
|
13359
14441
|
});
|
|
13360
|
-
var IconBezierDistribute = class extends (
|
|
14442
|
+
var IconBezierDistribute = class extends (_HTMLElement23 = HTMLElement) {
|
|
13361
14443
|
static {
|
|
13362
|
-
({ c: [_IconBezierDistribute,
|
|
13363
|
-
|
|
13364
|
-
],
|
|
14444
|
+
({ c: [_IconBezierDistribute, _initClass23] } = _apply_decs_2203_r23(this, [], [
|
|
14445
|
+
_dec56
|
|
14446
|
+
], _HTMLElement23));
|
|
13365
14447
|
}
|
|
13366
14448
|
static {
|
|
13367
|
-
|
|
14449
|
+
_initClass23();
|
|
13368
14450
|
}
|
|
13369
14451
|
};
|
|
13370
14452
|
|
|
13371
|
-
// swc:/
|
|
13372
|
-
var
|
|
13373
|
-
function
|
|
14453
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-length.ts
|
|
14454
|
+
var import_lit_html26 = require("lit-html");
|
|
14455
|
+
function applyDecs2203RFactory24() {
|
|
13374
14456
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
13375
14457
|
return function addInitializer(initializer) {
|
|
13376
14458
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -13739,14 +14821,14 @@ function applyDecs2203RFactory22() {
|
|
|
13739
14821
|
};
|
|
13740
14822
|
};
|
|
13741
14823
|
}
|
|
13742
|
-
function
|
|
13743
|
-
return (
|
|
14824
|
+
function _apply_decs_2203_r24(targetClass, memberDecs, classDecs, parentClass) {
|
|
14825
|
+
return (_apply_decs_2203_r24 = applyDecs2203RFactory24())(targetClass, memberDecs, classDecs, parentClass);
|
|
13744
14826
|
}
|
|
13745
|
-
var
|
|
13746
|
-
var
|
|
13747
|
-
var
|
|
14827
|
+
var _dec57;
|
|
14828
|
+
var _initClass24;
|
|
14829
|
+
var _HTMLElement24;
|
|
13748
14830
|
var _IconBezierLength;
|
|
13749
|
-
|
|
14831
|
+
_dec57 = Component({
|
|
13750
14832
|
tag: "ease-icon-bezier-length",
|
|
13751
14833
|
styles: `
|
|
13752
14834
|
:host {
|
|
@@ -13757,7 +14839,7 @@ _dec51 = Component({
|
|
|
13757
14839
|
}
|
|
13758
14840
|
`,
|
|
13759
14841
|
template() {
|
|
13760
|
-
return
|
|
14842
|
+
return import_lit_html26.html`
|
|
13761
14843
|
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
13762
14844
|
<path d="M6.84375 4.21875C6.84375 3.75276 6.46599 3.375 6 3.375C5.53401 3.375 5.15625 3.75276 5.15625 4.21875C5.15625 4.68474 5.53401 5.0625 6 5.0625C6.46599 5.0625 6.84375 4.68474 6.84375 4.21875ZM7.59375 4.21875C7.59375 5.09895 6.8802 5.8125 6 5.8125C5.1198 5.8125 4.40625 5.09895 4.40625 4.21875C4.40625 3.33855 5.1198 2.625 6 2.625C6.8802 2.625 7.59375 3.33855 7.59375 4.21875Z" />
|
|
13763
14845
|
<path d="M2.48438 4.21875C2.48438 4.76241 2.04366 5.20312 1.5 5.20312C0.956345 5.20312 0.515625 4.76241 0.515625 4.21875C0.515625 3.67509 0.956345 3.23438 1.5 3.23438C2.04366 3.23438 2.48438 3.67509 2.48438 4.21875Z" />
|
|
@@ -13769,20 +14851,20 @@ _dec51 = Component({
|
|
|
13769
14851
|
`;
|
|
13770
14852
|
}
|
|
13771
14853
|
});
|
|
13772
|
-
var IconBezierLength = class extends (
|
|
14854
|
+
var IconBezierLength = class extends (_HTMLElement24 = HTMLElement) {
|
|
13773
14855
|
static {
|
|
13774
|
-
({ c: [_IconBezierLength,
|
|
13775
|
-
|
|
13776
|
-
],
|
|
14856
|
+
({ c: [_IconBezierLength, _initClass24] } = _apply_decs_2203_r24(this, [], [
|
|
14857
|
+
_dec57
|
|
14858
|
+
], _HTMLElement24));
|
|
13777
14859
|
}
|
|
13778
14860
|
static {
|
|
13779
|
-
|
|
14861
|
+
_initClass24();
|
|
13780
14862
|
}
|
|
13781
14863
|
};
|
|
13782
14864
|
|
|
13783
|
-
// swc:/
|
|
13784
|
-
var
|
|
13785
|
-
function
|
|
14865
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/bezier-mirror.ts
|
|
14866
|
+
var import_lit_html27 = require("lit-html");
|
|
14867
|
+
function applyDecs2203RFactory25() {
|
|
13786
14868
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
13787
14869
|
return function addInitializer(initializer) {
|
|
13788
14870
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -14151,14 +15233,14 @@ function applyDecs2203RFactory23() {
|
|
|
14151
15233
|
};
|
|
14152
15234
|
};
|
|
14153
15235
|
}
|
|
14154
|
-
function
|
|
14155
|
-
return (
|
|
15236
|
+
function _apply_decs_2203_r25(targetClass, memberDecs, classDecs, parentClass) {
|
|
15237
|
+
return (_apply_decs_2203_r25 = applyDecs2203RFactory25())(targetClass, memberDecs, classDecs, parentClass);
|
|
14156
15238
|
}
|
|
14157
|
-
var
|
|
14158
|
-
var
|
|
14159
|
-
var
|
|
15239
|
+
var _dec58;
|
|
15240
|
+
var _initClass25;
|
|
15241
|
+
var _HTMLElement25;
|
|
14160
15242
|
var _IconBezierMirror;
|
|
14161
|
-
|
|
15243
|
+
_dec58 = Component({
|
|
14162
15244
|
tag: "ease-icon-bezier-mirror",
|
|
14163
15245
|
styles: `
|
|
14164
15246
|
:host {
|
|
@@ -14169,7 +15251,7 @@ _dec55 = Component({
|
|
|
14169
15251
|
}
|
|
14170
15252
|
`,
|
|
14171
15253
|
template() {
|
|
14172
|
-
return
|
|
15254
|
+
return import_lit_html27.html`
|
|
14173
15255
|
<svg viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">
|
|
14174
15256
|
<path d="M6.84375 4.21875C6.84375 3.75276 6.46599 3.375 6 3.375C5.53401 3.375 5.15625 3.75276 5.15625 4.21875C5.15625 4.68474 5.53401 5.0625 6 5.0625C6.46599 5.0625 6.84375 4.68474 6.84375 4.21875ZM7.59375 4.21875C7.59375 5.09895 6.8802 5.8125 6 5.8125C5.1198 5.8125 4.40625 5.09895 4.40625 4.21875C4.40625 3.33855 5.1198 2.625 6 2.625C6.8802 2.625 7.59375 3.33855 7.59375 4.21875Z" />
|
|
14175
15257
|
<path d="M2.48438 4.21875C2.48438 4.76241 2.04366 5.20312 1.5 5.20312C0.956345 5.20312 0.515625 4.76241 0.515625 4.21875C0.515625 3.67509 0.956345 3.23438 1.5 3.23438C2.04366 3.23438 2.48438 3.67509 2.48438 4.21875Z" />
|
|
@@ -14181,20 +15263,20 @@ _dec55 = Component({
|
|
|
14181
15263
|
`;
|
|
14182
15264
|
}
|
|
14183
15265
|
});
|
|
14184
|
-
var IconBezierMirror = class extends (
|
|
15266
|
+
var IconBezierMirror = class extends (_HTMLElement25 = HTMLElement) {
|
|
14185
15267
|
static {
|
|
14186
|
-
({ c: [_IconBezierMirror,
|
|
14187
|
-
|
|
14188
|
-
],
|
|
15268
|
+
({ c: [_IconBezierMirror, _initClass25] } = _apply_decs_2203_r25(this, [], [
|
|
15269
|
+
_dec58
|
|
15270
|
+
], _HTMLElement25));
|
|
14189
15271
|
}
|
|
14190
15272
|
static {
|
|
14191
|
-
|
|
15273
|
+
_initClass25();
|
|
14192
15274
|
}
|
|
14193
15275
|
};
|
|
14194
15276
|
|
|
14195
|
-
// swc:/
|
|
14196
|
-
var
|
|
14197
|
-
function
|
|
15277
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/check.ts
|
|
15278
|
+
var import_lit_html28 = require("lit-html");
|
|
15279
|
+
function applyDecs2203RFactory26() {
|
|
14198
15280
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
14199
15281
|
return function addInitializer(initializer) {
|
|
14200
15282
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -14563,14 +15645,14 @@ function applyDecs2203RFactory24() {
|
|
|
14563
15645
|
};
|
|
14564
15646
|
};
|
|
14565
15647
|
}
|
|
14566
|
-
function
|
|
14567
|
-
return (
|
|
15648
|
+
function _apply_decs_2203_r26(targetClass, memberDecs, classDecs, parentClass) {
|
|
15649
|
+
return (_apply_decs_2203_r26 = applyDecs2203RFactory26())(targetClass, memberDecs, classDecs, parentClass);
|
|
14568
15650
|
}
|
|
14569
|
-
var
|
|
14570
|
-
var
|
|
14571
|
-
var
|
|
15651
|
+
var _dec59;
|
|
15652
|
+
var _initClass26;
|
|
15653
|
+
var _HTMLElement26;
|
|
14572
15654
|
var _IconCheck;
|
|
14573
|
-
|
|
15655
|
+
_dec59 = Component({
|
|
14574
15656
|
tag: "ease-icon-check",
|
|
14575
15657
|
styles: `
|
|
14576
15658
|
:host {
|
|
@@ -14585,27 +15667,27 @@ _dec56 = Component({
|
|
|
14585
15667
|
}
|
|
14586
15668
|
`,
|
|
14587
15669
|
template() {
|
|
14588
|
-
return
|
|
15670
|
+
return import_lit_html28.html`
|
|
14589
15671
|
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
14590
15672
|
<path d="M3 6.5L5.33333 9L10 4" path-length="100" />
|
|
14591
15673
|
</svg>
|
|
14592
15674
|
`;
|
|
14593
15675
|
}
|
|
14594
15676
|
});
|
|
14595
|
-
var IconCheck = class extends (
|
|
15677
|
+
var IconCheck = class extends (_HTMLElement26 = HTMLElement) {
|
|
14596
15678
|
static {
|
|
14597
|
-
({ c: [_IconCheck,
|
|
14598
|
-
|
|
14599
|
-
],
|
|
15679
|
+
({ c: [_IconCheck, _initClass26] } = _apply_decs_2203_r26(this, [], [
|
|
15680
|
+
_dec59
|
|
15681
|
+
], _HTMLElement26));
|
|
14600
15682
|
}
|
|
14601
15683
|
static {
|
|
14602
|
-
|
|
15684
|
+
_initClass26();
|
|
14603
15685
|
}
|
|
14604
15686
|
};
|
|
14605
15687
|
|
|
14606
|
-
// swc:/
|
|
14607
|
-
var
|
|
14608
|
-
function
|
|
15688
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-left.ts
|
|
15689
|
+
var import_lit_html29 = require("lit-html");
|
|
15690
|
+
function applyDecs2203RFactory27() {
|
|
14609
15691
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
14610
15692
|
return function addInitializer(initializer) {
|
|
14611
15693
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -14974,14 +16056,14 @@ function applyDecs2203RFactory25() {
|
|
|
14974
16056
|
};
|
|
14975
16057
|
};
|
|
14976
16058
|
}
|
|
14977
|
-
function
|
|
14978
|
-
return (
|
|
16059
|
+
function _apply_decs_2203_r27(targetClass, memberDecs, classDecs, parentClass) {
|
|
16060
|
+
return (_apply_decs_2203_r27 = applyDecs2203RFactory27())(targetClass, memberDecs, classDecs, parentClass);
|
|
14979
16061
|
}
|
|
14980
|
-
var
|
|
14981
|
-
var
|
|
14982
|
-
var
|
|
16062
|
+
var _dec60;
|
|
16063
|
+
var _initClass27;
|
|
16064
|
+
var _HTMLElement27;
|
|
14983
16065
|
var _IconCircleArrowLeft;
|
|
14984
|
-
|
|
16066
|
+
_dec60 = Component({
|
|
14985
16067
|
tag: "ease-icon-circle-arrow-left",
|
|
14986
16068
|
styles: `
|
|
14987
16069
|
:host {
|
|
@@ -14996,27 +16078,27 @@ _dec57 = Component({
|
|
|
14996
16078
|
}
|
|
14997
16079
|
`,
|
|
14998
16080
|
template() {
|
|
14999
|
-
return
|
|
16081
|
+
return import_lit_html29.html`
|
|
15000
16082
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
15001
16083
|
<path d="M14.6667 6.66667C14.6667 6.66667 13.33 4.84548 12.2441 3.75883C11.1582 2.67218 9.6576 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14C10.7354 14 13.0433 12.1695 13.7655 9.66667M14.6667 6.66667V2.66667M14.6667 6.66667H10.6667" />
|
|
15002
16084
|
</svg>
|
|
15003
16085
|
`;
|
|
15004
16086
|
}
|
|
15005
16087
|
});
|
|
15006
|
-
var IconCircleArrowLeft = class extends (
|
|
16088
|
+
var IconCircleArrowLeft = class extends (_HTMLElement27 = HTMLElement) {
|
|
15007
16089
|
static {
|
|
15008
|
-
({ c: [_IconCircleArrowLeft,
|
|
15009
|
-
|
|
15010
|
-
],
|
|
16090
|
+
({ c: [_IconCircleArrowLeft, _initClass27] } = _apply_decs_2203_r27(this, [], [
|
|
16091
|
+
_dec60
|
|
16092
|
+
], _HTMLElement27));
|
|
15011
16093
|
}
|
|
15012
16094
|
static {
|
|
15013
|
-
|
|
16095
|
+
_initClass27();
|
|
15014
16096
|
}
|
|
15015
16097
|
};
|
|
15016
16098
|
|
|
15017
|
-
// swc:/
|
|
15018
|
-
var
|
|
15019
|
-
function
|
|
16099
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/circle-arrow-right.ts
|
|
16100
|
+
var import_lit_html30 = require("lit-html");
|
|
16101
|
+
function applyDecs2203RFactory28() {
|
|
15020
16102
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
15021
16103
|
return function addInitializer(initializer) {
|
|
15022
16104
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -15385,14 +16467,14 @@ function applyDecs2203RFactory26() {
|
|
|
15385
16467
|
};
|
|
15386
16468
|
};
|
|
15387
16469
|
}
|
|
15388
|
-
function
|
|
15389
|
-
return (
|
|
16470
|
+
function _apply_decs_2203_r28(targetClass, memberDecs, classDecs, parentClass) {
|
|
16471
|
+
return (_apply_decs_2203_r28 = applyDecs2203RFactory28())(targetClass, memberDecs, classDecs, parentClass);
|
|
15390
16472
|
}
|
|
15391
|
-
var
|
|
15392
|
-
var
|
|
15393
|
-
var
|
|
16473
|
+
var _dec61;
|
|
16474
|
+
var _initClass28;
|
|
16475
|
+
var _HTMLElement28;
|
|
15394
16476
|
var _IconCircleArrowRight;
|
|
15395
|
-
|
|
16477
|
+
_dec61 = Component({
|
|
15396
16478
|
tag: "ease-icon-circle-arrow-right",
|
|
15397
16479
|
styles: `
|
|
15398
16480
|
:host {
|
|
@@ -15407,27 +16489,27 @@ _dec58 = Component({
|
|
|
15407
16489
|
}
|
|
15408
16490
|
`,
|
|
15409
16491
|
template() {
|
|
15410
|
-
return
|
|
16492
|
+
return import_lit_html30.html`
|
|
15411
16493
|
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
|
15412
16494
|
<path d="M1.33333 6.66667C1.33333 6.66667 2.66999 4.84548 3.75589 3.75883C4.84179 2.67218 6.3424 2 8 2C11.3137 2 14 4.68629 14 8C14 11.3137 11.3137 14 8 14C5.2646 14 2.95674 12.1695 2.23451 9.66667M1.33333 6.66667V2.66667M1.33333 6.66667H5.33333" />
|
|
15413
16495
|
</svg>
|
|
15414
16496
|
`;
|
|
15415
16497
|
}
|
|
15416
16498
|
});
|
|
15417
|
-
var IconCircleArrowRight = class extends (
|
|
16499
|
+
var IconCircleArrowRight = class extends (_HTMLElement28 = HTMLElement) {
|
|
15418
16500
|
static {
|
|
15419
|
-
({ c: [_IconCircleArrowRight,
|
|
15420
|
-
|
|
15421
|
-
],
|
|
16501
|
+
({ c: [_IconCircleArrowRight, _initClass28] } = _apply_decs_2203_r28(this, [], [
|
|
16502
|
+
_dec61
|
|
16503
|
+
], _HTMLElement28));
|
|
15422
16504
|
}
|
|
15423
16505
|
static {
|
|
15424
|
-
|
|
16506
|
+
_initClass28();
|
|
15425
16507
|
}
|
|
15426
16508
|
};
|
|
15427
16509
|
|
|
15428
|
-
// swc:/
|
|
15429
|
-
var
|
|
15430
|
-
function
|
|
16510
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/code.ts
|
|
16511
|
+
var import_lit_html31 = require("lit-html");
|
|
16512
|
+
function applyDecs2203RFactory29() {
|
|
15431
16513
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
15432
16514
|
return function addInitializer(initializer) {
|
|
15433
16515
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -15796,14 +16878,14 @@ function applyDecs2203RFactory27() {
|
|
|
15796
16878
|
};
|
|
15797
16879
|
};
|
|
15798
16880
|
}
|
|
15799
|
-
function
|
|
15800
|
-
return (
|
|
16881
|
+
function _apply_decs_2203_r29(targetClass, memberDecs, classDecs, parentClass) {
|
|
16882
|
+
return (_apply_decs_2203_r29 = applyDecs2203RFactory29())(targetClass, memberDecs, classDecs, parentClass);
|
|
15801
16883
|
}
|
|
15802
|
-
var
|
|
15803
|
-
var
|
|
15804
|
-
var
|
|
16884
|
+
var _dec65;
|
|
16885
|
+
var _initClass29;
|
|
16886
|
+
var _HTMLElement29;
|
|
15805
16887
|
var _IconCode;
|
|
15806
|
-
|
|
16888
|
+
_dec65 = Component({
|
|
15807
16889
|
tag: "ease-icon-code",
|
|
15808
16890
|
styles: `
|
|
15809
16891
|
:host {
|
|
@@ -15818,27 +16900,27 @@ _dec59 = Component({
|
|
|
15818
16900
|
}
|
|
15819
16901
|
`,
|
|
15820
16902
|
template() {
|
|
15821
|
-
return
|
|
16903
|
+
return import_lit_html31.html`
|
|
15822
16904
|
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
15823
16905
|
<path d="M8 9L11 6L8 3M4 3L1 6L4 9" />
|
|
15824
16906
|
</svg>
|
|
15825
16907
|
`;
|
|
15826
16908
|
}
|
|
15827
16909
|
});
|
|
15828
|
-
var IconCode = class extends (
|
|
16910
|
+
var IconCode = class extends (_HTMLElement29 = HTMLElement) {
|
|
15829
16911
|
static {
|
|
15830
|
-
({ c: [_IconCode,
|
|
15831
|
-
|
|
15832
|
-
],
|
|
16912
|
+
({ c: [_IconCode, _initClass29] } = _apply_decs_2203_r29(this, [], [
|
|
16913
|
+
_dec65
|
|
16914
|
+
], _HTMLElement29));
|
|
15833
16915
|
}
|
|
15834
16916
|
static {
|
|
15835
|
-
|
|
16917
|
+
_initClass29();
|
|
15836
16918
|
}
|
|
15837
16919
|
};
|
|
15838
16920
|
|
|
15839
|
-
// swc:/
|
|
15840
|
-
var
|
|
15841
|
-
function
|
|
16921
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/dots.ts
|
|
16922
|
+
var import_lit_html32 = require("lit-html");
|
|
16923
|
+
function applyDecs2203RFactory30() {
|
|
15842
16924
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
15843
16925
|
return function addInitializer(initializer) {
|
|
15844
16926
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -16207,14 +17289,14 @@ function applyDecs2203RFactory28() {
|
|
|
16207
17289
|
};
|
|
16208
17290
|
};
|
|
16209
17291
|
}
|
|
16210
|
-
function
|
|
16211
|
-
return (
|
|
17292
|
+
function _apply_decs_2203_r30(targetClass, memberDecs, classDecs, parentClass) {
|
|
17293
|
+
return (_apply_decs_2203_r30 = applyDecs2203RFactory30())(targetClass, memberDecs, classDecs, parentClass);
|
|
16212
17294
|
}
|
|
16213
|
-
var
|
|
16214
|
-
var
|
|
16215
|
-
var
|
|
17295
|
+
var _dec66;
|
|
17296
|
+
var _initClass30;
|
|
17297
|
+
var _HTMLElement30;
|
|
16216
17298
|
var _IconDots;
|
|
16217
|
-
|
|
17299
|
+
_dec66 = Component({
|
|
16218
17300
|
tag: "ease-icon-dots",
|
|
16219
17301
|
styles: `
|
|
16220
17302
|
:host {
|
|
@@ -16229,7 +17311,7 @@ _dec60 = Component({
|
|
|
16229
17311
|
}
|
|
16230
17312
|
`,
|
|
16231
17313
|
template() {
|
|
16232
|
-
return
|
|
17314
|
+
return import_lit_html32.html`
|
|
16233
17315
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
16234
17316
|
<path d="M8.00008 8.66655C8.36827 8.66655 8.66675 8.36808 8.66675 7.99989C8.66675 7.6317 8.36827 7.33322 8.00008 7.33322C7.63189 7.33322 7.33341 7.6317 7.33341 7.99989C7.33341 8.36808 7.63189 8.66655 8.00008 8.66655Z" />
|
|
16235
17317
|
<path d="M12.6667 8.66655C13.0349 8.66655 13.3334 8.36808 13.3334 7.99989C13.3334 7.6317 13.0349 7.33322 12.6667 7.33322C12.2986 7.33322 12.0001 7.6317 12.0001 7.99989C12.0001 8.36808 12.2986 8.66655 12.6667 8.66655Z" />
|
|
@@ -16238,20 +17320,20 @@ _dec60 = Component({
|
|
|
16238
17320
|
`;
|
|
16239
17321
|
}
|
|
16240
17322
|
});
|
|
16241
|
-
var IconDots = class extends (
|
|
17323
|
+
var IconDots = class extends (_HTMLElement30 = HTMLElement) {
|
|
16242
17324
|
static {
|
|
16243
|
-
({ c: [_IconDots,
|
|
16244
|
-
|
|
16245
|
-
],
|
|
17325
|
+
({ c: [_IconDots, _initClass30] } = _apply_decs_2203_r30(this, [], [
|
|
17326
|
+
_dec66
|
|
17327
|
+
], _HTMLElement30));
|
|
16246
17328
|
}
|
|
16247
17329
|
static {
|
|
16248
|
-
|
|
17330
|
+
_initClass30();
|
|
16249
17331
|
}
|
|
16250
17332
|
};
|
|
16251
17333
|
|
|
16252
|
-
// swc:/
|
|
16253
|
-
var
|
|
16254
|
-
function
|
|
17334
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/mention.ts
|
|
17335
|
+
var import_lit_html33 = require("lit-html");
|
|
17336
|
+
function applyDecs2203RFactory31() {
|
|
16255
17337
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
16256
17338
|
return function addInitializer(initializer) {
|
|
16257
17339
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -16620,14 +17702,14 @@ function applyDecs2203RFactory29() {
|
|
|
16620
17702
|
};
|
|
16621
17703
|
};
|
|
16622
17704
|
}
|
|
16623
|
-
function
|
|
16624
|
-
return (
|
|
17705
|
+
function _apply_decs_2203_r31(targetClass, memberDecs, classDecs, parentClass) {
|
|
17706
|
+
return (_apply_decs_2203_r31 = applyDecs2203RFactory31())(targetClass, memberDecs, classDecs, parentClass);
|
|
16625
17707
|
}
|
|
16626
|
-
var
|
|
16627
|
-
var
|
|
16628
|
-
var
|
|
17708
|
+
var _dec67;
|
|
17709
|
+
var _initClass31;
|
|
17710
|
+
var _HTMLElement31;
|
|
16629
17711
|
var _IconMention;
|
|
16630
|
-
|
|
17712
|
+
_dec67 = Component({
|
|
16631
17713
|
tag: "ease-icon-mention",
|
|
16632
17714
|
styles: `
|
|
16633
17715
|
:host {
|
|
@@ -16642,27 +17724,27 @@ _dec61 = Component({
|
|
|
16642
17724
|
}
|
|
16643
17725
|
`,
|
|
16644
17726
|
template() {
|
|
16645
|
-
return
|
|
17727
|
+
return import_lit_html33.html`
|
|
16646
17728
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
16647
17729
|
<path d="M10.4 5.59963V8.59962C10.4 9.07701 10.5896 9.53485 10.9272 9.87242C11.2648 10.21 11.7226 10.3996 12.2 10.3996C12.6774 10.3996 13.1352 10.21 13.4728 9.87242C13.8104 9.53485 14 9.07701 14 8.59962V7.99962C13.9999 6.64544 13.5417 5.33111 12.7 4.27035C11.8582 3.20958 10.6823 2.46476 9.36359 2.15701C8.04484 1.84925 6.66076 1.99665 5.43641 2.57525C4.21206 3.15384 3.21944 4.1296 2.61996 5.34386C2.02048 6.55812 1.84939 7.93947 2.13451 9.26329C2.41963 10.5871 3.14419 11.7756 4.19038 12.6354C5.23657 13.4952 6.54286 13.9758 7.89684 13.9991C9.25083 14.0224 10.5729 13.587 11.648 12.7636M10.4 7.99962C10.4 9.32511 9.32549 10.3996 8 10.3996C6.67452 10.3996 5.6 9.32511 5.6 7.99962C5.6 6.67414 6.67452 5.59963 8 5.59963C9.32549 5.59963 10.4 6.67414 10.4 7.99962Z" />
|
|
16648
17730
|
</svg>
|
|
16649
17731
|
`;
|
|
16650
17732
|
}
|
|
16651
17733
|
});
|
|
16652
|
-
var IconMention = class extends (
|
|
17734
|
+
var IconMention = class extends (_HTMLElement31 = HTMLElement) {
|
|
16653
17735
|
static {
|
|
16654
|
-
({ c: [_IconMention,
|
|
16655
|
-
|
|
16656
|
-
],
|
|
17736
|
+
({ c: [_IconMention, _initClass31] } = _apply_decs_2203_r31(this, [], [
|
|
17737
|
+
_dec67
|
|
17738
|
+
], _HTMLElement31));
|
|
16657
17739
|
}
|
|
16658
17740
|
static {
|
|
16659
|
-
|
|
17741
|
+
_initClass31();
|
|
16660
17742
|
}
|
|
16661
17743
|
};
|
|
16662
17744
|
|
|
16663
|
-
// swc:/
|
|
16664
|
-
var
|
|
16665
|
-
function
|
|
17745
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/minus.ts
|
|
17746
|
+
var import_lit_html34 = require("lit-html");
|
|
17747
|
+
function applyDecs2203RFactory32() {
|
|
16666
17748
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
16667
17749
|
return function addInitializer(initializer) {
|
|
16668
17750
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -17031,14 +18113,14 @@ function applyDecs2203RFactory30() {
|
|
|
17031
18113
|
};
|
|
17032
18114
|
};
|
|
17033
18115
|
}
|
|
17034
|
-
function
|
|
17035
|
-
return (
|
|
18116
|
+
function _apply_decs_2203_r32(targetClass, memberDecs, classDecs, parentClass) {
|
|
18117
|
+
return (_apply_decs_2203_r32 = applyDecs2203RFactory32())(targetClass, memberDecs, classDecs, parentClass);
|
|
17036
18118
|
}
|
|
17037
|
-
var
|
|
17038
|
-
var
|
|
17039
|
-
var
|
|
18119
|
+
var _dec68;
|
|
18120
|
+
var _initClass32;
|
|
18121
|
+
var _HTMLElement32;
|
|
17040
18122
|
var _IconMinus;
|
|
17041
|
-
|
|
18123
|
+
_dec68 = Component({
|
|
17042
18124
|
tag: "ease-icon-minus",
|
|
17043
18125
|
styles: `
|
|
17044
18126
|
:host {
|
|
@@ -17053,27 +18135,27 @@ _dec65 = Component({
|
|
|
17053
18135
|
}
|
|
17054
18136
|
`,
|
|
17055
18137
|
template() {
|
|
17056
|
-
return
|
|
18138
|
+
return import_lit_html34.html`
|
|
17057
18139
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
17058
18140
|
<path d="M5 7.99995H11" />
|
|
17059
18141
|
</svg>
|
|
17060
18142
|
`;
|
|
17061
18143
|
}
|
|
17062
18144
|
});
|
|
17063
|
-
var IconMinus = class extends (
|
|
18145
|
+
var IconMinus = class extends (_HTMLElement32 = HTMLElement) {
|
|
17064
18146
|
static {
|
|
17065
|
-
({ c: [_IconMinus,
|
|
17066
|
-
|
|
17067
|
-
],
|
|
18147
|
+
({ c: [_IconMinus, _initClass32] } = _apply_decs_2203_r32(this, [], [
|
|
18148
|
+
_dec68
|
|
18149
|
+
], _HTMLElement32));
|
|
17068
18150
|
}
|
|
17069
18151
|
static {
|
|
17070
|
-
|
|
18152
|
+
_initClass32();
|
|
17071
18153
|
}
|
|
17072
18154
|
};
|
|
17073
18155
|
|
|
17074
|
-
// swc:/
|
|
17075
|
-
var
|
|
17076
|
-
function
|
|
18156
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/plus.ts
|
|
18157
|
+
var import_lit_html35 = require("lit-html");
|
|
18158
|
+
function applyDecs2203RFactory33() {
|
|
17077
18159
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
17078
18160
|
return function addInitializer(initializer) {
|
|
17079
18161
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -17442,14 +18524,14 @@ function applyDecs2203RFactory31() {
|
|
|
17442
18524
|
};
|
|
17443
18525
|
};
|
|
17444
18526
|
}
|
|
17445
|
-
function
|
|
17446
|
-
return (
|
|
18527
|
+
function _apply_decs_2203_r33(targetClass, memberDecs, classDecs, parentClass) {
|
|
18528
|
+
return (_apply_decs_2203_r33 = applyDecs2203RFactory33())(targetClass, memberDecs, classDecs, parentClass);
|
|
17447
18529
|
}
|
|
17448
|
-
var
|
|
17449
|
-
var
|
|
17450
|
-
var
|
|
18530
|
+
var _dec69;
|
|
18531
|
+
var _initClass33;
|
|
18532
|
+
var _HTMLElement33;
|
|
17451
18533
|
var _IconPlus;
|
|
17452
|
-
|
|
18534
|
+
_dec69 = Component({
|
|
17453
18535
|
tag: "ease-icon-plus",
|
|
17454
18536
|
styles: `
|
|
17455
18537
|
:host {
|
|
@@ -17464,27 +18546,27 @@ _dec66 = Component({
|
|
|
17464
18546
|
}
|
|
17465
18547
|
`,
|
|
17466
18548
|
template() {
|
|
17467
|
-
return
|
|
18549
|
+
return import_lit_html35.html`
|
|
17468
18550
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
17469
18551
|
<path d="M8.00018 4.28591C8.00018 4.28591 8.00018 8.42263 8.00018 11.714M4.28613 7.99995H11.7142" />
|
|
17470
18552
|
</svg>
|
|
17471
18553
|
`;
|
|
17472
18554
|
}
|
|
17473
18555
|
});
|
|
17474
|
-
var IconPlus = class extends (
|
|
18556
|
+
var IconPlus = class extends (_HTMLElement33 = HTMLElement) {
|
|
17475
18557
|
static {
|
|
17476
|
-
({ c: [_IconPlus,
|
|
17477
|
-
|
|
17478
|
-
],
|
|
18558
|
+
({ c: [_IconPlus, _initClass33] } = _apply_decs_2203_r33(this, [], [
|
|
18559
|
+
_dec69
|
|
18560
|
+
], _HTMLElement33));
|
|
17479
18561
|
}
|
|
17480
18562
|
static {
|
|
17481
|
-
|
|
18563
|
+
_initClass33();
|
|
17482
18564
|
}
|
|
17483
18565
|
};
|
|
17484
18566
|
|
|
17485
|
-
// swc:/
|
|
17486
|
-
var
|
|
17487
|
-
function
|
|
18567
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/icons/interface/settings.ts
|
|
18568
|
+
var import_lit_html36 = require("lit-html");
|
|
18569
|
+
function applyDecs2203RFactory34() {
|
|
17488
18570
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
17489
18571
|
return function addInitializer(initializer) {
|
|
17490
18572
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -17853,14 +18935,14 @@ function applyDecs2203RFactory32() {
|
|
|
17853
18935
|
};
|
|
17854
18936
|
};
|
|
17855
18937
|
}
|
|
17856
|
-
function
|
|
17857
|
-
return (
|
|
18938
|
+
function _apply_decs_2203_r34(targetClass, memberDecs, classDecs, parentClass) {
|
|
18939
|
+
return (_apply_decs_2203_r34 = applyDecs2203RFactory34())(targetClass, memberDecs, classDecs, parentClass);
|
|
17858
18940
|
}
|
|
17859
|
-
var
|
|
17860
|
-
var
|
|
17861
|
-
var
|
|
18941
|
+
var _dec70;
|
|
18942
|
+
var _initClass34;
|
|
18943
|
+
var _HTMLElement34;
|
|
17862
18944
|
var _Settings;
|
|
17863
|
-
|
|
18945
|
+
_dec70 = Component({
|
|
17864
18946
|
tag: "ease-icon-settings",
|
|
17865
18947
|
styles: `
|
|
17866
18948
|
:host {
|
|
@@ -17875,27 +18957,27 @@ _dec67 = Component({
|
|
|
17875
18957
|
}
|
|
17876
18958
|
`,
|
|
17877
18959
|
template() {
|
|
17878
|
-
return
|
|
18960
|
+
return import_lit_html36.html`
|
|
17879
18961
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
17880
18962
|
<path d="M2 5.33319L10 5.33319M10 5.33319C10 6.43776 10.8954 7.33319 12 7.33319C13.1046 7.33319 14 6.43776 14 5.33319C14 4.22862 13.1046 3.33319 12 3.33319C10.8954 3.33319 10 4.22862 10 5.33319ZM6 10.6665L14 10.6665M6 10.6665C6 11.7711 5.10457 12.6665 4 12.6665C2.89543 12.6665 2 11.7711 2 10.6665C2 9.56195 2.89543 8.66652 4 8.66652C5.10457 8.66652 6 9.56195 6 10.6665Z" />
|
|
17881
18963
|
</svg>
|
|
17882
18964
|
`;
|
|
17883
18965
|
}
|
|
17884
18966
|
});
|
|
17885
|
-
var Settings = class extends (
|
|
18967
|
+
var Settings = class extends (_HTMLElement34 = HTMLElement) {
|
|
17886
18968
|
static {
|
|
17887
|
-
({ c: [_Settings,
|
|
17888
|
-
|
|
17889
|
-
],
|
|
18969
|
+
({ c: [_Settings, _initClass34] } = _apply_decs_2203_r34(this, [], [
|
|
18970
|
+
_dec70
|
|
18971
|
+
], _HTMLElement34));
|
|
17890
18972
|
}
|
|
17891
18973
|
static {
|
|
17892
|
-
|
|
18974
|
+
_initClass34();
|
|
17893
18975
|
}
|
|
17894
18976
|
};
|
|
17895
18977
|
|
|
17896
|
-
// swc:/
|
|
17897
|
-
var
|
|
17898
|
-
function
|
|
18978
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/logo/index.ts
|
|
18979
|
+
var import_lit_html37 = require("lit-html");
|
|
18980
|
+
function applyDecs2203RFactory35() {
|
|
17899
18981
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
17900
18982
|
return function addInitializer(initializer) {
|
|
17901
18983
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -18264,21 +19346,21 @@ function applyDecs2203RFactory33() {
|
|
|
18264
19346
|
};
|
|
18265
19347
|
};
|
|
18266
19348
|
}
|
|
18267
|
-
function
|
|
18268
|
-
return (
|
|
19349
|
+
function _apply_decs_2203_r35(targetClass, memberDecs, classDecs, parentClass) {
|
|
19350
|
+
return (_apply_decs_2203_r35 = applyDecs2203RFactory35())(targetClass, memberDecs, classDecs, parentClass);
|
|
18269
19351
|
}
|
|
18270
|
-
var
|
|
18271
|
-
var
|
|
18272
|
-
var
|
|
18273
|
-
var
|
|
18274
|
-
var
|
|
19352
|
+
var _dec71;
|
|
19353
|
+
var _initClass35;
|
|
19354
|
+
var _HTMLElement35;
|
|
19355
|
+
var _dec118;
|
|
19356
|
+
var _dec212;
|
|
18275
19357
|
var _dec310;
|
|
18276
19358
|
var _dec410;
|
|
18277
19359
|
var _init_loading;
|
|
18278
19360
|
var _init_intro;
|
|
18279
19361
|
var _init_size;
|
|
18280
19362
|
var _init_ariaLabel;
|
|
18281
|
-
var
|
|
19363
|
+
var _initProto14;
|
|
18282
19364
|
var CENTER = {
|
|
18283
19365
|
x: 74,
|
|
18284
19366
|
y: 74
|
|
@@ -18427,7 +19509,7 @@ var sortByAngle = (ids) => ids.map((id) => DOTS_DATA.find((d) => d.id === id)).f
|
|
|
18427
19509
|
var LOOP_DURATION = 1500;
|
|
18428
19510
|
var ROTATION_DURATION = 600;
|
|
18429
19511
|
var _LogoLoader;
|
|
18430
|
-
|
|
19512
|
+
_dec71 = Component({
|
|
18431
19513
|
tag: "ease-logo-loader",
|
|
18432
19514
|
styles: `
|
|
18433
19515
|
:host {
|
|
@@ -18607,7 +19689,7 @@ _dec68 = Component({
|
|
|
18607
19689
|
const state = host.state;
|
|
18608
19690
|
const ariaLabel = host.ariaLabel;
|
|
18609
19691
|
const ariaLabelTrimmed = ariaLabel?.trim() ?? "";
|
|
18610
|
-
return
|
|
19692
|
+
return import_lit_html37.html`
|
|
18611
19693
|
<div
|
|
18612
19694
|
class="logo-loader"
|
|
18613
19695
|
data-state=${state}
|
|
@@ -18656,14 +19738,14 @@ _dec68 = Component({
|
|
|
18656
19738
|
</div>
|
|
18657
19739
|
`;
|
|
18658
19740
|
}
|
|
18659
|
-
}),
|
|
19741
|
+
}), _dec118 = Prop({
|
|
18660
19742
|
type: Boolean,
|
|
18661
19743
|
attribute: "loading",
|
|
18662
19744
|
defaultValue: false,
|
|
18663
19745
|
onChange(next) {
|
|
18664
19746
|
this.handleLoadingChange(next);
|
|
18665
19747
|
}
|
|
18666
|
-
}),
|
|
19748
|
+
}), _dec212 = Prop({
|
|
18667
19749
|
type: "string",
|
|
18668
19750
|
attribute: "intro",
|
|
18669
19751
|
defaultValue: "wave"
|
|
@@ -18676,16 +19758,16 @@ _dec68 = Component({
|
|
|
18676
19758
|
attribute: "aria-label",
|
|
18677
19759
|
defaultValue: null
|
|
18678
19760
|
});
|
|
18679
|
-
var LogoLoader = class extends (
|
|
19761
|
+
var LogoLoader = class extends (_HTMLElement35 = HTMLElement) {
|
|
18680
19762
|
static {
|
|
18681
|
-
({ e: [_init_loading, _init_intro, _init_size, _init_ariaLabel,
|
|
19763
|
+
({ e: [_init_loading, _init_intro, _init_size, _init_ariaLabel, _initProto14], c: [_LogoLoader, _initClass35] } = _apply_decs_2203_r35(this, [
|
|
18682
19764
|
[
|
|
18683
|
-
|
|
19765
|
+
_dec118,
|
|
18684
19766
|
1,
|
|
18685
19767
|
"loading"
|
|
18686
19768
|
],
|
|
18687
19769
|
[
|
|
18688
|
-
|
|
19770
|
+
_dec212,
|
|
18689
19771
|
1,
|
|
18690
19772
|
"intro"
|
|
18691
19773
|
],
|
|
@@ -18700,8 +19782,8 @@ var LogoLoader = class extends (_HTMLElement33 = HTMLElement) {
|
|
|
18700
19782
|
"ariaLabel"
|
|
18701
19783
|
]
|
|
18702
19784
|
], [
|
|
18703
|
-
|
|
18704
|
-
],
|
|
19785
|
+
_dec71
|
|
19786
|
+
], _HTMLElement35));
|
|
18705
19787
|
}
|
|
18706
19788
|
#___private_loading_1;
|
|
18707
19789
|
get loading() {
|
|
@@ -19129,15 +20211,15 @@ var LogoLoader = class extends (_HTMLElement33 = HTMLElement) {
|
|
|
19129
20211
|
}
|
|
19130
20212
|
}
|
|
19131
20213
|
static {
|
|
19132
|
-
|
|
20214
|
+
_initClass35();
|
|
19133
20215
|
}
|
|
19134
20216
|
constructor(...args) {
|
|
19135
|
-
super(...args), this.#___private_loading_1 = (
|
|
20217
|
+
super(...args), this.#___private_loading_1 = (_initProto14(this), _init_loading(this, false)), this.#___private_intro_2 = _init_intro(this, "wave"), this.#___private_size_3 = _init_size(this, 36), this.#___private_ariaLabel_4 = _init_ariaLabel(this, null), this.#state = "intro", this.#loopStartTime = 0, this.#animationTimers = [], this.#introCompleted = false;
|
|
19136
20218
|
}
|
|
19137
20219
|
};
|
|
19138
20220
|
|
|
19139
|
-
// swc:/
|
|
19140
|
-
var
|
|
20221
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/index.ts
|
|
20222
|
+
var import_lit_html39 = require("lit-html");
|
|
19141
20223
|
|
|
19142
20224
|
// src/decorators/Watch.ts
|
|
19143
20225
|
var renderQueue2 = /* @__PURE__ */ new WeakMap();
|
|
@@ -19190,9 +20272,9 @@ function Watch(options = {}) {
|
|
|
19190
20272
|
};
|
|
19191
20273
|
}
|
|
19192
20274
|
|
|
19193
|
-
// swc:/
|
|
19194
|
-
var
|
|
19195
|
-
function
|
|
20275
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/fps.ts
|
|
20276
|
+
var import_lit_html38 = require("lit-html");
|
|
20277
|
+
function applyDecs2203RFactory36() {
|
|
19196
20278
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
19197
20279
|
return function addInitializer(initializer) {
|
|
19198
20280
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -19561,17 +20643,17 @@ function applyDecs2203RFactory34() {
|
|
|
19561
20643
|
};
|
|
19562
20644
|
};
|
|
19563
20645
|
}
|
|
19564
|
-
function
|
|
19565
|
-
return (
|
|
20646
|
+
function _apply_decs_2203_r36(targetClass, memberDecs, classDecs, parentClass) {
|
|
20647
|
+
return (_apply_decs_2203_r36 = applyDecs2203RFactory36())(targetClass, memberDecs, classDecs, parentClass);
|
|
19566
20648
|
}
|
|
19567
|
-
var
|
|
19568
|
-
var
|
|
19569
|
-
var
|
|
19570
|
-
var
|
|
19571
|
-
var
|
|
20649
|
+
var _dec74;
|
|
20650
|
+
var _initClass36;
|
|
20651
|
+
var _HTMLElement36;
|
|
20652
|
+
var _dec119;
|
|
20653
|
+
var _dec213;
|
|
19572
20654
|
var _init_paused;
|
|
19573
20655
|
var _init_canvasEl;
|
|
19574
|
-
var
|
|
20656
|
+
var _initProto15;
|
|
19575
20657
|
var clamp = (value, min, max) => Math.max(min, Math.min(max, value));
|
|
19576
20658
|
var mean = (values) => {
|
|
19577
20659
|
if (values.length === 0) {
|
|
@@ -19628,7 +20710,7 @@ var rateFps = (fps, targetFps) => {
|
|
|
19628
20710
|
return "poor";
|
|
19629
20711
|
};
|
|
19630
20712
|
var _MonitorFps;
|
|
19631
|
-
|
|
20713
|
+
_dec74 = Component({
|
|
19632
20714
|
tag: "ease-monitor-fps",
|
|
19633
20715
|
autoSlot: false,
|
|
19634
20716
|
shadowMode: "open",
|
|
@@ -19728,27 +20810,27 @@ _dec69 = Component({
|
|
|
19728
20810
|
color: var(--color-gray-700);
|
|
19729
20811
|
}
|
|
19730
20812
|
`
|
|
19731
|
-
}),
|
|
20813
|
+
}), _dec119 = Prop({
|
|
19732
20814
|
type: Boolean,
|
|
19733
20815
|
reflect: true,
|
|
19734
20816
|
defaultValue: false
|
|
19735
|
-
}),
|
|
19736
|
-
var MonitorFps = class extends (
|
|
20817
|
+
}), _dec213 = Query('canvas[part="graph"]');
|
|
20818
|
+
var MonitorFps = class extends (_HTMLElement36 = HTMLElement) {
|
|
19737
20819
|
static {
|
|
19738
|
-
({ e: [_init_paused, _init_canvasEl,
|
|
20820
|
+
({ e: [_init_paused, _init_canvasEl, _initProto15], c: [_MonitorFps, _initClass36] } = _apply_decs_2203_r36(this, [
|
|
19739
20821
|
[
|
|
19740
|
-
|
|
20822
|
+
_dec119,
|
|
19741
20823
|
1,
|
|
19742
20824
|
"paused"
|
|
19743
20825
|
],
|
|
19744
20826
|
[
|
|
19745
|
-
|
|
20827
|
+
_dec213,
|
|
19746
20828
|
1,
|
|
19747
20829
|
"canvasEl"
|
|
19748
20830
|
]
|
|
19749
20831
|
], [
|
|
19750
|
-
|
|
19751
|
-
],
|
|
20832
|
+
_dec74
|
|
20833
|
+
], _HTMLElement36));
|
|
19752
20834
|
}
|
|
19753
20835
|
#___private_paused_1;
|
|
19754
20836
|
get paused() {
|
|
@@ -19797,7 +20879,7 @@ var MonitorFps = class extends (_HTMLElement34 = HTMLElement) {
|
|
|
19797
20879
|
this.#data.frameTimeAvg !== null ? `avg ${formatMs(this.#data.frameTimeAvg)}` : null,
|
|
19798
20880
|
this.#data.frameTimeP95 !== null ? `p95 ${formatMs(this.#data.frameTimeP95)}` : null
|
|
19799
20881
|
].filter(Boolean);
|
|
19800
|
-
return
|
|
20882
|
+
return import_lit_html38.html`
|
|
19801
20883
|
<div part="container">
|
|
19802
20884
|
<div part="header">
|
|
19803
20885
|
<div part="title">
|
|
@@ -19977,10 +21059,10 @@ var MonitorFps = class extends (_HTMLElement34 = HTMLElement) {
|
|
|
19977
21059
|
ctx.stroke();
|
|
19978
21060
|
}
|
|
19979
21061
|
static {
|
|
19980
|
-
|
|
21062
|
+
_initClass36();
|
|
19981
21063
|
}
|
|
19982
21064
|
constructor(...args) {
|
|
19983
|
-
super(...args), this.#___private_paused_1 = (
|
|
21065
|
+
super(...args), this.#___private_paused_1 = (_initProto15(this), _init_paused(this, false)), this.#___private_canvasEl_2 = _init_canvasEl(this), this.#rafId = null, this.#lastNow = 0, this.#lastSampleNow = 0, this.#framesSinceSample = 0, this.#frameDeltas = [], this.#fpsSamples = [], this.#maxFrameDeltas = 240, this.#maxFpsSamples = 90, this.#sampleIntervalMs = 250, this.#statsWindowFrames = 120, this.#data = {
|
|
19984
21066
|
fps: null,
|
|
19985
21067
|
refreshRate: null,
|
|
19986
21068
|
frameTimeAvg: null,
|
|
@@ -20029,8 +21111,8 @@ var MonitorFps = class extends (_HTMLElement34 = HTMLElement) {
|
|
|
20029
21111
|
}
|
|
20030
21112
|
};
|
|
20031
21113
|
|
|
20032
|
-
// swc:/
|
|
20033
|
-
function
|
|
21114
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/monitor/index.ts
|
|
21115
|
+
function applyDecs2203RFactory37() {
|
|
20034
21116
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
20035
21117
|
return function addInitializer(initializer) {
|
|
20036
21118
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -20399,18 +21481,18 @@ function applyDecs2203RFactory35() {
|
|
|
20399
21481
|
};
|
|
20400
21482
|
};
|
|
20401
21483
|
}
|
|
20402
|
-
function
|
|
20403
|
-
return (
|
|
21484
|
+
function _apply_decs_2203_r37(targetClass, memberDecs, classDecs, parentClass) {
|
|
21485
|
+
return (_apply_decs_2203_r37 = applyDecs2203RFactory37())(targetClass, memberDecs, classDecs, parentClass);
|
|
20404
21486
|
}
|
|
20405
|
-
var
|
|
20406
|
-
var
|
|
20407
|
-
var
|
|
20408
|
-
var
|
|
20409
|
-
var
|
|
21487
|
+
var _dec75;
|
|
21488
|
+
var _initClass37;
|
|
21489
|
+
var _HTMLElement37;
|
|
21490
|
+
var _dec120;
|
|
21491
|
+
var _dec214;
|
|
20410
21492
|
var _dec311;
|
|
20411
21493
|
var _init_metrics;
|
|
20412
21494
|
var _init_network;
|
|
20413
|
-
var
|
|
21495
|
+
var _initProto16;
|
|
20414
21496
|
var METRIC_THRESHOLDS = {
|
|
20415
21497
|
LCP: {
|
|
20416
21498
|
good: 2500,
|
|
@@ -20520,7 +21602,7 @@ var estimateCarbonFootprint = (totalBytes) => {
|
|
|
20520
21602
|
return `${emissions.toFixed(3)}g CO2 eq.`;
|
|
20521
21603
|
};
|
|
20522
21604
|
var _Monitor;
|
|
20523
|
-
|
|
21605
|
+
_dec75 = Component({
|
|
20524
21606
|
tag: "ease-monitor",
|
|
20525
21607
|
styles: `
|
|
20526
21608
|
:host {
|
|
@@ -20644,17 +21726,17 @@ _dec70 = Component({
|
|
|
20644
21726
|
text-align: center;
|
|
20645
21727
|
}
|
|
20646
21728
|
`
|
|
20647
|
-
}),
|
|
20648
|
-
var Monitor = class extends (
|
|
21729
|
+
}), _dec120 = Watch({}), _dec214 = Watch({}), _dec311 = Listen("monitor-fps");
|
|
21730
|
+
var Monitor = class extends (_HTMLElement37 = HTMLElement) {
|
|
20649
21731
|
static {
|
|
20650
|
-
({ e: [_init_metrics, _init_network,
|
|
21732
|
+
({ e: [_init_metrics, _init_network, _initProto16], c: [_Monitor, _initClass37] } = _apply_decs_2203_r37(this, [
|
|
20651
21733
|
[
|
|
20652
|
-
|
|
21734
|
+
_dec120,
|
|
20653
21735
|
1,
|
|
20654
21736
|
"metrics"
|
|
20655
21737
|
],
|
|
20656
21738
|
[
|
|
20657
|
-
|
|
21739
|
+
_dec214,
|
|
20658
21740
|
1,
|
|
20659
21741
|
"network"
|
|
20660
21742
|
],
|
|
@@ -20664,8 +21746,8 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
20664
21746
|
"handleFpsUpdate"
|
|
20665
21747
|
]
|
|
20666
21748
|
], [
|
|
20667
|
-
|
|
20668
|
-
],
|
|
21749
|
+
_dec75
|
|
21750
|
+
], _HTMLElement37));
|
|
20669
21751
|
}
|
|
20670
21752
|
#___private_metrics_1;
|
|
20671
21753
|
get metrics() {
|
|
@@ -20970,14 +22052,14 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
20970
22052
|
return "unknown";
|
|
20971
22053
|
}
|
|
20972
22054
|
render() {
|
|
20973
|
-
return
|
|
22055
|
+
return import_lit_html39.html`
|
|
20974
22056
|
<div part="container">
|
|
20975
22057
|
${this.renderExpanded()}
|
|
20976
22058
|
</div>
|
|
20977
22059
|
`;
|
|
20978
22060
|
}
|
|
20979
22061
|
renderExpanded() {
|
|
20980
|
-
return
|
|
22062
|
+
return import_lit_html39.html`
|
|
20981
22063
|
<div part="header">
|
|
20982
22064
|
<div part="title">
|
|
20983
22065
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline></svg>
|
|
@@ -20998,7 +22080,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
20998
22080
|
const trend = this.getTrendDirection(key);
|
|
20999
22081
|
const benchmark = GLOBAL_BENCHMARKS[key];
|
|
21000
22082
|
const vsBenchmark = benchmark ? ` (vs avg ${formatMetric(key, benchmark)})` : "";
|
|
21001
|
-
return
|
|
22083
|
+
return import_lit_html39.html`
|
|
21002
22084
|
<div class="metric-box" title="${description}${vsBenchmark}">
|
|
21003
22085
|
<div part="metric-label" class="metric-label">${label}</div>
|
|
21004
22086
|
<div part="metric-value" class="metric-value rating-${rating}" data-rating=${rating}>
|
|
@@ -21011,7 +22093,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21011
22093
|
renderVitalsAndTiming() {
|
|
21012
22094
|
const { LCP, INP, CLS, FCP, TBT } = this.metrics.coreWebVitals;
|
|
21013
22095
|
const { ttfb, loadTime } = this.metrics.navigation;
|
|
21014
|
-
return
|
|
22096
|
+
return import_lit_html39.html`
|
|
21015
22097
|
<section>
|
|
21016
22098
|
<div part="section-title" class="section-title">Vitals & Timing</div>
|
|
21017
22099
|
<div class="metrics-grid">
|
|
@@ -21028,7 +22110,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21028
22110
|
}
|
|
21029
22111
|
renderRealtime() {
|
|
21030
22112
|
const { memory, longTasks } = this.metrics;
|
|
21031
|
-
return
|
|
22113
|
+
return import_lit_html39.html`
|
|
21032
22114
|
<section>
|
|
21033
22115
|
<div part="section-title" class="section-title">Realtime Monitoring</div>
|
|
21034
22116
|
<ease-monitor-fps></ease-monitor-fps>
|
|
@@ -21042,7 +22124,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21042
22124
|
}
|
|
21043
22125
|
renderMemory(memory) {
|
|
21044
22126
|
if (!memory) {
|
|
21045
|
-
return
|
|
22127
|
+
return import_lit_html39.html`
|
|
21046
22128
|
<div class="memory-usage">
|
|
21047
22129
|
(performance.memory API not supported)
|
|
21048
22130
|
</div>
|
|
@@ -21055,7 +22137,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21055
22137
|
} else if (usedPercent > 60) {
|
|
21056
22138
|
rating = "needs-improvement";
|
|
21057
22139
|
}
|
|
21058
|
-
return
|
|
22140
|
+
return import_lit_html39.html`
|
|
21059
22141
|
<div class="memory-usage">
|
|
21060
22142
|
<div class="resource-item">
|
|
21061
22143
|
<span>Used / Total Heap</span>
|
|
@@ -21075,7 +22157,7 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21075
22157
|
}
|
|
21076
22158
|
renderNetworkInfo() {
|
|
21077
22159
|
const { effectiveType, rtt } = this.network;
|
|
21078
|
-
return
|
|
22160
|
+
return import_lit_html39.html`
|
|
21079
22161
|
<section>
|
|
21080
22162
|
<div part="section-title" class="section-title">Network Connection</div>
|
|
21081
22163
|
<div class="network-info">
|
|
@@ -21094,13 +22176,13 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21094
22176
|
renderResources() {
|
|
21095
22177
|
const { js, css, img, other, totalSize } = this.metrics.resources;
|
|
21096
22178
|
const totalCount = js.count + css.count + img.count + other.count;
|
|
21097
|
-
const renderItem = (label, data) =>
|
|
22179
|
+
const renderItem = (label, data) => import_lit_html39.html`
|
|
21098
22180
|
<div class="resource-item">
|
|
21099
22181
|
<span>${label} (${data.count})</span>
|
|
21100
22182
|
<span>${formatBytes(data.size)}</span>
|
|
21101
22183
|
</div>
|
|
21102
22184
|
`;
|
|
21103
|
-
return
|
|
22185
|
+
return import_lit_html39.html`
|
|
21104
22186
|
<section>
|
|
21105
22187
|
<div part="section-title" class="section-title">Resources (Total: ${formatBytes(totalSize)} / ${totalCount} reqs)</div>
|
|
21106
22188
|
<div class="resource-list">
|
|
@@ -21119,10 +22201,10 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21119
22201
|
`;
|
|
21120
22202
|
}
|
|
21121
22203
|
static {
|
|
21122
|
-
|
|
22204
|
+
_initClass37();
|
|
21123
22205
|
}
|
|
21124
22206
|
constructor(...args) {
|
|
21125
|
-
super(...args), this.#___private_metrics_1 = (
|
|
22207
|
+
super(...args), this.#___private_metrics_1 = (_initProto16(this), _init_metrics(this, {
|
|
21126
22208
|
navigation: {
|
|
21127
22209
|
loadTime: null,
|
|
21128
22210
|
domInteractive: null,
|
|
@@ -21179,9 +22261,9 @@ var Monitor = class extends (_HTMLElement35 = HTMLElement) {
|
|
|
21179
22261
|
}
|
|
21180
22262
|
};
|
|
21181
22263
|
|
|
21182
|
-
// swc:/
|
|
21183
|
-
var
|
|
21184
|
-
function
|
|
22264
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/number/index.ts
|
|
22265
|
+
var import_lit_html40 = require("lit-html");
|
|
22266
|
+
function applyDecs2203RFactory38() {
|
|
21185
22267
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
21186
22268
|
return function addInitializer(initializer) {
|
|
21187
22269
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -21550,19 +22632,19 @@ function applyDecs2203RFactory36() {
|
|
|
21550
22632
|
};
|
|
21551
22633
|
};
|
|
21552
22634
|
}
|
|
21553
|
-
function
|
|
21554
|
-
return (
|
|
22635
|
+
function _apply_decs_2203_r38(targetClass, memberDecs, classDecs, parentClass) {
|
|
22636
|
+
return (_apply_decs_2203_r38 = applyDecs2203RFactory38())(targetClass, memberDecs, classDecs, parentClass);
|
|
21555
22637
|
}
|
|
21556
|
-
var
|
|
21557
|
-
var
|
|
21558
|
-
var
|
|
21559
|
-
var
|
|
21560
|
-
var
|
|
22638
|
+
var _dec76;
|
|
22639
|
+
var _initClass38;
|
|
22640
|
+
var _HTMLElement38;
|
|
22641
|
+
var _dec121;
|
|
22642
|
+
var _dec215;
|
|
21561
22643
|
var _dec312;
|
|
21562
22644
|
var _dec411;
|
|
21563
22645
|
var _dec510;
|
|
21564
22646
|
var _dec610;
|
|
21565
|
-
var
|
|
22647
|
+
var _dec77;
|
|
21566
22648
|
var _dec84;
|
|
21567
22649
|
var _dec94;
|
|
21568
22650
|
var _init_value6;
|
|
@@ -21572,9 +22654,9 @@ var _init_step;
|
|
|
21572
22654
|
var _init_name4;
|
|
21573
22655
|
var _init_disabled6;
|
|
21574
22656
|
var _init_control3;
|
|
21575
|
-
var
|
|
22657
|
+
var _initProto17;
|
|
21576
22658
|
var _NumberInput;
|
|
21577
|
-
|
|
22659
|
+
_dec76 = Component({
|
|
21578
22660
|
tag: "ease-number-input",
|
|
21579
22661
|
styles: `
|
|
21580
22662
|
:host {
|
|
@@ -21619,7 +22701,7 @@ _dec71 = Component({
|
|
|
21619
22701
|
}
|
|
21620
22702
|
`,
|
|
21621
22703
|
template() {
|
|
21622
|
-
return
|
|
22704
|
+
return import_lit_html40.html`
|
|
21623
22705
|
<div part="container">
|
|
21624
22706
|
<ease-input
|
|
21625
22707
|
part="control"
|
|
@@ -21656,10 +22738,10 @@ _dec71 = Component({
|
|
|
21656
22738
|
</div>
|
|
21657
22739
|
`;
|
|
21658
22740
|
}
|
|
21659
|
-
}),
|
|
22741
|
+
}), _dec121 = Prop({
|
|
21660
22742
|
type: Number,
|
|
21661
22743
|
reflect: true
|
|
21662
|
-
}),
|
|
22744
|
+
}), _dec215 = Prop({
|
|
21663
22745
|
type: Number,
|
|
21664
22746
|
reflect: true
|
|
21665
22747
|
}), _dec312 = Prop({
|
|
@@ -21673,21 +22755,21 @@ _dec71 = Component({
|
|
|
21673
22755
|
}), _dec610 = Prop({
|
|
21674
22756
|
type: Boolean,
|
|
21675
22757
|
reflect: true
|
|
21676
|
-
}),
|
|
22758
|
+
}), _dec77 = Query("input"), _dec84 = Listen("input", {
|
|
21677
22759
|
selector: "input"
|
|
21678
22760
|
}), _dec94 = Listen("change", {
|
|
21679
22761
|
selector: "input"
|
|
21680
22762
|
});
|
|
21681
|
-
var NumberInput = class extends (
|
|
22763
|
+
var NumberInput = class extends (_HTMLElement38 = HTMLElement) {
|
|
21682
22764
|
static {
|
|
21683
|
-
({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3,
|
|
22765
|
+
({ e: [_init_value6, _init_min, _init_max, _init_step, _init_name4, _init_disabled6, _init_control3, _initProto17], c: [_NumberInput, _initClass38] } = _apply_decs_2203_r38(this, [
|
|
21684
22766
|
[
|
|
21685
|
-
|
|
22767
|
+
_dec121,
|
|
21686
22768
|
1,
|
|
21687
22769
|
"value"
|
|
21688
22770
|
],
|
|
21689
22771
|
[
|
|
21690
|
-
|
|
22772
|
+
_dec215,
|
|
21691
22773
|
1,
|
|
21692
22774
|
"min"
|
|
21693
22775
|
],
|
|
@@ -21712,7 +22794,7 @@ var NumberInput = class extends (_HTMLElement36 = HTMLElement) {
|
|
|
21712
22794
|
"disabled"
|
|
21713
22795
|
],
|
|
21714
22796
|
[
|
|
21715
|
-
|
|
22797
|
+
_dec77,
|
|
21716
22798
|
1,
|
|
21717
22799
|
"control"
|
|
21718
22800
|
],
|
|
@@ -21727,8 +22809,8 @@ var NumberInput = class extends (_HTMLElement36 = HTMLElement) {
|
|
|
21727
22809
|
"handleChange"
|
|
21728
22810
|
]
|
|
21729
22811
|
], [
|
|
21730
|
-
|
|
21731
|
-
],
|
|
22812
|
+
_dec76
|
|
22813
|
+
], _HTMLElement38));
|
|
21732
22814
|
}
|
|
21733
22815
|
#___private_value_1;
|
|
21734
22816
|
get value() {
|
|
@@ -21845,16 +22927,16 @@ var NumberInput = class extends (_HTMLElement36 = HTMLElement) {
|
|
|
21845
22927
|
}
|
|
21846
22928
|
}
|
|
21847
22929
|
static {
|
|
21848
|
-
|
|
22930
|
+
_initClass38();
|
|
21849
22931
|
}
|
|
21850
22932
|
constructor(...args) {
|
|
21851
|
-
super(...args), this.#___private_value_1 = (
|
|
22933
|
+
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_name4(this), this.#___private_disabled_6 = _init_disabled6(this), this.#___private_control_7 = _init_control3(this);
|
|
21852
22934
|
}
|
|
21853
22935
|
};
|
|
21854
22936
|
|
|
21855
|
-
// swc:/
|
|
21856
|
-
var
|
|
21857
|
-
function
|
|
22937
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/origin/index.ts
|
|
22938
|
+
var import_lit_html41 = require("lit-html");
|
|
22939
|
+
function applyDecs2203RFactory39() {
|
|
21858
22940
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
21859
22941
|
return function addInitializer(initializer) {
|
|
21860
22942
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -22223,14 +23305,14 @@ function applyDecs2203RFactory37() {
|
|
|
22223
23305
|
};
|
|
22224
23306
|
};
|
|
22225
23307
|
}
|
|
22226
|
-
function
|
|
22227
|
-
return (
|
|
23308
|
+
function _apply_decs_2203_r39(targetClass, memberDecs, classDecs, parentClass) {
|
|
23309
|
+
return (_apply_decs_2203_r39 = applyDecs2203RFactory39())(targetClass, memberDecs, classDecs, parentClass);
|
|
22228
23310
|
}
|
|
22229
|
-
var
|
|
22230
|
-
var
|
|
22231
|
-
var
|
|
22232
|
-
var
|
|
22233
|
-
var
|
|
23311
|
+
var _dec78;
|
|
23312
|
+
var _initClass39;
|
|
23313
|
+
var _HTMLElement39;
|
|
23314
|
+
var _dec123;
|
|
23315
|
+
var _dec216;
|
|
22234
23316
|
var _dec313;
|
|
22235
23317
|
var _dec412;
|
|
22236
23318
|
var _dec511;
|
|
@@ -22238,9 +23320,9 @@ var _init_value7;
|
|
|
22238
23320
|
var _init_disabled7;
|
|
22239
23321
|
var _init_control4;
|
|
22240
23322
|
var _init_name5;
|
|
22241
|
-
var
|
|
23323
|
+
var _initProto18;
|
|
22242
23324
|
var _Origin;
|
|
22243
|
-
|
|
23325
|
+
_dec78 = Component({
|
|
22244
23326
|
tag: "ease-origin",
|
|
22245
23327
|
styles: `
|
|
22246
23328
|
:host {
|
|
@@ -22352,7 +23434,7 @@ _dec75 = Component({
|
|
|
22352
23434
|
}
|
|
22353
23435
|
`,
|
|
22354
23436
|
template() {
|
|
22355
|
-
return
|
|
23437
|
+
return import_lit_html41.html`
|
|
22356
23438
|
<div part="container">
|
|
22357
23439
|
<div part="preview" data-value=${this.value ?? "center-center"}></div>
|
|
22358
23440
|
|
|
@@ -22372,10 +23454,10 @@ _dec75 = Component({
|
|
|
22372
23454
|
</div>
|
|
22373
23455
|
`;
|
|
22374
23456
|
}
|
|
22375
|
-
}),
|
|
23457
|
+
}), _dec123 = Prop({
|
|
22376
23458
|
reflect: true,
|
|
22377
23459
|
defaultValue: "center-center"
|
|
22378
|
-
}),
|
|
23460
|
+
}), _dec216 = Prop({
|
|
22379
23461
|
type: Boolean,
|
|
22380
23462
|
reflect: true
|
|
22381
23463
|
}), _dec313 = Query("ease-dropdown"), _dec412 = Prop({
|
|
@@ -22384,16 +23466,16 @@ _dec75 = Component({
|
|
|
22384
23466
|
}), _dec511 = Listen("change", {
|
|
22385
23467
|
selector: "ease-dropdown"
|
|
22386
23468
|
});
|
|
22387
|
-
var Origin = class extends (
|
|
23469
|
+
var Origin = class extends (_HTMLElement39 = HTMLElement) {
|
|
22388
23470
|
static {
|
|
22389
|
-
({ e: [_init_value7, _init_disabled7, _init_control4, _init_name5,
|
|
23471
|
+
({ e: [_init_value7, _init_disabled7, _init_control4, _init_name5, _initProto18], c: [_Origin, _initClass39] } = _apply_decs_2203_r39(this, [
|
|
22390
23472
|
[
|
|
22391
|
-
|
|
23473
|
+
_dec123,
|
|
22392
23474
|
1,
|
|
22393
23475
|
"value"
|
|
22394
23476
|
],
|
|
22395
23477
|
[
|
|
22396
|
-
|
|
23478
|
+
_dec216,
|
|
22397
23479
|
1,
|
|
22398
23480
|
"disabled"
|
|
22399
23481
|
],
|
|
@@ -22413,8 +23495,8 @@ var Origin = class extends (_HTMLElement37 = HTMLElement) {
|
|
|
22413
23495
|
"handleChange"
|
|
22414
23496
|
]
|
|
22415
23497
|
], [
|
|
22416
|
-
|
|
22417
|
-
],
|
|
23498
|
+
_dec78
|
|
23499
|
+
], _HTMLElement39));
|
|
22418
23500
|
}
|
|
22419
23501
|
#___private_value_1;
|
|
22420
23502
|
get value() {
|
|
@@ -22458,10 +23540,10 @@ var Origin = class extends (_HTMLElement37 = HTMLElement) {
|
|
|
22458
23540
|
});
|
|
22459
23541
|
}
|
|
22460
23542
|
static {
|
|
22461
|
-
|
|
23543
|
+
_initClass39();
|
|
22462
23544
|
}
|
|
22463
23545
|
constructor(...args) {
|
|
22464
|
-
super(...args), this.#___private_value_1 = (
|
|
23546
|
+
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_name5(this, ""), this.handleValueChange = (event) => {
|
|
22465
23547
|
this.value = String(this.control?.value ?? "center-center");
|
|
22466
23548
|
dispatchControlEvent(this, "change", {
|
|
22467
23549
|
value: this.value,
|
|
@@ -22471,9 +23553,9 @@ var Origin = class extends (_HTMLElement37 = HTMLElement) {
|
|
|
22471
23553
|
}
|
|
22472
23554
|
};
|
|
22473
23555
|
|
|
22474
|
-
// swc:/
|
|
22475
|
-
var
|
|
22476
|
-
function
|
|
23556
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/panel/index.ts
|
|
23557
|
+
var import_lit_html42 = require("lit-html");
|
|
23558
|
+
function applyDecs2203RFactory40() {
|
|
22477
23559
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
22478
23560
|
return function addInitializer(initializer) {
|
|
22479
23561
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -22842,42 +23924,53 @@ function applyDecs2203RFactory38() {
|
|
|
22842
23924
|
};
|
|
22843
23925
|
};
|
|
22844
23926
|
}
|
|
22845
|
-
function
|
|
22846
|
-
return (
|
|
23927
|
+
function _apply_decs_2203_r40(targetClass, memberDecs, classDecs, parentClass) {
|
|
23928
|
+
return (_apply_decs_2203_r40 = applyDecs2203RFactory40())(targetClass, memberDecs, classDecs, parentClass);
|
|
22847
23929
|
}
|
|
22848
|
-
var
|
|
22849
|
-
var
|
|
22850
|
-
var
|
|
22851
|
-
var
|
|
22852
|
-
var
|
|
23930
|
+
var _dec79;
|
|
23931
|
+
var _initClass40;
|
|
23932
|
+
var _HTMLElement40;
|
|
23933
|
+
var _dec124;
|
|
23934
|
+
var _dec217;
|
|
22853
23935
|
var _dec314;
|
|
22854
23936
|
var _dec413;
|
|
22855
23937
|
var _dec512;
|
|
23938
|
+
var _dec611;
|
|
23939
|
+
var _dec710;
|
|
22856
23940
|
var _init_activeTab;
|
|
23941
|
+
var _init_headline2;
|
|
23942
|
+
var _init_maxHeight3;
|
|
22857
23943
|
var _init_contentElement;
|
|
22858
23944
|
var _init_bodyElement;
|
|
22859
|
-
var
|
|
23945
|
+
var _initProto19;
|
|
22860
23946
|
var _Panel;
|
|
22861
|
-
|
|
23947
|
+
_dec79 = Component({
|
|
22862
23948
|
tag: "ease-panel",
|
|
22863
23949
|
shadowMode: "open",
|
|
22864
23950
|
styles: `
|
|
22865
|
-
|
|
22866
|
-
|
|
22867
|
-
|
|
23951
|
+
@property --top-fade {
|
|
23952
|
+
syntax: "<length>";
|
|
23953
|
+
inherits: false;
|
|
23954
|
+
initial-value: 0px;
|
|
23955
|
+
}
|
|
23956
|
+
|
|
23957
|
+
@property --bottom-fade {
|
|
23958
|
+
syntax: "<length>";
|
|
23959
|
+
inherits: false;
|
|
23960
|
+
initial-value: 0px;
|
|
22868
23961
|
}
|
|
22869
23962
|
|
|
22870
23963
|
[part="section"] {
|
|
22871
23964
|
display: block;
|
|
22872
23965
|
width: 100%;
|
|
22873
|
-
max-width: var(--ease-panel-max-width
|
|
22874
|
-
border-radius: var(--ease-panel-radius
|
|
22875
|
-
border: 1px solid var(--ease-panel-border-color
|
|
23966
|
+
max-width: var(--ease-panel-max-width);
|
|
23967
|
+
border-radius: var(--ease-panel-radius);
|
|
23968
|
+
border: 1px solid var(--ease-panel-border-color);
|
|
22876
23969
|
background-clip: padding-box;
|
|
22877
|
-
background: var(--ease-panel-background
|
|
22878
|
-
box-shadow: var(--ease-panel-shadow
|
|
23970
|
+
background-color: var(--ease-panel-background);
|
|
23971
|
+
box-shadow: var(--ease-panel-shadow);
|
|
22879
23972
|
box-sizing: border-box;
|
|
22880
|
-
padding: var(--ease-panel-padding
|
|
23973
|
+
padding: var(--ease-panel-padding);
|
|
22881
23974
|
margin: auto;
|
|
22882
23975
|
}
|
|
22883
23976
|
|
|
@@ -22886,7 +23979,7 @@ _dec76 = Component({
|
|
|
22886
23979
|
align-items: center;
|
|
22887
23980
|
gap: 8px;
|
|
22888
23981
|
width: 100%;
|
|
22889
|
-
margin-bottom:
|
|
23982
|
+
margin-bottom: var(--ease-panel-header-spacing);
|
|
22890
23983
|
}
|
|
22891
23984
|
|
|
22892
23985
|
[part="header"]:not(:has([part="headline"] slot[name="headline"]::slotted(*))):not(:has([part="tabs"]:not(:empty))):not(:has([part="actions"] slot[name="actions"]::slotted(*))) {
|
|
@@ -22895,14 +23988,14 @@ _dec76 = Component({
|
|
|
22895
23988
|
}
|
|
22896
23989
|
|
|
22897
23990
|
[part="headline"] {
|
|
22898
|
-
font-size: var(--ease-panel-title-font-size
|
|
22899
|
-
font-weight: var(--ease-panel-title-font-weight
|
|
22900
|
-
line-height:
|
|
22901
|
-
font-family: var(--ease-font-family
|
|
22902
|
-
color: var(--ease-panel-title-color
|
|
23991
|
+
font-size: var(--ease-panel-title-font-size);
|
|
23992
|
+
font-weight: var(--ease-panel-title-font-weight);
|
|
23993
|
+
line-height: 24px;
|
|
23994
|
+
font-family: var(--ease-font-family);
|
|
23995
|
+
color: var(--ease-panel-title-color);
|
|
22903
23996
|
margin: 0 0 0 4px;
|
|
22904
23997
|
flex-grow: 1;
|
|
22905
|
-
text-
|
|
23998
|
+
text-overflow: ellipsis;
|
|
22906
23999
|
overflow: hidden;
|
|
22907
24000
|
white-space: nowrap;
|
|
22908
24001
|
}
|
|
@@ -22924,28 +24017,29 @@ _dec76 = Component({
|
|
|
22924
24017
|
}
|
|
22925
24018
|
|
|
22926
24019
|
[part="tab"] {
|
|
22927
|
-
appearance: none;
|
|
22928
|
-
font-size: var(--ease-panel-tab-font-size
|
|
22929
|
-
font-weight: var(--ease-panel-tab-font-weight
|
|
22930
|
-
line-height:
|
|
22931
|
-
font-family: var(--ease-font-family
|
|
22932
|
-
color: var(--ease-panel-tab-color
|
|
22933
|
-
background: transparent;
|
|
24020
|
+
appearance: none;
|
|
24021
|
+
font-size: var(--ease-panel-tab-font-size);
|
|
24022
|
+
font-weight: var(--ease-panel-tab-font-weight);
|
|
24023
|
+
line-height: 24px;
|
|
24024
|
+
font-family: var(--ease-font-family);
|
|
24025
|
+
color: var(--ease-panel-tab-color);
|
|
24026
|
+
background-color: transparent;
|
|
22934
24027
|
border: none;
|
|
22935
24028
|
padding: 4px 8px;
|
|
22936
24029
|
margin: 0;
|
|
22937
24030
|
cursor: pointer;
|
|
22938
|
-
border-radius: var(--ease-panel-tab-radius
|
|
22939
|
-
transition: color
|
|
24031
|
+
border-radius: var(--ease-panel-tab-radius);
|
|
24032
|
+
transition: color 200ms, background-color 200ms;
|
|
24033
|
+
transition-timing-function: cubic-bezier(.25, 0, .5, 1);
|
|
22940
24034
|
}
|
|
22941
24035
|
|
|
22942
24036
|
[part="tab"]:hover {
|
|
22943
|
-
color: var(--ease-panel-tab-color-hover
|
|
24037
|
+
color: var(--ease-panel-tab-color-hover);
|
|
22944
24038
|
}
|
|
22945
24039
|
|
|
22946
24040
|
[part="tab"][aria-selected="true"] {
|
|
22947
|
-
color: var(--ease-panel-tab-color-active
|
|
22948
|
-
background: var(--ease-panel-tab-background-active
|
|
24041
|
+
color: var(--ease-panel-tab-color-active);
|
|
24042
|
+
background-color: var(--ease-panel-tab-background-active);
|
|
22949
24043
|
}
|
|
22950
24044
|
|
|
22951
24045
|
[part="actions"] {
|
|
@@ -22957,7 +24051,7 @@ _dec76 = Component({
|
|
|
22957
24051
|
|
|
22958
24052
|
slot[name="actions"]::slotted(button),
|
|
22959
24053
|
slot[name="actions"]::slotted(a) {
|
|
22960
|
-
--ease-icon-size: var(--ease-panel-action-icon-size
|
|
24054
|
+
--ease-icon-size: var(--ease-panel-action-icon-size);
|
|
22961
24055
|
|
|
22962
24056
|
appearance: none;
|
|
22963
24057
|
flex: 0 0 24px;
|
|
@@ -22968,7 +24062,8 @@ _dec76 = Component({
|
|
|
22968
24062
|
margin: 0;
|
|
22969
24063
|
cursor: pointer;
|
|
22970
24064
|
color: var(--color-gray-600);
|
|
22971
|
-
transition: color
|
|
24065
|
+
transition: color 200ms;
|
|
24066
|
+
transition-timing-function: cubic-bezier(.25, 0, .5, 1);
|
|
22972
24067
|
text-decoration: none;
|
|
22973
24068
|
display: flex;
|
|
22974
24069
|
align-items: center;
|
|
@@ -23010,12 +24105,37 @@ _dec76 = Component({
|
|
|
23010
24105
|
}
|
|
23011
24106
|
|
|
23012
24107
|
[part="content"][data-animating="true"] {
|
|
23013
|
-
transition: height
|
|
24108
|
+
transition: height 200ms cubic-bezier(.25, 0, .5, 1);
|
|
23014
24109
|
}
|
|
23015
24110
|
|
|
23016
24111
|
[part="body"] {
|
|
23017
24112
|
width: 100%;
|
|
23018
24113
|
position: relative;
|
|
24114
|
+
overflow-y: auto;
|
|
24115
|
+
mask-image: linear-gradient(to bottom, #0000, #ffff var(--top-fade) calc(100% - var(--bottom-fade)), #0000);
|
|
24116
|
+
animation-name: scroll-fade;
|
|
24117
|
+
animation-timeline: scroll(self y);
|
|
24118
|
+
scroll-snap-type: y mandatory;
|
|
24119
|
+
scrollbar-width: none;
|
|
24120
|
+
|
|
24121
|
+
&::-webkit-scrollbar {
|
|
24122
|
+
display: none;
|
|
24123
|
+
}
|
|
24124
|
+
}
|
|
24125
|
+
|
|
24126
|
+
@keyframes scroll-fade {
|
|
24127
|
+
0% {
|
|
24128
|
+
--top-fade: 0px;
|
|
24129
|
+
}
|
|
24130
|
+
10%, 100% {
|
|
24131
|
+
--top-fade: var(--ease-panel-fade-size);
|
|
24132
|
+
}
|
|
24133
|
+
0%, 90% {
|
|
24134
|
+
--bottom-fade: var(--ease-panel-fade-size);
|
|
24135
|
+
}
|
|
24136
|
+
100% {
|
|
24137
|
+
--bottom-fade: 0px;
|
|
24138
|
+
}
|
|
23019
24139
|
}
|
|
23020
24140
|
|
|
23021
24141
|
[part="tab-panel"] {
|
|
@@ -23039,7 +24159,7 @@ _dec76 = Component({
|
|
|
23039
24159
|
align-items: center;
|
|
23040
24160
|
justify-content: space-between;
|
|
23041
24161
|
width: 100%;
|
|
23042
|
-
padding: var(--ease-panel-footer-padding
|
|
24162
|
+
padding: var(--ease-panel-footer-padding);
|
|
23043
24163
|
box-sizing: border-box;
|
|
23044
24164
|
border-top: 1px solid var(--color-white-4);
|
|
23045
24165
|
|
|
@@ -23048,15 +24168,14 @@ _dec76 = Component({
|
|
|
23048
24168
|
}
|
|
23049
24169
|
}
|
|
23050
24170
|
|
|
23051
|
-
|
|
23052
|
-
::slotted([slot^="tab-"]) {
|
|
24171
|
+
[part="items"] {
|
|
23053
24172
|
display: grid;
|
|
23054
|
-
gap:
|
|
24173
|
+
grid-gap: var(--ease-panel-gap);
|
|
23055
24174
|
box-sizing: border-box;
|
|
23056
24175
|
width: 100%;
|
|
23057
24176
|
}
|
|
23058
24177
|
`
|
|
23059
|
-
}),
|
|
24178
|
+
}), _dec124 = Prop({
|
|
23060
24179
|
type: Number,
|
|
23061
24180
|
reflect: true,
|
|
23062
24181
|
attribute: "active-tab",
|
|
@@ -23067,42 +24186,60 @@ _dec76 = Component({
|
|
|
23067
24186
|
self.handleActiveTabChange(previous, next);
|
|
23068
24187
|
}
|
|
23069
24188
|
}
|
|
23070
|
-
}),
|
|
24189
|
+
}), _dec217 = Prop({
|
|
24190
|
+
reflect: true,
|
|
24191
|
+
attribute: "headline",
|
|
24192
|
+
defaultValue: ""
|
|
24193
|
+
}), _dec314 = Prop({
|
|
24194
|
+
reflect: true,
|
|
24195
|
+
attribute: "max-height",
|
|
24196
|
+
defaultValue: null
|
|
24197
|
+
}), _dec413 = Query('[part="content"]'), _dec512 = Query('[part="body"]'), _dec611 = Listen("slotchange", {
|
|
23071
24198
|
selector: 'slot[name="footer"]'
|
|
23072
|
-
}),
|
|
24199
|
+
}), _dec710 = Listen("slotchange", {
|
|
23073
24200
|
selector: "slot:not([name])"
|
|
23074
24201
|
});
|
|
23075
|
-
var Panel = class extends (
|
|
24202
|
+
var Panel = class extends (_HTMLElement40 = HTMLElement) {
|
|
23076
24203
|
static {
|
|
23077
|
-
({ e: [_init_activeTab, _init_contentElement, _init_bodyElement,
|
|
24204
|
+
({ e: [_init_activeTab, _init_headline2, _init_maxHeight3, _init_contentElement, _init_bodyElement, _initProto19], c: [_Panel, _initClass40] } = _apply_decs_2203_r40(this, [
|
|
23078
24205
|
[
|
|
23079
|
-
|
|
24206
|
+
_dec124,
|
|
23080
24207
|
1,
|
|
23081
24208
|
"activeTab"
|
|
23082
24209
|
],
|
|
23083
24210
|
[
|
|
23084
|
-
|
|
24211
|
+
_dec217,
|
|
23085
24212
|
1,
|
|
23086
|
-
"
|
|
24213
|
+
"headline"
|
|
23087
24214
|
],
|
|
23088
24215
|
[
|
|
23089
24216
|
_dec314,
|
|
23090
24217
|
1,
|
|
23091
|
-
"
|
|
24218
|
+
"maxHeight"
|
|
23092
24219
|
],
|
|
23093
24220
|
[
|
|
23094
24221
|
_dec413,
|
|
24222
|
+
1,
|
|
24223
|
+
"contentElement"
|
|
24224
|
+
],
|
|
24225
|
+
[
|
|
24226
|
+
_dec512,
|
|
24227
|
+
1,
|
|
24228
|
+
"bodyElement"
|
|
24229
|
+
],
|
|
24230
|
+
[
|
|
24231
|
+
_dec611,
|
|
23095
24232
|
2,
|
|
23096
24233
|
"onFooterSlotChange"
|
|
23097
24234
|
],
|
|
23098
24235
|
[
|
|
23099
|
-
|
|
24236
|
+
_dec710,
|
|
23100
24237
|
2,
|
|
23101
24238
|
"onDefaultSlotChange"
|
|
23102
24239
|
]
|
|
23103
24240
|
], [
|
|
23104
|
-
|
|
23105
|
-
],
|
|
24241
|
+
_dec79
|
|
24242
|
+
], _HTMLElement40));
|
|
23106
24243
|
}
|
|
23107
24244
|
#tabs;
|
|
23108
24245
|
#isAnimating;
|
|
@@ -23113,23 +24250,37 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23113
24250
|
set activeTab(_v) {
|
|
23114
24251
|
this.#___private_activeTab_1 = _v;
|
|
23115
24252
|
}
|
|
24253
|
+
#___private_headline_2;
|
|
24254
|
+
get headline() {
|
|
24255
|
+
return this.#___private_headline_2;
|
|
24256
|
+
}
|
|
24257
|
+
set headline(_v) {
|
|
24258
|
+
this.#___private_headline_2 = _v;
|
|
24259
|
+
}
|
|
24260
|
+
#___private_maxHeight_3;
|
|
24261
|
+
get maxHeight() {
|
|
24262
|
+
return this.#___private_maxHeight_3;
|
|
24263
|
+
}
|
|
24264
|
+
set maxHeight(_v) {
|
|
24265
|
+
this.#___private_maxHeight_3 = _v;
|
|
24266
|
+
}
|
|
23116
24267
|
/** @internal */
|
|
23117
24268
|
handleActiveTabChange(previous, next) {
|
|
23118
24269
|
this.performTabAnimation(previous, next);
|
|
23119
24270
|
}
|
|
23120
|
-
#
|
|
24271
|
+
#___private_contentElement_4;
|
|
23121
24272
|
get contentElement() {
|
|
23122
|
-
return this.#
|
|
24273
|
+
return this.#___private_contentElement_4;
|
|
23123
24274
|
}
|
|
23124
24275
|
set contentElement(_v) {
|
|
23125
|
-
this.#
|
|
24276
|
+
this.#___private_contentElement_4 = _v;
|
|
23126
24277
|
}
|
|
23127
|
-
#
|
|
24278
|
+
#___private_bodyElement_5;
|
|
23128
24279
|
get bodyElement() {
|
|
23129
|
-
return this.#
|
|
24280
|
+
return this.#___private_bodyElement_5;
|
|
23130
24281
|
}
|
|
23131
24282
|
set bodyElement(_v) {
|
|
23132
|
-
this.#
|
|
24283
|
+
this.#___private_bodyElement_5 = _v;
|
|
23133
24284
|
}
|
|
23134
24285
|
/**
|
|
23135
24286
|
* Get the tab configuration
|
|
@@ -23154,18 +24305,18 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23154
24305
|
}
|
|
23155
24306
|
render() {
|
|
23156
24307
|
const hasTabs = this.#tabs.length > 0;
|
|
23157
|
-
return
|
|
24308
|
+
return import_lit_html42.html`
|
|
23158
24309
|
<section part="section">
|
|
23159
24310
|
<div part="header">
|
|
23160
|
-
<h3 part="headline"
|
|
24311
|
+
<h3 part="headline">${this.headline}</h3>
|
|
23161
24312
|
${this.#renderTabs()}
|
|
23162
24313
|
<div part="actions">
|
|
23163
24314
|
<slot name="actions"></slot>
|
|
23164
24315
|
</div>
|
|
23165
24316
|
</div>
|
|
23166
24317
|
<div part="content">
|
|
23167
|
-
<div part="body">
|
|
23168
|
-
${hasTabs ? this.#renderTabPanels() :
|
|
24318
|
+
<div part="body" style=${this.maxHeight ? `max-height: ${this.maxHeight};` : ""}>
|
|
24319
|
+
${hasTabs ? this.#renderTabPanels() : import_lit_html42.html`<div part="items"><slot></slot></div>`}
|
|
23169
24320
|
</div>
|
|
23170
24321
|
</div>
|
|
23171
24322
|
<div part="footer">
|
|
@@ -23176,11 +24327,11 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23176
24327
|
}
|
|
23177
24328
|
#renderTabs() {
|
|
23178
24329
|
if (this.#tabs.length === 0) {
|
|
23179
|
-
return
|
|
24330
|
+
return import_lit_html42.nothing;
|
|
23180
24331
|
}
|
|
23181
|
-
return
|
|
24332
|
+
return import_lit_html42.html`
|
|
23182
24333
|
<div part="tabs" role="tablist">
|
|
23183
|
-
${this.#tabs.map((tab, index) =>
|
|
24334
|
+
${this.#tabs.map((tab, index) => import_lit_html42.html`
|
|
23184
24335
|
<button
|
|
23185
24336
|
part="tab"
|
|
23186
24337
|
role="tab"
|
|
@@ -23197,8 +24348,8 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23197
24348
|
`;
|
|
23198
24349
|
}
|
|
23199
24350
|
#renderTabPanels() {
|
|
23200
|
-
return
|
|
23201
|
-
${this.#tabs.map((tab, index) =>
|
|
24351
|
+
return import_lit_html42.html`
|
|
24352
|
+
${this.#tabs.map((tab, index) => import_lit_html42.html`
|
|
23202
24353
|
<div
|
|
23203
24354
|
part="tab-panel"
|
|
23204
24355
|
role="tabpanel"
|
|
@@ -23207,7 +24358,9 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23207
24358
|
data-state=${index === this.activeTab ? "active" : "hidden"}
|
|
23208
24359
|
data-index=${index}
|
|
23209
24360
|
>
|
|
23210
|
-
<
|
|
24361
|
+
<div part="items">
|
|
24362
|
+
<slot name=${`tab-${tab.id}`}></slot>
|
|
24363
|
+
</div>
|
|
23211
24364
|
</div>
|
|
23212
24365
|
`)}
|
|
23213
24366
|
`;
|
|
@@ -23382,17 +24535,17 @@ var Panel = class extends (_HTMLElement38 = HTMLElement) {
|
|
|
23382
24535
|
setBooleanAttribute(footer, "data-has-content", hasFooter);
|
|
23383
24536
|
}
|
|
23384
24537
|
static {
|
|
23385
|
-
|
|
24538
|
+
_initClass40();
|
|
23386
24539
|
}
|
|
23387
24540
|
constructor(...args) {
|
|
23388
|
-
super(...args), this.#tabs = (
|
|
24541
|
+
super(...args), this.#tabs = (_initProto19(this), []), this.#isAnimating = false, this.#___private_activeTab_1 = _init_activeTab(this, 0), this.#___private_headline_2 = _init_headline2(this, null), this.#___private_maxHeight_3 = _init_maxHeight3(this, null), this.#___private_contentElement_4 = _init_contentElement(this), this.#___private_bodyElement_5 = _init_bodyElement(this);
|
|
23389
24542
|
}
|
|
23390
24543
|
};
|
|
23391
24544
|
|
|
23392
|
-
// swc:/
|
|
23393
|
-
var
|
|
24545
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/index.ts
|
|
24546
|
+
var import_lit_html43 = require("lit-html");
|
|
23394
24547
|
|
|
23395
|
-
// swc:/
|
|
24548
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/option.ts
|
|
23396
24549
|
var RadioOption = class extends HTMLElement {
|
|
23397
24550
|
connectedCallback() {
|
|
23398
24551
|
this.hidden = true;
|
|
@@ -23405,8 +24558,8 @@ if (!customElements.get("radio-option")) {
|
|
|
23405
24558
|
customElements.define("radio-option", RadioOption);
|
|
23406
24559
|
}
|
|
23407
24560
|
|
|
23408
|
-
// swc:/
|
|
23409
|
-
function
|
|
24561
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/index.ts
|
|
24562
|
+
function applyDecs2203RFactory41() {
|
|
23410
24563
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
23411
24564
|
return function addInitializer(initializer) {
|
|
23412
24565
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -23775,19 +24928,19 @@ function applyDecs2203RFactory39() {
|
|
|
23775
24928
|
};
|
|
23776
24929
|
};
|
|
23777
24930
|
}
|
|
23778
|
-
function
|
|
23779
|
-
return (
|
|
24931
|
+
function _apply_decs_2203_r41(targetClass, memberDecs, classDecs, parentClass) {
|
|
24932
|
+
return (_apply_decs_2203_r41 = applyDecs2203RFactory41())(targetClass, memberDecs, classDecs, parentClass);
|
|
23780
24933
|
}
|
|
23781
|
-
var
|
|
23782
|
-
var
|
|
23783
|
-
var
|
|
23784
|
-
var
|
|
23785
|
-
var
|
|
24934
|
+
var _dec80;
|
|
24935
|
+
var _initClass41;
|
|
24936
|
+
var _HTMLElement41;
|
|
24937
|
+
var _dec125;
|
|
24938
|
+
var _dec218;
|
|
23786
24939
|
var _dec315;
|
|
23787
24940
|
var _init_value8;
|
|
23788
24941
|
var _init_groupElement;
|
|
23789
24942
|
var _init_contentSlot2;
|
|
23790
|
-
var
|
|
24943
|
+
var _initProto20;
|
|
23791
24944
|
var nextOptionId2 = /* @__PURE__ */ (() => {
|
|
23792
24945
|
let counter = 0;
|
|
23793
24946
|
return () => {
|
|
@@ -23803,7 +24956,7 @@ var nextPanelId2 = /* @__PURE__ */ (() => {
|
|
|
23803
24956
|
};
|
|
23804
24957
|
})();
|
|
23805
24958
|
var _RadioGroup;
|
|
23806
|
-
|
|
24959
|
+
_dec80 = Component({
|
|
23807
24960
|
tag: "ease-radio-group",
|
|
23808
24961
|
shadowMode: "open",
|
|
23809
24962
|
styles: `
|
|
@@ -23860,13 +25013,13 @@ _dec77 = Component({
|
|
|
23860
25013
|
}
|
|
23861
25014
|
`,
|
|
23862
25015
|
template() {
|
|
23863
|
-
return
|
|
25016
|
+
return import_lit_html43.html`
|
|
23864
25017
|
<div part="group">
|
|
23865
25018
|
<slot name="content"></slot>
|
|
23866
25019
|
</div>
|
|
23867
25020
|
`;
|
|
23868
25021
|
}
|
|
23869
|
-
}),
|
|
25022
|
+
}), _dec125 = Prop({
|
|
23870
25023
|
reflect: true,
|
|
23871
25024
|
defaultValue: null,
|
|
23872
25025
|
onChange(next, previous) {
|
|
@@ -23875,17 +25028,17 @@ _dec77 = Component({
|
|
|
23875
25028
|
}
|
|
23876
25029
|
this.updateOptionSelectionState();
|
|
23877
25030
|
}
|
|
23878
|
-
}),
|
|
23879
|
-
var RadioGroup = class extends (
|
|
25031
|
+
}), _dec218 = Query('[part="group"]'), _dec315 = Query('slot[name="content"]');
|
|
25032
|
+
var RadioGroup = class extends (_HTMLElement41 = HTMLElement) {
|
|
23880
25033
|
static {
|
|
23881
|
-
({ e: [_init_value8, _init_groupElement, _init_contentSlot2,
|
|
25034
|
+
({ e: [_init_value8, _init_groupElement, _init_contentSlot2, _initProto20], c: [_RadioGroup, _initClass41] } = _apply_decs_2203_r41(this, [
|
|
23882
25035
|
[
|
|
23883
|
-
|
|
25036
|
+
_dec125,
|
|
23884
25037
|
1,
|
|
23885
25038
|
"value"
|
|
23886
25039
|
],
|
|
23887
25040
|
[
|
|
23888
|
-
|
|
25041
|
+
_dec218,
|
|
23889
25042
|
1,
|
|
23890
25043
|
"groupElement"
|
|
23891
25044
|
],
|
|
@@ -23895,8 +25048,8 @@ var RadioGroup = class extends (_HTMLElement39 = HTMLElement) {
|
|
|
23895
25048
|
"contentSlot"
|
|
23896
25049
|
]
|
|
23897
25050
|
], [
|
|
23898
|
-
|
|
23899
|
-
],
|
|
25051
|
+
_dec80
|
|
25052
|
+
], _HTMLElement41));
|
|
23900
25053
|
}
|
|
23901
25054
|
#___private_value_1;
|
|
23902
25055
|
get value() {
|
|
@@ -24113,18 +25266,18 @@ var RadioGroup = class extends (_HTMLElement39 = HTMLElement) {
|
|
|
24113
25266
|
}));
|
|
24114
25267
|
}
|
|
24115
25268
|
static {
|
|
24116
|
-
|
|
25269
|
+
_initClass41();
|
|
24117
25270
|
}
|
|
24118
25271
|
constructor(...args) {
|
|
24119
|
-
super(...args), this.#___private_value_1 = (
|
|
25272
|
+
super(...args), this.#___private_value_1 = (_initProto20(this), _init_value8(this, null)), this.#___private_groupElement_2 = _init_groupElement(this), this.#___private_contentSlot_3 = _init_contentSlot2(this), this.#options = [], this.#currentSlot = null, this.#optionsInitialized = false, this.#handleSlotChange = () => {
|
|
24120
25273
|
this.#syncOptions();
|
|
24121
25274
|
};
|
|
24122
25275
|
}
|
|
24123
25276
|
};
|
|
24124
25277
|
|
|
24125
|
-
// swc:/
|
|
24126
|
-
var
|
|
24127
|
-
function
|
|
25278
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/radio/input.ts
|
|
25279
|
+
var import_lit_html44 = require("lit-html");
|
|
25280
|
+
function applyDecs2203RFactory42() {
|
|
24128
25281
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
24129
25282
|
return function addInitializer(initializer) {
|
|
24130
25283
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -24493,26 +25646,26 @@ function applyDecs2203RFactory40() {
|
|
|
24493
25646
|
};
|
|
24494
25647
|
};
|
|
24495
25648
|
}
|
|
24496
|
-
function
|
|
24497
|
-
return (
|
|
25649
|
+
function _apply_decs_2203_r42(targetClass, memberDecs, classDecs, parentClass) {
|
|
25650
|
+
return (_apply_decs_2203_r42 = applyDecs2203RFactory42())(targetClass, memberDecs, classDecs, parentClass);
|
|
24498
25651
|
}
|
|
24499
|
-
var
|
|
24500
|
-
var
|
|
24501
|
-
var
|
|
24502
|
-
var
|
|
24503
|
-
var
|
|
25652
|
+
var _dec81;
|
|
25653
|
+
var _initClass42;
|
|
25654
|
+
var _HTMLElement42;
|
|
25655
|
+
var _dec126;
|
|
25656
|
+
var _dec219;
|
|
24504
25657
|
var _dec316;
|
|
24505
25658
|
var _dec414;
|
|
24506
25659
|
var _dec513;
|
|
24507
|
-
var
|
|
25660
|
+
var _dec612;
|
|
24508
25661
|
var _init_checked2;
|
|
24509
25662
|
var _init_name6;
|
|
24510
25663
|
var _init_value9;
|
|
24511
25664
|
var _init_disabled8;
|
|
24512
25665
|
var _init_control5;
|
|
24513
|
-
var
|
|
25666
|
+
var _initProto21;
|
|
24514
25667
|
var _RadioInput;
|
|
24515
|
-
|
|
25668
|
+
_dec81 = Component({
|
|
24516
25669
|
tag: "ease-radio-input",
|
|
24517
25670
|
shadowMode: "open",
|
|
24518
25671
|
styles: `
|
|
@@ -24729,7 +25882,7 @@ _dec78 = Component({
|
|
|
24729
25882
|
}
|
|
24730
25883
|
`,
|
|
24731
25884
|
template() {
|
|
24732
|
-
return
|
|
25885
|
+
return import_lit_html44.html`
|
|
24733
25886
|
<button part="radio" type="button" role="radio" aria-checked=${this.checked} ?disabled=${this.disabled}>
|
|
24734
25887
|
<div class="radio">
|
|
24735
25888
|
<input part="control" name=${this.name} value=${this.value} ?checked=${this.checked} ?disabled=${this.disabled} type="radio" />
|
|
@@ -24752,7 +25905,7 @@ _dec78 = Component({
|
|
|
24752
25905
|
</button>
|
|
24753
25906
|
`;
|
|
24754
25907
|
}
|
|
24755
|
-
}),
|
|
25908
|
+
}), _dec126 = Prop({
|
|
24756
25909
|
type: Boolean,
|
|
24757
25910
|
reflect: true,
|
|
24758
25911
|
onChange(next) {
|
|
@@ -24767,26 +25920,26 @@ _dec78 = Component({
|
|
|
24767
25920
|
});
|
|
24768
25921
|
}
|
|
24769
25922
|
}
|
|
24770
|
-
}),
|
|
25923
|
+
}), _dec219 = Prop({
|
|
24771
25924
|
reflect: true
|
|
24772
25925
|
}), _dec316 = Prop({
|
|
24773
25926
|
reflect: true
|
|
24774
25927
|
}), _dec414 = Prop({
|
|
24775
25928
|
type: Boolean,
|
|
24776
25929
|
reflect: true
|
|
24777
|
-
}), _dec513 = Query("button"),
|
|
25930
|
+
}), _dec513 = Query("button"), _dec612 = Listen("click", {
|
|
24778
25931
|
selector: "button"
|
|
24779
25932
|
});
|
|
24780
|
-
var RadioInput = class extends (
|
|
25933
|
+
var RadioInput = class extends (_HTMLElement42 = HTMLElement) {
|
|
24781
25934
|
static {
|
|
24782
|
-
({ e: [_init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5,
|
|
25935
|
+
({ e: [_init_checked2, _init_name6, _init_value9, _init_disabled8, _init_control5, _initProto21], c: [_RadioInput, _initClass42] } = _apply_decs_2203_r42(this, [
|
|
24783
25936
|
[
|
|
24784
|
-
|
|
25937
|
+
_dec126,
|
|
24785
25938
|
1,
|
|
24786
25939
|
"checked"
|
|
24787
25940
|
],
|
|
24788
25941
|
[
|
|
24789
|
-
|
|
25942
|
+
_dec219,
|
|
24790
25943
|
1,
|
|
24791
25944
|
"name"
|
|
24792
25945
|
],
|
|
@@ -24806,13 +25959,13 @@ var RadioInput = class extends (_HTMLElement40 = HTMLElement) {
|
|
|
24806
25959
|
"control"
|
|
24807
25960
|
],
|
|
24808
25961
|
[
|
|
24809
|
-
|
|
25962
|
+
_dec612,
|
|
24810
25963
|
2,
|
|
24811
25964
|
"handleClick"
|
|
24812
25965
|
]
|
|
24813
25966
|
], [
|
|
24814
|
-
|
|
24815
|
-
],
|
|
25967
|
+
_dec81
|
|
25968
|
+
], _HTMLElement42));
|
|
24816
25969
|
}
|
|
24817
25970
|
#___private_checked_1;
|
|
24818
25971
|
get checked() {
|
|
@@ -24900,16 +26053,16 @@ var RadioInput = class extends (_HTMLElement40 = HTMLElement) {
|
|
|
24900
26053
|
});
|
|
24901
26054
|
}
|
|
24902
26055
|
static {
|
|
24903
|
-
|
|
26056
|
+
_initClass42();
|
|
24904
26057
|
}
|
|
24905
26058
|
constructor(...args) {
|
|
24906
|
-
super(...args), this.#___private_checked_1 = (
|
|
26059
|
+
super(...args), this.#___private_checked_1 = (_initProto21(this), _init_checked2(this)), this.#___private_name_2 = _init_name6(this), this.#___private_value_3 = _init_value9(this), this.#___private_disabled_4 = _init_disabled8(this), this.#___private_control_5 = _init_control5(this), this._firstRender = true, this.filterId = `goo-${crypto.randomUUID()}`;
|
|
24907
26060
|
}
|
|
24908
26061
|
};
|
|
24909
26062
|
|
|
24910
|
-
// swc:/
|
|
24911
|
-
var
|
|
24912
|
-
function
|
|
26063
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/slider/index.ts
|
|
26064
|
+
var import_lit_html45 = require("lit-html");
|
|
26065
|
+
function applyDecs2203RFactory43() {
|
|
24913
26066
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
24914
26067
|
return function addInitializer(initializer) {
|
|
24915
26068
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -25278,20 +26431,20 @@ function applyDecs2203RFactory41() {
|
|
|
25278
26431
|
};
|
|
25279
26432
|
};
|
|
25280
26433
|
}
|
|
25281
|
-
function
|
|
25282
|
-
return (
|
|
26434
|
+
function _apply_decs_2203_r43(targetClass, memberDecs, classDecs, parentClass) {
|
|
26435
|
+
return (_apply_decs_2203_r43 = applyDecs2203RFactory43())(targetClass, memberDecs, classDecs, parentClass);
|
|
25283
26436
|
}
|
|
25284
|
-
var
|
|
25285
|
-
var
|
|
25286
|
-
var
|
|
25287
|
-
var
|
|
25288
|
-
var
|
|
26437
|
+
var _dec85;
|
|
26438
|
+
var _initClass43;
|
|
26439
|
+
var _HTMLElement43;
|
|
26440
|
+
var _dec127;
|
|
26441
|
+
var _dec220;
|
|
25289
26442
|
var _dec317;
|
|
25290
26443
|
var _dec415;
|
|
25291
26444
|
var _dec514;
|
|
25292
|
-
var
|
|
25293
|
-
var
|
|
25294
|
-
var
|
|
26445
|
+
var _dec613;
|
|
26446
|
+
var _dec711;
|
|
26447
|
+
var _dec86;
|
|
25295
26448
|
var _dec95;
|
|
25296
26449
|
var _dec104;
|
|
25297
26450
|
var _dec1110;
|
|
@@ -25302,9 +26455,9 @@ var _init_step2;
|
|
|
25302
26455
|
var _init_disabled9;
|
|
25303
26456
|
var _init_control6;
|
|
25304
26457
|
var _init_valueControl;
|
|
25305
|
-
var
|
|
26458
|
+
var _initProto22;
|
|
25306
26459
|
var _Slider;
|
|
25307
|
-
|
|
26460
|
+
_dec85 = Component({
|
|
25308
26461
|
tag: "ease-slider",
|
|
25309
26462
|
styles: `
|
|
25310
26463
|
:host {
|
|
@@ -25405,7 +26558,7 @@ _dec79 = Component({
|
|
|
25405
26558
|
}
|
|
25406
26559
|
`,
|
|
25407
26560
|
template() {
|
|
25408
|
-
return
|
|
26561
|
+
return import_lit_html45.html`
|
|
25409
26562
|
<div part="container">
|
|
25410
26563
|
<input
|
|
25411
26564
|
part="control"
|
|
@@ -25428,10 +26581,10 @@ _dec79 = Component({
|
|
|
25428
26581
|
</div>
|
|
25429
26582
|
`;
|
|
25430
26583
|
}
|
|
25431
|
-
}),
|
|
26584
|
+
}), _dec127 = Prop({
|
|
25432
26585
|
type: Number,
|
|
25433
26586
|
reflect: true
|
|
25434
|
-
}),
|
|
26587
|
+
}), _dec220 = Prop({
|
|
25435
26588
|
type: Number,
|
|
25436
26589
|
reflect: true
|
|
25437
26590
|
}), _dec317 = Prop({
|
|
@@ -25443,7 +26596,7 @@ _dec79 = Component({
|
|
|
25443
26596
|
}), _dec514 = Prop({
|
|
25444
26597
|
type: Boolean,
|
|
25445
26598
|
reflect: true
|
|
25446
|
-
}),
|
|
26599
|
+
}), _dec613 = Query("input"), _dec711 = Query("ease-input"), _dec86 = Listen("input", {
|
|
25447
26600
|
selector: 'input[type="range"]'
|
|
25448
26601
|
}), _dec95 = Listen("change", {
|
|
25449
26602
|
selector: 'input[type="range"]'
|
|
@@ -25454,16 +26607,16 @@ _dec79 = Component({
|
|
|
25454
26607
|
selector: "ease-input",
|
|
25455
26608
|
when: (event) => event instanceof CustomEvent && typeof event.detail?.value === "string"
|
|
25456
26609
|
});
|
|
25457
|
-
var Slider = class extends (
|
|
26610
|
+
var Slider = class extends (_HTMLElement43 = HTMLElement) {
|
|
25458
26611
|
static {
|
|
25459
|
-
({ e: [_init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl,
|
|
26612
|
+
({ e: [_init_value10, _init_min2, _init_max2, _init_step2, _init_disabled9, _init_control6, _init_valueControl, _initProto22], c: [_Slider, _initClass43] } = _apply_decs_2203_r43(this, [
|
|
25460
26613
|
[
|
|
25461
|
-
|
|
26614
|
+
_dec127,
|
|
25462
26615
|
1,
|
|
25463
26616
|
"value"
|
|
25464
26617
|
],
|
|
25465
26618
|
[
|
|
25466
|
-
|
|
26619
|
+
_dec220,
|
|
25467
26620
|
1,
|
|
25468
26621
|
"min"
|
|
25469
26622
|
],
|
|
@@ -25483,17 +26636,17 @@ var Slider = class extends (_HTMLElement41 = HTMLElement) {
|
|
|
25483
26636
|
"disabled"
|
|
25484
26637
|
],
|
|
25485
26638
|
[
|
|
25486
|
-
|
|
26639
|
+
_dec613,
|
|
25487
26640
|
1,
|
|
25488
26641
|
"control"
|
|
25489
26642
|
],
|
|
25490
26643
|
[
|
|
25491
|
-
|
|
26644
|
+
_dec711,
|
|
25492
26645
|
1,
|
|
25493
26646
|
"valueControl"
|
|
25494
26647
|
],
|
|
25495
26648
|
[
|
|
25496
|
-
|
|
26649
|
+
_dec86,
|
|
25497
26650
|
2,
|
|
25498
26651
|
"handleRangeInput"
|
|
25499
26652
|
],
|
|
@@ -25513,8 +26666,8 @@ var Slider = class extends (_HTMLElement41 = HTMLElement) {
|
|
|
25513
26666
|
"handleValueChange"
|
|
25514
26667
|
]
|
|
25515
26668
|
], [
|
|
25516
|
-
|
|
25517
|
-
],
|
|
26669
|
+
_dec85
|
|
26670
|
+
], _HTMLElement43));
|
|
25518
26671
|
}
|
|
25519
26672
|
#___private_value_1;
|
|
25520
26673
|
get value() {
|
|
@@ -25647,16 +26800,16 @@ var Slider = class extends (_HTMLElement41 = HTMLElement) {
|
|
|
25647
26800
|
this.control.style.setProperty("--progress", `${Math.max(0, Math.min(100, percent))}%`);
|
|
25648
26801
|
}
|
|
25649
26802
|
static {
|
|
25650
|
-
|
|
26803
|
+
_initClass43();
|
|
25651
26804
|
}
|
|
25652
26805
|
constructor(...args) {
|
|
25653
|
-
super(...args), this.#___private_value_1 = (
|
|
26806
|
+
super(...args), this.#___private_value_1 = (_initProto22(this), _init_value10(this)), this.#___private_min_2 = _init_min2(this), this.#___private_max_3 = _init_max2(this), this.#___private_step_4 = _init_step2(this), this.#___private_disabled_5 = _init_disabled9(this), this.#___private_control_6 = _init_control6(this), this.#___private_valueControl_7 = _init_valueControl(this);
|
|
25654
26807
|
}
|
|
25655
26808
|
};
|
|
25656
26809
|
|
|
25657
|
-
// swc:/
|
|
25658
|
-
var
|
|
25659
|
-
function
|
|
26810
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/state/index.ts
|
|
26811
|
+
var import_lit_html46 = require("lit-html");
|
|
26812
|
+
function applyDecs2203RFactory44() {
|
|
25660
26813
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
25661
26814
|
return function addInitializer(initializer) {
|
|
25662
26815
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -26025,20 +27178,20 @@ function applyDecs2203RFactory42() {
|
|
|
26025
27178
|
};
|
|
26026
27179
|
};
|
|
26027
27180
|
}
|
|
26028
|
-
function
|
|
26029
|
-
return (
|
|
27181
|
+
function _apply_decs_2203_r44(targetClass, memberDecs, classDecs, parentClass) {
|
|
27182
|
+
return (_apply_decs_2203_r44 = applyDecs2203RFactory44())(targetClass, memberDecs, classDecs, parentClass);
|
|
26030
27183
|
}
|
|
26031
|
-
var
|
|
26032
|
-
var
|
|
26033
|
-
var
|
|
26034
|
-
var
|
|
26035
|
-
var
|
|
27184
|
+
var _dec87;
|
|
27185
|
+
var _initClass44;
|
|
27186
|
+
var _HTMLElement44;
|
|
27187
|
+
var _dec128;
|
|
27188
|
+
var _dec221;
|
|
26036
27189
|
var _dec318;
|
|
26037
27190
|
var _dec416;
|
|
26038
27191
|
var _dec515;
|
|
26039
27192
|
var _init_value11;
|
|
26040
27193
|
var _init_defaultSlot;
|
|
26041
|
-
var
|
|
27194
|
+
var _initProto23;
|
|
26042
27195
|
var readControlValue2 = (element) => {
|
|
26043
27196
|
if (typeof element.value === "string" || typeof element.value === "number") {
|
|
26044
27197
|
return element.value;
|
|
@@ -26061,7 +27214,7 @@ var getControlName = (element) => {
|
|
|
26061
27214
|
return element.getAttribute?.("name") ?? null;
|
|
26062
27215
|
};
|
|
26063
27216
|
var _State;
|
|
26064
|
-
|
|
27217
|
+
_dec87 = Component({
|
|
26065
27218
|
tag: "ease-state",
|
|
26066
27219
|
shadowMode: "open",
|
|
26067
27220
|
styles: `
|
|
@@ -26071,30 +27224,30 @@ _dec80 = Component({
|
|
|
26071
27224
|
|
|
26072
27225
|
[part="container"] {
|
|
26073
27226
|
display: grid;
|
|
26074
|
-
gap: var(--ease-
|
|
27227
|
+
grid-gap: var(--ease-panel-gap);
|
|
26075
27228
|
box-sizing: border-box;
|
|
26076
27229
|
width: 100%;
|
|
26077
27230
|
}
|
|
26078
27231
|
`
|
|
26079
|
-
}),
|
|
27232
|
+
}), _dec128 = Prop({
|
|
26080
27233
|
reflect: true
|
|
26081
|
-
}),
|
|
27234
|
+
}), _dec221 = Query("slot"), _dec318 = Listen("input", {
|
|
26082
27235
|
target: (host) => host
|
|
26083
27236
|
}), _dec416 = Listen("change", {
|
|
26084
27237
|
target: (host) => host
|
|
26085
27238
|
}), _dec515 = Listen(CONTROL_CHANGE_EVENT, {
|
|
26086
27239
|
target: (host) => host
|
|
26087
27240
|
});
|
|
26088
|
-
var State = class extends (
|
|
27241
|
+
var State = class extends (_HTMLElement44 = HTMLElement) {
|
|
26089
27242
|
static {
|
|
26090
|
-
({ e: [_init_value11, _init_defaultSlot,
|
|
27243
|
+
({ e: [_init_value11, _init_defaultSlot, _initProto23], c: [_State, _initClass44] } = _apply_decs_2203_r44(this, [
|
|
26091
27244
|
[
|
|
26092
|
-
|
|
27245
|
+
_dec128,
|
|
26093
27246
|
1,
|
|
26094
27247
|
"value"
|
|
26095
27248
|
],
|
|
26096
27249
|
[
|
|
26097
|
-
|
|
27250
|
+
_dec221,
|
|
26098
27251
|
1,
|
|
26099
27252
|
"defaultSlot"
|
|
26100
27253
|
],
|
|
@@ -26114,8 +27267,8 @@ var State = class extends (_HTMLElement42 = HTMLElement) {
|
|
|
26114
27267
|
"handleControlChange"
|
|
26115
27268
|
]
|
|
26116
27269
|
], [
|
|
26117
|
-
|
|
26118
|
-
],
|
|
27270
|
+
_dec87
|
|
27271
|
+
], _HTMLElement44));
|
|
26119
27272
|
}
|
|
26120
27273
|
#controls;
|
|
26121
27274
|
#state;
|
|
@@ -26207,7 +27360,7 @@ var State = class extends (_HTMLElement42 = HTMLElement) {
|
|
|
26207
27360
|
this.defaultSlot?.removeEventListener("slotchange", this.#handleSlotChange);
|
|
26208
27361
|
}
|
|
26209
27362
|
render() {
|
|
26210
|
-
return
|
|
27363
|
+
return import_lit_html46.html`
|
|
26211
27364
|
<div part="container">
|
|
26212
27365
|
<slot></slot>
|
|
26213
27366
|
</div>
|
|
@@ -26313,19 +27466,19 @@ var State = class extends (_HTMLElement42 = HTMLElement) {
|
|
|
26313
27466
|
});
|
|
26314
27467
|
}
|
|
26315
27468
|
static {
|
|
26316
|
-
|
|
27469
|
+
_initClass44();
|
|
26317
27470
|
}
|
|
26318
27471
|
constructor(...args) {
|
|
26319
|
-
super(...args), this.#controls = (
|
|
27472
|
+
super(...args), this.#controls = (_initProto23(this), /* @__PURE__ */ new Map()), this.#state = {}, this.#initialState = {}, this.#subscribers = /* @__PURE__ */ new Map(), this.#___private_value_1 = _init_value11(this), this.#___private_defaultSlot_2 = _init_defaultSlot(this), this.#handleSlotChange = () => {
|
|
26320
27473
|
this.#detach();
|
|
26321
27474
|
this.#attach();
|
|
26322
27475
|
};
|
|
26323
27476
|
}
|
|
26324
27477
|
};
|
|
26325
27478
|
|
|
26326
|
-
// swc:/
|
|
26327
|
-
var
|
|
26328
|
-
function
|
|
27479
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/toggle/index.ts
|
|
27480
|
+
var import_lit_html47 = require("lit-html");
|
|
27481
|
+
function applyDecs2203RFactory45() {
|
|
26329
27482
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
26330
27483
|
return function addInitializer(initializer) {
|
|
26331
27484
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -26694,22 +27847,22 @@ function applyDecs2203RFactory43() {
|
|
|
26694
27847
|
};
|
|
26695
27848
|
};
|
|
26696
27849
|
}
|
|
26697
|
-
function
|
|
26698
|
-
return (
|
|
27850
|
+
function _apply_decs_2203_r45(targetClass, memberDecs, classDecs, parentClass) {
|
|
27851
|
+
return (_apply_decs_2203_r45 = applyDecs2203RFactory45())(targetClass, memberDecs, classDecs, parentClass);
|
|
26699
27852
|
}
|
|
26700
|
-
var
|
|
26701
|
-
var
|
|
26702
|
-
var
|
|
26703
|
-
var
|
|
26704
|
-
var
|
|
27853
|
+
var _dec88;
|
|
27854
|
+
var _initClass45;
|
|
27855
|
+
var _HTMLElement45;
|
|
27856
|
+
var _dec129;
|
|
27857
|
+
var _dec222;
|
|
26705
27858
|
var _dec319;
|
|
26706
27859
|
var _dec417;
|
|
26707
27860
|
var _init_checked3;
|
|
26708
27861
|
var _init_disabled10;
|
|
26709
27862
|
var _init_control7;
|
|
26710
|
-
var
|
|
27863
|
+
var _initProto24;
|
|
26711
27864
|
var _Toggle;
|
|
26712
|
-
|
|
27865
|
+
_dec88 = Component({
|
|
26713
27866
|
tag: "ease-toggle",
|
|
26714
27867
|
styles: `
|
|
26715
27868
|
:host {
|
|
@@ -26802,7 +27955,7 @@ _dec81 = Component({
|
|
|
26802
27955
|
}
|
|
26803
27956
|
`,
|
|
26804
27957
|
template() {
|
|
26805
|
-
return
|
|
27958
|
+
return import_lit_html47.html`
|
|
26806
27959
|
<button part="control" type="button" aria-pressed="false">
|
|
26807
27960
|
<svg viewBox="0 0 26 12" fill="none" xmlns="http://www.w3.org/2000/svg" filter="url(#${this.filterId})">
|
|
26808
27961
|
<path part="default" d="M0 6C0 2.68629 2.68629 0 6 0V0C9.31371 0 12 2.68629 12 6V6C12 9.31371 9.31371 12 6 12V12C2.68629 12 0 9.31371 0 6V6Z" />
|
|
@@ -26821,25 +27974,25 @@ _dec81 = Component({
|
|
|
26821
27974
|
</button>
|
|
26822
27975
|
`;
|
|
26823
27976
|
}
|
|
26824
|
-
}),
|
|
27977
|
+
}), _dec129 = Prop({
|
|
26825
27978
|
type: Boolean,
|
|
26826
27979
|
reflect: true
|
|
26827
|
-
}),
|
|
27980
|
+
}), _dec222 = Prop({
|
|
26828
27981
|
type: Boolean,
|
|
26829
27982
|
reflect: true
|
|
26830
27983
|
}), _dec319 = Query("button"), _dec417 = Listen("click", {
|
|
26831
27984
|
selector: "button"
|
|
26832
27985
|
});
|
|
26833
|
-
var Toggle = class extends (
|
|
27986
|
+
var Toggle = class extends (_HTMLElement45 = HTMLElement) {
|
|
26834
27987
|
static {
|
|
26835
|
-
({ e: [_init_checked3, _init_disabled10, _init_control7,
|
|
27988
|
+
({ e: [_init_checked3, _init_disabled10, _init_control7, _initProto24], c: [_Toggle, _initClass45] } = _apply_decs_2203_r45(this, [
|
|
26836
27989
|
[
|
|
26837
|
-
|
|
27990
|
+
_dec129,
|
|
26838
27991
|
1,
|
|
26839
27992
|
"checked"
|
|
26840
27993
|
],
|
|
26841
27994
|
[
|
|
26842
|
-
|
|
27995
|
+
_dec222,
|
|
26843
27996
|
1,
|
|
26844
27997
|
"disabled"
|
|
26845
27998
|
],
|
|
@@ -26854,8 +28007,8 @@ var Toggle = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26854
28007
|
"handleClick"
|
|
26855
28008
|
]
|
|
26856
28009
|
], [
|
|
26857
|
-
|
|
26858
|
-
],
|
|
28010
|
+
_dec88
|
|
28011
|
+
], _HTMLElement45));
|
|
26859
28012
|
}
|
|
26860
28013
|
#___private_checked_1;
|
|
26861
28014
|
get checked() {
|
|
@@ -26900,16 +28053,16 @@ var Toggle = class extends (_HTMLElement43 = HTMLElement) {
|
|
|
26900
28053
|
});
|
|
26901
28054
|
}
|
|
26902
28055
|
static {
|
|
26903
|
-
|
|
28056
|
+
_initClass45();
|
|
26904
28057
|
}
|
|
26905
28058
|
constructor(...args) {
|
|
26906
|
-
super(...args), this.#___private_checked_1 = (
|
|
28059
|
+
super(...args), this.#___private_checked_1 = (_initProto24(this), _init_checked3(this)), this.#___private_disabled_2 = _init_disabled10(this), this.#___private_control_3 = _init_control7(this), this.filterId = `filter-${crypto.randomUUID()}`;
|
|
26907
28060
|
}
|
|
26908
28061
|
};
|
|
26909
28062
|
|
|
26910
|
-
// swc:/
|
|
26911
|
-
var
|
|
26912
|
-
function
|
|
28063
|
+
// swc:/Users/aaroniker/Documents/GitHub/ease/web-kit/packages/core/src/elements/tooltip/index.ts
|
|
28064
|
+
var import_lit_html48 = require("lit-html");
|
|
28065
|
+
function applyDecs2203RFactory46() {
|
|
26913
28066
|
function createAddInitializerMethod(initializers, decoratorFinishedRef) {
|
|
26914
28067
|
return function addInitializer(initializer) {
|
|
26915
28068
|
assertNotFinished(decoratorFinishedRef, "addInitializer");
|
|
@@ -27278,26 +28431,26 @@ function applyDecs2203RFactory44() {
|
|
|
27278
28431
|
};
|
|
27279
28432
|
};
|
|
27280
28433
|
}
|
|
27281
|
-
function
|
|
27282
|
-
return (
|
|
28434
|
+
function _apply_decs_2203_r46(targetClass, memberDecs, classDecs, parentClass) {
|
|
28435
|
+
return (_apply_decs_2203_r46 = applyDecs2203RFactory46())(targetClass, memberDecs, classDecs, parentClass);
|
|
27283
28436
|
}
|
|
27284
|
-
var
|
|
27285
|
-
var
|
|
27286
|
-
var
|
|
27287
|
-
var
|
|
27288
|
-
var
|
|
28437
|
+
var _dec89;
|
|
28438
|
+
var _initClass46;
|
|
28439
|
+
var _HTMLElement46;
|
|
28440
|
+
var _dec130;
|
|
28441
|
+
var _dec223;
|
|
27289
28442
|
var _dec320;
|
|
27290
28443
|
var _dec418;
|
|
27291
28444
|
var _dec516;
|
|
27292
|
-
var
|
|
27293
|
-
var
|
|
28445
|
+
var _dec614;
|
|
28446
|
+
var _init_open4;
|
|
27294
28447
|
var _init_delay;
|
|
27295
28448
|
var _init_placement4;
|
|
27296
28449
|
var _init_triggerElement;
|
|
27297
28450
|
var _init_contentElement2;
|
|
27298
|
-
var
|
|
28451
|
+
var _initProto25;
|
|
27299
28452
|
var _Tooltip;
|
|
27300
|
-
|
|
28453
|
+
_dec89 = Component({
|
|
27301
28454
|
tag: "ease-tooltip",
|
|
27302
28455
|
shadowMode: "open",
|
|
27303
28456
|
styles: `
|
|
@@ -27327,36 +28480,36 @@ _dec86 = Component({
|
|
|
27327
28480
|
display: block;
|
|
27328
28481
|
}
|
|
27329
28482
|
`
|
|
27330
|
-
}),
|
|
28483
|
+
}), _dec130 = Prop({
|
|
27331
28484
|
type: Boolean,
|
|
27332
28485
|
reflect: true,
|
|
27333
28486
|
onChange(next, previous) {
|
|
27334
28487
|
this._handleOpenChange(next, previous);
|
|
27335
28488
|
}
|
|
27336
|
-
}),
|
|
28489
|
+
}), _dec223 = Prop({
|
|
27337
28490
|
type: Number,
|
|
27338
28491
|
reflect: true,
|
|
27339
28492
|
defaultValue: 300
|
|
27340
28493
|
}), _dec320 = Prop({
|
|
27341
28494
|
reflect: true,
|
|
27342
28495
|
defaultValue: "top-center"
|
|
27343
|
-
}), _dec418 = Query('[slot="trigger"]'), _dec516 = Query("[data-tooltip-content]"),
|
|
28496
|
+
}), _dec418 = Query('[slot="trigger"]'), _dec516 = Query("[data-tooltip-content]"), _dec614 = OutsideClick({
|
|
27344
28497
|
content: (host) => host.contentElement,
|
|
27345
28498
|
triggers: (host) => [
|
|
27346
28499
|
host.triggerElement
|
|
27347
28500
|
],
|
|
27348
28501
|
disabled: (host) => !host.open
|
|
27349
28502
|
});
|
|
27350
|
-
var Tooltip = class extends (
|
|
28503
|
+
var Tooltip = class extends (_HTMLElement46 = HTMLElement) {
|
|
27351
28504
|
static {
|
|
27352
|
-
({ e: [
|
|
28505
|
+
({ e: [_init_open4, _init_delay, _init_placement4, _init_triggerElement, _init_contentElement2, _initProto25], c: [_Tooltip, _initClass46] } = _apply_decs_2203_r46(this, [
|
|
27353
28506
|
[
|
|
27354
|
-
|
|
28507
|
+
_dec130,
|
|
27355
28508
|
1,
|
|
27356
28509
|
"open"
|
|
27357
28510
|
],
|
|
27358
28511
|
[
|
|
27359
|
-
|
|
28512
|
+
_dec223,
|
|
27360
28513
|
1,
|
|
27361
28514
|
"delay"
|
|
27362
28515
|
],
|
|
@@ -27376,13 +28529,13 @@ var Tooltip = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27376
28529
|
"contentElement"
|
|
27377
28530
|
],
|
|
27378
28531
|
[
|
|
27379
|
-
|
|
28532
|
+
_dec614,
|
|
27380
28533
|
2,
|
|
27381
28534
|
"handleOutsideDismiss"
|
|
27382
28535
|
]
|
|
27383
28536
|
], [
|
|
27384
|
-
|
|
27385
|
-
],
|
|
28537
|
+
_dec89
|
|
28538
|
+
], _HTMLElement46));
|
|
27386
28539
|
}
|
|
27387
28540
|
#hoverTimer;
|
|
27388
28541
|
#trigger;
|
|
@@ -27449,7 +28602,7 @@ var Tooltip = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27449
28602
|
}
|
|
27450
28603
|
}
|
|
27451
28604
|
render() {
|
|
27452
|
-
return
|
|
28605
|
+
return import_lit_html48.html`
|
|
27453
28606
|
<ease-popover .placement=${this.placement} ?open=${this.open}>
|
|
27454
28607
|
<slot name="trigger" slot="trigger"></slot>
|
|
27455
28608
|
<div
|
|
@@ -27529,10 +28682,10 @@ var Tooltip = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27529
28682
|
}
|
|
27530
28683
|
}
|
|
27531
28684
|
static {
|
|
27532
|
-
|
|
28685
|
+
_initClass46();
|
|
27533
28686
|
}
|
|
27534
28687
|
constructor(...args) {
|
|
27535
|
-
super(...args), this.#hoverTimer = (
|
|
28688
|
+
super(...args), this.#hoverTimer = (_initProto25(this), null), this.#trigger = null, this.#content = null, this.#___private_open_1 = _init_open4(this, false), this.#___private_delay_2 = _init_delay(this, 300), this.#___private_placement_3 = _init_placement4(this, "top-center"), this.#___private_triggerElement_4 = _init_triggerElement(this), this.#___private_contentElement_5 = _init_contentElement2(this), this.#handleEnter = () => {
|
|
27536
28689
|
this.#startTimer(() => {
|
|
27537
28690
|
this.open = true;
|
|
27538
28691
|
});
|
|
@@ -27558,6 +28711,7 @@ var Tooltip = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27558
28711
|
ColorPicker,
|
|
27559
28712
|
Dropdown,
|
|
27560
28713
|
Field,
|
|
28714
|
+
Folder,
|
|
27561
28715
|
IconAnchorAdd,
|
|
27562
28716
|
IconAnchorRemove,
|
|
27563
28717
|
IconArrowsVertical,
|
|
@@ -27573,6 +28727,7 @@ var Tooltip = class extends (_HTMLElement44 = HTMLElement) {
|
|
|
27573
28727
|
IconClear,
|
|
27574
28728
|
IconCode,
|
|
27575
28729
|
IconDots,
|
|
28730
|
+
IconFolder,
|
|
27576
28731
|
IconGrid,
|
|
27577
28732
|
IconMention,
|
|
27578
28733
|
IconMinus,
|