okno 1.0.0-beta.26 → 1.0.0-beta.28
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/dist/editor/index.js +637 -591
- package/package.json +1 -1
package/dist/editor/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { untrack as Ue, getContext as Gt, onMount as Sr, tick as Vr, hasContext as r5, setContext as
|
|
1
|
+
import { untrack as Ue, getContext as Gt, onMount as Sr, tick as Vr, hasContext as r5, setContext as ai, getAllContexts as n5, mount as Ws, unmount as o5, onDestroy as i5 } from "svelte";
|
|
2
2
|
import "svelte/internal/disclose-version";
|
|
3
3
|
import "svelte/internal/flags/async";
|
|
4
4
|
import * as e from "svelte/internal/client";
|
|
@@ -40,7 +40,7 @@ function f5() {
|
|
|
40
40
|
return o;
|
|
41
41
|
}
|
|
42
42
|
const Ii = [], p5 = 1e3;
|
|
43
|
-
function
|
|
43
|
+
function _s(o, t, r) {
|
|
44
44
|
const n = r.map((i) => {
|
|
45
45
|
if (typeof i == "string") return i;
|
|
46
46
|
if (i instanceof Error) return `${i.name}: ${i.message}
|
|
@@ -56,16 +56,16 @@ ${i.stack}`;
|
|
|
56
56
|
function Mr(o) {
|
|
57
57
|
return {
|
|
58
58
|
info: (...t) => {
|
|
59
|
-
|
|
59
|
+
_s(o, "info", t);
|
|
60
60
|
},
|
|
61
61
|
error: (...t) => {
|
|
62
|
-
|
|
62
|
+
_s(o, "error", t);
|
|
63
63
|
},
|
|
64
64
|
warn: (...t) => {
|
|
65
|
-
|
|
65
|
+
_s(o, "warn", t);
|
|
66
66
|
},
|
|
67
67
|
ok: (...t) => {
|
|
68
|
-
|
|
68
|
+
_s(o, "ok", t);
|
|
69
69
|
},
|
|
70
70
|
table: (t, r) => {
|
|
71
71
|
console.table(t, r);
|
|
@@ -230,7 +230,7 @@ class b5 extends Ot {
|
|
|
230
230
|
this.user = null, this.msg = { type: "info", text: "", visible: !1 }, this.emit("auth:logout");
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
|
-
const
|
|
233
|
+
const Ls = Mr("bus");
|
|
234
234
|
class k5 extends Ot {
|
|
235
235
|
handlers = /* @__PURE__ */ new Map();
|
|
236
236
|
on(t, r) {
|
|
@@ -241,15 +241,15 @@ class k5 extends Ot {
|
|
|
241
241
|
emit(t, ...r) {
|
|
242
242
|
const n = this.handlers.get(t);
|
|
243
243
|
if (!n || n.size === 0) {
|
|
244
|
-
!t.startsWith("hover:") && !t.startsWith("keys:") &&
|
|
244
|
+
!t.startsWith("hover:") && !t.startsWith("keys:") && Ls.warn(`No listeners for "${t}"`);
|
|
245
245
|
return;
|
|
246
246
|
}
|
|
247
247
|
const i = r[0];
|
|
248
|
-
["keys:pressed"].includes(t) ||
|
|
248
|
+
["keys:pressed"].includes(t) || Ls.info(`${t}`, i), n.forEach((s) => {
|
|
249
249
|
try {
|
|
250
250
|
s(i);
|
|
251
251
|
} catch (a) {
|
|
252
|
-
|
|
252
|
+
Ls.error(`Error in handler for "${t}":`, a);
|
|
253
253
|
}
|
|
254
254
|
});
|
|
255
255
|
}
|
|
@@ -257,11 +257,11 @@ class k5 extends Ot {
|
|
|
257
257
|
return (this.handlers.get(t)?.size ?? 0) > 0;
|
|
258
258
|
}
|
|
259
259
|
debug() {
|
|
260
|
-
|
|
260
|
+
Ls.info("Registered events:", Array.from(this.handlers.entries()).map(([t, r]) => `${t}: ${r.size}`));
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
const y5 = Mr("session"), j1 = "okno-github-token", $a = "okno-github-refresh", Js = "okno-github-expires", x5 = 300 * 1e3;
|
|
264
|
-
function
|
|
264
|
+
function Hi() {
|
|
265
265
|
try {
|
|
266
266
|
return localStorage.getItem(j1);
|
|
267
267
|
} catch {
|
|
@@ -280,9 +280,9 @@ function C5() {
|
|
|
280
280
|
const t = Number(o);
|
|
281
281
|
return Number.isFinite(t) ? Date.now() > t - x5 : !1;
|
|
282
282
|
}
|
|
283
|
-
let
|
|
283
|
+
let bi = null;
|
|
284
284
|
function Xl() {
|
|
285
|
-
return
|
|
285
|
+
return bi || (bi = (async () => {
|
|
286
286
|
const o = localStorage.getItem($a);
|
|
287
287
|
if (!o || !__OKNO_API_URL__) return !1;
|
|
288
288
|
try {
|
|
@@ -298,11 +298,11 @@ function Xl() {
|
|
|
298
298
|
} catch {
|
|
299
299
|
return !1;
|
|
300
300
|
} finally {
|
|
301
|
-
|
|
301
|
+
bi = null;
|
|
302
302
|
}
|
|
303
|
-
})(),
|
|
303
|
+
})(), bi);
|
|
304
304
|
}
|
|
305
|
-
const Wu = typeof window < "u" ? window.location.origin : "", hl = `okno-current-repo:${Wu}`, xd = "okno-github-token", Cd = 300 * 1e3,
|
|
305
|
+
const Wu = typeof window < "u" ? window.location.origin : "", hl = `okno-current-repo:${Wu}`, xd = "okno-github-token", Cd = 300 * 1e3, Ss = `okno-repo-token:${Wu}`;
|
|
306
306
|
if (typeof window < "u")
|
|
307
307
|
try {
|
|
308
308
|
localStorage.removeItem("okno-current-repo"), sessionStorage.removeItem("okno-repo-token");
|
|
@@ -438,7 +438,7 @@ let _5 = class extends Ot {
|
|
|
438
438
|
setCurrentRepo(t) {
|
|
439
439
|
this.currentRepo = t, this.projectId = null, this.repoToken = null, this.repoTokenInflight = null;
|
|
440
440
|
try {
|
|
441
|
-
!this.isDev && t ? localStorage.setItem(hl, JSON.stringify(t)) : localStorage.removeItem(hl), sessionStorage.removeItem(
|
|
441
|
+
!this.isDev && t ? localStorage.setItem(hl, JSON.stringify(t)) : localStorage.removeItem(hl), sessionStorage.removeItem(Ss);
|
|
442
442
|
} catch {
|
|
443
443
|
}
|
|
444
444
|
this.emit("project:repo-changed", { repo: t });
|
|
@@ -493,7 +493,7 @@ let _5 = class extends Ot {
|
|
|
493
493
|
* switch within the same tab session. */
|
|
494
494
|
restoreTokenFromSession(t) {
|
|
495
495
|
try {
|
|
496
|
-
const r = sessionStorage.getItem(
|
|
496
|
+
const r = sessionStorage.getItem(Ss);
|
|
497
497
|
if (!r) return !1;
|
|
498
498
|
const n = JSON.parse(r);
|
|
499
499
|
return n.repoKey !== t || Date.now() > n.expiresAt - Cd ? !1 : (this.repoToken = n, !0);
|
|
@@ -504,7 +504,7 @@ let _5 = class extends Ot {
|
|
|
504
504
|
persistTokenToSession() {
|
|
505
505
|
if (this.repoToken)
|
|
506
506
|
try {
|
|
507
|
-
sessionStorage.setItem(
|
|
507
|
+
sessionStorage.setItem(Ss, JSON.stringify(this.repoToken));
|
|
508
508
|
} catch {
|
|
509
509
|
}
|
|
510
510
|
}
|
|
@@ -516,7 +516,7 @@ let _5 = class extends Ot {
|
|
|
516
516
|
invalidateRepoToken() {
|
|
517
517
|
this.repoToken = null, this.repoTokenInflight = null;
|
|
518
518
|
try {
|
|
519
|
-
sessionStorage.removeItem(
|
|
519
|
+
sessionStorage.removeItem(Ss);
|
|
520
520
|
} catch {
|
|
521
521
|
}
|
|
522
522
|
}
|
|
@@ -706,7 +706,7 @@ class P5 extends Ot {
|
|
|
706
706
|
return !!this.modules.auth.user || this.modules.project.demo;
|
|
707
707
|
}
|
|
708
708
|
start() {
|
|
709
|
-
this.viewport = { w: window.innerWidth, h: window.innerHeight }, !
|
|
709
|
+
this.viewport = { w: window.innerWidth, h: window.innerHeight }, !Hi() && !this.modules.project.demo && (this.opened = !1), this.modules.keys.bind("e", () => {
|
|
710
710
|
if (this.authed && !this.modules.keys.hasFocus()) {
|
|
711
711
|
if (!this.opened) {
|
|
712
712
|
this.open();
|
|
@@ -756,7 +756,7 @@ class O5 extends Ot {
|
|
|
756
756
|
this.error = t, this.emit("status:error", { error: t });
|
|
757
757
|
}
|
|
758
758
|
}
|
|
759
|
-
function
|
|
759
|
+
function Ji(o) {
|
|
760
760
|
const t = o.currentRepo;
|
|
761
761
|
if (!t) throw new Error("No current repo selected");
|
|
762
762
|
return `https://api.github.com/repos/${t.owner}/${t.repo}`;
|
|
@@ -773,7 +773,7 @@ async function _d(o, t = "application/vnd.github+json") {
|
|
|
773
773
|
"X-GitHub-Api-Version": "2022-11-28"
|
|
774
774
|
};
|
|
775
775
|
}
|
|
776
|
-
async function
|
|
776
|
+
async function Qi(o, t, r) {
|
|
777
777
|
const n = await _d(o, r), i = await fetch(t, { headers: n, cache: "no-store" });
|
|
778
778
|
if (i.status !== 401) return i;
|
|
779
779
|
o.invalidateRepoToken();
|
|
@@ -786,18 +786,18 @@ function T5(o) {
|
|
|
786
786
|
return new TextDecoder("utf-8").decode(r);
|
|
787
787
|
}
|
|
788
788
|
async function ja(o) {
|
|
789
|
-
const t = `${
|
|
789
|
+
const t = `${Ji(o)}/git/trees/${E5(o)}?recursive=1`, r = await Qi(o, t, "application/vnd.github+json");
|
|
790
790
|
if (!r.ok) throw new Error(`tree ${r.status}`);
|
|
791
791
|
return r.json();
|
|
792
792
|
}
|
|
793
793
|
async function R1(o, t) {
|
|
794
|
-
const r = `${
|
|
794
|
+
const r = `${Ji(o)}/git/blobs/${t}`, n = await Qi(o, r, "application/vnd.github+json");
|
|
795
795
|
if (!n.ok) throw new Error(`blob ${t} ${n.status}`);
|
|
796
796
|
const i = await n.json();
|
|
797
797
|
return i.encoding === "base64" ? T5(i.content) : i.content;
|
|
798
798
|
}
|
|
799
799
|
async function Ld(o, t) {
|
|
800
|
-
const r = `${
|
|
800
|
+
const r = `${Ji(o)}/git/blobs/${t}`, n = await Qi(o, r, "application/vnd.github.raw");
|
|
801
801
|
if (!n.ok) throw new Error(`blob ${t} ${n.status}`);
|
|
802
802
|
return n.blob();
|
|
803
803
|
}
|
|
@@ -805,12 +805,12 @@ async function $i(o, t) {
|
|
|
805
805
|
return (await ja(o)).tree.find((n) => n.type === "blob" && n.path === t)?.sha;
|
|
806
806
|
}
|
|
807
807
|
async function A5(o) {
|
|
808
|
-
const t = `${
|
|
808
|
+
const t = `${Ji(o)}/branches?per_page=100`, r = await Qi(o, t, "application/vnd.github+json");
|
|
809
809
|
if (!r.ok) throw new Error(`branches ${r.status}`);
|
|
810
810
|
return await r.json();
|
|
811
811
|
}
|
|
812
812
|
async function I5(o, t, r) {
|
|
813
|
-
const n = `${
|
|
813
|
+
const n = `${Ji(o)}/compare/${encodeURIComponent(t)}...${encodeURIComponent(r)}`, i = await Qi(o, n, "application/vnd.github+json");
|
|
814
814
|
if (!i.ok) throw new Error(`compare ${i.status}`);
|
|
815
815
|
const s = await i.json();
|
|
816
816
|
return {
|
|
@@ -994,7 +994,7 @@ class R5 extends Ot {
|
|
|
994
994
|
}
|
|
995
995
|
}
|
|
996
996
|
const ct = (o) => JSON.parse(JSON.stringify(o));
|
|
997
|
-
function
|
|
997
|
+
function Bo(o) {
|
|
998
998
|
return o.normalize("NFD").replace(/[̀-ͯ]/g, "").toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "");
|
|
999
999
|
}
|
|
1000
1000
|
function Ir(o) {
|
|
@@ -1014,7 +1014,7 @@ function z5(o, t) {
|
|
|
1014
1014
|
function Zu(o, t) {
|
|
1015
1015
|
return o === "" || o == null ? "empty" : JSON.stringify(o) !== JSON.stringify(t) ? "modified" : "clean";
|
|
1016
1016
|
}
|
|
1017
|
-
function
|
|
1017
|
+
function es(o, t, r = {}) {
|
|
1018
1018
|
if (!o?.fields) return [];
|
|
1019
1019
|
const n = [], i = (s, a, l, c, u) => ({
|
|
1020
1020
|
kind: "field",
|
|
@@ -1036,7 +1036,7 @@ function Qi(o, t, r = {}) {
|
|
|
1036
1036
|
return n;
|
|
1037
1037
|
}
|
|
1038
1038
|
function Sd(o, t, r = {}) {
|
|
1039
|
-
return
|
|
1039
|
+
return es(o, t, r).filter((n) => n.kind === "field").map((n) => n.item);
|
|
1040
1040
|
}
|
|
1041
1041
|
function z1(o, t) {
|
|
1042
1042
|
const r = t?.draft ?? t?.data ?? {}, n = ct(r);
|
|
@@ -1051,7 +1051,7 @@ function z1(o, t) {
|
|
|
1051
1051
|
i in n || (n[i] = "");
|
|
1052
1052
|
return n;
|
|
1053
1053
|
}
|
|
1054
|
-
function
|
|
1054
|
+
function Ms(o, t) {
|
|
1055
1055
|
const r = new Map(t.map((s) => [s.slug, s.name])), n = /* @__PURE__ */ new Set(), i = [];
|
|
1056
1056
|
for (const s of o ?? []) {
|
|
1057
1057
|
if (typeof s == "string") {
|
|
@@ -1355,7 +1355,7 @@ let N5 = class extends Ot {
|
|
|
1355
1355
|
addModal: "new-page",
|
|
1356
1356
|
kind: "pages",
|
|
1357
1357
|
items: r,
|
|
1358
|
-
nodes:
|
|
1358
|
+
nodes: Ms(t?.pages, r)
|
|
1359
1359
|
},
|
|
1360
1360
|
{
|
|
1361
1361
|
id: "group-collections",
|
|
@@ -1364,7 +1364,7 @@ let N5 = class extends Ot {
|
|
|
1364
1364
|
addModal: "new-collection",
|
|
1365
1365
|
kind: "collections",
|
|
1366
1366
|
items: n,
|
|
1367
|
-
nodes:
|
|
1367
|
+
nodes: Ms(t?.collections, n)
|
|
1368
1368
|
},
|
|
1369
1369
|
{
|
|
1370
1370
|
id: "group-globals",
|
|
@@ -1373,7 +1373,7 @@ let N5 = class extends Ot {
|
|
|
1373
1373
|
addModal: "new-global",
|
|
1374
1374
|
kind: "globals",
|
|
1375
1375
|
items: i,
|
|
1376
|
-
nodes:
|
|
1376
|
+
nodes: Ms(t?.globals, i)
|
|
1377
1377
|
},
|
|
1378
1378
|
{
|
|
1379
1379
|
id: "group-blocks",
|
|
@@ -1382,7 +1382,7 @@ let N5 = class extends Ot {
|
|
|
1382
1382
|
addModal: "new-block",
|
|
1383
1383
|
kind: "blocks",
|
|
1384
1384
|
items: s,
|
|
1385
|
-
nodes:
|
|
1385
|
+
nodes: Ms(t?.blocks, s)
|
|
1386
1386
|
}
|
|
1387
1387
|
];
|
|
1388
1388
|
});
|
|
@@ -1659,7 +1659,7 @@ function Ra(o) {
|
|
|
1659
1659
|
return n ? { token: n[1] } : { literal: r };
|
|
1660
1660
|
});
|
|
1661
1661
|
}
|
|
1662
|
-
function
|
|
1662
|
+
function Ds(o) {
|
|
1663
1663
|
return Ra(o).filter((t) => t.token).map((t) => t.token);
|
|
1664
1664
|
}
|
|
1665
1665
|
function Ku(o) {
|
|
@@ -1953,24 +1953,59 @@ let Z5 = class extends Ot {
|
|
|
1953
1953
|
}
|
|
1954
1954
|
/**
|
|
1955
1955
|
* Compare every rendered [data-okno] element to the editor's freshly-loaded
|
|
1956
|
-
* content
|
|
1957
|
-
*
|
|
1958
|
-
*
|
|
1956
|
+
* content and patch the DOM where the page is stale. The page is server-rendered
|
|
1957
|
+
* from the DEPLOYED (production) content, but the editor edits the `okno` working
|
|
1958
|
+
* branch — so unpublished edits (a swapped image, retitled heading, changed link)
|
|
1959
|
+
* would otherwise stay invisible on the page until publish + redeploy. This makes
|
|
1960
|
+
* the page reflect what you're editing; the Publish button (lit while the working
|
|
1961
|
+
* branch is ahead) is the "not live yet" indicator.
|
|
1959
1962
|
*
|
|
1960
|
-
*
|
|
1961
|
-
*
|
|
1962
|
-
* `.onedit()` subscriptions.
|
|
1963
|
+
* Handles text leaves, media (`{src}` → img/video/source `src`) and link
|
|
1964
|
+
* (`{url,text}` → `<a>` href + label). Generic group objects are left alone (the
|
|
1965
|
+
* user's site code owns those via the proxy's `.onedit()` subscriptions). All
|
|
1966
|
+
* swaps apply inside one View Transition for a crossfade (instant where unsupported).
|
|
1963
1967
|
*/
|
|
1964
1968
|
patchStaleDom() {
|
|
1965
|
-
const t = this.modules.content;
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
if (
|
|
1970
|
-
|
|
1971
|
-
|
|
1969
|
+
const t = this.modules.content, r = [];
|
|
1970
|
+
for (const [s, a] of this.elements) {
|
|
1971
|
+
const l = U5(t, s);
|
|
1972
|
+
if (l == null) continue;
|
|
1973
|
+
if (typeof l == "object") {
|
|
1974
|
+
const u = this.mediaOrLinkPatch(a, s, l);
|
|
1975
|
+
u && r.push(u);
|
|
1976
|
+
continue;
|
|
1977
|
+
}
|
|
1978
|
+
const c = String(l);
|
|
1979
|
+
(a.textContent ?? "").trim() !== c.trim() && r.push(() => {
|
|
1980
|
+
document.dispatchEvent(new CustomEvent("okno:change", { detail: { path: s, value: l } })), a.children.length === 0 && (a.textContent = c);
|
|
1981
|
+
});
|
|
1982
|
+
}
|
|
1983
|
+
if (!r.length) return;
|
|
1984
|
+
const n = () => r.forEach((s) => s()), i = document.startViewTransition;
|
|
1985
|
+
typeof i == "function" ? i.call(document, n) : n(), jo.info("Patched", r.length, "stale DOM nodes with fresh content");
|
|
1986
|
+
}
|
|
1987
|
+
/** Build a patch closure for a media (`{src}`) or link (`{url,text}`) field whose
|
|
1988
|
+
* rendered element is stale, or null when it already matches. Media patches the
|
|
1989
|
+
* media element's `src` (+ `alt` for imgs); link patches the `<a>` href and, when
|
|
1990
|
+
* the anchor owns its label, its text. Also fires `okno:change` so any user
|
|
1991
|
+
* `.onedit()` hook stays in charge. */
|
|
1992
|
+
mediaOrLinkPatch(t, r, n) {
|
|
1993
|
+
if (typeof n.src == "string") {
|
|
1994
|
+
const i = t.tagName.toLowerCase();
|
|
1995
|
+
if (i !== "img" && i !== "video" && i !== "source") return null;
|
|
1996
|
+
const s = n.src;
|
|
1997
|
+
return t.getAttribute("src") === s ? null : () => {
|
|
1998
|
+
document.dispatchEvent(new CustomEvent("okno:change", { detail: { path: r, value: n } })), t.setAttribute("src", s), i === "img" && typeof n.alt == "string" && t.setAttribute("alt", n.alt);
|
|
1999
|
+
};
|
|
2000
|
+
}
|
|
2001
|
+
if (typeof n.url == "string" && "text" in n) {
|
|
2002
|
+
if (t.tagName.toLowerCase() !== "a") return null;
|
|
2003
|
+
const i = n.url, s = typeof n.text == "string" ? n.text : "", a = t.getAttribute("href") !== i, l = t.children.length === 0 && (t.textContent ?? "").trim() !== s.trim();
|
|
2004
|
+
return !a && !l ? null : () => {
|
|
2005
|
+
document.dispatchEvent(new CustomEvent("okno:change", { detail: { path: r, value: n } })), a && t.setAttribute("href", i), l && (t.textContent = s);
|
|
2006
|
+
};
|
|
1972
2007
|
}
|
|
1973
|
-
|
|
2008
|
+
return null;
|
|
1974
2009
|
}
|
|
1975
2010
|
/** Idempotent — `scan()` is called on every content:ready, so binding new
|
|
1976
2011
|
* closures each time would stack listeners and fire events N times. */
|
|
@@ -3084,7 +3119,7 @@ function a0(o) {
|
|
|
3084
3119
|
});
|
|
3085
3120
|
return { popup: s, closed: a };
|
|
3086
3121
|
}
|
|
3087
|
-
const
|
|
3122
|
+
const ji = 10, e1 = 200, Qu = "billing-consent", eh = "billing-month-capped", th = "billing-year-capped";
|
|
3088
3123
|
let l0 = class extends Ot {
|
|
3089
3124
|
#e = e.state(!1);
|
|
3090
3125
|
get locked() {
|
|
@@ -3287,7 +3322,7 @@ let l0 = class extends Ot {
|
|
|
3287
3322
|
async awaitHostedCheckout(t) {
|
|
3288
3323
|
const { closed: r } = a0(t);
|
|
3289
3324
|
let n = !0;
|
|
3290
|
-
return r.then(() => n = !1), this.awaitDayLanded({ timeoutMs: 4 * 6e4, done: () => !n, graceMs:
|
|
3325
|
+
return r.then(() => n = !1), this.awaitDayLanded({ timeoutMs: 4 * 6e4, done: () => !n, graceMs: 8e3 });
|
|
3291
3326
|
}
|
|
3292
3327
|
/** Poll /api/auth/me until the new paid day shows up (spend rises, today goes
|
|
3293
3328
|
* active, or a card appears), then adopt that authoritative state. Returns
|
|
@@ -3929,7 +3964,7 @@ class k0 {
|
|
|
3929
3964
|
this.cleanupEffect = e.effect_root(() => {
|
|
3930
3965
|
e.user_effect(() => {
|
|
3931
3966
|
localStorage.setItem(rh, this.mode), this.apply();
|
|
3932
|
-
}), e.user_effect(() =>
|
|
3967
|
+
}), e.user_effect(() => Ps(nh, this.hueOverride === null ? null : String(this.hueOverride))), e.user_effect(() => Ps(Ad, vl(this.reduceTransparencyOverride))), e.user_effect(() => Ps(Id, vl(this.compactStructureOverride))), e.user_effect(() => Ps($d, vl(this.minimizeOnClickAwayOverride))), e.user_effect(() => {
|
|
3933
3968
|
this.hue, this.applyHue();
|
|
3934
3969
|
}), e.user_effect(() => {
|
|
3935
3970
|
this.reduceTransparency, this.applyRT();
|
|
@@ -3977,7 +4012,7 @@ class k0 {
|
|
|
3977
4012
|
function vl(o) {
|
|
3978
4013
|
return o === null ? null : o ? "1" : "0";
|
|
3979
4014
|
}
|
|
3980
|
-
function
|
|
4015
|
+
function Ps(o, t) {
|
|
3981
4016
|
typeof localStorage > "u" || (t === null ? localStorage.removeItem(o) : localStorage.setItem(o, t));
|
|
3982
4017
|
}
|
|
3983
4018
|
let y0 = class extends Ot {
|
|
@@ -5148,14 +5183,14 @@ function mt(o, t) {
|
|
|
5148
5183
|
function vn(we) {
|
|
5149
5184
|
return Math.max(f().w, Math.min(t.maxSize?.w ?? 1 / 0, we));
|
|
5150
5185
|
}
|
|
5151
|
-
function
|
|
5186
|
+
function xs(we) {
|
|
5152
5187
|
return Math.max(f().h, Math.min(t.maxSize?.h ?? 1 / 0, we));
|
|
5153
5188
|
}
|
|
5154
5189
|
function jr(we) {
|
|
5155
5190
|
if (!e.get(Ie)) return;
|
|
5156
5191
|
const Ne = we.clientX - e.get(Ie).x, bt = we.clientY - e.get(Ie).y, { dir: Ft, w: gt, h: vt, px: ar, py: ro } = e.get(Ie);
|
|
5157
|
-
let Yr = gt, Dn = vt,
|
|
5158
|
-
Ft.includes("e") && (Yr = vn(gt + Ne)), Ft.includes("s") && (Dn =
|
|
5192
|
+
let Yr = gt, Dn = vt, Cs = ar, ws = ro;
|
|
5193
|
+
Ft.includes("e") && (Yr = vn(gt + Ne)), Ft.includes("s") && (Dn = xs(vt + bt)), Ft.includes("w") && (Yr = vn(gt - Ne), Cs = ar + (gt - Yr)), Ft.includes("n") && (Dn = xs(vt - bt), ws = Math.max(0, ro + (vt - Dn))), Me.current = { w: Yr, h: Dn }, ye.current = { x: Cs, y: ws };
|
|
5159
5194
|
}
|
|
5160
5195
|
function mr() {
|
|
5161
5196
|
e.set(Ie, null), document.removeEventListener("pointermove", jr), document.removeEventListener("pointerup", mr), te && ce();
|
|
@@ -5237,14 +5272,14 @@ function mt(o, t) {
|
|
|
5237
5272
|
L() && He(Io);
|
|
5238
5273
|
});
|
|
5239
5274
|
}
|
|
5240
|
-
var
|
|
5275
|
+
var vi = e.sibling(Or, 2);
|
|
5241
5276
|
{
|
|
5242
|
-
var
|
|
5277
|
+
var mi = (He) => {
|
|
5243
5278
|
var Tt = q3(), Er = e.child(Tt, !0);
|
|
5244
5279
|
e.reset(Tt), e.template_effect(() => e.set_text(Er, t.description)), e.append(He, Tt);
|
|
5245
5280
|
};
|
|
5246
|
-
e.if(
|
|
5247
|
-
t.description && He(
|
|
5281
|
+
e.if(vi, (He) => {
|
|
5282
|
+
t.description && He(mi);
|
|
5248
5283
|
});
|
|
5249
5284
|
}
|
|
5250
5285
|
e.reset(Kt), e.template_effect(() => e.set_class(Kt, 1, `flex flex-col items-center gap-4 p-4 text-center select-none ${t.children ? "mb-16" : ""}`)), e.append(Ht, Kt);
|
|
@@ -5266,7 +5301,7 @@ function mt(o, t) {
|
|
|
5266
5301
|
});
|
|
5267
5302
|
}
|
|
5268
5303
|
e.append(xt, Nt);
|
|
5269
|
-
},
|
|
5304
|
+
}, Cs = (xt) => {
|
|
5270
5305
|
var Nt = n4(), nr = e.child(Nt), zr = e.child(nr), Dr = e.child(zr);
|
|
5271
5306
|
{
|
|
5272
5307
|
var Pn = (He) => {
|
|
@@ -5355,9 +5390,9 @@ function mt(o, t) {
|
|
|
5355
5390
|
e.snippet(Or, () => t.banner ?? e.noop);
|
|
5356
5391
|
var Io = e.sibling(Or, 2);
|
|
5357
5392
|
n(Io);
|
|
5358
|
-
var
|
|
5393
|
+
var vi = e.sibling(Io, 2);
|
|
5359
5394
|
{
|
|
5360
|
-
var
|
|
5395
|
+
var mi = (He) => {
|
|
5361
5396
|
var Tt = e.comment(), Er = e.first_child(Tt);
|
|
5362
5397
|
{
|
|
5363
5398
|
var dl = ($o) => {
|
|
@@ -5373,12 +5408,12 @@ function mt(o, t) {
|
|
|
5373
5408
|
}
|
|
5374
5409
|
e.append(He, Tt);
|
|
5375
5410
|
};
|
|
5376
|
-
e.if(
|
|
5377
|
-
t.footer && He(
|
|
5411
|
+
e.if(vi, (He) => {
|
|
5412
|
+
t.footer && He(mi);
|
|
5378
5413
|
});
|
|
5379
5414
|
}
|
|
5380
5415
|
e.reset(Wt), e.reset(Nt), e.template_effect(() => e.set_style(nr, `width: ${ht.current ?? ""}px`)), e.delegated("pointerdown", zr, ze), e.append(xt, Nt);
|
|
5381
|
-
},
|
|
5416
|
+
}, ws = (xt) => {
|
|
5382
5417
|
var Nt = s4(), nr = e.first_child(Nt);
|
|
5383
5418
|
{
|
|
5384
5419
|
let Pr = e.derived(() => e.get(Te) ? Je : void 0), Fr = e.derived(() => w() ? Fe : void 0);
|
|
@@ -5447,7 +5482,7 @@ function mt(o, t) {
|
|
|
5447
5482
|
e.append(xt, Nt);
|
|
5448
5483
|
};
|
|
5449
5484
|
e.if(Yr, (xt) => {
|
|
5450
|
-
B() ? xt(Dn) : t.sidebar ? xt(
|
|
5485
|
+
B() ? xt(Dn) : t.sidebar ? xt(Cs, 1) : xt(ws, -1);
|
|
5451
5486
|
});
|
|
5452
5487
|
}
|
|
5453
5488
|
var Jp = e.sibling(Yr, 2);
|
|
@@ -5455,7 +5490,7 @@ function mt(o, t) {
|
|
|
5455
5490
|
var Qp = e.sibling(vt, 2);
|
|
5456
5491
|
{
|
|
5457
5492
|
var e5 = (xt) => {
|
|
5458
|
-
var Nt = a4(), nr = e.first_child(Nt), zr = e.derived(() => yt("n")), Dr = e.sibling(nr, 2), Pn = e.derived(() => yt("s")), On = e.sibling(Dr, 2), Pr = e.derived(() => yt("w")), Fr = e.sibling(On, 2), no = e.derived(() => yt("e")), Ht = e.sibling(Fr, 2), Kt = e.derived(() => yt("nw")), Wt = e.sibling(Ht, 2), lr = e.derived(() => yt("ne")), Or = e.sibling(Wt, 2), Io = e.derived(() => yt("sw")),
|
|
5493
|
+
var Nt = a4(), nr = e.first_child(Nt), zr = e.derived(() => yt("n")), Dr = e.sibling(nr, 2), Pn = e.derived(() => yt("s")), On = e.sibling(Dr, 2), Pr = e.derived(() => yt("w")), Fr = e.sibling(On, 2), no = e.derived(() => yt("e")), Ht = e.sibling(Fr, 2), Kt = e.derived(() => yt("nw")), Wt = e.sibling(Ht, 2), lr = e.derived(() => yt("ne")), Or = e.sibling(Wt, 2), Io = e.derived(() => yt("sw")), vi = e.sibling(Or, 2), mi = e.derived(() => yt("se"));
|
|
5459
5494
|
e.delegated("pointerdown", nr, function(...He) {
|
|
5460
5495
|
e.get(zr)?.apply(this, He);
|
|
5461
5496
|
}), e.delegated("pointerdown", Dr, function(...He) {
|
|
@@ -5470,8 +5505,8 @@ function mt(o, t) {
|
|
|
5470
5505
|
e.get(lr)?.apply(this, He);
|
|
5471
5506
|
}), e.delegated("pointerdown", Or, function(...He) {
|
|
5472
5507
|
e.get(Io)?.apply(this, He);
|
|
5473
|
-
}), e.delegated("pointerdown",
|
|
5474
|
-
e.get(
|
|
5508
|
+
}), e.delegated("pointerdown", vi, function(...He) {
|
|
5509
|
+
e.get(mi)?.apply(this, He);
|
|
5475
5510
|
}), e.append(xt, Nt);
|
|
5476
5511
|
};
|
|
5477
5512
|
e.if(Qp, (xt) => {
|
|
@@ -5591,7 +5626,7 @@ function f4(o, t) {
|
|
|
5591
5626
|
e.remove_input_defaults(s), e.reset(n), e.bind_value(s, r), e.append(o, n), e.pop();
|
|
5592
5627
|
}
|
|
5593
5628
|
var p4 = e.from_html('<button class="size-24 hover:bg-sky-500/10 flex-center hover:text-sky-500 transition-colors duration-150 cursor-pointer rounded-full superellipse"><!></button>'), g4 = e.from_html('<div class="flex items-center gap-4"><!> <!></div>'), v4 = e.from_html('<header class="flex items-center justify-between px-8 select-none mb-2 text-neutral-500"><p class="text-xs/[110%] text-neutral-400"> </p> <!></header>');
|
|
5594
|
-
function
|
|
5629
|
+
function Zo(o, t) {
|
|
5595
5630
|
var r = v4(), n = e.child(r), i = e.child(n, !0);
|
|
5596
5631
|
e.reset(n);
|
|
5597
5632
|
var s = e.sibling(n, 2);
|
|
@@ -5633,13 +5668,13 @@ function na(o, t) {
|
|
|
5633
5668
|
var r = m4();
|
|
5634
5669
|
e.template_effect(() => e.set_class(r, 1, e.clsx(["bg-white/10 rounded-md animate-pulse", t.class]))), e.append(o, r);
|
|
5635
5670
|
}
|
|
5636
|
-
const
|
|
5671
|
+
const ki = new Cn("okno-folder-collapsed", []), Zd = (o, t) => `${o}:${t}`, Wo = {
|
|
5637
5672
|
isCollapsed(o, t) {
|
|
5638
|
-
return
|
|
5673
|
+
return ki.current.includes(Zd(o, t));
|
|
5639
5674
|
},
|
|
5640
5675
|
toggle(o, t) {
|
|
5641
5676
|
const r = Zd(o, t);
|
|
5642
|
-
|
|
5677
|
+
ki.current = ki.current.includes(r) ? ki.current.filter((n) => n !== r) : [...ki.current, r];
|
|
5643
5678
|
}
|
|
5644
5679
|
};
|
|
5645
5680
|
var b4 = e.from_html('<p class="px-6 text-[14px] text-(--fg-muted)">No matches</p>'), Ud = e.from_html('<div class="flex flex-col gap-2"><!> <!></div>'), k4 = e.from_html('<div class="flex flex-col gap-2"><!> <!> <!></div>'), y4 = e.from_html('<div class="flex flex-col gap-2 pl-24"></div>'), x4 = e.from_html("<!> <!>", 1), C4 = e.from_html('<div><div class="flex flex-col gap-2"><!> <!></div> <!></div>');
|
|
@@ -5698,7 +5733,7 @@ function Sh(o, t) {
|
|
|
5698
5733
|
e.each(L, 17, () => e.get(h), e.index, (T, S) => {
|
|
5699
5734
|
let R = () => e.get(S).group, $ = () => e.get(S).items;
|
|
5700
5735
|
var F = Ud(), z = e.child(F);
|
|
5701
|
-
|
|
5736
|
+
Zo(z, {
|
|
5702
5737
|
get title() {
|
|
5703
5738
|
return R().title;
|
|
5704
5739
|
}
|
|
@@ -5738,7 +5773,7 @@ function Sh(o, t) {
|
|
|
5738
5773
|
{
|
|
5739
5774
|
var L = (S) => {
|
|
5740
5775
|
var R = k4(), $ = e.child(R);
|
|
5741
|
-
|
|
5776
|
+
Zo($, {
|
|
5742
5777
|
get title() {
|
|
5743
5778
|
return e.get(O).title;
|
|
5744
5779
|
}
|
|
@@ -5751,7 +5786,7 @@ function Sh(o, t) {
|
|
|
5751
5786
|
var R = Ud(), $ = e.child(R);
|
|
5752
5787
|
{
|
|
5753
5788
|
var F = (A) => {
|
|
5754
|
-
|
|
5789
|
+
Zo(A, {
|
|
5755
5790
|
get title() {
|
|
5756
5791
|
return e.get(O).title;
|
|
5757
5792
|
}
|
|
@@ -5766,7 +5801,7 @@ function Sh(o, t) {
|
|
|
5766
5801
|
var N = e.comment(), H = e.first_child(N);
|
|
5767
5802
|
{
|
|
5768
5803
|
var B = (Z) => {
|
|
5769
|
-
const q = e.derived(() =>
|
|
5804
|
+
const q = e.derived(() => Wo.isCollapsed(e.get(O).kind, e.get(D).id));
|
|
5770
5805
|
var U = x4(), X = e.first_child(U);
|
|
5771
5806
|
bn(X, {
|
|
5772
5807
|
icon: "folder",
|
|
@@ -5774,7 +5809,7 @@ function Sh(o, t) {
|
|
|
5774
5809
|
get label() {
|
|
5775
5810
|
return e.get(D).name;
|
|
5776
5811
|
},
|
|
5777
|
-
onclick: () =>
|
|
5812
|
+
onclick: () => Wo.toggle(e.get(O).kind, e.get(D).id),
|
|
5778
5813
|
trailing: (K) => {
|
|
5779
5814
|
{
|
|
5780
5815
|
let G = e.derived(() => [
|
|
@@ -6008,18 +6043,18 @@ function Xe(o, t) {
|
|
|
6008
6043
|
function O4(o) {
|
|
6009
6044
|
return typeof o == "function";
|
|
6010
6045
|
}
|
|
6011
|
-
function
|
|
6046
|
+
function ts(o) {
|
|
6012
6047
|
return o !== null && typeof o == "object";
|
|
6013
6048
|
}
|
|
6014
6049
|
const E4 = ["string", "number", "bigint", "boolean"];
|
|
6015
6050
|
function o1(o) {
|
|
6016
6051
|
return o == null || E4.includes(typeof o) ? !0 : Array.isArray(o) ? o.every((t) => o1(t)) : typeof o == "object" ? Object.getPrototypeOf(o) === Object.prototype : !1;
|
|
6017
6052
|
}
|
|
6018
|
-
const
|
|
6053
|
+
const Jo = /* @__PURE__ */ Symbol("box"), Na = /* @__PURE__ */ Symbol("is-writable");
|
|
6019
6054
|
function ne(o, t) {
|
|
6020
6055
|
const r = e.derived(o);
|
|
6021
6056
|
return t ? {
|
|
6022
|
-
[
|
|
6057
|
+
[Jo]: !0,
|
|
6023
6058
|
[Na]: !0,
|
|
6024
6059
|
get current() {
|
|
6025
6060
|
return e.get(r);
|
|
@@ -6028,24 +6063,24 @@ function ne(o, t) {
|
|
|
6028
6063
|
t(n);
|
|
6029
6064
|
}
|
|
6030
6065
|
} : {
|
|
6031
|
-
[
|
|
6066
|
+
[Jo]: !0,
|
|
6032
6067
|
get current() {
|
|
6033
6068
|
return o();
|
|
6034
6069
|
}
|
|
6035
6070
|
};
|
|
6036
6071
|
}
|
|
6037
|
-
function
|
|
6038
|
-
return
|
|
6072
|
+
function rs(o) {
|
|
6073
|
+
return ts(o) && Jo in o;
|
|
6039
6074
|
}
|
|
6040
6075
|
function H1(o) {
|
|
6041
|
-
return
|
|
6076
|
+
return rs(o) && Na in o;
|
|
6042
6077
|
}
|
|
6043
6078
|
function Mh(o) {
|
|
6044
|
-
return
|
|
6079
|
+
return rs(o) ? o : O4(o) ? ne(o) : hr(o);
|
|
6045
6080
|
}
|
|
6046
6081
|
function T4(o) {
|
|
6047
6082
|
return Object.entries(o).reduce(
|
|
6048
|
-
(t, [r, n]) =>
|
|
6083
|
+
(t, [r, n]) => rs(n) ? (H1(n) ? Object.defineProperty(t, r, {
|
|
6049
6084
|
get() {
|
|
6050
6085
|
return n.current;
|
|
6051
6086
|
},
|
|
@@ -6063,7 +6098,7 @@ function T4(o) {
|
|
|
6063
6098
|
}
|
|
6064
6099
|
function A4(o) {
|
|
6065
6100
|
return H1(o) ? {
|
|
6066
|
-
[
|
|
6101
|
+
[Jo]: !0,
|
|
6067
6102
|
get current() {
|
|
6068
6103
|
return o.current;
|
|
6069
6104
|
}
|
|
@@ -6072,7 +6107,7 @@ function A4(o) {
|
|
|
6072
6107
|
function hr(o) {
|
|
6073
6108
|
let t = e.state(e.proxy(o));
|
|
6074
6109
|
return {
|
|
6075
|
-
[
|
|
6110
|
+
[Jo]: !0,
|
|
6076
6111
|
[Na]: !0,
|
|
6077
6112
|
get current() {
|
|
6078
6113
|
return e.get(t);
|
|
@@ -6085,7 +6120,7 @@ function hr(o) {
|
|
|
6085
6120
|
function Mo(o) {
|
|
6086
6121
|
let t = e.state(e.proxy(o));
|
|
6087
6122
|
return {
|
|
6088
|
-
[
|
|
6123
|
+
[Jo]: !0,
|
|
6089
6124
|
[Na]: !0,
|
|
6090
6125
|
get current() {
|
|
6091
6126
|
return e.get(t);
|
|
@@ -6099,7 +6134,7 @@ Mo.from = Mh;
|
|
|
6099
6134
|
Mo.with = ne;
|
|
6100
6135
|
Mo.flatten = T4;
|
|
6101
6136
|
Mo.readonly = A4;
|
|
6102
|
-
Mo.isBox =
|
|
6137
|
+
Mo.isBox = rs;
|
|
6103
6138
|
Mo.isWritableBox = H1;
|
|
6104
6139
|
function Dh(...o) {
|
|
6105
6140
|
return function(t) {
|
|
@@ -6266,7 +6301,7 @@ function Ti(o) {
|
|
|
6266
6301
|
}
|
|
6267
6302
|
return Z4(o, r), t;
|
|
6268
6303
|
}
|
|
6269
|
-
function
|
|
6304
|
+
function Uo(...o) {
|
|
6270
6305
|
return (...t) => {
|
|
6271
6306
|
for (const r of o)
|
|
6272
6307
|
typeof r == "function" && r(...t);
|
|
@@ -6300,7 +6335,7 @@ function t8(o) {
|
|
|
6300
6335
|
return Object.keys(o).map((t) => `${e8(t)}: ${o[t]};`).join(`
|
|
6301
6336
|
`);
|
|
6302
6337
|
}
|
|
6303
|
-
function
|
|
6338
|
+
function ns(o = {}) {
|
|
6304
6339
|
return t8(o).replace(`
|
|
6305
6340
|
`, " ");
|
|
6306
6341
|
}
|
|
@@ -6423,7 +6458,7 @@ function Be(...o) {
|
|
|
6423
6458
|
const u = s, d = a;
|
|
6424
6459
|
t[i] = Dh(u, d);
|
|
6425
6460
|
} else if (l && c)
|
|
6426
|
-
t[i] =
|
|
6461
|
+
t[i] = Uo(s, a);
|
|
6427
6462
|
else if (i === "class") {
|
|
6428
6463
|
const u = o1(s), d = o1(a);
|
|
6429
6464
|
u && d ? t[i] = bl(s, a) : u ? t[i] = bl(s) : d && (t[i] = bl(a));
|
|
@@ -6450,7 +6485,7 @@ function Be(...o) {
|
|
|
6450
6485
|
}
|
|
6451
6486
|
}
|
|
6452
6487
|
}
|
|
6453
|
-
return typeof t.style == "object" && (t.style =
|
|
6488
|
+
return typeof t.style == "object" && (t.style = ns(t.style).replaceAll(`
|
|
6454
6489
|
`, " ")), t.hidden === !1 && (t.hidden = void 0, delete t.hidden), t.disabled === !1 && (t.disabled = void 0, delete t.disabled), t;
|
|
6455
6490
|
}
|
|
6456
6491
|
const Eh = {
|
|
@@ -6464,7 +6499,7 @@ const Eh = {
|
|
|
6464
6499
|
whiteSpace: "nowrap",
|
|
6465
6500
|
borderWidth: "0",
|
|
6466
6501
|
transform: "translateX(-100%)"
|
|
6467
|
-
}, i8 =
|
|
6502
|
+
}, i8 = ns(Eh);
|
|
6468
6503
|
function Kr(o) {
|
|
6469
6504
|
e.user_effect(() => () => {
|
|
6470
6505
|
o();
|
|
@@ -6481,16 +6516,16 @@ function xr(o) {
|
|
|
6481
6516
|
}
|
|
6482
6517
|
const a8 = 1, l8 = 9, c8 = 11;
|
|
6483
6518
|
function i1(o) {
|
|
6484
|
-
return
|
|
6519
|
+
return ts(o) && o.nodeType === a8 && typeof o.nodeName == "string";
|
|
6485
6520
|
}
|
|
6486
6521
|
function Th(o) {
|
|
6487
|
-
return
|
|
6522
|
+
return ts(o) && o.nodeType === l8;
|
|
6488
6523
|
}
|
|
6489
6524
|
function d8(o) {
|
|
6490
|
-
return
|
|
6525
|
+
return ts(o) && o.constructor?.name === "VisualViewport";
|
|
6491
6526
|
}
|
|
6492
6527
|
function u8(o) {
|
|
6493
|
-
return
|
|
6528
|
+
return ts(o) && o.nodeType !== void 0;
|
|
6494
6529
|
}
|
|
6495
6530
|
function Ah(o) {
|
|
6496
6531
|
return u8(o) && o.nodeType === c8 && "host" in o;
|
|
@@ -6553,7 +6588,7 @@ class Jn {
|
|
|
6553
6588
|
}
|
|
6554
6589
|
function ut(o, t) {
|
|
6555
6590
|
return {
|
|
6556
|
-
[a5()]: (r) =>
|
|
6591
|
+
[a5()]: (r) => rs(o) ? (o.current = r, Ue(() => t?.(r)), () => {
|
|
6557
6592
|
"isConnected" in r && r.isConnected || (o.current = null, t?.(null));
|
|
6558
6593
|
}) : (o(r), Ue(() => t?.(r)), () => {
|
|
6559
6594
|
"isConnected" in r && r.isConnected || (o(null), t?.(null));
|
|
@@ -6647,7 +6682,7 @@ class vr {
|
|
|
6647
6682
|
* Must be called during component initialisation.
|
|
6648
6683
|
*/
|
|
6649
6684
|
set(t) {
|
|
6650
|
-
return
|
|
6685
|
+
return ai(this.#t, t);
|
|
6651
6686
|
}
|
|
6652
6687
|
}
|
|
6653
6688
|
function m8(o, t) {
|
|
@@ -6750,7 +6785,7 @@ function V1(o) {
|
|
|
6750
6785
|
function lt(o) {
|
|
6751
6786
|
return o ? "" : void 0;
|
|
6752
6787
|
}
|
|
6753
|
-
function
|
|
6788
|
+
function li(o) {
|
|
6754
6789
|
return o ? "open" : "closed";
|
|
6755
6790
|
}
|
|
6756
6791
|
function B1(o) {
|
|
@@ -6770,7 +6805,7 @@ class y8 {
|
|
|
6770
6805
|
return `[${this.getAttr(t, r)}]`;
|
|
6771
6806
|
}
|
|
6772
6807
|
}
|
|
6773
|
-
function
|
|
6808
|
+
function os(o) {
|
|
6774
6809
|
const t = new y8(o);
|
|
6775
6810
|
return {
|
|
6776
6811
|
...t.attrs,
|
|
@@ -6778,7 +6813,7 @@ function ns(o) {
|
|
|
6778
6813
|
getAttr: t.getAttr
|
|
6779
6814
|
};
|
|
6780
6815
|
}
|
|
6781
|
-
const wn = "ArrowDown", un = "ArrowLeft", hn = "ArrowRight", Wn = "ArrowUp", jh = "Backspace", Rh = "End",
|
|
6816
|
+
const wn = "ArrowDown", un = "ArrowLeft", hn = "ArrowRight", Wn = "ArrowUp", jh = "Backspace", Rh = "End", is = "Enter", x8 = "Escape", zh = "Home", C8 = "PageDown", w8 = "PageUp", Do = " ", ss = "Tab", s1 = "a", Fh = "P", a1 = "A", _8 = "p";
|
|
6782
6817
|
function L8(o) {
|
|
6783
6818
|
return window.getComputedStyle(o).getPropertyValue("direction");
|
|
6784
6819
|
}
|
|
@@ -7045,7 +7080,7 @@ function Hh(o, t) {
|
|
|
7045
7080
|
};
|
|
7046
7081
|
}
|
|
7047
7082
|
const N8 = Hh((o) => o.defaultLocale, "en"), H8 = Hh((o) => o.defaultPortalTo, "body");
|
|
7048
|
-
function
|
|
7083
|
+
function ci(o, t) {
|
|
7049
7084
|
e.push(t, !0);
|
|
7050
7085
|
const r = H8(() => t.to), n = n5();
|
|
7051
7086
|
let i = e.derived(s);
|
|
@@ -7123,7 +7158,7 @@ function V8(o, t) {
|
|
|
7123
7158
|
const { clientX: r, clientY: n } = o, i = t.getBoundingClientRect();
|
|
7124
7159
|
return r < i.left || r > i.right || n < i.top || n > i.bottom;
|
|
7125
7160
|
}
|
|
7126
|
-
const l1 = [
|
|
7161
|
+
const l1 = [is, Do], B8 = [wn, w8, zh], Bh = [Wn, C8, Rh], Z8 = [...B8, ...Bh], U8 = {
|
|
7127
7162
|
ltr: [...l1, hn],
|
|
7128
7163
|
rtl: [...l1, un]
|
|
7129
7164
|
}, K8 = {
|
|
@@ -7148,7 +7183,7 @@ function G8(o, { select: t = !1 } = {}, r) {
|
|
|
7148
7183
|
if (Y8(i, { select: t }), r() !== n)
|
|
7149
7184
|
return !0;
|
|
7150
7185
|
}
|
|
7151
|
-
let
|
|
7186
|
+
let yi = e.state(!1);
|
|
7152
7187
|
class An {
|
|
7153
7188
|
static _refs = 0;
|
|
7154
7189
|
// Reference counting to avoid multiple listeners.
|
|
@@ -7156,20 +7191,20 @@ class An {
|
|
|
7156
7191
|
constructor() {
|
|
7157
7192
|
e.user_effect(() => (An._refs === 0 && (An._cleanup = e.effect_root(() => {
|
|
7158
7193
|
const t = [], r = (i) => {
|
|
7159
|
-
e.set(
|
|
7194
|
+
e.set(yi, !1);
|
|
7160
7195
|
}, n = (i) => {
|
|
7161
|
-
e.set(
|
|
7196
|
+
e.set(yi, !0);
|
|
7162
7197
|
};
|
|
7163
|
-
return t.push(Ct(document, "pointerdown", r, { capture: !0 }), Ct(document, "pointermove", r, { capture: !0 }), Ct(document, "keydown", n, { capture: !0 })),
|
|
7198
|
+
return t.push(Ct(document, "pointerdown", r, { capture: !0 }), Ct(document, "pointermove", r, { capture: !0 }), Ct(document, "keydown", n, { capture: !0 })), Uo(...t);
|
|
7164
7199
|
})), An._refs++, () => {
|
|
7165
|
-
An._refs--, An._refs === 0 && (e.set(
|
|
7200
|
+
An._refs--, An._refs === 0 && (e.set(yi, !1), An._cleanup?.());
|
|
7166
7201
|
}));
|
|
7167
7202
|
}
|
|
7168
7203
|
get current() {
|
|
7169
|
-
return e.get(
|
|
7204
|
+
return e.get(yi);
|
|
7170
7205
|
}
|
|
7171
7206
|
set current(t) {
|
|
7172
|
-
e.set(
|
|
7207
|
+
e.set(yi, t, !0);
|
|
7173
7208
|
}
|
|
7174
7209
|
}
|
|
7175
7210
|
var Zh = ["input:not([inert]):not([inert] *)", "select:not([inert]):not([inert] *)", "textarea:not([inert]):not([inert] *)", "a[href]:not([inert]):not([inert] *)", "button:not([inert]):not([inert] *)", "[tabindex]:not(slot):not([inert]):not([inert] *)", "audio[controls]:not([inert]):not([inert] *)", "video[controls]:not([inert]):not([inert] *)", '[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)', "details>summary:first-of-type:not([inert]):not([inert] *)", "details:not([inert]):not([inert] *)"], aa = /* @__PURE__ */ Zh.join(","), Uh = typeof Element > "u", xo = Uh ? function() {
|
|
@@ -7380,7 +7415,7 @@ var Zh = ["input:not([inert]):not([inert] *)", "select:not([inert]):not([inert]
|
|
|
7380
7415
|
throw new Error("No node provided");
|
|
7381
7416
|
return xo.call(t, c6) === !1 ? !1 : ua(r, t);
|
|
7382
7417
|
};
|
|
7383
|
-
function
|
|
7418
|
+
function Ri() {
|
|
7384
7419
|
return {
|
|
7385
7420
|
getShadowRoot: !0,
|
|
7386
7421
|
displayCheck: (
|
|
@@ -7392,21 +7427,21 @@ function ji() {
|
|
|
7392
7427
|
};
|
|
7393
7428
|
}
|
|
7394
7429
|
function d6(o, t) {
|
|
7395
|
-
if (!Wa(o,
|
|
7430
|
+
if (!Wa(o, Ri()))
|
|
7396
7431
|
return u6(o, t);
|
|
7397
|
-
const r = Xn(o), n = Jh(r.body,
|
|
7432
|
+
const r = Xn(o), n = Jh(r.body, Ri());
|
|
7398
7433
|
t === "prev" && n.reverse();
|
|
7399
7434
|
const i = n.indexOf(o);
|
|
7400
7435
|
return i === -1 ? r.body : n.slice(i + 1)[0];
|
|
7401
7436
|
}
|
|
7402
7437
|
function u6(o, t) {
|
|
7403
7438
|
const r = Xn(o);
|
|
7404
|
-
if (!ef(o,
|
|
7439
|
+
if (!ef(o, Ri()))
|
|
7405
7440
|
return r.body;
|
|
7406
|
-
const n = Qh(r.body,
|
|
7441
|
+
const n = Qh(r.body, Ri());
|
|
7407
7442
|
t === "prev" && n.reverse();
|
|
7408
7443
|
const i = n.indexOf(o);
|
|
7409
|
-
return i === -1 ? r.body : n.slice(i + 1).find((a) => Wa(a,
|
|
7444
|
+
return i === -1 ? r.body : n.slice(i + 1).find((a) => Wa(a, Ri())) ?? r.body;
|
|
7410
7445
|
}
|
|
7411
7446
|
function h6(o, t) {
|
|
7412
7447
|
const r = [];
|
|
@@ -7480,7 +7515,7 @@ class g6 {
|
|
|
7480
7515
|
return this.#t.current;
|
|
7481
7516
|
}
|
|
7482
7517
|
}
|
|
7483
|
-
const Z1 = "data-context-menu-trigger", v6 = "data-context-menu-content", rf = new vr("Menu.Root"), Co = new vr("Menu.Root | Menu.Sub"), U1 = new vr("Menu.Content"), K1 = new W8("bitsmenuopen", { bubbles: !1, cancelable: !0 }), m6 =
|
|
7518
|
+
const Z1 = "data-context-menu-trigger", v6 = "data-context-menu-content", rf = new vr("Menu.Root"), Co = new vr("Menu.Root | Menu.Sub"), U1 = new vr("Menu.Content"), K1 = new W8("bitsmenuopen", { bubbles: !1, cancelable: !0 }), m6 = os({
|
|
7484
7519
|
component: "menu",
|
|
7485
7520
|
parts: [
|
|
7486
7521
|
"trigger",
|
|
@@ -7833,9 +7868,9 @@ class Va {
|
|
|
7833
7868
|
}
|
|
7834
7869
|
getBitsAttr = (t) => m6.getAttr(t, this.opts.variant.current);
|
|
7835
7870
|
}
|
|
7836
|
-
class
|
|
7871
|
+
class as {
|
|
7837
7872
|
static create(t, r) {
|
|
7838
|
-
return Co.set(new
|
|
7873
|
+
return Co.set(new as(t, r, null));
|
|
7839
7874
|
}
|
|
7840
7875
|
opts;
|
|
7841
7876
|
root;
|
|
@@ -7878,9 +7913,9 @@ class ss {
|
|
|
7878
7913
|
this.opts.open.current = !1;
|
|
7879
7914
|
}
|
|
7880
7915
|
}
|
|
7881
|
-
class
|
|
7916
|
+
class ls {
|
|
7882
7917
|
static create(t) {
|
|
7883
|
-
return U1.set(new
|
|
7918
|
+
return U1.set(new ls(t, Co.get()));
|
|
7884
7919
|
}
|
|
7885
7920
|
opts;
|
|
7886
7921
|
parentMenu;
|
|
@@ -7986,7 +8021,7 @@ class as {
|
|
|
7986
8021
|
}
|
|
7987
8022
|
onkeydown(t) {
|
|
7988
8023
|
if (t.defaultPrevented) return;
|
|
7989
|
-
if (t.key ===
|
|
8024
|
+
if (t.key === ss) {
|
|
7990
8025
|
this.handleTabKeyDown(t);
|
|
7991
8026
|
return;
|
|
7992
8027
|
}
|
|
@@ -8043,7 +8078,7 @@ class as {
|
|
|
8043
8078
|
role: "menu",
|
|
8044
8079
|
"aria-orientation": "vertical",
|
|
8045
8080
|
[this.parentMenu.root.getBitsAttr("content")]: "",
|
|
8046
|
-
"data-state":
|
|
8081
|
+
"data-state": li(this.parentMenu.opts.open.current),
|
|
8047
8082
|
...B1(this.parentMenu.contentPresence.transitionStatus),
|
|
8048
8083
|
onkeydown: this.onkeydown,
|
|
8049
8084
|
onblur: this.onblur,
|
|
@@ -8231,7 +8266,7 @@ class G1 {
|
|
|
8231
8266
|
{
|
|
8232
8267
|
"aria-haspopup": "menu",
|
|
8233
8268
|
"aria-expanded": gr(this.submenu.opts.open.current),
|
|
8234
|
-
"data-state":
|
|
8269
|
+
"data-state": li(this.submenu.opts.open.current),
|
|
8235
8270
|
"aria-controls": this.submenu.opts.open.current ? this.submenu.contentId.current : void 0,
|
|
8236
8271
|
[this.submenu.root.getBitsAttr("sub-trigger")]: "",
|
|
8237
8272
|
onclick: this.onclick,
|
|
@@ -8296,7 +8331,7 @@ class X1 {
|
|
|
8296
8331
|
};
|
|
8297
8332
|
onkeydown = (t) => {
|
|
8298
8333
|
if (!this.opts.disabled.current) {
|
|
8299
|
-
if (t.key === Do || t.key ===
|
|
8334
|
+
if (t.key === Do || t.key === is) {
|
|
8300
8335
|
this.parentMenu.toggleOpen(), t.preventDefault();
|
|
8301
8336
|
return;
|
|
8302
8337
|
}
|
|
@@ -8313,7 +8348,7 @@ class X1 {
|
|
|
8313
8348
|
"aria-expanded": gr(this.parentMenu.opts.open.current),
|
|
8314
8349
|
"aria-controls": e.get(this.#e),
|
|
8315
8350
|
"data-disabled": lt(this.opts.disabled.current),
|
|
8316
|
-
"data-state":
|
|
8351
|
+
"data-state": li(this.parentMenu.opts.open.current),
|
|
8317
8352
|
[this.parentMenu.root.getBitsAttr("trigger")]: "",
|
|
8318
8353
|
//
|
|
8319
8354
|
onclick: this.onclick,
|
|
@@ -8375,7 +8410,7 @@ class J1 {
|
|
|
8375
8410
|
id: this.opts.id.current,
|
|
8376
8411
|
disabled: this.opts.disabled.current,
|
|
8377
8412
|
"data-disabled": lt(this.opts.disabled.current),
|
|
8378
|
-
"data-state":
|
|
8413
|
+
"data-state": li(this.parentMenu.opts.open.current),
|
|
8379
8414
|
[Z1]: "",
|
|
8380
8415
|
tabindex: -1,
|
|
8381
8416
|
onpointerdown: this.onpointerdown,
|
|
@@ -8395,7 +8430,7 @@ class J1 {
|
|
|
8395
8430
|
class _6 {
|
|
8396
8431
|
static create(t) {
|
|
8397
8432
|
const r = Co.get();
|
|
8398
|
-
return Co.set(new
|
|
8433
|
+
return Co.set(new as(t, r.root, r));
|
|
8399
8434
|
}
|
|
8400
8435
|
}
|
|
8401
8436
|
globalThis.bitsDismissableLayers ??= /* @__PURE__ */ new Map();
|
|
@@ -8435,7 +8470,7 @@ class Q1 {
|
|
|
8435
8470
|
});
|
|
8436
8471
|
};
|
|
8437
8472
|
#c() {
|
|
8438
|
-
return
|
|
8473
|
+
return Uo(
|
|
8439
8474
|
/**
|
|
8440
8475
|
* CAPTURE INTERACTION START
|
|
8441
8476
|
* mark interaction-start event as intercepted.
|
|
@@ -8443,13 +8478,13 @@ class Q1 {
|
|
|
8443
8478
|
* to avoid checking if is responsible layer during interaction end
|
|
8444
8479
|
* when a new floating element may have been opened.
|
|
8445
8480
|
*/
|
|
8446
|
-
Ct(this.#i, "pointerdown",
|
|
8481
|
+
Ct(this.#i, "pointerdown", Uo(this.#f, this.#h), { capture: !0 }),
|
|
8447
8482
|
/**
|
|
8448
8483
|
* BUBBLE INTERACTION START
|
|
8449
8484
|
* Mark interaction-start event as non-intercepted. Debounce `onInteractOutsideStart`
|
|
8450
8485
|
* to avoid prematurely checking if other events were intercepted.
|
|
8451
8486
|
*/
|
|
8452
|
-
Ct(this.#i, "pointerdown",
|
|
8487
|
+
Ct(this.#i, "pointerdown", Uo(this.#p, this.#u)),
|
|
8453
8488
|
/**
|
|
8454
8489
|
* HANDLE FOCUS OUTSIDE
|
|
8455
8490
|
*/
|
|
@@ -8771,7 +8806,7 @@ class nc {
|
|
|
8771
8806
|
}));
|
|
8772
8807
|
}
|
|
8773
8808
|
#t() {
|
|
8774
|
-
return
|
|
8809
|
+
return Uo(Ct(this.domContext.getDocument(), "pointerdown", this.#r), Ct(this.domContext.getDocument(), "pointerup", Dh(this.#n, this.opts.onPointerUp.current)));
|
|
8775
8810
|
}
|
|
8776
8811
|
#r = (t) => {
|
|
8777
8812
|
const r = this.opts.ref.current, n = t.target;
|
|
@@ -8784,11 +8819,11 @@ class nc {
|
|
|
8784
8819
|
const i2 = (o) => o.style.userSelect || o.style.webkitUserSelect;
|
|
8785
8820
|
function T6(o, t) {
|
|
8786
8821
|
const r = i2(t), n = i2(o);
|
|
8787
|
-
return
|
|
8788
|
-
|
|
8822
|
+
return Os(t, "none"), Os(o, "text"), () => {
|
|
8823
|
+
Os(t, r), Os(o, n);
|
|
8789
8824
|
};
|
|
8790
8825
|
}
|
|
8791
|
-
function
|
|
8826
|
+
function Os(o, t) {
|
|
8792
8827
|
o.style.userSelect = t, o.style.webkitUserSelect = t;
|
|
8793
8828
|
}
|
|
8794
8829
|
function A6(o) {
|
|
@@ -8834,7 +8869,7 @@ class $6 {
|
|
|
8834
8869
|
}
|
|
8835
8870
|
}
|
|
8836
8871
|
const Bs = new s5();
|
|
8837
|
-
let
|
|
8872
|
+
let Es = e.state(null), yl = null, xi = null, Ci = !1;
|
|
8838
8873
|
const s2 = ne(() => {
|
|
8839
8874
|
for (const o of Bs.values())
|
|
8840
8875
|
if (o) return !0;
|
|
@@ -8843,24 +8878,24 @@ const s2 = ne(() => {
|
|
|
8843
8878
|
let xl = null;
|
|
8844
8879
|
const j6 = new $6(() => {
|
|
8845
8880
|
function o() {
|
|
8846
|
-
document.body.setAttribute("style", e.get(
|
|
8881
|
+
document.body.setAttribute("style", e.get(Es) ?? ""), document.body.style.removeProperty("--scrollbar-width"), Jd && yl?.(), e.set(Es, null);
|
|
8847
8882
|
}
|
|
8848
8883
|
function t() {
|
|
8849
|
-
|
|
8884
|
+
xi !== null && (window.clearTimeout(xi), xi = null);
|
|
8850
8885
|
}
|
|
8851
8886
|
function r(i, s) {
|
|
8852
|
-
t(),
|
|
8887
|
+
t(), Ci = !0, xl = Date.now();
|
|
8853
8888
|
const a = xl, l = () => {
|
|
8854
|
-
|
|
8889
|
+
xi = null, xl === a && (of(Bs) ? Ci = !1 : (Ci = !1, s()));
|
|
8855
8890
|
}, c = i === null ? 24 : i;
|
|
8856
|
-
|
|
8891
|
+
xi = window.setTimeout(l, c);
|
|
8857
8892
|
}
|
|
8858
8893
|
function n() {
|
|
8859
|
-
e.get(
|
|
8894
|
+
e.get(Es) === null && Bs.size === 0 && !Ci && e.set(Es, document.body.getAttribute("style"), !0);
|
|
8860
8895
|
}
|
|
8861
8896
|
return it(() => s2.current, () => {
|
|
8862
8897
|
if (!s2.current) return;
|
|
8863
|
-
n(),
|
|
8898
|
+
n(), Ci = !1;
|
|
8864
8899
|
const i = getComputedStyle(document.documentElement), s = getComputedStyle(document.body), a = i.scrollbarGutter?.includes("stable") || s.scrollbarGutter?.includes("stable"), l = window.innerWidth - document.documentElement.clientWidth, u = {
|
|
8865
8900
|
padding: Number.parseInt(s.paddingRight ?? "0", 10) + l,
|
|
8866
8901
|
margin: Number.parseInt(s.marginRight ?? "0", 10)
|
|
@@ -8917,7 +8952,7 @@ function Cl(o, t) {
|
|
|
8917
8952
|
return o - t * Math.floor(o / t);
|
|
8918
8953
|
}
|
|
8919
8954
|
const sf = 1721426;
|
|
8920
|
-
function
|
|
8955
|
+
function Ts(o, t, r, n) {
|
|
8921
8956
|
t = oc(o, t);
|
|
8922
8957
|
let i = t - 1, s = -2;
|
|
8923
8958
|
return r <= 2 ? s = 0 : Zs(t) && (s = -1), sf - 1 + 365 * i + Math.floor(i / 4) - Math.floor(i / 100) + Math.floor(i / 400) + Math.floor((367 * r - 362) / 12 + s + n);
|
|
@@ -8965,15 +9000,15 @@ const F6 = {
|
|
|
8965
9000
|
31
|
|
8966
9001
|
]
|
|
8967
9002
|
};
|
|
8968
|
-
class
|
|
9003
|
+
class Qo {
|
|
8969
9004
|
fromJulianDay(t) {
|
|
8970
|
-
let r = t, n = r - sf, i = Math.floor(n / 146097), s = Cl(n, 146097), a = Math.floor(s / 36524), l = Cl(s, 36524), c = Math.floor(l / 1461), u = Cl(l, 1461), d = Math.floor(u / 365), f = i * 400 + a * 100 + c * 4 + d + (a !== 4 && d !== 4 ? 1 : 0), [h, p] = z6(f), g = r -
|
|
8971
|
-
r <
|
|
8972
|
-
let m = Math.floor(((g + v) * 12 + 373) / 367), b = r -
|
|
9005
|
+
let r = t, n = r - sf, i = Math.floor(n / 146097), s = Cl(n, 146097), a = Math.floor(s / 36524), l = Cl(s, 36524), c = Math.floor(l / 1461), u = Cl(l, 1461), d = Math.floor(u / 365), f = i * 400 + a * 100 + c * 4 + d + (a !== 4 && d !== 4 ? 1 : 0), [h, p] = z6(f), g = r - Ts(h, p, 1, 1), v = 2;
|
|
9006
|
+
r < Ts(h, p, 3, 1) ? v = 0 : Zs(p) && (v = 1);
|
|
9007
|
+
let m = Math.floor(((g + v) * 12 + 373) / 367), b = r - Ts(h, p, m, 1) + 1;
|
|
8973
9008
|
return new Zn(h, p, m, b);
|
|
8974
9009
|
}
|
|
8975
9010
|
toJulianDay(t) {
|
|
8976
|
-
return
|
|
9011
|
+
return Ts(t.era, t.year, t.month, t.day);
|
|
8977
9012
|
}
|
|
8978
9013
|
getDaysInMonth(t) {
|
|
8979
9014
|
return F6[Zs(t.year) ? "leapyear" : "standard"][t.month - 1];
|
|
@@ -9201,7 +9236,7 @@ function G6(o) {
|
|
|
9201
9236
|
return t.firstDay;
|
|
9202
9237
|
}
|
|
9203
9238
|
function Vn(o) {
|
|
9204
|
-
o = Cr(o, new
|
|
9239
|
+
o = Cr(o, new Qo());
|
|
9205
9240
|
let t = oc(o.era, o.year);
|
|
9206
9241
|
return df(t, o.month, o.day, o.hour, o.minute, o.second, o.millisecond);
|
|
9207
9242
|
}
|
|
@@ -9209,7 +9244,7 @@ function df(o, t, r, n, i, s, a) {
|
|
|
9209
9244
|
let l = /* @__PURE__ */ new Date();
|
|
9210
9245
|
return l.setUTCHours(n, i, s, a), l.setUTCFullYear(o, t - 1, r), l.getTime();
|
|
9211
9246
|
}
|
|
9212
|
-
function
|
|
9247
|
+
function Wi(o, t) {
|
|
9213
9248
|
if (t === "UTC") return 0;
|
|
9214
9249
|
if (o > 0 && t === zn() && !cf()) return new Date(o).getTimezoneOffset() * -6e4;
|
|
9215
9250
|
let { year: r, month: n, day: i, hour: s, minute: a, second: l } = uf(o, t);
|
|
@@ -9243,7 +9278,7 @@ function uf(o, t) {
|
|
|
9243
9278
|
}
|
|
9244
9279
|
const ha = 864e5;
|
|
9245
9280
|
function q6(o, t) {
|
|
9246
|
-
let r = Vn(o), n = r -
|
|
9281
|
+
let r = Vn(o), n = r - Wi(r - ha, t), i = r - Wi(r + ha, t);
|
|
9247
9282
|
return hf(o, t, n, i);
|
|
9248
9283
|
}
|
|
9249
9284
|
function hf(o, t, r, n) {
|
|
@@ -9262,11 +9297,11 @@ function tn(o, t, r = "compatible") {
|
|
|
9262
9297
|
let n = Bn(o);
|
|
9263
9298
|
if (t === "UTC") return Vn(n);
|
|
9264
9299
|
if (t === zn() && r === "compatible" && !cf()) {
|
|
9265
|
-
n = Cr(n, new
|
|
9300
|
+
n = Cr(n, new Qo());
|
|
9266
9301
|
let c = /* @__PURE__ */ new Date(), u = oc(n.era, n.year);
|
|
9267
9302
|
return c.setFullYear(u, n.month - 1, n.day), c.setHours(n.hour, n.minute, n.second, n.millisecond), c.getTime();
|
|
9268
9303
|
}
|
|
9269
|
-
let i = Vn(n), s =
|
|
9304
|
+
let i = Vn(n), s = Wi(i - ha, t), a = Wi(i + ha, t), l = hf(n, t, i - s, i - a);
|
|
9270
9305
|
if (l.length === 1) return l[0];
|
|
9271
9306
|
if (l.length > 1) switch (r) {
|
|
9272
9307
|
// 'compatible' means 'earlier' for "fall back" transitions
|
|
@@ -9293,7 +9328,7 @@ function ff(o, t, r = "compatible") {
|
|
|
9293
9328
|
return new Date(tn(o, t, r));
|
|
9294
9329
|
}
|
|
9295
9330
|
function nn(o, t) {
|
|
9296
|
-
let r =
|
|
9331
|
+
let r = Wi(o, t), n = new Date(o + r), i = n.getUTCFullYear(), s = n.getUTCMonth() + 1, a = n.getUTCDate(), l = n.getUTCHours(), c = n.getUTCMinutes(), u = n.getUTCSeconds(), d = n.getUTCMilliseconds();
|
|
9297
9332
|
return new cn(i < 1 ? "BC" : "AD", i < 1 ? -i + 1 : i, s, a, t, r, l, c, u, d);
|
|
9298
9333
|
}
|
|
9299
9334
|
function J6(o) {
|
|
@@ -9324,7 +9359,7 @@ function tv(o, t) {
|
|
|
9324
9359
|
let r = Vn(o) - o.offset;
|
|
9325
9360
|
return Cr(nn(r, t), o.calendar);
|
|
9326
9361
|
}
|
|
9327
|
-
const
|
|
9362
|
+
const wi = 36e5;
|
|
9328
9363
|
function Ba(o, t) {
|
|
9329
9364
|
let r = o.copy(), n = "hour" in r ? iv(r, t) : 0;
|
|
9330
9365
|
u1(r, t.years || 0), r.calendar.balanceYearMonth && r.calendar.balanceYearMonth(r, o), r.month += t.months || 0, h1(r), pf(r), r.day += (t.weeks || 0) * 7, r.day += t.days || 0, r.day += n, rv(r), r.calendar.balanceDate && r.calendar.balanceDate(r), r.year < 1 && (r.year = 1, r.month = 1, r.day = 1);
|
|
@@ -9376,14 +9411,14 @@ function fa(o, t) {
|
|
|
9376
9411
|
return t.hour != null && (r.hour = t.hour), t.minute != null && (r.minute = t.minute), t.second != null && (r.second = t.second), t.millisecond != null && (r.millisecond = t.millisecond), ov(r), r;
|
|
9377
9412
|
}
|
|
9378
9413
|
function nv(o) {
|
|
9379
|
-
o.second += Math.floor(o.millisecond / 1e3), o.millisecond =
|
|
9414
|
+
o.second += Math.floor(o.millisecond / 1e3), o.millisecond = As(o.millisecond, 1e3), o.minute += Math.floor(o.second / 60), o.second = As(o.second, 60), o.hour += Math.floor(o.minute / 60), o.minute = As(o.minute, 60);
|
|
9380
9415
|
let t = Math.floor(o.hour / 24);
|
|
9381
|
-
return o.hour =
|
|
9416
|
+
return o.hour = As(o.hour, 24), t;
|
|
9382
9417
|
}
|
|
9383
9418
|
function ov(o) {
|
|
9384
9419
|
o.millisecond = Math.max(0, Math.min(o.millisecond, 1e3)), o.second = Math.max(0, Math.min(o.second, 59)), o.minute = Math.max(0, Math.min(o.minute, 59)), o.hour = Math.max(0, Math.min(o.hour, 23));
|
|
9385
9420
|
}
|
|
9386
|
-
function
|
|
9421
|
+
function As(o, t) {
|
|
9387
9422
|
let r = o % t;
|
|
9388
9423
|
return r < 0 && (r += t), r;
|
|
9389
9424
|
}
|
|
@@ -9477,16 +9512,16 @@ function av(o, t, r, n) {
|
|
|
9477
9512
|
}
|
|
9478
9513
|
let a = Bn(o), l = Cr(fa(a, {
|
|
9479
9514
|
hour: i
|
|
9480
|
-
}), new
|
|
9515
|
+
}), new Qo()), c = [
|
|
9481
9516
|
tn(l, o.timeZone, "earlier"),
|
|
9482
9517
|
tn(l, o.timeZone, "later")
|
|
9483
9518
|
].filter((g) => nn(g, o.timeZone).day === l.day)[0], u = Cr(fa(a, {
|
|
9484
9519
|
hour: s
|
|
9485
|
-
}), new
|
|
9520
|
+
}), new Qo()), d = [
|
|
9486
9521
|
tn(u, o.timeZone, "earlier"),
|
|
9487
9522
|
tn(u, o.timeZone, "later")
|
|
9488
|
-
].filter((g) => nn(g, o.timeZone).day === u.day).pop(), f = Vn(o) - o.offset, h = Math.floor(f /
|
|
9489
|
-
return f = kn(h, r, Math.floor(c /
|
|
9523
|
+
].filter((g) => nn(g, o.timeZone).day === u.day).pop(), f = Vn(o) - o.offset, h = Math.floor(f / wi), p = f % wi;
|
|
9524
|
+
return f = kn(h, r, Math.floor(c / wi), Math.floor(d / wi), n?.round) * wi + p, Cr(nn(f, o.timeZone), o.calendar);
|
|
9490
9525
|
}
|
|
9491
9526
|
case "minute":
|
|
9492
9527
|
case "second":
|
|
@@ -9546,7 +9581,7 @@ function hv(o) {
|
|
|
9546
9581
|
return `${String(o.hour).padStart(2, "0")}:${String(o.minute).padStart(2, "0")}:${String(o.second).padStart(2, "0")}${o.millisecond ? String(o.millisecond / 1e3).slice(1) : ""}`;
|
|
9547
9582
|
}
|
|
9548
9583
|
function Cf(o) {
|
|
9549
|
-
let t = Cr(o, new
|
|
9584
|
+
let t = Cr(o, new Qo()), r;
|
|
9550
9585
|
return t.era === "BC" ? r = t.year === 1 ? "0000" : "-" + String(Math.abs(1 - t.year)).padStart(6, "00") : r = String(t.year).padStart(4, "0"), `${r}-${String(t.month).padStart(2, "0")}-${String(t.day).padStart(2, "0")}`;
|
|
9551
9586
|
}
|
|
9552
9587
|
function cc(o) {
|
|
@@ -9562,7 +9597,7 @@ function fv(o) {
|
|
|
9562
9597
|
return `${cc(o)}${wf(o.offset)}[${o.timeZone}]`;
|
|
9563
9598
|
}
|
|
9564
9599
|
function dc(o) {
|
|
9565
|
-
let t = typeof o[0] == "object" ? o.shift() : new
|
|
9600
|
+
let t = typeof o[0] == "object" ? o.shift() : new Qo(), r;
|
|
9566
9601
|
if (typeof o[0] == "string") r = o.shift();
|
|
9567
9602
|
else {
|
|
9568
9603
|
let a = t.getEras();
|
|
@@ -9936,7 +9971,7 @@ function uc(o) {
|
|
|
9936
9971
|
function ga(o) {
|
|
9937
9972
|
return wv(o) || uc(o);
|
|
9938
9973
|
}
|
|
9939
|
-
function
|
|
9974
|
+
function Vi(o) {
|
|
9940
9975
|
if (o instanceof Date) {
|
|
9941
9976
|
const t = o.getFullYear(), r = o.getMonth() + 1;
|
|
9942
9977
|
return new Date(t, r, 0).getDate();
|
|
@@ -9957,11 +9992,11 @@ function h2(o, t, r) {
|
|
|
9957
9992
|
const n = af(o, r), i = t === 0 ? 6 : t - 1;
|
|
9958
9993
|
return n === i ? o : n > i ? o.add({ days: 7 - n + i }) : o.add({ days: i - n });
|
|
9959
9994
|
}
|
|
9960
|
-
const Za = ["day", "month", "year"], hc = ["hour", "minute", "second", "dayPeriod"], Lv = ["literal", "timeZoneName"],
|
|
9995
|
+
const Za = ["day", "month", "year"], hc = ["hour", "minute", "second", "dayPeriod"], Lv = ["literal", "timeZoneName"], cs = [
|
|
9961
9996
|
...Za,
|
|
9962
9997
|
...hc
|
|
9963
9998
|
], Sv = [
|
|
9964
|
-
...
|
|
9999
|
+
...cs,
|
|
9965
10000
|
...Lv
|
|
9966
10001
|
], Mv = [
|
|
9967
10002
|
"ach",
|
|
@@ -10143,7 +10178,7 @@ function Av(o) {
|
|
|
10143
10178
|
return Intl.Locale ? new Intl.Locale(o).language : o.split("-")[0];
|
|
10144
10179
|
}
|
|
10145
10180
|
function Ol(o) {
|
|
10146
|
-
const t = ["hour", "minute", "second"], r =
|
|
10181
|
+
const t = ["hour", "minute", "second"], r = cs.map((n) => n === "dayPeriod" ? [n, "AM"] : [n, null]).filter(([n]) => n === "literal" || n === null ? !1 : o === "day" ? !t.includes(n) : !0);
|
|
10147
10182
|
return Object.fromEntries(r);
|
|
10148
10183
|
}
|
|
10149
10184
|
function Iv(o) {
|
|
@@ -10228,7 +10263,7 @@ function Rv(o, t) {
|
|
|
10228
10263
|
return o === "day" && (delete r.second, delete r.hour, delete r.minute, delete r.timeZoneName), o === "hour" && delete r.minute, o === "minute" && delete r.second, r;
|
|
10229
10264
|
}
|
|
10230
10265
|
function p2() {
|
|
10231
|
-
return
|
|
10266
|
+
return cs.reduce((o, t) => (o[t] = {
|
|
10232
10267
|
lastKeyZero: !1,
|
|
10233
10268
|
hasLeftFocus: !0,
|
|
10234
10269
|
updating: null
|
|
@@ -10238,13 +10273,13 @@ function Ua(o) {
|
|
|
10238
10273
|
return Za.includes(o);
|
|
10239
10274
|
}
|
|
10240
10275
|
function Sf(o) {
|
|
10241
|
-
return
|
|
10276
|
+
return cs.includes(o);
|
|
10242
10277
|
}
|
|
10243
10278
|
function zv(o) {
|
|
10244
10279
|
return Sv.includes(o);
|
|
10245
10280
|
}
|
|
10246
10281
|
function Mf(o) {
|
|
10247
|
-
return !fn || !o ? [] : gc(o).map((r) => r.dataset.segment).filter((r) =>
|
|
10282
|
+
return !fn || !o ? [] : gc(o).map((r) => r.dataset.segment).filter((r) => cs.includes(r));
|
|
10248
10283
|
}
|
|
10249
10284
|
function Fv(o) {
|
|
10250
10285
|
const { segmentObj: t, fieldNode: r, dateRef: n } = o, i = Mf(r);
|
|
@@ -10281,7 +10316,7 @@ function Wv(o, t) {
|
|
|
10281
10316
|
}
|
|
10282
10317
|
function fc(o) {
|
|
10283
10318
|
return !!([
|
|
10284
|
-
|
|
10319
|
+
is,
|
|
10285
10320
|
Wn,
|
|
10286
10321
|
wn,
|
|
10287
10322
|
un,
|
|
@@ -10305,7 +10340,7 @@ function Bv(o) {
|
|
|
10305
10340
|
a.innerText = `Selected Date: ${s}`;
|
|
10306
10341
|
else {
|
|
10307
10342
|
const l = i.createElement("div");
|
|
10308
|
-
l.style.cssText =
|
|
10343
|
+
l.style.cssText = ns({
|
|
10309
10344
|
display: "none"
|
|
10310
10345
|
}), l.id = t, l.innerText = `Selected Date: ${s}`, i.body.appendChild(l);
|
|
10311
10346
|
}
|
|
@@ -10319,7 +10354,7 @@ function Zv(o, t) {
|
|
|
10319
10354
|
function Df(o) {
|
|
10320
10355
|
return new Intl.DateTimeFormat(o, { hour: "numeric" }).formatToParts(/* @__PURE__ */ new Date("2023-01-01T13:00:00")).find((i) => i.type === "hour")?.value === "1" ? 12 : 24;
|
|
10321
10356
|
}
|
|
10322
|
-
function
|
|
10357
|
+
function ds(o, t) {
|
|
10323
10358
|
const r = o.currentTarget;
|
|
10324
10359
|
if (!Zt(r))
|
|
10325
10360
|
return;
|
|
@@ -10372,7 +10407,7 @@ function Of(o, t) {
|
|
|
10372
10407
|
const { prev: n } = pc(r, t);
|
|
10373
10408
|
n && n.focus();
|
|
10374
10409
|
}
|
|
10375
|
-
function
|
|
10410
|
+
function us(o) {
|
|
10376
10411
|
return o === hn || o === un;
|
|
10377
10412
|
}
|
|
10378
10413
|
function gc(o) {
|
|
@@ -10471,7 +10506,7 @@ function g2(o, t) {
|
|
|
10471
10506
|
return r;
|
|
10472
10507
|
}
|
|
10473
10508
|
function El(o) {
|
|
10474
|
-
const { dateObj: t, weekStartsOn: r, fixedWeeks: n, locale: i } = o, s =
|
|
10509
|
+
const { dateObj: t, weekStartsOn: r, fixedWeeks: n, locale: i } = o, s = Vi(t), a = Array.from({ length: s }, (m, b) => t.set({ day: b + 1 })), l = d1(t), c = K6(t), u = r !== void 0 ? u2(l, r, "en-US") : u2(l, 0, i), d = r !== void 0 ? h2(c, r, "en-US") : h2(c, 0, i), f = g2(u.subtract({ days: 1 }), l), h = g2(c, d.add({ days: 1 })), p = f.length + a.length + h.length;
|
|
10475
10510
|
if (n && p < 42) {
|
|
10476
10511
|
const m = 42 - p;
|
|
10477
10512
|
let b = h[h.length - 1];
|
|
@@ -10487,7 +10522,7 @@ function El(o) {
|
|
|
10487
10522
|
const g = f.concat(a, h), v = h6(g, 7);
|
|
10488
10523
|
return { value: t, dates: g, weeks: v };
|
|
10489
10524
|
}
|
|
10490
|
-
function
|
|
10525
|
+
function hs(o) {
|
|
10491
10526
|
const { numberOfMonths: t, dateObj: r, ...n } = o, i = [];
|
|
10492
10527
|
if (!t || t === 1)
|
|
10493
10528
|
return i.push(El({ ...n, dateObj: r })), i;
|
|
@@ -10554,7 +10589,7 @@ const m2 = [
|
|
|
10554
10589
|
Wn,
|
|
10555
10590
|
un,
|
|
10556
10591
|
hn
|
|
10557
|
-
], b2 = [
|
|
10592
|
+
], b2 = [is, Do];
|
|
10558
10593
|
function Xv({ event: o, handleCellClick: t, shiftFocus: r, placeholderValue: n }) {
|
|
10559
10594
|
const i = o.target;
|
|
10560
10595
|
if (!Gv(i) || !m2.includes(o.key) && !b2.includes(o.key)) return;
|
|
@@ -10590,7 +10625,7 @@ function Jv({
|
|
|
10590
10625
|
if (n)
|
|
10591
10626
|
l(c.add({ months: r }));
|
|
10592
10627
|
else {
|
|
10593
|
-
const u = c.add({ months: 1 }), d =
|
|
10628
|
+
const u = c.add({ months: 1 }), d = hs({
|
|
10594
10629
|
dateObj: u,
|
|
10595
10630
|
weekStartsOn: i,
|
|
10596
10631
|
locale: s,
|
|
@@ -10615,7 +10650,7 @@ function Qv({
|
|
|
10615
10650
|
if (n)
|
|
10616
10651
|
l(c.subtract({ months: r }));
|
|
10617
10652
|
else {
|
|
10618
|
-
const u = c.subtract({ months: 1 }), d =
|
|
10653
|
+
const u = c.subtract({ months: 1 }), d = hs({
|
|
10619
10654
|
dateObj: u,
|
|
10620
10655
|
weekStartsOn: i,
|
|
10621
10656
|
locale: s,
|
|
@@ -10637,13 +10672,13 @@ function tm(o) {
|
|
|
10637
10672
|
const s = o.placeholder.current;
|
|
10638
10673
|
if (!s) return;
|
|
10639
10674
|
const a = { weekStartsOn: t, locale: r, fixedWeeks: n, numberOfMonths: i };
|
|
10640
|
-
o.setMonths(
|
|
10675
|
+
o.setMonths(hs({ ...a, dateObj: s }));
|
|
10641
10676
|
});
|
|
10642
10677
|
});
|
|
10643
10678
|
}
|
|
10644
10679
|
function rm({ calendarNode: o, label: t, accessibleHeadingId: r }) {
|
|
10645
10680
|
const n = Xn(o), i = n.createElement("div");
|
|
10646
|
-
i.style.cssText =
|
|
10681
|
+
i.style.cssText = ns({
|
|
10647
10682
|
border: "0px",
|
|
10648
10683
|
clip: "rect(0px, 0px, 0px, 0px)",
|
|
10649
10684
|
clipPath: "inset(50%)",
|
|
@@ -10680,7 +10715,7 @@ function nm({
|
|
|
10680
10715
|
fixedWeeks: i.current,
|
|
10681
10716
|
numberOfMonths: s.current
|
|
10682
10717
|
};
|
|
10683
|
-
a(
|
|
10718
|
+
a(hs({ ...l, dateObj: o.current }));
|
|
10684
10719
|
});
|
|
10685
10720
|
});
|
|
10686
10721
|
}
|
|
@@ -10754,7 +10789,7 @@ function um(o, t) {
|
|
|
10754
10789
|
second: t.second
|
|
10755
10790
|
}) : o;
|
|
10756
10791
|
}
|
|
10757
|
-
const hm =
|
|
10792
|
+
const hm = os({
|
|
10758
10793
|
component: "calendar",
|
|
10759
10794
|
parts: [
|
|
10760
10795
|
"root",
|
|
@@ -10818,7 +10853,7 @@ class vc {
|
|
|
10818
10853
|
yearFormat: this.opts.yearFormat
|
|
10819
10854
|
}), this.setMonths = this.setMonths.bind(this), this.nextPage = this.nextPage.bind(this), this.prevPage = this.prevPage.bind(this), this.prevYear = this.prevYear.bind(this), this.nextYear = this.nextYear.bind(this), this.setYear = this.setYear.bind(this), this.setMonth = this.setMonth.bind(this), this.isOutsideVisibleMonths = this.isOutsideVisibleMonths.bind(this), this.isDateDisabled = this.isDateDisabled.bind(this), this.isDateSelected = this.isDateSelected.bind(this), this.shiftFocus = this.shiftFocus.bind(this), this.handleCellClick = this.handleCellClick.bind(this), this.handleMultipleUpdate = this.handleMultipleUpdate.bind(this), this.handleSingleUpdate = this.handleSingleUpdate.bind(this), this.onkeydown = this.onkeydown.bind(this), this.getBitsAttr = this.getBitsAttr.bind(this), Sr(() => {
|
|
10820
10855
|
this.announcer = pa(this.domContext.getDocument());
|
|
10821
|
-
}), this.months =
|
|
10856
|
+
}), this.months = hs({
|
|
10822
10857
|
dateObj: this.opts.placeholder.current,
|
|
10823
10858
|
weekStartsOn: this.opts.weekStartsOn.current,
|
|
10824
10859
|
locale: this.opts.locale.current,
|
|
@@ -11936,7 +11971,7 @@ function Bm(o, t) {
|
|
|
11936
11971
|
}
|
|
11937
11972
|
e.append(o, s), e.pop();
|
|
11938
11973
|
}
|
|
11939
|
-
const Zm = ["top", "right", "bottom", "left"], Un = Math.min, yr = Math.max, va = Math.round,
|
|
11974
|
+
const Zm = ["top", "right", "bottom", "left"], Un = Math.min, yr = Math.max, va = Math.round, Is = Math.floor, sn = (o) => ({
|
|
11940
11975
|
x: o,
|
|
11941
11976
|
y: o
|
|
11942
11977
|
}), Um = {
|
|
@@ -11954,7 +11989,7 @@ function Ln(o, t) {
|
|
|
11954
11989
|
function Sn(o) {
|
|
11955
11990
|
return o.split("-")[0];
|
|
11956
11991
|
}
|
|
11957
|
-
function
|
|
11992
|
+
function di(o) {
|
|
11958
11993
|
return o.split("-")[1];
|
|
11959
11994
|
}
|
|
11960
11995
|
function Mc(o) {
|
|
@@ -11972,7 +12007,7 @@ function Pc(o) {
|
|
|
11972
12007
|
}
|
|
11973
12008
|
function Km(o, t, r) {
|
|
11974
12009
|
r === void 0 && (r = !1);
|
|
11975
|
-
const n =
|
|
12010
|
+
const n = di(o), i = Pc(o), s = Dc(i);
|
|
11976
12011
|
let a = i === "x" ? n === (r ? "end" : "start") ? "right" : "left" : n === "start" ? "bottom" : "top";
|
|
11977
12012
|
return t.reference[s] > t.floating[s] && (a = ma(a)), [a, ma(a)];
|
|
11978
12013
|
}
|
|
@@ -11997,7 +12032,7 @@ function Xm(o, t, r) {
|
|
|
11997
12032
|
}
|
|
11998
12033
|
}
|
|
11999
12034
|
function Jm(o, t, r, n) {
|
|
12000
|
-
const i =
|
|
12035
|
+
const i = di(o);
|
|
12001
12036
|
let s = Xm(Sn(o), r === "start", n);
|
|
12002
12037
|
return i && (s = s.map((a) => a + "-" + i), t && (s = s.concat(s.map(p1)))), s;
|
|
12003
12038
|
}
|
|
@@ -12078,7 +12113,7 @@ function w2(o, t, r) {
|
|
|
12078
12113
|
y: n.y
|
|
12079
12114
|
};
|
|
12080
12115
|
}
|
|
12081
|
-
switch (
|
|
12116
|
+
switch (di(t)) {
|
|
12082
12117
|
case "start":
|
|
12083
12118
|
p[a] -= h * (r && u ? -1 : 1);
|
|
12084
12119
|
break;
|
|
@@ -12221,7 +12256,7 @@ const tb = 50, rb = async (o, t, r) => {
|
|
|
12221
12256
|
}, p = Pc(i), g = Dc(p), v = await a.getDimensions(u), m = p === "y", b = m ? "top" : "left", k = m ? "bottom" : "right", y = m ? "clientHeight" : "clientWidth", x = s.reference[g] + s.reference[p] - h[p] - s.floating[g], w = h[p] - s.reference[p], C = await (a.getOffsetParent == null ? void 0 : a.getOffsetParent(u));
|
|
12222
12257
|
let E = C ? C[y] : 0;
|
|
12223
12258
|
(!E || !await (a.isElement == null ? void 0 : a.isElement(C))) && (E = l.floating[y] || s.floating[g]);
|
|
12224
|
-
const P = x / 2 - w / 2, O = E / 2 - v[g] / 2 - 1, _ = Un(f[b], O), M = Un(f[k], O), L = _, T = E - v[g] - M, S = E / 2 - v[g] / 2 + P, R = f1(L, S, T), $ = !c.arrow &&
|
|
12259
|
+
const P = x / 2 - w / 2, O = E / 2 - v[g] / 2 - 1, _ = Un(f[b], O), M = Un(f[k], O), L = _, T = E - v[g] - M, S = E / 2 - v[g] / 2 + P, R = f1(L, S, T), $ = !c.arrow && di(i) != null && S !== R && s.reference[g] / 2 - (S < L ? _ : M) - v[g] / 2 < 0, F = $ ? S < L ? S - L : S - T : 0;
|
|
12225
12260
|
return {
|
|
12226
12261
|
[p]: h[p] + F,
|
|
12227
12262
|
data: {
|
|
@@ -12375,7 +12410,7 @@ async function sb(o, t) {
|
|
|
12375
12410
|
placement: r,
|
|
12376
12411
|
platform: n,
|
|
12377
12412
|
elements: i
|
|
12378
|
-
} = o, s = await (n.isRTL == null ? void 0 : n.isRTL(i.floating)), a = Sn(r), l =
|
|
12413
|
+
} = o, s = await (n.isRTL == null ? void 0 : n.isRTL(i.floating)), a = Sn(r), l = di(r), c = on(r) === "y", u = If.has(a) ? -1 : 1, d = s && c ? -1 : 1, f = Ln(t, o);
|
|
12379
12414
|
let {
|
|
12380
12415
|
mainAxis: h,
|
|
12381
12416
|
crossAxis: p,
|
|
@@ -12533,7 +12568,7 @@ const ab = function(o) {
|
|
|
12533
12568
|
apply: c = () => {
|
|
12534
12569
|
},
|
|
12535
12570
|
...u
|
|
12536
|
-
} = Ln(o, t), d = await a.detectOverflow(t, u), f = Sn(i), h =
|
|
12571
|
+
} = Ln(o, t), d = await a.detectOverflow(t, u), f = Sn(i), h = di(i), p = on(i) === "y", {
|
|
12537
12572
|
width: g,
|
|
12538
12573
|
height: v
|
|
12539
12574
|
} = s.floating;
|
|
@@ -12562,7 +12597,7 @@ const ab = function(o) {
|
|
|
12562
12597
|
function Ka() {
|
|
12563
12598
|
return typeof window < "u";
|
|
12564
12599
|
}
|
|
12565
|
-
function
|
|
12600
|
+
function ui(o) {
|
|
12566
12601
|
return $f(o) ? (o.nodeName || "").toLowerCase() : "#document";
|
|
12567
12602
|
}
|
|
12568
12603
|
function _r(o) {
|
|
@@ -12585,7 +12620,7 @@ function Mn(o) {
|
|
|
12585
12620
|
function S2(o) {
|
|
12586
12621
|
return !Ka() || typeof ShadowRoot > "u" ? !1 : o instanceof ShadowRoot || o instanceof _r(o).ShadowRoot;
|
|
12587
12622
|
}
|
|
12588
|
-
function
|
|
12623
|
+
function fs(o) {
|
|
12589
12624
|
const {
|
|
12590
12625
|
overflow: t,
|
|
12591
12626
|
overflowX: r,
|
|
@@ -12595,7 +12630,7 @@ function hs(o) {
|
|
|
12595
12630
|
return /auto|scroll|overlay|hidden|clip/.test(t + n + r) && i !== "inline" && i !== "contents";
|
|
12596
12631
|
}
|
|
12597
12632
|
function ub(o) {
|
|
12598
|
-
return /^(table|td|th)$/.test(
|
|
12633
|
+
return /^(table|td|th)$/.test(ui(o));
|
|
12599
12634
|
}
|
|
12600
12635
|
function Ya(o) {
|
|
12601
12636
|
try {
|
|
@@ -12617,7 +12652,7 @@ function Oc(o) {
|
|
|
12617
12652
|
}
|
|
12618
12653
|
function pb(o) {
|
|
12619
12654
|
let t = Kn(o);
|
|
12620
|
-
for (; Mn(t) && !
|
|
12655
|
+
for (; Mn(t) && !ei(t); ) {
|
|
12621
12656
|
if (Oc(t))
|
|
12622
12657
|
return t;
|
|
12623
12658
|
if (Ya(t))
|
|
@@ -12629,8 +12664,8 @@ function pb(o) {
|
|
|
12629
12664
|
function Ec() {
|
|
12630
12665
|
return Al == null && (Al = typeof CSS < "u" && CSS.supports && CSS.supports("-webkit-backdrop-filter", "none")), Al;
|
|
12631
12666
|
}
|
|
12632
|
-
function
|
|
12633
|
-
return /^(html|body|#document)$/.test(
|
|
12667
|
+
function ei(o) {
|
|
12668
|
+
return /^(html|body|#document)$/.test(ui(o));
|
|
12634
12669
|
}
|
|
12635
12670
|
function Ur(o) {
|
|
12636
12671
|
return _r(o).getComputedStyle(o);
|
|
@@ -12645,7 +12680,7 @@ function Ga(o) {
|
|
|
12645
12680
|
};
|
|
12646
12681
|
}
|
|
12647
12682
|
function Kn(o) {
|
|
12648
|
-
if (
|
|
12683
|
+
if (ui(o) === "html")
|
|
12649
12684
|
return o;
|
|
12650
12685
|
const t = (
|
|
12651
12686
|
// Step into the shadow DOM of the parent of a slotted node.
|
|
@@ -12658,17 +12693,17 @@ function Kn(o) {
|
|
|
12658
12693
|
}
|
|
12659
12694
|
function jf(o) {
|
|
12660
12695
|
const t = Kn(o);
|
|
12661
|
-
return
|
|
12696
|
+
return ei(t) ? o.ownerDocument ? o.ownerDocument.body : o.body : Mn(t) && fs(t) ? t : jf(t);
|
|
12662
12697
|
}
|
|
12663
|
-
function
|
|
12698
|
+
function Bi(o, t, r) {
|
|
12664
12699
|
var n;
|
|
12665
12700
|
t === void 0 && (t = []), r === void 0 && (r = !0);
|
|
12666
12701
|
const i = jf(o), s = i === ((n = o.ownerDocument) == null ? void 0 : n.body), a = _r(i);
|
|
12667
12702
|
if (s) {
|
|
12668
12703
|
const l = g1(a);
|
|
12669
|
-
return t.concat(a, a.visualViewport || [],
|
|
12704
|
+
return t.concat(a, a.visualViewport || [], fs(i) ? i : [], l && r ? Bi(l) : []);
|
|
12670
12705
|
} else
|
|
12671
|
-
return t.concat(i,
|
|
12706
|
+
return t.concat(i, Bi(i, [], r));
|
|
12672
12707
|
}
|
|
12673
12708
|
function g1(o) {
|
|
12674
12709
|
return o.parent && Object.getPrototypeOf(o.parent) ? o.frameElement : null;
|
|
@@ -12686,7 +12721,7 @@ function Rf(o) {
|
|
|
12686
12721
|
function Tc(o) {
|
|
12687
12722
|
return Zr(o) ? o : o.contextElement;
|
|
12688
12723
|
}
|
|
12689
|
-
function
|
|
12724
|
+
function Ko(o) {
|
|
12690
12725
|
const t = Tc(o);
|
|
12691
12726
|
if (!Mn(t))
|
|
12692
12727
|
return sn(1);
|
|
@@ -12716,14 +12751,14 @@ function Lo(o, t, r, n) {
|
|
|
12716
12751
|
t === void 0 && (t = !1), r === void 0 && (r = !1);
|
|
12717
12752
|
const i = o.getBoundingClientRect(), s = Tc(o);
|
|
12718
12753
|
let a = sn(1);
|
|
12719
|
-
t && (n ? Zr(n) && (a =
|
|
12754
|
+
t && (n ? Zr(n) && (a = Ko(n)) : a = Ko(o));
|
|
12720
12755
|
const l = vb(s, r, n) ? zf(s) : sn(0);
|
|
12721
12756
|
let c = (i.left + l.x) / a.x, u = (i.top + l.y) / a.y, d = i.width / a.x, f = i.height / a.y;
|
|
12722
12757
|
if (s) {
|
|
12723
12758
|
const h = _r(s), p = n && Zr(n) ? _r(n) : n;
|
|
12724
12759
|
let g = h, v = g1(g);
|
|
12725
12760
|
for (; v && n && p !== g; ) {
|
|
12726
|
-
const m =
|
|
12761
|
+
const m = Ko(v), b = v.getBoundingClientRect(), k = Ur(v), y = b.left + (v.clientLeft + parseFloat(k.paddingLeft)) * m.x, x = b.top + (v.clientTop + parseFloat(k.paddingTop)) * m.y;
|
|
12727
12762
|
c *= m.x, u *= m.y, d *= m.x, f *= m.y, c += y, u += x, g = _r(v), v = g1(g);
|
|
12728
12763
|
}
|
|
12729
12764
|
}
|
|
@@ -12760,9 +12795,9 @@ function mb(o) {
|
|
|
12760
12795
|
scrollTop: 0
|
|
12761
12796
|
}, u = sn(1);
|
|
12762
12797
|
const d = sn(0), f = Mn(n);
|
|
12763
|
-
if ((f || !f && !s) && ((
|
|
12798
|
+
if ((f || !f && !s) && ((ui(n) !== "body" || fs(a)) && (c = Ga(n)), f)) {
|
|
12764
12799
|
const p = Lo(n);
|
|
12765
|
-
u =
|
|
12800
|
+
u = Ko(n), d.x = p.x + n.clientLeft, d.y = p.y + n.clientTop;
|
|
12766
12801
|
}
|
|
12767
12802
|
const h = a && !f && !s ? Ff(a, c) : sn(0);
|
|
12768
12803
|
return {
|
|
@@ -12808,7 +12843,7 @@ function yb(o, t) {
|
|
|
12808
12843
|
};
|
|
12809
12844
|
}
|
|
12810
12845
|
function xb(o, t) {
|
|
12811
|
-
const r = Lo(o, !0, t === "fixed"), n = r.top + o.clientTop, i = r.left + o.clientLeft, s = Mn(o) ?
|
|
12846
|
+
const r = Lo(o, !0, t === "fixed"), n = r.top + o.clientTop, i = r.left + o.clientLeft, s = Mn(o) ? Ko(o) : sn(1), a = o.clientWidth * s.x, l = o.clientHeight * s.y, c = i * s.x, u = n * s.y;
|
|
12812
12847
|
return {
|
|
12813
12848
|
width: a,
|
|
12814
12849
|
height: l,
|
|
@@ -12837,18 +12872,18 @@ function D2(o, t, r) {
|
|
|
12837
12872
|
}
|
|
12838
12873
|
function Nf(o, t) {
|
|
12839
12874
|
const r = Kn(o);
|
|
12840
|
-
return r === t || !Zr(r) ||
|
|
12875
|
+
return r === t || !Zr(r) || ei(r) ? !1 : Ur(r).position === "fixed" || Nf(r, t);
|
|
12841
12876
|
}
|
|
12842
12877
|
function Cb(o, t) {
|
|
12843
12878
|
const r = t.get(o);
|
|
12844
12879
|
if (r)
|
|
12845
12880
|
return r;
|
|
12846
|
-
let n =
|
|
12881
|
+
let n = Bi(o, [], !1).filter((l) => Zr(l) && ui(l) !== "body"), i = null;
|
|
12847
12882
|
const s = Ur(o).position === "fixed";
|
|
12848
12883
|
let a = s ? Kn(o) : o;
|
|
12849
|
-
for (; Zr(a) && !
|
|
12884
|
+
for (; Zr(a) && !ei(a); ) {
|
|
12850
12885
|
const l = Ur(a), c = Oc(a);
|
|
12851
|
-
!c && l.position === "fixed" && (i = null), (s ? !c && !i : !c && l.position === "static" && !!i && (i.position === "absolute" || i.position === "fixed") ||
|
|
12886
|
+
!c && l.position === "fixed" && (i = null), (s ? !c && !i : !c && l.position === "static" && !!i && (i.position === "absolute" || i.position === "fixed") || fs(a) && !c && Nf(o, a)) ? n = n.filter((d) => d !== a) : i = l, a = Kn(a);
|
|
12852
12887
|
}
|
|
12853
12888
|
return t.set(o, n), n;
|
|
12854
12889
|
}
|
|
@@ -12893,7 +12928,7 @@ function Lb(o, t, r) {
|
|
|
12893
12928
|
c.x = qa(i);
|
|
12894
12929
|
}
|
|
12895
12930
|
if (n || !n && !s)
|
|
12896
|
-
if ((
|
|
12931
|
+
if ((ui(t) !== "body" || fs(i)) && (l = Ga(t)), n) {
|
|
12897
12932
|
const p = Lo(t, !0, s, t);
|
|
12898
12933
|
c.x = p.x + t.clientLeft, c.y = p.y + t.clientTop;
|
|
12899
12934
|
} else i && u();
|
|
@@ -12923,7 +12958,7 @@ function Hf(o, t) {
|
|
|
12923
12958
|
return r;
|
|
12924
12959
|
if (!Mn(o)) {
|
|
12925
12960
|
let i = Kn(o);
|
|
12926
|
-
for (; i && !
|
|
12961
|
+
for (; i && !ei(i); ) {
|
|
12927
12962
|
if (Zr(i) && !Il(i))
|
|
12928
12963
|
return i;
|
|
12929
12964
|
i = Kn(i);
|
|
@@ -12933,7 +12968,7 @@ function Hf(o, t) {
|
|
|
12933
12968
|
let n = P2(o, t);
|
|
12934
12969
|
for (; n && ub(n) && Il(n); )
|
|
12935
12970
|
n = P2(n, t);
|
|
12936
|
-
return n &&
|
|
12971
|
+
return n && ei(n) && Il(n) && !Oc(n) ? r : n || pb(o) || r;
|
|
12937
12972
|
}
|
|
12938
12973
|
const Sb = async function(o) {
|
|
12939
12974
|
const t = this.getOffsetParent || Hf, r = this.getDimensions, n = await r(o.floating);
|
|
@@ -12958,7 +12993,7 @@ const Db = {
|
|
|
12958
12993
|
getElementRects: Sb,
|
|
12959
12994
|
getClientRects: bb,
|
|
12960
12995
|
getDimensions: _b,
|
|
12961
|
-
getScale:
|
|
12996
|
+
getScale: Ko,
|
|
12962
12997
|
isElement: Zr,
|
|
12963
12998
|
isRTL: Mb
|
|
12964
12999
|
};
|
|
@@ -12982,7 +13017,7 @@ function Pb(o, t) {
|
|
|
12982
13017
|
} = u;
|
|
12983
13018
|
if (l || t(), !h || !p)
|
|
12984
13019
|
return;
|
|
12985
|
-
const g =
|
|
13020
|
+
const g = Is(f), v = Is(i.clientWidth - (d + h)), m = Is(i.clientHeight - (f + p)), b = Is(d), y = {
|
|
12986
13021
|
rootMargin: -g + "px " + -v + "px " + -m + "px " + -b + "px",
|
|
12987
13022
|
threshold: yr(0, Un(1, c)) || 1
|
|
12988
13023
|
};
|
|
@@ -13019,7 +13054,7 @@ function Ob(o, t, r, n) {
|
|
|
13019
13054
|
elementResize: a = typeof ResizeObserver == "function",
|
|
13020
13055
|
layoutShift: l = typeof IntersectionObserver == "function",
|
|
13021
13056
|
animationFrame: c = !1
|
|
13022
|
-
} = n, u = Tc(o), d = i || s ? [...u ?
|
|
13057
|
+
} = n, u = Tc(o), d = i || s ? [...u ? Bi(u) : [], ...t ? Bi(t) : []] : [];
|
|
13023
13058
|
d.forEach((b) => {
|
|
13024
13059
|
i && b.addEventListener("scroll", r, {
|
|
13025
13060
|
passive: !0
|
|
@@ -13371,7 +13406,7 @@ class ya {
|
|
|
13371
13406
|
#w = e.derived(() => ({
|
|
13372
13407
|
"data-side": this.placedSide,
|
|
13373
13408
|
"data-align": this.placedAlign,
|
|
13374
|
-
style:
|
|
13409
|
+
style: ns({ ...e.get(this.#e) }),
|
|
13375
13410
|
...this.contentAttachment
|
|
13376
13411
|
}));
|
|
13377
13412
|
get props() {
|
|
@@ -13462,7 +13497,7 @@ function Vb(o) {
|
|
|
13462
13497
|
function Bb(o) {
|
|
13463
13498
|
return $c(o)[1];
|
|
13464
13499
|
}
|
|
13465
|
-
function
|
|
13500
|
+
function hi(o, t) {
|
|
13466
13501
|
e.push(t, !0);
|
|
13467
13502
|
let r = e.prop(t, "tooltip", 3, !1);
|
|
13468
13503
|
ka.create(r());
|
|
@@ -13843,7 +13878,7 @@ var Xb = /* @__PURE__ */ new Set([
|
|
|
13843
13878
|
"ref",
|
|
13844
13879
|
"shouldRender"
|
|
13845
13880
|
]);
|
|
13846
|
-
function
|
|
13881
|
+
function ps(o, t) {
|
|
13847
13882
|
let r = e.prop(t, "interactOutsideBehavior", 3, "close"), n = e.prop(t, "trapFocus", 3, !0), i = e.prop(t, "isValidEvent", 3, () => !1), s = e.prop(t, "customAnchor", 3, null), a = e.prop(t, "isStatic", 3, !1), l = e.rest_props(t, Xb);
|
|
13848
13883
|
var c = e.comment(), u = e.first_child(c);
|
|
13849
13884
|
{
|
|
@@ -14009,7 +14044,7 @@ var Jb = /* @__PURE__ */ new Set([
|
|
|
14009
14044
|
"isStatic",
|
|
14010
14045
|
"enabled"
|
|
14011
14046
|
]);
|
|
14012
|
-
function
|
|
14047
|
+
function gs(o, t) {
|
|
14013
14048
|
let r = e.prop(t, "interactOutsideBehavior", 3, "close"), n = e.prop(t, "trapFocus", 3, !0), i = e.prop(t, "isValidEvent", 3, () => !1), s = e.prop(t, "customAnchor", 3, null), a = e.prop(t, "isStatic", 3, !1), l = e.rest_props(t, Jb);
|
|
14014
14049
|
Bf(o, e.spread_props(
|
|
14015
14050
|
{
|
|
@@ -14134,7 +14169,7 @@ function Qb(o, t) {
|
|
|
14134
14169
|
r(!1), i()?.(!1);
|
|
14135
14170
|
}
|
|
14136
14171
|
});
|
|
14137
|
-
|
|
14172
|
+
as.create(
|
|
14138
14173
|
{
|
|
14139
14174
|
open: ne(() => r(), (l) => {
|
|
14140
14175
|
r(l), i()(l);
|
|
@@ -14142,7 +14177,7 @@ function Qb(o, t) {
|
|
|
14142
14177
|
onOpenChangeComplete: ne(() => s())
|
|
14143
14178
|
},
|
|
14144
14179
|
a
|
|
14145
|
-
),
|
|
14180
|
+
), hi(o, {
|
|
14146
14181
|
children: (l, c) => {
|
|
14147
14182
|
var u = e.comment(), d = e.first_child(u);
|
|
14148
14183
|
e.snippet(d, () => t.children ?? e.noop), e.append(l, u);
|
|
@@ -14158,7 +14193,7 @@ function ek(o, t) {
|
|
|
14158
14193
|
r(s), n()?.(s);
|
|
14159
14194
|
}),
|
|
14160
14195
|
onOpenChangeComplete: ne(() => i())
|
|
14161
|
-
}),
|
|
14196
|
+
}), hi(o, {
|
|
14162
14197
|
children: (s, a) => {
|
|
14163
14198
|
var l = e.comment(), c = e.first_child(l);
|
|
14164
14199
|
e.snippet(c, () => t.children ?? e.noop), e.append(s, l);
|
|
@@ -14230,7 +14265,7 @@ var ok = /* @__PURE__ */ new Set([
|
|
|
14230
14265
|
function ik(o, t) {
|
|
14231
14266
|
e.push(t, !0);
|
|
14232
14267
|
let r = e.prop(t, "id", 19, Po), n = e.prop(t, "ref", 15, null), i = e.prop(t, "loop", 3, !0), s = e.prop(t, "onInteractOutside", 3, je), a = e.prop(t, "onCloseAutoFocus", 3, je), l = e.prop(t, "onOpenAutoFocus", 3, je), c = e.prop(t, "preventScroll", 3, !0), u = e.prop(t, "side", 3, "right"), d = e.prop(t, "sideOffset", 3, 2), f = e.prop(t, "align", 3, "start"), h = e.prop(t, "onEscapeKeydown", 3, je), p = e.prop(t, "forceMount", 3, !1), g = e.prop(t, "trapFocus", 3, !1), v = e.rest_props(t, ok);
|
|
14233
|
-
const m =
|
|
14268
|
+
const m = ls.create({
|
|
14234
14269
|
id: ne(() => r()),
|
|
14235
14270
|
loop: ne(() => i()),
|
|
14236
14271
|
ref: ne(() => n(), (O) => n(O)),
|
|
@@ -14303,7 +14338,7 @@ function ik(o, t) {
|
|
|
14303
14338
|
}
|
|
14304
14339
|
e.append(M, $);
|
|
14305
14340
|
};
|
|
14306
|
-
|
|
14341
|
+
gs(O, e.spread_props(() => e.get(b), () => m.popperProps, {
|
|
14307
14342
|
get enabled() {
|
|
14308
14343
|
return m.parentMenu.opts.open.current;
|
|
14309
14344
|
},
|
|
@@ -14343,7 +14378,7 @@ function ik(o, t) {
|
|
|
14343
14378
|
}
|
|
14344
14379
|
e.append(M, $);
|
|
14345
14380
|
};
|
|
14346
|
-
|
|
14381
|
+
ps(O, e.spread_props(() => e.get(b), () => m.popperProps, {
|
|
14347
14382
|
get open() {
|
|
14348
14383
|
return m.parentMenu.opts.open.current;
|
|
14349
14384
|
},
|
|
@@ -14469,7 +14504,7 @@ function fk(o, t) {
|
|
|
14469
14504
|
const r = e.props_id();
|
|
14470
14505
|
e.push(t, !0);
|
|
14471
14506
|
let n = e.prop(t, "id", 19, () => Mt(r)), i = e.prop(t, "ref", 15, null), s = e.prop(t, "loop", 3, !0), a = e.prop(t, "onInteractOutside", 3, je), l = e.prop(t, "forceMount", 3, !1), c = e.prop(t, "onEscapeKeydown", 3, je), u = e.prop(t, "interactOutsideBehavior", 3, "defer-otherwise-close"), d = e.prop(t, "escapeKeydownBehavior", 3, "defer-otherwise-close"), f = e.prop(t, "onOpenAutoFocus", 3, je), h = e.prop(t, "onCloseAutoFocus", 3, je), p = e.prop(t, "onFocusOutside", 3, je), g = e.prop(t, "side", 3, "right"), v = e.prop(t, "trapFocus", 3, !1), m = e.rest_props(t, hk);
|
|
14472
|
-
const b =
|
|
14507
|
+
const b = ls.create({
|
|
14473
14508
|
id: ne(() => n()),
|
|
14474
14509
|
loop: ne(() => s()),
|
|
14475
14510
|
ref: ne(() => i(), (S) => i(S)),
|
|
@@ -14540,7 +14575,7 @@ function fk(o, t) {
|
|
|
14540
14575
|
}
|
|
14541
14576
|
e.append($, I);
|
|
14542
14577
|
};
|
|
14543
|
-
|
|
14578
|
+
gs(S, e.spread_props(() => e.get(x), {
|
|
14544
14579
|
get ref() {
|
|
14545
14580
|
return b.opts.ref;
|
|
14546
14581
|
},
|
|
@@ -14603,7 +14638,7 @@ function fk(o, t) {
|
|
|
14603
14638
|
}
|
|
14604
14639
|
e.append($, I);
|
|
14605
14640
|
};
|
|
14606
|
-
|
|
14641
|
+
ps(S, e.spread_props(() => e.get(x), {
|
|
14607
14642
|
get ref() {
|
|
14608
14643
|
return b.opts.ref;
|
|
14609
14644
|
},
|
|
@@ -14693,15 +14728,15 @@ function vk(o, t) {
|
|
|
14693
14728
|
$$slots: { default: !0 }
|
|
14694
14729
|
}), e.pop();
|
|
14695
14730
|
}
|
|
14696
|
-
const jc =
|
|
14731
|
+
const jc = os({
|
|
14697
14732
|
component: "date-field",
|
|
14698
14733
|
parts: ["input", "label", "segment"]
|
|
14699
|
-
}),
|
|
14734
|
+
}), fi = {
|
|
14700
14735
|
day: {
|
|
14701
14736
|
min: 1,
|
|
14702
14737
|
max: (o) => {
|
|
14703
14738
|
const t = o.segmentValues.month, r = o.value.current ?? o.placeholder.current;
|
|
14704
|
-
return
|
|
14739
|
+
return Vi(t ? r.set({ month: Number.parseInt(t) }) : r);
|
|
14705
14740
|
},
|
|
14706
14741
|
cycle: 1,
|
|
14707
14742
|
padZero: !0
|
|
@@ -15015,7 +15050,7 @@ class Rc {
|
|
|
15015
15050
|
if (t === "month") {
|
|
15016
15051
|
const f = d(u);
|
|
15017
15052
|
if (this.states.month.updating = f, f !== null && a.day !== null) {
|
|
15018
|
-
const h = c.set({ month: Number.parseInt(f) }), p =
|
|
15053
|
+
const h = c.set({ month: Number.parseInt(f) }), p = Vi(pr(h));
|
|
15019
15054
|
Number.parseInt(a.day) > p && (a.day = `${p}`);
|
|
15020
15055
|
}
|
|
15021
15056
|
l = { ...a, [t]: f };
|
|
@@ -15055,7 +15090,7 @@ class Rc {
|
|
|
15055
15090
|
const u = a[t], d = r, f = d(u);
|
|
15056
15091
|
if (t === "month" && f !== null && a.day !== null) {
|
|
15057
15092
|
this.states.month.updating = f;
|
|
15058
|
-
const h = c.set({ month: Number.parseInt(f) }), p =
|
|
15093
|
+
const h = c.set({ month: Number.parseInt(f) }), p = Vi(pr(h));
|
|
15059
15094
|
Number.parseInt(a.day) > p && (a.day = `${p}`), l = { ...a, [t]: f };
|
|
15060
15095
|
} else if (t === "year") {
|
|
15061
15096
|
const h = d(u);
|
|
@@ -15166,7 +15201,7 @@ class Fc {
|
|
|
15166
15201
|
e.set(this.#r, t);
|
|
15167
15202
|
}
|
|
15168
15203
|
}
|
|
15169
|
-
class
|
|
15204
|
+
class pi {
|
|
15170
15205
|
opts;
|
|
15171
15206
|
root;
|
|
15172
15207
|
announcer;
|
|
@@ -15191,7 +15226,7 @@ class gi {
|
|
|
15191
15226
|
}
|
|
15192
15227
|
onkeydown(t) {
|
|
15193
15228
|
const r = this.root.value.current ?? this.root.placeholder.current;
|
|
15194
|
-
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && !((this.part === "hour" || this.part === "minute" || this.part === "second") && !(this.part in r)) && (t.key !==
|
|
15229
|
+
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && !((this.part === "hour" || this.part === "minute" || this.part === "second") && !(this.part in r)) && (t.key !== ss && t.preventDefault(), !!fc(t.key))) {
|
|
15195
15230
|
if (Vc(t.key)) {
|
|
15196
15231
|
this.#o(r);
|
|
15197
15232
|
return;
|
|
@@ -15208,7 +15243,7 @@ class gi {
|
|
|
15208
15243
|
this.#a(t);
|
|
15209
15244
|
return;
|
|
15210
15245
|
}
|
|
15211
|
-
|
|
15246
|
+
us(t.key) && ds(t, this.root.getFieldNode());
|
|
15212
15247
|
}
|
|
15213
15248
|
}
|
|
15214
15249
|
#o(t) {
|
|
@@ -15297,14 +15332,14 @@ class gi {
|
|
|
15297
15332
|
e.set(this.#l, t);
|
|
15298
15333
|
}
|
|
15299
15334
|
}
|
|
15300
|
-
class mk extends
|
|
15335
|
+
class mk extends pi {
|
|
15301
15336
|
#e = [];
|
|
15302
15337
|
#t = 0;
|
|
15303
15338
|
constructor(t, r) {
|
|
15304
|
-
super(t, r, "year",
|
|
15339
|
+
super(t, r, "year", fi.year);
|
|
15305
15340
|
}
|
|
15306
15341
|
onkeydown(t) {
|
|
15307
|
-
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && (t.key !==
|
|
15342
|
+
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && (t.key !== ss && t.preventDefault(), !!fc(t.key))) {
|
|
15308
15343
|
if (Vc(t.key)) {
|
|
15309
15344
|
this.#r(), super.onkeydown(t);
|
|
15310
15345
|
return;
|
|
@@ -15321,7 +15356,7 @@ class mk extends gi {
|
|
|
15321
15356
|
this.#i(t);
|
|
15322
15357
|
return;
|
|
15323
15358
|
}
|
|
15324
|
-
|
|
15359
|
+
us(t.key) && ds(t, this.root.getFieldNode());
|
|
15325
15360
|
}
|
|
15326
15361
|
}
|
|
15327
15362
|
#r() {
|
|
@@ -15362,19 +15397,19 @@ class mk extends gi {
|
|
|
15362
15397
|
this.root.states.year.hasLeftFocus = !0, this.#e = [], this.#r(), this.root.updateSegment("year", (r) => r && r.length !== 4 ? I2(Number.parseInt(r)) : r);
|
|
15363
15398
|
}
|
|
15364
15399
|
}
|
|
15365
|
-
class bk extends
|
|
15400
|
+
class bk extends pi {
|
|
15366
15401
|
constructor(t, r) {
|
|
15367
|
-
super(t, r, "day",
|
|
15402
|
+
super(t, r, "day", fi.day);
|
|
15368
15403
|
}
|
|
15369
15404
|
}
|
|
15370
|
-
class kk extends
|
|
15405
|
+
class kk extends pi {
|
|
15371
15406
|
constructor(t, r) {
|
|
15372
|
-
super(t, r, "month",
|
|
15407
|
+
super(t, r, "month", fi.month);
|
|
15373
15408
|
}
|
|
15374
15409
|
}
|
|
15375
|
-
class yk extends
|
|
15410
|
+
class yk extends pi {
|
|
15376
15411
|
constructor(t, r) {
|
|
15377
|
-
super(t, r, "hour",
|
|
15412
|
+
super(t, r, "hour", fi.hour);
|
|
15378
15413
|
}
|
|
15379
15414
|
// Override to handle special hour logic
|
|
15380
15415
|
onkeydown(t) {
|
|
@@ -15388,14 +15423,14 @@ class yk extends gi {
|
|
|
15388
15423
|
super.onkeydown(t), this.root.updateSegment = this.root.updateSegment.bind(this.root);
|
|
15389
15424
|
}
|
|
15390
15425
|
}
|
|
15391
|
-
class xk extends
|
|
15426
|
+
class xk extends pi {
|
|
15392
15427
|
constructor(t, r) {
|
|
15393
|
-
super(t, r, "minute",
|
|
15428
|
+
super(t, r, "minute", fi.minute);
|
|
15394
15429
|
}
|
|
15395
15430
|
}
|
|
15396
|
-
class Ck extends
|
|
15431
|
+
class Ck extends pi {
|
|
15397
15432
|
constructor(t, r) {
|
|
15398
|
-
super(t, r, "second",
|
|
15433
|
+
super(t, r, "second", fi.second);
|
|
15399
15434
|
}
|
|
15400
15435
|
}
|
|
15401
15436
|
class Nc {
|
|
@@ -15410,7 +15445,7 @@ class Nc {
|
|
|
15410
15445
|
this.opts = t, this.root = r, this.#e = this.root.announcer, this.onkeydown = this.onkeydown.bind(this), this.attachment = ut(t.ref, (n) => this.root.dayPeriodNode = n);
|
|
15411
15446
|
}
|
|
15412
15447
|
onkeydown(t) {
|
|
15413
|
-
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && (t.key !==
|
|
15448
|
+
if (!(t.ctrlKey || t.metaKey || this.root.disabled.current) && (t.key !== ss && t.preventDefault(), !!_k(t.key))) {
|
|
15414
15449
|
if (Vc(t.key) || Bc(t.key)) {
|
|
15415
15450
|
this.root.updateSegment("dayPeriod", (r) => {
|
|
15416
15451
|
if (r === "AM")
|
|
@@ -15423,7 +15458,7 @@ class Nc {
|
|
|
15423
15458
|
Zc(t.key) && (this.root.states.dayPeriod.hasLeftFocus = !1, this.root.updateSegment("dayPeriod", () => (this.#e.announce("AM"), "AM"))), (t.key === a1 || t.key === Fh || s1) && this.root.updateSegment("dayPeriod", () => {
|
|
15424
15459
|
const r = t.key === a1 || t.key === s1 ? "AM" : "PM";
|
|
15425
15460
|
return this.#e.announce(r), r;
|
|
15426
|
-
}),
|
|
15461
|
+
}), us(t.key) && ds(t, this.root.getFieldNode());
|
|
15427
15462
|
}
|
|
15428
15463
|
}
|
|
15429
15464
|
#t = e.derived(() => {
|
|
@@ -15486,7 +15521,7 @@ class Wc {
|
|
|
15486
15521
|
this.opts = t, this.root = r, this.onkeydown = this.onkeydown.bind(this), this.attachment = ut(t.ref);
|
|
15487
15522
|
}
|
|
15488
15523
|
onkeydown(t) {
|
|
15489
|
-
t.key !==
|
|
15524
|
+
t.key !== ss && t.preventDefault(), !this.root.disabled.current && us(t.key) && ds(t, this.root.getFieldNode());
|
|
15490
15525
|
}
|
|
15491
15526
|
#e = e.derived(() => ({
|
|
15492
15527
|
role: "textbox",
|
|
@@ -15903,7 +15938,7 @@ class Uf {
|
|
|
15903
15938
|
}
|
|
15904
15939
|
}
|
|
15905
15940
|
}
|
|
15906
|
-
const v1 =
|
|
15941
|
+
const v1 = os({
|
|
15907
15942
|
component: "popover",
|
|
15908
15943
|
parts: ["root", "trigger", "content", "close", "overlay"]
|
|
15909
15944
|
}), Kc = new vr("Popover.Root");
|
|
@@ -16057,7 +16092,7 @@ class Yc {
|
|
|
16057
16092
|
}
|
|
16058
16093
|
}
|
|
16059
16094
|
onkeydown(t) {
|
|
16060
|
-
this.opts.disabled.current || (t.key ===
|
|
16095
|
+
this.opts.disabled.current || (t.key === is || t.key === Do) && (t.preventDefault(), this.#i(), this.root.toggleOpen());
|
|
16061
16096
|
}
|
|
16062
16097
|
#s() {
|
|
16063
16098
|
if (this.root.opts.open.current && this.root.contentNode?.id)
|
|
@@ -16067,7 +16102,7 @@ class Yc {
|
|
|
16067
16102
|
id: this.opts.id.current,
|
|
16068
16103
|
"aria-haspopup": "dialog",
|
|
16069
16104
|
"aria-expanded": gr(this.root.opts.open.current),
|
|
16070
|
-
"data-state":
|
|
16105
|
+
"data-state": li(this.root.opts.open.current),
|
|
16071
16106
|
"aria-controls": this.#s(),
|
|
16072
16107
|
[v1.trigger]: "",
|
|
16073
16108
|
disabled: this.opts.disabled.current,
|
|
@@ -16149,7 +16184,7 @@ class Gc {
|
|
|
16149
16184
|
#t = e.derived(() => ({
|
|
16150
16185
|
id: this.opts.id.current,
|
|
16151
16186
|
tabindex: -1,
|
|
16152
|
-
"data-state":
|
|
16187
|
+
"data-state": li(this.root.opts.open.current),
|
|
16153
16188
|
...B1(this.root.contentPresence.transitionStatus),
|
|
16154
16189
|
[v1.content]: "",
|
|
16155
16190
|
style: { pointerEvents: "auto", contain: "layout style" },
|
|
@@ -16247,7 +16282,7 @@ function Tk(o, t) {
|
|
|
16247
16282
|
})
|
|
16248
16283
|
});
|
|
16249
16284
|
var F = e.comment(), z = e.first_child(F);
|
|
16250
|
-
e.component(z, () =>
|
|
16285
|
+
e.component(z, () => hi, (A, D) => {
|
|
16251
16286
|
D(A, {
|
|
16252
16287
|
children: (I, N) => {
|
|
16253
16288
|
var H = e.comment(), B = e.first_child(H);
|
|
@@ -16386,7 +16421,7 @@ function Kf(o, t) {
|
|
|
16386
16421
|
}
|
|
16387
16422
|
e.append(P, T);
|
|
16388
16423
|
};
|
|
16389
|
-
|
|
16424
|
+
gs(C, e.spread_props(() => e.get(v), () => g.popperProps, {
|
|
16390
16425
|
get ref() {
|
|
16391
16426
|
return g.opts.ref;
|
|
16392
16427
|
},
|
|
@@ -16450,7 +16485,7 @@ function Kf(o, t) {
|
|
|
16450
16485
|
}
|
|
16451
16486
|
e.append(P, T);
|
|
16452
16487
|
};
|
|
16453
|
-
|
|
16488
|
+
ps(C, e.spread_props(() => e.get(v), () => g.popperProps, {
|
|
16454
16489
|
get ref() {
|
|
16455
16490
|
return g.opts.ref;
|
|
16456
16491
|
},
|
|
@@ -16562,10 +16597,10 @@ function Wk(o, t) {
|
|
|
16562
16597
|
e.push(t, !0);
|
|
16563
16598
|
let r = e.prop(t, "ref", 15, null), n = e.rest_props(t, Hk);
|
|
16564
16599
|
function i(a) {
|
|
16565
|
-
if (
|
|
16600
|
+
if (us(a.key)) {
|
|
16566
16601
|
const c = a.currentTarget.closest(jc.selector("input"));
|
|
16567
16602
|
if (!c) return;
|
|
16568
|
-
|
|
16603
|
+
ds(a, c);
|
|
16569
16604
|
}
|
|
16570
16605
|
}
|
|
16571
16606
|
const s = e.derived(() => Be({ onkeydown: t.onkeydown }, { onkeydown: i }));
|
|
@@ -16590,7 +16625,7 @@ function Vk(o, t) {
|
|
|
16590
16625
|
},
|
|
16591
16626
|
shouldSkipExitAnimation: () => l()?.() ?? !1
|
|
16592
16627
|
});
|
|
16593
|
-
|
|
16628
|
+
as.create(
|
|
16594
16629
|
{
|
|
16595
16630
|
open: ne(() => r(), (u) => {
|
|
16596
16631
|
r(u), i()(u);
|
|
@@ -16598,7 +16633,7 @@ function Vk(o, t) {
|
|
|
16598
16633
|
onOpenChangeComplete: ne(() => s())
|
|
16599
16634
|
},
|
|
16600
16635
|
c
|
|
16601
|
-
),
|
|
16636
|
+
), hi(o, {
|
|
16602
16637
|
children: (u, d) => {
|
|
16603
16638
|
var f = e.comment(), h = e.first_child(f);
|
|
16604
16639
|
e.snippet(h, () => t.children ?? e.noop), e.append(u, f);
|
|
@@ -16626,7 +16661,7 @@ function Zk(o, t) {
|
|
|
16626
16661
|
const r = e.props_id();
|
|
16627
16662
|
e.push(t, !0);
|
|
16628
16663
|
let n = e.prop(t, "id", 19, () => Mt(r)), i = e.prop(t, "ref", 15, null), s = e.prop(t, "loop", 3, !0), a = e.prop(t, "onInteractOutside", 3, je), l = e.prop(t, "onEscapeKeydown", 3, je), c = e.prop(t, "onCloseAutoFocus", 3, je), u = e.prop(t, "forceMount", 3, !1), d = e.prop(t, "trapFocus", 3, !1), f = e.rest_props(t, Bk);
|
|
16629
|
-
const h =
|
|
16664
|
+
const h = ls.create({
|
|
16630
16665
|
id: ne(() => n()),
|
|
16631
16666
|
loop: ne(() => s()),
|
|
16632
16667
|
ref: ne(() => i(), (x) => i(x)),
|
|
@@ -16678,7 +16713,7 @@ function Zk(o, t) {
|
|
|
16678
16713
|
}
|
|
16679
16714
|
e.append(C, M);
|
|
16680
16715
|
};
|
|
16681
|
-
|
|
16716
|
+
gs(x, e.spread_props(() => e.get(p), () => h.popperProps, {
|
|
16682
16717
|
get ref() {
|
|
16683
16718
|
return h.opts.ref;
|
|
16684
16719
|
},
|
|
@@ -16736,7 +16771,7 @@ function Zk(o, t) {
|
|
|
16736
16771
|
}
|
|
16737
16772
|
e.append(C, M);
|
|
16738
16773
|
};
|
|
16739
|
-
|
|
16774
|
+
ps(x, e.spread_props(() => e.get(p), () => h.popperProps, {
|
|
16740
16775
|
get ref() {
|
|
16741
16776
|
return h.opts.ref;
|
|
16742
16777
|
},
|
|
@@ -16825,7 +16860,7 @@ function Gk(o, t) {
|
|
|
16825
16860
|
r(s), n()(s);
|
|
16826
16861
|
}),
|
|
16827
16862
|
onOpenChangeComplete: ne(() => i())
|
|
16828
|
-
}),
|
|
16863
|
+
}), hi(o, {
|
|
16829
16864
|
children: (s, a) => {
|
|
16830
16865
|
var l = e.comment(), c = e.first_child(l);
|
|
16831
16866
|
e.snippet(c, () => t.children ?? e.noop), e.append(s, l);
|
|
@@ -16852,7 +16887,7 @@ class m1 {
|
|
|
16852
16887
|
}, this.#e);
|
|
16853
16888
|
}
|
|
16854
16889
|
}
|
|
16855
|
-
const Gf =
|
|
16890
|
+
const Gf = os({ component: "tooltip", parts: ["content", "trigger"] }), qf = new vr("Tooltip.Provider"), qc = new vr("Tooltip.Root");
|
|
16856
16891
|
class qk {
|
|
16857
16892
|
#e = e.state(e.proxy(/* @__PURE__ */ new Map()));
|
|
16858
16893
|
get triggers() {
|
|
@@ -17364,7 +17399,7 @@ function Xk(o, t) {
|
|
|
17364
17399
|
onOpenChangeComplete: ne(() => s()),
|
|
17365
17400
|
tether: ne(() => t.tether)
|
|
17366
17401
|
});
|
|
17367
|
-
|
|
17402
|
+
hi(o, {
|
|
17368
17403
|
tooltip: !0,
|
|
17369
17404
|
children: (l, c) => {
|
|
17370
17405
|
var u = e.comment(), d = e.first_child(u);
|
|
@@ -17456,7 +17491,7 @@ function Qk(o, t) {
|
|
|
17456
17491
|
e.append(M, $);
|
|
17457
17492
|
};
|
|
17458
17493
|
let _ = e.derived(() => b.root.disableHoverableContent ? "none" : "auto");
|
|
17459
|
-
|
|
17494
|
+
gs(P, e.spread_props(() => e.get(y), () => b.popperProps, {
|
|
17460
17495
|
get enabled() {
|
|
17461
17496
|
return b.root.opts.open.current;
|
|
17462
17497
|
},
|
|
@@ -17514,7 +17549,7 @@ function Qk(o, t) {
|
|
|
17514
17549
|
e.append(M, $);
|
|
17515
17550
|
};
|
|
17516
17551
|
let _ = e.derived(() => b.root.disableHoverableContent ? "none" : "auto");
|
|
17517
|
-
|
|
17552
|
+
ps(P, e.spread_props(() => e.get(y), () => b.popperProps, {
|
|
17518
17553
|
get open() {
|
|
17519
17554
|
return b.root.opts.open.current;
|
|
17520
17555
|
},
|
|
@@ -17642,7 +17677,7 @@ function Lr(o, t) {
|
|
|
17642
17677
|
});
|
|
17643
17678
|
}
|
|
17644
17679
|
var k = e.sibling(b, 2);
|
|
17645
|
-
e.component(k, () =>
|
|
17680
|
+
e.component(k, () => ci, (y, x) => {
|
|
17646
17681
|
x(y, {
|
|
17647
17682
|
get to() {
|
|
17648
17683
|
return u;
|
|
@@ -18555,7 +18590,7 @@ function dt(o) {
|
|
|
18555
18590
|
}), e.append(o, t);
|
|
18556
18591
|
}
|
|
18557
18592
|
var Fy = e.from_html("<!> <!>", 1);
|
|
18558
|
-
function
|
|
18593
|
+
function Zi(o, t) {
|
|
18559
18594
|
e.push(t, !0);
|
|
18560
18595
|
let r = e.prop(t, "selected", 19, () => []), n = e.prop(t, "emptyLabel", 3, "Any"), i = e.prop(t, "allLabel", 3, "All"), s = e.prop(t, "disabled", 3, !1), a = e.prop(t, "required", 3, !1);
|
|
18561
18596
|
const l = e.derived(() => t.groups ?? (t.options ? [{ options: t.options }] : [])), c = e.derived(() => e.get(l).flatMap((f) => f.options));
|
|
@@ -18664,7 +18699,7 @@ function Xf(o, t) {
|
|
|
18664
18699
|
var d = (h) => {
|
|
18665
18700
|
{
|
|
18666
18701
|
let p = e.derived(() => e.get(n).length === 0 ? "No options" : "Select"), g = e.derived(() => e.get(n).length === 0);
|
|
18667
|
-
|
|
18702
|
+
Zi(h, {
|
|
18668
18703
|
get label() {
|
|
18669
18704
|
return t.label;
|
|
18670
18705
|
},
|
|
@@ -18740,22 +18775,22 @@ function Fn(o) {
|
|
|
18740
18775
|
for (var t = 1; t < arguments.length; t++) {
|
|
18741
18776
|
var r = arguments[t] != null ? arguments[t] : {};
|
|
18742
18777
|
t % 2 ? W2(Object(r), !0).forEach(function(n) {
|
|
18743
|
-
|
|
18778
|
+
ti(o, n, r[n]);
|
|
18744
18779
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(o, Object.getOwnPropertyDescriptors(r)) : W2(Object(r)).forEach(function(n) {
|
|
18745
18780
|
Object.defineProperty(o, n, Object.getOwnPropertyDescriptor(r, n));
|
|
18746
18781
|
});
|
|
18747
18782
|
}
|
|
18748
18783
|
return o;
|
|
18749
18784
|
}
|
|
18750
|
-
function
|
|
18785
|
+
function Vo(o) {
|
|
18751
18786
|
"@babel/helpers - typeof";
|
|
18752
|
-
return
|
|
18787
|
+
return Vo = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(t) {
|
|
18753
18788
|
return typeof t;
|
|
18754
18789
|
} : function(t) {
|
|
18755
18790
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
18756
|
-
},
|
|
18791
|
+
}, Vo(o);
|
|
18757
18792
|
}
|
|
18758
|
-
function
|
|
18793
|
+
function ti(o, t, r) {
|
|
18759
18794
|
return t in o ? Object.defineProperty(o, t, {
|
|
18760
18795
|
value: r,
|
|
18761
18796
|
enumerable: !0,
|
|
@@ -18835,7 +18870,7 @@ function Yy() {
|
|
|
18835
18870
|
throw new TypeError(`Invalid attempt to destructure non-iterable instance.
|
|
18836
18871
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
|
|
18837
18872
|
}
|
|
18838
|
-
function
|
|
18873
|
+
function vs(o, t) {
|
|
18839
18874
|
var r = typeof Symbol < "u" && o[Symbol.iterator] || o["@@iterator"];
|
|
18840
18875
|
if (!r) {
|
|
18841
18876
|
if (Array.isArray(o) || (r = td(o)) || t) {
|
|
@@ -18883,7 +18918,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
18883
18918
|
};
|
|
18884
18919
|
}
|
|
18885
18920
|
var Gy = "finalize", qy = "consider";
|
|
18886
|
-
function
|
|
18921
|
+
function ri(o, t, r) {
|
|
18887
18922
|
o.dispatchEvent(new CustomEvent(Gy, {
|
|
18888
18923
|
detail: {
|
|
18889
18924
|
items: t,
|
|
@@ -18899,7 +18934,7 @@ function Gn(o, t, r) {
|
|
|
18899
18934
|
}
|
|
18900
18935
|
}));
|
|
18901
18936
|
}
|
|
18902
|
-
var Qa = "draggedEntered",
|
|
18937
|
+
var Qa = "draggedEntered", ms = "draggedLeft", el = "draggedOverIndex", rd = "draggedLeftDocument", wa = {
|
|
18903
18938
|
LEFT_FOR_ANOTHER: "leftForAnother",
|
|
18904
18939
|
OUTSIDE_OF_ANY: "outsideOfAny"
|
|
18905
18940
|
};
|
|
@@ -18912,7 +18947,7 @@ function Xy(o, t, r) {
|
|
|
18912
18947
|
}));
|
|
18913
18948
|
}
|
|
18914
18949
|
function Jy(o, t, r) {
|
|
18915
|
-
o.dispatchEvent(new CustomEvent(
|
|
18950
|
+
o.dispatchEvent(new CustomEvent(ms, {
|
|
18916
18951
|
detail: {
|
|
18917
18952
|
draggedEl: t,
|
|
18918
18953
|
type: wa.LEFT_FOR_ANOTHER,
|
|
@@ -18921,7 +18956,7 @@ function Jy(o, t, r) {
|
|
|
18921
18956
|
}));
|
|
18922
18957
|
}
|
|
18923
18958
|
function Qy(o, t) {
|
|
18924
|
-
o.dispatchEvent(new CustomEvent(
|
|
18959
|
+
o.dispatchEvent(new CustomEvent(ms, {
|
|
18925
18960
|
detail: {
|
|
18926
18961
|
draggedEl: t,
|
|
18927
18962
|
type: wa.OUTSIDE_OF_ANY
|
|
@@ -18948,7 +18983,7 @@ var tr = {
|
|
|
18948
18983
|
DRAGGED_ENTERED: Qa,
|
|
18949
18984
|
DRAGGED_ENTERED_ANOTHER: "dragEnteredAnother",
|
|
18950
18985
|
DRAGGED_OVER_INDEX: el,
|
|
18951
|
-
DRAGGED_LEFT:
|
|
18986
|
+
DRAGGED_LEFT: ms,
|
|
18952
18987
|
DRAGGED_LEFT_ALL: "draggedLeftAll",
|
|
18953
18988
|
DROPPED_INTO_ZONE: "droppedIntoZone",
|
|
18954
18989
|
DROPPED_INTO_ANOTHER: "droppedIntoAnother",
|
|
@@ -19018,7 +19053,7 @@ function rp(o) {
|
|
|
19018
19053
|
function ox(o, t) {
|
|
19019
19054
|
return Math.sqrt(Math.pow(o.x - t.x, 2) + Math.pow(o.y - t.y, 2));
|
|
19020
19055
|
}
|
|
19021
|
-
function
|
|
19056
|
+
function zi(o, t) {
|
|
19022
19057
|
return o.y <= t.bottom && o.y >= t.top && o.x >= t.left && o.x <= t.right;
|
|
19023
19058
|
}
|
|
19024
19059
|
function np(o) {
|
|
@@ -19069,9 +19104,9 @@ function sx(o) {
|
|
|
19069
19104
|
height: Math.max(0, t.bottom - t.top)
|
|
19070
19105
|
};
|
|
19071
19106
|
}
|
|
19072
|
-
var
|
|
19107
|
+
var Yo;
|
|
19073
19108
|
function od() {
|
|
19074
|
-
|
|
19109
|
+
Yo = /* @__PURE__ */ new Map();
|
|
19075
19110
|
}
|
|
19076
19111
|
od();
|
|
19077
19112
|
function ax(o) {
|
|
@@ -19079,11 +19114,11 @@ function ax(o) {
|
|
|
19079
19114
|
return r.getAttribute(rl);
|
|
19080
19115
|
});
|
|
19081
19116
|
if (t >= 0)
|
|
19082
|
-
return
|
|
19117
|
+
return Yo.has(o) || Yo.set(o, /* @__PURE__ */ new Map()), Yo.get(o).set(t, x1(o.children[t])), t;
|
|
19083
19118
|
}
|
|
19084
19119
|
function lx(o, t) {
|
|
19085
19120
|
var r = x1(t);
|
|
19086
|
-
if (!
|
|
19121
|
+
if (!zi(o, r))
|
|
19087
19122
|
return null;
|
|
19088
19123
|
var n = t.children;
|
|
19089
19124
|
if (n.length === 0)
|
|
@@ -19093,9 +19128,9 @@ function lx(o, t) {
|
|
|
19093
19128
|
};
|
|
19094
19129
|
for (var i = ax(t), s = 0; s < n.length; s++) {
|
|
19095
19130
|
var a = x1(n[s]);
|
|
19096
|
-
if (
|
|
19097
|
-
var l =
|
|
19098
|
-
return l && !
|
|
19131
|
+
if (zi(o, a)) {
|
|
19132
|
+
var l = Yo.has(t) && Yo.get(t).get(s);
|
|
19133
|
+
return l && !zi(o, l) ? {
|
|
19099
19134
|
index: i,
|
|
19100
19135
|
isProximityBased: !1
|
|
19101
19136
|
} : {
|
|
@@ -19119,7 +19154,7 @@ function lx(o, t) {
|
|
|
19119
19154
|
isProximityBased: !0
|
|
19120
19155
|
};
|
|
19121
19156
|
}
|
|
19122
|
-
function
|
|
19157
|
+
function _i(o) {
|
|
19123
19158
|
return JSON.stringify(o, null, 2);
|
|
19124
19159
|
}
|
|
19125
19160
|
function _a(o) {
|
|
@@ -19163,7 +19198,7 @@ function hx(o, t) {
|
|
|
19163
19198
|
return;
|
|
19164
19199
|
}
|
|
19165
19200
|
c = f;
|
|
19166
|
-
var p = !1, g =
|
|
19201
|
+
var p = !1, g = vs(u), v;
|
|
19167
19202
|
try {
|
|
19168
19203
|
for (g.s(); !(v = g.n()).done; ) {
|
|
19169
19204
|
var m = v.value;
|
|
@@ -19187,7 +19222,7 @@ function hx(o, t) {
|
|
|
19187
19222
|
function fx() {
|
|
19188
19223
|
clearTimeout(C1), od();
|
|
19189
19224
|
}
|
|
19190
|
-
var
|
|
19225
|
+
var Li = 30;
|
|
19191
19226
|
function px() {
|
|
19192
19227
|
var o;
|
|
19193
19228
|
function t() {
|
|
@@ -19204,7 +19239,7 @@ function px() {
|
|
|
19204
19239
|
}));
|
|
19205
19240
|
}
|
|
19206
19241
|
function n(s) {
|
|
19207
|
-
return
|
|
19242
|
+
return Li - s;
|
|
19208
19243
|
}
|
|
19209
19244
|
function i(s, a) {
|
|
19210
19245
|
if (!a)
|
|
@@ -19213,16 +19248,16 @@ function px() {
|
|
|
19213
19248
|
if (l === null)
|
|
19214
19249
|
return c && t(), !1;
|
|
19215
19250
|
var u = !1, d = !1;
|
|
19216
|
-
return a.scrollHeight > a.clientHeight && (l.bottom <
|
|
19251
|
+
return a.scrollHeight > a.clientHeight && (l.bottom < Li ? (u = !0, o.directionObj = {
|
|
19217
19252
|
x: 0,
|
|
19218
19253
|
y: 1
|
|
19219
|
-
}, o.stepPx = n(l.bottom)) : l.top <
|
|
19254
|
+
}, o.stepPx = n(l.bottom)) : l.top < Li && (u = !0, o.directionObj = {
|
|
19220
19255
|
x: 0,
|
|
19221
19256
|
y: -1
|
|
19222
|
-
}, o.stepPx = n(l.top)), !c && u) || a.scrollWidth > a.clientWidth && (l.right <
|
|
19257
|
+
}, o.stepPx = n(l.top)), !c && u) || a.scrollWidth > a.clientWidth && (l.right < Li ? (d = !0, o.directionObj = {
|
|
19223
19258
|
x: 1,
|
|
19224
19259
|
y: 0
|
|
19225
|
-
}, o.stepPx = n(l.right)) : l.left <
|
|
19260
|
+
}, o.stepPx = n(l.right)) : l.left < Li && (d = !0, o.directionObj = {
|
|
19226
19261
|
x: -1,
|
|
19227
19262
|
y: 0
|
|
19228
19263
|
}, o.stepPx = n(l.left)), !c && d) ? (r(a), !0) : (t(), !1);
|
|
@@ -19239,7 +19274,7 @@ function gx(o, t) {
|
|
|
19239
19274
|
left: 0,
|
|
19240
19275
|
right: window.innerWidth
|
|
19241
19276
|
} : t.getBoundingClientRect();
|
|
19242
|
-
return
|
|
19277
|
+
return zi(o, r) ? {
|
|
19243
19278
|
top: o.y - r.top,
|
|
19244
19279
|
bottom: r.bottom - o.y,
|
|
19245
19280
|
left: o.x - r.left,
|
|
@@ -19255,7 +19290,7 @@ function vx() {
|
|
|
19255
19290
|
if (!c || !n)
|
|
19256
19291
|
return !1;
|
|
19257
19292
|
for (var u = n.filter(function(h) {
|
|
19258
|
-
return
|
|
19293
|
+
return zi(c, h.getBoundingClientRect()) || h === document.scrollingElement;
|
|
19259
19294
|
}), d = 0; d < u.length; d++) {
|
|
19260
19295
|
var f = s(c, u[d]);
|
|
19261
19296
|
if (f)
|
|
@@ -19284,7 +19319,7 @@ function mx(o) {
|
|
|
19284
19319
|
return t;
|
|
19285
19320
|
}
|
|
19286
19321
|
function bx(o) {
|
|
19287
|
-
var t = /* @__PURE__ */ new Set(), r =
|
|
19322
|
+
var t = /* @__PURE__ */ new Set(), r = vs(o), n;
|
|
19288
19323
|
try {
|
|
19289
19324
|
for (r.s(); !(n = r.n()).done; ) {
|
|
19290
19325
|
var i = n.value;
|
|
@@ -19300,7 +19335,7 @@ function bx(o) {
|
|
|
19300
19335
|
return (document.scrollingElement.scrollHeight > document.scrollingElement.clientHeight || document.scrollingElement.scrollWidth > document.scrollingElement.clientHeight) && t.add(document.scrollingElement), t;
|
|
19301
19336
|
}
|
|
19302
19337
|
function kx(o) {
|
|
19303
|
-
var t = o.cloneNode(!0), r = [], n = o.tagName === "SELECT", i = n ? [o] : $r(o.querySelectorAll("select")), s =
|
|
19338
|
+
var t = o.cloneNode(!0), r = [], n = o.tagName === "SELECT", i = n ? [o] : $r(o.querySelectorAll("select")), s = vs(i), a;
|
|
19304
19339
|
try {
|
|
19305
19340
|
for (s.s(); !(a = s.n()).done; ) {
|
|
19306
19341
|
var l = a.value;
|
|
@@ -19324,12 +19359,12 @@ function kx(o) {
|
|
|
19324
19359
|
}
|
|
19325
19360
|
return t;
|
|
19326
19361
|
}
|
|
19327
|
-
var
|
|
19362
|
+
var Ui = Object.freeze({
|
|
19328
19363
|
// This flag exists as a workaround for issue 454 (basically a browser bug) - seems like these rect values take time to update when in grid layout. Setting it to true can cause strange behaviour in the REPL for non-grid zones, see issue 470
|
|
19329
19364
|
USE_COMPUTED_STYLE_INSTEAD_OF_BOUNDING_RECT: "USE_COMPUTED_STYLE_INSTEAD_OF_BOUNDING_RECT"
|
|
19330
|
-
}), yx =
|
|
19365
|
+
}), yx = ti({}, Ui.USE_COMPUTED_STYLE_INSTEAD_OF_BOUNDING_RECT, !1);
|
|
19331
19366
|
function ip(o) {
|
|
19332
|
-
if (!
|
|
19367
|
+
if (!Ui[o]) throw new Error("Can't get non existing feature flag ".concat(o, "! Supported flags: ").concat(Object.keys(Ui)));
|
|
19333
19368
|
return yx[o];
|
|
19334
19369
|
}
|
|
19335
19370
|
var xx = 0.2;
|
|
@@ -19361,14 +19396,14 @@ function _x(o, t, r, n) {
|
|
|
19361
19396
|
left: (r - s.left) / s.width,
|
|
19362
19397
|
top: (n - s.top) / s.height
|
|
19363
19398
|
};
|
|
19364
|
-
ip(
|
|
19399
|
+
ip(Ui.USE_COMPUTED_STYLE_INSTEAD_OF_BOUNDING_RECT) || (o.style.height = "".concat(i.height, "px"), o.style.width = "".concat(i.width, "px")), o.style.left = "".concat(parseFloat(o.style.left) - c.left * a, "px"), o.style.top = "".concat(parseFloat(o.style.top) - c.top * l, "px");
|
|
19365
19400
|
}
|
|
19366
19401
|
}
|
|
19367
19402
|
function sp(o, t) {
|
|
19368
19403
|
var r = window.getComputedStyle(o);
|
|
19369
19404
|
Array.from(r).filter(function(n) {
|
|
19370
19405
|
return n.startsWith("background") || n.startsWith("padding") || n.startsWith("font") || n.startsWith("text") || n.startsWith("align") || n.startsWith("justify") || n.startsWith("display") || n.startsWith("flex") || n.startsWith("border") || n === "opacity" || n === "color" || n === "list-style-type" || // copying with and height to make up for rect update timing issues in some browsers
|
|
19371
|
-
ip(
|
|
19406
|
+
ip(Ui.USE_COMPUTED_STYLE_INSTEAD_OF_BOUNDING_RECT) && (n === "width" || n === "height");
|
|
19372
19407
|
}).forEach(function(n) {
|
|
19373
19408
|
return t.style.setProperty(n, r.getPropertyValue(n), r.getPropertyPriority(n));
|
|
19374
19409
|
});
|
|
@@ -19423,9 +19458,9 @@ function Dx(o) {
|
|
|
19423
19458
|
o.style.minHeight = t, o.style.minWidth = r;
|
|
19424
19459
|
};
|
|
19425
19460
|
}
|
|
19426
|
-
var Px = "--any--", Ox = 100, Ex = 20,
|
|
19461
|
+
var Px = "--any--", Ox = 100, Ex = 20, $s = 3, Tx = 80, Z2 = {
|
|
19427
19462
|
outline: "rgba(255, 255, 102, 0.7) solid 2px"
|
|
19428
|
-
}, U2 = "data-is-dnd-original-dragged-item", cr, Vt, ur, nl, _t, ol, Hn, Jt, Xr, Yt, In = !1, id = !1, sd,
|
|
19463
|
+
}, U2 = "data-is-dnd-original-dragged-item", cr, Vt, ur, nl, _t, ol, Hn, Jt, Xr, Yt, In = !1, id = !1, sd, bs = !1, Ys = [], Fi, Jr, Ai = !1, ad = !1, Wr = /* @__PURE__ */ new Map(), At = /* @__PURE__ */ new Map(), Rl = /* @__PURE__ */ new WeakMap();
|
|
19429
19464
|
function Ax(o, t) {
|
|
19430
19465
|
Wr.has(t) || Wr.set(t, /* @__PURE__ */ new Set()), Wr.get(t).has(o) || (Wr.get(t).add(o), Qf());
|
|
19431
19466
|
}
|
|
@@ -19433,22 +19468,22 @@ function K2(o, t) {
|
|
|
19433
19468
|
Wr.get(t).delete(o), ep(), Wr.get(t).size === 0 && Wr.delete(t);
|
|
19434
19469
|
}
|
|
19435
19470
|
function Ix() {
|
|
19436
|
-
var o = Wr.get(nl), t =
|
|
19471
|
+
var o = Wr.get(nl), t = vs(o), r;
|
|
19437
19472
|
try {
|
|
19438
19473
|
for (t.s(); !(r = t.n()).done; ) {
|
|
19439
19474
|
var n = r.value;
|
|
19440
|
-
n.addEventListener(Qa, lp), n.addEventListener(
|
|
19475
|
+
n.addEventListener(Qa, lp), n.addEventListener(ms, cp), n.addEventListener(el, dp);
|
|
19441
19476
|
}
|
|
19442
19477
|
} catch (l) {
|
|
19443
19478
|
t.e(l);
|
|
19444
19479
|
} finally {
|
|
19445
19480
|
t.f();
|
|
19446
19481
|
}
|
|
19447
|
-
window.addEventListener(rd,
|
|
19482
|
+
window.addEventListener(rd, ni);
|
|
19448
19483
|
var i = Math.max.apply(Math, $r(Array.from(o.keys()).map(function(l) {
|
|
19449
19484
|
return At.get(l).dropAnimationDurationMs;
|
|
19450
19485
|
}))), s = i === 0 ? Ex : Math.max(i, Ox);
|
|
19451
|
-
|
|
19486
|
+
Fi = vx(o, function() {
|
|
19452
19487
|
return Yt;
|
|
19453
19488
|
});
|
|
19454
19489
|
var a = ad ? function() {
|
|
@@ -19459,21 +19494,21 @@ function Ix() {
|
|
|
19459
19494
|
} : function() {
|
|
19460
19495
|
return np(Vt);
|
|
19461
19496
|
};
|
|
19462
|
-
hx(Vt, o, s * 1.07,
|
|
19497
|
+
hx(Vt, o, s * 1.07, Fi, a);
|
|
19463
19498
|
}
|
|
19464
19499
|
function $x() {
|
|
19465
|
-
var o = Wr.get(nl), t =
|
|
19500
|
+
var o = Wr.get(nl), t = vs(o), r;
|
|
19466
19501
|
try {
|
|
19467
19502
|
for (t.s(); !(r = t.n()).done; ) {
|
|
19468
19503
|
var n = r.value;
|
|
19469
|
-
n.removeEventListener(Qa, lp), n.removeEventListener(
|
|
19504
|
+
n.removeEventListener(Qa, lp), n.removeEventListener(ms, cp), n.removeEventListener(el, dp);
|
|
19470
19505
|
}
|
|
19471
19506
|
} catch (i) {
|
|
19472
19507
|
t.e(i);
|
|
19473
19508
|
} finally {
|
|
19474
19509
|
t.f();
|
|
19475
19510
|
}
|
|
19476
|
-
window.removeEventListener(rd,
|
|
19511
|
+
window.removeEventListener(rd, ni), Fi && (Fi.destroy(), Fi = void 0), fx();
|
|
19477
19512
|
}
|
|
19478
19513
|
function il(o) {
|
|
19479
19514
|
return o.findIndex(function(t) {
|
|
@@ -19482,12 +19517,12 @@ function il(o) {
|
|
|
19482
19517
|
}
|
|
19483
19518
|
function jx(o) {
|
|
19484
19519
|
var t;
|
|
19485
|
-
return Fn(Fn({}, o), {}, (t = {},
|
|
19520
|
+
return Fn(Fn({}, o), {}, (t = {}, ti(t, tl, !0), ti(t, Bt, Jf), t));
|
|
19486
19521
|
}
|
|
19487
19522
|
function lp(o) {
|
|
19488
19523
|
var t = At.get(o.currentTarget), r = t.items, n = t.dropFromOthersDisabled;
|
|
19489
19524
|
if (!(n && o.currentTarget !== _t)) {
|
|
19490
|
-
if (
|
|
19525
|
+
if (bs = !1, r = r.filter(function(l) {
|
|
19491
19526
|
return l[Bt] !== Hn[Bt] && l[Bt] !== Jf;
|
|
19492
19527
|
}), _t !== o.currentTarget) {
|
|
19493
19528
|
var i = At.get(_t).items, s = i.filter(function(l) {
|
|
@@ -19517,7 +19552,7 @@ function cp(o) {
|
|
|
19517
19552
|
Jt = void 0;
|
|
19518
19553
|
var l = o.detail, c = l.type, u = l.theOtherDz;
|
|
19519
19554
|
if (c === wa.OUTSIDE_OF_ANY || c === wa.LEFT_FOR_ANOTHER && u !== _t && At.get(u).dropFromOthersDisabled) {
|
|
19520
|
-
|
|
19555
|
+
bs = !0, Jt = _t;
|
|
19521
19556
|
var d = a === _t ? i : $r(At.get(_t).items);
|
|
19522
19557
|
d.splice(ol, 0, Hn), Gn(_t, d, {
|
|
19523
19558
|
trigger: tr.DRAGGED_LEFT_ALL,
|
|
@@ -19537,7 +19572,7 @@ function dp(o) {
|
|
|
19537
19572
|
var t = At.get(o.currentTarget), r = t.items, n = t.dropFromOthersDisabled;
|
|
19538
19573
|
if (!(n && o.currentTarget !== _t)) {
|
|
19539
19574
|
var i = $r(r);
|
|
19540
|
-
|
|
19575
|
+
bs = !1;
|
|
19541
19576
|
var s = o.detail.indexObj.index, a = il(i);
|
|
19542
19577
|
a !== -1 && i.splice(a, 1), i.splice(s, 0, Hn), Gn(o.currentTarget, i, {
|
|
19543
19578
|
trigger: tr.DRAGGED_OVER_INDEX,
|
|
@@ -19554,8 +19589,8 @@ function Sa(o) {
|
|
|
19554
19589
|
y: t.clientY
|
|
19555
19590
|
}, Vt.style.transform = "translate3d(".concat(Yt.x - Xr.x, "px, ").concat(Yt.y - Xr.y, "px, 0)");
|
|
19556
19591
|
}
|
|
19557
|
-
function
|
|
19558
|
-
id = !0, window.removeEventListener("mousemove", Sa), window.removeEventListener("touchmove", Sa), window.removeEventListener("mouseup",
|
|
19592
|
+
function ni() {
|
|
19593
|
+
id = !0, window.removeEventListener("mousemove", Sa), window.removeEventListener("touchmove", Sa), window.removeEventListener("mouseup", ni), window.removeEventListener("touchend", ni), $x(), wx(Vt), Jt || (Jt = _t);
|
|
19559
19594
|
var o = At.get(Jt), t = o.items, r = o.type;
|
|
19560
19595
|
La(Wr.get(r), function(s) {
|
|
19561
19596
|
return At.get(s).dropTargetStyle;
|
|
@@ -19567,11 +19602,11 @@ function oi() {
|
|
|
19567
19602
|
return s[tl] ? ur : s;
|
|
19568
19603
|
});
|
|
19569
19604
|
function i() {
|
|
19570
|
-
sd(),
|
|
19571
|
-
trigger:
|
|
19605
|
+
sd(), ri(Jt, t, {
|
|
19606
|
+
trigger: bs ? tr.DROPPED_OUTSIDE_OF_ANY : tr.DROPPED_INTO_ZONE,
|
|
19572
19607
|
id: ur[Bt],
|
|
19573
19608
|
source: rr.POINTER
|
|
19574
|
-
}), Jt !== _t &&
|
|
19609
|
+
}), Jt !== _t && ri(_t, At.get(_t).items, {
|
|
19575
19610
|
trigger: tr.DROPPED_INTO_ANOTHER,
|
|
19576
19611
|
id: ur[Bt],
|
|
19577
19612
|
source: rr.POINTER
|
|
@@ -19599,7 +19634,7 @@ function zx(o, t) {
|
|
|
19599
19634
|
});
|
|
19600
19635
|
}
|
|
19601
19636
|
function Fx() {
|
|
19602
|
-
Vt && Vt.remove && Vt.remove(), cr && cr.remove && cr.remove(), Vt = void 0, cr = void 0, ur = void 0, nl = void 0, _t = void 0, ol = void 0, Hn = void 0, Jt = void 0, Xr = void 0, Yt = void 0, In = !1, id = !1, sd = void 0,
|
|
19637
|
+
Vt && Vt.remove && Vt.remove(), cr && cr.remove && cr.remove(), Vt = void 0, cr = void 0, ur = void 0, nl = void 0, _t = void 0, ol = void 0, Hn = void 0, Jt = void 0, Xr = void 0, Yt = void 0, In = !1, id = !1, sd = void 0, bs = !1, Jr && clearTimeout(Jr), Jr = void 0, Ai = !1, ad = !1, Ys.length && (Ys.forEach(function(o) {
|
|
19603
19638
|
var t = o.dz, r = o.destroy;
|
|
19604
19639
|
r(), t.remove();
|
|
19605
19640
|
}), Ys = []);
|
|
@@ -19651,13 +19686,13 @@ function Nx(o, t) {
|
|
|
19651
19686
|
Yt = {
|
|
19652
19687
|
x: g.clientX,
|
|
19653
19688
|
y: g.clientY
|
|
19654
|
-
}, (Math.abs(Yt.x - Xr.x) >=
|
|
19689
|
+
}, (Math.abs(Yt.x - Xr.x) >= $s || Math.abs(Yt.y - Xr.y) >= $s) && (Jr && (clearTimeout(Jr), Jr = void 0), l(h));
|
|
19655
19690
|
return;
|
|
19656
19691
|
}
|
|
19657
19692
|
h.preventDefault(), Yt = {
|
|
19658
19693
|
x: g.clientX,
|
|
19659
19694
|
y: g.clientY
|
|
19660
|
-
}, (Math.abs(Yt.x - Xr.x) >=
|
|
19695
|
+
}, (Math.abs(Yt.x - Xr.x) >= $s || Math.abs(Yt.y - Xr.y) >= $s) && (a(), d());
|
|
19661
19696
|
}
|
|
19662
19697
|
function u(h) {
|
|
19663
19698
|
if (!(h.target !== h.currentTarget && (h.target.value !== void 0 || h.target.isContentEditable)) && !h.button && !In) {
|
|
@@ -19696,9 +19731,9 @@ function Nx(o, t) {
|
|
|
19696
19731
|
}), window.addEventListener("touchmove", Sa, {
|
|
19697
19732
|
passive: !1,
|
|
19698
19733
|
capture: !1
|
|
19699
|
-
}), window.addEventListener("mouseup",
|
|
19734
|
+
}), window.addEventListener("mouseup", ni, {
|
|
19700
19735
|
passive: !1
|
|
19701
|
-
}), window.addEventListener("touchend",
|
|
19736
|
+
}), window.addEventListener("touchend", ni, {
|
|
19702
19737
|
passive: !1
|
|
19703
19738
|
});
|
|
19704
19739
|
}
|
|
@@ -19749,10 +19784,10 @@ function Nx(o, t) {
|
|
|
19749
19784
|
}
|
|
19750
19785
|
};
|
|
19751
19786
|
}
|
|
19752
|
-
var
|
|
19787
|
+
var js, w1 = {
|
|
19753
19788
|
DND_ZONE_ACTIVE: "dnd-zone-active",
|
|
19754
19789
|
DND_ZONE_DRAG_DISABLED: "dnd-zone-drag-disabled"
|
|
19755
|
-
}, up = (
|
|
19790
|
+
}, up = (js = {}, ti(js, w1.DND_ZONE_ACTIVE, "Tab to one the items and press space-bar or enter to start dragging it"), ti(js, w1.DND_ZONE_DRAG_DISABLED, "This is a disabled drag and drop list"), js), Hx = "dnd-action-aria-alert", $t;
|
|
19756
19791
|
function _1() {
|
|
19757
19792
|
$t || ($t = document.createElement("div"), (function() {
|
|
19758
19793
|
$t.id = Hx, $t.style.position = "fixed", $t.style.bottom = "0", $t.style.left = "0", $t.style.zIndex = "-5", $t.style.opacity = "0", $t.style.height = "0", $t.style.width = "0", $t.setAttribute("role", "alert");
|
|
@@ -19774,7 +19809,7 @@ function Bx(o, t) {
|
|
|
19774
19809
|
var r = document.createElement("div");
|
|
19775
19810
|
return r.id = o, r.innerHTML = "<p>".concat(t, "</p>"), r.style.display = "none", r.style.position = "fixed", r.style.zIndex = "-5", r;
|
|
19776
19811
|
}
|
|
19777
|
-
function
|
|
19812
|
+
function Go(o) {
|
|
19778
19813
|
if (!nd) {
|
|
19779
19814
|
$t || _1(), $t.innerHTML = "";
|
|
19780
19815
|
var t = document.createTextNode(o);
|
|
@@ -19788,13 +19823,13 @@ function Ux(o, t) {
|
|
|
19788
19823
|
Hr.size === 0 && (Da = Wx(), window.addEventListener("keydown", hp), window.addEventListener("click", fp)), Hr.has(t) || Hr.set(t, /* @__PURE__ */ new Set()), Hr.get(t).has(o) || (Hr.get(t).add(o), Qf());
|
|
19789
19824
|
}
|
|
19790
19825
|
function X2(o, t) {
|
|
19791
|
-
Qt === o &&
|
|
19826
|
+
Qt === o && Ki(), Hr.get(t).delete(o), ep(), Hr.get(t).size === 0 && Hr.delete(t), Hr.size === 0 && (window.removeEventListener("keydown", hp), window.removeEventListener("click", fp), Da = void 0, Vx());
|
|
19792
19827
|
}
|
|
19793
19828
|
function hp(o) {
|
|
19794
|
-
Ar && o.key === "Escape" &&
|
|
19829
|
+
Ar && o.key === "Escape" && Ki();
|
|
19795
19830
|
}
|
|
19796
19831
|
function fp() {
|
|
19797
|
-
Ar && (Ma.has(document.activeElement) ||
|
|
19832
|
+
Ar && (Ma.has(document.activeElement) || Ki());
|
|
19798
19833
|
}
|
|
19799
19834
|
function Kx(o) {
|
|
19800
19835
|
if (Ar) {
|
|
@@ -19804,13 +19839,13 @@ function Kx(o) {
|
|
|
19804
19839
|
var r = Xt.get(Qt), n = r.items, i = n.find(function(f) {
|
|
19805
19840
|
return f[Bt] === rn;
|
|
19806
19841
|
}), s = n.indexOf(i), a = n.splice(s, 1)[0], l = Xt.get(t), c = l.items, u = l.autoAriaDisabled;
|
|
19807
|
-
t.getBoundingClientRect().top < Qt.getBoundingClientRect().top || t.getBoundingClientRect().left < Qt.getBoundingClientRect().left ? (c.push(a), u ||
|
|
19842
|
+
t.getBoundingClientRect().top < Qt.getBoundingClientRect().top || t.getBoundingClientRect().left < Qt.getBoundingClientRect().left ? (c.push(a), u || Go("Moved item ".concat(Nn, " to the end of the list ").concat(bo))) : (c.unshift(a), u || Go("Moved item ".concat(Nn, " to the beginning of the list ").concat(bo)));
|
|
19808
19843
|
var d = Qt;
|
|
19809
|
-
|
|
19844
|
+
ri(d, n, {
|
|
19810
19845
|
trigger: tr.DROPPED_INTO_ANOTHER,
|
|
19811
19846
|
id: rn,
|
|
19812
19847
|
source: rr.KEYBOARD
|
|
19813
|
-
}),
|
|
19848
|
+
}), ri(t, c, {
|
|
19814
19849
|
trigger: tr.DROPPED_INTO_ZONE,
|
|
19815
19850
|
id: rn,
|
|
19816
19851
|
source: rr.KEYBOARD
|
|
@@ -19824,9 +19859,9 @@ function pp() {
|
|
|
19824
19859
|
return r(Xt.get(t));
|
|
19825
19860
|
});
|
|
19826
19861
|
}
|
|
19827
|
-
function
|
|
19862
|
+
function Ki() {
|
|
19828
19863
|
var o = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !0;
|
|
19829
|
-
Xt.get(Qt).autoAriaDisabled ||
|
|
19864
|
+
Xt.get(Qt).autoAriaDisabled || Go("Stopped dragging item ".concat(Nn)), Ma.has(document.activeElement) && document.activeElement.blur(), o && Gn(Qt, Xt.get(Qt).items, {
|
|
19830
19865
|
trigger: tr.DRAG_STOPPED,
|
|
19831
19866
|
id: rn,
|
|
19832
19867
|
source: rr.KEYBOARD
|
|
@@ -19857,7 +19892,7 @@ function Yx(o, t) {
|
|
|
19857
19892
|
case " ": {
|
|
19858
19893
|
if ((d.target.disabled !== void 0 || d.target.href || d.target.isContentEditable) && !Ma.has(d.target))
|
|
19859
19894
|
return;
|
|
19860
|
-
d.preventDefault(), d.stopPropagation(), Ar ?
|
|
19895
|
+
d.preventDefault(), d.stopPropagation(), Ar ? Ki() : s(d);
|
|
19861
19896
|
break;
|
|
19862
19897
|
}
|
|
19863
19898
|
case "ArrowDown":
|
|
@@ -19865,7 +19900,7 @@ function Yx(o, t) {
|
|
|
19865
19900
|
if (!Ar) return;
|
|
19866
19901
|
d.preventDefault(), d.stopPropagation();
|
|
19867
19902
|
var f = Xt.get(o), h = f.items, p = Array.from(o.children), g = p.indexOf(d.currentTarget);
|
|
19868
|
-
g < p.length - 1 && (r.autoAriaDisabled ||
|
|
19903
|
+
g < p.length - 1 && (r.autoAriaDisabled || Go("Moved item ".concat(Nn, " to position ").concat(g + 2, " in the list ").concat(bo)), n(h, g, g + 1), ri(o, h, {
|
|
19869
19904
|
trigger: tr.DROPPED_INTO_ZONE,
|
|
19870
19905
|
id: rn,
|
|
19871
19906
|
source: rr.KEYBOARD
|
|
@@ -19877,7 +19912,7 @@ function Yx(o, t) {
|
|
|
19877
19912
|
if (!Ar) return;
|
|
19878
19913
|
d.preventDefault(), d.stopPropagation();
|
|
19879
19914
|
var v = Xt.get(o), m = v.items, b = Array.from(o.children), k = b.indexOf(d.currentTarget);
|
|
19880
|
-
k > 0 && (r.autoAriaDisabled ||
|
|
19915
|
+
k > 0 && (r.autoAriaDisabled || Go("Moved item ".concat(Nn, " to position ").concat(k, " in the list ").concat(bo)), n(m, k, k - 1), ri(o, m, {
|
|
19881
19916
|
trigger: tr.DROPPED_INTO_ZONE,
|
|
19882
19917
|
id: rn,
|
|
19883
19918
|
source: rr.KEYBOARD
|
|
@@ -19897,7 +19932,7 @@ function Yx(o, t) {
|
|
|
19897
19932
|
return Xt.get(p).dropTargetClasses;
|
|
19898
19933
|
}), !r.autoAriaDisabled) {
|
|
19899
19934
|
var h = "Started dragging item ".concat(Nn, ". Use the arrow keys to move it within its list ").concat(bo);
|
|
19900
|
-
f.length > 1 && (h += ", or tab to another list in order to move the item into it"),
|
|
19935
|
+
f.length > 1 && (h += ", or tab to another list in order to move the item into it"), Go(h);
|
|
19901
19936
|
}
|
|
19902
19937
|
Gn(o, Xt.get(o).items, {
|
|
19903
19938
|
trigger: tr.DRAG_STARTED,
|
|
@@ -19906,7 +19941,7 @@ function Yx(o, t) {
|
|
|
19906
19941
|
}), pp();
|
|
19907
19942
|
}
|
|
19908
19943
|
function a(d) {
|
|
19909
|
-
Ar && d.currentTarget !== ho && (d.stopPropagation(),
|
|
19944
|
+
Ar && d.currentTarget !== ho && (d.stopPropagation(), Ki(!1), s(d));
|
|
19910
19945
|
}
|
|
19911
19946
|
function l(d) {
|
|
19912
19947
|
var f = Xt.get(o), h = f.items, p = Array.from(o.children), g = p.indexOf(d);
|
|
@@ -19971,17 +20006,17 @@ function J2(o) {
|
|
|
19971
20006
|
return !{}.hasOwnProperty.call(d, Bt);
|
|
19972
20007
|
});
|
|
19973
20008
|
if (l)
|
|
19974
|
-
throw new Error("missing '".concat(Bt, "' property for item ").concat(
|
|
20009
|
+
throw new Error("missing '".concat(Bt, "' property for item ").concat(_i(l)));
|
|
19975
20010
|
if (i && !Array.isArray(i))
|
|
19976
|
-
throw new Error("dropTargetClasses should be an array but instead it is a ".concat(
|
|
20011
|
+
throw new Error("dropTargetClasses should be an array but instead it is a ".concat(Vo(i), ", ").concat(_i(i)));
|
|
19977
20012
|
if (r && !Q2(r))
|
|
19978
|
-
throw new Error("zoneTabIndex should be a number but instead it is a ".concat(
|
|
20013
|
+
throw new Error("zoneTabIndex should be a number but instead it is a ".concat(Vo(r), ", ").concat(_i(r)));
|
|
19979
20014
|
if (n && !Q2(n))
|
|
19980
|
-
throw new Error("zoneItemTabIndex should be a number but instead it is a ".concat(
|
|
20015
|
+
throw new Error("zoneItemTabIndex should be a number but instead it is a ".concat(Vo(n), ", ").concat(_i(n)));
|
|
19981
20016
|
if (s !== void 0 && s !== !1) {
|
|
19982
20017
|
var c = s === !0, u = typeof s == "number" && isFinite(s) && s >= 0;
|
|
19983
20018
|
if (!c && !u)
|
|
19984
|
-
throw new Error("delayTouchStart should be a boolean (true/false) or a non-negative number but instead it is a ".concat(
|
|
20019
|
+
throw new Error("delayTouchStart should be a boolean (true/false) or a non-negative number but instead it is a ".concat(Vo(s), ", ").concat(_i(s)));
|
|
19985
20020
|
}
|
|
19986
20021
|
}
|
|
19987
20022
|
function Q2(o) {
|
|
@@ -20008,16 +20043,16 @@ function gp(o) {
|
|
|
20008
20043
|
}
|
|
20009
20044
|
};
|
|
20010
20045
|
}
|
|
20011
|
-
var Nr = gp(!0),
|
|
20046
|
+
var Nr = gp(!0), qo = gp(!1);
|
|
20012
20047
|
function eu() {
|
|
20013
20048
|
return {
|
|
20014
|
-
dragDisabled:
|
|
20049
|
+
dragDisabled: qo.get() || Nr.get(),
|
|
20015
20050
|
zoneItemTabIndex: -1
|
|
20016
20051
|
};
|
|
20017
20052
|
}
|
|
20018
20053
|
function qn(o, t) {
|
|
20019
20054
|
var r;
|
|
20020
|
-
|
|
20055
|
+
qo.set((r = t?.dragDisabled) !== null && r !== void 0 ? r : !1);
|
|
20021
20056
|
var n = t, i = qx(o, Fn(Fn({}, n), eu()));
|
|
20022
20057
|
function s() {
|
|
20023
20058
|
i.update(Fn(Fn({}, n), eu()));
|
|
@@ -20034,7 +20069,7 @@ function qn(o, t) {
|
|
|
20034
20069
|
return o.addEventListener("consider", a), o.addEventListener("finalize", l), {
|
|
20035
20070
|
update: function(u) {
|
|
20036
20071
|
var d, f;
|
|
20037
|
-
n = u,
|
|
20072
|
+
n = u, qo.set((d = (f = n) === null || f === void 0 ? void 0 : f.dragDisabled) !== null && d !== void 0 ? d : !1), s();
|
|
20038
20073
|
},
|
|
20039
20074
|
destroy: function() {
|
|
20040
20075
|
o.removeEventListener("consider", a), o.removeEventListener("finalize", l), Nr.unsubscribe(s);
|
|
@@ -20053,19 +20088,19 @@ function ld(o) {
|
|
|
20053
20088
|
Nr.set(!0), window.removeEventListener("mouseup", n), window.removeEventListener("touchend", n);
|
|
20054
20089
|
}
|
|
20055
20090
|
var i = function() {
|
|
20056
|
-
var a =
|
|
20091
|
+
var a = qo.get(), l = Nr.get();
|
|
20057
20092
|
a ? (o.tabIndex = -1, o.style.cursor = "") : (o.tabIndex = l ? 0 : -1, o.style.cursor = l ? "grab" : "grabbing");
|
|
20058
20093
|
};
|
|
20059
|
-
return
|
|
20094
|
+
return qo.subscribe(i), Nr.subscribe(i), o.addEventListener("mousedown", t), o.addEventListener("touchstart", t), o.addEventListener("keydown", r), {
|
|
20060
20095
|
update: function() {
|
|
20061
20096
|
},
|
|
20062
20097
|
destroy: function() {
|
|
20063
|
-
o.removeEventListener("mousedown", t), o.removeEventListener("touchstart", t), o.removeEventListener("keydown", r),
|
|
20098
|
+
o.removeEventListener("mousedown", t), o.removeEventListener("touchstart", t), o.removeEventListener("keydown", r), qo.unsubscribe(i), Nr.unsubscribe(i);
|
|
20064
20099
|
}
|
|
20065
20100
|
};
|
|
20066
20101
|
}
|
|
20067
20102
|
var Jx = e.from_html('<button type="button"><!></button>'), Qx = e.from_html("<div><!></div>"), eC = e.from_html("<div><!> <!> <!></div>");
|
|
20068
|
-
function
|
|
20103
|
+
function oi(o, t) {
|
|
20069
20104
|
e.push(t, !0);
|
|
20070
20105
|
let r = e.prop(t, "reorderable", 3, !1), n = e.prop(t, "removeLabel", 3, "Remove"), i = e.prop(t, "reorderLabel", 3, "Reorder");
|
|
20071
20106
|
const s = "flex-center size-26 shrink-0 rounded-full superellipse transition-colors hover:bg-black/5 hover:text-(--fg) dark:hover:bg-white/10";
|
|
@@ -20116,7 +20151,7 @@ function ii(o, t) {
|
|
|
20116
20151
|
}
|
|
20117
20152
|
e.delegate(["click"]);
|
|
20118
20153
|
var tC = e.from_html('<div class="superellipse flex-center rounded-[20px] bg-white/[0.03] px-16 py-8 text-[13px] text-(--fg-muted)"><!></div>');
|
|
20119
|
-
function
|
|
20154
|
+
function Yi(o, t) {
|
|
20120
20155
|
var r = tC(), n = e.child(r);
|
|
20121
20156
|
e.snippet(n, () => t.children), e.reset(r), e.append(o, r);
|
|
20122
20157
|
}
|
|
@@ -20125,7 +20160,7 @@ const tu = (o) => {
|
|
|
20125
20160
|
e.append(o, t);
|
|
20126
20161
|
};
|
|
20127
20162
|
var rC = e.from_svg('<svg viewBox="0 0 70 96" fill="none" class="size-full" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H44L70 26V96H0V0Z" fill="url(#paint0_linear_1423_131)"></path><path d="M43.793 0.5L69.5 26.207V95.5H0.5V0.5H43.793Z" stroke="white" stroke-opacity="0.3"></path><path d="M44 26H70L44 0V26Z" fill="url(#paint1_linear_1423_131)"></path><defs><linearGradient id="paint0_linear_1423_131" x1="48" y1="12.8616" x2="3.64182e-06" y2="96" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.4"></stop><stop offset="1" stop-color="white"></stop></linearGradient><linearGradient id="paint1_linear_1423_131" x1="57" y1="13" x2="44" y2="26" gradientUnits="userSpaceOnUse"><stop stop-color="white" stop-opacity="0.6"></stop><stop offset="1" stop-color="white"></stop></linearGradient></defs></svg>'), nC = e.from_html('<div class="absolute inset-0 flex items-end p-4 text-[12px]/none font-semibold tracking-wide text-neutral-500 dark:text-neutral-300"><div class="h-20 px-4 rounded-[4px] bg-sky-500 shadow-xs text-white flex-center"> </div></div>'), oC = e.from_html('<div class="absolute inset-6 flex items-center justify-center"><div class="relative aspect-[70/96] h-[92%]"><!> <!></div></div>'), iC = e.from_html('<div class="relative aspect-[70/96] h-22"><!></div>');
|
|
20128
|
-
function
|
|
20163
|
+
function ii(o, t) {
|
|
20129
20164
|
e.push(t, !0);
|
|
20130
20165
|
let r = e.prop(t, "ext", 3, ""), n = e.prop(t, "layout", 3, "grid");
|
|
20131
20166
|
const i = e.derived(() => r().replace(/^\./, "").toUpperCase());
|
|
@@ -20158,10 +20193,10 @@ function si(o, t) {
|
|
|
20158
20193
|
function cd(o) {
|
|
20159
20194
|
typeof document > "u" || document.dispatchEvent(new CustomEvent("okno:structure", { detail: o }));
|
|
20160
20195
|
}
|
|
20161
|
-
function
|
|
20196
|
+
function ks(o, t, r) {
|
|
20162
20197
|
t !== r && cd({ list: o, op: "reorder", from: t, to: r });
|
|
20163
20198
|
}
|
|
20164
|
-
function
|
|
20199
|
+
function Gi(o, t) {
|
|
20165
20200
|
cd({ list: o, op: "remove", index: t });
|
|
20166
20201
|
}
|
|
20167
20202
|
function sC(o, t) {
|
|
@@ -20303,7 +20338,7 @@ function MC(o, t) {
|
|
|
20303
20338
|
e.set(g, !1), he.length !== 0 && _(e.get(c) ? [...e.get(f), ...he] : [he[0]]);
|
|
20304
20339
|
}
|
|
20305
20340
|
function S(Y) {
|
|
20306
|
-
_(e.get(f).filter((se, ge) => ge !== Y)), e.get(l) && e.get(c) &&
|
|
20341
|
+
_(e.get(f).filter((se, ge) => ge !== Y)), e.get(l) && e.get(c) && Gi(e.get(b), Y);
|
|
20307
20342
|
}
|
|
20308
20343
|
function R(Y) {
|
|
20309
20344
|
e.set(m, Y, !0), e.get(p)?.click();
|
|
@@ -20364,7 +20399,7 @@ function MC(o, t) {
|
|
|
20364
20399
|
getRows: () => e.get(D),
|
|
20365
20400
|
setRows: (Y) => e.set(D, Y, !0),
|
|
20366
20401
|
onReorder: (Y, se) => {
|
|
20367
|
-
_(Y.map((ge) => ge.item)), e.get(l) &&
|
|
20402
|
+
_(Y.map((ge) => ge.item)), e.get(l) && ks(e.get(b), se.from, se.to);
|
|
20368
20403
|
}
|
|
20369
20404
|
});
|
|
20370
20405
|
function H(Y) {
|
|
@@ -20456,7 +20491,7 @@ function MC(o, t) {
|
|
|
20456
20491
|
var se = gC(), ge = e.first_child(se);
|
|
20457
20492
|
{
|
|
20458
20493
|
var he = (le) => {
|
|
20459
|
-
|
|
20494
|
+
Yi(le, {
|
|
20460
20495
|
children: (fe, ve) => {
|
|
20461
20496
|
e.next();
|
|
20462
20497
|
var ue = e.text("No media");
|
|
@@ -20484,7 +20519,7 @@ function MC(o, t) {
|
|
|
20484
20519
|
var Re = cC(), We = e.child(Re);
|
|
20485
20520
|
{
|
|
20486
20521
|
let Ut = e.derived(() => q(e.get(Le).src));
|
|
20487
|
-
|
|
20522
|
+
ii(We, {
|
|
20488
20523
|
get ext() {
|
|
20489
20524
|
return e.get(Ut);
|
|
20490
20525
|
},
|
|
@@ -20601,7 +20636,7 @@ function MC(o, t) {
|
|
|
20601
20636
|
});
|
|
20602
20637
|
};
|
|
20603
20638
|
let Re = e.derived(() => e.get(D).length > 1);
|
|
20604
|
-
|
|
20639
|
+
oi(Dt, {
|
|
20605
20640
|
onremove: () => S(e.get(xe)),
|
|
20606
20641
|
get reorderable() {
|
|
20607
20642
|
return e.get(Re);
|
|
@@ -20671,7 +20706,7 @@ function MC(o, t) {
|
|
|
20671
20706
|
var be = bC(), Pe = e.child(be);
|
|
20672
20707
|
{
|
|
20673
20708
|
let Ae = e.derived(() => q(e.get(h).src));
|
|
20674
|
-
|
|
20709
|
+
ii(Pe, {
|
|
20675
20710
|
get ext() {
|
|
20676
20711
|
return e.get(Ae);
|
|
20677
20712
|
},
|
|
@@ -20859,7 +20894,7 @@ function MC(o, t) {
|
|
|
20859
20894
|
]))), e.delegated("click", ge, () => U(e.get(h).src)), e.append(Y, se);
|
|
20860
20895
|
}, de = (Y) => {
|
|
20861
20896
|
var se = LC(), ge = e.first_child(se);
|
|
20862
|
-
|
|
20897
|
+
Yi(ge, {
|
|
20863
20898
|
children: (Q, ee) => {
|
|
20864
20899
|
e.next();
|
|
20865
20900
|
var le = e.text("No media");
|
|
@@ -20898,7 +20933,7 @@ function IC(o, t) {
|
|
|
20898
20933
|
const r = (A, D = e.noop) => {
|
|
20899
20934
|
{
|
|
20900
20935
|
let I = e.derived(() => e.get(c) && e.get(C).length > 1);
|
|
20901
|
-
|
|
20936
|
+
oi(A, {
|
|
20902
20937
|
onremove: () => M(D()),
|
|
20903
20938
|
get reorderable() {
|
|
20904
20939
|
return e.get(I);
|
|
@@ -20949,7 +20984,7 @@ function IC(o, t) {
|
|
|
20949
20984
|
getRows: () => e.get(C),
|
|
20950
20985
|
setRows: (A) => e.set(C, A, !0),
|
|
20951
20986
|
onReorder: (A, D) => {
|
|
20952
|
-
t.onchange(A.map((I) => I.slug)), e.get(d) &&
|
|
20987
|
+
t.onchange(A.map((I) => I.slug)), e.get(d) && ks(e.get(f), D.from, D.to);
|
|
20953
20988
|
}
|
|
20954
20989
|
});
|
|
20955
20990
|
function O() {
|
|
@@ -20974,12 +21009,12 @@ function IC(o, t) {
|
|
|
20974
21009
|
to: `${e.get(l)}.${H}`
|
|
20975
21010
|
} : void 0
|
|
20976
21011
|
});
|
|
20977
|
-
} else N.length === 1 && I.length === 0 &&
|
|
21012
|
+
} else N.length === 1 && I.length === 0 && Gi(e.get(f), A.indexOf(N[0]));
|
|
20978
21013
|
}
|
|
20979
21014
|
function M(A) {
|
|
20980
21015
|
if (e.get(c)) {
|
|
20981
21016
|
const D = e.get(m).indexOf(A);
|
|
20982
|
-
t.onchange(e.get(m).filter((I) => I !== A)), e.get(d) && D >= 0 &&
|
|
21017
|
+
t.onchange(e.get(m).filter((I) => I !== A)), e.get(d) && D >= 0 && Gi(e.get(f), D);
|
|
20983
21018
|
} else
|
|
20984
21019
|
t.onchange(null);
|
|
20985
21020
|
}
|
|
@@ -20995,7 +21030,7 @@ function IC(o, t) {
|
|
|
20995
21030
|
var D = EC(), I = e.child(D);
|
|
20996
21031
|
{
|
|
20997
21032
|
var N = (Z) => {
|
|
20998
|
-
|
|
21033
|
+
Yi(Z, {
|
|
20999
21034
|
children: (q, U) => {
|
|
21000
21035
|
e.next();
|
|
21001
21036
|
var X = e.text("No items yet");
|
|
@@ -21175,7 +21210,7 @@ function RC(o, t) {
|
|
|
21175
21210
|
var u = e.sibling(l, 2), d = e.child(u, !0);
|
|
21176
21211
|
e.reset(u);
|
|
21177
21212
|
var f = e.sibling(u, 2);
|
|
21178
|
-
|
|
21213
|
+
oi(f, {
|
|
21179
21214
|
get onremove() {
|
|
21180
21215
|
return t.onremove;
|
|
21181
21216
|
},
|
|
@@ -21228,7 +21263,7 @@ function VC(o, t) {
|
|
|
21228
21263
|
getRows: () => e.get(c),
|
|
21229
21264
|
setRows: (L) => e.set(c, L, !0),
|
|
21230
21265
|
onReorder: (L, T) => {
|
|
21231
|
-
s.updateField(t.field.path, L.map((S) => S.data)), e.get(a) &&
|
|
21266
|
+
s.updateField(t.field.path, L.map((S) => S.data)), e.get(a) && ks(e.get(l), T.from, T.to);
|
|
21232
21267
|
}
|
|
21233
21268
|
}), p = e.derived(() => t.field.def.block), g = e.derived(() => r.schema.blocks?.[e.get(p)] ?? null), v = e.derived(() => e.get(g)?.name ?? Ir(e.get(p))), m = e.derived(() => e.get(g)?.fields ? Object.entries(e.get(g).fields) : []);
|
|
21234
21269
|
function b(L, T) {
|
|
@@ -21260,7 +21295,7 @@ function VC(o, t) {
|
|
|
21260
21295
|
s.updateField(t.field.path, [...e.get(x), z1(e.get(g), null)]), e.get(a) && dd(e.get(l), L);
|
|
21261
21296
|
}
|
|
21262
21297
|
function C(L) {
|
|
21263
|
-
s.updateField(t.field.path, e.get(x).filter((T, S) => S !== L)), e.get(a) &&
|
|
21298
|
+
s.updateField(t.field.path, e.get(x).filter((T, S) => S !== L)), e.get(a) && Gi(e.get(l), L);
|
|
21264
21299
|
}
|
|
21265
21300
|
var E = e.comment(), P = e.first_child(E);
|
|
21266
21301
|
{
|
|
@@ -21271,7 +21306,7 @@ function VC(o, t) {
|
|
|
21271
21306
|
var T = HC(), S = e.child(T);
|
|
21272
21307
|
{
|
|
21273
21308
|
var R = (A) => {
|
|
21274
|
-
|
|
21309
|
+
Yi(A, {
|
|
21275
21310
|
children: (D, I) => {
|
|
21276
21311
|
e.next();
|
|
21277
21312
|
var N = e.text();
|
|
@@ -21303,7 +21338,7 @@ function VC(o, t) {
|
|
|
21303
21338
|
children: (oe, j) => {
|
|
21304
21339
|
var W = e.comment(), K = e.first_child(W);
|
|
21305
21340
|
e.each(K, 17, () => k(`${t.field.path}.${e.get(H)}`, e.get(N).data ?? {}), (G) => G.key, (G, J) => {
|
|
21306
|
-
|
|
21341
|
+
si(G, {
|
|
21307
21342
|
get field() {
|
|
21308
21343
|
return e.get(J);
|
|
21309
21344
|
}
|
|
@@ -21348,7 +21383,7 @@ function VC(o, t) {
|
|
|
21348
21383
|
}, M = (L) => {
|
|
21349
21384
|
var T = WC();
|
|
21350
21385
|
e.each(T, 21, () => k(t.field.path, e.get(y)), (S) => S.key, (S, R) => {
|
|
21351
|
-
|
|
21386
|
+
si(S, {
|
|
21352
21387
|
get field() {
|
|
21353
21388
|
return e.get(R);
|
|
21354
21389
|
}
|
|
@@ -21362,7 +21397,7 @@ function VC(o, t) {
|
|
|
21362
21397
|
e.append(o, E), e.pop();
|
|
21363
21398
|
}
|
|
21364
21399
|
var BC = e.from_html('<div class="superellipse surface flex max-w-200 items-center gap-8 rounded-xl px-8 py-4 text-[13px] text-(--fg) backdrop-blur-xl"> </div>'), ZC = e.from_html("<!> <!>", 1);
|
|
21365
|
-
function
|
|
21400
|
+
function gi(o, t) {
|
|
21366
21401
|
e.push(t, !0);
|
|
21367
21402
|
let r = e.prop(t, "side", 3, "top"), n = e.prop(t, "align", 3, "center"), i = e.prop(t, "offset", 3, 4), s = e.prop(t, "delay", 3, 100), a = e.prop(t, "disabled", 3, !1);
|
|
21368
21403
|
const l = Gt("app"), c = e.derived(() => t.portalTarget ?? l?.floatingRoot ?? null);
|
|
@@ -21392,7 +21427,7 @@ function vi(o, t) {
|
|
|
21392
21427
|
});
|
|
21393
21428
|
}
|
|
21394
21429
|
var E = e.sibling(C, 2);
|
|
21395
|
-
e.component(E, () =>
|
|
21430
|
+
e.component(E, () => ci, (P, O) => {
|
|
21396
21431
|
O(P, {
|
|
21397
21432
|
get to() {
|
|
21398
21433
|
return e.get(c);
|
|
@@ -21517,7 +21552,7 @@ function mp(o, t) {
|
|
|
21517
21552
|
}
|
|
21518
21553
|
};
|
|
21519
21554
|
let p = e.derived(() => e.get(r).external ? "Opens in a new tab" : "Opens in the same tab");
|
|
21520
|
-
|
|
21555
|
+
gi(f, {
|
|
21521
21556
|
get content() {
|
|
21522
21557
|
return e.get(p);
|
|
21523
21558
|
},
|
|
@@ -21530,7 +21565,7 @@ function mp(o, t) {
|
|
|
21530
21565
|
var KC = e.from_html('<!> <button type="button" aria-label="Lock slug" title="Editing the URL slug — click to lock" class="flex-center absolute bottom-0 right-0 size-28 cursor-pointer rounded-[8px] text-neutral-400 transition-colors hover:bg-black/5 hover:text-neutral-700 active:bg-black/10 dark:text-white/40 dark:hover:bg-white/10 dark:hover:text-white"><!></button>', 1), YC = e.from_html('<!> <button type="button" aria-label="Edit slug" title="Locked — click to edit the URL slug" class="flex-center absolute bottom-0 right-0 size-28 cursor-pointer rounded-[8px] text-neutral-400 transition-colors hover:bg-black/5 hover:text-neutral-700 active:bg-black/10 dark:text-white/40 dark:hover:bg-white/10 dark:hover:text-white"><!></button>', 1), GC = e.from_html('<div class="relative"><!></div>');
|
|
21531
21566
|
function qC(o, t) {
|
|
21532
21567
|
e.push(t, !0);
|
|
21533
|
-
const { content: r } = Se(), i = Gt(Qn) ?? r, s = e.derived(() => t.field.def.from || "title"), a = e.derived(() =>
|
|
21568
|
+
const { content: r } = Se(), i = Gt(Qn) ?? r, s = e.derived(() => t.field.def.from || "title"), a = e.derived(() => Bo(String(i.formData?.[e.get(s)] ?? ""))), l = e.derived(() => t.field.value || e.get(a));
|
|
21534
21569
|
let c = e.state(!1), u = e.state(void 0);
|
|
21535
21570
|
function d() {
|
|
21536
21571
|
e.set(c, !0), !t.field.value && e.get(a) && t.onchange(e.get(a)), Vr().then(() => e.get(u)?.focus());
|
|
@@ -21539,10 +21574,10 @@ function qC(o, t) {
|
|
|
21539
21574
|
t.onchange(k.target.value);
|
|
21540
21575
|
}
|
|
21541
21576
|
function h(k) {
|
|
21542
|
-
t.onchange(
|
|
21577
|
+
t.onchange(Bo(k.target.value)), e.set(c, !1);
|
|
21543
21578
|
}
|
|
21544
21579
|
function p() {
|
|
21545
|
-
t.onchange(
|
|
21580
|
+
t.onchange(Bo(String(t.field.value ?? ""))), e.set(c, !1);
|
|
21546
21581
|
}
|
|
21547
21582
|
var g = GC(), v = e.child(g);
|
|
21548
21583
|
{
|
|
@@ -21696,7 +21731,7 @@ function bp(o, t) {
|
|
|
21696
21731
|
});
|
|
21697
21732
|
}), e.reset(m);
|
|
21698
21733
|
var y = e.sibling(m, 2);
|
|
21699
|
-
e.component(y, () =>
|
|
21734
|
+
e.component(y, () => ci, (x, w) => {
|
|
21700
21735
|
w(x, {
|
|
21701
21736
|
get to() {
|
|
21702
21737
|
return n;
|
|
@@ -21862,12 +21897,12 @@ function bp(o, t) {
|
|
|
21862
21897
|
});
|
|
21863
21898
|
}), e.append(o, u), e.pop();
|
|
21864
21899
|
}
|
|
21865
|
-
let
|
|
21900
|
+
let Rs;
|
|
21866
21901
|
function ew() {
|
|
21867
|
-
if (
|
|
21868
|
-
if (typeof document > "u") return
|
|
21902
|
+
if (Rs !== void 0) return Rs;
|
|
21903
|
+
if (typeof document > "u") return Rs = null;
|
|
21869
21904
|
const o = document.createElement("canvas");
|
|
21870
|
-
return o.width = o.height = 1,
|
|
21905
|
+
return o.width = o.height = 1, Rs = o.getContext("2d");
|
|
21871
21906
|
}
|
|
21872
21907
|
function tw(o) {
|
|
21873
21908
|
const t = o.trim();
|
|
@@ -22089,7 +22124,7 @@ function kp(o, t) {
|
|
|
22089
22124
|
});
|
|
22090
22125
|
}
|
|
22091
22126
|
var k = e.sibling(b, 2);
|
|
22092
|
-
e.component(k, () =>
|
|
22127
|
+
e.component(k, () => ci, (y, x) => {
|
|
22093
22128
|
x(y, {
|
|
22094
22129
|
get to() {
|
|
22095
22130
|
return i;
|
|
@@ -22173,7 +22208,7 @@ function yp(o, t) {
|
|
|
22173
22208
|
L[_] = M, h(L), p(_, M);
|
|
22174
22209
|
}
|
|
22175
22210
|
function v(_) {
|
|
22176
|
-
h(e.get(d).filter((M, L) => L !== _).map((M) => M.value)), e.get(s) &&
|
|
22211
|
+
h(e.get(d).filter((M, L) => L !== _).map((M) => M.value)), e.get(s) && Gi(e.get(a), _);
|
|
22177
22212
|
}
|
|
22178
22213
|
function m() {
|
|
22179
22214
|
const _ = e.get(
|
|
@@ -22190,13 +22225,13 @@ function yp(o, t) {
|
|
|
22190
22225
|
getRows: () => e.get(d),
|
|
22191
22226
|
setRows: (_) => e.set(d, _, !0),
|
|
22192
22227
|
onReorder: (_, M) => {
|
|
22193
|
-
h(_.map((L) => L.value)), e.get(s) &&
|
|
22228
|
+
h(_.map((L) => L.value)), e.get(s) && ks(e.get(a), M.from, M.to);
|
|
22194
22229
|
}
|
|
22195
22230
|
}), k = "superellipse first:rounded-t-[20px] last:rounded-b-[20px] has-[:focus-visible]:outline-2 has-[:focus-visible]:-outline-offset-2 has-[:focus-visible]:outline-sky-500";
|
|
22196
22231
|
var y = gw(), x = e.child(y);
|
|
22197
22232
|
{
|
|
22198
22233
|
var w = (_) => {
|
|
22199
|
-
|
|
22234
|
+
Yi(_, {
|
|
22200
22235
|
children: (M, L) => {
|
|
22201
22236
|
e.next();
|
|
22202
22237
|
var T = e.text("No items yet");
|
|
@@ -22269,7 +22304,7 @@ function yp(o, t) {
|
|
|
22269
22304
|
}
|
|
22270
22305
|
};
|
|
22271
22306
|
let H = e.derived(() => e.get(T).value?.external ? "Opens in a new tab" : "Opens in the same tab");
|
|
22272
|
-
|
|
22307
|
+
gi(D, {
|
|
22273
22308
|
get content() {
|
|
22274
22309
|
return e.get(H);
|
|
22275
22310
|
},
|
|
@@ -22281,7 +22316,7 @@ function yp(o, t) {
|
|
|
22281
22316
|
var I = e.sibling(z, 2);
|
|
22282
22317
|
{
|
|
22283
22318
|
let N = e.derived(() => e.get(d).length > 1);
|
|
22284
|
-
|
|
22319
|
+
oi(I, {
|
|
22285
22320
|
onremove: () => v(e.get(S)),
|
|
22286
22321
|
get reorderable() {
|
|
22287
22322
|
return e.get(N);
|
|
@@ -22357,7 +22392,7 @@ function yp(o, t) {
|
|
|
22357
22392
|
var z = e.sibling($, 2);
|
|
22358
22393
|
{
|
|
22359
22394
|
let A = e.derived(() => e.get(d).length > 1);
|
|
22360
|
-
|
|
22395
|
+
oi(z, {
|
|
22361
22396
|
onremove: () => v(e.get(S)),
|
|
22362
22397
|
get reorderable() {
|
|
22363
22398
|
return e.get(A);
|
|
@@ -23072,7 +23107,7 @@ function Lp(o, t) {
|
|
|
23072
23107
|
}
|
|
23073
23108
|
e.delegate(["change"]);
|
|
23074
23109
|
var Mw = e.from_html("<!> <!>", 1), iu = e.from_html("<!> <!> <!>", 1), Dw = e.from_html('<span class="text-[11px]/none text-neutral-300 tabular-nums"> </span>'), Pw = e.from_html('<button><span class="size-8 rounded-full bg-sky-400"></span></button>'), Ow = e.from_html('<p class="text-sm text-red-500"> </p>'), Ew = e.from_html("<div><!></div>"), Tw = e.from_html("<p>Required</p>"), Aw = e.from_html("<p> </p>"), Iw = e.from_html("<div><!> <!></div>");
|
|
23075
|
-
function
|
|
23110
|
+
function si(o, t) {
|
|
23076
23111
|
e.push(t, !0);
|
|
23077
23112
|
const r = (j) => {
|
|
23078
23113
|
var W = iu(), K = e.first_child(W);
|
|
@@ -23698,7 +23733,7 @@ function Zw(o, t) {
|
|
|
23698
23733
|
e.push(t, !0);
|
|
23699
23734
|
const { content: r, router: n, modals: i, can: s } = Se(), a = Ke(), l = e.derived(() => n.key), c = e.derived(() => n.itemId);
|
|
23700
23735
|
e.derived(() => n.isNew);
|
|
23701
|
-
const u = e.derived(() => e.get(l) ? r.getSchema(e.get(l)) : null), d = e.derived(() =>
|
|
23736
|
+
const u = e.derived(() => e.get(l) ? r.getSchema(e.get(l)) : null), d = e.derived(() => es(e.get(u), r.formData, r.originalData)), f = e.derived(() => e.get(l) ? n.view === "page" ? { kind: "pages", parent: e.get(l) } : n.view === "collection-item" || n.view === "collection" ? { kind: "collections", parent: e.get(l) } : null : null), h = e.derived(() => e.get(f) !== null && s.editStructure), p = e.derived(() => n.view === "page"), g = e.derived(() => e.get(p) && s.editStructure);
|
|
23702
23737
|
function v() {
|
|
23703
23738
|
e.get(f) && i.open("edit-fields", {
|
|
23704
23739
|
kind: e.get(f).kind,
|
|
@@ -23728,7 +23763,7 @@ function Zw(o, t) {
|
|
|
23728
23763
|
var _ = Vw(), M = e.first_child(_);
|
|
23729
23764
|
{
|
|
23730
23765
|
var L = ($) => {
|
|
23731
|
-
|
|
23766
|
+
gi($, { content: "Visit page", trigger: (z, A) => {
|
|
23732
23767
|
let D = () => A?.().props;
|
|
23733
23768
|
ke(z, e.spread_props(D, {
|
|
23734
23769
|
tone: "idle",
|
|
@@ -23877,7 +23912,7 @@ function Zw(o, t) {
|
|
|
23877
23912
|
}
|
|
23878
23913
|
});
|
|
23879
23914
|
}, N = (H) => {
|
|
23880
|
-
|
|
23915
|
+
si(H, {
|
|
23881
23916
|
get field() {
|
|
23882
23917
|
return e.get(z).item;
|
|
23883
23918
|
}
|
|
@@ -24349,7 +24384,7 @@ function Mp(o, t) {
|
|
|
24349
24384
|
});
|
|
24350
24385
|
});
|
|
24351
24386
|
var p = e.sibling(h, 2);
|
|
24352
|
-
e.component(p, () =>
|
|
24387
|
+
e.component(p, () => ci, (g, v) => {
|
|
24353
24388
|
v(g, {
|
|
24354
24389
|
get to() {
|
|
24355
24390
|
return i;
|
|
@@ -24385,7 +24420,7 @@ function Mp(o, t) {
|
|
|
24385
24420
|
});
|
|
24386
24421
|
}), e.append(o, s), e.pop();
|
|
24387
24422
|
}
|
|
24388
|
-
var d_ = e.from_html("<!> <!> <!>", 1),
|
|
24423
|
+
var d_ = e.from_html("<!> <!> <!>", 1), zs = e.from_html("<!> <!>", 1), u_ = e.from_html('<!> <label><span class="flex size-30 shrink-0 items-center justify-center text-(--fg-muted)"><!></span> <input type="text" placeholder="Search" autocomplete="off" spellcheck="false" class="min-w-0 flex-1 select-text bg-transparent pr-12 pb-1 text-[15px]/[110%] text-(--fg) outline-none placeholder:text-(--fg-muted)"/></label> <!>', 1), h_ = e.from_html("<!> <!> <!> <!> <!> <!>", 1);
|
|
24389
24424
|
function f_(o, t) {
|
|
24390
24425
|
e.push(t, !0);
|
|
24391
24426
|
const { content: r, router: n, modals: i, can: s } = Se(), a = Ke(), l = e.derived(() => n.key), c = e.derived(() => e.get(l) ? r.getSchema(e.get(l)) : null), u = e.derived(() => l5(e.get(l) ? r.getRecords(e.get(l)) : [], (T) => T.slug ?? T.id, e.get(c)?.order));
|
|
@@ -24445,7 +24480,7 @@ function f_(o, t) {
|
|
|
24445
24480
|
});
|
|
24446
24481
|
to(o, {
|
|
24447
24482
|
actions: (S) => {
|
|
24448
|
-
var R =
|
|
24483
|
+
var R = zs(), $ = e.first_child(R);
|
|
24449
24484
|
{
|
|
24450
24485
|
var F = (A) => {
|
|
24451
24486
|
var D = u_(), I = e.first_child(D);
|
|
@@ -24461,7 +24496,7 @@ function f_(o, t) {
|
|
|
24461
24496
|
align: "start",
|
|
24462
24497
|
origin: "origin-top-left",
|
|
24463
24498
|
children: (oe, j) => {
|
|
24464
|
-
var W =
|
|
24499
|
+
var W = zs(), K = e.first_child(W);
|
|
24465
24500
|
{
|
|
24466
24501
|
var G = (te) => {
|
|
24467
24502
|
var re = d_(), ae = e.first_child(re);
|
|
@@ -24601,7 +24636,7 @@ function f_(o, t) {
|
|
|
24601
24636
|
var Z = e.sibling(V, 2);
|
|
24602
24637
|
{
|
|
24603
24638
|
var q = (j) => {
|
|
24604
|
-
var W =
|
|
24639
|
+
var W = zs(), K = e.first_child(W);
|
|
24605
24640
|
me(K, {
|
|
24606
24641
|
icon: "input-text",
|
|
24607
24642
|
onclick: x,
|
|
@@ -24642,7 +24677,7 @@ function f_(o, t) {
|
|
|
24642
24677
|
var X = e.sibling(U, 2);
|
|
24643
24678
|
{
|
|
24644
24679
|
var oe = (j) => {
|
|
24645
|
-
var W =
|
|
24680
|
+
var W = zs(), K = e.first_child(W);
|
|
24646
24681
|
dt(K);
|
|
24647
24682
|
var G = e.sibling(K, 2);
|
|
24648
24683
|
me(G, {
|
|
@@ -24726,7 +24761,7 @@ function f_(o, t) {
|
|
|
24726
24761
|
var p_ = e.from_html('<div class="mt-10 first:mt-0"><!></div>'), g_ = e.from_html('<div class="flex flex-col p-10 space-y-24"><!> <!></div>');
|
|
24727
24762
|
function Dp(o, t) {
|
|
24728
24763
|
e.push(t, !0);
|
|
24729
|
-
const { content: r, router: n } = Se(), i = e.derived(() => n.key), s = e.derived(() => n.itemId), a = e.derived(() => e.get(i) ? r.getSchema(e.get(i)) : null), l = e.derived(() =>
|
|
24764
|
+
const { content: r, router: n } = Se(), i = e.derived(() => n.key), s = e.derived(() => n.itemId), a = e.derived(() => e.get(i) ? r.getSchema(e.get(i)) : null), l = e.derived(() => es(e.get(a), r.formData, r.originalData)), c = e.derived(() => !!e.get(a)?.drafts), u = e.derived(() => r.formData?.status === "draft");
|
|
24730
24765
|
function d(p) {
|
|
24731
24766
|
r.updateField("status", p);
|
|
24732
24767
|
}
|
|
@@ -24771,7 +24806,7 @@ function Dp(o, t) {
|
|
|
24771
24806
|
}
|
|
24772
24807
|
}), e.reset(O), e.append(P, O);
|
|
24773
24808
|
}, E = (P) => {
|
|
24774
|
-
|
|
24809
|
+
si(P, {
|
|
24775
24810
|
get field() {
|
|
24776
24811
|
return e.get(y).item;
|
|
24777
24812
|
}
|
|
@@ -24809,7 +24844,7 @@ function m_(o, t) {
|
|
|
24809
24844
|
var x = au(), w = e.first_child(x);
|
|
24810
24845
|
{
|
|
24811
24846
|
var C = (_) => {
|
|
24812
|
-
|
|
24847
|
+
gi(_, { content: "Visit page", trigger: (L, T) => {
|
|
24813
24848
|
let S = () => T?.().props;
|
|
24814
24849
|
ke(L, e.spread_props(S, {
|
|
24815
24850
|
tone: "idle",
|
|
@@ -24903,7 +24938,7 @@ function m_(o, t) {
|
|
|
24903
24938
|
var b_ = e.from_html("<!> <!> <!> <!> <!>", 1), k_ = e.from_html('<div class="mt-10 first:mt-0"><!></div>'), y_ = e.from_html('<div class="flex flex-col gap-8 p-10"></div>');
|
|
24904
24939
|
function x_(o, t) {
|
|
24905
24940
|
e.push(t, !0);
|
|
24906
|
-
const { content: r, router: n, modals: i, can: s } = Se(), a = Ke(), l = e.derived(() => n.key), c = e.derived(() => e.get(l) ? r.getSchema(e.get(l)) : null), u = e.derived(() =>
|
|
24941
|
+
const { content: r, router: n, modals: i, can: s } = Se(), a = Ke(), l = e.derived(() => n.key), c = e.derived(() => e.get(l) ? r.getSchema(e.get(l)) : null), u = e.derived(() => es(e.get(c), r.formData, r.originalData)), d = e.derived(() => e.get(l) ? e.get(c)?.name ?? e.get(c)?.label ?? e.get(l) : ""), f = e.derived(() => !!e.get(l) && s.editStructure);
|
|
24907
24942
|
function h() {
|
|
24908
24943
|
e.get(l) && i.open("edit-fields", { kind: "globals", parent: e.get(l) });
|
|
24909
24944
|
}
|
|
@@ -25024,7 +25059,7 @@ function x_(o, t) {
|
|
|
25024
25059
|
}
|
|
25025
25060
|
}), e.reset($), e.append(R, $);
|
|
25026
25061
|
}, S = (R) => {
|
|
25027
|
-
|
|
25062
|
+
si(R, {
|
|
25028
25063
|
get field() {
|
|
25029
25064
|
return e.get(_).item;
|
|
25030
25065
|
}
|
|
@@ -25118,7 +25153,7 @@ class L_ {
|
|
|
25118
25153
|
};
|
|
25119
25154
|
}
|
|
25120
25155
|
var S_ = e.from_html('<div class="absolute inset-0 bg-black/10 dark:bg-white/10 rounded-[10px] superellipse z-0"></div>'), M_ = e.from_html('<div role="option"><div class="relative aspect-square w-full"><!> <!></div> <div class="flex w-full min-w-0 flex-col items-center gap-2"><p class="w-full min-w-0 text-center text-[13px]/[1.25] font-medium wrap-break-word"><span><!></span></p></div></div>'), D_ = e.from_html('<div role="option"><div class="flex-center size-24 shrink-0"><!></div> <p class="min-w-0 flex-1 truncate text-[13px]/[1.2] font-medium"><!></p> <!></div>');
|
|
25121
|
-
function
|
|
25156
|
+
function Fs(o, t) {
|
|
25122
25157
|
e.push(t, !0);
|
|
25123
25158
|
let r = e.prop(t, "editing", 3, !1), n = e.prop(t, "layout", 3, "grid"), i = e.prop(t, "draggable", 3, !1), s = e.prop(t, "highlighted", 3, !1), a = e.prop(t, "cut", 3, !1), l = e.prop(t, "ghost", 3, !1), c = e.prop(t, "suffix", 3, "");
|
|
25124
25159
|
const u = e.derived(() => s() || t.selected), d = new L_({
|
|
@@ -25327,7 +25362,7 @@ function cu(o, t) {
|
|
|
25327
25362
|
e.set_attribute(f, "width", e.get(d)), e.set_attribute(f, "height", e.get(d)), e.set_attribute(f, "viewBox", `0 0 ${e.get(d)} ${e.get(d)}`), e.set_class(f, 0, e.clsx(["-rotate-90 shrink-0 text-sky-500", t.class]), "svelte-17bcvty"), e.set_attribute(h, "cx", e.get(u)), e.set_attribute(h, "cy", e.get(u)), e.set_attribute(h, "r", n()), e.set_attribute(h, "stroke-width", i());
|
|
25328
25363
|
}), e.append(o, f), e.pop();
|
|
25329
25364
|
}
|
|
25330
|
-
const
|
|
25365
|
+
const Ni = `<svg xmlns="http://www.w3.org/2000/svg" width="92" height="76" viewBox="0 0 92 76" fill="none"><g filter="url(#a)"><path fill="#0ea5e9" d="M0 14.2v47.037c0 2.333 0 4.127.117 5.562.119 1.45.36 2.595.88 3.612a9.14 9.14 0 0 0 3.992 3.993c1.018.519 2.162.76 3.613.88 1.434.116 3.228.116 5.561.116h63.074c2.333 0 4.127 0 5.562-.117 1.45-.118 2.595-.36 3.612-.879a9.14 9.14 0 0 0 3.993-3.993c.519-1.017.76-2.162.88-3.612.116-1.435.116-3.229.116-5.561V22.239c0-2.333 0-4.127-.117-5.561-.118-1.45-.36-2.595-.879-3.613a9.14 9.14 0 0 0-3.993-3.993c-1.017-.518-2.162-.76-3.612-.879-1.435-.117-3.229-.117-5.562-.117H46.33c-2.111 0-3.052-.004-3.929-.216a7.7 7.7 0 0 1-2.247-.937c-.767-.474-1.445-1.15-2.957-2.677l-.09-.09c-1.406-1.42-2.202-2.224-3.125-2.794A9.1 9.1 0 0 0 31.327.256C30.267 0 29.15 0 27.165 0H14.163c-2.333 0-4.127 0-5.561.117-1.45.119-2.595.36-3.613.88A9.14 9.14 0 0 0 .996 4.988C.478 6.007.236 7.151.117 8.602 0 10.036 0 11.83 0 14.163z"/></g><g filter="url(#b)"><path fill="url(#c)" d="M90.7 61.2v-33c0-4.726 0-7.089-.92-8.894a8.44 8.44 0 0 0-3.688-3.687c-1.805-.92-4.167-.92-8.893-.92h-63c-4.725 0-7.088 0-8.893.92a8.44 8.44 0 0 0-3.687 3.687c-.92 1.805-.92 4.168-.92 8.893v33c0 4.726 0 7.088.92 8.893a8.44 8.44 0 0 0 3.687 3.688c1.805.92 4.168.92 8.893.92h63c4.726 0 7.088 0 8.893-.92a8.44 8.44 0 0 0 3.688-3.688c.92-1.805.92-4.167.92-8.893"/></g><defs><filter id="a" width="91.402" height="76.4" x="0" y="0" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/><feBlend in2="shape" result="effect1_innerShadow_1031_96"/></filter><filter id="b" width="90" height="61" x=".699" y="14.699" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0"/><feBlend in2="shape" result="effect1_innerShadow_1031_96"/></filter><linearGradient id="c" x1="45.699" x2="45.699" y1="14.699" y2="74.699" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" stop-opacity=".5"/><stop offset="1" stop-color="#fff" stop-opacity=".2"/></linearGradient></defs></svg>
|
|
25331
25366
|
`, Nl = `<svg width="74" height="88" viewBox="0 0 74 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
25332
25367
|
<path d="M5.139 0H68.86L74 9H0L5.139 0Z" fill="white" fill-opacity="0.8"/>
|
|
25333
25368
|
<g filter="url(#filter0_ii_1106_106)">
|
|
@@ -25365,7 +25400,7 @@ const Fi = `<svg xmlns="http://www.w3.org/2000/svg" width="92" height="76" viewB
|
|
|
25365
25400
|
</defs>
|
|
25366
25401
|
</svg>
|
|
25367
25402
|
`, O1 = "application/x-okno-files";
|
|
25368
|
-
function
|
|
25403
|
+
function Si(o) {
|
|
25369
25404
|
return !!o.dataTransfer && Array.from(o.dataTransfer.types).includes(O1);
|
|
25370
25405
|
}
|
|
25371
25406
|
function Ea(o) {
|
|
@@ -25542,7 +25577,7 @@ function Op(o, t) {
|
|
|
25542
25577
|
}
|
|
25543
25578
|
function $(j, W, K) {
|
|
25544
25579
|
if (!j.dataTransfer) return;
|
|
25545
|
-
const G = document.createElement("div"), J = K.startsWith("files/"), te = K === "bin", re = J ? i.dragPreviews[K] : null, ae = te ? Nl : J ? u :
|
|
25580
|
+
const G = document.createElement("div"), J = K.startsWith("files/"), te = K === "bin", re = J ? i.dragPreviews[K] : null, ae = te ? Nl : J ? u : Ni, ie = J ? K.split("/").pop() ?? "" : i.displayNameOf(K), de = W > 1 ? `<span style="position:absolute;top:-6px;right:-6px;min-width:20px;height:20px;padding:0 5px;display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:#e11d48;color:white;font-size:11px;font-weight:700;box-shadow:0 2px 6px rgba(0,0,0,0.25)">${W}</span>` : "", Y = W > 1 ? '<div style="position:absolute;inset:0;border-radius:6px;background:#fff;border:1px solid #e5e5e5;transform:translate(6px,6px)"></div><div style="position:absolute;inset:0;border-radius:6px;background:#fff;border:1px solid #e5e5e5;transform:translate(3px,3px)"></div>' : "";
|
|
25546
25581
|
if (i.viewMode === "grid") {
|
|
25547
25582
|
G.style.cssText = "position:absolute;top:-1000px;left:-1000px;width:80px;font:500 12px/1.3 system-ui,sans-serif;color:#111;text-align:center";
|
|
25548
25583
|
const se = re ? `<img src="${re}" style="width:100%;aspect-ratio:1/1;border-radius:6px;object-fit:contain" alt=""/>` : `<div style="width:100%;aspect-ratio:1/1">${R(ae, "100%")}</div>`;
|
|
@@ -25561,16 +25596,16 @@ function Op(o, t) {
|
|
|
25561
25596
|
return G?.kind === "folder" ? G.id : G?.kind === "bin" ? ":bin" : null;
|
|
25562
25597
|
}
|
|
25563
25598
|
function z(j) {
|
|
25564
|
-
!L(j) && !
|
|
25599
|
+
!L(j) && !Si(j) || (j.preventDefault(), _++);
|
|
25565
25600
|
}
|
|
25566
25601
|
function A(j) {
|
|
25567
|
-
!L(j) && !
|
|
25602
|
+
!L(j) && !Si(j) || (j.preventDefault(), j.dataTransfer && (j.dataTransfer.dropEffect = Si(j) ? "move" : "copy"), e.set(M, F(j.target), !0));
|
|
25568
25603
|
}
|
|
25569
25604
|
function D(j) {
|
|
25570
|
-
!L(j) && !
|
|
25605
|
+
!L(j) && !Si(j) || (_--, _ <= 0 && (_ = 0, e.set(M, null)));
|
|
25571
25606
|
}
|
|
25572
25607
|
async function I(j) {
|
|
25573
|
-
const W =
|
|
25608
|
+
const W = Si(j), K = L(j);
|
|
25574
25609
|
if (!W && !K) return;
|
|
25575
25610
|
j.preventDefault();
|
|
25576
25611
|
const G = e.get(M);
|
|
@@ -25676,7 +25711,7 @@ function Op(o, t) {
|
|
|
25676
25711
|
const { base: fe, ext: ve } = c(e.get(re).entry.name);
|
|
25677
25712
|
return { base: fe, ext: ve };
|
|
25678
25713
|
});
|
|
25679
|
-
|
|
25714
|
+
Fs(pe, {
|
|
25680
25715
|
get index() {
|
|
25681
25716
|
return e.get(ae);
|
|
25682
25717
|
},
|
|
@@ -25805,7 +25840,7 @@ function Op(o, t) {
|
|
|
25805
25840
|
e.append(ue, Me);
|
|
25806
25841
|
};
|
|
25807
25842
|
let le = e.derived(() => i.selected.has("bin")), fe = e.derived(() => e.get(ae) === i.focusIndex), ve = e.derived(() => e.get(M) === ":bin");
|
|
25808
|
-
|
|
25843
|
+
Fs(pe, {
|
|
25809
25844
|
get index() {
|
|
25810
25845
|
return e.get(ae);
|
|
25811
25846
|
},
|
|
@@ -25837,10 +25872,10 @@ function Op(o, t) {
|
|
|
25837
25872
|
{
|
|
25838
25873
|
var De = (ye) => {
|
|
25839
25874
|
var be = Y_();
|
|
25840
|
-
e.html(be, () =>
|
|
25875
|
+
e.html(be, () => Ni, !0), e.reset(be), e.append(ye, be);
|
|
25841
25876
|
}, Me = (ye) => {
|
|
25842
25877
|
var be = G_();
|
|
25843
|
-
e.html(be, () =>
|
|
25878
|
+
e.html(be, () => Ni, !0), e.reset(be), e.append(ye, be);
|
|
25844
25879
|
};
|
|
25845
25880
|
e.if(Le, (ye) => {
|
|
25846
25881
|
i.viewMode === "grid" ? ye(De) : ye(Me, -1);
|
|
@@ -25849,7 +25884,7 @@ function Op(o, t) {
|
|
|
25849
25884
|
e.append(ue, xe);
|
|
25850
25885
|
};
|
|
25851
25886
|
let ee = e.derived(() => i.selected.has(e.get(re).id)), le = e.derived(() => e.get(ae) === i.focusIndex), fe = e.derived(() => i.editingId === e.get(re).id), ve = e.derived(() => e.get(M) === e.get(re).id);
|
|
25852
|
-
|
|
25887
|
+
Fs(pe, {
|
|
25853
25888
|
get index() {
|
|
25854
25889
|
return e.get(ae);
|
|
25855
25890
|
},
|
|
@@ -25920,7 +25955,7 @@ function Op(o, t) {
|
|
|
25920
25955
|
}
|
|
25921
25956
|
e.append(Ee, Ae);
|
|
25922
25957
|
}, Ie = (Ee) => {
|
|
25923
|
-
|
|
25958
|
+
ii(Ee, {
|
|
25924
25959
|
get ext() {
|
|
25925
25960
|
return e.get(Q).ext;
|
|
25926
25961
|
},
|
|
@@ -25948,7 +25983,7 @@ function Op(o, t) {
|
|
|
25948
25983
|
), e.append(De, Pe);
|
|
25949
25984
|
};
|
|
25950
25985
|
let ve = e.derived(() => i.selected.has(e.get(re).id)), ue = e.derived(() => e.get(ae) === i.focusIndex), xe = e.derived(() => i.editingId === e.get(re).id), Le = e.derived(() => i.clipboard?.mode === "cut" && i.clipboard.ids.includes(e.get(re).id));
|
|
25951
|
-
|
|
25986
|
+
Fs(pe, {
|
|
25952
25987
|
get index() {
|
|
25953
25988
|
return e.get(ae);
|
|
25954
25989
|
},
|
|
@@ -26158,7 +26193,7 @@ function cL(o, t) {
|
|
|
26158
26193
|
});
|
|
26159
26194
|
}
|
|
26160
26195
|
var g = e.sibling(p, 2);
|
|
26161
|
-
e.component(g, () =>
|
|
26196
|
+
e.component(g, () => ci, (v, m) => {
|
|
26162
26197
|
m(v, {
|
|
26163
26198
|
get to() {
|
|
26164
26199
|
return s;
|
|
@@ -27495,13 +27530,13 @@ const lo = (o, t = e.noop, r = e.noop) => {
|
|
|
27495
27530
|
});
|
|
27496
27531
|
var s = e.sibling(i, 2);
|
|
27497
27532
|
e.snippet(s, r), e.reset(n), e.append(o, n);
|
|
27498
|
-
},
|
|
27533
|
+
}, Mi = (o, t = e.noop, r = e.noop) => {
|
|
27499
27534
|
var n = JL(), i = e.child(n), s = e.child(i, !0);
|
|
27500
27535
|
e.reset(i);
|
|
27501
27536
|
var a = e.sibling(i, 2), l = e.child(a);
|
|
27502
27537
|
e.snippet(l, r), e.reset(a), e.reset(n), e.template_effect(() => e.set_text(s, t())), e.append(o, n);
|
|
27503
27538
|
};
|
|
27504
|
-
var XL = e.from_html('<section class="flex flex-col gap-16 py-20 first:pt-4"><!> <!></section>'), JL = e.from_html('<div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400"> </span> <div class="flex flex-wrap items-center gap-10"><!></div></div>'),
|
|
27539
|
+
var XL = e.from_html('<section class="flex flex-col gap-16 py-20 first:pt-4"><!> <!></section>'), JL = e.from_html('<div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400"> </span> <div class="flex flex-wrap items-center gap-10"><!></div></div>'), Di = e.from_html("<!> <!>", 1), Ns = e.from_html("<!> <!> <!> <!> <!>", 1), QL = e.from_html('<span class="text-center text-[11px]/none font-medium text-neutral-400"> </span>'), eS = e.from_html('<div class="flex justify-center"><!></div>'), tS = e.from_html('<span class="text-[11px]/none text-neutral-400"> </span> <!>', 1), rS = e.from_html('<div class="flex flex-col gap-20"><div class="grid grid-cols-[4.5rem_repeat(2,minmax(0,1fr))] items-center gap-x-10 gap-y-12"><span></span> <!> <!></div> <!> <!> <!></div>'), Pi = e.from_html("<!> <!> <!>", 1), nS = e.from_html('<div class="flex flex-wrap items-center gap-10 pl-8"><!> <!> <!> <!> <!></div>'), oS = e.from_html('<div class="self-center"><!></div>'), iS = e.from_html('<div class="pl-8"><!></div>'), sS = e.from_html('<div class="relative"><!> <button type="button"><!></button></div>'), aS = e.from_html('<div class="flex flex-col gap-10 pl-8"><!> <!> <!> <!> <!> <!></div>'), lS = e.from_html('<div class="flex flex-col gap-16"><!> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Toggle field</span> <div class="max-w-340"><!></div></div> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Multi-select field — label + checkbox dropdown</span> <div class="max-w-340"><!></div></div> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Select field — single-select dropdown (sky tint when set)</span> <div class="max-w-340"><!></div></div> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Toggle field — grouped in a List</span> <div class="max-w-340"><!></div></div> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Checkbox</span> <div class="flex items-center gap-10"><!> <!> <!></div> <!></div> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Radio</span> <div class="flex items-center gap-10"><!> <!> <!></div> <!></div></div>'), cS = e.from_html('<div class="flex flex-col gap-16"><!> <div class="flex flex-col gap-7 pl-8"><span class="text-[11px]/none text-neutral-400">Skeleton</span> <div class="flex flex-col gap-6"><!> <!></div></div></div>'), dS = e.from_html(
|
|
27505
27540
|
`<h1>The type scale</h1> <p>Body copy sets the rhythm — fifteen pixels, a calm line height, muted ink. Every other
|
|
27506
27541
|
level is measured against it.</p> <section class="flex flex-col gap-6"><h2>Section heading</h2> <p>Breaks a topic into parts. Weighted, full-strength ink, no caps. Inline <code>code</code> and <a href="#prose">links</a> sit here too.</p></section> <section class="flex flex-col gap-6"><h3>Sub-heading</h3> <p>The quietest level, for the occasional aside.</p></section> <!>`,
|
|
27507
27542
|
1
|
|
@@ -27520,7 +27555,7 @@ function fS(o) {
|
|
|
27520
27555
|
var z = rS();
|
|
27521
27556
|
{
|
|
27522
27557
|
const V = (U) => {
|
|
27523
|
-
var X =
|
|
27558
|
+
var X = Di(), oe = e.first_child(X);
|
|
27524
27559
|
ke(oe, {
|
|
27525
27560
|
children: (W, K) => {
|
|
27526
27561
|
e.next();
|
|
@@ -27539,7 +27574,7 @@ function fS(o) {
|
|
|
27539
27574
|
$$slots: { default: !0 }
|
|
27540
27575
|
}), e.append(U, X);
|
|
27541
27576
|
}, Z = (U) => {
|
|
27542
|
-
var X =
|
|
27577
|
+
var X = Ns(), oe = e.first_child(X);
|
|
27543
27578
|
ke(oe, {
|
|
27544
27579
|
icon: "upload",
|
|
27545
27580
|
children: (J, te) => {
|
|
@@ -27581,7 +27616,7 @@ function fS(o) {
|
|
|
27581
27616
|
var G = e.sibling(K, 2);
|
|
27582
27617
|
ke(G, { icon: "check", "aria-label": "Confirm" }), e.append(U, X);
|
|
27583
27618
|
}, q = (U) => {
|
|
27584
|
-
var X =
|
|
27619
|
+
var X = Ns(), oe = e.first_child(X);
|
|
27585
27620
|
ke(oe, {
|
|
27586
27621
|
loading: !0,
|
|
27587
27622
|
children: (J, te) => {
|
|
@@ -27656,11 +27691,11 @@ function fS(o) {
|
|
|
27656
27691
|
}), e.template_effect(() => e.set_text(W, e.get(X))), e.append(U, oe);
|
|
27657
27692
|
}), e.reset(A);
|
|
27658
27693
|
var N = e.sibling(A, 2);
|
|
27659
|
-
|
|
27694
|
+
Mi(N, () => "Sizes", () => V);
|
|
27660
27695
|
var H = e.sibling(N, 2);
|
|
27661
|
-
|
|
27696
|
+
Mi(H, () => "Icons & icon-only", () => Z);
|
|
27662
27697
|
var B = e.sibling(H, 2);
|
|
27663
|
-
|
|
27698
|
+
Mi(B, () => "States", () => q), e.reset(z);
|
|
27664
27699
|
}
|
|
27665
27700
|
e.append(F, z);
|
|
27666
27701
|
}, M = (F) => {
|
|
@@ -27668,7 +27703,7 @@ function fS(o) {
|
|
|
27668
27703
|
zt(A, {
|
|
27669
27704
|
label: "Options",
|
|
27670
27705
|
children: (B, V) => {
|
|
27671
|
-
var Z =
|
|
27706
|
+
var Z = Ns(), q = e.first_child(Z);
|
|
27672
27707
|
me(q, {
|
|
27673
27708
|
icon: "upload",
|
|
27674
27709
|
children: (W, K) => {
|
|
@@ -27719,7 +27754,7 @@ function fS(o) {
|
|
|
27719
27754
|
label: "English",
|
|
27720
27755
|
icon: "languages",
|
|
27721
27756
|
children: (B, V) => {
|
|
27722
|
-
var Z =
|
|
27757
|
+
var Z = Di(), q = e.first_child(Z);
|
|
27723
27758
|
me(q, {
|
|
27724
27759
|
selected: !0,
|
|
27725
27760
|
children: (X, oe) => {
|
|
@@ -27748,7 +27783,7 @@ function fS(o) {
|
|
|
27748
27783
|
icon: "git-branch",
|
|
27749
27784
|
tone: "idle",
|
|
27750
27785
|
children: (B, V) => {
|
|
27751
|
-
var Z =
|
|
27786
|
+
var Z = Di(), q = e.first_child(Z);
|
|
27752
27787
|
me(q, {
|
|
27753
27788
|
selected: !0,
|
|
27754
27789
|
children: (X, oe) => {
|
|
@@ -27777,7 +27812,7 @@ function fS(o) {
|
|
|
27777
27812
|
icon: "images",
|
|
27778
27813
|
tone: "idle",
|
|
27779
27814
|
children: (B, V) => {
|
|
27780
|
-
var Z =
|
|
27815
|
+
var Z = Pi(), q = e.first_child(Z);
|
|
27781
27816
|
me(q, {
|
|
27782
27817
|
indicator: "checkbox",
|
|
27783
27818
|
selected: !0,
|
|
@@ -27835,7 +27870,7 @@ function fS(o) {
|
|
|
27835
27870
|
var z = iS(), A = e.child(z);
|
|
27836
27871
|
Xe(A, {
|
|
27837
27872
|
children: (D, I) => {
|
|
27838
|
-
var N =
|
|
27873
|
+
var N = Ns(), H = e.first_child(N);
|
|
27839
27874
|
Pt(H, {
|
|
27840
27875
|
icon: "file-text",
|
|
27841
27876
|
title: "About",
|
|
@@ -27980,7 +28015,7 @@ function fS(o) {
|
|
|
27980
28015
|
var z = lS();
|
|
27981
28016
|
{
|
|
27982
28017
|
const he = (pe) => {
|
|
27983
|
-
var Q =
|
|
28018
|
+
var Q = Pi(), ee = e.first_child(Q);
|
|
27984
28019
|
Us(ee, {
|
|
27985
28020
|
get checked() {
|
|
27986
28021
|
return e.get(i);
|
|
@@ -28002,11 +28037,11 @@ function fS(o) {
|
|
|
28002
28037
|
Us(fe, { checked: !0, disabled: !0 }), e.append(pe, Q);
|
|
28003
28038
|
};
|
|
28004
28039
|
var A = e.child(z);
|
|
28005
|
-
|
|
28040
|
+
Mi(A, () => "Switch", () => he);
|
|
28006
28041
|
var D = e.sibling(A, 2), I = e.sibling(e.child(D), 2), N = e.child(I);
|
|
28007
28042
|
Xe(N, {
|
|
28008
28043
|
children: (pe, Q) => {
|
|
28009
|
-
var ee =
|
|
28044
|
+
var ee = Pi(), le = e.first_child(ee);
|
|
28010
28045
|
Rt(le, {
|
|
28011
28046
|
label: "Required",
|
|
28012
28047
|
get checked() {
|
|
@@ -28044,8 +28079,8 @@ function fS(o) {
|
|
|
28044
28079
|
var H = e.sibling(D, 2), B = e.sibling(e.child(H), 2), V = e.child(B);
|
|
28045
28080
|
Xe(V, {
|
|
28046
28081
|
children: (pe, Q) => {
|
|
28047
|
-
var ee =
|
|
28048
|
-
|
|
28082
|
+
var ee = Di(), le = e.first_child(ee);
|
|
28083
|
+
Zi(le, {
|
|
28049
28084
|
label: "Allowed types",
|
|
28050
28085
|
options: [
|
|
28051
28086
|
{ value: "image", label: "Images" },
|
|
@@ -28060,7 +28095,7 @@ function fS(o) {
|
|
|
28060
28095
|
onchange: (ve) => e.set(d, ve, !0)
|
|
28061
28096
|
});
|
|
28062
28097
|
var fe = e.sibling(le, 2);
|
|
28063
|
-
|
|
28098
|
+
Zi(fe, {
|
|
28064
28099
|
label: "Formatting",
|
|
28065
28100
|
groups: [
|
|
28066
28101
|
{
|
|
@@ -28095,7 +28130,7 @@ function fS(o) {
|
|
|
28095
28130
|
var Z = e.sibling(H, 2), q = e.sibling(e.child(Z), 2), U = e.child(q);
|
|
28096
28131
|
Xe(U, {
|
|
28097
28132
|
children: (pe, Q) => {
|
|
28098
|
-
var ee =
|
|
28133
|
+
var ee = Di(), le = e.first_child(ee);
|
|
28099
28134
|
wr(le, {
|
|
28100
28135
|
label: "Block",
|
|
28101
28136
|
placeholder: "Pick block",
|
|
@@ -28127,7 +28162,7 @@ function fS(o) {
|
|
|
28127
28162
|
var X = e.sibling(Z, 2), oe = e.sibling(e.child(X), 2), j = e.child(oe);
|
|
28128
28163
|
Xe(j, {
|
|
28129
28164
|
children: (pe, Q) => {
|
|
28130
|
-
var ee =
|
|
28165
|
+
var ee = Pi(), le = e.first_child(ee);
|
|
28131
28166
|
Rt(le, {
|
|
28132
28167
|
label: "Images",
|
|
28133
28168
|
get checked() {
|
|
@@ -28189,8 +28224,8 @@ function fS(o) {
|
|
|
28189
28224
|
var z = cS();
|
|
28190
28225
|
{
|
|
28191
28226
|
const B = (V) => {
|
|
28192
|
-
var Z =
|
|
28193
|
-
|
|
28227
|
+
var Z = Pi(), q = e.first_child(Z);
|
|
28228
|
+
gi(q, {
|
|
28194
28229
|
content: "A helpful hint",
|
|
28195
28230
|
trigger: (j, W) => {
|
|
28196
28231
|
let K = () => W?.().props;
|
|
@@ -28212,7 +28247,7 @@ function fS(o) {
|
|
|
28212
28247
|
Yn(X, { class: "size-24" }), e.append(V, Z);
|
|
28213
28248
|
};
|
|
28214
28249
|
var A = e.child(z);
|
|
28215
|
-
|
|
28250
|
+
Mi(A, () => "Tooltip & spinner", () => B);
|
|
28216
28251
|
var D = e.sibling(A, 2), I = e.sibling(e.child(D), 2), N = e.child(I);
|
|
28217
28252
|
na(N, { class: "h-30 w-full rounded-[10px]" });
|
|
28218
28253
|
var H = e.sibling(N, 2);
|
|
@@ -29173,7 +29208,7 @@ function lM(o, t) {
|
|
|
29173
29208
|
}
|
|
29174
29209
|
var cM = e.from_svg('<svg aria-hidden="true" style="position:absolute;width:0;height:0;overflow:hidden"><filter id="okno-noise-bg"><feTurbulence baseFrequency="0.8"></feTurbulence></filter></svg><!><!><!><!>', 1);
|
|
29175
29210
|
function dM(o, t) {
|
|
29176
|
-
e.push(t, !0),
|
|
29211
|
+
e.push(t, !0), ai("app", t.app);
|
|
29177
29212
|
var r = cM(), n = e.sibling(e.first_child(r));
|
|
29178
29213
|
JS(n, {});
|
|
29179
29214
|
var i = e.sibling(n);
|
|
@@ -29318,7 +29353,7 @@ function CM(o, t) {
|
|
|
29318
29353
|
var H = bM(), B = e.child(H), V = e.child(B);
|
|
29319
29354
|
{
|
|
29320
29355
|
let q = e.derived(() => e.get(S) > 0 ? L().filename.slice(e.get(S)) : "");
|
|
29321
|
-
|
|
29356
|
+
ii(V, {
|
|
29322
29357
|
get ext() {
|
|
29323
29358
|
return e.get(q);
|
|
29324
29359
|
},
|
|
@@ -29442,7 +29477,7 @@ function CM(o, t) {
|
|
|
29442
29477
|
{
|
|
29443
29478
|
var z = (D) => {
|
|
29444
29479
|
var I = yM(), N = e.child(I);
|
|
29445
|
-
e.html(N, () =>
|
|
29480
|
+
e.html(N, () => Ni, !0), e.reset(N);
|
|
29446
29481
|
var H = e.sibling(N, 2), B = e.child(H), V = e.child(B, !0);
|
|
29447
29482
|
e.reset(B);
|
|
29448
29483
|
var Z = e.sibling(B, 2), q = e.child(Z);
|
|
@@ -29559,9 +29594,9 @@ function MM(o, t) {
|
|
|
29559
29594
|
e.template_effect(() => e.set_attribute(z, "src", e.get(d))), e.append(F, z);
|
|
29560
29595
|
}, M = e.derived(() => e.get(d) && e.get(a) && !yo(e.get(a).filename)), L = (F) => {
|
|
29561
29596
|
var z = _M();
|
|
29562
|
-
e.html(z, () =>
|
|
29597
|
+
e.html(z, () => Ni, !0), e.reset(z), e.append(F, z);
|
|
29563
29598
|
}, T = (F) => {
|
|
29564
|
-
|
|
29599
|
+
ii(F, {
|
|
29565
29600
|
get ext() {
|
|
29566
29601
|
return e.get(c);
|
|
29567
29602
|
},
|
|
@@ -29652,7 +29687,7 @@ function EM(o, t) {
|
|
|
29652
29687
|
}, k = e.derived(() => e.get(p) && !yo(e.get(h).name)), y = ($) => {
|
|
29653
29688
|
{
|
|
29654
29689
|
let F = e.derived(() => a(e.get(h).name));
|
|
29655
|
-
|
|
29690
|
+
ii($, {
|
|
29656
29691
|
get ext() {
|
|
29657
29692
|
return e.get(F);
|
|
29658
29693
|
},
|
|
@@ -30146,7 +30181,7 @@ function pu(o, t) {
|
|
|
30146
30181
|
}
|
|
30147
30182
|
};
|
|
30148
30183
|
}
|
|
30149
|
-
const
|
|
30184
|
+
const Hs = (o, t = e.noop) => {
|
|
30150
30185
|
var r = GM();
|
|
30151
30186
|
e.template_effect(() => e.set_class(r, 1, e.clsx([
|
|
30152
30187
|
"pointer-events-none absolute inset-x-0 z-10 h-2 rounded-full bg-primary",
|
|
@@ -30163,7 +30198,7 @@ function lD(o, t) {
|
|
|
30163
30198
|
var F = e.child($);
|
|
30164
30199
|
{
|
|
30165
30200
|
var z = (V) => {
|
|
30166
|
-
|
|
30201
|
+
Hs(V, () => "above");
|
|
30167
30202
|
};
|
|
30168
30203
|
e.if(F, (V) => {
|
|
30169
30204
|
e.get(R) === "above" && V(z);
|
|
@@ -30172,7 +30207,7 @@ function lD(o, t) {
|
|
|
30172
30207
|
var A = e.sibling(F, 2);
|
|
30173
30208
|
{
|
|
30174
30209
|
var D = (V) => {
|
|
30175
|
-
|
|
30210
|
+
Hs(V, () => "below");
|
|
30176
30211
|
};
|
|
30177
30212
|
e.if(A, (V) => {
|
|
30178
30213
|
e.get(R) === "below" && V(D);
|
|
@@ -30324,7 +30359,7 @@ function lD(o, t) {
|
|
|
30324
30359
|
{
|
|
30325
30360
|
var P = (_) => {
|
|
30326
30361
|
var M = QM(), L = e.child(M);
|
|
30327
|
-
|
|
30362
|
+
Zo(L, { title: "Detected" });
|
|
30328
30363
|
var T = e.sibling(L, 2);
|
|
30329
30364
|
e.each(T, 17, () => s.detected, (S) => S.name, (S, R) => {
|
|
30330
30365
|
{
|
|
@@ -30357,7 +30392,7 @@ function lD(o, t) {
|
|
|
30357
30392
|
{
|
|
30358
30393
|
var R = ($) => {
|
|
30359
30394
|
var F = sD(), z = e.child(F);
|
|
30360
|
-
|
|
30395
|
+
Zo(z, {
|
|
30361
30396
|
get title() {
|
|
30362
30397
|
return e.get(M).title;
|
|
30363
30398
|
},
|
|
@@ -30408,11 +30443,11 @@ function lD(o, t) {
|
|
|
30408
30443
|
var N = vu(), H = e.child(N);
|
|
30409
30444
|
{
|
|
30410
30445
|
var B = (Z) => {
|
|
30411
|
-
const q = e.derived(() => "f:" + e.get(I).id), U = e.derived(() => dr.indicatorFor(e.get(q))), X = e.derived(() =>
|
|
30446
|
+
const q = e.derived(() => "f:" + e.get(I).id), U = e.derived(() => dr.indicatorFor(e.get(q))), X = e.derived(() => Wo.isCollapsed(e.get(L), e.get(I).id));
|
|
30412
30447
|
var oe = iD(), j = e.child(oe), W = e.child(j);
|
|
30413
30448
|
{
|
|
30414
30449
|
var K = (Y) => {
|
|
30415
|
-
|
|
30450
|
+
Hs(Y, () => "above");
|
|
30416
30451
|
};
|
|
30417
30452
|
e.if(W, (Y) => {
|
|
30418
30453
|
e.get(U) === "above" && Y(K);
|
|
@@ -30421,7 +30456,7 @@ function lD(o, t) {
|
|
|
30421
30456
|
var G = e.sibling(W, 2);
|
|
30422
30457
|
{
|
|
30423
30458
|
var J = (Y) => {
|
|
30424
|
-
|
|
30459
|
+
Hs(Y, () => "below");
|
|
30425
30460
|
};
|
|
30426
30461
|
e.if(G, (Y) => {
|
|
30427
30462
|
e.get(U) === "below" && Y(J);
|
|
@@ -30520,11 +30555,11 @@ function lD(o, t) {
|
|
|
30520
30555
|
e.reset(le), e.template_effect(() => {
|
|
30521
30556
|
e.set_attribute(ge, "aria-label", e.get(X) ? "Expand folder" : "Collapse folder"), e.set_text(Q, e.get(I).name), e.set_attribute(le, "aria-label", e.get(X) ? "Expand folder" : "Collapse folder");
|
|
30522
30557
|
}), e.delegated("click", ge, () => {
|
|
30523
|
-
dr.dragJustEnded ||
|
|
30558
|
+
dr.dragJustEnded || Wo.toggle(e.get(L), e.get(I).id);
|
|
30524
30559
|
}), e.delegated("keydown", ge, (ve) => {
|
|
30525
|
-
(ve.key === "Enter" || ve.key === " ") && (ve.preventDefault(),
|
|
30560
|
+
(ve.key === "Enter" || ve.key === " ") && (ve.preventDefault(), Wo.toggle(e.get(L), e.get(I).id));
|
|
30526
30561
|
}), e.delegated("click", le, () => {
|
|
30527
|
-
dr.dragJustEnded ||
|
|
30562
|
+
dr.dragJustEnded || Wo.toggle(e.get(L), e.get(I).id);
|
|
30528
30563
|
}), e.append(Y, se);
|
|
30529
30564
|
};
|
|
30530
30565
|
e.if(te, (Y) => {
|
|
@@ -31143,7 +31178,7 @@ function LD(o, t) {
|
|
|
31143
31178
|
var SD = e.from_svg("<circle></circle>"), MD = e.from_html('<p class="text-[13px]/[150%] text-green-600 dark:text-green-400">Editing is free until then.</p>'), DD = e.from_html('<p class="text-[13px]/[150%] text-green-600 dark:text-green-400">Capped this month — free <!></p>'), PD = e.from_html('<p class="text-[13px]/[150%] text-(--fg-muted) px-2"> </p>'), OD = e.from_html('<p class="text-[12px]/[150%] text-(--fg-muted) px-2">Not available in local development.</p>'), ED = e.from_html('<p class="text-[12px]/[140%] text-rose-500 dark:text-rose-400"> </p>'), TD = e.from_html('<div class="flex flex-col items-start gap-6"><!> <!></div>'), AD = e.from_html("<!> <!>", 1), ID = e.from_html('<div class="flex flex-col gap-16 p-10"><section class="flex flex-col items-center gap-12 pt-8 pb-4"><svg aria-hidden="true"></svg> <div class="flex flex-col items-center gap-3 text-center"><p class="text-[14px]/[150%] text-(--fg)"><span class="font-medium"> </span> this year · <span class="font-medium"> </span> days <!></p> <!></div></section> <!></div>');
|
|
31144
31179
|
function $D(o, t) {
|
|
31145
31180
|
e.push(t, !0);
|
|
31146
|
-
const { billing: r, project: n } = Se(), i = e1 /
|
|
31181
|
+
const { billing: r, project: n } = Se(), i = e1 / ji, s = e.derived(() => Math.max(0, Math.min(r.days, i))), a = 44, l = 4.5, u = (a + 7 * 2) * 2, d = u / 2, f = Array.from({ length: i }, (A, D) => {
|
|
31147
31182
|
const I = (-90 + 360 / i * D) * Math.PI / 180;
|
|
31148
31183
|
return {
|
|
31149
31184
|
x: d + a * Math.cos(I),
|
|
@@ -33052,7 +33087,7 @@ function NP(o, t) {
|
|
|
33052
33087
|
s.some((v) => v.id === g) && (a.current = g);
|
|
33053
33088
|
}
|
|
33054
33089
|
const u = e.derived(() => s.find((g) => g.id === e.get(l)) ?? s[0]), d = e.derived(() => s.findIndex((g) => g.id === e.get(l))), f = e.derived(() => e.get(d) > 0 ? s[e.get(d) - 1] : null), h = e.derived(() => e.get(d) >= 0 && e.get(d) < s.length - 1 ? s[e.get(d) + 1] : null);
|
|
33055
|
-
|
|
33090
|
+
ai(zp, (g) => c(g)), e.user_effect(() => {
|
|
33056
33091
|
const g = r.getData(n)?.topic;
|
|
33057
33092
|
r.isOpen(n) && g && c(g);
|
|
33058
33093
|
});
|
|
@@ -33087,7 +33122,7 @@ function NP(o, t) {
|
|
|
33087
33122
|
var y = RP(), x = e.child(y);
|
|
33088
33123
|
{
|
|
33089
33124
|
var w = (E) => {
|
|
33090
|
-
|
|
33125
|
+
Zo(E, {
|
|
33091
33126
|
get title() {
|
|
33092
33127
|
return e.get(k).title;
|
|
33093
33128
|
}
|
|
@@ -33192,10 +33227,10 @@ function zo(o, t) {
|
|
|
33192
33227
|
function Fo(o, t, r) {
|
|
33193
33228
|
const n = "item", i = t === "react" ? " key={i}" : "", s = t === "react" ? `(${n}, i)` : `(${n})`;
|
|
33194
33229
|
return `{${o}.map(${s} => (
|
|
33195
|
-
${
|
|
33230
|
+
${Xo(r(n, i))}
|
|
33196
33231
|
))}`;
|
|
33197
33232
|
}
|
|
33198
|
-
function
|
|
33233
|
+
function Xo(o, t = " ") {
|
|
33199
33234
|
return o.split(`
|
|
33200
33235
|
`).map((r) => r && t + r).join(`
|
|
33201
33236
|
`);
|
|
@@ -33212,16 +33247,16 @@ function T1(o, t, r, n, i) {
|
|
|
33212
33247
|
return l ? Fo(s, n, (c, u) => `<a {...${c}}${u}>${zo(c, n)}</a>`) : `<a {...${s}}>${zo(s, n)}</a>`;
|
|
33213
33248
|
if (a === "reference")
|
|
33214
33249
|
return l ? Fo(s, n, (c, u) => `<article {...${c}.slot}${u}>
|
|
33215
|
-
${
|
|
33250
|
+
${Xo(`<h3 {...${c}.name}>${zo(`${c}.name`, n)}</h3>`)}
|
|
33216
33251
|
</article>`) : `<span {...${s}}>${zo(s, n)}</span>`;
|
|
33217
33252
|
if (a === "block" && r.fields) {
|
|
33218
33253
|
const c = l ? "item" : s, u = Object.entries(r.fields).map(([d, f]) => T1(c, d, f, n, i)).join(`
|
|
33219
33254
|
|
|
33220
33255
|
`);
|
|
33221
33256
|
return l ? Fo(s, n, (d, f) => `<div {...${d}.slot}${f}>
|
|
33222
|
-
${
|
|
33257
|
+
${Xo(u)}
|
|
33223
33258
|
</div>`) : `<div data-okno={${s}["data-okno"]}>
|
|
33224
|
-
${
|
|
33259
|
+
${Xo(u)}
|
|
33225
33260
|
</div>`;
|
|
33226
33261
|
}
|
|
33227
33262
|
return r.fields ? Object.entries(r.fields).map(([c, u]) => T1(s, c, u, n, i)).join(`
|
|
@@ -33235,7 +33270,7 @@ function WP(o, t, r, n, i = !1) {
|
|
|
33235
33270
|
let f;
|
|
33236
33271
|
d ? a ? f = `{${t}.map(${n === "react" ? "(item, i)" : "(item)"} => (
|
|
33237
33272
|
<article {...item.slot}${n === "react" ? " key={i}" : ""}>
|
|
33238
|
-
${
|
|
33273
|
+
${Xo(Xo(d))}
|
|
33239
33274
|
</article>
|
|
33240
33275
|
))}` : f = d : f = a ? `{${t}.map((item) => (
|
|
33241
33276
|
<article>{/* add fields */}</article>
|
|
@@ -33955,7 +33990,7 @@ function lO(o, t) {
|
|
|
33955
33990
|
var gt = e.sibling(bt, 2);
|
|
33956
33991
|
{
|
|
33957
33992
|
let vt = e.derived(() => e.get(_).length > 1);
|
|
33958
|
-
|
|
33993
|
+
oi(gt, {
|
|
33959
33994
|
onremove: () => R(e.get(Rr).id),
|
|
33960
33995
|
get reorderable() {
|
|
33961
33996
|
return e.get(vt);
|
|
@@ -33986,8 +34021,8 @@ function lO(o, t) {
|
|
|
33986
34021
|
e.get(_).length > 0 ? jr(Et) : jr(yt, -1);
|
|
33987
34022
|
});
|
|
33988
34023
|
}
|
|
33989
|
-
var vn = e.sibling(pt, 2),
|
|
33990
|
-
ke(
|
|
34024
|
+
var vn = e.sibling(pt, 2), xs = e.child(vn);
|
|
34025
|
+
ke(xs, {
|
|
33991
34026
|
tone: "idle",
|
|
33992
34027
|
icon: "plus",
|
|
33993
34028
|
onclick: S,
|
|
@@ -34034,7 +34069,7 @@ function lO(o, t) {
|
|
|
34034
34069
|
Xe(ce, {
|
|
34035
34070
|
children: (Ce, $e) => {
|
|
34036
34071
|
var Oe = wu(), Ve = e.first_child(Oe);
|
|
34037
|
-
|
|
34072
|
+
Zi(Ve, {
|
|
34038
34073
|
label: "Allowed types",
|
|
34039
34074
|
get options() {
|
|
34040
34075
|
return d;
|
|
@@ -34072,7 +34107,7 @@ function lO(o, t) {
|
|
|
34072
34107
|
{ options: Cp },
|
|
34073
34108
|
{ options: wp }
|
|
34074
34109
|
]);
|
|
34075
|
-
|
|
34110
|
+
Zi(Ce, {
|
|
34076
34111
|
label: "Formatting",
|
|
34077
34112
|
get groups() {
|
|
34078
34113
|
return e.get(Oe);
|
|
@@ -34646,10 +34681,10 @@ function mO(o, t) {
|
|
|
34646
34681
|
}
|
|
34647
34682
|
e.delegate(["click"]);
|
|
34648
34683
|
var bO = e.from_html('<div class="self-start pl-10 text-[12px]/none text-neutral-400"> </div>'), kO = e.from_html('<button type="button" title="Edit slug" class="group/slug flex items-center gap-5 self-start pl-10 text-[12px]/none text-neutral-400 transition-colors cursor-pointer hover:text-neutral-600 dark:hover:text-white/70"><span class="group-hover/slug:underline"> </span> <!></button>'), yO = e.from_html(`<div class="relative"><!> <button type="button" aria-label="Follow the name again" title="Locked — won't follow the name. Click to follow it again." class="flex-center absolute bottom-0 right-0 size-28 cursor-pointer rounded-md text-white/40 transition-colors hover:bg-white/10 hover:text-white active:bg-white/20"><!></button></div>`), xO = e.from_html('<div class="flex flex-col gap-4"><!> <!></div> <!>', 1);
|
|
34649
|
-
function
|
|
34684
|
+
function ys(o, t) {
|
|
34650
34685
|
e.push(t, !0);
|
|
34651
34686
|
let r = e.prop(t, "name", 15, ""), n = e.prop(t, "slug", 15, ""), i = e.prop(t, "nameLabel", 3, "Name"), s = e.prop(t, "namePlaceholder", 3, ""), a = e.prop(t, "startLocked", 3, !1), l = e.prop(t, "readonly", 3, !1), c = e.state(e.proxy(a())), u = e.state(void 0);
|
|
34652
|
-
const d = e.derived(() =>
|
|
34687
|
+
const d = e.derived(() => Bo(r()));
|
|
34653
34688
|
e.user_effect(() => {
|
|
34654
34689
|
!e.get(c) && !l() && n(e.get(d));
|
|
34655
34690
|
});
|
|
@@ -34660,7 +34695,7 @@ function ks(o, t) {
|
|
|
34660
34695
|
e.set(c, !1), n(e.get(d));
|
|
34661
34696
|
}
|
|
34662
34697
|
function p() {
|
|
34663
|
-
n(
|
|
34698
|
+
n(Bo(n())), n() || h();
|
|
34664
34699
|
}
|
|
34665
34700
|
var g = xO(), v = e.first_child(g), m = e.child(v);
|
|
34666
34701
|
tt(m, {
|
|
@@ -34761,14 +34796,14 @@ function IO(o, t) {
|
|
|
34761
34796
|
if (!B.startsWith("/") || !e.get(x) && B.includes("[")) return !1;
|
|
34762
34797
|
const V = B.replace(/\[[A-Za-z0-9_]+\]/g, "");
|
|
34763
34798
|
return /^[A-Za-z0-9\-._~/]*$/.test(V);
|
|
34764
|
-
}), E = e.derived(() => e.get(x) && e.get(l) ? n.schema.collections?.[e.get(l).slug]?.fields ?? {} : {}), P = e.derived(() => e.get(x) ? Ku({ fields: e.get(E) }) : null), O = /* @__PURE__ */ new Set(["slug", "string", "enum", "reference"]), _ = e.derived(() => e.get(x) ?
|
|
34799
|
+
}), E = e.derived(() => e.get(x) && e.get(l) ? n.schema.collections?.[e.get(l).slug]?.fields ?? {} : {}), P = e.derived(() => e.get(x) ? Ku({ fields: e.get(E) }) : null), O = /* @__PURE__ */ new Set(["slug", "string", "enum", "reference"]), _ = e.derived(() => e.get(x) ? Ds(e.get(f)).map((B) => {
|
|
34765
34800
|
const V = e.get(E)[B];
|
|
34766
34801
|
if (!V) return { name: B, ok: !1, label: "no such field" };
|
|
34767
34802
|
const Z = O.has(V.type) && !V.multiple, q = Z ? V.type : V.multiple ? `${V.type}, multiple — not allowed` : `${V.type} — can't be a segment`;
|
|
34768
34803
|
return { name: B, ok: Z, label: q };
|
|
34769
|
-
}) : []), M = e.derived(() => !e.get(x) || !!e.get(P) &&
|
|
34804
|
+
}) : []), M = e.derived(() => !e.get(x) || !!e.get(P) && Ds(e.get(f)).includes(e.get(P))), L = e.derived(() => !e.get(x) || e.get(f).trim() === "" ? !0 : e.get(C) && e.get(_).length > 0 && e.get(_).every((B) => B.ok) && e.get(M)), T = /* @__PURE__ */ new Set(["slug", "reference", "enum"]), S = e.derived(() => e.get(x) ? Object.entries(e.get(E)).filter(([, B]) => T.has(B.type) && !B.multiple).map(([B, V]) => ({ name: B, type: V.type })) : []), R = e.derived(() => e.get(_).filter((B) => !B.ok).map((B) => B.name));
|
|
34770
34805
|
function $(B) {
|
|
34771
|
-
if (
|
|
34806
|
+
if (Ds(e.get(f)).includes(B))
|
|
34772
34807
|
e.set(f, e.get(f).replace(new RegExp(`/?\\[${B}\\]`), ""), !0), e.get(f) && !e.get(f).startsWith("/") && e.set(f, "/" + e.get(f));
|
|
34773
34808
|
else {
|
|
34774
34809
|
const V = e.get(f).trim(), Z = `[${B}]`;
|
|
@@ -34868,7 +34903,7 @@ function IO(o, t) {
|
|
|
34868
34903
|
e.key(G, () => e.get(l)?.slug, (Y) => {
|
|
34869
34904
|
{
|
|
34870
34905
|
let se = e.derived(() => !e.get(b));
|
|
34871
|
-
|
|
34906
|
+
ys(Y, {
|
|
34872
34907
|
get startLocked() {
|
|
34873
34908
|
return e.get(b);
|
|
34874
34909
|
},
|
|
@@ -34955,7 +34990,7 @@ function IO(o, t) {
|
|
|
34955
34990
|
var Ie = (Ee) => {
|
|
34956
34991
|
var Ae = MO();
|
|
34957
34992
|
e.each(Ae, 21, () => e.get(S), (Ge) => Ge.name, (Ge, qe) => {
|
|
34958
|
-
const kt = e.derived(() =>
|
|
34993
|
+
const kt = e.derived(() => Ds(e.get(f)).includes(e.get(qe).name));
|
|
34959
34994
|
var wt = SO(), Lt = e.child(wt, !0);
|
|
34960
34995
|
e.reset(wt), e.template_effect(() => {
|
|
34961
34996
|
e.set_class(wt, 1, e.clsx([
|
|
@@ -35108,7 +35143,7 @@ function HO(o, t) {
|
|
|
35108
35143
|
},
|
|
35109
35144
|
children: (b, k) => {
|
|
35110
35145
|
var y = NO(), x = e.child(y);
|
|
35111
|
-
|
|
35146
|
+
ys(x, {
|
|
35112
35147
|
get name() {
|
|
35113
35148
|
return e.get(c);
|
|
35114
35149
|
},
|
|
@@ -35238,7 +35273,7 @@ function ZO(o, t) {
|
|
|
35238
35273
|
},
|
|
35239
35274
|
children: (v, m) => {
|
|
35240
35275
|
var b = BO(), k = e.child(b);
|
|
35241
|
-
|
|
35276
|
+
ys(k, {
|
|
35242
35277
|
get name() {
|
|
35243
35278
|
return e.get(l);
|
|
35244
35279
|
},
|
|
@@ -35335,7 +35370,7 @@ function GO(o, t) {
|
|
|
35335
35370
|
},
|
|
35336
35371
|
children: (g, v) => {
|
|
35337
35372
|
var m = YO(), b = e.child(m);
|
|
35338
|
-
|
|
35373
|
+
ys(b, {
|
|
35339
35374
|
get name() {
|
|
35340
35375
|
return e.get(a);
|
|
35341
35376
|
},
|
|
@@ -35432,7 +35467,7 @@ function QO(o, t) {
|
|
|
35432
35467
|
},
|
|
35433
35468
|
children: (v, m) => {
|
|
35434
35469
|
var b = JO(), k = e.child(b);
|
|
35435
|
-
|
|
35470
|
+
ys(k, {
|
|
35436
35471
|
get name() {
|
|
35437
35472
|
return e.get(l);
|
|
35438
35473
|
},
|
|
@@ -36340,29 +36375,28 @@ function To(o, t) {
|
|
|
36340
36375
|
$$slots: { default: !0 }
|
|
36341
36376
|
}), e.pop();
|
|
36342
36377
|
}
|
|
36343
|
-
var DE = e.from_html('<p class="text-center text-[12px]/[140%] text-rose-400/90"> </p>'), PE = e.from_html(`<div class="flex flex-col items-center justify-center h-full px-20 pb-8 gap-12 pt-16"><div class="text-(--fg)"><!></div> <div class="flex flex-col items-center gap-6 text-center"><h2 class="text-[24px]/[110%] font-semibold tracking-[-0.01em] text-(--fg)">
|
|
36344
|
-
and
|
|
36345
|
-
are free.</p></div> <div class="w-full flex-col gap-12 flex-center mt-12"><!> <p class="text-center text-[13px]/[150%] font-medium text-(--fg)">Never more than €40 a month · €200 a year.</p> <!> <!> <p class="text-center text-[10px]/[150%] text-white/30">By continuing you agree to the <a href="https://okno.build/terms" target="_blank" rel="noopener" class="underline hover:text-white/55">Terms</a> and <a href="https://okno.build/privacy" target="_blank" rel="noopener" class="underline hover:text-white/55">Privacy Policy</a> </p></div></div>`);
|
|
36378
|
+
var DE = e.from_html('<p class="text-center text-[12px]/[140%] text-rose-400/90"> </p>'), PE = e.from_html(`<div class="flex flex-col items-center justify-center h-full px-20 pb-8 gap-12 pt-16"><div class="text-(--fg)"><!></div> <div class="flex flex-col items-center gap-6 text-center"><h2 class="text-[24px]/[110%] font-semibold tracking-[-0.01em] text-(--fg)">Day of Editing</h2> <p class="text-[13px]/[152%] text-white/60">24 hours of unlimited editing and publishing on your live site. You only pay on the days
|
|
36379
|
+
you publish; browsing and drafts are free.</p></div> <div class="w-full flex-col gap-12 flex-center mt-12"><!> <p class="text-center text-[13px]/[150%] font-medium text-(--fg)">Never more than €40 a month · €200 a year.</p> <!> <!> <p class="text-center text-[10px]/[150%] text-white/30">By continuing you agree to the <a href="https://okno.build/terms" target="_blank" rel="noopener" class="underline hover:text-white/55">Terms</a> and <a href="https://okno.build/privacy" target="_blank" rel="noopener" class="underline hover:text-white/55">Privacy Policy</a> </p></div></div>`);
|
|
36346
36380
|
function OE(o, t) {
|
|
36347
36381
|
e.push(t, !0);
|
|
36348
36382
|
let r = e.prop(t, "busy", 3, !1), n = e.prop(t, "error", 3, null);
|
|
36349
|
-
const { billing: i } = Se(), s = e.derived(() => i.coverYear >
|
|
36383
|
+
const { billing: i } = Se(), s = e.derived(() => i.coverYear > ji && i.coverYear <= 40);
|
|
36350
36384
|
var a = PE(), l = e.child(a), c = e.child(l);
|
|
36351
36385
|
Ap(c, { class: "h-20 w-auto" }), e.reset(l);
|
|
36352
|
-
var u = e.sibling(l, 2), d = e.child(u), f = e.sibling(d, 2)
|
|
36353
|
-
e.reset(
|
|
36354
|
-
var
|
|
36386
|
+
var u = e.sibling(l, 2), d = e.child(u), f = e.sibling(d, 2);
|
|
36387
|
+
e.reset(u);
|
|
36388
|
+
var h = e.sibling(u, 2), p = e.child(h);
|
|
36355
36389
|
{
|
|
36356
|
-
var
|
|
36357
|
-
var
|
|
36358
|
-
e.reset(
|
|
36390
|
+
var g = (x) => {
|
|
36391
|
+
var w = DE(), C = e.child(w, !0);
|
|
36392
|
+
e.reset(w), e.template_effect(() => e.set_text(C, n())), e.append(x, w);
|
|
36359
36393
|
};
|
|
36360
|
-
e.if(
|
|
36361
|
-
n() &&
|
|
36394
|
+
e.if(p, (x) => {
|
|
36395
|
+
n() && x(g);
|
|
36362
36396
|
});
|
|
36363
36397
|
}
|
|
36364
|
-
var
|
|
36365
|
-
ke(
|
|
36398
|
+
var v = e.sibling(p, 4);
|
|
36399
|
+
ke(v, {
|
|
36366
36400
|
size: "lg",
|
|
36367
36401
|
tone: "green",
|
|
36368
36402
|
get loading() {
|
|
@@ -36372,47 +36406,45 @@ function OE(o, t) {
|
|
|
36372
36406
|
return r();
|
|
36373
36407
|
},
|
|
36374
36408
|
onclick: () => t.onstart("day"),
|
|
36375
|
-
children: (
|
|
36409
|
+
children: (x, w) => {
|
|
36376
36410
|
e.next();
|
|
36377
|
-
var
|
|
36378
|
-
e.template_effect(() => e.set_text(
|
|
36411
|
+
var C = e.text();
|
|
36412
|
+
e.template_effect(() => e.set_text(C, n() ? "Try again" : `Start Today · €${ji}`)), e.append(x, C);
|
|
36379
36413
|
},
|
|
36380
36414
|
$$slots: { default: !0 }
|
|
36381
36415
|
});
|
|
36382
|
-
var
|
|
36416
|
+
var m = e.sibling(v, 2);
|
|
36383
36417
|
{
|
|
36384
|
-
var
|
|
36385
|
-
ke(
|
|
36418
|
+
var b = (x) => {
|
|
36419
|
+
ke(x, {
|
|
36386
36420
|
size: "lg",
|
|
36387
36421
|
tone: "idle",
|
|
36388
36422
|
get disabled() {
|
|
36389
36423
|
return r();
|
|
36390
36424
|
},
|
|
36391
36425
|
onclick: () => t.onstart("year"),
|
|
36392
|
-
children: (
|
|
36426
|
+
children: (w, C) => {
|
|
36393
36427
|
e.next();
|
|
36394
|
-
var
|
|
36395
|
-
e.template_effect(() => e.set_text(
|
|
36428
|
+
var E = e.text();
|
|
36429
|
+
e.template_effect(() => e.set_text(E, `Free Year Now · €${i.coverYear ?? ""}`)), e.append(w, E);
|
|
36396
36430
|
},
|
|
36397
36431
|
$$slots: { default: !0 }
|
|
36398
36432
|
});
|
|
36399
36433
|
};
|
|
36400
|
-
e.if(
|
|
36401
|
-
e.get(s) &&
|
|
36434
|
+
e.if(m, (x) => {
|
|
36435
|
+
e.get(s) && x(b);
|
|
36402
36436
|
});
|
|
36403
36437
|
}
|
|
36404
|
-
var
|
|
36405
|
-
e.reset(
|
|
36406
|
-
|
|
36407
|
-
and authorize Okno to charge your card €${Wo} on the days you publish — up to €40 a month, €200 a year. Remove your card anytime to stop.`);
|
|
36408
|
-
}), e.transition(5, l, () => It, () => ({ delay: 80, duration: 320 })), e.transition(5, d, () => It, () => ({ delay: 140, duration: 320 })), e.transition(5, f, () => It, () => ({ delay: 220, duration: 320 })), e.transition(1, g, () => It, () => ({ delay: 380, duration: 320 })), e.append(o, a), e.pop();
|
|
36438
|
+
var k = e.sibling(m, 2), y = e.sibling(e.child(k), 4);
|
|
36439
|
+
e.reset(k), e.reset(h), e.reset(a), e.template_effect(() => e.set_text(y, `,
|
|
36440
|
+
and authorize Okno to charge your card €${ji} on the days you publish — up to €40 a month, €200 a year. Remove your card anytime to stop.`)), e.transition(5, l, () => It, () => ({ delay: 80, duration: 320 })), e.transition(5, d, () => It, () => ({ delay: 140, duration: 320 })), e.transition(5, f, () => It, () => ({ delay: 220, duration: 320 })), e.transition(1, h, () => It, () => ({ delay: 380, duration: 320 })), e.append(o, a), e.pop();
|
|
36409
36441
|
}
|
|
36410
36442
|
var EE = e.from_html('<p class="text-[14px]/[150%] text-white/60"><span class="font-medium text-(--fg)"> </span> Every editing day is free until <span class="font-medium text-green-400"> </span>.</p>'), TE = e.from_html('<p class="text-[14px]/[150%] text-white/60"><span class="font-medium text-(--fg)"> </span> Editing is free until <span class="font-medium text-green-400"> </span>.</p>'), AE = e.from_html(`<p class="text-[14px]/[150%] text-white/60"><span class="font-medium text-(--fg)"> </span> Today's editing day is open.</p>`), IE = e.from_html('<div class="flex items-center gap-8 text-[13px]"><!> <span class="font-medium text-(--fg)"> </span> <span class="text-white/40">saved</span></div>'), $E = e.from_html(`<div class="flex flex-col items-center justify-center h-full px-24 pb-8 gap-16 text-center"><div class="text-green-400"><!></div> <div class="flex flex-col items-center gap-8"><h2 class="text-[24px]/[110%] font-semibold tracking-[-0.01em] text-(--fg)"> </h2> <!></div> <div class="w-full rounded-2xl bg-white/5 border-t-[0.5px] border-white/10 px-16 py-14 flex flex-col gap-6"><!> <p class="text-[12px]/[150%] text-white/50 text-left">From now on it's automatic: days you publish charge themselves, up to €40/mo.
|
|
36411
36443
|
You only see this again if a payment needs you.</p></div> <!></div>`);
|
|
36412
36444
|
function jE(o, t) {
|
|
36413
36445
|
e.push(t, !0);
|
|
36414
36446
|
let r = e.prop(t, "plan", 3, "day");
|
|
36415
|
-
const { billing: n } = Se(), i = e.derived(() => r() === "year" ? n.coverYear :
|
|
36447
|
+
const { billing: n } = Se(), i = e.derived(() => r() === "year" ? n.coverYear : ji), s = e.derived(() => n.unlimited ? "year" : n.monthCapped ? "month" : "day"), a = e.derived(() => e.get(s) === "year" ? n.cycleEnd : e.get(s) === "month" ? n.monthFreeUntil : null), l = e.derived(() => e.get(a) ? new Date(e.get(a)).toLocaleDateString(void 0, { day: "numeric", month: "long", year: "numeric" }) : null), c = e.derived(() => e.get(s) === "year" ? "The year's on us" : e.get(s) === "month" ? "The rest of the month's on us" : "You're editing live");
|
|
36416
36448
|
var u = $E(), d = e.child(u), f = e.child(d);
|
|
36417
36449
|
_e(f, { name: "check-circle", variant: "duotone", class: "size-72" }), e.reset(d);
|
|
36418
36450
|
var h = e.sibling(d, 2), p = e.child(h), g = e.child(p, !0);
|
|
@@ -37114,7 +37146,7 @@ function hT(o, t) {
|
|
|
37114
37146
|
{
|
|
37115
37147
|
var _ = (R) => {
|
|
37116
37148
|
var $ = cT(), F = e.child($);
|
|
37117
|
-
|
|
37149
|
+
gi(F, { content: "Visit page", trigger: (A, D) => {
|
|
37118
37150
|
let I = () => D?.().props;
|
|
37119
37151
|
ke(A, e.spread_props(I, {
|
|
37120
37152
|
tone: "idle",
|
|
@@ -37235,8 +37267,8 @@ var Kl = e.from_html("<!> <!>", 1), fT = e.from_html('<div class="mt-10 first:mt
|
|
|
37235
37267
|
function gT(o, t) {
|
|
37236
37268
|
e.push(t, !0);
|
|
37237
37269
|
const { content: r, can: n, modals: i, win: s } = Se(), a = Ke(), l = t.entry.session;
|
|
37238
|
-
|
|
37239
|
-
const c = e.derived(() => r.getSchema(l.key)), u = e.derived(() =>
|
|
37270
|
+
ai(Qn, l);
|
|
37271
|
+
const c = e.derived(() => r.getSchema(l.key)), u = e.derived(() => es(e.get(c), l.formData, l.originalData)), d = e.derived(() => l.formData?.title?.trim() || l.itemId), f = e.derived(() => n.editStructure), h = e.derived(() => n.canDelete("collections")), p = e.derived(() => cl(s, 380)), g = e.derived(() => ({
|
|
37240
37272
|
x: e.get(p).pos.x + t.index * 28,
|
|
37241
37273
|
y: e.get(p).pos.y + t.index * 28
|
|
37242
37274
|
}));
|
|
@@ -37355,7 +37387,7 @@ function gT(o, t) {
|
|
|
37355
37387
|
}
|
|
37356
37388
|
}), e.reset(R), e.append(S, R);
|
|
37357
37389
|
}, T = (S) => {
|
|
37358
|
-
|
|
37390
|
+
si(S, {
|
|
37359
37391
|
get field() {
|
|
37360
37392
|
return e.get(O).item;
|
|
37361
37393
|
}
|
|
@@ -37886,7 +37918,7 @@ function $T(o, t) {
|
|
|
37886
37918
|
e.delegate(["click"]);
|
|
37887
37919
|
var jT = e.from_html("<!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!> <!>", 1);
|
|
37888
37920
|
function RT(o, t) {
|
|
37889
|
-
e.push(t, !0),
|
|
37921
|
+
e.push(t, !0), ai("app", t.app);
|
|
37890
37922
|
var r = jT(), n = e.first_child(r);
|
|
37891
37923
|
CM(n, {});
|
|
37892
37924
|
var i = e.sibling(n, 2);
|
|
@@ -38064,7 +38096,7 @@ function WT(o, t) {
|
|
|
38064
38096
|
const oe = X.clientX - D + A.width / 2, j = X.clientY - I + A.height / 2, K = document.elementFromPoint(oe, j)?.closest("[data-okno-item]")?.getAttribute("data-okno-item")?.match(F);
|
|
38065
38097
|
if (!K) return;
|
|
38066
38098
|
const G = Number(K[1]);
|
|
38067
|
-
G !== Z && (
|
|
38099
|
+
G !== Z && (ks(R, Z, G), Z = G);
|
|
38068
38100
|
}, U = (X) => {
|
|
38069
38101
|
window.removeEventListener("pointermove", q), window.removeEventListener("pointerup", U), N.remove(), z.classList.remove("okno-pin-dragsource"), e.set(u, !1), i.dragging = !1, Z !== $ && (E(R, $, Z), i.rescanMaps(), y(`${C(R)}.${Z}`), document.elementFromPoint(X.clientX, X.clientY)?.dispatchEvent(new PointerEvent("pointerover", { bubbles: !0, clientX: X.clientX, clientY: X.clientY })));
|
|
38070
38102
|
};
|
|
@@ -38140,7 +38172,7 @@ function WT(o, t) {
|
|
|
38140
38172
|
e.delegate(["click", "pointerdown"]);
|
|
38141
38173
|
var VT = e.from_html("<div></div>");
|
|
38142
38174
|
function BT(o, t) {
|
|
38143
|
-
e.push(t, !0),
|
|
38175
|
+
e.push(t, !0), ai("app", t.app);
|
|
38144
38176
|
const { fields: r, win: n, auth: i, windowStack: s, theme: a, setup: l } = t.app.modules, c = e.derived(() => n.opened && !!i.user);
|
|
38145
38177
|
let u = e.state(null), d = e.state(null), f, h = e.state(null);
|
|
38146
38178
|
function p() {
|
|
@@ -38250,7 +38282,7 @@ class ZT {
|
|
|
38250
38282
|
project;
|
|
38251
38283
|
cleanup;
|
|
38252
38284
|
get authHeaders() {
|
|
38253
|
-
const t =
|
|
38285
|
+
const t = Hi(), r = {};
|
|
38254
38286
|
t && (r.Authorization = `Bearer ${t}`);
|
|
38255
38287
|
const n = this.project.repoHeader;
|
|
38256
38288
|
n && (r["X-Okno-Repo"] = n);
|
|
@@ -38263,7 +38295,7 @@ class ZT {
|
|
|
38263
38295
|
console.error("OKNO_API_URL not configured - cannot authenticate"), this.auth.setUser(null);
|
|
38264
38296
|
return;
|
|
38265
38297
|
}
|
|
38266
|
-
if (
|
|
38298
|
+
if (Hi()) {
|
|
38267
38299
|
this.auth.loading = !0;
|
|
38268
38300
|
let r = !1;
|
|
38269
38301
|
C5() && localStorage.getItem($a) && (r = !0, await Xl());
|
|
@@ -38704,7 +38736,7 @@ function rA(o) {
|
|
|
38704
38736
|
const t = { values: {}, slots: {} };
|
|
38705
38737
|
return o && typeof o == "object" && !Array.isArray(o) && Bp(o, "", t), t;
|
|
38706
38738
|
}
|
|
38707
|
-
const nA = "okno-cache", oA = 1,
|
|
38739
|
+
const nA = "okno-cache", oA = 1, qi = "blobs", I1 = "trees", Xi = "thumbs";
|
|
38708
38740
|
let Tn = null;
|
|
38709
38741
|
function gd() {
|
|
38710
38742
|
return Tn || (typeof indexedDB > "u" ? (Tn = new Promise(() => {
|
|
@@ -38712,7 +38744,7 @@ function gd() {
|
|
|
38712
38744
|
const r = indexedDB.open(nA, oA);
|
|
38713
38745
|
r.onerror = () => t(r.error), r.onsuccess = () => o(r.result), r.onupgradeneeded = () => {
|
|
38714
38746
|
const n = r.result;
|
|
38715
|
-
n.objectStoreNames.contains(
|
|
38747
|
+
n.objectStoreNames.contains(qi) || n.createObjectStore(qi), n.objectStoreNames.contains(I1) || n.createObjectStore(I1), n.objectStoreNames.contains(Xi) || n.createObjectStore(Xi);
|
|
38716
38748
|
};
|
|
38717
38749
|
}), Tn.catch(() => {
|
|
38718
38750
|
Tn = null;
|
|
@@ -38761,7 +38793,7 @@ function ot(o, t, r, n) {
|
|
|
38761
38793
|
function iA(o, t, r) {
|
|
38762
38794
|
return `${o}/${t}/${r}`;
|
|
38763
38795
|
}
|
|
38764
|
-
const sA = (o, t) => vd(
|
|
38796
|
+
const sA = (o, t) => vd(qi, o, t), aA = (o) => Kp(qi, o), St = (o) => Up(qi, o), lA = (o, t) => vd(I1, o, t), cA = (o, t) => vd(Xi, o, t), dA = (o) => Kp(Xi, o), Yl = (o) => Up(Xi, o), nt = Mr("content-controller"), uA = "okno", Gl = /^([a-z]{2,3}(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?)\/(.+)$/;
|
|
38765
38797
|
class md {
|
|
38766
38798
|
constructor(t, r, n, i, s, a, l, c, u, d, f, h) {
|
|
38767
38799
|
this.content = t, this.project = r, this.auth = n, this.locale = i, this.router = s, this.billing = a, this.confirms = l, this.toasts = c, this.bus = u, this.win = d, this.schema = f, this.theme = h, this.content.requestSave = () => this.saveCurrent();
|
|
@@ -38799,11 +38831,7 @@ class md {
|
|
|
38799
38831
|
}), this.bus?.on("field:click", (t) => {
|
|
38800
38832
|
t.field && this.focusField(t.field);
|
|
38801
38833
|
}), this.bus?.on("content:ready", () => {
|
|
38802
|
-
Xs("okno:content-ready");
|
|
38803
|
-
const t = this.cacheKey;
|
|
38804
|
-
if (!t) return;
|
|
38805
|
-
const r = this.content.snapshot();
|
|
38806
|
-
md.snapshotEmpty(r) || Vp(t, r);
|
|
38834
|
+
Xs("okno:content-ready"), this.writeBootCache();
|
|
38807
38835
|
}), this.bus?.on("billing:charged", () => {
|
|
38808
38836
|
const t = this.pendingEditingDayRetry;
|
|
38809
38837
|
this.pendingEditingDayRetry = null, t?.();
|
|
@@ -38854,10 +38882,21 @@ class md {
|
|
|
38854
38882
|
static snapshotEmpty(t) {
|
|
38855
38883
|
return !Object.keys(t.pages ?? {}).length && !Object.keys(t.collections ?? {}).length && !Object.keys(t.globals ?? {}).length;
|
|
38856
38884
|
}
|
|
38885
|
+
/** Refresh the boot SWR cache from current in-memory content. Runs on
|
|
38886
|
+
* content:ready (after a load) AND after every save/optimistic mutation — else
|
|
38887
|
+
* a reload right after saving hydrates the PRE-save snapshot and shows the old
|
|
38888
|
+
* value until the ~1.6s live load reconciles. Never caches an empty snapshot
|
|
38889
|
+
* (a transient blip must not clobber a good one). */
|
|
38890
|
+
writeBootCache() {
|
|
38891
|
+
const t = this.cacheKey;
|
|
38892
|
+
if (!t) return;
|
|
38893
|
+
const r = this.content.snapshot();
|
|
38894
|
+
md.snapshotEmpty(r) || Vp(t, r);
|
|
38895
|
+
}
|
|
38857
38896
|
/** Optimistic paint from the SWR cache. No-op once content is ready, without a
|
|
38858
38897
|
* token, or with no cache. Idempotent — safe to call at boot AND in load(). */
|
|
38859
38898
|
hydrateContentCache() {
|
|
38860
|
-
if (this.content.ready || !
|
|
38899
|
+
if (this.content.ready || !Hi() && !this.project.demo) return;
|
|
38861
38900
|
const t = this.cacheKey;
|
|
38862
38901
|
if (!t) return;
|
|
38863
38902
|
const r = Wp(t);
|
|
@@ -39091,7 +39130,7 @@ class md {
|
|
|
39091
39130
|
* `from` source (default `title`), kebab-cased. Falls back to "item" when the
|
|
39092
39131
|
* source is empty; de-dupes against existing items with a numeric suffix. */
|
|
39093
39132
|
deriveItemSlug(t) {
|
|
39094
|
-
const n = this.content.getSchema(t)?.fields?.slug?.from || "title", i = this.content.formData, s = i[n] ?? i.title ?? "", a =
|
|
39133
|
+
const n = this.content.getSchema(t)?.fields?.slug?.from || "title", i = this.content.formData, s = i[n] ?? i.title ?? "", a = Bo(typeof s == "string" ? s : String(s ?? "")) || "item", l = new Set(this.content.getRecords(t).map((u) => u.slug));
|
|
39095
39134
|
if (!l.has(a)) return a;
|
|
39096
39135
|
let c = 2;
|
|
39097
39136
|
for (; l.has(`${a}-${c}`); ) c++;
|
|
@@ -39166,7 +39205,7 @@ class md {
|
|
|
39166
39205
|
const y = this.content.collections[n] ?? [], x = y.findIndex((C) => C.slug === i), w = y.slice();
|
|
39167
39206
|
x >= 0 ? w[x] = a : w.push(a), this.content.collections = { ...this.content.collections, [n]: w };
|
|
39168
39207
|
}
|
|
39169
|
-
nt.info(`Saved ${d}`), s.markSaved(), this.content.pendingPublish = !!p?.productionBranch && p.branch !== p.productionBranch, this.sync(d);
|
|
39208
|
+
nt.info(`Saved ${d}`), s.markSaved(), this.writeBootCache(), this.content.pendingPublish = !!p?.productionBranch && p.branch !== p.productionBranch, this.sync(d);
|
|
39170
39209
|
}).catch((v) => {
|
|
39171
39210
|
nt.error("Save failed:", v), s.saveError = v.message ?? "Save failed";
|
|
39172
39211
|
}).finally(() => {
|
|
@@ -39296,7 +39335,7 @@ class md {
|
|
|
39296
39335
|
});
|
|
39297
39336
|
if (!v.ok && v.status !== 404) throw new Error(`Delete failed: ${v.status}`);
|
|
39298
39337
|
delete this.content.shas[p], h && St(ot(h.owner, h.repo, h.branch, p));
|
|
39299
|
-
})), nt.info(`Deleted item ${t}/${r}`), this.sync(), !0;
|
|
39338
|
+
})), nt.info(`Deleted item ${t}/${r}`), this.writeBootCache(), this.sync(), !0;
|
|
39300
39339
|
} catch (p) {
|
|
39301
39340
|
return nt.error("Item delete failed:", p), this.toasts.error(p?.message ?? "Delete failed"), this.content.collections = { ...this.content.collections, [t]: a }, this.content.localeData.collections[t] = c, f?.includes(r) && this.schema?.setItemOrder(t, f), !1;
|
|
39302
39341
|
}
|
|
@@ -39346,7 +39385,7 @@ class md {
|
|
|
39346
39385
|
});
|
|
39347
39386
|
if (!p.ok && p.status !== 404) throw new Error(`Delete failed: ${p.status}`);
|
|
39348
39387
|
delete this.content.shas[f], d && St(ot(d.owner, d.repo, d.branch, f));
|
|
39349
|
-
})), nt.info(`Deleted ${r.length} items in ${t}`), this.sync(), !0;
|
|
39388
|
+
})), nt.info(`Deleted ${r.length} items in ${t}`), this.writeBootCache(), this.sync(), !0;
|
|
39350
39389
|
} catch (f) {
|
|
39351
39390
|
return nt.error("Bulk item delete failed:", f), this.toasts.error(f?.message ?? "Delete failed"), this.content.collections = { ...this.content.collections, [t]: n }, this.content.localeData.collections[t] = a, u && this.schema?.setItemOrder(t, u), !1;
|
|
39352
39391
|
}
|
|
@@ -39388,7 +39427,7 @@ class md {
|
|
|
39388
39427
|
});
|
|
39389
39428
|
if (!p.ok) throw new Error(`Save failed: ${p.status}`);
|
|
39390
39429
|
const v = (await p.json())?.commit?.fileSha;
|
|
39391
|
-
v && (this.content.shas[u] = v), h && St(ot(h.owner, h.repo, h.branch, u)), this.content.pendingPublish = !!h?.productionBranch && h.branch !== h.productionBranch, this.sync(u);
|
|
39430
|
+
v && (this.content.shas[u] = v), h && St(ot(h.owner, h.repo, h.branch, u)), this.writeBootCache(), this.content.pendingPublish = !!h?.productionBranch && h.branch !== h.productionBranch, this.sync(u);
|
|
39392
39431
|
} catch (p) {
|
|
39393
39432
|
nt.error("Set item status failed:", p), this.toasts.error(p?.message ?? "Save failed");
|
|
39394
39433
|
const g = (this.content.collections[t] ?? []).slice(), v = g.findIndex((m) => m.slug === r);
|
|
@@ -40023,7 +40062,7 @@ class bd {
|
|
|
40023
40062
|
/** Optimistic paint from the SWR cache. No-op once items exist, without a token,
|
|
40024
40063
|
* or with no cache. Thumbnails re-hydrate from the IDB thumb cache by sha. */
|
|
40025
40064
|
hydrateFilesCache() {
|
|
40026
|
-
if (this.files.items.length || !
|
|
40065
|
+
if (this.files.items.length || !Hi() && !this.project.demo) return;
|
|
40027
40066
|
const t = this.filesCacheKey;
|
|
40028
40067
|
if (!t) return;
|
|
40029
40068
|
const r = Wp(t);
|
|
@@ -41900,7 +41939,7 @@ class PA {
|
|
|
41900
41939
|
}
|
|
41901
41940
|
}
|
|
41902
41941
|
}
|
|
41903
|
-
const
|
|
41942
|
+
const Oi = Mr("users-controller");
|
|
41904
41943
|
async function OA(o) {
|
|
41905
41944
|
try {
|
|
41906
41945
|
const t = await fetch(`https://api.github.com/users/${encodeURIComponent(o)}`, {
|
|
@@ -41998,7 +42037,7 @@ class EA {
|
|
|
41998
42037
|
const a = this.project.currentRepo;
|
|
41999
42038
|
return a && St(ot(a.owner, a.repo, a.branch, "users.json")), !0;
|
|
42000
42039
|
} catch (r) {
|
|
42001
|
-
return
|
|
42040
|
+
return Oi.error("users save failed:", r), this.toasts.error(r?.message ?? "Save failed"), this.refreshSha(), !1;
|
|
42002
42041
|
} finally {
|
|
42003
42042
|
this.content.usersSaving = !1;
|
|
42004
42043
|
}
|
|
@@ -42008,7 +42047,7 @@ class EA {
|
|
|
42008
42047
|
const t = this.project.oknoDir.endsWith("/") ? this.project.oknoDir : `${this.project.oknoDir}/`, r = await $i(this.project, `${t}users.json`);
|
|
42009
42048
|
r && (this.content.shas["users.json"] = r);
|
|
42010
42049
|
} catch (t) {
|
|
42011
|
-
|
|
42050
|
+
Oi.warn("refreshSha failed:", t);
|
|
42012
42051
|
}
|
|
42013
42052
|
}
|
|
42014
42053
|
// --- Invite links (shareable; accepted via the backend /invite page) ---
|
|
@@ -42026,7 +42065,7 @@ class EA {
|
|
|
42026
42065
|
if (!i.ok) throw new Error(s.error || `Failed: ${i.status}`);
|
|
42027
42066
|
return s.link;
|
|
42028
42067
|
} catch (i) {
|
|
42029
|
-
return
|
|
42068
|
+
return Oi.error("createInvite failed:", i), this.toasts.error(i?.message ?? "Couldn't create invite"), null;
|
|
42030
42069
|
}
|
|
42031
42070
|
}
|
|
42032
42071
|
/** List the project's pending invites. */
|
|
@@ -42035,7 +42074,7 @@ class EA {
|
|
|
42035
42074
|
const t = await fetch(`${this.apiUrl}/api/invites`, { headers: this.backendHeaders });
|
|
42036
42075
|
return t.ok ? (await t.json()).invites ?? [] : [];
|
|
42037
42076
|
} catch (t) {
|
|
42038
|
-
return
|
|
42077
|
+
return Oi.warn("listInvites failed:", t), [];
|
|
42039
42078
|
}
|
|
42040
42079
|
}
|
|
42041
42080
|
/** Revoke a pending invite by token. */
|
|
@@ -42051,7 +42090,7 @@ class EA {
|
|
|
42051
42090
|
}
|
|
42052
42091
|
return !0;
|
|
42053
42092
|
} catch (r) {
|
|
42054
|
-
return
|
|
42093
|
+
return Oi.error("revokeInvite failed:", r), this.toasts.error(r?.message ?? "Couldn't revoke invite"), !1;
|
|
42055
42094
|
}
|
|
42056
42095
|
}
|
|
42057
42096
|
}
|
|
@@ -42130,7 +42169,7 @@ class AA {
|
|
|
42130
42169
|
}
|
|
42131
42170
|
}
|
|
42132
42171
|
}
|
|
42133
|
-
const
|
|
42172
|
+
const Ei = Mr("app");
|
|
42134
42173
|
function IA(o, t, r) {
|
|
42135
42174
|
const n = [], i = performance.now(), s = (c) => c ? (c.shadowRoot?.textContent?.length ?? 0) + (c.textContent?.length ?? 0) : 0, a = () => {
|
|
42136
42175
|
const c = o.setup, u = o.project, d = o.router, f = o.content, h = o.files, p = o.win;
|
|
@@ -42197,14 +42236,14 @@ const $A = (o) => {
|
|
|
42197
42236
|
users: new EA(t.content, t.project, t.auth, t.toasts),
|
|
42198
42237
|
origins: new AA(t.content, t.project, t.toasts)
|
|
42199
42238
|
};
|
|
42200
|
-
|
|
42239
|
+
Ei.ok("All modules initialized.");
|
|
42201
42240
|
const i = o.floatingRoot;
|
|
42202
42241
|
return window.okno = {
|
|
42203
42242
|
modules: t,
|
|
42204
42243
|
controllers: n,
|
|
42205
42244
|
/** Build marker — bump/rename to confirm which editor bundle is actually
|
|
42206
42245
|
* loaded (worktree vs main dist). Check `window.okno.build` in the console. */
|
|
42207
|
-
build: "windowframe-unified-
|
|
42246
|
+
build: "windowframe-unified-r24-media-stale-patch",
|
|
42208
42247
|
/** Boot timing milestones (ms since page load): `window.okno.perf()`. */
|
|
42209
42248
|
perf: () => f5(),
|
|
42210
42249
|
/** Boot flash tracer dump — set localStorage.oknoTrace="1", reload, then call
|
|
@@ -42245,10 +42284,10 @@ const $A = (o) => {
|
|
|
42245
42284
|
reconnectProject: () => n.setup.reconnect()
|
|
42246
42285
|
}, console.warn("[okno] build:", window.okno.build, "· App exposed: window.okno (modules, controllers, apiUrl, …)"), { modules: t, controllers: n, start: async () => {
|
|
42247
42286
|
const l = typeof __OKNO_IS_DEV__ < "u" && __OKNO_IS_DEV__ || typeof document < "u" && document.querySelector('script[src="/__okno_bootstrap.js"]') !== null, c = typeof __OKNO_DEMO__ < "u" && __OKNO_DEMO__ || globalThis.__oknoDemo === !0;
|
|
42248
|
-
t.project.setDev(l), t.project.setDemo(c), t.project.setApiUrl(__OKNO_API_URL__), t.project.setBakedRepo(typeof __OKNO_REPO__ < "u" ? __OKNO_REPO__ : null), t.project.setBakedRoot(typeof __OKNO_ROOT__ < "u" ? __OKNO_ROOT__ : null), console.log("[okno] start: apiUrl =", __OKNO_API_URL__), Object.values(t).forEach((
|
|
42249
|
-
|
|
42250
|
-
}), console.log("[okno] start: modules started"), Object.values(n).forEach((
|
|
42251
|
-
|
|
42287
|
+
t.project.setDev(l), t.project.setDemo(c), t.project.setApiUrl(__OKNO_API_URL__), t.project.setBakedRepo(typeof __OKNO_REPO__ < "u" ? __OKNO_REPO__ : null), t.project.setBakedRoot(typeof __OKNO_ROOT__ < "u" ? __OKNO_ROOT__ : null), console.log("[okno] start: apiUrl =", __OKNO_API_URL__), Object.values(t).forEach((f) => {
|
|
42288
|
+
f.start && f.start();
|
|
42289
|
+
}), console.log("[okno] start: modules started"), Object.values(n).forEach((f) => {
|
|
42290
|
+
f.start && f.start();
|
|
42252
42291
|
}), console.log("[okno] start: controllers started");
|
|
42253
42292
|
try {
|
|
42254
42293
|
typeof localStorage < "u" && localStorage.getItem("oknoTrace") === "1" && IA(t, o.wrapper, o.floatingRoot);
|
|
@@ -42256,19 +42295,26 @@ const $A = (o) => {
|
|
|
42256
42295
|
}
|
|
42257
42296
|
if (c) {
|
|
42258
42297
|
t.project.currentRepo = { owner: "okno", repo: "demo", branch: "main" }, t.setup.setStatus({ hasInstallation: !0, initialized: !0, installUrl: null }), await Promise.all([n.content.load(), n.files.load()]);
|
|
42259
|
-
const
|
|
42260
|
-
|
|
42298
|
+
const f = t.content.users[0];
|
|
42299
|
+
f && t.auth.setUser(f), n.content.initLocaleFromUrl(), t.router.applyUrlRoute(), console.log("[okno] start: demo ready (login-less, static content)");
|
|
42261
42300
|
return;
|
|
42262
42301
|
}
|
|
42263
42302
|
t.bus.on("auth:login", async () => {
|
|
42264
|
-
|
|
42265
|
-
})
|
|
42266
|
-
|
|
42303
|
+
Ei.info("bus auth:login → setup.start()"), await n.setup.start();
|
|
42304
|
+
});
|
|
42305
|
+
let u = null;
|
|
42306
|
+
t.bus.on("setup:ready", async () => {
|
|
42307
|
+
const f = t.project.currentRepo, h = f ? `${f.owner}/${f.repo}@${f.branch}` : "none";
|
|
42308
|
+
if (h === u && t.content.ready) {
|
|
42309
|
+
Ei.info(`bus setup:ready (dup, ${h}) → skip redundant reload`);
|
|
42310
|
+
return;
|
|
42311
|
+
}
|
|
42312
|
+
u = h, Ei.info(`bus setup:ready (${h}) → load content+files`), await Promise.all([n.content.load(), n.files.load()]), n.content.initLocaleFromUrl(), t.router.applyUrlRoute(), Ei.info("bus setup:ready → load done + route applied");
|
|
42267
42313
|
}), t.bus.on("content:reload", () => {
|
|
42268
42314
|
n.content.load();
|
|
42269
42315
|
}), console.log("[okno] start: calling auth.init()"), await n.auth.init(), console.log("[okno] start: auth.init() resolved — auth.user:", t.auth.user ? "logged-in" : "anonymous");
|
|
42270
|
-
const
|
|
42271
|
-
|
|
42316
|
+
const d = window.__okno_autostart;
|
|
42317
|
+
d && (window.__okno_autostart = !1, d !== "session" && !t.auth.user && n.authToolbar.show());
|
|
42272
42318
|
}, destroy: () => {
|
|
42273
42319
|
Object.values(n).forEach((l) => {
|
|
42274
42320
|
l.destroy && l.destroy();
|