@tempots/dom 10.0.4 → 10.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dom/ssr-tracker.d.ts +0 -3
- package/index.cjs +1 -1
- package/index.js +273 -274
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var ze = Object.defineProperty;
|
|
2
2
|
var Ve = (t, e, r) => e in t ? ze(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
|
|
3
|
-
var
|
|
3
|
+
var u = (t, e, r) => Ve(t, typeof e != "symbol" ? e + "" : e, r);
|
|
4
4
|
function qe(t, e, r) {
|
|
5
5
|
return t + (e - t) * r;
|
|
6
6
|
}
|
|
@@ -25,7 +25,7 @@ function Ye(t, e, r) {
|
|
|
25
25
|
function je(t) {
|
|
26
26
|
return typeof t == "number" ? qe : typeof t == "string" ? Ze : t instanceof Date ? Xe : Ye;
|
|
27
27
|
}
|
|
28
|
-
class
|
|
28
|
+
class ke {
|
|
29
29
|
constructor(e, r) {
|
|
30
30
|
this.index = e, this.total = r;
|
|
31
31
|
}
|
|
@@ -43,33 +43,33 @@ class He {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
const ee = Symbol("isSignal"), te = Symbol("isProp"), re = Symbol("isComputed");
|
|
46
|
-
var
|
|
47
|
-
|
|
48
|
-
const
|
|
46
|
+
var ae;
|
|
47
|
+
ae = ee;
|
|
48
|
+
const _ = class _ {
|
|
49
49
|
constructor(e, r) {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
50
|
+
u(this, ae, !0);
|
|
51
|
+
u(this, "_value");
|
|
52
|
+
u(this, "_derivatives", []);
|
|
53
|
+
u(this, "_onValueListeners", []);
|
|
54
|
+
u(this, "_onDisposeListeners", []);
|
|
55
|
+
u(this, "get", () => this._value);
|
|
56
|
+
u(this, "hasListeners", () => this._onValueListeners.length > 0);
|
|
57
|
+
u(this, "on", (e) => (e(this.get()), this._onValueListeners.push(e), () => {
|
|
58
58
|
this._onValueListeners.splice(this._onValueListeners.indexOf(e), 1);
|
|
59
59
|
}));
|
|
60
|
-
|
|
60
|
+
u(this, "_setAndNotify", (e, r) => {
|
|
61
61
|
const n = this.equals(this._value, e);
|
|
62
62
|
n || (this._value = e), (r || !n) && this._onValueListeners.forEach((s) => s(e));
|
|
63
63
|
});
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
u(this, "_disposed", !1);
|
|
65
|
+
u(this, "isDisposed", () => this._disposed);
|
|
66
|
+
u(this, "onDispose", (e) => {
|
|
67
67
|
this._onDisposeListeners.push(e);
|
|
68
68
|
});
|
|
69
|
-
|
|
69
|
+
u(this, "dispose", () => {
|
|
70
70
|
this._disposed || (this._disposed = !0, this._onDisposeListeners.forEach((e) => e()), this._onDisposeListeners.length = 0, this._derivatives.length = 0);
|
|
71
71
|
});
|
|
72
|
-
|
|
72
|
+
u(this, "map", (e, r = (n, s) => n === s) => {
|
|
73
73
|
const n = new D(() => {
|
|
74
74
|
try {
|
|
75
75
|
return e(this.get());
|
|
@@ -79,7 +79,7 @@ const E = class E {
|
|
|
79
79
|
}, r);
|
|
80
80
|
return this.setDerivative(n), n;
|
|
81
81
|
});
|
|
82
|
-
|
|
82
|
+
u(this, "flatMap", (e, r = (n, s) => n === s) => {
|
|
83
83
|
const n = new D(() => {
|
|
84
84
|
try {
|
|
85
85
|
return e(this.get()).get();
|
|
@@ -89,9 +89,9 @@ const E = class E {
|
|
|
89
89
|
}, r);
|
|
90
90
|
return this.setDerivative(n), n;
|
|
91
91
|
});
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
92
|
+
u(this, "tap", (e) => this.map((r) => (e(r), r)));
|
|
93
|
+
u(this, "at", (e) => this.map((r) => r[e]));
|
|
94
|
+
u(this, "filter", (e, r) => {
|
|
95
95
|
let n = r ?? this.get();
|
|
96
96
|
const s = new D(() => {
|
|
97
97
|
try {
|
|
@@ -103,7 +103,7 @@ const E = class E {
|
|
|
103
103
|
}, this.equals);
|
|
104
104
|
return this.setDerivative(s), s;
|
|
105
105
|
});
|
|
106
|
-
|
|
106
|
+
u(this, "filterMap", (e, r, n = (s, i) => s === i) => {
|
|
107
107
|
let s = r;
|
|
108
108
|
const i = new D(() => {
|
|
109
109
|
try {
|
|
@@ -115,17 +115,17 @@ const E = class E {
|
|
|
115
115
|
}, n);
|
|
116
116
|
return this.setDerivative(i), i;
|
|
117
117
|
});
|
|
118
|
-
|
|
118
|
+
u(this, "mapAsync", (e, r, n, s = (i, o) => i === o) => {
|
|
119
119
|
const i = A(r, s);
|
|
120
120
|
let o = 0;
|
|
121
121
|
return i.onDispose(
|
|
122
122
|
this.on((l) => {
|
|
123
|
-
const
|
|
123
|
+
const a = ++o;
|
|
124
124
|
try {
|
|
125
125
|
e(l).then((c) => {
|
|
126
|
-
|
|
126
|
+
a === o && i.set(c);
|
|
127
127
|
}).catch((c) => {
|
|
128
|
-
|
|
128
|
+
a === o && (n != null ? i.set(n(c)) : console.error(
|
|
129
129
|
"Unhandled promise rejection in Signal.mapAsync:",
|
|
130
130
|
c
|
|
131
131
|
));
|
|
@@ -136,17 +136,17 @@ const E = class E {
|
|
|
136
136
|
})
|
|
137
137
|
), i;
|
|
138
138
|
});
|
|
139
|
-
|
|
140
|
-
|
|
139
|
+
u(this, "mapMaybe", (e, r) => this.map((n) => e(n) ?? r));
|
|
140
|
+
u(this, "feedProp", (e, r = !1) => {
|
|
141
141
|
const n = this.on(e.set);
|
|
142
142
|
return e.onDispose(n), r ? this.onDispose(e.dispose) : this.onDispose(n), e;
|
|
143
143
|
});
|
|
144
|
-
|
|
145
|
-
|
|
144
|
+
u(this, "deriveProp", (e = !0) => this.feedProp(A(this.get()), e));
|
|
145
|
+
u(this, "count", () => {
|
|
146
146
|
let e = 0;
|
|
147
147
|
return this.map(() => ++e);
|
|
148
148
|
});
|
|
149
|
-
|
|
149
|
+
u(this, "setDerivative", (e) => {
|
|
150
150
|
this._derivatives.push(e), e.onDispose(() => {
|
|
151
151
|
this._derivatives.splice(
|
|
152
152
|
this._derivatives.indexOf(e),
|
|
@@ -157,7 +157,7 @@ const E = class E {
|
|
|
157
157
|
this.equals = r, this._value = e;
|
|
158
158
|
}
|
|
159
159
|
static ofPromise(e, r, n, s = (i, o) => i === o) {
|
|
160
|
-
const i = new
|
|
160
|
+
const i = new _(r, s);
|
|
161
161
|
return e.then((o) => i._setAndNotify(o, !1)).catch((o) => {
|
|
162
162
|
n != null ? i._setAndNotify(n(o), !1) : console.error(
|
|
163
163
|
"Unhandled promise rejection in Signal.ofPromise:",
|
|
@@ -169,40 +169,40 @@ const E = class E {
|
|
|
169
169
|
return e != null && e[ee] === !0;
|
|
170
170
|
}
|
|
171
171
|
static wrap(e, r = (n, s) => n === s) {
|
|
172
|
-
return
|
|
172
|
+
return _.is(e) ? e : new _(e, r);
|
|
173
173
|
}
|
|
174
174
|
static maybeWrap(e) {
|
|
175
|
-
return e == null ? e :
|
|
175
|
+
return e == null ? e : _.wrap(e);
|
|
176
176
|
}
|
|
177
177
|
static unwrap(e) {
|
|
178
|
-
return
|
|
178
|
+
return _.is(e) ? e.get() : e;
|
|
179
179
|
}
|
|
180
180
|
static map(e, r) {
|
|
181
|
-
return
|
|
181
|
+
return _.is(e) ? e.map(r) : r(e);
|
|
182
182
|
}
|
|
183
183
|
get value() {
|
|
184
184
|
return this._value;
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
|
-
let
|
|
188
|
-
const
|
|
189
|
-
var
|
|
190
|
-
class D extends (le =
|
|
187
|
+
let h = _;
|
|
188
|
+
const He = typeof queueMicrotask == "function" ? queueMicrotask : (t) => Promise.resolve().then(t);
|
|
189
|
+
var ue, le;
|
|
190
|
+
class D extends (le = h, ue = re, le) {
|
|
191
191
|
constructor(r, n) {
|
|
192
192
|
super(void 0, n);
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
193
|
+
u(this, ue, !0);
|
|
194
|
+
u(this, "_isDirty", !1);
|
|
195
|
+
u(this, "setDirty", () => {
|
|
196
196
|
this._isDirty || this._disposed || (this._isDirty = !0, this._derivatives.forEach((r) => r.setDirty()), this.scheduleNotify());
|
|
197
197
|
});
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
u(this, "_scheduleCount", 0);
|
|
199
|
+
u(this, "scheduleNotify", () => {
|
|
200
200
|
const r = ++this._scheduleCount;
|
|
201
|
-
|
|
201
|
+
He(() => {
|
|
202
202
|
this._scheduleCount !== r || this._disposed !== !1 || this._isDirty && (this._isDirty = !1, this._setAndNotify(this._fn(), !1));
|
|
203
203
|
});
|
|
204
204
|
});
|
|
205
|
-
|
|
205
|
+
u(this, "get", () => (this._isDirty && (this._isDirty = !1, this._value = this._fn(), this._setAndNotify(this._value, !0)), this._value));
|
|
206
206
|
this._fn = r, this.setDirty();
|
|
207
207
|
}
|
|
208
208
|
static is(r) {
|
|
@@ -213,22 +213,22 @@ class D extends (le = d, ae = re, le) {
|
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
215
|
var ce, fe;
|
|
216
|
-
class V extends (fe =
|
|
216
|
+
class V extends (fe = h, ce = te, fe) {
|
|
217
217
|
constructor() {
|
|
218
218
|
super(...arguments);
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
u(this, ce, !0);
|
|
220
|
+
u(this, "set", (r) => {
|
|
221
221
|
this._setAndNotify(r, !1);
|
|
222
222
|
});
|
|
223
|
-
|
|
223
|
+
u(this, "update", (r) => {
|
|
224
224
|
this._setAndNotify(r(this.get()), !1);
|
|
225
225
|
});
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
u(this, "reducer", (r) => (n) => this.update((s) => r(s, n)));
|
|
227
|
+
u(this, "iso", (r, n, s = (i, o) => i === o) => {
|
|
228
228
|
const i = new V(r(this.get()), s);
|
|
229
229
|
return i.onDispose(this.on((o) => i.set(r(o)))), i.on((o) => this._setAndNotify(n(o), !1)), i;
|
|
230
230
|
});
|
|
231
|
-
|
|
231
|
+
u(this, "atProp", (r) => this.iso(
|
|
232
232
|
(n) => n[r],
|
|
233
233
|
(n) => ({ ...this.value, [r]: n })
|
|
234
234
|
));
|
|
@@ -243,89 +243,89 @@ class V extends (fe = d, ce = te, fe) {
|
|
|
243
243
|
this._setAndNotify(r, !1);
|
|
244
244
|
}
|
|
245
245
|
}
|
|
246
|
-
function
|
|
246
|
+
function U(t, e, r = (n, s) => n === s) {
|
|
247
247
|
const n = new D(t, r);
|
|
248
248
|
return e.forEach((s) => s.setDerivative(n)), n;
|
|
249
249
|
}
|
|
250
250
|
function qt(t, e) {
|
|
251
|
-
return
|
|
251
|
+
return U(t, e).dispose;
|
|
252
252
|
}
|
|
253
253
|
function A(t, e = (r, n) => r === n) {
|
|
254
254
|
return new V(t, e);
|
|
255
255
|
}
|
|
256
256
|
function Zt(t, e = (r, n) => r === n) {
|
|
257
|
-
return new
|
|
257
|
+
return new h(t, e);
|
|
258
258
|
}
|
|
259
|
-
class
|
|
259
|
+
class de {
|
|
260
260
|
constructor() {
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
261
|
+
u(this, "_store", /* @__PURE__ */ new Map());
|
|
262
|
+
u(this, "getItem", (e) => this._store.get(e) ?? null);
|
|
263
|
+
u(this, "setItem", (e, r) => {
|
|
264
264
|
this._store.set(e, r);
|
|
265
265
|
});
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
|
-
function
|
|
268
|
+
function he({
|
|
269
269
|
key: t,
|
|
270
270
|
defaultValue: e,
|
|
271
271
|
store: r,
|
|
272
272
|
serialize: n = JSON.stringify,
|
|
273
273
|
deserialize: s = JSON.parse,
|
|
274
|
-
equals: i = (l,
|
|
274
|
+
equals: i = (l, a) => l === a,
|
|
275
275
|
onLoad: o = (l) => l
|
|
276
276
|
}) {
|
|
277
|
-
const l = r.getItem(t),
|
|
277
|
+
const l = r.getItem(t), a = new V(
|
|
278
278
|
l != null ? o(s(l)) : typeof e == "function" ? e() : e,
|
|
279
279
|
i
|
|
280
280
|
);
|
|
281
|
-
return
|
|
281
|
+
return a.on((c) => {
|
|
282
282
|
r.setItem(t, n(c));
|
|
283
|
-
}),
|
|
283
|
+
}), a;
|
|
284
284
|
}
|
|
285
285
|
function Xt(t) {
|
|
286
|
-
return
|
|
286
|
+
return he({
|
|
287
287
|
...t,
|
|
288
|
-
store: (window == null ? void 0 : window.localStorage) ?? new
|
|
288
|
+
store: (window == null ? void 0 : window.localStorage) ?? new de()
|
|
289
289
|
});
|
|
290
290
|
}
|
|
291
291
|
function Yt(t) {
|
|
292
|
-
return
|
|
292
|
+
return he({
|
|
293
293
|
...t,
|
|
294
|
-
store: (window == null ? void 0 : window.sessionStorage) ?? new
|
|
294
|
+
store: (window == null ? void 0 : window.sessionStorage) ?? new de()
|
|
295
295
|
});
|
|
296
296
|
}
|
|
297
297
|
function ne(t) {
|
|
298
298
|
return typeof requestAnimationFrame == "function" ? requestAnimationFrame(t) : setTimeout(t, 0);
|
|
299
299
|
}
|
|
300
|
-
function
|
|
301
|
-
const s = (n == null ? void 0 : n.duration) ?? 300, i = (n == null ? void 0 : n.easing) ?? ((
|
|
302
|
-
let l = n == null ? void 0 : n.interpolate,
|
|
303
|
-
const
|
|
304
|
-
|
|
300
|
+
function Ke(t, e, r, n) {
|
|
301
|
+
const s = (n == null ? void 0 : n.duration) ?? 300, i = (n == null ? void 0 : n.easing) ?? ((b) => b), o = (n == null ? void 0 : n.equals) ?? ((b, I) => b === I);
|
|
302
|
+
let l = n == null ? void 0 : n.interpolate, a = t, c = e(), p = performance.now(), m = null, d = !0;
|
|
303
|
+
const T = new D(e, o), E = A(t, o);
|
|
304
|
+
E.onDispose(() => {
|
|
305
305
|
m !== null && cancelAnimationFrame(m);
|
|
306
|
-
}),
|
|
307
|
-
|
|
306
|
+
}), E.onDispose(T.dispose), r.forEach((b) => {
|
|
307
|
+
b.setDerivative(T), b.onDispose(E.dispose);
|
|
308
308
|
});
|
|
309
|
-
const j = (
|
|
310
|
-
c =
|
|
309
|
+
const j = (b) => {
|
|
310
|
+
c = b, p = performance.now(), a = E.value, d && (d = !1, m = ne(J));
|
|
311
311
|
}, J = () => {
|
|
312
|
-
const I = (performance.now() - p) /
|
|
313
|
-
l == null && (l = je(
|
|
314
|
-
let G = l(
|
|
315
|
-
I >= 1 ? (
|
|
312
|
+
const I = (performance.now() - p) / h.unwrap(s), We = i(I);
|
|
313
|
+
l == null && (l = je(a));
|
|
314
|
+
let G = l(a, c, We);
|
|
315
|
+
I >= 1 ? (d = !0, G = c) : m = ne(J), E.set(G);
|
|
316
316
|
};
|
|
317
|
-
return
|
|
317
|
+
return T.on(j), E;
|
|
318
318
|
}
|
|
319
319
|
function jt(t, e) {
|
|
320
320
|
const { initialValue: r, ...n } = e ?? {};
|
|
321
|
-
return
|
|
321
|
+
return Ke(r ?? t.get(), t.get, [t], n);
|
|
322
322
|
}
|
|
323
|
-
function
|
|
323
|
+
function kt(t, e) {
|
|
324
324
|
const { signals: r, literals: n } = Object.entries(t).reduce(
|
|
325
|
-
({ signals: i, literals: o }, [l,
|
|
325
|
+
({ signals: i, literals: o }, [l, a]) => (h.is(a) ? i.push([l, a]) : o[l] = a, { signals: i, literals: o }),
|
|
326
326
|
{ signals: [], literals: {} }
|
|
327
327
|
), s = r.map(([, i]) => i);
|
|
328
|
-
return
|
|
328
|
+
return U(() => (r.forEach(([i, o]) => n[i] = o.value), e(n)), s);
|
|
329
329
|
}
|
|
330
330
|
function se(t) {
|
|
331
331
|
let e = t.match(/rgba?\((\d+), (\d+), (\d+)(, (\d+))?\)/);
|
|
@@ -360,17 +360,17 @@ function ie(t) {
|
|
|
360
360
|
spread: 0,
|
|
361
361
|
color: "rgba(0, 0, 0, 0)"
|
|
362
362
|
};
|
|
363
|
-
const [, n, s, , , i, , o, , l, ,
|
|
363
|
+
const [, n, s, , , i, , o, , l, , a] = r, c = o != null ? parseInt(o, 10) : 0, p = l != null ? parseInt(l, 10) : 0;
|
|
364
364
|
return {
|
|
365
365
|
inset: !!n,
|
|
366
366
|
x: parseInt(s, 10),
|
|
367
367
|
y: parseInt(i, 10),
|
|
368
368
|
blur: c,
|
|
369
369
|
spread: p,
|
|
370
|
-
color:
|
|
370
|
+
color: a
|
|
371
371
|
};
|
|
372
372
|
}
|
|
373
|
-
function
|
|
373
|
+
function Ue(t) {
|
|
374
374
|
const { inset: e, x: r, y: n, blur: s, spread: i, color: o } = t;
|
|
375
375
|
return `${e ? "inset " : ""}${r}px ${n}px ${s}px ${i}px ${o}`;
|
|
376
376
|
}
|
|
@@ -378,24 +378,24 @@ function Be(t) {
|
|
|
378
378
|
return t[4] === "rgba" ? `rgba(${t[0]}, ${t[1]}, ${t[2]}, ${t[3]})` : t[4] === "hex" ? `#${t[0].toString(16).padStart(2, "0")}${t[1].toString(16).padStart(2, "0")}${t[2].toString(16).padStart(2, "0")}` : t[4] === "hsla" ? `hsla(${t[0]}, ${t[1]}%, ${t[2]}%, ${t[3]})` : "";
|
|
379
379
|
}
|
|
380
380
|
function Je(t, e) {
|
|
381
|
-
const [r, n, s, i, o] = se(t), [l,
|
|
381
|
+
const [r, n, s, i, o] = se(t), [l, a, c, p] = se(e);
|
|
382
382
|
return (m) => {
|
|
383
|
-
const
|
|
384
|
-
return Be([
|
|
383
|
+
const d = r + (l - r) * m, T = n + (a - n) * m, E = s + (c - s) * m, j = i + (p - i) * m;
|
|
384
|
+
return Be([d, T, E, j, o]);
|
|
385
385
|
};
|
|
386
386
|
}
|
|
387
|
-
function
|
|
387
|
+
function Ht(t, e) {
|
|
388
388
|
const r = ie(t), n = ie(e);
|
|
389
389
|
return (s) => {
|
|
390
|
-
const i = r.x + (n.x - r.x) * s, o = r.y + (n.y - r.y) * s, l = r.blur + (n.blur - r.blur) * s,
|
|
391
|
-
return
|
|
390
|
+
const i = r.x + (n.x - r.x) * s, o = r.y + (n.y - r.y) * s, l = r.blur + (n.blur - r.blur) * s, a = r.spread + (n.spread - r.spread) * s, c = me(r.color, n.color)(s);
|
|
391
|
+
return Ue({ inset: r.inset, x: i, y: o, blur: l, spread: a, color: c });
|
|
392
392
|
};
|
|
393
393
|
}
|
|
394
394
|
function Ge(t, e) {
|
|
395
|
-
var r, n, s, i, o, l,
|
|
396
|
-
return e === "translateX" ? new WebKitCSSMatrix(t.transform).m41 : e === "translateY" ? new WebKitCSSMatrix(t.transform).m42 : e === "translateZ" ? new WebKitCSSMatrix(t.transform).m43 : e === "rotateX" ? new WebKitCSSMatrix(t.transform).m12 : e === "rotateY" ? new WebKitCSSMatrix(t.transform).m21 : e === "rotateZ" ? new WebKitCSSMatrix(t.transform).m31 : e === "scaleX" ? new WebKitCSSMatrix(t.transform).m11 : e === "scaleY" ? new WebKitCSSMatrix(t.transform).m22 : e === "scaleZ" ? new WebKitCSSMatrix(t.transform).m33 : e === "skewX" ? new WebKitCSSMatrix(t.transform).m13 : e === "skewY" ? new WebKitCSSMatrix(t.transform).m23 : Number(e === "grayScale" ? (r = t.filter.match(/grayscale\((\d+)%\)/)) == null ? void 0 : r[1] : e === "sepia" ? (n = t.filter.match(/sepia\((\d+)%\)/)) == null ? void 0 : n[1] : e === "saturate" ? (s = t.filter.match(/saturate\((\d+)%\)/)) == null ? void 0 : s[1] : e === "hueRotate" ? (i = t.filter.match(/hue-rotate\((\d+)deg\)/)) == null ? void 0 : i[1] : e === "invert" ? (o = t.filter.match(/invert\((\d+)%\)/)) == null ? void 0 : o[1] : e === "brightness" ? (l = t.filter.match(/brightness\((\d+)%\)/)) == null ? void 0 : l[1] : e === "contrast" ? (
|
|
395
|
+
var r, n, s, i, o, l, a, c;
|
|
396
|
+
return e === "translateX" ? new WebKitCSSMatrix(t.transform).m41 : e === "translateY" ? new WebKitCSSMatrix(t.transform).m42 : e === "translateZ" ? new WebKitCSSMatrix(t.transform).m43 : e === "rotateX" ? new WebKitCSSMatrix(t.transform).m12 : e === "rotateY" ? new WebKitCSSMatrix(t.transform).m21 : e === "rotateZ" ? new WebKitCSSMatrix(t.transform).m31 : e === "scaleX" ? new WebKitCSSMatrix(t.transform).m11 : e === "scaleY" ? new WebKitCSSMatrix(t.transform).m22 : e === "scaleZ" ? new WebKitCSSMatrix(t.transform).m33 : e === "skewX" ? new WebKitCSSMatrix(t.transform).m13 : e === "skewY" ? new WebKitCSSMatrix(t.transform).m23 : Number(e === "grayScale" ? (r = t.filter.match(/grayscale\((\d+)%\)/)) == null ? void 0 : r[1] : e === "sepia" ? (n = t.filter.match(/sepia\((\d+)%\)/)) == null ? void 0 : n[1] : e === "saturate" ? (s = t.filter.match(/saturate\((\d+)%\)/)) == null ? void 0 : s[1] : e === "hueRotate" ? (i = t.filter.match(/hue-rotate\((\d+)deg\)/)) == null ? void 0 : i[1] : e === "invert" ? (o = t.filter.match(/invert\((\d+)%\)/)) == null ? void 0 : o[1] : e === "brightness" ? (l = t.filter.match(/brightness\((\d+)%\)/)) == null ? void 0 : l[1] : e === "contrast" ? (a = t.filter.match(/contrast\((\d+)%\)/)) == null ? void 0 : a[1] : e === "blur" ? (c = t.filter.match(/blur\((\d+)px\)/)) == null ? void 0 : c[1] : t.getPropertyValue(e));
|
|
397
397
|
}
|
|
398
|
-
function
|
|
398
|
+
function Kt(t, e) {
|
|
399
399
|
const r = {}, n = getComputedStyle(t);
|
|
400
400
|
for (const [s, i] of Object.entries(e)) {
|
|
401
401
|
const o = s;
|
|
@@ -403,15 +403,15 @@ function Ut(t, e) {
|
|
|
403
403
|
}
|
|
404
404
|
return r;
|
|
405
405
|
}
|
|
406
|
-
function
|
|
406
|
+
function O(t, e, r) {
|
|
407
407
|
r != null && (e === "translateX" ? t.style.transform += ` translateX(${r}px)` : e === "translateY" ? t.style.transform += ` translateY(${r}px)` : e === "translateZ" ? t.style.transform += ` translateZ(${r}px)` : e === "rotateX" ? t.style.transform += ` rotateX(${r}deg)` : e === "rotateY" ? t.style.transform += ` rotateY(${r}deg)` : e === "rotateZ" ? t.style.transform += ` rotateZ(${r}deg)` : e === "scaleX" ? t.style.transform += ` scaleX(${r})` : e === "scaleY" ? t.style.transform += ` scaleY(${r})` : e === "scaleZ" ? t.style.transform += ` scaleZ(${r})` : e === "skewX" ? t.style.transform += ` skewX(${r}deg)` : e === "skewY" ? t.style.transform += ` skewY(${r}deg)` : e === "grayScale" ? t.style.filter += ` grayscale(${r}%)` : e === "sepia" ? t.style.filter += ` sepia(${r}%)` : e === "saturate" ? t.style.filter += ` saturate(${r}%)` : e === "hueRotate" ? t.style.filter += ` hue-rotate(${r}deg)` : e === "invert" ? t.style.filter += ` invert(${r}%)` : e === "brightness" ? t.style.filter += ` brightness(${r}%)` : e === "contrast" ? t.style.filter += ` contrast(${r}%)` : e === "blur" && (t.style.filter += ` blur(${r}px)`), t.style.setProperty(e, String(r)));
|
|
408
408
|
}
|
|
409
|
-
const
|
|
409
|
+
const k = /* @__PURE__ */ new Map();
|
|
410
410
|
function pe(t, e, r) {
|
|
411
|
-
if (
|
|
412
|
-
return
|
|
411
|
+
if (k.has(r + ":" + t + e))
|
|
412
|
+
return k.get(t + e);
|
|
413
413
|
const n = Je(t, e);
|
|
414
|
-
return
|
|
414
|
+
return k.set(r + ":" + t + e, n), n;
|
|
415
415
|
}
|
|
416
416
|
function me(t, e) {
|
|
417
417
|
return pe(t, e, "c");
|
|
@@ -423,23 +423,23 @@ function et(t, e, r, n, s) {
|
|
|
423
423
|
if (r != null && n != null) {
|
|
424
424
|
if (typeof r == "number" && typeof n == "number") {
|
|
425
425
|
const i = r + (n - r) * s;
|
|
426
|
-
|
|
426
|
+
O(t, e, i);
|
|
427
427
|
} else if (e === "boxShadow" || e === "textShadow") {
|
|
428
428
|
const i = Qe(
|
|
429
429
|
r,
|
|
430
430
|
n
|
|
431
431
|
)(s);
|
|
432
|
-
|
|
432
|
+
O(t, e, i);
|
|
433
433
|
} else if (e === "color" || e === "backgroundColor" || e === "borderColor" || e === "outlineColor") {
|
|
434
434
|
const i = me(
|
|
435
435
|
r,
|
|
436
436
|
n
|
|
437
437
|
)(s);
|
|
438
|
-
|
|
438
|
+
O(t, e, i);
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
441
|
}
|
|
442
|
-
function
|
|
442
|
+
function Ut(t, e, r, n) {
|
|
443
443
|
t.style.transform = "", t.style.filter = "";
|
|
444
444
|
for (const [s, i] of Object.entries(r)) {
|
|
445
445
|
const o = s;
|
|
@@ -449,14 +449,14 @@ function kt(t, e, r, n) {
|
|
|
449
449
|
function Bt(t, e) {
|
|
450
450
|
t.style.transform = "", t.style.filter = "";
|
|
451
451
|
for (const [r, n] of Object.entries(e))
|
|
452
|
-
n != null &&
|
|
452
|
+
n != null && O(t, r, n);
|
|
453
453
|
}
|
|
454
454
|
const ge = /* @__PURE__ */ new Set(["checked", "disabled", "hidden", "selected"]), we = /* @__PURE__ */ new Set([
|
|
455
455
|
"rowSpan",
|
|
456
456
|
"colSpan",
|
|
457
457
|
"tabIndex",
|
|
458
458
|
"valueAsNumber"
|
|
459
|
-
]),
|
|
459
|
+
]), Se = /* @__PURE__ */ new Set(["valueAsDate"]), be = /* @__PURE__ */ new Set([
|
|
460
460
|
"value",
|
|
461
461
|
"textContent",
|
|
462
462
|
"innerText",
|
|
@@ -464,13 +464,13 @@ const ge = /* @__PURE__ */ new Set(["checked", "disabled", "hidden", "selected"]
|
|
|
464
464
|
"outerHTML",
|
|
465
465
|
"className",
|
|
466
466
|
"classList"
|
|
467
|
-
]),
|
|
467
|
+
]), H = /* @__PURE__ */ new Map();
|
|
468
468
|
function C(t, e) {
|
|
469
|
-
if (
|
|
470
|
-
return
|
|
469
|
+
if (H.has(t))
|
|
470
|
+
return H.get(t);
|
|
471
471
|
{
|
|
472
472
|
const r = e(t);
|
|
473
|
-
return
|
|
473
|
+
return H.set(t, r), r;
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
function tt(t) {
|
|
@@ -499,10 +499,10 @@ function it(t) {
|
|
|
499
499
|
};
|
|
500
500
|
}
|
|
501
501
|
function ve(t) {
|
|
502
|
-
return ge.has(t) ? C(t, tt) : we.has(t) ? C(t, rt) :
|
|
502
|
+
return ge.has(t) ? C(t, tt) : we.has(t) ? C(t, rt) : Se.has(t) ? C(t, nt) : be.has(t) ? C(t, st) : C(t, it);
|
|
503
503
|
}
|
|
504
504
|
function Ae(t) {
|
|
505
|
-
return (e) => ge.has(t) ? !!e[t] : we.has(t) ? Number(e[t]) :
|
|
505
|
+
return (e) => ge.has(t) ? !!e[t] : we.has(t) ? Number(e[t]) : Se.has(t) ? e[t] : be.has(t) ? String(e[t]) : e.getAttribute(t);
|
|
506
506
|
}
|
|
507
507
|
class v {
|
|
508
508
|
/**
|
|
@@ -522,19 +522,19 @@ class v {
|
|
|
522
522
|
* @param namespace - The namespace URI to create the element in, or `undefined` to create a standard HTML element.
|
|
523
523
|
* @returns The newly created element.
|
|
524
524
|
*/
|
|
525
|
-
|
|
525
|
+
u(this, "createElement", (e, r) => r !== void 0 ? this.document.createElementNS(r, e) : this.document.createElement(e));
|
|
526
526
|
/**
|
|
527
527
|
* Creates a new text node with the specified text content.
|
|
528
528
|
* @param text - The text content for the new text node.
|
|
529
529
|
* @returns A new `Text` node with the specified text content.
|
|
530
530
|
*/
|
|
531
|
-
|
|
531
|
+
u(this, "createText", (e) => this.document.createTextNode(e));
|
|
532
532
|
/**
|
|
533
533
|
* Creates a new `DOMContext` with a reference to a newly created text node.
|
|
534
534
|
* The text node is appended or inserted to the current `DOMContext`.
|
|
535
535
|
* The new `DOMContext` with the reference is returned.
|
|
536
536
|
*/
|
|
537
|
-
|
|
537
|
+
u(this, "makeRef", () => {
|
|
538
538
|
const e = this.createText("");
|
|
539
539
|
return this.appendOrInsert(e), this.withReference(e);
|
|
540
540
|
});
|
|
@@ -543,7 +543,7 @@ class v {
|
|
|
543
543
|
*
|
|
544
544
|
* @param child - The child node to append or insert.
|
|
545
545
|
*/
|
|
546
|
-
|
|
546
|
+
u(this, "appendOrInsert", (e) => {
|
|
547
547
|
this.reference === void 0 ? this.element.appendChild(e) : this.element.insertBefore(e, this.reference);
|
|
548
548
|
});
|
|
549
549
|
/**
|
|
@@ -552,18 +552,18 @@ class v {
|
|
|
552
552
|
* @param document - The `Document` to use for the `DOMContext`.
|
|
553
553
|
* @returns A new `DOMContext` instance.
|
|
554
554
|
*/
|
|
555
|
-
|
|
555
|
+
u(this, "withDocument", (e) => new v(e, this.element, this.reference, this.providers, !0));
|
|
556
556
|
/**
|
|
557
557
|
* Creates a new `DOMContext` instance with the provided `element`.
|
|
558
558
|
* @param element - The DOM element to use in the new `DOMContext` instance.
|
|
559
559
|
* @returns A new `DOMContext` instance with the provided `element`.
|
|
560
560
|
*/
|
|
561
|
-
|
|
561
|
+
u(this, "withElement", (e) => new v(this.document, e, void 0, this.providers, !1));
|
|
562
562
|
/**
|
|
563
563
|
* Creates a new `DOMContext` instance with the `isFirstLevel` property set to `true`.
|
|
564
564
|
* @returns A new `DOMContext` instance with the `isFirstLevel` property set to `true`.
|
|
565
565
|
*/
|
|
566
|
-
|
|
566
|
+
u(this, "withFirstLevel", () => new v(
|
|
567
567
|
this.document,
|
|
568
568
|
this.element,
|
|
569
569
|
this.reference,
|
|
@@ -576,7 +576,7 @@ class v {
|
|
|
576
576
|
* @param reference - The optional `Text` node to use as the reference for the new `DOMContext`.
|
|
577
577
|
* @returns A new `DOMContext` instance with the specified reference.
|
|
578
578
|
*/
|
|
579
|
-
|
|
579
|
+
u(this, "withReference", (e) => new v(
|
|
580
580
|
this.document,
|
|
581
581
|
this.element,
|
|
582
582
|
e,
|
|
@@ -589,7 +589,7 @@ class v {
|
|
|
589
589
|
* @param value - The value to set for the provider.
|
|
590
590
|
* @returns A new DOMContext with the updated providers.
|
|
591
591
|
*/
|
|
592
|
-
|
|
592
|
+
u(this, "withProvider", (e, r) => new v(
|
|
593
593
|
this.document,
|
|
594
594
|
this.element,
|
|
595
595
|
this.reference,
|
|
@@ -606,7 +606,7 @@ class v {
|
|
|
606
606
|
* @param providers - An object containing the providers to be merged into the existing providers.
|
|
607
607
|
* @returns A new DOMContext instance with the merged providers.
|
|
608
608
|
*/
|
|
609
|
-
|
|
609
|
+
u(this, "withProviders", (e) => new v(
|
|
610
610
|
this.document,
|
|
611
611
|
this.element,
|
|
612
612
|
this.reference,
|
|
@@ -623,7 +623,7 @@ class v {
|
|
|
623
623
|
* @returns The provider for the given mark.
|
|
624
624
|
* @throws {Error} If the provider for the given mark is not found.
|
|
625
625
|
*/
|
|
626
|
-
|
|
626
|
+
u(this, "getProvider", (e) => {
|
|
627
627
|
if (this.providers[e] === void 0)
|
|
628
628
|
throw new Error(`Provider not found: ${e.description}`);
|
|
629
629
|
return this.providers[e];
|
|
@@ -641,7 +641,7 @@ class v {
|
|
|
641
641
|
return new v(e.ownerDocument, e, r, {}, !0);
|
|
642
642
|
}
|
|
643
643
|
}
|
|
644
|
-
function
|
|
644
|
+
function S(t) {
|
|
645
645
|
const e = t;
|
|
646
646
|
e && e.onblur && (e.onblur = null), !(!t || t.ownerDocument === void 0) && t.parentElement && t.parentElement.removeChild(t);
|
|
647
647
|
}
|
|
@@ -651,7 +651,7 @@ function ot(t) {
|
|
|
651
651
|
function ye(t) {
|
|
652
652
|
return t.nodeType === 1;
|
|
653
653
|
}
|
|
654
|
-
function
|
|
654
|
+
function at(t, e, r) {
|
|
655
655
|
let n = t.target;
|
|
656
656
|
for (; n != null && !(n instanceof HTMLAnchorElement); )
|
|
657
657
|
n = n.parentElement;
|
|
@@ -660,8 +660,8 @@ function ut(t, e, r) {
|
|
|
660
660
|
if (t.button !== 0 || t.ctrlKey || t.metaKey || s.target !== "_self" && s.target !== "" || s.getAttribute("download") != null)
|
|
661
661
|
return !0;
|
|
662
662
|
if (r) {
|
|
663
|
-
const { pathname: i, search: o, hash: l } = s,
|
|
664
|
-
if (s.getAttribute("href") !==
|
|
663
|
+
const { pathname: i, search: o, hash: l } = s, a = i + o + l;
|
|
664
|
+
if (s.getAttribute("href") !== a || e && !/\/[^/.]*$/.test(i))
|
|
665
665
|
return !0;
|
|
666
666
|
}
|
|
667
667
|
return !1;
|
|
@@ -671,13 +671,13 @@ const Jt = (t, e = {
|
|
|
671
671
|
checkExternalUrl: !0
|
|
672
672
|
}) => (r) => {
|
|
673
673
|
const { checkExtension: n, checkExternalUrl: s } = e;
|
|
674
|
-
|
|
674
|
+
at(
|
|
675
675
|
r,
|
|
676
676
|
n === !0,
|
|
677
677
|
s === !0
|
|
678
678
|
) || t() && r.preventDefault();
|
|
679
|
-
}, M = "data-tempo-attr", x = "data-tempo-class", Ee = "data-tempo-node",
|
|
680
|
-
function
|
|
679
|
+
}, M = "data-tempo-attr", x = "data-tempo-class", Ee = "data-tempo-node", F = "data-tempo-text";
|
|
680
|
+
function ut(t, e) {
|
|
681
681
|
const r = t.getAttribute(e);
|
|
682
682
|
if (r != null) {
|
|
683
683
|
const n = t.getAttribute(M) ?? "{}", s = { ...JSON.parse(n), name: r };
|
|
@@ -685,7 +685,7 @@ function at(t, e) {
|
|
|
685
685
|
}
|
|
686
686
|
}
|
|
687
687
|
function _e(t, e) {
|
|
688
|
-
|
|
688
|
+
console.log("maybeAddAttributeTracker", e, y.isSSR, t.isFirstLevel), y.isSSR && t.isFirstLevel && ut(t.element, e);
|
|
689
689
|
}
|
|
690
690
|
function lt(t) {
|
|
691
691
|
t.querySelectorAll(`[${M}]`).forEach((e) => {
|
|
@@ -696,11 +696,10 @@ function lt(t) {
|
|
|
696
696
|
});
|
|
697
697
|
}
|
|
698
698
|
function ct(t) {
|
|
699
|
-
|
|
700
|
-
e.length > 0 && t.setAttribute(x, e);
|
|
699
|
+
t.setAttribute(x, t.className);
|
|
701
700
|
}
|
|
702
|
-
function
|
|
703
|
-
|
|
701
|
+
function Te(t) {
|
|
702
|
+
console.log("maybeAddClassTracker", y.isSSR, t.isFirstLevel), y.isSSR && t.isFirstLevel && ct(t.element);
|
|
704
703
|
}
|
|
705
704
|
function ft(t) {
|
|
706
705
|
t.querySelectorAll(`[${x}]`).forEach((e) => {
|
|
@@ -708,42 +707,42 @@ function ft(t) {
|
|
|
708
707
|
r !== null && (e.className = r, e.removeAttribute(x));
|
|
709
708
|
});
|
|
710
709
|
}
|
|
711
|
-
function
|
|
710
|
+
function Pe(t) {
|
|
712
711
|
t.setAttribute(Ee, "");
|
|
713
712
|
}
|
|
714
|
-
function
|
|
713
|
+
function dt(t) {
|
|
715
714
|
t.querySelectorAll(`[${Ee}]`).forEach((e) => {
|
|
716
|
-
|
|
715
|
+
S(e);
|
|
717
716
|
});
|
|
718
717
|
}
|
|
719
|
-
function
|
|
720
|
-
t.setAttribute(
|
|
718
|
+
function ht(t) {
|
|
719
|
+
t.setAttribute(F, t.textContent ?? "");
|
|
721
720
|
}
|
|
722
|
-
function
|
|
723
|
-
|
|
721
|
+
function De(t) {
|
|
722
|
+
console.log("maybeAddTextTracker", y.isSSR, t.isFirstLevel), y.isSSR && t.isFirstLevel && ht(t.element);
|
|
724
723
|
}
|
|
725
724
|
function pt(t) {
|
|
726
|
-
t.querySelectorAll(`[${
|
|
727
|
-
e.textContent = e.getAttribute(
|
|
725
|
+
t.querySelectorAll(`[${F}]`).forEach((e) => {
|
|
726
|
+
e.textContent = e.getAttribute(F), e.removeAttribute(F);
|
|
728
727
|
});
|
|
729
728
|
}
|
|
730
729
|
const Ce = (t) => (e) => {
|
|
731
|
-
|
|
730
|
+
De(e);
|
|
732
731
|
const r = e.createText(t);
|
|
733
732
|
return e.appendOrInsert(r), (n) => {
|
|
734
|
-
n &&
|
|
733
|
+
n && S(r);
|
|
735
734
|
};
|
|
736
735
|
}, Me = (t) => (e) => {
|
|
737
|
-
|
|
736
|
+
De(e);
|
|
738
737
|
const r = e.createText(t.value);
|
|
739
738
|
e.appendOrInsert(r);
|
|
740
739
|
const n = t.on((s) => r.data = s);
|
|
741
740
|
return (s) => {
|
|
742
|
-
n(), s &&
|
|
741
|
+
n(), s && S(r);
|
|
743
742
|
};
|
|
744
743
|
};
|
|
745
744
|
function Gt(t) {
|
|
746
|
-
return
|
|
745
|
+
return h.is(t) ? Me(t) : Ce(t);
|
|
747
746
|
}
|
|
748
747
|
const g = (...t) => (e) => {
|
|
749
748
|
const r = t.map((n) => f(n)(e));
|
|
@@ -751,10 +750,10 @@ const g = (...t) => (e) => {
|
|
|
751
750
|
r.forEach((s) => s(n));
|
|
752
751
|
};
|
|
753
752
|
}, w = () => () => {
|
|
754
|
-
}, mt = (t) => (e) => (
|
|
753
|
+
}, mt = (t) => (e) => (Te(e), e.element.classList.add(...t), (r) => {
|
|
755
754
|
r && e.element.classList.remove(...t);
|
|
756
755
|
}), gt = (t) => (e) => {
|
|
757
|
-
|
|
756
|
+
Te(e);
|
|
758
757
|
const r = e.element;
|
|
759
758
|
let n = [];
|
|
760
759
|
const s = t.on((i) => {
|
|
@@ -784,9 +783,9 @@ const g = (...t) => (e) => {
|
|
|
784
783
|
}, P = new Proxy(
|
|
785
784
|
{},
|
|
786
785
|
{
|
|
787
|
-
get: (t, e) => e === "class" ? (r) =>
|
|
786
|
+
get: (t, e) => e === "class" ? (r) => h.is(r) ? gt(r) : mt(
|
|
788
787
|
(r ?? "").split(" ").filter((n) => n.length > 0)
|
|
789
|
-
) : (r) =>
|
|
788
|
+
) : (r) => h.is(r) ? Z(
|
|
790
789
|
e,
|
|
791
790
|
r
|
|
792
791
|
) : q(
|
|
@@ -797,7 +796,7 @@ const g = (...t) => (e) => {
|
|
|
797
796
|
), Qt = new Proxy(
|
|
798
797
|
{},
|
|
799
798
|
{
|
|
800
|
-
get: (t, e) => (r) =>
|
|
799
|
+
get: (t, e) => (r) => h.is(r) ? Z(
|
|
801
800
|
`aria-${e}`,
|
|
802
801
|
r
|
|
803
802
|
) : q(
|
|
@@ -808,7 +807,7 @@ const g = (...t) => (e) => {
|
|
|
808
807
|
), er = new Proxy(
|
|
809
808
|
{},
|
|
810
809
|
{
|
|
811
|
-
get: (t, e) => (r) =>
|
|
810
|
+
get: (t, e) => (r) => h.is(r) ? Z(
|
|
812
811
|
e,
|
|
813
812
|
r
|
|
814
813
|
) : q(
|
|
@@ -819,7 +818,7 @@ const g = (...t) => (e) => {
|
|
|
819
818
|
), tr = new Proxy(
|
|
820
819
|
{},
|
|
821
820
|
{
|
|
822
|
-
get: (t, e) => (r) =>
|
|
821
|
+
get: (t, e) => (r) => h.is(r) ? Z(
|
|
823
822
|
e,
|
|
824
823
|
r
|
|
825
824
|
) : q(
|
|
@@ -829,25 +828,25 @@ const g = (...t) => (e) => {
|
|
|
829
828
|
}
|
|
830
829
|
);
|
|
831
830
|
function f(t) {
|
|
832
|
-
return t == null ? w : Array.isArray(t) ? g(...t.map(f)) : typeof t == "string" ? Ce(t) :
|
|
831
|
+
return t == null ? w : Array.isArray(t) ? g(...t.map(f)) : typeof t == "string" ? Ce(t) : h.is(t) ? Me(t) : t;
|
|
833
832
|
}
|
|
834
833
|
function Ne(t, ...e) {
|
|
835
834
|
return (r) => {
|
|
836
835
|
const n = r.createElement(t, void 0);
|
|
837
|
-
r.isFirstLevel &&
|
|
836
|
+
r.isFirstLevel && y.isSSR && Pe(n), r.appendOrInsert(n), r = r.withElement(n);
|
|
838
837
|
const s = e.map((i) => f(i)(r));
|
|
839
838
|
return (i) => {
|
|
840
|
-
s.forEach((o) => o(!1)), i &&
|
|
839
|
+
s.forEach((o) => o(!1)), i && S(n);
|
|
841
840
|
};
|
|
842
841
|
};
|
|
843
842
|
}
|
|
844
843
|
function $e(t, e, ...r) {
|
|
845
844
|
return (n) => {
|
|
846
845
|
const s = n.createElement(t, e);
|
|
847
|
-
n.isFirstLevel &&
|
|
846
|
+
n.isFirstLevel && y.isSSR && Pe(s), n.appendOrInsert(s), n = n.withElement(s);
|
|
848
847
|
const i = r.map((o) => f(o)(n));
|
|
849
848
|
return (o) => {
|
|
850
|
-
i.forEach((l) => l(!1)), o &&
|
|
849
|
+
i.forEach((l) => l(!1)), o && S(s);
|
|
851
850
|
};
|
|
852
851
|
};
|
|
853
852
|
}
|
|
@@ -866,31 +865,31 @@ const rr = new Proxy(
|
|
|
866
865
|
{
|
|
867
866
|
get: (t, e) => (...r) => $e(e, wt, r.flatMap(f))
|
|
868
867
|
}
|
|
869
|
-
),
|
|
868
|
+
), St = "http://www.w3.org/1998/Math/MathML", ir = new Proxy(
|
|
870
869
|
{},
|
|
871
870
|
{
|
|
872
|
-
get: (t, e) => (...r) => $e(e,
|
|
871
|
+
get: (t, e) => (...r) => $e(e, St, r.flatMap(f))
|
|
873
872
|
}
|
|
874
873
|
);
|
|
875
|
-
let
|
|
876
|
-
function
|
|
877
|
-
|
|
874
|
+
let W = !1;
|
|
875
|
+
function bt(t) {
|
|
876
|
+
dt(t), ft(t), lt(t), pt(t);
|
|
878
877
|
}
|
|
879
|
-
let
|
|
880
|
-
const or = (t = 30) => (
|
|
878
|
+
let K = 0;
|
|
879
|
+
const or = (t = 30) => (W = !0, new Promise((e, r) => {
|
|
881
880
|
let n;
|
|
882
881
|
const s = setInterval(() => {
|
|
883
|
-
|
|
882
|
+
K <= 0 && (clearInterval(s), clearTimeout(n), W = !1, e());
|
|
884
883
|
}, 300);
|
|
885
884
|
n = setTimeout(() => {
|
|
886
|
-
clearInterval(s),
|
|
885
|
+
clearInterval(s), W = !1, r(new Error("SSR Timeout"));
|
|
887
886
|
}, t * 1e3);
|
|
888
|
-
})),
|
|
887
|
+
})), y = {
|
|
889
888
|
useDone(t) {
|
|
890
|
-
return
|
|
889
|
+
return K++, f(t(() => K--));
|
|
891
890
|
},
|
|
892
891
|
get isSSR() {
|
|
893
|
-
return
|
|
892
|
+
return W;
|
|
894
893
|
}
|
|
895
894
|
}, Le = (t, e) => (r) => {
|
|
896
895
|
const n = Object.values(t).reduce((s, i) => {
|
|
@@ -900,17 +899,17 @@ const or = (t = 30) => (F = !0, new Promise((e, r) => {
|
|
|
900
899
|
return s[i] = o, s;
|
|
901
900
|
}, {});
|
|
902
901
|
return f(e(n))(r);
|
|
903
|
-
},
|
|
902
|
+
}, ar = (t, e) => (r) => {
|
|
904
903
|
const n = [], s = Object.entries(t).reduce(
|
|
905
904
|
(i, [o, l]) => (n.push(
|
|
906
|
-
l((
|
|
905
|
+
l((a) => (Reflect.set(i, o, a), null))(r)
|
|
907
906
|
), i),
|
|
908
907
|
{}
|
|
909
908
|
);
|
|
910
909
|
return n.push(e(s)(r)), (i) => {
|
|
911
910
|
n.forEach((o) => o(i));
|
|
912
911
|
};
|
|
913
|
-
}, vt = (t, e) => Le([t], (r) => f(e(r[t]))),
|
|
912
|
+
}, vt = (t, e) => Le([t], (r) => f(e(r[t]))), ur = (t, e) => Le(t, (r) => f(e(r))), $ = (t) => (e) => (r) => t(r, e);
|
|
914
913
|
function At(t) {
|
|
915
914
|
return Symbol(t);
|
|
916
915
|
}
|
|
@@ -943,27 +942,27 @@ const Ie = (t, e) => (r) => f(e)(r.withProviders(t)), lr = (...t) => t.length >
|
|
|
943
942
|
* @returns The `Child` element returned by the provided function.
|
|
944
943
|
*/
|
|
945
944
|
consume: (t) => vt(oe, t)
|
|
946
|
-
},
|
|
945
|
+
}, Re = (t, e) => {
|
|
947
946
|
if (typeof e == "function")
|
|
948
|
-
return
|
|
947
|
+
return Re(t, { then: e });
|
|
949
948
|
const r = e.pending != null ? f(e.pending) : w, n = e.then, s = e.error != null ? (i) => f(e.error(i)) : () => w;
|
|
950
949
|
return (i) => {
|
|
951
950
|
let o = !0;
|
|
952
951
|
const l = t();
|
|
953
952
|
i = i.makeRef();
|
|
954
|
-
let
|
|
953
|
+
let a = f(r)(i);
|
|
955
954
|
return l.then(
|
|
956
955
|
(c) => {
|
|
957
|
-
o && (
|
|
956
|
+
o && (a(!0), a = f(n(c))(i));
|
|
958
957
|
},
|
|
959
958
|
(c) => {
|
|
960
|
-
o && (
|
|
959
|
+
o && (a(!0), a = f(s(c))(i));
|
|
961
960
|
}
|
|
962
961
|
), (c) => {
|
|
963
|
-
o = !1,
|
|
962
|
+
o = !1, a(c), c && i.reference && S(i.reference);
|
|
964
963
|
};
|
|
965
964
|
};
|
|
966
|
-
},
|
|
965
|
+
}, dr = (t, e) => Re(() => t, e), hr = (t = 10) => (e) => {
|
|
967
966
|
const r = setTimeout(() => {
|
|
968
967
|
var n;
|
|
969
968
|
(n = e.element) == null || n.focus();
|
|
@@ -977,9 +976,9 @@ const Ie = (t, e) => (r) => f(e)(r.withProviders(t)), lr = (...t) => t.length >
|
|
|
977
976
|
return (n) => {
|
|
978
977
|
clearTimeout(r);
|
|
979
978
|
};
|
|
980
|
-
},
|
|
979
|
+
}, Oe = (t, e) => (r) => (r.element.addEventListener(t, e), (n) => {
|
|
981
980
|
n && r.element.removeEventListener(t, e);
|
|
982
|
-
}), Et = (t) =>
|
|
981
|
+
}), Et = (t) => Oe("click", (e) => {
|
|
983
982
|
e.preventDefault();
|
|
984
983
|
const r = e.target;
|
|
985
984
|
setTimeout(() => {
|
|
@@ -989,7 +988,7 @@ const Ie = (t, e) => (r) => f(e)(r.withProviders(t)), lr = (...t) => t.length >
|
|
|
989
988
|
}), X = new Proxy(
|
|
990
989
|
{},
|
|
991
990
|
{
|
|
992
|
-
get: (t, e) => (r) =>
|
|
991
|
+
get: (t, e) => (r) => Oe(e, r)
|
|
993
992
|
}
|
|
994
993
|
), Y = {
|
|
995
994
|
value: (t) => (e) => {
|
|
@@ -1042,19 +1041,19 @@ function _t(t, e = "input") {
|
|
|
1042
1041
|
X[e](Y.valueAsDate(t.set))
|
|
1043
1042
|
);
|
|
1044
1043
|
}
|
|
1045
|
-
function
|
|
1044
|
+
function Tt(t, e = "input") {
|
|
1046
1045
|
return g(
|
|
1047
1046
|
P.valueAsDate(t),
|
|
1048
1047
|
X[e](Y.valueAsDateTime(t.set))
|
|
1049
1048
|
);
|
|
1050
1049
|
}
|
|
1051
|
-
function
|
|
1050
|
+
function Pt(t, e = "input") {
|
|
1052
1051
|
return g(
|
|
1053
1052
|
P.valueAsNumber(t),
|
|
1054
1053
|
X[e](Y.valueAsNumber(t.set))
|
|
1055
1054
|
);
|
|
1056
1055
|
}
|
|
1057
|
-
function
|
|
1056
|
+
function Dt(t, e = "input") {
|
|
1058
1057
|
return g(P.value(t), X[e](Y.value(t.set)));
|
|
1059
1058
|
}
|
|
1060
1059
|
function Ct(t) {
|
|
@@ -1062,31 +1061,31 @@ function Ct(t) {
|
|
|
1062
1061
|
}
|
|
1063
1062
|
const mr = {
|
|
1064
1063
|
date: _t,
|
|
1065
|
-
dateTime:
|
|
1066
|
-
number:
|
|
1067
|
-
text:
|
|
1064
|
+
dateTime: Tt,
|
|
1065
|
+
number: Pt,
|
|
1066
|
+
text: Dt,
|
|
1068
1067
|
checked: Ct
|
|
1069
|
-
},
|
|
1068
|
+
}, R = (t, e) => (r) => {
|
|
1070
1069
|
r = r.makeRef();
|
|
1071
1070
|
let n, s;
|
|
1072
|
-
const i = t.map((
|
|
1071
|
+
const i = t.map((a) => Object.keys(a)[0]);
|
|
1073
1072
|
let o;
|
|
1074
|
-
const l = i.on((
|
|
1075
|
-
if (
|
|
1076
|
-
s == null || s.dispose(), n == null || n(!0), s = t.map((p) => p[
|
|
1077
|
-
const c = e[
|
|
1078
|
-
n = f(c)(r), o =
|
|
1073
|
+
const l = i.on((a) => {
|
|
1074
|
+
if (a !== o) {
|
|
1075
|
+
s == null || s.dispose(), n == null || n(!0), s = t.map((p) => p[a]);
|
|
1076
|
+
const c = e[a](s);
|
|
1077
|
+
n = f(c)(r), o = a;
|
|
1079
1078
|
}
|
|
1080
1079
|
});
|
|
1081
|
-
return (
|
|
1082
|
-
l(),
|
|
1080
|
+
return (a) => {
|
|
1081
|
+
l(), a && r.reference != null && S(r.reference), n == null || n(!0);
|
|
1083
1082
|
};
|
|
1084
1083
|
}, L = {
|
|
1085
|
-
bool: (t, e) =>
|
|
1084
|
+
bool: (t, e) => R(
|
|
1086
1085
|
t.map((r) => r ? { true: !0 } : { false: !0 }),
|
|
1087
1086
|
e
|
|
1088
1087
|
),
|
|
1089
|
-
field: (t, e, r) =>
|
|
1088
|
+
field: (t, e, r) => R(
|
|
1090
1089
|
t.map((n) => ({ [n[e]]: n })),
|
|
1091
1090
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
1092
1091
|
r
|
|
@@ -1094,10 +1093,10 @@ const mr = {
|
|
|
1094
1093
|
kind: (t, e) => L.field(t, "kind", e),
|
|
1095
1094
|
tuple: (t, e) => {
|
|
1096
1095
|
const r = t.map(([n, s]) => ({ [n]: s }));
|
|
1097
|
-
return
|
|
1096
|
+
return R(r, e);
|
|
1098
1097
|
},
|
|
1099
1098
|
type: (t, e) => L.field(t, "type", e),
|
|
1100
|
-
value: (t, e) =>
|
|
1099
|
+
value: (t, e) => R(
|
|
1101
1100
|
t.map((r) => ({ [r]: !0 })),
|
|
1102
1101
|
e
|
|
1103
1102
|
)
|
|
@@ -1111,16 +1110,16 @@ const mr = {
|
|
|
1111
1110
|
other: () => t
|
|
1112
1111
|
}
|
|
1113
1112
|
);
|
|
1114
|
-
}, wr = (t) => (e) => t(e)(e),
|
|
1115
|
-
r &&
|
|
1113
|
+
}, wr = (t) => (e) => t(e)(e), Sr = (t) => (e) => (e.appendOrInsert(t), (r) => {
|
|
1114
|
+
r && S(t);
|
|
1116
1115
|
}), Mt = (t, e, r) => (n) => {
|
|
1117
1116
|
n = n.makeRef();
|
|
1118
1117
|
let s = null, i = !1;
|
|
1119
|
-
const o = A(null), l = t.on((
|
|
1120
|
-
|
|
1118
|
+
const o = A(null), l = t.on((a) => {
|
|
1119
|
+
a == null ? (s == null || s(!0), s = f((r == null ? void 0 : r()) ?? w)(n), i = !1) : (o.value = a, i || (s == null || s(!0), s = f(e(o))(n), i = !0));
|
|
1121
1120
|
});
|
|
1122
|
-
return (
|
|
1123
|
-
l(), s == null || s(
|
|
1121
|
+
return (a) => {
|
|
1122
|
+
l(), s == null || s(a), a && n.reference && S(n.reference);
|
|
1124
1123
|
};
|
|
1125
1124
|
}, xe = (t, e, r) => r != null ? xe(t, (n) => {
|
|
1126
1125
|
const s = n.map((i) => i.isLast ? "last" : "other");
|
|
@@ -1135,24 +1134,24 @@ const mr = {
|
|
|
1135
1134
|
}) : (n) => {
|
|
1136
1135
|
n = n.makeRef();
|
|
1137
1136
|
const s = t.map(
|
|
1138
|
-
(
|
|
1139
|
-
(c) => new
|
|
1137
|
+
(a) => Array.from({ length: a }, (c, p) => p).map(
|
|
1138
|
+
(c) => new ke(c, a)
|
|
1140
1139
|
)
|
|
1141
|
-
), i = [], o = [], l = s.on((
|
|
1140
|
+
), i = [], o = [], l = s.on((a) => {
|
|
1142
1141
|
var p, m;
|
|
1143
|
-
const c =
|
|
1142
|
+
const c = a.length;
|
|
1144
1143
|
for (; c < i.length; )
|
|
1145
1144
|
(p = i.pop()) == null || p(!0), (m = o.pop()) == null || m.dispose();
|
|
1146
|
-
for (let
|
|
1147
|
-
if (o[
|
|
1148
|
-
o[
|
|
1149
|
-
const
|
|
1150
|
-
i[
|
|
1145
|
+
for (let d = 0; d < c; d++)
|
|
1146
|
+
if (o[d] == null) {
|
|
1147
|
+
o[d] = A(a[d]);
|
|
1148
|
+
const T = f(e(o[d]));
|
|
1149
|
+
i[d] = T(n);
|
|
1151
1150
|
} else
|
|
1152
|
-
o[
|
|
1151
|
+
o[d].value = a[d];
|
|
1153
1152
|
});
|
|
1154
|
-
return (
|
|
1155
|
-
l(),
|
|
1153
|
+
return (a) => {
|
|
1154
|
+
l(), a && n.reference && S(n.reference);
|
|
1156
1155
|
};
|
|
1157
1156
|
}, Nt = (t, e, r) => r != null ? Nt(t, (n, s) => {
|
|
1158
1157
|
const i = s.map((o) => o.isLast ? "last" : "other");
|
|
@@ -1167,7 +1166,7 @@ const mr = {
|
|
|
1167
1166
|
}) : (n) => {
|
|
1168
1167
|
const s = t.map((i) => i.length);
|
|
1169
1168
|
return xe(s, (i) => {
|
|
1170
|
-
const o =
|
|
1169
|
+
const o = U(
|
|
1171
1170
|
() => t.value[i.value.index],
|
|
1172
1171
|
[i, t]
|
|
1173
1172
|
);
|
|
@@ -1176,13 +1175,13 @@ const mr = {
|
|
|
1176
1175
|
f(e(o, i))
|
|
1177
1176
|
);
|
|
1178
1177
|
})(n);
|
|
1179
|
-
},
|
|
1178
|
+
}, br = (t) => {
|
|
1180
1179
|
const e = t.element, r = e.style.getPropertyValue(":empty");
|
|
1181
1180
|
return e.style.setProperty(":empty", "display:none"), (n) => {
|
|
1182
1181
|
n && e.style.setProperty(":empty", r);
|
|
1183
1182
|
};
|
|
1184
1183
|
};
|
|
1185
|
-
function
|
|
1184
|
+
function Fe(t, e) {
|
|
1186
1185
|
const r = t(e);
|
|
1187
1186
|
return () => r(!0);
|
|
1188
1187
|
}
|
|
@@ -1190,15 +1189,15 @@ function vr(t, e, { doc: r, clear: n } = {}) {
|
|
|
1190
1189
|
const s = typeof e == "string" ? (r ?? document).querySelector(e) : e;
|
|
1191
1190
|
if (s === null)
|
|
1192
1191
|
throw new Error(`Cannot find element by selector for render: ${e}`);
|
|
1193
|
-
n && (r ?? s.ownerDocument) != null &&
|
|
1192
|
+
n && (r ?? s.ownerDocument) != null && bt(r ?? s.ownerDocument);
|
|
1194
1193
|
const i = ot(s), o = ye(s) ? void 0 : s, l = v.of(i, o);
|
|
1195
|
-
return
|
|
1194
|
+
return Fe(t, l);
|
|
1196
1195
|
}
|
|
1197
1196
|
const $t = (t, e) => (r) => {
|
|
1198
1197
|
const n = r.document.querySelector(t);
|
|
1199
1198
|
if (n === null)
|
|
1200
1199
|
throw new Error(`Cannot find element by selector for portal: ${t}`);
|
|
1201
|
-
return
|
|
1200
|
+
return Fe(
|
|
1202
1201
|
f(e),
|
|
1203
1202
|
r.withElement(n).withFirstLevel()
|
|
1204
1203
|
);
|
|
@@ -1229,7 +1228,7 @@ const $t = (t, e) => (r) => {
|
|
|
1229
1228
|
partial: null,
|
|
1230
1229
|
full: null
|
|
1231
1230
|
};
|
|
1232
|
-
function
|
|
1231
|
+
function Rt(t) {
|
|
1233
1232
|
return N[t] == null && (N[t] = new IntersectionObserver((e) => {
|
|
1234
1233
|
e.forEach((r) => {
|
|
1235
1234
|
const n = z[t].get(r.target);
|
|
@@ -1237,11 +1236,11 @@ function Ot(t) {
|
|
|
1237
1236
|
});
|
|
1238
1237
|
}, It[t])), N[t];
|
|
1239
1238
|
}
|
|
1240
|
-
function
|
|
1241
|
-
const r = A(
|
|
1239
|
+
function Ot(t, e) {
|
|
1240
|
+
const r = A(y.isSSR);
|
|
1242
1241
|
return g(
|
|
1243
1242
|
Lt((n) => {
|
|
1244
|
-
const s = typeof IntersectionObserver < "u" ?
|
|
1243
|
+
const s = typeof IntersectionObserver < "u" ? Rt(t) : null;
|
|
1245
1244
|
return z[t].set(n, r), s == null || s.observe(n), () => {
|
|
1246
1245
|
var i;
|
|
1247
1246
|
s == null || s.unobserve(n), z[t].delete(n), z[t].size === 0 && ((i = N[t]) == null || i.disconnect(), N[t] = null);
|
|
@@ -1251,7 +1250,7 @@ function Rt(t, e) {
|
|
|
1251
1250
|
f(e(r))
|
|
1252
1251
|
);
|
|
1253
1252
|
}
|
|
1254
|
-
const Er = (t, e, r) =>
|
|
1253
|
+
const Er = (t, e, r) => Ot(t, (n) => B(n, e, r ?? w)), _r = (t, e) => (r) => {
|
|
1255
1254
|
r = r.makeRef();
|
|
1256
1255
|
const n = t.map((o) => f(e(o)));
|
|
1257
1256
|
let s = () => {
|
|
@@ -1263,7 +1262,7 @@ const Er = (t, e, r) => Rt(t, (n) => B(n, e, r ?? w)), _r = (t, e) => (r) => {
|
|
|
1263
1262
|
i(), s(o);
|
|
1264
1263
|
};
|
|
1265
1264
|
};
|
|
1266
|
-
function
|
|
1265
|
+
function Tr(t, e, r = w) {
|
|
1267
1266
|
return B(
|
|
1268
1267
|
t.map((n) => n.length > 0),
|
|
1269
1268
|
e,
|
|
@@ -1278,7 +1277,7 @@ const xt = (t) => (e) => {
|
|
|
1278
1277
|
return typeof ResizeObserver == "function" && (o = new ResizeObserver(i), o.observe(r)), (l) => {
|
|
1279
1278
|
o == null || o.disconnect(), s(l);
|
|
1280
1279
|
};
|
|
1281
|
-
},
|
|
1280
|
+
}, Ft = (t) => (e) => {
|
|
1282
1281
|
const r = A({
|
|
1283
1282
|
width: (window == null ? void 0 : window.innerWidth) ?? 0,
|
|
1284
1283
|
height: (window == null ? void 0 : window.innerHeight) ?? 0
|
|
@@ -1291,10 +1290,10 @@ const xt = (t) => (e) => {
|
|
|
1291
1290
|
return window == null || window.addEventListener("resize", s), (i) => {
|
|
1292
1291
|
window == null || window.removeEventListener("resize", s), n(i);
|
|
1293
1292
|
};
|
|
1294
|
-
},
|
|
1293
|
+
}, Pr = {
|
|
1295
1294
|
element: xt,
|
|
1296
|
-
window:
|
|
1297
|
-
},
|
|
1295
|
+
window: Ft
|
|
1296
|
+
}, Wt = (t, e) => (r) => {
|
|
1298
1297
|
const n = r.element, s = n.style.getPropertyValue(t);
|
|
1299
1298
|
return n.style.setProperty(t, e), (i) => {
|
|
1300
1299
|
i && n.style.setProperty(t, s);
|
|
@@ -1304,21 +1303,21 @@ const xt = (t) => (e) => {
|
|
|
1304
1303
|
return e.on((i) => n.style.setProperty(t, i)), (i) => {
|
|
1305
1304
|
i && n.style.setProperty(t, s);
|
|
1306
1305
|
};
|
|
1307
|
-
},
|
|
1306
|
+
}, Dr = new Proxy(
|
|
1308
1307
|
{},
|
|
1309
1308
|
{
|
|
1310
|
-
get: (t, e) => (r) =>
|
|
1309
|
+
get: (t, e) => (r) => h.is(r) ? zt(e, r) : Wt(e, r)
|
|
1311
1310
|
}
|
|
1312
1311
|
);
|
|
1313
1312
|
export {
|
|
1314
|
-
|
|
1315
|
-
|
|
1313
|
+
dr as Async,
|
|
1314
|
+
hr as AutoFocus,
|
|
1316
1315
|
pr as AutoSelect,
|
|
1317
1316
|
D as Computed,
|
|
1318
1317
|
gr as Conjunction,
|
|
1319
1318
|
wr as Ctx,
|
|
1320
1319
|
v as DOMContext,
|
|
1321
|
-
|
|
1320
|
+
Sr as DOMEl,
|
|
1322
1321
|
Ne as El,
|
|
1323
1322
|
$e as ElNS,
|
|
1324
1323
|
w as Empty,
|
|
@@ -1326,51 +1325,51 @@ export {
|
|
|
1326
1325
|
Nt as ForEach,
|
|
1327
1326
|
g as Fragment,
|
|
1328
1327
|
Ar as HTMLTitle,
|
|
1329
|
-
|
|
1330
|
-
|
|
1328
|
+
br as HiddenWhenEmpty,
|
|
1329
|
+
Ot as InViewport,
|
|
1331
1330
|
_r as MapSignal,
|
|
1332
|
-
|
|
1333
|
-
|
|
1331
|
+
de as MemoryStore,
|
|
1332
|
+
Tr as NotEmpty,
|
|
1334
1333
|
Et as OnChecked,
|
|
1335
1334
|
$ as OnDispose,
|
|
1336
1335
|
Lt as OnMount,
|
|
1337
1336
|
$t as Portal,
|
|
1338
|
-
|
|
1337
|
+
ke as Position,
|
|
1339
1338
|
V as Prop,
|
|
1340
1339
|
lr as Provide,
|
|
1341
1340
|
xe as Repeat,
|
|
1342
|
-
|
|
1343
|
-
|
|
1341
|
+
h as Signal,
|
|
1342
|
+
Re as Task,
|
|
1344
1343
|
Gt as Text,
|
|
1345
1344
|
yr as Unless,
|
|
1346
|
-
|
|
1345
|
+
ar as Use,
|
|
1347
1346
|
vt as UseProvider,
|
|
1348
|
-
|
|
1347
|
+
ur as UseProviders,
|
|
1349
1348
|
B as When,
|
|
1350
1349
|
Er as WhenInViewport,
|
|
1351
1350
|
yt as WithProvider,
|
|
1352
1351
|
cr as WithProviders,
|
|
1353
|
-
|
|
1352
|
+
Ke as animate,
|
|
1354
1353
|
jt as animateOne,
|
|
1355
1354
|
fr as appearance,
|
|
1356
1355
|
oe as appearanceMarker,
|
|
1357
1356
|
Bt as applyAnimatable,
|
|
1358
|
-
|
|
1359
|
-
|
|
1357
|
+
O as applyAnimatableProp,
|
|
1358
|
+
Ut as applyInterpolatedAnimatable,
|
|
1360
1359
|
et as applyInterpolatedAnimatableProp,
|
|
1361
1360
|
Qt as aria,
|
|
1362
1361
|
P as attr,
|
|
1363
1362
|
mr as bind,
|
|
1364
1363
|
f as childToMountable,
|
|
1365
|
-
|
|
1364
|
+
bt as clearSSR,
|
|
1366
1365
|
Be as colorChannelsToString,
|
|
1367
|
-
|
|
1368
|
-
|
|
1366
|
+
U as computed,
|
|
1367
|
+
kt as computedRecord,
|
|
1369
1368
|
Xe as dateInterpolate,
|
|
1370
1369
|
qt as effect,
|
|
1371
1370
|
Y as emit,
|
|
1372
1371
|
Ye as endInterpolate,
|
|
1373
|
-
|
|
1372
|
+
Kt as getComputedAnimatable,
|
|
1374
1373
|
Ge as getComputedAnimatableProp,
|
|
1375
1374
|
ot as getSelfOrParentElement,
|
|
1376
1375
|
je as guessInterpolate,
|
|
@@ -1378,7 +1377,7 @@ export {
|
|
|
1378
1377
|
rr as html,
|
|
1379
1378
|
nr as input,
|
|
1380
1379
|
Je as interpolateColor,
|
|
1381
|
-
|
|
1380
|
+
Ht as interpolateShadow,
|
|
1382
1381
|
ye as isElement,
|
|
1383
1382
|
Ae as makeGetter,
|
|
1384
1383
|
At as makeProviderMark,
|
|
@@ -1392,10 +1391,10 @@ export {
|
|
|
1392
1391
|
A as prop,
|
|
1393
1392
|
Xt as propOfLocalStorage,
|
|
1394
1393
|
Yt as propOfSessionStorage,
|
|
1395
|
-
|
|
1396
|
-
|
|
1394
|
+
he as propOfStorage,
|
|
1395
|
+
S as removeDOMNode,
|
|
1397
1396
|
vr as render,
|
|
1398
|
-
|
|
1397
|
+
Fe as renderWithContext,
|
|
1399
1398
|
it as setAttribute,
|
|
1400
1399
|
tt as setBooleanProperty,
|
|
1401
1400
|
nt as setDateProperty,
|
|
@@ -1403,12 +1402,12 @@ export {
|
|
|
1403
1402
|
st as setStringProperty,
|
|
1404
1403
|
Zt as signal,
|
|
1405
1404
|
Me as signalText,
|
|
1406
|
-
|
|
1407
|
-
|
|
1405
|
+
Pr as size,
|
|
1406
|
+
y as ssr,
|
|
1408
1407
|
or as startSSR,
|
|
1409
1408
|
Ce as staticText,
|
|
1410
1409
|
Ze as stringInterpolate,
|
|
1411
|
-
|
|
1410
|
+
Dr as style,
|
|
1412
1411
|
sr as svg,
|
|
1413
1412
|
er as svgAttr
|
|
1414
1413
|
};
|