@mhmo91/schmancy 0.9.22 → 0.9.23
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/custom-elements.json +94 -0
- package/dist/agent/schmancy.agent.js +425 -260
- package/dist/agent/schmancy.agent.js.map +1 -1
- package/dist/agent/schmancy.manifest.json +95 -0
- package/dist/badge.cjs +1 -1
- package/dist/badge.js +1 -1
- package/dist/content-drawer.cjs +1 -1
- package/dist/content-drawer.js +1 -1
- package/dist/handover/agent-runtime-followups.md +1 -1
- package/dist/handover/agent-runtime-v1.md +3 -3
- package/dist/handover/agent-runtime-v2-loopback.md +5 -5
- package/dist/handover/claude-design-brief.md +54 -19
- package/dist/index.cjs +1 -1
- package/dist/index.js +27 -26
- package/dist/metric.cjs +69 -0
- package/dist/metric.cjs.map +1 -0
- package/dist/metric.js +93 -0
- package/dist/metric.js.map +1 -0
- package/dist/nav-drawer.cjs +1 -1
- package/dist/nav-drawer.js +1 -1
- package/dist/navigation-bar.cjs +1 -1
- package/dist/navigation-bar.js +1 -1
- package/dist/{src-C9DpHCWF.cjs → src-Ci10_Iwf.cjs} +1 -1
- package/dist/{src-C9DpHCWF.cjs.map → src-Ci10_Iwf.cjs.map} +1 -1
- package/dist/{src-B0jLOpqn.js → src-DNuhxDig.js} +1 -0
- package/dist/{src-B0jLOpqn.js.map → src-DNuhxDig.js.map} +1 -1
- package/dist/teleport.cjs +1 -1
- package/dist/teleport.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/metric/index.ts +1 -0
- package/src/metric/metric.ts +127 -0
- package/types/src/index.d.ts +1 -0
- package/types/src/metric/index.d.ts +1 -0
- package/types/src/metric/metric.d.ts +39 -0
|
@@ -24959,7 +24959,94 @@ var Ld = class extends B(F`
|
|
|
24959
24959
|
`;
|
|
24960
24960
|
}
|
|
24961
24961
|
};
|
|
24962
|
-
N([R("slot:not([name])")], Ld.prototype, "menuSlot", void 0), Ld = N([P("schmancy-menu")], Ld)
|
|
24962
|
+
N([R("slot:not([name])")], Ld.prototype, "menuSlot", void 0), Ld = N([P("schmancy-menu")], Ld);
|
|
24963
|
+
var Rd = class extends z(F`
|
|
24964
|
+
:host {
|
|
24965
|
+
display: inline-flex;
|
|
24966
|
+
flex-direction: column;
|
|
24967
|
+
gap: 0.25rem;
|
|
24968
|
+
min-width: 0;
|
|
24969
|
+
}
|
|
24970
|
+
:host([size='sm']) .label { font-size: 0.6875rem; }
|
|
24971
|
+
:host([size='sm']) .value { font-size: 1.25rem; }
|
|
24972
|
+
:host([size='md']) .label { font-size: 0.75rem; }
|
|
24973
|
+
:host([size='md']) .value { font-size: 1.75rem; }
|
|
24974
|
+
:host([size='lg']) .label { font-size: 0.8125rem; }
|
|
24975
|
+
:host([size='lg']) .value { font-size: 2.5rem; }
|
|
24976
|
+
.label {
|
|
24977
|
+
font-weight: 500;
|
|
24978
|
+
letter-spacing: 0.08em;
|
|
24979
|
+
text-transform: uppercase;
|
|
24980
|
+
color: var(--schmancy-sys-color-surface-onVariant);
|
|
24981
|
+
}
|
|
24982
|
+
.value {
|
|
24983
|
+
font-weight: 600;
|
|
24984
|
+
line-height: 1.1;
|
|
24985
|
+
color: var(--schmancy-sys-color-surface-on);
|
|
24986
|
+
font-variant-numeric: tabular-nums;
|
|
24987
|
+
}
|
|
24988
|
+
.delta {
|
|
24989
|
+
display: inline-flex;
|
|
24990
|
+
align-items: center;
|
|
24991
|
+
gap: 0.125rem;
|
|
24992
|
+
font-size: 0.75rem;
|
|
24993
|
+
font-weight: 600;
|
|
24994
|
+
padding: 0.125rem 0.375rem;
|
|
24995
|
+
border-radius: 999px;
|
|
24996
|
+
font-variant-numeric: tabular-nums;
|
|
24997
|
+
}
|
|
24998
|
+
.delta[data-trend='up'] {
|
|
24999
|
+
color: var(--schmancy-sys-color-success-on);
|
|
25000
|
+
background: var(--schmancy-sys-color-success-default);
|
|
25001
|
+
}
|
|
25002
|
+
.delta[data-trend='down'] {
|
|
25003
|
+
color: var(--schmancy-sys-color-error-on);
|
|
25004
|
+
background: var(--schmancy-sys-color-error-default);
|
|
25005
|
+
}
|
|
25006
|
+
.delta[data-trend='neutral'] {
|
|
25007
|
+
color: var(--schmancy-sys-color-surface-on);
|
|
25008
|
+
background: var(--schmancy-sys-color-surface-containerHigh);
|
|
25009
|
+
}
|
|
25010
|
+
.arrow {
|
|
25011
|
+
font-size: 0.625rem;
|
|
25012
|
+
line-height: 1;
|
|
25013
|
+
}
|
|
25014
|
+
.row {
|
|
25015
|
+
display: inline-flex;
|
|
25016
|
+
align-items: baseline;
|
|
25017
|
+
gap: 0.5rem;
|
|
25018
|
+
flex-wrap: wrap;
|
|
25019
|
+
}
|
|
25020
|
+
`) {
|
|
25021
|
+
constructor(...e) {
|
|
25022
|
+
super(...e), this.label = "", this.value = "", this.size = "md";
|
|
25023
|
+
}
|
|
25024
|
+
_arrowFor(e) {
|
|
25025
|
+
return e === "up" ? "↑" : e === "down" ? "↓" : "→";
|
|
25026
|
+
}
|
|
25027
|
+
render() {
|
|
25028
|
+
let e = this.trend ?? "neutral";
|
|
25029
|
+
return j`
|
|
25030
|
+
<span class="label" part="label"><slot name="label">${this.label}</slot></span>
|
|
25031
|
+
<span class="row">
|
|
25032
|
+
<span class="value" part="value"><slot>${this.value}</slot></span>
|
|
25033
|
+
${this.delta ? j`
|
|
25034
|
+
<span class="delta" part="delta" data-trend=${e}>
|
|
25035
|
+
${this.trend ? j`<span class="arrow" aria-hidden="true">${this._arrowFor(this.trend)}</span>` : M}
|
|
25036
|
+
${this.delta}
|
|
25037
|
+
</span>
|
|
25038
|
+
` : M}
|
|
25039
|
+
</span>
|
|
25040
|
+
`;
|
|
25041
|
+
}
|
|
25042
|
+
};
|
|
25043
|
+
N([I({ type: String })], Rd.prototype, "label", void 0), N([I({ type: String })], Rd.prototype, "value", void 0), N([I({
|
|
25044
|
+
type: String,
|
|
25045
|
+
reflect: !0
|
|
25046
|
+
})], Rd.prototype, "trend", void 0), N([I({ type: String })], Rd.prototype, "delta", void 0), N([I({
|
|
25047
|
+
type: String,
|
|
25048
|
+
reflect: !0
|
|
25049
|
+
})], Rd.prototype, "size", void 0), Rd = N([P("schmancy-metric")], Rd), new class {
|
|
24963
25050
|
constructor() {
|
|
24964
25051
|
this.$drawer = new C(), this.$drawer.pipe(Yt(10)).subscribe((e) => {
|
|
24965
25052
|
e.state ? window.dispatchEvent(new CustomEvent(hc.NavDrawer_toggle, {
|
|
@@ -24986,7 +25073,7 @@ N([R("slot:not([name])")], Ld.prototype, "menuSlot", void 0), Ld = N([P("schmanc
|
|
|
24986
25073
|
});
|
|
24987
25074
|
}
|
|
24988
25075
|
}();
|
|
24989
|
-
var
|
|
25076
|
+
var zd = class extends z(F`
|
|
24990
25077
|
:host {
|
|
24991
25078
|
display: block;
|
|
24992
25079
|
width: 100%;
|
|
@@ -24997,8 +25084,8 @@ var Rd = class extends z(F`
|
|
|
24997
25084
|
return j`<slot></slot>`;
|
|
24998
25085
|
}
|
|
24999
25086
|
};
|
|
25000
|
-
|
|
25001
|
-
var
|
|
25087
|
+
zd = N([P("schmancy-nav-drawer-appbar")], zd);
|
|
25088
|
+
var Bd = class extends B(F`
|
|
25002
25089
|
:host {
|
|
25003
25090
|
display: block;
|
|
25004
25091
|
position: relative;
|
|
@@ -25019,8 +25106,8 @@ var zd = class extends B(F`
|
|
|
25019
25106
|
return j` <slot></slot> `;
|
|
25020
25107
|
}
|
|
25021
25108
|
};
|
|
25022
|
-
|
|
25023
|
-
var
|
|
25109
|
+
Bd = N([P("schmancy-nav-drawer-content")], Bd);
|
|
25110
|
+
var Vd, Hd = "push", Ud = "close", Wd = class extends B(F`
|
|
25024
25111
|
:host {
|
|
25025
25112
|
display: grid;
|
|
25026
25113
|
grid-template-columns: auto 1fr;
|
|
@@ -25041,7 +25128,7 @@ var Bd, Vd = "push", Hd = "close", Ud = class extends B(F`
|
|
|
25041
25128
|
}
|
|
25042
25129
|
`) {
|
|
25043
25130
|
static {
|
|
25044
|
-
|
|
25131
|
+
Vd = this;
|
|
25045
25132
|
}
|
|
25046
25133
|
constructor(...e) {
|
|
25047
25134
|
super(...e), this.fullscreen = !1, this.breakpoint = "md";
|
|
@@ -25055,7 +25142,7 @@ var Bd, Vd = "push", Hd = "close", Ud = class extends B(F`
|
|
|
25055
25142
|
};
|
|
25056
25143
|
}
|
|
25057
25144
|
firstUpdated() {
|
|
25058
|
-
this.updateState(window.innerWidth), this.setAttribute("data-ready", ""), E(window, "resize").pipe(T((e) => e.target.innerWidth), T((e) => e >=
|
|
25145
|
+
this.updateState(window.innerWidth), this.setAttribute("data-ready", ""), E(window, "resize").pipe(T((e) => e.target.innerWidth), T((e) => e >= Vd.BREAKPOINTS[this.breakpoint]), O(), Yt(100), k(this.disconnecting)).subscribe((e) => {
|
|
25059
25146
|
e ? (this.mode = "push", this.open = "open") : (this.mode = "overlay", this.open = "close");
|
|
25060
25147
|
}), E(window, "fullscreen").pipe(A((e) => {
|
|
25061
25148
|
let t = e;
|
|
@@ -25067,7 +25154,7 @@ var Bd, Vd = "push", Hd = "close", Ud = class extends B(F`
|
|
|
25067
25154
|
});
|
|
25068
25155
|
}
|
|
25069
25156
|
updateState(e) {
|
|
25070
|
-
let t = e >=
|
|
25157
|
+
let t = e >= Vd.BREAKPOINTS[this.breakpoint];
|
|
25071
25158
|
this.mode = t ? "push" : "overlay", this.open = t ? "open" : "close";
|
|
25072
25159
|
}
|
|
25073
25160
|
render() {
|
|
@@ -25077,11 +25164,11 @@ var Bd, Vd = "push", Hd = "close", Ud = class extends B(F`
|
|
|
25077
25164
|
N([I({
|
|
25078
25165
|
type: Boolean,
|
|
25079
25166
|
reflect: !0
|
|
25080
|
-
})],
|
|
25167
|
+
})], Wd.prototype, "fullscreen", void 0), N([I({
|
|
25081
25168
|
type: String,
|
|
25082
25169
|
attribute: "breakpoint"
|
|
25083
|
-
})],
|
|
25084
|
-
var
|
|
25170
|
+
})], Wd.prototype, "breakpoint", void 0), N([dr({ context: Hd }), L()], Wd.prototype, "mode", void 0), N([dr({ context: Ud }), I()], Wd.prototype, "open", void 0), Wd = Vd = N([P("schmancy-nav-drawer")], Wd);
|
|
25171
|
+
var Gd = "cubic-bezier(0.5, 0.01, 0.25, 1)", Kd = class extends B() {
|
|
25085
25172
|
constructor(...e) {
|
|
25086
25173
|
super(...e), this.width = "220px", this._initialized = !1;
|
|
25087
25174
|
}
|
|
@@ -25094,14 +25181,14 @@ var Wd = "cubic-bezier(0.5, 0.01, 0.25, 1)", Gd = class extends B() {
|
|
|
25094
25181
|
openOverlay() {
|
|
25095
25182
|
this.overlay.style.display = "block", this.overlay.animate([{ opacity: 0 }, { opacity: .4 }], {
|
|
25096
25183
|
duration: 200,
|
|
25097
|
-
easing:
|
|
25184
|
+
easing: Gd,
|
|
25098
25185
|
fill: "forwards"
|
|
25099
25186
|
});
|
|
25100
25187
|
}
|
|
25101
25188
|
closeOverlay() {
|
|
25102
25189
|
this.overlay.animate([{ opacity: .4 }, { opacity: 0 }], {
|
|
25103
25190
|
duration: 150,
|
|
25104
|
-
easing:
|
|
25191
|
+
easing: Gd,
|
|
25105
25192
|
fill: "forwards"
|
|
25106
25193
|
}).onfinish = () => {
|
|
25107
25194
|
this.overlay.style.display = "none";
|
|
@@ -25110,7 +25197,7 @@ var Wd = "cubic-bezier(0.5, 0.01, 0.25, 1)", Gd = class extends B() {
|
|
|
25110
25197
|
showNavDrawer() {
|
|
25111
25198
|
this.nav.animate([{ transform: "translateX(-100%)" }, { transform: "translateX(0)" }], {
|
|
25112
25199
|
duration: 200,
|
|
25113
|
-
easing:
|
|
25200
|
+
easing: Gd,
|
|
25114
25201
|
fill: "forwards"
|
|
25115
25202
|
}).onfinish = () => {
|
|
25116
25203
|
this.nav.style.transform = "translateX(0)";
|
|
@@ -25119,7 +25206,7 @@ var Wd = "cubic-bezier(0.5, 0.01, 0.25, 1)", Gd = class extends B() {
|
|
|
25119
25206
|
hideNavDrawer() {
|
|
25120
25207
|
this.nav.animate([{ transform: "translateX(0)" }, { transform: "translateX(-100%)" }], {
|
|
25121
25208
|
duration: 200,
|
|
25122
|
-
easing:
|
|
25209
|
+
easing: Gd,
|
|
25123
25210
|
fill: "forwards"
|
|
25124
25211
|
}).onfinish = () => {
|
|
25125
25212
|
this.nav.style.transform = "translateX(-100%)";
|
|
@@ -25156,13 +25243,13 @@ var Wd = "cubic-bezier(0.5, 0.01, 0.25, 1)", Gd = class extends B() {
|
|
|
25156
25243
|
}
|
|
25157
25244
|
};
|
|
25158
25245
|
N([fr({
|
|
25159
|
-
context: Vd,
|
|
25160
|
-
subscribe: !0
|
|
25161
|
-
}), L()], Gd.prototype, "mode", void 0), N([fr({
|
|
25162
25246
|
context: Hd,
|
|
25163
25247
|
subscribe: !0
|
|
25164
|
-
}), L()],
|
|
25165
|
-
|
|
25248
|
+
}), L()], Kd.prototype, "mode", void 0), N([fr({
|
|
25249
|
+
context: Ud,
|
|
25250
|
+
subscribe: !0
|
|
25251
|
+
}), L()], Kd.prototype, "drawerState", void 0), N([R("#overlay")], Kd.prototype, "overlay", void 0), N([R("nav")], Kd.prototype, "nav", void 0), N([I({ type: String })], Kd.prototype, "width", void 0), N([L()], Kd.prototype, "_initialized", void 0), Kd = N([P("schmancy-nav-drawer-navbar")], Kd);
|
|
25252
|
+
var qd = class extends z(F`
|
|
25166
25253
|
:host {
|
|
25167
25254
|
display: flex;
|
|
25168
25255
|
flex: 1;
|
|
@@ -25374,17 +25461,17 @@ var Kd = class extends z(F`
|
|
|
25374
25461
|
`;
|
|
25375
25462
|
}
|
|
25376
25463
|
};
|
|
25377
|
-
N([I({ type: String })],
|
|
25464
|
+
N([I({ type: String })], qd.prototype, "icon", void 0), N([I({ type: String })], qd.prototype, "label", void 0), N([I({ type: String })], qd.prototype, "badge", void 0), N([I({
|
|
25378
25465
|
type: Boolean,
|
|
25379
25466
|
reflect: !0
|
|
25380
|
-
})],
|
|
25467
|
+
})], qd.prototype, "active", null), N([I({
|
|
25381
25468
|
type: Boolean,
|
|
25382
25469
|
reflect: !0
|
|
25383
|
-
})],
|
|
25470
|
+
})], qd.prototype, "disabled", void 0), N([I({
|
|
25384
25471
|
type: Boolean,
|
|
25385
25472
|
reflect: !0
|
|
25386
|
-
})],
|
|
25387
|
-
var
|
|
25473
|
+
})], qd.prototype, "hideLabels", void 0), N([L()], qd.prototype, "ripples", void 0), qd = N([P("schmancy-navigation-bar-item")], qd);
|
|
25474
|
+
var Jd = class extends z(F`
|
|
25388
25475
|
:host {
|
|
25389
25476
|
display: block;
|
|
25390
25477
|
transition: transform 0.3s ease-in-out;
|
|
@@ -25543,17 +25630,17 @@ var qd = class extends z(F`
|
|
|
25543
25630
|
`;
|
|
25544
25631
|
}
|
|
25545
25632
|
};
|
|
25546
|
-
N([I({ type: Number })],
|
|
25633
|
+
N([I({ type: Number })], Jd.prototype, "activeIndex", null), N([I({
|
|
25547
25634
|
type: Boolean,
|
|
25548
25635
|
reflect: !0
|
|
25549
|
-
})],
|
|
25636
|
+
})], Jd.prototype, "hideLabels", void 0), N([I({
|
|
25550
25637
|
type: Number,
|
|
25551
25638
|
reflect: !0
|
|
25552
|
-
})],
|
|
25639
|
+
})], Jd.prototype, "elevation", void 0), N([I({
|
|
25553
25640
|
type: Boolean,
|
|
25554
25641
|
reflect: !0
|
|
25555
|
-
})],
|
|
25556
|
-
var
|
|
25642
|
+
})], Jd.prototype, "hideOnScroll", void 0), N([L()], Jd.prototype, "focusedIndex", void 0), N([L()], Jd.prototype, "isHiddenByScroll", void 0), N([L()], Jd.prototype, "isFullscreen", void 0), Jd = N([P("schmancy-navigation-bar")], Jd);
|
|
25643
|
+
var Yd = class extends B() {
|
|
25557
25644
|
constructor(...e) {
|
|
25558
25645
|
super(...e), this.hovering$ = new w(!1), this.pressing$ = new w(!1), this.active$ = new w(!1), this.icon = "", this.label = "", this.value = "", this.badge = "", this.badgeVariant = "error", this.showLabel = !1, this.disabled = !1, this.nested = !1, this.group = !1, this.showRipple = !1;
|
|
25559
25646
|
}
|
|
@@ -25702,26 +25789,26 @@ var Jd = class extends B() {
|
|
|
25702
25789
|
`;
|
|
25703
25790
|
}
|
|
25704
25791
|
};
|
|
25705
|
-
N([I({ type: String })],
|
|
25792
|
+
N([I({ type: String })], Yd.prototype, "icon", void 0), N([I({ type: String })], Yd.prototype, "label", void 0), N([I({ type: String })], Yd.prototype, "value", void 0), N([I({
|
|
25706
25793
|
type: Boolean,
|
|
25707
25794
|
reflect: !0
|
|
25708
|
-
})],
|
|
25795
|
+
})], Yd.prototype, "active", null), N([I({
|
|
25709
25796
|
type: Boolean,
|
|
25710
25797
|
reflect: !0
|
|
25711
|
-
})],
|
|
25798
|
+
})], Yd.prototype, "selected", null), N([I({ type: String })], Yd.prototype, "badge", void 0), N([I({ type: String })], Yd.prototype, "badgeVariant", void 0), N([I({
|
|
25712
25799
|
type: Boolean,
|
|
25713
25800
|
attribute: "show-label"
|
|
25714
|
-
})],
|
|
25801
|
+
})], Yd.prototype, "showLabel", void 0), N([I({
|
|
25715
25802
|
type: Boolean,
|
|
25716
25803
|
reflect: !0
|
|
25717
|
-
})],
|
|
25804
|
+
})], Yd.prototype, "disabled", void 0), N([I({
|
|
25718
25805
|
type: Boolean,
|
|
25719
25806
|
reflect: !0
|
|
25720
|
-
})],
|
|
25807
|
+
})], Yd.prototype, "nested", void 0), N([I({
|
|
25721
25808
|
type: Boolean,
|
|
25722
25809
|
reflect: !0
|
|
25723
|
-
})],
|
|
25724
|
-
var
|
|
25810
|
+
})], Yd.prototype, "group", void 0), N([L()], Yd.prototype, "showRipple", void 0), Yd = N([P("schmancy-navigation-rail-item")], Yd);
|
|
25811
|
+
var Xd = class extends B() {
|
|
25725
25812
|
constructor(...e) {
|
|
25726
25813
|
super(...e), this.activeIndex$ = new w(-1), this._activeValue = "", this.labelVisibility = "all", this.alignment = "top", this.showTooltips = !0, this.keyboardNavigation = !0, this.expanded = !1, this.focusedIndex = -1, this.hasHeaderContent = !1, this.isFullscreen = !1;
|
|
25727
25814
|
}
|
|
@@ -25897,18 +25984,18 @@ var Yd = class extends B() {
|
|
|
25897
25984
|
});
|
|
25898
25985
|
}
|
|
25899
25986
|
};
|
|
25900
|
-
N([I({ type: Number })],
|
|
25987
|
+
N([I({ type: Number })], Xd.prototype, "activeIndex", null), N([I({ type: String })], Xd.prototype, "activeValue", null), N([I({
|
|
25901
25988
|
type: String,
|
|
25902
25989
|
attribute: "label-visibility",
|
|
25903
25990
|
reflect: !0
|
|
25904
|
-
})],
|
|
25991
|
+
})], Xd.prototype, "labelVisibility", void 0), N([I({
|
|
25905
25992
|
type: String,
|
|
25906
25993
|
reflect: !0
|
|
25907
|
-
})],
|
|
25994
|
+
})], Xd.prototype, "alignment", void 0), N([I({ type: Boolean })], Xd.prototype, "showTooltips", void 0), N([I({ type: Boolean })], Xd.prototype, "keyboardNavigation", void 0), N([I({
|
|
25908
25995
|
type: Boolean,
|
|
25909
25996
|
reflect: !0
|
|
25910
|
-
})],
|
|
25911
|
-
var
|
|
25997
|
+
})], Xd.prototype, "expanded", void 0), N([L()], Xd.prototype, "focusedIndex", void 0), N([L()], Xd.prototype, "hasHeaderContent", void 0), N([L()], Xd.prototype, "isFullscreen", void 0), N([Br({ flatten: !0 })], Xd.prototype, "allElements", void 0), Xd = N([P("schmancy-navigation-rail")], Xd);
|
|
25998
|
+
var Zd = class extends z(F`
|
|
25912
25999
|
:host {
|
|
25913
26000
|
display: block;
|
|
25914
26001
|
cursor: pointer;
|
|
@@ -25993,14 +26080,14 @@ var Xd = class extends z(F`
|
|
|
25993
26080
|
`;
|
|
25994
26081
|
}
|
|
25995
26082
|
};
|
|
25996
|
-
N([I({ type: String })],
|
|
26083
|
+
N([I({ type: String })], Zd.prototype, "value", void 0), N([I({ type: String })], Zd.prototype, "label", void 0), N([I({
|
|
25997
26084
|
type: Boolean,
|
|
25998
26085
|
reflect: !0
|
|
25999
|
-
})],
|
|
26086
|
+
})], Zd.prototype, "selected", void 0), N([I({
|
|
26000
26087
|
type: Boolean,
|
|
26001
26088
|
reflect: !0
|
|
26002
|
-
})],
|
|
26003
|
-
var
|
|
26089
|
+
})], Zd.prototype, "disabled", void 0), N([I({ type: String })], Zd.prototype, "group", void 0), N([I({ type: String })], Zd.prototype, "icon", void 0), Zd = N([P("schmancy-option")], Zd);
|
|
26090
|
+
var Qd = class extends B(F`
|
|
26004
26091
|
:host {
|
|
26005
26092
|
display: block;
|
|
26006
26093
|
box-sizing: border-box;
|
|
@@ -26054,14 +26141,14 @@ var Zd = class extends B(F`
|
|
|
26054
26141
|
`;
|
|
26055
26142
|
}
|
|
26056
26143
|
};
|
|
26057
|
-
N([I({ type: String })],
|
|
26144
|
+
N([I({ type: String })], Qd.prototype, "rows", void 0), N([I({
|
|
26058
26145
|
type: Boolean,
|
|
26059
26146
|
attribute: "show-scrollbar"
|
|
26060
|
-
})],
|
|
26147
|
+
})], Qd.prototype, "showScrollbar", void 0), N([I({
|
|
26061
26148
|
type: Boolean,
|
|
26062
26149
|
attribute: "no-select"
|
|
26063
|
-
})],
|
|
26064
|
-
var
|
|
26150
|
+
})], Qd.prototype, "noSelect", void 0), Qd = N([P("schmancy-page")], Qd);
|
|
26151
|
+
var $d = null, ef = null, tf = class extends B(F`
|
|
26065
26152
|
:host {
|
|
26066
26153
|
display: block;
|
|
26067
26154
|
width: 100%;
|
|
@@ -26083,7 +26170,7 @@ var Qd = null, $d = null, ef = class extends B(F`
|
|
|
26083
26170
|
height: { ideal: 720 }
|
|
26084
26171
|
} };
|
|
26085
26172
|
if (this.stream = await navigator.mediaDevices.getUserMedia(t), this.hasPermission = !0, this.error = "", await this.updateComplete, this.videoElement = this.shadowRoot?.querySelector("#video"), this.videoElement) {
|
|
26086
|
-
if (this.videoElement.srcObject = this.stream, await this.videoElement.play(), await (
|
|
26173
|
+
if (this.videoElement.srcObject = this.stream, await this.videoElement.play(), await (ef || (ef = import("./vendor-jsqr-Bl4iAtKC.js").then((t) => e(t.t(), 1)).then((e) => ($d = e.default, e.default)), ef)), !this.isConnected) return;
|
|
26087
26174
|
this.startScanning();
|
|
26088
26175
|
}
|
|
26089
26176
|
} catch {
|
|
@@ -26109,8 +26196,8 @@ var Qd = null, $d = null, ef = class extends B(F`
|
|
|
26109
26196
|
if (!t) return null;
|
|
26110
26197
|
t.drawImage(this.videoElement, 0, 0);
|
|
26111
26198
|
let n = t.getImageData(0, 0, e.width, e.height);
|
|
26112
|
-
if (
|
|
26113
|
-
let r =
|
|
26199
|
+
if (!$d) return null;
|
|
26200
|
+
let r = $d(n.data, n.width, n.height);
|
|
26114
26201
|
if (r && r.data) return {
|
|
26115
26202
|
data: r.data,
|
|
26116
26203
|
timestamp: Date.now()
|
|
@@ -26177,8 +26264,8 @@ var Qd = null, $d = null, ef = class extends B(F`
|
|
|
26177
26264
|
`;
|
|
26178
26265
|
}
|
|
26179
26266
|
};
|
|
26180
|
-
N([I({ type: Boolean })],
|
|
26181
|
-
var
|
|
26267
|
+
N([I({ type: Boolean })], tf.prototype, "continuous", void 0), N([L()], tf.prototype, "hasPermission", void 0), N([L()], tf.prototype, "error", void 0), N([L()], tf.prototype, "showSuccess", void 0), tf = N([P("schmancy-qr-scanner")], tf);
|
|
26268
|
+
var nf = class extends qr(z(":host{display:inherit;position:inherit}")) {
|
|
26182
26269
|
constructor(...e) {
|
|
26183
26270
|
super(...e), this.label = "", this.name = "", this.value = "", this.options = [], this.required = !1, this.selection$ = new C();
|
|
26184
26271
|
}
|
|
@@ -26230,8 +26317,8 @@ var tf = class extends qr(z(":host{display:inherit;position:inherit}")) {
|
|
|
26230
26317
|
`;
|
|
26231
26318
|
}
|
|
26232
26319
|
};
|
|
26233
|
-
N([I({ type: String })],
|
|
26234
|
-
var
|
|
26320
|
+
N([I({ type: String })], nf.prototype, "label", void 0), N([I({ type: String })], nf.prototype, "name", void 0), N([I({ type: String })], nf.prototype, "value", void 0), N([I({ type: Array })], nf.prototype, "options", void 0), N([I({ type: Boolean })], nf.prototype, "required", void 0), nf = N([P("schmancy-radio-group")], nf);
|
|
26321
|
+
var rf = class extends qr(z()) {
|
|
26235
26322
|
constructor(...e) {
|
|
26236
26323
|
super(...e), this.value = "", this.checked = !1, this.disabled = !1, this.name = "";
|
|
26237
26324
|
}
|
|
@@ -26272,11 +26359,11 @@ var nf = class extends qr(z()) {
|
|
|
26272
26359
|
`;
|
|
26273
26360
|
}
|
|
26274
26361
|
};
|
|
26275
|
-
N([I({ type: String })],
|
|
26362
|
+
N([I({ type: String })], rf.prototype, "value", void 0), N([I({
|
|
26276
26363
|
type: Boolean,
|
|
26277
26364
|
reflect: !0
|
|
26278
|
-
})],
|
|
26279
|
-
var
|
|
26365
|
+
})], rf.prototype, "checked", void 0), N([I({ type: Boolean })], rf.prototype, "disabled", void 0), N([I({ type: String })], rf.prototype, "name", void 0), rf = N([P("schmancy-radio-button")], rf);
|
|
26366
|
+
var af = class extends z(F`
|
|
26280
26367
|
input[type='range'] {
|
|
26281
26368
|
-webkit-appearance: none;
|
|
26282
26369
|
appearance: none;
|
|
@@ -26354,7 +26441,7 @@ var rf = class extends z(F`
|
|
|
26354
26441
|
`;
|
|
26355
26442
|
}
|
|
26356
26443
|
};
|
|
26357
|
-
N([I({ type: Number })],
|
|
26444
|
+
N([I({ type: Number })], af.prototype, "min", void 0), N([I({ type: Number })], af.prototype, "max", void 0), N([I({ type: Number })], af.prototype, "step", void 0), N([I({ type: Number })], af.prototype, "value", void 0), N([I({ type: String })], af.prototype, "label", void 0), N([I({ type: Boolean })], af.prototype, "disabled", void 0), af = N([P("schmancy-range")], af);
|
|
26358
26445
|
var Z = (t((e) => {
|
|
26359
26446
|
Object.defineProperty(e, "Y", { value: !0 }), e.hasValueAtKey = e.hasPresentKey = e.isFilled = e.isDefined = e.isPresent = void 0, e.isPresent = function(e) {
|
|
26360
26447
|
return e != null;
|
|
@@ -26955,7 +27042,7 @@ N([I({ type: String })], Q.prototype, "name", void 0), N([I({
|
|
|
26955
27042
|
type: String,
|
|
26956
27043
|
reflect: !0
|
|
26957
27044
|
})], Q.prototype, "value", null), N([I({ type: Array })], Q.prototype, "values", null), N([I({ type: Boolean })], Q.prototype, "multi", void 0), N([I({ type: String })], Q.prototype, "label", void 0), N([I({ type: String })], Q.prototype, "hint", void 0), N([I({ type: String })], Q.prototype, "validateOn", void 0), N([I({ type: String })], Q.prototype, "size", void 0), N([L()], Q.prototype, "isOpen", void 0), N([L()], Q.prototype, "valueLabel", void 0), N([L()], Q.prototype, "isValid", void 0), N([I({ type: String })], Q.prototype, "validationMessage", void 0), N([L()], Q.prototype, "defaultValue", void 0), N([R("ul")], Q.prototype, "ul", void 0), N([R("sch-input")], Q.prototype, "inputRef", void 0), N([Br({ flatten: !0 })], Q.prototype, "options", void 0), N([L()], Q.prototype, "_userInteracted", void 0), N([L()], Q.prototype, "_touched", void 0), N([L()], Q.prototype, "_dirty", void 0), N([L()], Q.prototype, "_submitted", void 0), N([L()], Q.prototype, "_focusedOptionId", void 0), Q = N([P("schmancy-select")], Q);
|
|
26958
|
-
var
|
|
27045
|
+
var of, sf, cf = class extends B(F`
|
|
26959
27046
|
:host {
|
|
26960
27047
|
position: fixed;
|
|
26961
27048
|
inset: 0;
|
|
@@ -27093,28 +27180,28 @@ var af, of, sf = class extends B(F`
|
|
|
27093
27180
|
N([I({
|
|
27094
27181
|
type: Boolean,
|
|
27095
27182
|
reflect: !0
|
|
27096
|
-
})],
|
|
27183
|
+
})], cf.prototype, "open", void 0), N([I({
|
|
27097
27184
|
type: String,
|
|
27098
27185
|
reflect: !0
|
|
27099
|
-
})],
|
|
27186
|
+
})], cf.prototype, "position", void 0), N([I({
|
|
27100
27187
|
type: Boolean,
|
|
27101
27188
|
reflect: !0
|
|
27102
|
-
})],
|
|
27189
|
+
})], cf.prototype, "persist", void 0), N([I({
|
|
27103
27190
|
type: Boolean,
|
|
27104
27191
|
reflect: !0
|
|
27105
|
-
})],
|
|
27192
|
+
})], cf.prototype, "lock", void 0), N([I({
|
|
27106
27193
|
type: Boolean,
|
|
27107
27194
|
reflect: !0
|
|
27108
|
-
})],
|
|
27195
|
+
})], cf.prototype, "handleHistory", void 0), N([R(".overlay")], cf.prototype, "overlayEl", void 0), N([R(".content")], cf.prototype, "contentEl", void 0), N([(of = "open", (e, t) => {
|
|
27109
27196
|
let { willUpdate: n } = e;
|
|
27110
|
-
|
|
27111
|
-
if (n.call(this, e), e.has(
|
|
27112
|
-
let n = e.get(
|
|
27113
|
-
n !== r && (
|
|
27197
|
+
sf = Object.assign({ waitUntilFirstUpdate: !1 }, sf), e.willUpdate = function(e) {
|
|
27198
|
+
if (n.call(this, e), e.has(of)) {
|
|
27199
|
+
let n = e.get(of), r = this[of];
|
|
27200
|
+
n !== r && (sf?.waitUntilFirstUpdate && !this.hasUpdated || this[t].call(this, n, r));
|
|
27114
27201
|
}
|
|
27115
27202
|
};
|
|
27116
|
-
})],
|
|
27117
|
-
var
|
|
27203
|
+
})], cf.prototype, "onOpenChange", null), cf = N([P("schmancy-sheet")], cf);
|
|
27204
|
+
var lf = class extends B(F`
|
|
27118
27205
|
:host {
|
|
27119
27206
|
display: block;
|
|
27120
27207
|
scroll-snap-align: center; /* If your slider uses scroll-snap */
|
|
@@ -27152,8 +27239,8 @@ var cf = class extends B(F`
|
|
|
27152
27239
|
}
|
|
27153
27240
|
}
|
|
27154
27241
|
};
|
|
27155
|
-
N([I({ type: String })],
|
|
27156
|
-
var
|
|
27242
|
+
N([I({ type: String })], lf.prototype, "type", void 0), N([I({ type: String })], lf.prototype, "src", void 0), N([I({ type: String })], lf.prototype, "alt", void 0), N([I({ type: Boolean })], lf.prototype, "controls", void 0), N([I({ type: Boolean })], lf.prototype, "autoplay", void 0), N([I({ type: Boolean })], lf.prototype, "loop", void 0), N([I({ type: Boolean })], lf.prototype, "muted", void 0), N([I({ type: String })], lf.prototype, "fit", void 0), lf = N([P("schmancy-slide")], lf);
|
|
27243
|
+
var uf = class extends B(F`
|
|
27157
27244
|
.slider {
|
|
27158
27245
|
/* Lay out slides horizontally, one after another */
|
|
27159
27246
|
display: flex;
|
|
@@ -27248,8 +27335,8 @@ var lf = class extends B(F`
|
|
|
27248
27335
|
`;
|
|
27249
27336
|
}
|
|
27250
27337
|
};
|
|
27251
|
-
N([L()],
|
|
27252
|
-
var
|
|
27338
|
+
N([L()], uf.prototype, "selectedIndex", void 0), N([I({ type: Boolean })], uf.prototype, "showArrows", void 0), N([R("#slider")], uf.prototype, "slider", void 0), N([R("slot")], uf.prototype, "defaultSlot", void 0), uf = N([P("schmancy-slider")], uf);
|
|
27339
|
+
var df = class {
|
|
27253
27340
|
constructor() {
|
|
27254
27341
|
this._currentStep = new w(1);
|
|
27255
27342
|
}
|
|
@@ -27262,7 +27349,7 @@ var uf = class {
|
|
|
27262
27349
|
setStep(e) {
|
|
27263
27350
|
this._currentStep.next(e);
|
|
27264
27351
|
}
|
|
27265
|
-
},
|
|
27352
|
+
}, ff = Symbol("SchmancyStepsContext"), pf = class extends B(F`
|
|
27266
27353
|
:host {
|
|
27267
27354
|
display: grid;
|
|
27268
27355
|
/* Base display is just grid, flex properties will be applied dynamically */
|
|
@@ -27361,18 +27448,18 @@ var uf = class {
|
|
|
27361
27448
|
`;
|
|
27362
27449
|
}
|
|
27363
27450
|
};
|
|
27364
|
-
N([I({ type: Number })],
|
|
27451
|
+
N([I({ type: Number })], pf.prototype, "position", void 0), N([I({ type: String })], pf.prototype, "title", void 0), N([I({ type: String })], pf.prototype, "description", void 0), N([I({
|
|
27365
27452
|
type: Boolean,
|
|
27366
27453
|
reflect: !0
|
|
27367
|
-
})],
|
|
27368
|
-
var
|
|
27454
|
+
})], pf.prototype, "completed", void 0), N([I({ type: Boolean })], pf.prototype, "lockBack", void 0), N([fr({ context: ff })], pf.prototype, "steps", void 0), N([L()], pf.prototype, "currentStep", void 0), pf = N([P("schmancy-step")], pf);
|
|
27455
|
+
var mf = class extends B(F`
|
|
27369
27456
|
:host {
|
|
27370
27457
|
display: block;
|
|
27371
27458
|
overflow: auto;
|
|
27372
27459
|
}
|
|
27373
27460
|
`) {
|
|
27374
27461
|
constructor(...e) {
|
|
27375
|
-
super(...e), this.controller = new
|
|
27462
|
+
super(...e), this.controller = new df(), this.stepsController = this.controller, this.gap = 4, this.handleChange = (e) => {
|
|
27376
27463
|
e.target !== this && e.stopPropagation();
|
|
27377
27464
|
};
|
|
27378
27465
|
}
|
|
@@ -27412,14 +27499,14 @@ var pf = class extends B(F`
|
|
|
27412
27499
|
`;
|
|
27413
27500
|
}
|
|
27414
27501
|
};
|
|
27415
|
-
N([dr({ context:
|
|
27502
|
+
N([dr({ context: ff })], mf.prototype, "stepsController", void 0), N([I({
|
|
27416
27503
|
type: Number,
|
|
27417
27504
|
reflect: !0
|
|
27418
|
-
})],
|
|
27505
|
+
})], mf.prototype, "currentStep", null), N([I({
|
|
27419
27506
|
type: Number,
|
|
27420
27507
|
reflect: !0
|
|
27421
|
-
})],
|
|
27422
|
-
var
|
|
27508
|
+
})], mf.prototype, "gap", void 0), mf = N([P("schmancy-steps-container")], mf);
|
|
27509
|
+
var hf = class extends B() {
|
|
27423
27510
|
constructor(...e) {
|
|
27424
27511
|
super(...e), this.columns = [], this.cols = this.columns.map(() => "1fr").join(" ");
|
|
27425
27512
|
}
|
|
@@ -27453,29 +27540,29 @@ var mf = class extends B() {
|
|
|
27453
27540
|
N([I({
|
|
27454
27541
|
type: Array,
|
|
27455
27542
|
attribute: !1
|
|
27456
|
-
})],
|
|
27543
|
+
})], hf.prototype, "columns", void 0), N([I({
|
|
27457
27544
|
type: Object,
|
|
27458
27545
|
attribute: !1
|
|
27459
|
-
})],
|
|
27460
|
-
var
|
|
27546
|
+
})], hf.prototype, "item", void 0), N([I({ type: String })], hf.prototype, "cols", void 0), hf = N([P("schmancy-table-row")], hf);
|
|
27547
|
+
var gf = class e extends Event {
|
|
27461
27548
|
constructor(t) {
|
|
27462
27549
|
super(e.eventName, { bubbles: !1 }), this.first = t.first, this.last = t.last;
|
|
27463
27550
|
}
|
|
27464
27551
|
};
|
|
27465
|
-
|
|
27466
|
-
var
|
|
27552
|
+
gf.eventName = "rangeChanged";
|
|
27553
|
+
var _f = class e extends Event {
|
|
27467
27554
|
constructor(t) {
|
|
27468
27555
|
super(e.eventName, { bubbles: !1 }), this.first = t.first, this.last = t.last;
|
|
27469
27556
|
}
|
|
27470
27557
|
};
|
|
27471
|
-
|
|
27472
|
-
var
|
|
27558
|
+
_f.eventName = "visibilityChanged";
|
|
27559
|
+
var vf = class e extends Event {
|
|
27473
27560
|
constructor() {
|
|
27474
27561
|
super(e.eventName, { bubbles: !1 });
|
|
27475
27562
|
}
|
|
27476
27563
|
};
|
|
27477
|
-
|
|
27478
|
-
var
|
|
27564
|
+
vf.eventName = "unpinned";
|
|
27565
|
+
var yf, bf = class {
|
|
27479
27566
|
constructor(e) {
|
|
27480
27567
|
this._element = null;
|
|
27481
27568
|
let t = e ?? window;
|
|
@@ -27508,7 +27595,7 @@ var vf, yf = class {
|
|
|
27508
27595
|
get maxScrollLeft() {
|
|
27509
27596
|
return this.scrollWidth - this.viewportWidth;
|
|
27510
27597
|
}
|
|
27511
|
-
},
|
|
27598
|
+
}, xf = class extends bf {
|
|
27512
27599
|
constructor(e, t) {
|
|
27513
27600
|
super(t), this._clients = /* @__PURE__ */ new Set(), this._retarget = null, this._end = null, this.W = null, this.correctingScrollError = !1, this._checkForArrival = this._checkForArrival.bind(this), this._updateManagedScrollTo = this._updateManagedScrollTo.bind(this), this.scrollTo = this.scrollTo.bind(this), this.scrollBy = this.scrollBy.bind(this);
|
|
27514
27601
|
let n = this._node;
|
|
@@ -27574,7 +27661,7 @@ var vf, yf = class {
|
|
|
27574
27661
|
_attach(e) {
|
|
27575
27662
|
this._clients.add(e), this._clients.size === 1 && (this._node.scrollTo = this.scrollTo, this._node.scrollBy = this.scrollBy, this._node.scroll = this.scrollTo, this._node.addEventListener("scroll", this._checkForArrival));
|
|
27576
27663
|
}
|
|
27577
|
-
},
|
|
27664
|
+
}, Sf = typeof window < "u" ? window.ResizeObserver : void 0, Cf = Symbol("virtualizerRef"), wf = "virtualizer-sizer", Tf = class {
|
|
27578
27665
|
constructor(e) {
|
|
27579
27666
|
if (this._benchmarkStart = null, this._layout = null, this._clippingAncestors = [], this._scrollSize = null, this._scrollError = null, this._childrenPos = null, this._childMeasurements = null, this._toBeMeasured = /* @__PURE__ */ new Map(), this._rangeChanged = !0, this._itemsChanged = !0, this._visibilityChanged = !0, this._scrollerController = null, this._isScroller = !1, this._sizer = null, this._hostElementRO = null, this._childrenRO = null, this._mutationObserver = null, this._scrollEventListeners = [], this._scrollEventListenerOptions = { passive: !0 }, this._loadListener = this._childLoaded.bind(this), this._scrollIntoViewTarget = null, this._updateScrollIntoViewCoordinates = null, this._items = [], this._first = -1, this._last = -1, this._firstVisible = -1, this._lastVisible = -1, this._scheduled = /* @__PURE__ */ new WeakSet(), this._measureCallback = null, this._measureChildOverride = null, this._layoutCompletePromise = null, this._layoutCompleteResolver = null, this._layoutCompleteRejecter = null, this._pendingLayoutComplete = null, this._layoutInitialized = null, this._connected = !1, !e) throw Error("Virtualizer constructor requires a configuration object");
|
|
27580
27667
|
if (!e.hostElement) throw Error("Virtualizer configuration requires the \"hostElement\" property");
|
|
@@ -27589,11 +27676,11 @@ var vf, yf = class {
|
|
|
27589
27676
|
this._layoutInitialized = this._initLayout(t);
|
|
27590
27677
|
}
|
|
27591
27678
|
_initObservers() {
|
|
27592
|
-
this._mutationObserver = new MutationObserver(this._finishDOMUpdate.bind(this)), this._hostElementRO = new
|
|
27679
|
+
this._mutationObserver = new MutationObserver(this._finishDOMUpdate.bind(this)), this._hostElementRO = new Sf(() => this._hostElementSizeChanged()), this._childrenRO = new Sf(this._childrenSizeChanged.bind(this));
|
|
27593
27680
|
}
|
|
27594
27681
|
_initHostElement(e) {
|
|
27595
27682
|
let t = this._hostElement = e.hostElement;
|
|
27596
|
-
this._applyVirtualizerStyles(), t[
|
|
27683
|
+
this._applyVirtualizerStyles(), t[Cf] = this;
|
|
27597
27684
|
}
|
|
27598
27685
|
connected() {
|
|
27599
27686
|
this._initObservers();
|
|
@@ -27601,15 +27688,15 @@ var vf, yf = class {
|
|
|
27601
27688
|
this._clippingAncestors = function(e, t = !1) {
|
|
27602
27689
|
let n = !1;
|
|
27603
27690
|
return function(e, t = !1) {
|
|
27604
|
-
let n = [], r = t ? e :
|
|
27605
|
-
for (; r !== null;) n.push(r), r =
|
|
27691
|
+
let n = [], r = t ? e : Df(e);
|
|
27692
|
+
for (; r !== null;) n.push(r), r = Df(r);
|
|
27606
27693
|
return n;
|
|
27607
27694
|
}(e, t).filter((e) => {
|
|
27608
27695
|
if (n) return !1;
|
|
27609
27696
|
let t = getComputedStyle(e);
|
|
27610
27697
|
return n = t.position === "fixed", t.overflow !== "visible";
|
|
27611
27698
|
});
|
|
27612
|
-
}(this._hostElement, e), this._scrollerController = new
|
|
27699
|
+
}(this._hostElement, e), this._scrollerController = new xf(this, this._clippingAncestors[0]), this._schedule(this._updateLayout), this._observeAndListen(), this._connected = !0;
|
|
27613
27700
|
}
|
|
27614
27701
|
_observeAndListen() {
|
|
27615
27702
|
this._mutationObserver.observe(this._hostElement, { childList: !0 }), this._hostElementRO.observe(this._hostElement), this._scrollEventListeners.push(window), window.addEventListener("scroll", this, this._scrollEventListenerOptions), this._clippingAncestors.forEach((e) => {
|
|
@@ -27626,20 +27713,20 @@ var vf, yf = class {
|
|
|
27626
27713
|
_getSizer() {
|
|
27627
27714
|
let e = this._hostElement;
|
|
27628
27715
|
if (!this._sizer) {
|
|
27629
|
-
let t = e.querySelector(`[${
|
|
27630
|
-
t || (t = document.createElement("div"), t.setAttribute(
|
|
27716
|
+
let t = e.querySelector(`[${wf}]`);
|
|
27717
|
+
t || (t = document.createElement("div"), t.setAttribute(wf, ""), e.appendChild(t)), Object.assign(t.style, {
|
|
27631
27718
|
position: "absolute",
|
|
27632
27719
|
margin: "-2px 0 0 0",
|
|
27633
27720
|
padding: 0,
|
|
27634
27721
|
visibility: "hidden",
|
|
27635
27722
|
fontSize: "2px"
|
|
27636
|
-
}), t.textContent = " ", t.setAttribute(
|
|
27723
|
+
}), t.textContent = " ", t.setAttribute(wf, ""), this._sizer = t;
|
|
27637
27724
|
}
|
|
27638
27725
|
return this._sizer;
|
|
27639
27726
|
}
|
|
27640
27727
|
async updateLayoutConfig(e) {
|
|
27641
27728
|
await this._layoutInitialized;
|
|
27642
|
-
let t = e.type ||
|
|
27729
|
+
let t = e.type || yf;
|
|
27643
27730
|
if (typeof t == "function" && this._layout instanceof t) {
|
|
27644
27731
|
let t = { ...e };
|
|
27645
27732
|
return delete t.type, this._layout.config = t, !0;
|
|
@@ -27653,7 +27740,7 @@ var vf, yf = class {
|
|
|
27653
27740
|
let r = { ...e };
|
|
27654
27741
|
delete r.type, t = r;
|
|
27655
27742
|
} else t = e;
|
|
27656
|
-
n === void 0 && (
|
|
27743
|
+
n === void 0 && (yf = n = (await import("./flow-CvG1fLW5.js")).FlowLayout), this._layout = new n((e) => this._handleLayoutMessage(e), t), this._layout.measureChildren && typeof this._layout.updateItemSizes == "function" && (typeof this._layout.measureChildren == "function" && (this._measureChildOverride = this._layout.measureChildren), this._measureCallback = this._layout.updateItemSizes.bind(this._layout)), this._layout.listenForChildLoadEvents && this._hostElement.addEventListener("load", this._loadListener, !0), this._schedule(this._updateLayout);
|
|
27657
27744
|
}
|
|
27658
27745
|
startBenchmarking() {
|
|
27659
27746
|
this._benchmarkStart === null && (this._benchmarkStart = window.performance.now());
|
|
@@ -27684,10 +27771,10 @@ var vf, yf = class {
|
|
|
27684
27771
|
}, function(e) {
|
|
27685
27772
|
let t = window.getComputedStyle(e);
|
|
27686
27773
|
return {
|
|
27687
|
-
marginTop:
|
|
27688
|
-
marginRight:
|
|
27689
|
-
marginBottom:
|
|
27690
|
-
marginLeft:
|
|
27774
|
+
marginTop: Ef(t.marginTop),
|
|
27775
|
+
marginRight: Ef(t.marginRight),
|
|
27776
|
+
marginBottom: Ef(t.marginBottom),
|
|
27777
|
+
marginLeft: Ef(t.marginLeft)
|
|
27691
27778
|
};
|
|
27692
27779
|
}(e));
|
|
27693
27780
|
}
|
|
@@ -27718,11 +27805,11 @@ var vf, yf = class {
|
|
|
27718
27805
|
e.type === "scroll" && (e.currentTarget === window || this._clippingAncestors.includes(e.currentTarget)) && this._handleScrollEvent();
|
|
27719
27806
|
}
|
|
27720
27807
|
_handleLayoutMessage(e) {
|
|
27721
|
-
e.type === "stateChanged" ? this._updateDOM(e) : e.type === "visibilityChanged" ? (this._firstVisible = e.firstVisible, this._lastVisible = e.lastVisible, this._notifyVisibility()) : e.type === "unpinned" && this._hostElement.dispatchEvent(new
|
|
27808
|
+
e.type === "stateChanged" ? this._updateDOM(e) : e.type === "visibilityChanged" ? (this._firstVisible = e.firstVisible, this._lastVisible = e.lastVisible, this._notifyVisibility()) : e.type === "unpinned" && this._hostElement.dispatchEvent(new vf());
|
|
27722
27809
|
}
|
|
27723
27810
|
get _children() {
|
|
27724
27811
|
let e = [], t = this._hostElement.firstElementChild;
|
|
27725
|
-
for (; t;) t.hasAttribute(
|
|
27812
|
+
for (; t;) t.hasAttribute(wf) || e.push(t), t = t.nextElementSibling;
|
|
27726
27813
|
return e;
|
|
27727
27814
|
}
|
|
27728
27815
|
_updateView() {
|
|
@@ -27794,13 +27881,13 @@ var vf, yf = class {
|
|
|
27794
27881
|
t && e?.has(t) && this._updateScrollIntoViewCoordinates(this._layout.getScrollIntoViewCoordinates(this._scrollIntoViewTarget));
|
|
27795
27882
|
}
|
|
27796
27883
|
_notifyRange() {
|
|
27797
|
-
this._hostElement.dispatchEvent(new
|
|
27884
|
+
this._hostElement.dispatchEvent(new gf({
|
|
27798
27885
|
first: this._first,
|
|
27799
27886
|
last: this._last
|
|
27800
27887
|
}));
|
|
27801
27888
|
}
|
|
27802
27889
|
_notifyVisibility() {
|
|
27803
|
-
this._hostElement.dispatchEvent(new
|
|
27890
|
+
this._hostElement.dispatchEvent(new _f({
|
|
27804
27891
|
first: this._firstVisible,
|
|
27805
27892
|
last: this._lastVisible
|
|
27806
27893
|
}));
|
|
@@ -27834,19 +27921,19 @@ var vf, yf = class {
|
|
|
27834
27921
|
this._scheduleLayoutComplete(), this._itemsChanged = !1, this._rangeChanged = !1;
|
|
27835
27922
|
}
|
|
27836
27923
|
};
|
|
27837
|
-
function
|
|
27924
|
+
function Ef(e) {
|
|
27838
27925
|
let t = e ? parseFloat(e) : NaN;
|
|
27839
27926
|
return Number.isNaN(t) ? 0 : t;
|
|
27840
27927
|
}
|
|
27841
|
-
function
|
|
27928
|
+
function Df(e) {
|
|
27842
27929
|
if (e.assignedSlot !== null) return e.assignedSlot;
|
|
27843
27930
|
if (e.parentElement !== null) return e.parentElement;
|
|
27844
27931
|
let t = e.parentNode;
|
|
27845
27932
|
return t && t.nodeType === Node.DOCUMENT_FRAGMENT_NODE && t.host || null;
|
|
27846
27933
|
}
|
|
27847
|
-
var
|
|
27934
|
+
var Of = (e) => e, kf = (e, t) => j`${t}: ${JSON.stringify(e, null, 2)}`, Af = $n(class extends no {
|
|
27848
27935
|
constructor(e) {
|
|
27849
|
-
if (super(e), this._virtualizer = null, this._first = 0, this._last = -1, this._renderItem = (e, t) =>
|
|
27936
|
+
if (super(e), this._virtualizer = null, this._first = 0, this._last = -1, this._renderItem = (e, t) => kf(e, t + this._first), this._keyFunction = (e, t) => Of(e, this._first), this._items = [], e.type !== Zn) throw Error("The virtualize directive can only be used in child expressions");
|
|
27850
27937
|
}
|
|
27851
27938
|
render(e) {
|
|
27852
27939
|
e && this._setFunctions(e);
|
|
@@ -27873,7 +27960,7 @@ var Df = (e) => e, Of = (e, t) => j`${t}: ${JSON.stringify(e, null, 2)}`, kf = $
|
|
|
27873
27960
|
_makeVirtualizer(e, t) {
|
|
27874
27961
|
this._virtualizer && this._virtualizer.disconnected();
|
|
27875
27962
|
let { layout: n, scroller: r, items: i } = t;
|
|
27876
|
-
this._virtualizer = new
|
|
27963
|
+
this._virtualizer = new Tf({
|
|
27877
27964
|
hostElement: e,
|
|
27878
27965
|
layout: n,
|
|
27879
27966
|
scroller: r
|
|
@@ -27891,16 +27978,16 @@ var Df = (e) => e, Of = (e, t) => j`${t}: ${JSON.stringify(e, null, 2)}`, kf = $
|
|
|
27891
27978
|
reconnected() {
|
|
27892
27979
|
this._virtualizer?.connected();
|
|
27893
27980
|
}
|
|
27894
|
-
}),
|
|
27981
|
+
}), jf = class extends Hr {
|
|
27895
27982
|
constructor() {
|
|
27896
|
-
super(...arguments), this.items = [], this.renderItem =
|
|
27983
|
+
super(...arguments), this.items = [], this.renderItem = kf, this.keyFunction = Of, this.layout = {}, this.scroller = !1;
|
|
27897
27984
|
}
|
|
27898
27985
|
createRenderRoot() {
|
|
27899
27986
|
return this;
|
|
27900
27987
|
}
|
|
27901
27988
|
render() {
|
|
27902
27989
|
let { items: e, renderItem: t, keyFunction: n, layout: r, scroller: i } = this;
|
|
27903
|
-
return j`${
|
|
27990
|
+
return j`${Af({
|
|
27904
27991
|
items: e,
|
|
27905
27992
|
renderItem: t,
|
|
27906
27993
|
keyFunction: n,
|
|
@@ -27909,20 +27996,20 @@ var Df = (e) => e, Of = (e, t) => j`${t}: ${JSON.stringify(e, null, 2)}`, kf = $
|
|
|
27909
27996
|
})}`;
|
|
27910
27997
|
}
|
|
27911
27998
|
element(e) {
|
|
27912
|
-
return this[
|
|
27999
|
+
return this[Cf]?.element(e);
|
|
27913
28000
|
}
|
|
27914
28001
|
get layoutComplete() {
|
|
27915
|
-
return this[
|
|
28002
|
+
return this[Cf]?.layoutComplete;
|
|
27916
28003
|
}
|
|
27917
28004
|
scrollToIndex(e, t = "start") {
|
|
27918
28005
|
this.element(e)?.scrollIntoView({ block: t });
|
|
27919
28006
|
}
|
|
27920
28007
|
};
|
|
27921
|
-
l([I({ attribute: !1 })],
|
|
28008
|
+
l([I({ attribute: !1 })], jf.prototype, "items", void 0), l([I()], jf.prototype, "renderItem", void 0), l([I()], jf.prototype, "keyFunction", void 0), l([I({ attribute: !1 })], jf.prototype, "layout", void 0), l([I({
|
|
27922
28009
|
reflect: !0,
|
|
27923
28010
|
type: Boolean
|
|
27924
|
-
})],
|
|
27925
|
-
var
|
|
28011
|
+
})], jf.prototype, "scroller", void 0), customElements.define("lit-virtualizer", jf);
|
|
28012
|
+
var Mf = class extends B() {
|
|
27926
28013
|
constructor() {
|
|
27927
28014
|
super(), this.columns = [], this.data = [], this.keyField = "id", this.cols = "1fr", this.sortable = !1, this.sortColumn = null, this.sortDirection = null, this.filteredData = [], this.filteredData = this.data;
|
|
27928
28015
|
}
|
|
@@ -28036,11 +28123,11 @@ var jf = class extends B() {
|
|
|
28036
28123
|
N([I({
|
|
28037
28124
|
type: Array,
|
|
28038
28125
|
attribute: !1
|
|
28039
|
-
})],
|
|
28126
|
+
})], Mf.prototype, "columns", void 0), N([I({
|
|
28040
28127
|
type: Array,
|
|
28041
28128
|
attribute: !1
|
|
28042
|
-
})],
|
|
28043
|
-
var
|
|
28129
|
+
})], Mf.prototype, "data", void 0), N([I({ type: String })], Mf.prototype, "keyField", void 0), N([I({ type: String })], Mf.prototype, "cols", void 0), N([I({ type: Boolean })], Mf.prototype, "sortable", void 0), N([L()], Mf.prototype, "sortColumn", void 0), N([L()], Mf.prototype, "sortDirection", void 0), N([L()], Mf.prototype, "filteredData", void 0), Mf = N([P("schmancy-table")], Mf);
|
|
28130
|
+
var Nf = "tabs", Pf = class extends z() {
|
|
28044
28131
|
updated(e) {
|
|
28045
28132
|
e.has("active") && this.active && requestAnimationFrame(() => {
|
|
28046
28133
|
window.dispatchEvent(new Event("resize"));
|
|
@@ -28053,17 +28140,17 @@ var Mf = "tabs", Nf = class extends z() {
|
|
|
28053
28140
|
N([I({
|
|
28054
28141
|
type: String,
|
|
28055
28142
|
reflect: !0
|
|
28056
|
-
})],
|
|
28143
|
+
})], Pf.prototype, "label", void 0), N([I({
|
|
28057
28144
|
type: String,
|
|
28058
28145
|
reflect: !0
|
|
28059
|
-
})],
|
|
28146
|
+
})], Pf.prototype, "value", void 0), N([I({
|
|
28060
28147
|
type: Boolean,
|
|
28061
28148
|
reflect: !0
|
|
28062
|
-
})],
|
|
28063
|
-
context:
|
|
28149
|
+
})], Pf.prototype, "active", void 0), N([fr({
|
|
28150
|
+
context: Nf,
|
|
28064
28151
|
subscribe: !0
|
|
28065
|
-
}), L()],
|
|
28066
|
-
var
|
|
28152
|
+
}), L()], Pf.prototype, "mode", void 0), Pf = N([P("schmancy-tab")], Pf);
|
|
28153
|
+
var Ff = class extends z(F`
|
|
28067
28154
|
:host {
|
|
28068
28155
|
display: block;
|
|
28069
28156
|
height: 100%;
|
|
@@ -28152,16 +28239,16 @@ var Pf = class extends z(F`
|
|
|
28152
28239
|
`;
|
|
28153
28240
|
}
|
|
28154
28241
|
};
|
|
28155
|
-
N([dr({ context:
|
|
28242
|
+
N([dr({ context: Nf }), I({ type: String })], Ff.prototype, "mode", void 0), N([I({ type: Boolean })], Ff.prototype, "rounded", void 0), N([I({
|
|
28156
28243
|
type: String,
|
|
28157
28244
|
reflect: !0
|
|
28158
|
-
})],
|
|
28159
|
-
var
|
|
28160
|
-
customElements.define("schmancy-tabs-group", class extends
|
|
28161
|
-
var
|
|
28245
|
+
})], Ff.prototype, "activeTab", void 0), N([Br({ flatten: !0 })], Ff.prototype, "tabsElements", void 0), N([R("#tabsNavigation")], Ff.prototype, "navElement", void 0), N([R("#tabsContent")], Ff.prototype, "tabsContent", void 0), N([L()], Ff.prototype, "tabs", void 0);
|
|
28246
|
+
var If = Ff = N([P("schmancy-tab-group")], Ff);
|
|
28247
|
+
customElements.define("schmancy-tabs-group", class extends If {});
|
|
28248
|
+
var Lf = "whereAreYouRicky", Rf = "hereMorty", zf = new class {
|
|
28162
28249
|
constructor() {
|
|
28163
|
-
this.activeTeleportations = /* @__PURE__ */ new Map(), this.flipRequests = new C(), this.find = (e) => Wt([E(window,
|
|
28164
|
-
window.dispatchEvent(new CustomEvent(
|
|
28250
|
+
this.activeTeleportations = /* @__PURE__ */ new Map(), this.flipRequests = new C(), this.find = (e) => Wt([E(window, Rf).pipe(D((t) => !!t.detail.component.uuid && !!e.id && t.detail.component.id === e.id && t.detail.component.uuid !== e.uuid), T((e) => e.detail.component), Zt(1)), ht(e).pipe(A(() => {
|
|
28251
|
+
window.dispatchEvent(new CustomEvent(Lf, { detail: {
|
|
28165
28252
|
id: e.id,
|
|
28166
28253
|
callerID: e.uuid
|
|
28167
28254
|
} }));
|
|
@@ -28184,10 +28271,10 @@ var If = "whereAreYouRicky", Lf = "hereMorty", Rf = new class {
|
|
|
28184
28271
|
}))), Jt((e) => Wt(e.map((e) => ht(this.flip(e)))))).subscribe();
|
|
28185
28272
|
}
|
|
28186
28273
|
}();
|
|
28187
|
-
function
|
|
28274
|
+
function Bf(e) {
|
|
28188
28275
|
return Bt(50).pipe(T(() => e.getBoundingClientRect()), O((e, t) => e.width === t.width && e.height === t.height && e.top === t.top && e.right === t.right && e.bottom === t.bottom && e.left === t.left), Zt(1));
|
|
28189
28276
|
}
|
|
28190
|
-
var
|
|
28277
|
+
var Vf = class extends B(F``) {
|
|
28191
28278
|
constructor(...e) {
|
|
28192
28279
|
super(...e), this.uuid = Math.floor(Math.random() * Date.now()), this.delay = 0, this.debugging = !1;
|
|
28193
28280
|
}
|
|
@@ -28202,8 +28289,8 @@ var Bf = class extends B(F``) {
|
|
|
28202
28289
|
bubbles: !0,
|
|
28203
28290
|
composed: !0
|
|
28204
28291
|
}));
|
|
28205
|
-
} })), E(window,
|
|
28206
|
-
e.detail.id === this.id && this.uuid && e.detail.callerID !== this.uuid && this.dispatchEvent(new CustomEvent(
|
|
28292
|
+
} })), E(window, Lf).pipe(A({ next: (e) => {
|
|
28293
|
+
e.detail.id === this.id && this.uuid && e.detail.callerID !== this.uuid && this.dispatchEvent(new CustomEvent(Rf, {
|
|
28207
28294
|
detail: { component: this },
|
|
28208
28295
|
bubbles: !0,
|
|
28209
28296
|
composed: !0
|
|
@@ -28211,10 +28298,10 @@ var Bf = class extends B(F``) {
|
|
|
28211
28298
|
} }))).pipe(k(this.disconnecting)).subscribe();
|
|
28212
28299
|
}
|
|
28213
28300
|
async firstUpdated() {
|
|
28214
|
-
ht(
|
|
28301
|
+
ht(zf.activeTeleportations.get(this.id)).pipe(D((e) => !!e), k(this.disconnecting), tn()).subscribe({
|
|
28215
28302
|
next: (e) => {
|
|
28216
|
-
this.style.setProperty("visibility", "hidden"),
|
|
28217
|
-
|
|
28303
|
+
this.style.setProperty("visibility", "hidden"), Bf(this).pipe(k(this.disconnecting)).subscribe({ next: (t) => {
|
|
28304
|
+
zf.activeTeleportations.set(this.id, t), zf.flipRequests.next({
|
|
28218
28305
|
from: { rect: e },
|
|
28219
28306
|
to: {
|
|
28220
28307
|
rect: t,
|
|
@@ -28225,8 +28312,8 @@ var Bf = class extends B(F``) {
|
|
|
28225
28312
|
} });
|
|
28226
28313
|
},
|
|
28227
28314
|
error: () => {
|
|
28228
|
-
this.style.setProperty("visibility", "visible"),
|
|
28229
|
-
|
|
28315
|
+
this.style.setProperty("visibility", "visible"), Bf(this).pipe(k(this.disconnecting)).subscribe({ next: (e) => {
|
|
28316
|
+
zf.activeTeleportations.set(this.id, e);
|
|
28230
28317
|
} });
|
|
28231
28318
|
},
|
|
28232
28319
|
complete: () => {}
|
|
@@ -28239,8 +28326,8 @@ var Bf = class extends B(F``) {
|
|
|
28239
28326
|
N([I({
|
|
28240
28327
|
type: Number,
|
|
28241
28328
|
reflect: !0
|
|
28242
|
-
})],
|
|
28243
|
-
var
|
|
28329
|
+
})], Vf.prototype, "uuid", void 0), N([I({ type: String })], Vf.prototype, "id", void 0), N([I({ type: Number })], Vf.prototype, "delay", void 0), Vf = N([P("schmancy-teleport")], Vf);
|
|
28330
|
+
var Hf = class extends z(":host{width:-webkit-fill-available;display:block;border:unset!important;line-height:unset!important;background:unset!important;padding:unset!important;font-size:unset!important;box-shadow:unset!important}:host([fillHeight]){flex-direction:column;height:100%;display:flex}:host:focus{box-shadow:unset!important}textarea:focus-visible{outline:none!important}textarea{font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;color:inherit;letter-spacing:inherit;text-transform:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;text-indent:inherit;text-shadow:inherit;text-overflow:inherit;text-rendering:inherit;text-size-adjust:inherit;text-align-last:inherit;overflow-y:auto}@keyframes onAutoFillStart{}textarea:-webkit-autofill{animation-name:onAutoFillStart}") {
|
|
28244
28331
|
static {
|
|
28245
28332
|
this.shadowRootOptions = {
|
|
28246
28333
|
...Hr.shadowRootOptions,
|
|
@@ -28415,7 +28502,7 @@ var Vf = class extends z(":host{width:-webkit-fill-available;display:block;borde
|
|
|
28415
28502
|
function $(e) {
|
|
28416
28503
|
return a(e);
|
|
28417
28504
|
}
|
|
28418
|
-
function
|
|
28505
|
+
function Uf(e) {
|
|
28419
28506
|
let t = n.fromInt(e), i = r.fromHueAndChroma(t.hue, t.chroma);
|
|
28420
28507
|
return {
|
|
28421
28508
|
0: $(i.tone(0)),
|
|
@@ -28433,50 +28520,50 @@ function Hf(e) {
|
|
|
28433
28520
|
100: $(i.tone(100))
|
|
28434
28521
|
};
|
|
28435
28522
|
}
|
|
28436
|
-
N([I()],
|
|
28523
|
+
N([I()], Hf.prototype, "label", void 0), N([I()], Hf.prototype, "name", void 0), N([I()], Hf.prototype, "placeholder", void 0), N([I({
|
|
28437
28524
|
type: String,
|
|
28438
28525
|
reflect: !0
|
|
28439
|
-
})],
|
|
28526
|
+
})], Hf.prototype, "value", void 0), N([I({ type: Number })], Hf.prototype, "minlength", void 0), N([I({ type: Number })], Hf.prototype, "maxlength", void 0), N([I({ type: Number })], Hf.prototype, "cols", void 0), N([I({ type: Number })], Hf.prototype, "rows", void 0), N([I({
|
|
28440
28527
|
type: Boolean,
|
|
28441
28528
|
reflect: !0
|
|
28442
|
-
})],
|
|
28529
|
+
})], Hf.prototype, "fillHeight", void 0), N([I({ type: Boolean })], Hf.prototype, "autoHeight", void 0), N([I({
|
|
28443
28530
|
type: String,
|
|
28444
28531
|
reflect: !0
|
|
28445
|
-
})],
|
|
28532
|
+
})], Hf.prototype, "resize", void 0), N([I({ type: String })], Hf.prototype, "wrap", void 0), N([I({ type: String })], Hf.prototype, "dirname", void 0), N([I({
|
|
28446
28533
|
type: Boolean,
|
|
28447
28534
|
reflect: !0
|
|
28448
|
-
})],
|
|
28535
|
+
})], Hf.prototype, "required", void 0), N([I({
|
|
28449
28536
|
type: Boolean,
|
|
28450
28537
|
reflect: !0
|
|
28451
|
-
})],
|
|
28538
|
+
})], Hf.prototype, "disabled", void 0), N([I({
|
|
28452
28539
|
type: Boolean,
|
|
28453
28540
|
reflect: !0
|
|
28454
|
-
})],
|
|
28541
|
+
})], Hf.prototype, "readonly", void 0), N([I({
|
|
28455
28542
|
type: Boolean,
|
|
28456
28543
|
reflect: !0
|
|
28457
|
-
})],
|
|
28544
|
+
})], Hf.prototype, "spellcheck", void 0), N([I({
|
|
28458
28545
|
type: String,
|
|
28459
28546
|
reflect: !0
|
|
28460
|
-
})],
|
|
28547
|
+
})], Hf.prototype, "align", void 0), N([I({ type: Boolean })], Hf.prototype, "autofocus", void 0), N([I({ type: Number })], Hf.prototype, "tabIndex", void 0), N([R("textarea")], Hf.prototype, "textareaElement", void 0), N([I()], Hf.prototype, "hint", void 0), N([I({
|
|
28461
28548
|
type: Boolean,
|
|
28462
28549
|
reflect: !0
|
|
28463
|
-
})],
|
|
28464
|
-
var Uf = br(":host,:root{--md-ref-typeface-brand:var(--schmancy-font-family,sans-serif);--md-ref-typeface-plain:var(--schmancy-font-family,sans-serif);--md-sys-color-primary:var(--schmancy-sys-color-primary-default);--md-sys-color-secondary:var(--schmancy-sys-color-secondary-default);--default-font-family:var(--schmancy-font-family);--border-style:solid;--spacing:.25rem;--color-scrim:var(--schmancy-sys-color-scrim);--color-shadow:var(--schmancy-sys-color-shadow);--color-outline:var(--schmancy-sys-color-outline);--color-outlineVariant:var(--schmancy-sys-color-outlineVariant);--color-outline-variant:var(--schmancy-sys-color-outlineVariant);--color-surface-default:var(--schmancy-sys-color-surface-default);--color-surface-dim:var(--schmancy-sys-color-surface-dim);--color-surface-bright:var(--schmancy-sys-color-surface-bright);--color-surface-container:var(--schmancy-sys-color-surface-container);--color-surface-low:var(--schmancy-sys-color-surface-low);--color-surface-high:var(--schmancy-sys-color-surface-high);--color-surface-highest:var(--schmancy-sys-color-surface-highest);--color-surface-lowest:var(--schmancy-sys-color-surface-lowest);--color-surface-containerLow:var(--schmancy-sys-color-surface-containerLow);--color-surface-containerHigh:var(--schmancy-sys-color-surface-containerHigh);--color-surface-containerLowest:var(--schmancy-sys-color-surface-containerLowest);--color-surface-containerHighest:var(--schmancy-sys-color-surface-containerHighest);--color-surface-on:var(--schmancy-sys-color-surface-on);--color-surface-onVariant:var(--schmancy-sys-color-surface-onVariant);--color-surface-on-variant:var(--schmancy-sys-color-surface-onVariant);--color-surface-tint:var(--schmancy-sys-color-surface-tint);--color-surface-inverse:var(--schmancy-sys-color-inverse-surface);--color-surface-inverseOn:var(--schmancy-sys-color-inverse-onSurface);--color-inverse-surface:var(--schmancy-sys-color-inverse-surface);--color-inverse-on-surface:var(--schmancy-sys-color-inverse-onSurface);--color-primary-default:var(--schmancy-sys-color-primary-default);--color-primary-on:var(--schmancy-sys-color-primary-on);--color-primary-container:var(--schmancy-sys-color-primary-container);--color-primary-onContainer:var(--schmancy-sys-color-primary-onContainer);--color-primary-on-container:var(--schmancy-sys-color-primary-onContainer);--color-primary-fixed:var(--schmancy-sys-color-primary-fixed);--color-primary-fixedDim:var(--schmancy-sys-color-primary-fixedDim);--color-primary-fixed-dim:var(--schmancy-sys-color-primary-fixedDim);--color-primary-onFixed:var(--schmancy-sys-color-primary-onFixed);--color-primary-on-fixed:var(--schmancy-sys-color-primary-onFixed);--color-primary-onFixedVariant:var(--schmancy-sys-color-primary-onFixedVariant);--color-primary-on-fixed-variant:var(--schmancy-sys-color-primary-onFixedVariant);--color-primary-inverse:var(--schmancy-sys-color-inverse-primary);--color-inverse-primary:var(--schmancy-sys-color-inverse-primary);--color-secondary-default:var(--schmancy-sys-color-secondary-default);--color-secondary-on:var(--schmancy-sys-color-secondary-on);--color-secondary-container:var(--schmancy-sys-color-secondary-container);--color-secondary-onContainer:var(--schmancy-sys-color-secondary-onContainer);--color-secondary-on-container:var(--schmancy-sys-color-secondary-onContainer);--color-secondary-fixed:var(--schmancy-sys-color-secondary-fixed);--color-secondary-fixedDim:var(--schmancy-sys-color-secondary-fixedDim);--color-secondary-fixed-dim:var(--schmancy-sys-color-secondary-fixedDim);--color-secondary-onFixed:var(--schmancy-sys-color-secondary-onFixed);--color-secondary-on-fixed:var(--schmancy-sys-color-secondary-onFixed);--color-secondary-onFixedVariant:var(--schmancy-sys-color-secondary-onFixedVariant);--color-secondary-on-fixed-variant:var(--schmancy-sys-color-secondary-onFixedVariant);--color-tertiary-default:var(--schmancy-sys-color-tertiary-default);--color-tertiary-on:var(--schmancy-sys-color-tertiary-on);--color-tertiary-container:var(--schmancy-sys-color-tertiary-container);--color-tertiary-onContainer:var(--schmancy-sys-color-tertiary-onContainer);--color-tertiary-on-container:var(--schmancy-sys-color-tertiary-onContainer);--color-tertiary-fixed:var(--schmancy-sys-color-tertiary-fixed);--color-tertiary-fixedDim:var(--schmancy-sys-color-tertiary-fixedDim);--color-tertiary-fixed-dim:var(--schmancy-sys-color-tertiary-fixedDim);--color-tertiary-onFixed:var(--schmancy-sys-color-tertiary-onFixed);--color-tertiary-on-fixed:var(--schmancy-sys-color-tertiary-onFixed);--color-tertiary-onFixedVariant:var(--schmancy-sys-color-tertiary-onFixedVariant);--color-tertiary-on-fixed-variant:var(--schmancy-sys-color-tertiary-onFixedVariant);--color-error-default:var(--schmancy-sys-color-error-default);--color-error-on:var(--schmancy-sys-color-error-on);--color-error-container:var(--schmancy-sys-color-error-container);--color-error-onContainer:var(--schmancy-sys-color-error-onContainer);--color-error-on-container:var(--schmancy-sys-color-error-onContainer);--color-success-default:var(--schmancy-sys-color-success-default);--color-success-on:var(--schmancy-sys-color-success-on);--color-success-container:var(--schmancy-sys-color-success-container);--color-success-onContainer:var(--schmancy-sys-color-success-onContainer);--color-success-on-container:var(--schmancy-sys-color-success-onContainer);--color-warning-default:var(--schmancy-sys-color-warning-default);--color-warning-on:var(--schmancy-sys-color-warning-on);--color-warning-container:var(--schmancy-sys-color-warning-container);--color-warning-onContainer:var(--schmancy-sys-color-warning-onContainer);--color-warning-on-container:var(--schmancy-sys-color-warning-onContainer);--color-info-default:var(--schmancy-sys-color-info-default);--color-info-on:var(--schmancy-sys-color-info-on);--color-info-container:var(--schmancy-sys-color-info-container);--color-info-onContainer:var(--schmancy-sys-color-info-onContainer);--color-info-on-container:var(--schmancy-sys-color-info-onContainer);--shadow-xs:0 1px 2px 0 #0000000d;--shadow-sm:0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--shadow-xl:0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;--shadow-2xl:var(--schmancy-sys-elevation-5);--outline-1:var(--schmancy-sys-outline-1);--font-sans:ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--font-serif:ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif;--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-200:oklch(88.5% .062 18.334);--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-red-950:oklch(25.8% .092 26.042);--color-orange-50:oklch(98% .016 73.684);--color-orange-100:oklch(95.4% .038 75.164);--color-orange-200:oklch(90.1% .076 70.697);--color-orange-300:oklch(83.7% .128 66.29);--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-orange-600:oklch(64.6% .222 41.116);--color-orange-700:oklch(55.3% .195 38.402);--color-orange-800:oklch(47% .157 37.304);--color-orange-900:oklch(40.8% .123 38.172);--color-orange-950:oklch(26.6% .079 36.259);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-amber-950:oklch(27.9% .077 45.635);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-100:oklch(97.3% .071 103.193);--color-yellow-200:oklch(94.5% .129 101.54);--color-yellow-300:oklch(90.5% .182 98.111);--color-yellow-400:oklch(85.2% .199 91.936);--color-yellow-500:oklch(79.5% .184 86.047);--color-yellow-600:oklch(68.1% .162 75.834);--color-yellow-700:oklch(55.4% .135 66.442);--color-yellow-800:oklch(47.6% .114 61.907);--color-yellow-900:oklch(42.1% .095 57.708);--color-yellow-950:oklch(28.6% .066 53.813);--color-lime-50:oklch(98.6% .031 120.757);--color-lime-100:oklch(96.7% .067 122.328);--color-lime-200:oklch(93.8% .127 124.321);--color-lime-300:oklch(89.7% .196 126.665);--color-lime-400:oklch(84.1% .238 128.85);--color-lime-500:oklch(76.8% .233 130.85);--color-lime-600:oklch(64.8% .2 131.684);--color-lime-700:oklch(53.2% .157 131.589);--color-lime-800:oklch(45.3% .124 130.933);--color-lime-900:oklch(40.5% .101 131.063);--color-lime-950:oklch(27.4% .072 132.109);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-200:oklch(92.5% .084 155.995);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-green-800:oklch(44.8% .119 151.328);--color-green-900:oklch(39.3% .095 152.535);--color-green-950:oklch(26.6% .065 152.934);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-200:oklch(90.5% .093 164.15);--color-emerald-300:oklch(84.5% .143 164.978);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-emerald-800:oklch(43.2% .095 166.913);--color-emerald-900:oklch(37.8% .077 168.94);--color-emerald-950:oklch(26.2% .051 172.552);--color-teal-50:oklch(98.4% .014 180.72);--color-teal-100:oklch(95.3% .051 180.801);--color-teal-200:oklch(91% .096 180.426);--color-teal-300:oklch(85.5% .138 181.071);--color-teal-400:oklch(77.7% .152 181.912);--color-teal-500:oklch(70.4% .14 182.503);--color-teal-600:oklch(60% .118 184.704);--color-teal-700:oklch(51.1% .096 186.391);--color-teal-800:oklch(43.7% .078 188.216);--color-teal-900:oklch(38.6% .063 188.416);--color-teal-950:oklch(27.7% .046 192.524);--color-cyan-50:oklch(98.4% .019 200.873);--color-cyan-100:oklch(95.6% .045 203.388);--color-cyan-200:oklch(91.7% .08 205.041);--color-cyan-300:oklch(86.5% .127 207.078);--color-cyan-400:oklch(78.9% .154 211.53);--color-cyan-500:oklch(71.5% .143 215.221);--color-cyan-600:oklch(60.9% .126 221.723);--color-cyan-700:oklch(52% .105 223.128);--color-cyan-800:oklch(45% .085 224.283);--color-cyan-900:oklch(39.8% .07 227.392);--color-cyan-950:oklch(30.2% .056 229.695);--color-sky-50:oklch(97.7% .013 236.62);--color-sky-100:oklch(95.1% .026 236.824);--color-sky-200:oklch(90.1% .058 230.902);--color-sky-300:oklch(82.8% .111 230.318);--color-sky-400:oklch(74.6% .16 232.661);--color-sky-500:oklch(68.5% .169 237.323);--color-sky-600:oklch(58.8% .158 241.966);--color-sky-700:oklch(50% .134 242.749);--color-sky-800:oklch(44.3% .11 240.79);--color-sky-900:oklch(39.1% .09 240.876);--color-sky-950:oklch(29.3% .066 243.157);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-700:oklch(48.8% .243 264.376);--color-blue-800:oklch(42.4% .199 265.638);--color-blue-900:oklch(37.9% .146 265.522);--color-blue-950:oklch(28.2% .091 267.935);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-100:oklch(93% .034 272.788);--color-indigo-200:oklch(87% .065 274.039);--color-indigo-300:oklch(78.5% .115 274.713);--color-indigo-400:oklch(67.3% .182 276.935);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-indigo-800:oklch(39.8% .195 277.366);--color-indigo-900:oklch(35.9% .144 278.697);--color-indigo-950:oklch(25.7% .09 281.288);--color-violet-50:oklch(96.9% .016 293.756);--color-violet-100:oklch(94.3% .029 294.588);--color-violet-200:oklch(89.4% .057 293.283);--color-violet-300:oklch(81.1% .111 293.571);--color-violet-400:oklch(70.2% .183 293.541);--color-violet-500:oklch(60.6% .25 292.717);--color-violet-600:oklch(54.1% .281 293.009);--color-violet-700:oklch(49.1% .27 292.581);--color-violet-800:oklch(43.2% .232 292.759);--color-violet-900:oklch(38% .189 293.745);--color-violet-950:oklch(28.3% .141 291.089);--color-purple-50:oklch(97.7% .014 308.299);--color-purple-100:oklch(94.6% .033 307.174);--color-purple-200:oklch(90.2% .063 306.703);--color-purple-300:oklch(82.7% .119 306.383);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-purple-600:oklch(55.8% .288 302.321);--color-purple-700:oklch(49.6% .265 301.924);--color-purple-800:oklch(43.8% .218 303.724);--color-purple-900:oklch(38.1% .176 304.987);--color-purple-950:oklch(29.1% .149 302.717);--color-fuchsia-50:oklch(97.7% .017 320.058);--color-fuchsia-100:oklch(95.2% .037 318.852);--color-fuchsia-200:oklch(90.3% .076 319.62);--color-fuchsia-300:oklch(83.3% .145 321.434);--color-fuchsia-400:oklch(74% .238 322.16);--color-fuchsia-500:oklch(66.7% .295 322.15);--color-fuchsia-600:oklch(59.1% .293 322.896);--color-fuchsia-700:oklch(51.8% .253 323.949);--color-fuchsia-800:oklch(45.2% .211 324.591);--color-fuchsia-900:oklch(40.1% .17 325.612);--color-fuchsia-950:oklch(29.3% .136 325.661);--color-pink-50:oklch(97.1% .014 343.198);--color-pink-100:oklch(94.8% .028 342.258);--color-pink-200:oklch(89.9% .061 343.231);--color-pink-300:oklch(82.3% .12 346.018);--color-pink-400:oklch(71.8% .202 349.761);--color-pink-500:oklch(65.6% .241 354.308);--color-pink-600:oklch(59.2% .249 .584);--color-pink-700:oklch(52.5% .223 3.958);--color-pink-800:oklch(45.9% .187 3.815);--color-pink-900:oklch(40.8% .153 2.432);--color-pink-950:oklch(28.4% .109 3.907);--color-rose-50:oklch(96.9% .015 12.422);--color-rose-100:oklch(94.1% .03 12.58);--color-rose-200:oklch(89.2% .058 10.001);--color-rose-300:oklch(81% .117 11.638);--color-rose-400:oklch(71.2% .194 13.428);--color-rose-500:oklch(64.5% .246 16.439);--color-rose-600:oklch(58.6% .253 17.585);--color-rose-700:oklch(51.4% .222 16.935);--color-rose-800:oklch(45.5% .188 13.697);--color-rose-900:oklch(41% .159 10.272);--color-rose-950:oklch(27.1% .105 12.094);--color-slate-50:oklch(98.4% .003 247.858);--color-slate-100:oklch(96.8% .007 247.896);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-600:oklch(44.6% .043 257.281);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-slate-950:oklch(12.9% .042 264.695);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-zinc-50:oklch(98.5% 0 0);--color-zinc-100:oklch(96.7% .001 286.375);--color-zinc-200:oklch(92% .004 286.32);--color-zinc-300:oklch(87.1% .006 286.286);--color-zinc-400:oklch(70.5% .015 286.067);--color-zinc-500:oklch(55.2% .016 285.938);--color-zinc-600:oklch(44.2% .017 285.786);--color-zinc-700:oklch(37% .013 285.805);--color-zinc-800:oklch(27.4% .006 286.033);--color-zinc-900:oklch(21% .006 285.885);--color-zinc-950:oklch(14.1% .005 285.823);--color-neutral-50:oklch(98.5% 0 0);--color-neutral-100:oklch(97% 0 0);--color-neutral-200:oklch(92.2% 0 0);--color-neutral-300:oklch(87% 0 0);--color-neutral-400:oklch(70.8% 0 0);--color-neutral-500:oklch(55.6% 0 0);--color-neutral-600:oklch(43.9% 0 0);--color-neutral-700:oklch(37.1% 0 0);--color-neutral-800:oklch(26.9% 0 0);--color-neutral-900:oklch(20.5% 0 0);--color-neutral-950:oklch(14.5% 0 0);--color-stone-50:oklch(98.5% .001 106.423);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-300:oklch(86.9% .005 56.366);--color-stone-400:oklch(70.9% .01 56.259);--color-stone-500:oklch(55.3% .013 58.071);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--color-stone-950:oklch(14.7% .004 49.25);--color-black:#000;--color-white:#fff;--breakpoint-sm:40rem;--breakpoint-md:48rem;--breakpoint-lg:64rem;--breakpoint-xl:80rem;--breakpoint-2xl:96rem;--container-3xs:16rem;--container-2xs:18rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5 / 2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--radius-xs:.125rem;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--radius-4xl:2rem;--shadow-smxs:0 1px #0000000d;--shadow-smxl:0 25px 50px -12px #00000040;--inset-shadow-smxs:inset 0 1px #0000000d;--inset-shadow-xs:inset 0 1px 1px #0000000d;--inset-shadow-sm:inset 0 2px 4px #0000000d;--drop-shadow-xs:0 1px 1px #0000000d;--drop-shadow-sm:0 1px 2px #00000026;--drop-shadow-md:0 3px 3px #0000001f;--drop-shadow-lg:0 4px 4px #00000026;--drop-shadow-xl:0 9px 7px #0000001a;--drop-shadow-smxl:0 25px 25px #00000026;--blur-xs:4px;--blur-sm:8px;--blur-md:12px;--blur-lg:16px;--blur-xl:24px;--blur-2xl:40px;--blur-3xl:64px;--perspective-dramatic:100px;--perspective-near:300px;--perspective-normal:500px;--perspective-midrange:800px;--perspective-distant:1200px;--aspect-video:16 / 9;--ease-in:cubic-bezier(.4, 0, 1, 1);--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-spin:spin 1s linear infinite;--animate-ping:ping 1s cubic-bezier(0, 0, .2, 1) infinite;--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--animate-bounce:bounce 1s infinite;--animate-float-1:float-drift 20s ease-in-out infinite;--animate-float-2:float-drift-alt 25s ease-in-out infinite;--animate-float-3:float-drift 30s ease-in-out infinite reverse;--animate-pulse-glow:pulse-glow 8s ease-in-out infinite;--animate-spin-slow:slow-spin 120s linear infinite;--animate-aurora-drift:aurora-drift 30s ease-in-out infinite;--animate-scene-enter:scene-enter 1.2s cubic-bezier(.16, 1, .3, 1) forwards;--md-sys-color-scrim:var(--schmancy-sys-color-scrim);--md-sys-color-outline:var(--schmancy-sys-color-outline);--md-sys-color-outlineVariant:var(--schmancy-sys-color-outlineVariant);--md-sys-color-surface-default:var(--schmancy-sys-color-surface-default);--md-sys-color-surface-dim:var(--schmancy-sys-color-surface-dim);--md-sys-color-surface-bright:var(--schmancy-sys-color-surface-bright);--md-sys-color-surface-container:var(--schmancy-sys-color-surface-container);--md-sys-color-surface-low:var(--schmancy-sys-color-surface-low);--md-sys-color-surface-high:var(--schmancy-sys-color-surface-high);--md-sys-color-surface-highest:var(--schmancy-sys-color-surface-highest);--md-sys-color-surface-lowest:var(--schmancy-sys-color-surface-lowest);--md-sys-color-surface-on:var(--schmancy-sys-color-surface-on);--md-sys-color-on-surface-variant:var(--schmancy-sys-color-surface-onVariant);--md-sys-color-on-secondary-container:var(--schmancy-sys-color-secondary-onContainer);--md-sys-color-primary-default:var(--schmancy-sys-color-primary-default);--md-sys-color-primary-on:var(--schmancy-sys-color-primary-on);--md-sys-color-primary-container:var(--schmancy-sys-color-primary-container);--md-sys-color-primary-onContainer:var(--schmancy-sys-color-primary-onContainer);--md-sys-color-secondary-default:var(--schmancy-sys-color-secondary-default);--md-sys-color-secondary-on:var(--schmancy-sys-color-secondary-on);--md-sys-color-secondary-container:var(--schmancy-sys-color-secondary-container);--md-sys-color-secondary-onContainer:var(--schmancy-sys-color-secondary-onContainer);--md-sys-color-tertiary-default:var(--schmancy-sys-color-tertiary-default);--md-sys-color-tertiary-on:var(--schmancy-sys-color-tertiary-on);--md-sys-color-tertiary-container:var(--schmancy-sys-color-tertiary-container);--md-sys-color-tertiary-onContainer:var(--schmancy-sys-color-tertiary-onContainer);--md-sys-color-error-default:var(--schmancy-sys-color-error-default);--md-sys-color-error-on:var(--schmancy-sys-color-error-on);--md-sys-color-error-container:var(--schmancy-sys-color-error-container);--md-sys-color-error-onContainer:var(--schmancy-sys-color-error-onContainer);--md-sys-color-success-default:var(--schmancy-sys-color-success-default);--md-sys-color-success-on:var(--schmancy-sys-color-success-on);--md-sys-color-success-container:var(--schmancy-sys-color-success-container);--md-sys-color-success-onContainer:var(--schmancy-sys-color-success-onContainer);--md-sys-color-warning-default:var(--schmancy-sys-color-warning-default);--md-sys-color-warning-on:var(--schmancy-sys-color-warning-on);--md-sys-color-warning-container:var(--schmancy-sys-color-warning-container);--md-sys-color-warning-onContainer:var(--schmancy-sys-color-warning-onContainer);--md-sys-color-info-default:var(--schmancy-sys-color-info-default);--md-sys-color-info-on:var(--schmancy-sys-color-info-on);--md-sys-color-info-container:var(--schmancy-sys-color-info-container);--md-sys-color-info-onContainer:var(--schmancy-sys-color-info-onContainer);--md-sys-elevation-0:var(--schmancy-sys-elevation-0);--md-sys-elevation-1:var(--schmancy-sys-elevation-1);--md-sys-elevation-2:var(--schmancy-sys-elevation-2);--md-sys-elevation-3:var(--schmancy-sys-elevation-3);--md-sys-elevation-4:var(--schmancy-sys-elevation-4);--md-sys-elevation-5:var(--schmancy-sys-elevation-5);--md-sys-outline-1:var(--schmancy-sys-outline-1);--md-filter-chip-label-text-color:var(--schmancy-sys-color-surface-on);--md-checkbox-focus-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-focus-outline-width:2px;--md-checkbox-hover-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-hover-outline-width:2px;--md-checkbox-pressed-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-pressed-outline-width:2px;--md-checkbox-disabled-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-disabled-outline-width:2px}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes float-drift{0%,to{transform:translate(0)rotate(0)}25%{transform:translate(20px,-30px)rotate(2deg)}50%{transform:translate(-10px,-50px)rotate(-1deg)}75%{transform:translate(15px,-20px)rotate(1deg)}}@keyframes float-drift-alt{0%,to{transform:translate(0)rotate(0)}25%{transform:translate(-25px,20px)rotate(-2deg)}50%{transform:translate(15px,40px)rotate(1deg)}75%{transform:translate(-20px,15px)rotate(-1deg)}}@keyframes pulse-glow{0%,to{opacity:.15;transform:scale(1)}50%{opacity:.25;transform:scale(1.05)}}@keyframes slow-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes aurora-drift{0%,to{transform:translate(0)scale(1)rotate(0)}33%{transform:translate(3%,-5%)scale(1.05)rotate(1deg)}66%{transform:translate(-3%,3%)scale(.95)rotate(-1deg)}}@keyframes scene-enter{0%{opacity:0;filter:blur(12px);transform:scale(.92)}to{opacity:1;filter:blur();transform:scale(1)}}@keyframes star-appear{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}@keyframes star-twinkle{0%,to{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.92)}}"), Wf = window.matchMedia("(prefers-color-scheme: dark)"), Gf = new x((e) => {
|
|
28465
|
-
let t =
|
|
28550
|
+
})], Hf.prototype, "error", void 0), Hf = N([P("schmancy-textarea")], Hf);
|
|
28551
|
+
var Wf = br(":host,:root{--md-ref-typeface-brand:var(--schmancy-font-family,sans-serif);--md-ref-typeface-plain:var(--schmancy-font-family,sans-serif);--md-sys-color-primary:var(--schmancy-sys-color-primary-default);--md-sys-color-secondary:var(--schmancy-sys-color-secondary-default);--default-font-family:var(--schmancy-font-family);--border-style:solid;--spacing:.25rem;--color-scrim:var(--schmancy-sys-color-scrim);--color-shadow:var(--schmancy-sys-color-shadow);--color-outline:var(--schmancy-sys-color-outline);--color-outlineVariant:var(--schmancy-sys-color-outlineVariant);--color-outline-variant:var(--schmancy-sys-color-outlineVariant);--color-surface-default:var(--schmancy-sys-color-surface-default);--color-surface-dim:var(--schmancy-sys-color-surface-dim);--color-surface-bright:var(--schmancy-sys-color-surface-bright);--color-surface-container:var(--schmancy-sys-color-surface-container);--color-surface-low:var(--schmancy-sys-color-surface-low);--color-surface-high:var(--schmancy-sys-color-surface-high);--color-surface-highest:var(--schmancy-sys-color-surface-highest);--color-surface-lowest:var(--schmancy-sys-color-surface-lowest);--color-surface-containerLow:var(--schmancy-sys-color-surface-containerLow);--color-surface-containerHigh:var(--schmancy-sys-color-surface-containerHigh);--color-surface-containerLowest:var(--schmancy-sys-color-surface-containerLowest);--color-surface-containerHighest:var(--schmancy-sys-color-surface-containerHighest);--color-surface-on:var(--schmancy-sys-color-surface-on);--color-surface-onVariant:var(--schmancy-sys-color-surface-onVariant);--color-surface-on-variant:var(--schmancy-sys-color-surface-onVariant);--color-surface-tint:var(--schmancy-sys-color-surface-tint);--color-surface-inverse:var(--schmancy-sys-color-inverse-surface);--color-surface-inverseOn:var(--schmancy-sys-color-inverse-onSurface);--color-inverse-surface:var(--schmancy-sys-color-inverse-surface);--color-inverse-on-surface:var(--schmancy-sys-color-inverse-onSurface);--color-primary-default:var(--schmancy-sys-color-primary-default);--color-primary-on:var(--schmancy-sys-color-primary-on);--color-primary-container:var(--schmancy-sys-color-primary-container);--color-primary-onContainer:var(--schmancy-sys-color-primary-onContainer);--color-primary-on-container:var(--schmancy-sys-color-primary-onContainer);--color-primary-fixed:var(--schmancy-sys-color-primary-fixed);--color-primary-fixedDim:var(--schmancy-sys-color-primary-fixedDim);--color-primary-fixed-dim:var(--schmancy-sys-color-primary-fixedDim);--color-primary-onFixed:var(--schmancy-sys-color-primary-onFixed);--color-primary-on-fixed:var(--schmancy-sys-color-primary-onFixed);--color-primary-onFixedVariant:var(--schmancy-sys-color-primary-onFixedVariant);--color-primary-on-fixed-variant:var(--schmancy-sys-color-primary-onFixedVariant);--color-primary-inverse:var(--schmancy-sys-color-inverse-primary);--color-inverse-primary:var(--schmancy-sys-color-inverse-primary);--color-secondary-default:var(--schmancy-sys-color-secondary-default);--color-secondary-on:var(--schmancy-sys-color-secondary-on);--color-secondary-container:var(--schmancy-sys-color-secondary-container);--color-secondary-onContainer:var(--schmancy-sys-color-secondary-onContainer);--color-secondary-on-container:var(--schmancy-sys-color-secondary-onContainer);--color-secondary-fixed:var(--schmancy-sys-color-secondary-fixed);--color-secondary-fixedDim:var(--schmancy-sys-color-secondary-fixedDim);--color-secondary-fixed-dim:var(--schmancy-sys-color-secondary-fixedDim);--color-secondary-onFixed:var(--schmancy-sys-color-secondary-onFixed);--color-secondary-on-fixed:var(--schmancy-sys-color-secondary-onFixed);--color-secondary-onFixedVariant:var(--schmancy-sys-color-secondary-onFixedVariant);--color-secondary-on-fixed-variant:var(--schmancy-sys-color-secondary-onFixedVariant);--color-tertiary-default:var(--schmancy-sys-color-tertiary-default);--color-tertiary-on:var(--schmancy-sys-color-tertiary-on);--color-tertiary-container:var(--schmancy-sys-color-tertiary-container);--color-tertiary-onContainer:var(--schmancy-sys-color-tertiary-onContainer);--color-tertiary-on-container:var(--schmancy-sys-color-tertiary-onContainer);--color-tertiary-fixed:var(--schmancy-sys-color-tertiary-fixed);--color-tertiary-fixedDim:var(--schmancy-sys-color-tertiary-fixedDim);--color-tertiary-fixed-dim:var(--schmancy-sys-color-tertiary-fixedDim);--color-tertiary-onFixed:var(--schmancy-sys-color-tertiary-onFixed);--color-tertiary-on-fixed:var(--schmancy-sys-color-tertiary-onFixed);--color-tertiary-onFixedVariant:var(--schmancy-sys-color-tertiary-onFixedVariant);--color-tertiary-on-fixed-variant:var(--schmancy-sys-color-tertiary-onFixedVariant);--color-error-default:var(--schmancy-sys-color-error-default);--color-error-on:var(--schmancy-sys-color-error-on);--color-error-container:var(--schmancy-sys-color-error-container);--color-error-onContainer:var(--schmancy-sys-color-error-onContainer);--color-error-on-container:var(--schmancy-sys-color-error-onContainer);--color-success-default:var(--schmancy-sys-color-success-default);--color-success-on:var(--schmancy-sys-color-success-on);--color-success-container:var(--schmancy-sys-color-success-container);--color-success-onContainer:var(--schmancy-sys-color-success-onContainer);--color-success-on-container:var(--schmancy-sys-color-success-onContainer);--color-warning-default:var(--schmancy-sys-color-warning-default);--color-warning-on:var(--schmancy-sys-color-warning-on);--color-warning-container:var(--schmancy-sys-color-warning-container);--color-warning-onContainer:var(--schmancy-sys-color-warning-onContainer);--color-warning-on-container:var(--schmancy-sys-color-warning-onContainer);--color-info-default:var(--schmancy-sys-color-info-default);--color-info-on:var(--schmancy-sys-color-info-on);--color-info-container:var(--schmancy-sys-color-info-container);--color-info-onContainer:var(--schmancy-sys-color-info-onContainer);--color-info-on-container:var(--schmancy-sys-color-info-onContainer);--shadow-xs:0 1px 2px 0 #0000000d;--shadow-sm:0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;--shadow-md:0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;--shadow-lg:0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;--shadow-xl:0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;--shadow-2xl:var(--schmancy-sys-elevation-5);--outline-1:var(--schmancy-sys-outline-1);--font-sans:ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--font-serif:ui-serif, Georgia, Cambria, \"Times New Roman\", Times, serif;--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-100:oklch(93.6% .032 17.717);--color-red-200:oklch(88.5% .062 18.334);--color-red-300:oklch(80.8% .114 19.571);--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-red-950:oklch(25.8% .092 26.042);--color-orange-50:oklch(98% .016 73.684);--color-orange-100:oklch(95.4% .038 75.164);--color-orange-200:oklch(90.1% .076 70.697);--color-orange-300:oklch(83.7% .128 66.29);--color-orange-400:oklch(75% .183 55.934);--color-orange-500:oklch(70.5% .213 47.604);--color-orange-600:oklch(64.6% .222 41.116);--color-orange-700:oklch(55.3% .195 38.402);--color-orange-800:oklch(47% .157 37.304);--color-orange-900:oklch(40.8% .123 38.172);--color-orange-950:oklch(26.6% .079 36.259);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-300:oklch(87.9% .169 91.605);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-amber-800:oklch(47.3% .137 46.201);--color-amber-900:oklch(41.4% .112 45.904);--color-amber-950:oklch(27.9% .077 45.635);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-100:oklch(97.3% .071 103.193);--color-yellow-200:oklch(94.5% .129 101.54);--color-yellow-300:oklch(90.5% .182 98.111);--color-yellow-400:oklch(85.2% .199 91.936);--color-yellow-500:oklch(79.5% .184 86.047);--color-yellow-600:oklch(68.1% .162 75.834);--color-yellow-700:oklch(55.4% .135 66.442);--color-yellow-800:oklch(47.6% .114 61.907);--color-yellow-900:oklch(42.1% .095 57.708);--color-yellow-950:oklch(28.6% .066 53.813);--color-lime-50:oklch(98.6% .031 120.757);--color-lime-100:oklch(96.7% .067 122.328);--color-lime-200:oklch(93.8% .127 124.321);--color-lime-300:oklch(89.7% .196 126.665);--color-lime-400:oklch(84.1% .238 128.85);--color-lime-500:oklch(76.8% .233 130.85);--color-lime-600:oklch(64.8% .2 131.684);--color-lime-700:oklch(53.2% .157 131.589);--color-lime-800:oklch(45.3% .124 130.933);--color-lime-900:oklch(40.5% .101 131.063);--color-lime-950:oklch(27.4% .072 132.109);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-200:oklch(92.5% .084 155.995);--color-green-300:oklch(87.1% .15 154.449);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-green-800:oklch(44.8% .119 151.328);--color-green-900:oklch(39.3% .095 152.535);--color-green-950:oklch(26.6% .065 152.934);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-200:oklch(90.5% .093 164.15);--color-emerald-300:oklch(84.5% .143 164.978);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-emerald-800:oklch(43.2% .095 166.913);--color-emerald-900:oklch(37.8% .077 168.94);--color-emerald-950:oklch(26.2% .051 172.552);--color-teal-50:oklch(98.4% .014 180.72);--color-teal-100:oklch(95.3% .051 180.801);--color-teal-200:oklch(91% .096 180.426);--color-teal-300:oklch(85.5% .138 181.071);--color-teal-400:oklch(77.7% .152 181.912);--color-teal-500:oklch(70.4% .14 182.503);--color-teal-600:oklch(60% .118 184.704);--color-teal-700:oklch(51.1% .096 186.391);--color-teal-800:oklch(43.7% .078 188.216);--color-teal-900:oklch(38.6% .063 188.416);--color-teal-950:oklch(27.7% .046 192.524);--color-cyan-50:oklch(98.4% .019 200.873);--color-cyan-100:oklch(95.6% .045 203.388);--color-cyan-200:oklch(91.7% .08 205.041);--color-cyan-300:oklch(86.5% .127 207.078);--color-cyan-400:oklch(78.9% .154 211.53);--color-cyan-500:oklch(71.5% .143 215.221);--color-cyan-600:oklch(60.9% .126 221.723);--color-cyan-700:oklch(52% .105 223.128);--color-cyan-800:oklch(45% .085 224.283);--color-cyan-900:oklch(39.8% .07 227.392);--color-cyan-950:oklch(30.2% .056 229.695);--color-sky-50:oklch(97.7% .013 236.62);--color-sky-100:oklch(95.1% .026 236.824);--color-sky-200:oklch(90.1% .058 230.902);--color-sky-300:oklch(82.8% .111 230.318);--color-sky-400:oklch(74.6% .16 232.661);--color-sky-500:oklch(68.5% .169 237.323);--color-sky-600:oklch(58.8% .158 241.966);--color-sky-700:oklch(50% .134 242.749);--color-sky-800:oklch(44.3% .11 240.79);--color-sky-900:oklch(39.1% .09 240.876);--color-sky-950:oklch(29.3% .066 243.157);--color-blue-50:oklch(97% .014 254.604);--color-blue-100:oklch(93.2% .032 255.585);--color-blue-200:oklch(88.2% .059 254.128);--color-blue-300:oklch(80.9% .105 251.813);--color-blue-400:oklch(70.7% .165 254.624);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-700:oklch(48.8% .243 264.376);--color-blue-800:oklch(42.4% .199 265.638);--color-blue-900:oklch(37.9% .146 265.522);--color-blue-950:oklch(28.2% .091 267.935);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-100:oklch(93% .034 272.788);--color-indigo-200:oklch(87% .065 274.039);--color-indigo-300:oklch(78.5% .115 274.713);--color-indigo-400:oklch(67.3% .182 276.935);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-indigo-700:oklch(45.7% .24 277.023);--color-indigo-800:oklch(39.8% .195 277.366);--color-indigo-900:oklch(35.9% .144 278.697);--color-indigo-950:oklch(25.7% .09 281.288);--color-violet-50:oklch(96.9% .016 293.756);--color-violet-100:oklch(94.3% .029 294.588);--color-violet-200:oklch(89.4% .057 293.283);--color-violet-300:oklch(81.1% .111 293.571);--color-violet-400:oklch(70.2% .183 293.541);--color-violet-500:oklch(60.6% .25 292.717);--color-violet-600:oklch(54.1% .281 293.009);--color-violet-700:oklch(49.1% .27 292.581);--color-violet-800:oklch(43.2% .232 292.759);--color-violet-900:oklch(38% .189 293.745);--color-violet-950:oklch(28.3% .141 291.089);--color-purple-50:oklch(97.7% .014 308.299);--color-purple-100:oklch(94.6% .033 307.174);--color-purple-200:oklch(90.2% .063 306.703);--color-purple-300:oklch(82.7% .119 306.383);--color-purple-400:oklch(71.4% .203 305.504);--color-purple-500:oklch(62.7% .265 303.9);--color-purple-600:oklch(55.8% .288 302.321);--color-purple-700:oklch(49.6% .265 301.924);--color-purple-800:oklch(43.8% .218 303.724);--color-purple-900:oklch(38.1% .176 304.987);--color-purple-950:oklch(29.1% .149 302.717);--color-fuchsia-50:oklch(97.7% .017 320.058);--color-fuchsia-100:oklch(95.2% .037 318.852);--color-fuchsia-200:oklch(90.3% .076 319.62);--color-fuchsia-300:oklch(83.3% .145 321.434);--color-fuchsia-400:oklch(74% .238 322.16);--color-fuchsia-500:oklch(66.7% .295 322.15);--color-fuchsia-600:oklch(59.1% .293 322.896);--color-fuchsia-700:oklch(51.8% .253 323.949);--color-fuchsia-800:oklch(45.2% .211 324.591);--color-fuchsia-900:oklch(40.1% .17 325.612);--color-fuchsia-950:oklch(29.3% .136 325.661);--color-pink-50:oklch(97.1% .014 343.198);--color-pink-100:oklch(94.8% .028 342.258);--color-pink-200:oklch(89.9% .061 343.231);--color-pink-300:oklch(82.3% .12 346.018);--color-pink-400:oklch(71.8% .202 349.761);--color-pink-500:oklch(65.6% .241 354.308);--color-pink-600:oklch(59.2% .249 .584);--color-pink-700:oklch(52.5% .223 3.958);--color-pink-800:oklch(45.9% .187 3.815);--color-pink-900:oklch(40.8% .153 2.432);--color-pink-950:oklch(28.4% .109 3.907);--color-rose-50:oklch(96.9% .015 12.422);--color-rose-100:oklch(94.1% .03 12.58);--color-rose-200:oklch(89.2% .058 10.001);--color-rose-300:oklch(81% .117 11.638);--color-rose-400:oklch(71.2% .194 13.428);--color-rose-500:oklch(64.5% .246 16.439);--color-rose-600:oklch(58.6% .253 17.585);--color-rose-700:oklch(51.4% .222 16.935);--color-rose-800:oklch(45.5% .188 13.697);--color-rose-900:oklch(41% .159 10.272);--color-rose-950:oklch(27.1% .105 12.094);--color-slate-50:oklch(98.4% .003 247.858);--color-slate-100:oklch(96.8% .007 247.896);--color-slate-200:oklch(92.9% .013 255.508);--color-slate-300:oklch(86.9% .022 252.894);--color-slate-400:oklch(70.4% .04 256.788);--color-slate-500:oklch(55.4% .046 257.417);--color-slate-600:oklch(44.6% .043 257.281);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-slate-950:oklch(12.9% .042 264.695);--color-gray-50:oklch(98.5% .002 247.839);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-300:oklch(87.2% .01 258.338);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-500:oklch(55.1% .027 264.364);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-800:oklch(27.8% .033 256.848);--color-gray-900:oklch(21% .034 264.665);--color-gray-950:oklch(13% .028 261.692);--color-zinc-50:oklch(98.5% 0 0);--color-zinc-100:oklch(96.7% .001 286.375);--color-zinc-200:oklch(92% .004 286.32);--color-zinc-300:oklch(87.1% .006 286.286);--color-zinc-400:oklch(70.5% .015 286.067);--color-zinc-500:oklch(55.2% .016 285.938);--color-zinc-600:oklch(44.2% .017 285.786);--color-zinc-700:oklch(37% .013 285.805);--color-zinc-800:oklch(27.4% .006 286.033);--color-zinc-900:oklch(21% .006 285.885);--color-zinc-950:oklch(14.1% .005 285.823);--color-neutral-50:oklch(98.5% 0 0);--color-neutral-100:oklch(97% 0 0);--color-neutral-200:oklch(92.2% 0 0);--color-neutral-300:oklch(87% 0 0);--color-neutral-400:oklch(70.8% 0 0);--color-neutral-500:oklch(55.6% 0 0);--color-neutral-600:oklch(43.9% 0 0);--color-neutral-700:oklch(37.1% 0 0);--color-neutral-800:oklch(26.9% 0 0);--color-neutral-900:oklch(20.5% 0 0);--color-neutral-950:oklch(14.5% 0 0);--color-stone-50:oklch(98.5% .001 106.423);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-300:oklch(86.9% .005 56.366);--color-stone-400:oklch(70.9% .01 56.259);--color-stone-500:oklch(55.3% .013 58.071);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--color-stone-950:oklch(14.7% .004 49.25);--color-black:#000;--color-white:#fff;--breakpoint-sm:40rem;--breakpoint-md:48rem;--breakpoint-lg:64rem;--breakpoint-xl:80rem;--breakpoint-2xl:96rem;--container-3xs:16rem;--container-2xs:18rem;--container-xs:20rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--container-3xl:48rem;--container-4xl:56rem;--container-5xl:64rem;--container-6xl:72rem;--container-7xl:80rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5 / 2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-6xl:3.75rem;--text-6xl--line-height:1;--text-7xl:4.5rem;--text-7xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--text-9xl:8rem;--text-9xl--line-height:1;--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-normal:0em;--tracking-wide:.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--leading-loose:2;--radius-xs:.125rem;--radius-sm:.25rem;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--radius-4xl:2rem;--shadow-smxs:0 1px #0000000d;--shadow-smxl:0 25px 50px -12px #00000040;--inset-shadow-smxs:inset 0 1px #0000000d;--inset-shadow-xs:inset 0 1px 1px #0000000d;--inset-shadow-sm:inset 0 2px 4px #0000000d;--drop-shadow-xs:0 1px 1px #0000000d;--drop-shadow-sm:0 1px 2px #00000026;--drop-shadow-md:0 3px 3px #0000001f;--drop-shadow-lg:0 4px 4px #00000026;--drop-shadow-xl:0 9px 7px #0000001a;--drop-shadow-smxl:0 25px 25px #00000026;--blur-xs:4px;--blur-sm:8px;--blur-md:12px;--blur-lg:16px;--blur-xl:24px;--blur-2xl:40px;--blur-3xl:64px;--perspective-dramatic:100px;--perspective-near:300px;--perspective-normal:500px;--perspective-midrange:800px;--perspective-distant:1200px;--aspect-video:16 / 9;--ease-in:cubic-bezier(.4, 0, 1, 1);--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-spin:spin 1s linear infinite;--animate-ping:ping 1s cubic-bezier(0, 0, .2, 1) infinite;--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--animate-bounce:bounce 1s infinite;--animate-float-1:float-drift 20s ease-in-out infinite;--animate-float-2:float-drift-alt 25s ease-in-out infinite;--animate-float-3:float-drift 30s ease-in-out infinite reverse;--animate-pulse-glow:pulse-glow 8s ease-in-out infinite;--animate-spin-slow:slow-spin 120s linear infinite;--animate-aurora-drift:aurora-drift 30s ease-in-out infinite;--animate-scene-enter:scene-enter 1.2s cubic-bezier(.16, 1, .3, 1) forwards;--md-sys-color-scrim:var(--schmancy-sys-color-scrim);--md-sys-color-outline:var(--schmancy-sys-color-outline);--md-sys-color-outlineVariant:var(--schmancy-sys-color-outlineVariant);--md-sys-color-surface-default:var(--schmancy-sys-color-surface-default);--md-sys-color-surface-dim:var(--schmancy-sys-color-surface-dim);--md-sys-color-surface-bright:var(--schmancy-sys-color-surface-bright);--md-sys-color-surface-container:var(--schmancy-sys-color-surface-container);--md-sys-color-surface-low:var(--schmancy-sys-color-surface-low);--md-sys-color-surface-high:var(--schmancy-sys-color-surface-high);--md-sys-color-surface-highest:var(--schmancy-sys-color-surface-highest);--md-sys-color-surface-lowest:var(--schmancy-sys-color-surface-lowest);--md-sys-color-surface-on:var(--schmancy-sys-color-surface-on);--md-sys-color-on-surface-variant:var(--schmancy-sys-color-surface-onVariant);--md-sys-color-on-secondary-container:var(--schmancy-sys-color-secondary-onContainer);--md-sys-color-primary-default:var(--schmancy-sys-color-primary-default);--md-sys-color-primary-on:var(--schmancy-sys-color-primary-on);--md-sys-color-primary-container:var(--schmancy-sys-color-primary-container);--md-sys-color-primary-onContainer:var(--schmancy-sys-color-primary-onContainer);--md-sys-color-secondary-default:var(--schmancy-sys-color-secondary-default);--md-sys-color-secondary-on:var(--schmancy-sys-color-secondary-on);--md-sys-color-secondary-container:var(--schmancy-sys-color-secondary-container);--md-sys-color-secondary-onContainer:var(--schmancy-sys-color-secondary-onContainer);--md-sys-color-tertiary-default:var(--schmancy-sys-color-tertiary-default);--md-sys-color-tertiary-on:var(--schmancy-sys-color-tertiary-on);--md-sys-color-tertiary-container:var(--schmancy-sys-color-tertiary-container);--md-sys-color-tertiary-onContainer:var(--schmancy-sys-color-tertiary-onContainer);--md-sys-color-error-default:var(--schmancy-sys-color-error-default);--md-sys-color-error-on:var(--schmancy-sys-color-error-on);--md-sys-color-error-container:var(--schmancy-sys-color-error-container);--md-sys-color-error-onContainer:var(--schmancy-sys-color-error-onContainer);--md-sys-color-success-default:var(--schmancy-sys-color-success-default);--md-sys-color-success-on:var(--schmancy-sys-color-success-on);--md-sys-color-success-container:var(--schmancy-sys-color-success-container);--md-sys-color-success-onContainer:var(--schmancy-sys-color-success-onContainer);--md-sys-color-warning-default:var(--schmancy-sys-color-warning-default);--md-sys-color-warning-on:var(--schmancy-sys-color-warning-on);--md-sys-color-warning-container:var(--schmancy-sys-color-warning-container);--md-sys-color-warning-onContainer:var(--schmancy-sys-color-warning-onContainer);--md-sys-color-info-default:var(--schmancy-sys-color-info-default);--md-sys-color-info-on:var(--schmancy-sys-color-info-on);--md-sys-color-info-container:var(--schmancy-sys-color-info-container);--md-sys-color-info-onContainer:var(--schmancy-sys-color-info-onContainer);--md-sys-elevation-0:var(--schmancy-sys-elevation-0);--md-sys-elevation-1:var(--schmancy-sys-elevation-1);--md-sys-elevation-2:var(--schmancy-sys-elevation-2);--md-sys-elevation-3:var(--schmancy-sys-elevation-3);--md-sys-elevation-4:var(--schmancy-sys-elevation-4);--md-sys-elevation-5:var(--schmancy-sys-elevation-5);--md-sys-outline-1:var(--schmancy-sys-outline-1);--md-filter-chip-label-text-color:var(--schmancy-sys-color-surface-on);--md-checkbox-focus-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-focus-outline-width:2px;--md-checkbox-hover-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-hover-outline-width:2px;--md-checkbox-pressed-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-pressed-outline-width:2px;--md-checkbox-disabled-outline-color:var(--schmancy-sys-color-surface-on);--md-checkbox-disabled-outline-width:2px}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{opacity:0;transform:scale(2)}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{animation-timing-function:cubic-bezier(.8,0,1,1);transform:translateY(-25%)}50%{animation-timing-function:cubic-bezier(0,0,.2,1);transform:none}}@keyframes float-drift{0%,to{transform:translate(0)rotate(0)}25%{transform:translate(20px,-30px)rotate(2deg)}50%{transform:translate(-10px,-50px)rotate(-1deg)}75%{transform:translate(15px,-20px)rotate(1deg)}}@keyframes float-drift-alt{0%,to{transform:translate(0)rotate(0)}25%{transform:translate(-25px,20px)rotate(-2deg)}50%{transform:translate(15px,40px)rotate(1deg)}75%{transform:translate(-20px,15px)rotate(-1deg)}}@keyframes pulse-glow{0%,to{opacity:.15;transform:scale(1)}50%{opacity:.25;transform:scale(1.05)}}@keyframes slow-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes aurora-drift{0%,to{transform:translate(0)scale(1)rotate(0)}33%{transform:translate(3%,-5%)scale(1.05)rotate(1deg)}66%{transform:translate(-3%,3%)scale(.95)rotate(-1deg)}}@keyframes scene-enter{0%{opacity:0;filter:blur(12px);transform:scale(.92)}to{opacity:1;filter:blur();transform:scale(1)}}@keyframes star-appear{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}@keyframes star-twinkle{0%,to{opacity:1;transform:scale(1)}50%{opacity:.4;transform:scale(.92)}}"), Gf = window.matchMedia("(prefers-color-scheme: dark)"), Kf = new x((e) => {
|
|
28552
|
+
let t = Gf.matches ? "dark" : "light";
|
|
28466
28553
|
e.next(t);
|
|
28467
|
-
let n = E(
|
|
28554
|
+
let n = E(Gf, "change").subscribe((t) => {
|
|
28468
28555
|
let n = t.matches ? "dark" : "light";
|
|
28469
28556
|
e.next(n);
|
|
28470
28557
|
});
|
|
28471
28558
|
return () => n.unsubscribe();
|
|
28472
|
-
}),
|
|
28559
|
+
}), qf = class extends B(Wf) {
|
|
28473
28560
|
constructor(...e) {
|
|
28474
28561
|
super(...e), this.scheme = "auto", this.root = !1, this.locale = typeof navigator < "u" ? navigator.language : "de-DE", this.theme = {};
|
|
28475
28562
|
}
|
|
28476
28563
|
connectedCallback() {
|
|
28477
28564
|
super.connectedCallback();
|
|
28478
28565
|
let e = this.generateThemeName(), t = sessionStorage.getItem(`schmancy-theme-${e}-color`), n = sessionStorage.getItem(`schmancy-theme-${e}-scheme`);
|
|
28479
|
-
this.color || (this.color = t || this.generateRandomColor(), sessionStorage.setItem(`schmancy-theme-${e}-color`, this.color)), !this.hasAttribute("scheme") && n && (this.scheme = n), ht(this.scheme).pipe(un((e) => e === "auto" ?
|
|
28566
|
+
this.color || (this.color = t || this.generateRandomColor(), sessionStorage.setItem(`schmancy-theme-${e}-color`, this.color)), !this.hasAttribute("scheme") && n && (this.scheme = n), ht(this.scheme).pipe(un((e) => e === "auto" ? Kf : ht(e)), k(this.disconnecting)).subscribe((t) => {
|
|
28480
28567
|
this.scheme = t, queueMicrotask(() => {
|
|
28481
28568
|
this.registerTheme(), sessionStorage.setItem(`schmancy-theme-${e}-scheme`, this.scheme);
|
|
28482
28569
|
});
|
|
@@ -28495,7 +28582,7 @@ var Uf = br(":host,:root{--md-ref-typeface-brand:var(--schmancy-font-family,sans
|
|
|
28495
28582
|
}
|
|
28496
28583
|
registerTheme() {
|
|
28497
28584
|
let e = function(e, t = !1, n) {
|
|
28498
|
-
let a = t ? e.schemes.dark : e.schemes.light, o = r.fromHueAndChroma(e.palettes.primary.hue, e.palettes.primary.chroma), s = r.fromHueAndChroma(e.palettes.secondary.hue, e.palettes.secondary.chroma), c = r.fromHueAndChroma(e.palettes.tertiary.hue, e.palettes.tertiary.chroma), l = r.fromHueAndChroma(e.palettes.neutral.hue, e.palettes.neutral.chroma), u = r.fromHueAndChroma(e.palettes.neutralVariant.hue, e.palettes.neutralVariant.chroma), d = r.fromHueAndChroma(e.palettes.error.hue, e.palettes.error.chroma), f =
|
|
28585
|
+
let a = t ? e.schemes.dark : e.schemes.light, o = r.fromHueAndChroma(e.palettes.primary.hue, e.palettes.primary.chroma), s = r.fromHueAndChroma(e.palettes.secondary.hue, e.palettes.secondary.chroma), c = r.fromHueAndChroma(e.palettes.tertiary.hue, e.palettes.tertiary.chroma), l = r.fromHueAndChroma(e.palettes.neutral.hue, e.palettes.neutral.chroma), u = r.fromHueAndChroma(e.palettes.neutralVariant.hue, e.palettes.neutralVariant.chroma), d = r.fromHueAndChroma(e.palettes.error.hue, e.palettes.error.chroma), f = Uf(n?.success ? n.success : i("#00C853")), p = Uf(n?.warning ? n.warning : i("#FFCA28")), m = Uf(n?.info ? n.info : i("#2979FF")), h = {
|
|
28499
28586
|
primary: t ? 80 : 40,
|
|
28500
28587
|
onPrimary: t ? 20 : 100,
|
|
28501
28588
|
primaryContainer: t ? 30 : 90,
|
|
@@ -28725,12 +28812,12 @@ var Uf = br(":host,:root{--md-ref-typeface-brand:var(--schmancy-font-family,sans
|
|
|
28725
28812
|
outline: { 1: "1px" }
|
|
28726
28813
|
},
|
|
28727
28814
|
ref: { palette: {
|
|
28728
|
-
primary:
|
|
28729
|
-
secondary:
|
|
28730
|
-
tertiary:
|
|
28731
|
-
neutral:
|
|
28732
|
-
neutralVariant:
|
|
28733
|
-
error:
|
|
28815
|
+
primary: Uf(o.tone(40)),
|
|
28816
|
+
secondary: Uf(s.tone(40)),
|
|
28817
|
+
tertiary: Uf(c.tone(40)),
|
|
28818
|
+
neutral: Uf(l.tone(40)),
|
|
28819
|
+
neutralVariant: Uf(u.tone(40)),
|
|
28820
|
+
error: Uf(d.tone(40))
|
|
28734
28821
|
} }
|
|
28735
28822
|
};
|
|
28736
28823
|
}(o(i(typeof this.color == "string" ? this.color : "#6200ee")), this.scheme === "dark", {
|
|
@@ -28776,8 +28863,8 @@ var Uf = br(":host,:root{--md-ref-typeface-brand:var(--schmancy-font-family,sans
|
|
|
28776
28863
|
N([I({
|
|
28777
28864
|
type: String,
|
|
28778
28865
|
reflect: !0
|
|
28779
|
-
})],
|
|
28780
|
-
var
|
|
28866
|
+
})], qf.prototype, "color", void 0), N([I({ type: String })], qf.prototype, "scheme", void 0), N([I({ type: Boolean })], qf.prototype, "root", void 0), N([I({ type: String })], qf.prototype, "locale", void 0), N([I({ type: String })], qf.prototype, "name", void 0), N([dr({ context: pr }), I({ type: Object })], qf.prototype, "theme", void 0), qf = N([P("schmancy-theme")], qf);
|
|
28867
|
+
var Jf = class extends B() {
|
|
28781
28868
|
constructor(...e) {
|
|
28782
28869
|
super(...e), this.currentScheme = "auto", this.currentColor = "#6200ee", this.resolvedScheme = "light", this.themeComponent = null, this.colorInput$ = new C();
|
|
28783
28870
|
}
|
|
@@ -28946,8 +29033,8 @@ var qf = class extends B() {
|
|
|
28946
29033
|
`;
|
|
28947
29034
|
}
|
|
28948
29035
|
};
|
|
28949
|
-
N([L()],
|
|
28950
|
-
var
|
|
29036
|
+
N([L()], Jf.prototype, "currentScheme", void 0), N([L()], Jf.prototype, "currentColor", void 0), N([L()], Jf.prototype, "resolvedScheme", void 0), N([L()], Jf.prototype, "themeComponent", void 0), N([I({ type: Array })], Jf.prototype, "customColors", void 0), Jf = N([P("schmancy-theme-controller")], Jf);
|
|
29037
|
+
var Yf = class extends CustomEvent {
|
|
28951
29038
|
constructor(e) {
|
|
28952
29039
|
super("schmancy-generate-mood-audio", {
|
|
28953
29040
|
detail: e,
|
|
@@ -28955,7 +29042,7 @@ var Jf = class extends CustomEvent {
|
|
|
28955
29042
|
composed: !0
|
|
28956
29043
|
});
|
|
28957
29044
|
}
|
|
28958
|
-
},
|
|
29045
|
+
}, Xf = class extends B(F`
|
|
28959
29046
|
:host {
|
|
28960
29047
|
display: block;
|
|
28961
29048
|
}
|
|
@@ -28981,7 +29068,7 @@ var Jf = class extends CustomEvent {
|
|
|
28981
29068
|
this.moodInput$.next(t.value);
|
|
28982
29069
|
}
|
|
28983
29070
|
requestMoodAudio() {
|
|
28984
|
-
this.moodText.trim() ? (this.error = "", this.isGenerating = !0, this.audioSequence = null, this.detectedMood = "", this.dispatchEvent(new
|
|
29071
|
+
this.moodText.trim() ? (this.error = "", this.isGenerating = !0, this.audioSequence = null, this.detectedMood = "", this.dispatchEvent(new Yf({
|
|
28985
29072
|
moodText: this.moodText.trim(),
|
|
28986
29073
|
themeColor: this.currentColor,
|
|
28987
29074
|
scheme: this.currentScheme
|
|
@@ -29195,8 +29282,8 @@ var Jf = class extends CustomEvent {
|
|
|
29195
29282
|
`;
|
|
29196
29283
|
}
|
|
29197
29284
|
};
|
|
29198
|
-
N([L()],
|
|
29199
|
-
var
|
|
29285
|
+
N([L()], Xf.prototype, "currentColor", void 0), N([L()], Xf.prototype, "currentScheme", void 0), N([L()], Xf.prototype, "moodText", void 0), N([L()], Xf.prototype, "isGenerating", void 0), N([L()], Xf.prototype, "audioSequence", void 0), N([L()], Xf.prototype, "detectedMood", void 0), N([L()], Xf.prototype, "error", void 0), N([L()], Xf.prototype, "volume", void 0), N([L()], Xf.prototype, "currentThemeName", void 0), Xf = N([P("schmancy-theme-audio-player")], Xf);
|
|
29286
|
+
var Zf = class extends Jf {
|
|
29200
29287
|
render() {
|
|
29201
29288
|
return j`
|
|
29202
29289
|
<schmancy-boat id="schmancy-theme-component">
|
|
@@ -29213,8 +29300,8 @@ var Xf = class extends qf {
|
|
|
29213
29300
|
`;
|
|
29214
29301
|
}
|
|
29215
29302
|
};
|
|
29216
|
-
|
|
29217
|
-
var
|
|
29303
|
+
Zf = N([P("schmancy-theme-controller-boat")], Zf);
|
|
29304
|
+
var Qf = class extends z() {
|
|
29218
29305
|
render() {
|
|
29219
29306
|
return j`
|
|
29220
29307
|
<schmancy-button
|
|
@@ -29228,8 +29315,8 @@ var Zf = class extends z() {
|
|
|
29228
29315
|
`;
|
|
29229
29316
|
}
|
|
29230
29317
|
};
|
|
29231
|
-
N([R("#color")],
|
|
29232
|
-
var
|
|
29318
|
+
N([R("#color")], Qf.prototype, "color", void 0), Qf = N([P("schmancy-theme-button")], Qf);
|
|
29319
|
+
var $f = class extends z(F`
|
|
29233
29320
|
:host {
|
|
29234
29321
|
display: block;
|
|
29235
29322
|
position: relative;
|
|
@@ -29308,8 +29395,8 @@ var Qf = class extends z(F`
|
|
|
29308
29395
|
`;
|
|
29309
29396
|
}
|
|
29310
29397
|
};
|
|
29311
|
-
N([I({ type: Boolean })],
|
|
29312
|
-
var
|
|
29398
|
+
N([I({ type: Boolean })], $f.prototype, "open", void 0), N([R("#toggler")], $f.prototype, "toggler", void 0), N([R("slot:not([name=\"root\"])")], $f.prototype, "defaultSlot", void 0), N([R("#chevron")], $f.prototype, "chevron", void 0), $f = N([P("schmancy-tree")], $f);
|
|
29399
|
+
var ep = null, tp = class extends B(F`
|
|
29313
29400
|
:host {
|
|
29314
29401
|
display: inline-block;
|
|
29315
29402
|
}
|
|
@@ -29450,7 +29537,7 @@ var $f = null, ep = class extends B(F`
|
|
|
29450
29537
|
composed: !0
|
|
29451
29538
|
})), this.loop || this.typewriterContainer.style.setProperty("--ti-cursor-display", "none");
|
|
29452
29539
|
}
|
|
29453
|
-
}, t = await (
|
|
29540
|
+
}, t = await (ep || (ep = import("./index.es-Dymj8REP.js").then((e) => e.default), ep));
|
|
29454
29541
|
this.isConnected && (this.typeItInstance = new t(this.typewriterContainer, e), this._getSlottedNodes.forEach((e) => {
|
|
29455
29542
|
if (e.nodeType === Node.TEXT_NODE) {
|
|
29456
29543
|
let t = e.textContent || "";
|
|
@@ -29518,18 +29605,18 @@ var $f = null, ep = class extends B(F`
|
|
|
29518
29605
|
</div> `;
|
|
29519
29606
|
}
|
|
29520
29607
|
};
|
|
29521
|
-
N([I({ type: Number })],
|
|
29608
|
+
N([I({ type: Number })], tp.prototype, "speed", void 0), N([fr({
|
|
29522
29609
|
context: cl,
|
|
29523
29610
|
subscribe: !0
|
|
29524
|
-
}), I({ type: Number })],
|
|
29611
|
+
}), I({ type: Number })], tp.prototype, "delay", void 0), N([I({ type: Boolean })], tp.prototype, "autoStart", void 0), N([I({ type: String })], tp.prototype, "cursorChar", void 0), N([I({ type: Number })], tp.prototype, "deleteSpeed", void 0), N([I({ type: Boolean })], tp.prototype, "once", void 0), N([I({ type: Boolean })], tp.prototype, "loop", void 0), N([I({ type: Number })], tp.prototype, "cyclePause", void 0), N([R("#typewriter")], tp.prototype, "typewriterContainer", void 0), N([function(e) {
|
|
29525
29612
|
return (t, n) => {
|
|
29526
29613
|
let { slot: r } = e ?? {}, i = "slot" + (r ? `[name=${r}]` : ":not([name])");
|
|
29527
29614
|
return zr(t, n, { get() {
|
|
29528
29615
|
return (this.renderRoot?.querySelector(i))?.assignedNodes(e) ?? [];
|
|
29529
29616
|
} });
|
|
29530
29617
|
};
|
|
29531
|
-
}({ flatten: !0 })],
|
|
29532
|
-
var
|
|
29618
|
+
}({ flatten: !0 })], tp.prototype, "_getSlottedNodes", void 0), N([Br({ flatten: !0 })], tp.prototype, "_getSlottedElements", void 0), tp = N([P("schmancy-typewriter")], tp);
|
|
29619
|
+
var np = class extends z(F`
|
|
29533
29620
|
:host {
|
|
29534
29621
|
display: block;
|
|
29535
29622
|
font-family: inherit;
|
|
@@ -29860,22 +29947,22 @@ var tp = class extends z(F`
|
|
|
29860
29947
|
N([I({
|
|
29861
29948
|
type: String,
|
|
29862
29949
|
reflect: !0
|
|
29863
|
-
})],
|
|
29950
|
+
})], np.prototype, "type", void 0), N([I({
|
|
29864
29951
|
type: String,
|
|
29865
29952
|
reflect: !0
|
|
29866
|
-
})],
|
|
29953
|
+
})], np.prototype, "token", void 0), N([I({
|
|
29867
29954
|
type: String,
|
|
29868
29955
|
reflect: !0
|
|
29869
|
-
})],
|
|
29956
|
+
})], np.prototype, "align", void 0), N([I({
|
|
29870
29957
|
type: String,
|
|
29871
29958
|
reflect: !0
|
|
29872
|
-
})],
|
|
29959
|
+
})], np.prototype, "weight", void 0), N([I({
|
|
29873
29960
|
type: String,
|
|
29874
29961
|
reflect: !0
|
|
29875
|
-
})],
|
|
29962
|
+
})], np.prototype, "transform", void 0), N([I({ type: Number })], np.prototype, "maxLines", void 0), N([I({
|
|
29876
29963
|
type: Boolean,
|
|
29877
29964
|
reflect: !0
|
|
29878
|
-
})],
|
|
29965
|
+
})], np.prototype, "editable", void 0), N([I({ type: String })], np.prototype, "value", void 0), N([I({ type: String })], np.prototype, "placeholder", void 0), np = N([P("schmancy-typography")], np), new class {
|
|
29879
29966
|
constructor() {
|
|
29880
29967
|
this.systemLocale = typeof navigator < "u" && navigator.language ? navigator.language : "de-DE";
|
|
29881
29968
|
}
|
|
@@ -30129,7 +30216,7 @@ N([I({
|
|
|
30129
30216
|
return e.split("").map((e) => t[e] || e).join("");
|
|
30130
30217
|
}
|
|
30131
30218
|
}();
|
|
30132
|
-
var
|
|
30219
|
+
var rp = class extends B() {
|
|
30133
30220
|
constructor(...e) {
|
|
30134
30221
|
super(...e), this.initials = "", this.src = "", this.icon = "", this.size = "md", this.color = "primary", this.shape = "circle", this.bordered = !1, this.status = "none";
|
|
30135
30222
|
}
|
|
@@ -30208,8 +30295,8 @@ var np = class extends B() {
|
|
|
30208
30295
|
`;
|
|
30209
30296
|
}
|
|
30210
30297
|
};
|
|
30211
|
-
N([I({ type: String })],
|
|
30212
|
-
var
|
|
30298
|
+
N([I({ type: String })], rp.prototype, "initials", void 0), N([I({ type: String })], rp.prototype, "src", void 0), N([I({ type: String })], rp.prototype, "icon", void 0), N([I({ type: String })], rp.prototype, "size", void 0), N([I({ type: String })], rp.prototype, "color", void 0), N([I({ type: String })], rp.prototype, "shape", void 0), N([I({ type: Boolean })], rp.prototype, "bordered", void 0), N([I({ type: String })], rp.prototype, "status", void 0), rp = N([P("schmancy-avatar")], rp);
|
|
30299
|
+
var ip = class extends z(F`
|
|
30213
30300
|
:host {
|
|
30214
30301
|
display: block;
|
|
30215
30302
|
}
|
|
@@ -30252,8 +30339,8 @@ var rp = class extends z(F`
|
|
|
30252
30339
|
});
|
|
30253
30340
|
}
|
|
30254
30341
|
};
|
|
30255
|
-
N([I({ type: String })],
|
|
30256
|
-
var
|
|
30342
|
+
N([I({ type: String })], ip.prototype, "separator", void 0), ip = N([P("schmancy-breadcrumb")], ip);
|
|
30343
|
+
var ap = class extends z(F`
|
|
30257
30344
|
:host {
|
|
30258
30345
|
display: inline-block;
|
|
30259
30346
|
}
|
|
@@ -30272,11 +30359,11 @@ var ip = class extends z(F`
|
|
|
30272
30359
|
return this.href && !this.current ? j`<a href=${this.href}><slot></slot></a>` : j`<span aria-current=${this.current ? "page" : "false"}><slot></slot></span>`;
|
|
30273
30360
|
}
|
|
30274
30361
|
};
|
|
30275
|
-
N([I({ type: String })],
|
|
30362
|
+
N([I({ type: String })], ap.prototype, "href", void 0), N([I({
|
|
30276
30363
|
type: Boolean,
|
|
30277
30364
|
reflect: !0
|
|
30278
|
-
})],
|
|
30279
|
-
var
|
|
30365
|
+
})], ap.prototype, "current", void 0), ap = N([P("schmancy-breadcrumb-item")], ap);
|
|
30366
|
+
var op = class extends z(F`
|
|
30280
30367
|
:host {
|
|
30281
30368
|
display: inline-block;
|
|
30282
30369
|
vertical-align: middle;
|
|
@@ -30314,8 +30401,8 @@ var ap = class extends z(F`
|
|
|
30314
30401
|
N([I({
|
|
30315
30402
|
type: String,
|
|
30316
30403
|
reflect: !0
|
|
30317
|
-
})],
|
|
30318
|
-
var
|
|
30404
|
+
})], op.prototype, "size", void 0), op = N([P("schmancy-kbd")], op);
|
|
30405
|
+
var sp = class extends z(F`
|
|
30319
30406
|
:host {
|
|
30320
30407
|
display: block;
|
|
30321
30408
|
width: var(--_sw, 100%);
|
|
@@ -30366,8 +30453,8 @@ var op = class extends z(F`
|
|
|
30366
30453
|
N([I({
|
|
30367
30454
|
type: String,
|
|
30368
30455
|
reflect: !0
|
|
30369
|
-
})],
|
|
30370
|
-
var
|
|
30456
|
+
})], sp.prototype, "shape", void 0), N([I({ type: String })], sp.prototype, "width", void 0), N([I({ type: String })], sp.prototype, "height", void 0), N([I({ type: String })], sp.prototype, "radius", void 0), sp = N([P("schmancy-skeleton")], sp);
|
|
30457
|
+
var cp = class extends B(F`
|
|
30371
30458
|
:host {
|
|
30372
30459
|
display: block;
|
|
30373
30460
|
position: relative;
|
|
@@ -30439,11 +30526,11 @@ var sp = class extends B(F`
|
|
|
30439
30526
|
N([I({
|
|
30440
30527
|
type: Number,
|
|
30441
30528
|
attribute: "min-duration"
|
|
30442
|
-
})],
|
|
30529
|
+
})], cp.prototype, "minDuration", void 0), N([I({ type: Boolean })], cp.prototype, "auto", void 0), N([I({
|
|
30443
30530
|
type: Boolean,
|
|
30444
30531
|
attribute: "initially-hidden"
|
|
30445
|
-
})],
|
|
30446
|
-
var
|
|
30532
|
+
})], cp.prototype, "initiallyHidden", void 0), N([L()], cp.prototype, "_visible", void 0), cp = N([P("schmancy-splash-screen")], cp);
|
|
30533
|
+
var lp = class extends z(F`
|
|
30447
30534
|
:host {
|
|
30448
30535
|
display: inline-block;
|
|
30449
30536
|
}
|
|
@@ -30562,14 +30649,14 @@ var cp = class extends z(F`
|
|
|
30562
30649
|
N([I({
|
|
30563
30650
|
type: Boolean,
|
|
30564
30651
|
reflect: !0
|
|
30565
|
-
})],
|
|
30652
|
+
})], lp.prototype, "checked", void 0), N([I({
|
|
30566
30653
|
type: Boolean,
|
|
30567
30654
|
reflect: !0
|
|
30568
|
-
})],
|
|
30655
|
+
})], lp.prototype, "disabled", void 0), N([I({
|
|
30569
30656
|
type: Boolean,
|
|
30570
30657
|
reflect: !0
|
|
30571
|
-
})],
|
|
30572
|
-
var
|
|
30658
|
+
})], lp.prototype, "required", void 0), N([I({ type: String })], lp.prototype, "name", void 0), N([I({ type: String })], lp.prototype, "value", void 0), N([I({ type: String })], lp.prototype, "label", void 0), lp = N([P("schmancy-switch")], lp);
|
|
30659
|
+
var up = class extends z(F`
|
|
30573
30660
|
:host {
|
|
30574
30661
|
position: absolute;
|
|
30575
30662
|
width: 1px;
|
|
@@ -30586,8 +30673,8 @@ var lp = class extends z(F`
|
|
|
30586
30673
|
return j`<slot></slot>`;
|
|
30587
30674
|
}
|
|
30588
30675
|
};
|
|
30589
|
-
|
|
30590
|
-
var
|
|
30676
|
+
up = N([P("schmancy-visually-hidden")], up);
|
|
30677
|
+
var dp = {
|
|
30591
30678
|
schemaVersion: "1.0.0",
|
|
30592
30679
|
readme: "# Schmancy\n\nA Web Component UI library built on Lit, RxJS, and Tailwind CSS. Surfaces are glass. Depth is light. Interactions are physics.\n\n## Agent runtime\n\nFor sandboxed-iframe agents (Claude Design, Claude Artifacts, any LLM that can\nonly write HTML), schmancy ships a single-URL runtime at `@mhmo91/schmancy/agent`.\nDrop one `<script type=\"module\">` tag and every `<schmancy-*>` element is\nregistered. No bundler, no bare specifiers, no npm install.\n\n```html\n<script type=\"module\">\n import { $dialog, theme } from 'https://esm.sh/@mhmo91/schmancy/agent';\n<\/script>\n<schmancy-theme root scheme=\"dark\">\n <schmancy-surface type=\"solid\" fill=\"all\">\n <schmancy-button>Hi</schmancy-button>\n <schmancy-skill></schmancy-skill>\n </schmancy-surface>\n</schmancy-theme>\n```\n\nThe `<schmancy-skill>` tag installs `window.schmancy` for runtime discovery:\n\n- `window.schmancy.help()` — full manifest (CEM v1 shape).\n- `window.schmancy.help('schmancy-button')` — one tag's attributes, events, slots, CSS parts.\n- `window.schmancy.tokens()` — build-time-extracted list of `--schmancy-*` theme tokens.\n- `window.schmancy.manifestUrl` — Blob URL; `fetch()` it for the same data.\n- `window.schmancy.a11yAudit()` — walks the live DOM and reports ARIA / shadow-root / form-association status per instance.\n- `window.schmancy.platformPrimitive('schmancy-dialog')` — map to the native element a component wraps (present when the component's JSDoc has `@platform`).\n- `window.schmancy.capabilities()` — runtime feature probe (`popover`, `declarativeShadowDom`, `scopedRegistries`, `trustedTypes`, `cssRegisteredProperties`, `elementInternalsAria`, `formAssociated`, `adoptedStyleSheets`). Agents use this to adapt to the sandbox they're in rather than the one they expect.\n\nEvery enum-typed attribute carries a `values` array — e.g. `schmancy-button`'s `variant` ships `[\"elevated\", \"filled\", \"filled tonal\", \"tonal\", \"outlined\", \"text\"]` so agents never have to parse `\"'filled' | 'tonal' | ...\"` strings.\n\nThe manifest is also emitted as a sibling file at `@mhmo91/schmancy/agent/manifest`\nfor tooling that prefers reading JSON from disk.\n\n## Install\n\n```bash\nnpm install @mhmo91/schmancy\n```\n\n```typescript\nimport '@mhmo91/schmancy'\nimport { magnetic, cursorGlow, gravity } from '@mhmo91/schmancy/directives'\n```\n\n## Use with Claude Code\n\nSchmancy ships a Claude Code plugin. In any Claude Code session, run:\n\n```\n/plugin install https://github.com/samwaai/schmancy\n```\n\nClaude now knows every Schmancy component, foundation pattern, and convention in your project. The skill activates automatically when you work on schmancy code — no CLAUDE.md edits, no symlinks.\n\n## Quick Start\n\n```html\n<schmancy-theme root scheme=\"dark\">\n <schmancy-surface type=\"solid\" fill=\"all\">\n <schmancy-area name=\"root\" .default=${lazy(() => import('./home.page'))}>\n <schmancy-route when=\"home-page\" .component=${lazy(() => import('./home.page'))} />\n </schmancy-area>\n </schmancy-surface>\n</schmancy-theme>\n```\n\n## Design: Luminous Glass\n\n| Surface | Opacity | Blur | Purpose |\n|---------|---------|------|---------|\n| `solid` | 92% | — | Dense glass, high readability |\n| `subtle` | 78% | 8px | Frosted panel (default) |\n| `glass` | 55% | 16px | Overlays, dialogs, dropdowns |\n| `luminous` | 42% | 20px | Hero panels with glow halo |\n\n## Docs\n\nSchmancy is organized in four layers:\n\n- **Foundations** — [Area](./skills/schmancy/area.md) · [Store](./skills/schmancy/store.md) · [Mixins ($LitElement)](./skills/schmancy/mixins.md) · [Theme](./skills/schmancy/theme.md) · [Directives](./skills/schmancy/directives.md)\n- **Atoms** — [Typography](./skills/schmancy/typography.md) · [Icons](./skills/schmancy/icons.md) · [Button](./skills/schmancy/button.md) · [Surface](./skills/schmancy/surface.md) · [Divider](./skills/schmancy/divider.md) · [Avatar](./skills/schmancy/avatar.md)\n- **Composites (by job)** — Forms, Navigation, Overlays, Interaction, Feedback, Display\n- **Utilities** — [Animation](./skills/schmancy/animation.md) · [Audio](./skills/schmancy/audio.md) · [Discovery](./skills/schmancy/discovery.md) · [RxJS Utils](./skills/schmancy/rxjs-utils.md) · [Utils](./skills/schmancy/utils.md)\n\n**Full component index:** [skills/schmancy/INDEX.md](./skills/schmancy/INDEX.md) — the single-file map with every tag, service, and convention. Written primarily for AI agents; humans welcome.\n\n## Tech Stack\n\n[Lit](https://lit.dev) · [RxJS](https://rxjs.dev) · [Tailwind CSS v4](https://tailwindcss.com) · [Blackbird](./src/utils/animation.ts)\n\n## License\n\nApache-2.0\n",
|
|
30593
30680
|
modules: [
|
|
@@ -33740,6 +33827,84 @@ var up = {
|
|
|
33740
33827
|
examples: ["<schmancy-menu>\n <schmancy-icon-button slot=\"trigger\" aria-label=\"Actions\">\n <schmancy-icon>more_vert</schmancy-icon>\n </schmancy-icon-button>\n <schmancy-menu-item @click=${() => edit()}>Edit</schmancy-menu-item>\n <schmancy-menu-item @click=${() => remove()}>Delete</schmancy-menu-item>\n</schmancy-menu>"]
|
|
33741
33828
|
}]
|
|
33742
33829
|
},
|
|
33830
|
+
{
|
|
33831
|
+
kind: "javascript-module",
|
|
33832
|
+
path: "metric/metric.ts",
|
|
33833
|
+
declarations: [{
|
|
33834
|
+
kind: "class",
|
|
33835
|
+
name: "SchmancyMetric",
|
|
33836
|
+
tagName: "schmancy-metric",
|
|
33837
|
+
description: "KPI metric — a label + value pair for dashboards, with optional trend + delta indicators.",
|
|
33838
|
+
summary: "The building block of dashboards and meta bars. Pass `label` + `value` for a basic stat; add `trend` / `delta` for the delta-from-last-period pattern. Use multiple metrics side-by-side with Tailwind flex/grid utilities.",
|
|
33839
|
+
platformPrimitive: {
|
|
33840
|
+
tag: "div",
|
|
33841
|
+
mode: "-",
|
|
33842
|
+
note: "Styled `<div>` with two text lines + optional trend arrow. Degrades to a plain div+spans if the tag never registers."
|
|
33843
|
+
},
|
|
33844
|
+
attributes: [
|
|
33845
|
+
{
|
|
33846
|
+
name: "label",
|
|
33847
|
+
type: { text: "string" },
|
|
33848
|
+
default: "''",
|
|
33849
|
+
description: "Upper-case caption shown above the value."
|
|
33850
|
+
},
|
|
33851
|
+
{
|
|
33852
|
+
name: "value",
|
|
33853
|
+
type: { text: "string" },
|
|
33854
|
+
default: "''",
|
|
33855
|
+
description: "Primary metric value, rendered large. Pre-format numbers/currency yourself."
|
|
33856
|
+
},
|
|
33857
|
+
{
|
|
33858
|
+
name: "trend",
|
|
33859
|
+
type: { text: "MetricTrend" },
|
|
33860
|
+
values: [
|
|
33861
|
+
"neutral",
|
|
33862
|
+
"up",
|
|
33863
|
+
"down"
|
|
33864
|
+
],
|
|
33865
|
+
description: "Optional trend direction. Controls the color + arrow on the delta pill."
|
|
33866
|
+
},
|
|
33867
|
+
{
|
|
33868
|
+
name: "delta",
|
|
33869
|
+
type: { text: "string" },
|
|
33870
|
+
description: "Optional delta copy displayed in a pill next to the value (e.g. `+12%`)."
|
|
33871
|
+
},
|
|
33872
|
+
{
|
|
33873
|
+
name: "size",
|
|
33874
|
+
type: { text: "MetricSize" },
|
|
33875
|
+
values: [
|
|
33876
|
+
"sm",
|
|
33877
|
+
"md",
|
|
33878
|
+
"lg"
|
|
33879
|
+
],
|
|
33880
|
+
default: "'md'",
|
|
33881
|
+
description: "Size scale affecting label + value typography."
|
|
33882
|
+
}
|
|
33883
|
+
],
|
|
33884
|
+
slots: [{
|
|
33885
|
+
name: "",
|
|
33886
|
+
description: "Optional custom value rendering (overrides the `value` attribute if present)."
|
|
33887
|
+
}, {
|
|
33888
|
+
name: "label",
|
|
33889
|
+
description: "Optional custom label rendering (overrides the `label` attribute if present)."
|
|
33890
|
+
}],
|
|
33891
|
+
cssParts: [
|
|
33892
|
+
{
|
|
33893
|
+
name: "label",
|
|
33894
|
+
description: "The label line."
|
|
33895
|
+
},
|
|
33896
|
+
{
|
|
33897
|
+
name: "value",
|
|
33898
|
+
description: "The value line."
|
|
33899
|
+
},
|
|
33900
|
+
{
|
|
33901
|
+
name: "delta",
|
|
33902
|
+
description: "The delta pill (only when `delta` is set)."
|
|
33903
|
+
}
|
|
33904
|
+
],
|
|
33905
|
+
examples: ["<schmancy-metric label=\"In flight\" value=\"4\"></schmancy-metric>\n<schmancy-metric label=\"Open value\" value=\"€165,900\" trend=\"up\" delta=\"+12%\"></schmancy-metric>\n<schmancy-metric label=\"Error rate\" value=\"0.3%\" trend=\"down\" delta=\"-0.1%\"></schmancy-metric>"]
|
|
33906
|
+
}]
|
|
33907
|
+
},
|
|
33743
33908
|
{
|
|
33744
33909
|
kind: "javascript-module",
|
|
33745
33910
|
path: "nav-drawer/appbar.ts",
|
|
@@ -36308,43 +36473,43 @@ var up = {
|
|
|
36308
36473
|
"Prefer `fromEvent(target, type).pipe(takeUntil(this.disconnecting))` over raw `addEventListener` inside components."
|
|
36309
36474
|
]
|
|
36310
36475
|
};
|
|
36311
|
-
function
|
|
36476
|
+
function fp() {
|
|
36312
36477
|
let e = [];
|
|
36313
|
-
for (let t of
|
|
36478
|
+
for (let t of dp.modules ?? []) {
|
|
36314
36479
|
let n = t.declarations ?? [];
|
|
36315
36480
|
for (let t of n) e.push(t);
|
|
36316
36481
|
}
|
|
36317
36482
|
return e;
|
|
36318
36483
|
}
|
|
36319
|
-
function fp() {
|
|
36320
|
-
return dp().filter((e) => e.kind === "class" && typeof e.tagName == "string");
|
|
36321
|
-
}
|
|
36322
36484
|
function pp() {
|
|
36323
|
-
return
|
|
36485
|
+
return fp().filter((e) => e.kind === "class" && typeof e.tagName == "string");
|
|
36486
|
+
}
|
|
36487
|
+
function mp() {
|
|
36488
|
+
return fp().filter((e) => e.kind === "variable" && !0 === e.service);
|
|
36324
36489
|
}
|
|
36325
|
-
function
|
|
36326
|
-
return e ?
|
|
36327
|
-
elements:
|
|
36490
|
+
function hp(e) {
|
|
36491
|
+
return e ? pp().find((t) => t.tagName === e) || mp().find((t) => t.name === e) || null : {
|
|
36492
|
+
elements: pp().map((e) => ({
|
|
36328
36493
|
tag: e.tagName,
|
|
36329
36494
|
summary: e.summary ?? e.description
|
|
36330
36495
|
})),
|
|
36331
|
-
services:
|
|
36496
|
+
services: mp().map((e) => ({
|
|
36332
36497
|
name: e.name,
|
|
36333
36498
|
summary: e.summary ?? e.description
|
|
36334
36499
|
}))
|
|
36335
36500
|
};
|
|
36336
36501
|
}
|
|
36337
|
-
function
|
|
36338
|
-
return
|
|
36502
|
+
function gp() {
|
|
36503
|
+
return dp.tokens ?? [];
|
|
36339
36504
|
}
|
|
36340
|
-
function
|
|
36341
|
-
return
|
|
36342
|
-
}
|
|
36343
|
-
function _p() {
|
|
36344
|
-
return fp().map((e) => e.tagName).filter((e) => customElements.get(e) !== void 0);
|
|
36505
|
+
function _p(e) {
|
|
36506
|
+
return pp().find((t) => t.tagName === e)?.platformPrimitive ?? null;
|
|
36345
36507
|
}
|
|
36346
36508
|
function vp() {
|
|
36347
|
-
|
|
36509
|
+
return pp().map((e) => e.tagName).filter((e) => customElements.get(e) !== void 0);
|
|
36510
|
+
}
|
|
36511
|
+
function yp() {
|
|
36512
|
+
let e = new Set(pp().map((e) => e.tagName)), t = [], n = document.querySelectorAll("*");
|
|
36348
36513
|
for (let r of Array.from(n)) {
|
|
36349
36514
|
let n = r.tagName.toLowerCase();
|
|
36350
36515
|
if (!e.has(n)) continue;
|
|
@@ -36359,7 +36524,7 @@ function vp() {
|
|
|
36359
36524
|
}
|
|
36360
36525
|
return t;
|
|
36361
36526
|
}
|
|
36362
|
-
function
|
|
36527
|
+
function bp() {
|
|
36363
36528
|
let e = typeof HTMLTemplateElement < "u" ? HTMLTemplateElement.prototype : null, t = typeof ElementInternals < "u" ? ElementInternals.prototype : null;
|
|
36364
36529
|
return {
|
|
36365
36530
|
popover: typeof HTMLElement < "u" && "popover" in HTMLElement.prototype,
|
|
@@ -36378,29 +36543,29 @@ function yp() {
|
|
|
36378
36543
|
adoptedStyleSheets: typeof Document < "u" && "adoptedStyleSheets" in Document.prototype
|
|
36379
36544
|
};
|
|
36380
36545
|
}
|
|
36381
|
-
var
|
|
36382
|
-
function
|
|
36383
|
-
typeof window < "u" && (
|
|
36384
|
-
let e = new Blob([JSON.stringify(
|
|
36546
|
+
var xp = null;
|
|
36547
|
+
function Sp() {
|
|
36548
|
+
typeof window < "u" && (xp || (xp = function() {
|
|
36549
|
+
let e = new Blob([JSON.stringify(dp)], { type: "application/json" });
|
|
36385
36550
|
return URL.createObjectURL(e);
|
|
36386
36551
|
}(), window.schmancy = {
|
|
36387
|
-
manifest:
|
|
36388
|
-
manifestUrl:
|
|
36389
|
-
help:
|
|
36390
|
-
tokens:
|
|
36391
|
-
platformPrimitive:
|
|
36392
|
-
registeredTags:
|
|
36393
|
-
a11yAudit:
|
|
36394
|
-
capabilities:
|
|
36552
|
+
manifest: dp,
|
|
36553
|
+
manifestUrl: xp,
|
|
36554
|
+
help: hp,
|
|
36555
|
+
tokens: gp,
|
|
36556
|
+
platformPrimitive: _p,
|
|
36557
|
+
registeredTags: vp,
|
|
36558
|
+
a11yAudit: yp,
|
|
36559
|
+
capabilities: bp
|
|
36395
36560
|
}));
|
|
36396
36561
|
}
|
|
36397
|
-
var
|
|
36562
|
+
var Cp = class extends B() {
|
|
36398
36563
|
connectedCallback() {
|
|
36399
|
-
super.connectedCallback(),
|
|
36564
|
+
super.connectedCallback(), Sp();
|
|
36400
36565
|
}
|
|
36401
36566
|
render() {
|
|
36402
36567
|
return j``;
|
|
36403
36568
|
}
|
|
36404
36569
|
};
|
|
36405
|
-
|
|
36570
|
+
Cp = N([P("schmancy-skill")], Cp);
|
|
36406
36571
|
export { B as $LitElement, Mc as $dialog, hd as $notify, Nc as SchmancySheetPosition, ti as area, Oa as createContext, ai as lazy, gc as schmancyContentDrawer, Pa as select, Fa as selectItem, Pc as sheet, Oo as theme };
|