@lattice-php/lattice 0.41.0 → 0.43.0
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/vite.d.ts +12 -7
- package/dist/vite.js +29 -10
- package/dist/vite.js.map +1 -1
- package/dist-standalone/chunks/date-picker-field-CaRIypsW.js +1 -0
- package/dist-standalone/chunks/{runtime-zkYqbYk4.js → runtime-BAcmOmJP.js} +2 -2
- package/dist-standalone/lattice.js +1 -1
- package/dist-standalone/manifest.json +1 -1
- package/dist-standalone/runtime.js +1 -1
- package/package.json +6 -6
- package/dist-standalone/chunks/date-picker-field-D6S8aN1p.js +0 -1
package/dist/vite.d.ts
CHANGED
|
@@ -30,22 +30,27 @@ export type LatticeComponentPackage = {
|
|
|
30
30
|
dir: string;
|
|
31
31
|
/** Absolute path to the package's JS plugin entry. */
|
|
32
32
|
plugin: string;
|
|
33
|
+
/** Absolute path to the package's stylesheet, when it declares one. */
|
|
34
|
+
css?: string;
|
|
35
|
+
/** Absolute path to the package's icon directory, when it declares one. */
|
|
36
|
+
icons?: string;
|
|
37
|
+
};
|
|
38
|
+
type LatticeManifest = {
|
|
39
|
+
plugin?: string;
|
|
40
|
+
css?: string;
|
|
41
|
+
icons?: string;
|
|
33
42
|
};
|
|
34
43
|
type InstalledPackage = {
|
|
35
44
|
name: string;
|
|
36
45
|
"install-path"?: string;
|
|
37
46
|
extra?: {
|
|
38
|
-
lattice?:
|
|
39
|
-
plugin?: string;
|
|
40
|
-
};
|
|
47
|
+
lattice?: LatticeManifest;
|
|
41
48
|
};
|
|
42
49
|
};
|
|
43
50
|
type RootPackageJson = {
|
|
44
51
|
name?: string;
|
|
45
52
|
extra?: {
|
|
46
|
-
lattice?:
|
|
47
|
-
plugin?: string;
|
|
48
|
-
};
|
|
53
|
+
lattice?: LatticeManifest;
|
|
49
54
|
};
|
|
50
55
|
};
|
|
51
56
|
/**
|
|
@@ -77,5 +82,5 @@ export declare function discoverComponentPackages(appRoot: string): LatticeCompo
|
|
|
77
82
|
*/
|
|
78
83
|
export declare function componentPackagesPlugin(packages: LatticeComponentPackage[]): Plugin;
|
|
79
84
|
export declare function latticeConfig(options?: LatticeViteOptions): ConfigWithTest;
|
|
80
|
-
export declare function resolveIconOptions(options: LatticeViteOptions): SvgSpriteOptions | null;
|
|
85
|
+
export declare function resolveIconOptions(options: LatticeViteOptions, packages?: LatticeComponentPackage[]): SvgSpriteOptions | null;
|
|
81
86
|
export {};
|
package/dist/vite.js
CHANGED
|
@@ -6,16 +6,23 @@ import { searchForWorkspaceRoot } from "vite";
|
|
|
6
6
|
//#region resources/js/vite.ts
|
|
7
7
|
function lattice(options = {}) {
|
|
8
8
|
const { appRoot } = resolveRoots(options);
|
|
9
|
+
const packages = discoverComponentPackages(appRoot);
|
|
9
10
|
const plugins = [
|
|
10
11
|
corePlugin(options),
|
|
11
12
|
optionalPeersPlugin(),
|
|
12
|
-
componentPackagesPlugin(
|
|
13
|
+
componentPackagesPlugin(packages),
|
|
13
14
|
typescriptPlugin(options)
|
|
14
15
|
];
|
|
15
|
-
const iconOptions = resolveIconOptions(options);
|
|
16
|
+
const iconOptions = resolveIconOptions(options, packages);
|
|
16
17
|
if (iconOptions) plugins.push(svgSprite(iconOptions));
|
|
17
18
|
return plugins;
|
|
18
19
|
}
|
|
20
|
+
function resolveManifestPaths(manifest, dir) {
|
|
21
|
+
return {
|
|
22
|
+
...typeof manifest.css === "string" ? { css: path.resolve(dir, manifest.css) } : {},
|
|
23
|
+
...typeof manifest.icons === "string" ? { icons: path.resolve(dir, manifest.icons) } : {}
|
|
24
|
+
};
|
|
25
|
+
}
|
|
19
26
|
/**
|
|
20
27
|
* Resolve every Composer package that declares `extra.lattice.plugin` into an
|
|
21
28
|
* absolute plugin-entry path. `installPathsRelativeTo` is `vendor/composer` (the
|
|
@@ -23,13 +30,15 @@ function lattice(options = {}) {
|
|
|
23
30
|
*/
|
|
24
31
|
function collectComponentPackages(installed, installPathsRelativeTo) {
|
|
25
32
|
return (Array.isArray(installed) ? installed : installed.packages ?? []).flatMap((pkg) => {
|
|
26
|
-
const
|
|
33
|
+
const manifest = pkg.extra?.lattice ?? {};
|
|
34
|
+
const entry = manifest.plugin;
|
|
27
35
|
if (typeof entry !== "string") return [];
|
|
28
36
|
const dir = path.resolve(installPathsRelativeTo, pkg["install-path"] ?? `../${pkg.name}`);
|
|
29
37
|
return [{
|
|
30
38
|
name: pkg.name,
|
|
31
39
|
dir,
|
|
32
|
-
plugin: path.resolve(dir, entry)
|
|
40
|
+
plugin: path.resolve(dir, entry),
|
|
41
|
+
...resolveManifestPaths(manifest, dir)
|
|
33
42
|
}];
|
|
34
43
|
});
|
|
35
44
|
}
|
|
@@ -41,12 +50,13 @@ function collectComponentPackages(installed, installPathsRelativeTo) {
|
|
|
41
50
|
* the package itself is the app root).
|
|
42
51
|
*/
|
|
43
52
|
function collectRootComponentPackage(composerJson, appRoot) {
|
|
44
|
-
const
|
|
45
|
-
if (typeof
|
|
53
|
+
const manifest = composerJson.extra?.lattice ?? {};
|
|
54
|
+
if (typeof manifest.plugin !== "string" || typeof composerJson.name !== "string") return [];
|
|
46
55
|
return [{
|
|
47
56
|
name: composerJson.name,
|
|
48
57
|
dir: appRoot,
|
|
49
|
-
plugin: path.resolve(appRoot,
|
|
58
|
+
plugin: path.resolve(appRoot, manifest.plugin),
|
|
59
|
+
...resolveManifestPaths(manifest, appRoot)
|
|
50
60
|
}];
|
|
51
61
|
}
|
|
52
62
|
/**
|
|
@@ -84,7 +94,12 @@ function componentPackagesPlugin(packages) {
|
|
|
84
94
|
name: "lattice:component-packages",
|
|
85
95
|
config(config) {
|
|
86
96
|
if (packages.length === 0) return {};
|
|
87
|
-
|
|
97
|
+
const workspaceRoot = searchForWorkspaceRoot(config.root ?? process.cwd());
|
|
98
|
+
const alias = Object.fromEntries(packages.flatMap((pkg) => pkg.css ? [[`@${pkg.name}/css`, pkg.css]] : []));
|
|
99
|
+
return {
|
|
100
|
+
...Object.keys(alias).length > 0 ? { resolve: { alias } } : {},
|
|
101
|
+
server: { fs: { allow: [workspaceRoot, ...packages.map((pkg) => pkg.dir)] } }
|
|
102
|
+
};
|
|
88
103
|
},
|
|
89
104
|
resolveId(id) {
|
|
90
105
|
return id === VIRTUAL_PLUGINS_ID ? RESOLVED_VIRTUAL_PLUGINS_ID : null;
|
|
@@ -194,7 +209,7 @@ function typescriptPlugin(options) {
|
|
|
194
209
|
}
|
|
195
210
|
};
|
|
196
211
|
}
|
|
197
|
-
function resolveIconOptions(options) {
|
|
212
|
+
function resolveIconOptions(options, packages = []) {
|
|
198
213
|
const icons = options.icons ?? true;
|
|
199
214
|
if (icons === false) return null;
|
|
200
215
|
const { root } = resolveRoots(options);
|
|
@@ -206,7 +221,11 @@ function resolveIconOptions(options) {
|
|
|
206
221
|
};
|
|
207
222
|
return {
|
|
208
223
|
...spriteOptions,
|
|
209
|
-
iconDirs: [
|
|
224
|
+
iconDirs: [
|
|
225
|
+
path.resolve(root, "../ui/resources/icons"),
|
|
226
|
+
...packages.flatMap((pkg) => pkg.icons ? [pkg.icons] : []),
|
|
227
|
+
...dirs
|
|
228
|
+
],
|
|
210
229
|
...dts === false ? {} : { dts: {
|
|
211
230
|
...defaultTypes,
|
|
212
231
|
...dts
|
package/dist/vite.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vite.js","names":[],"sources":["../resources/js/vite.ts"],"sourcesContent":["import { readFileSync } from \"node:fs\";\nimport path from \"node:path\";\nimport { svgSprite } from \"@lattice-php/vite-svg-sprite\";\nimport type { IconTypesOptions, SvgSpriteOptions } from \"@lattice-php/vite-svg-sprite\";\nimport { searchForWorkspaceRoot } from \"vite\";\nimport type { Plugin, PluginOption, UserConfig } from \"vite\";\nimport { refreshTypeScriptTypes } from \"./vite-typescript-refresh.ts\";\n\ntype InlineDependency = string | RegExp;\n\ntype ConfigWithTest = UserConfig & {\n test?: {\n server?: {\n deps?: {\n inline?: InlineDependency[];\n };\n };\n };\n};\n\nexport type LatticeViteIconsOptions = Omit<SvgSpriteOptions, \"dts\" | \"iconDirs\"> & {\n dirs?: string[];\n dts?: Partial<IconTypesOptions> | false;\n};\n\nexport type LatticeViteOptions = {\n appRoot?: string;\n icons?: boolean | LatticeViteIconsOptions;\n root?: string;\n source?: boolean;\n /** Refresh generated TypeScript types via the dev server. Defaults to `true`. */\n typescript?: boolean;\n};\n\ntype Roots = {\n appRoot: string;\n root: string;\n};\n\nexport function lattice(options: LatticeViteOptions = {}): PluginOption[] {\n const { appRoot } = resolveRoots(options);\n const plugins: PluginOption[] = [\n corePlugin(options),\n optionalPeersPlugin(),\n componentPackagesPlugin(discoverComponentPackages(appRoot)),\n typescriptPlugin(options),\n ];\n const iconOptions = resolveIconOptions(options);\n\n if (iconOptions) {\n plugins.push(svgSprite(iconOptions));\n }\n\n return plugins;\n}\n\n/** A Composer package that contributes a Lattice component plugin. */\nexport type LatticeComponentPackage = {\n name: string;\n /** Absolute path to the package's installed directory. */\n dir: string;\n /** Absolute path to the package's JS plugin entry. */\n plugin: string;\n};\n\ntype InstalledPackage = {\n name: string;\n \"install-path\"?: string;\n extra?: { lattice?: { plugin?: string } };\n};\n\ntype RootPackageJson = {\n name?: string;\n extra?: { lattice?: { plugin?: string } };\n};\n\n/**\n * Resolve every Composer package that declares `extra.lattice.plugin` into an\n * absolute plugin-entry path. `installPathsRelativeTo` is `vendor/composer` (the\n * dir `installed.json` records its `install-path`s against).\n */\nexport function collectComponentPackages(\n installed: { packages?: InstalledPackage[] } | InstalledPackage[],\n installPathsRelativeTo: string,\n): LatticeComponentPackage[] {\n const packages = Array.isArray(installed) ? installed : (installed.packages ?? []);\n\n return packages.flatMap((pkg) => {\n const entry = pkg.extra?.lattice?.plugin;\n\n if (typeof entry !== \"string\") {\n return [];\n }\n\n const dir = path.resolve(installPathsRelativeTo, pkg[\"install-path\"] ?? `../${pkg.name}`);\n\n return [{ name: pkg.name, dir, plugin: path.resolve(dir, entry) }];\n });\n}\n\n/**\n * Resolve the composer ROOT project's own `extra.lattice.plugin` — Composer\n * never lists the root package in `installed.json`, so a component package\n * declaring the plugin entry in its own composer.json would otherwise be\n * invisible to its own dev server (e.g. inside a testbench workbench, where\n * the package itself is the app root).\n */\nexport function collectRootComponentPackage(\n composerJson: RootPackageJson,\n appRoot: string,\n): LatticeComponentPackage[] {\n const entry = composerJson.extra?.lattice?.plugin;\n\n if (typeof entry !== \"string\" || typeof composerJson.name !== \"string\") {\n return [];\n }\n\n return [{ name: composerJson.name, dir: appRoot, plugin: path.resolve(appRoot, entry) }];\n}\n\n/**\n * Read `<appRoot>/vendor/composer/installed.json` and `<appRoot>/composer.json`\n * and collect every component package they contribute.\n */\nexport function discoverComponentPackages(appRoot: string): LatticeComponentPackage[] {\n const composerDir = path.resolve(appRoot, \"vendor/composer\");\n\n let installed: LatticeComponentPackage[] = [];\n\n try {\n const raw = readFileSync(path.join(composerDir, \"installed.json\"), \"utf8\");\n installed = collectComponentPackages(JSON.parse(raw), composerDir);\n } catch {\n installed = [];\n }\n\n let root: LatticeComponentPackage[] = [];\n\n try {\n const raw = readFileSync(path.join(appRoot, \"composer.json\"), \"utf8\");\n root = collectRootComponentPackage(JSON.parse(raw), appRoot);\n } catch {\n root = [];\n }\n\n return [...installed, ...root];\n}\n\nconst VIRTUAL_PLUGINS_ID = \"virtual:lattice/plugins\";\nconst RESOLVED_VIRTUAL_PLUGINS_ID = `\\0${VIRTUAL_PLUGINS_ID}`;\n\n/**\n * Exposes the discovered component packages as `virtual:lattice/plugins` — a\n * module whose default export is the array of their plugin objects,\n * ready for `extendRegistry(registry, ...plugins)`. Also grants Vite filesystem\n * access to each package dir so its source compiles from `vendor/` (or a symlink).\n */\nexport function componentPackagesPlugin(packages: LatticeComponentPackage[]): Plugin {\n return {\n name: \"lattice:component-packages\",\n config(config) {\n if (packages.length === 0) {\n return {};\n }\n\n const workspaceRoot = searchForWorkspaceRoot(config.root ?? process.cwd());\n\n return { server: { fs: { allow: [workspaceRoot, ...packages.map((pkg) => pkg.dir)] } } };\n },\n resolveId(id) {\n return id === VIRTUAL_PLUGINS_ID ? RESOLVED_VIRTUAL_PLUGINS_ID : null;\n },\n load(id) {\n if (id !== RESOLVED_VIRTUAL_PLUGINS_ID) {\n return null;\n }\n\n const imports = packages\n .map((pkg, index) => `import p${index} from ${JSON.stringify(pkg.plugin)};`)\n .join(\"\\n\");\n const list = packages.map((_, index) => `p${index}`).join(\", \");\n\n return `${imports}\\nexport default [${list}];\\n`;\n },\n };\n}\n\nexport function latticeConfig(options: LatticeViteOptions = {}): ConfigWithTest {\n const { appRoot, root } = resolveRoots(options);\n\n return {\n resolve: {\n // A react alias would break SSR: Vite only externalizes bare specifiers,\n // so an absolute path inlines react's CJS into the SSR module runner.\n // `dedupe` alone keeps the app on a single React copy, symlinks included.\n ...(options.source\n ? {\n alias: {\n \"@lattice-php/lattice/css\": path.resolve(root, \"../ui/resources/css/lattice.css\"),\n \"@lattice-php/lattice\": path.resolve(root, \"resources/js\"),\n \"@lattice-php/action\": path.resolve(root, \"../action/resources/js\"),\n \"@lattice-php/core\": path.resolve(root, \"../core/resources/js\"),\n \"@lattice-php/form\": path.resolve(root, \"../form/resources/js\"),\n \"@lattice-php/table\": path.resolve(root, \"../table/resources/js\"),\n \"@lattice-php/ui/css\": path.resolve(root, \"../ui/resources/css/lattice.css\"),\n \"@lattice-php/ui\": path.resolve(root, \"../ui/resources/js\"),\n },\n }\n : {}),\n dedupe: [\"@inertiajs/react\", \"react\", \"react-dom\"],\n },\n server: options.source\n ? {\n fs: {\n allow: [searchForWorkspaceRoot(appRoot), root],\n },\n }\n : undefined,\n test: {\n server: {\n deps: {\n inline: [\n \"@lattice-php/lattice\",\n \"@lattice-php/action\",\n \"@lattice-php/core\",\n \"@lattice-php/form\",\n \"@lattice-php/table\",\n \"@lattice-php/ui\",\n /[/\\\\]lattice[/\\\\]dist[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]@radix-ui[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]@tiptap[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]react-i18next[/\\\\]/,\n ],\n },\n },\n },\n };\n}\n\nfunction corePlugin(options: LatticeViteOptions): Plugin {\n return {\n name: \"lattice\",\n config() {\n return latticeConfig(options);\n },\n };\n}\n\nconst OPTIONAL_PEER_STUB_PREFIX = \"\\0lattice-optional-peer/\";\n\n/**\n * Real-time listeners statically import their optional Echo peers. A consumer\n * that never uses real-time should still build, so stub a missing peer with\n * hooks that throw — the `RealtimeListeners` error boundary then degrades\n * gracefully and warns to install the peer, exactly as when it is absent.\n */\nconst OPTIONAL_PEER_STUBS: Record<string, string> = {\n \"@laravel/echo-react\": [\n \"const missing = () => {\",\n \" throw new Error(\",\n ' \"[lattice] Real-time listeners require @laravel/echo-react. Install it and call configureEcho().\",',\n \" );\",\n \"};\",\n \"export const useEcho = missing;\",\n \"export const useEchoPublic = missing;\",\n \"export const useEchoPresence = missing;\",\n \"export const useEchoNotification = missing;\",\n ].join(\"\\n\"),\n};\n\nfunction optionalPeersPlugin(): Plugin {\n return {\n name: \"lattice:optional-peers\",\n enforce: \"pre\",\n async resolveId(id) {\n if (!Object.prototype.hasOwnProperty.call(OPTIONAL_PEER_STUBS, id)) {\n return null;\n }\n\n const installed = await this.resolve(id, undefined, { skipSelf: true });\n\n return installed ? null : `${OPTIONAL_PEER_STUB_PREFIX}${id}`;\n },\n load(id) {\n if (!id.startsWith(OPTIONAL_PEER_STUB_PREFIX)) {\n return null;\n }\n\n return OPTIONAL_PEER_STUBS[id.slice(OPTIONAL_PEER_STUB_PREFIX.length)] ?? null;\n },\n };\n}\n\n/**\n * Refreshes `node.props` typings from the app's own `php artisan\n * lattice:typescript` whenever the dev server starts — installing or updating\n * a component package would otherwise leave its generated types stale until\n * someone remembers to run the command by hand. Dev-server only: a production\n * build machine may not have PHP installed, and the generated file is a dev\n * ergonomics artifact, not a build input.\n *\n * Module-private like its siblings `optionalPeersPlugin`/`corePlugin` — the\n * `refreshTypeScriptTypes` DI seam it defers to lives in\n * `./vite-typescript-refresh`, which isn't part of the published `vite`\n * subpath either (see that module for why).\n */\nfunction typescriptPlugin(options: LatticeViteOptions): Plugin {\n return {\n name: \"lattice:typescript\",\n apply: \"serve\",\n configureServer(server) {\n const typescript = options.typescript ?? true;\n\n if (typescript === false) {\n return;\n }\n\n const { appRoot } = resolveRoots(options);\n\n refreshTypeScriptTypes(appRoot, server.config.logger);\n },\n };\n}\n\nexport function resolveIconOptions(options: LatticeViteOptions): SvgSpriteOptions | null {\n const icons = options.icons ?? true;\n\n if (icons === false) {\n return null;\n }\n\n const { root } = resolveRoots(options);\n const iconOptions = icons === true ? {} : icons;\n const { dirs = [], dts, ...spriteOptions } = iconOptions;\n const defaultTypes = {\n file: \"resources/js/types/sprite-icons.ts\",\n augmentModule: \"@lattice-php/ui\",\n augmentInterface: \"KnownIcons\",\n };\n\n return {\n ...spriteOptions,\n iconDirs: [path.resolve(root, \"../ui/resources/icons\"), ...dirs],\n ...(dts === false ? {} : { dts: { ...defaultTypes, ...dts } }),\n };\n}\n\nfunction resolveRoots(options: LatticeViteOptions): Roots {\n const appRoot = options.appRoot ?? process.cwd();\n const root = options.root ?? path.resolve(appRoot, \"vendor/lattice-php/lattice\");\n\n return { appRoot, root };\n}\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"vite.js","names":[],"sources":["../resources/js/vite.ts"],"sourcesContent":["import { readFileSync } from \"node:fs\";\nimport path from \"node:path\";\nimport { svgSprite } from \"@lattice-php/vite-svg-sprite\";\nimport type { IconTypesOptions, SvgSpriteOptions } from \"@lattice-php/vite-svg-sprite\";\nimport { searchForWorkspaceRoot } from \"vite\";\nimport type { Plugin, PluginOption, UserConfig } from \"vite\";\nimport { refreshTypeScriptTypes } from \"./vite-typescript-refresh.ts\";\n\ntype InlineDependency = string | RegExp;\n\ntype ConfigWithTest = UserConfig & {\n test?: {\n server?: {\n deps?: {\n inline?: InlineDependency[];\n };\n };\n };\n};\n\nexport type LatticeViteIconsOptions = Omit<SvgSpriteOptions, \"dts\" | \"iconDirs\"> & {\n dirs?: string[];\n dts?: Partial<IconTypesOptions> | false;\n};\n\nexport type LatticeViteOptions = {\n appRoot?: string;\n icons?: boolean | LatticeViteIconsOptions;\n root?: string;\n source?: boolean;\n /** Refresh generated TypeScript types via the dev server. Defaults to `true`. */\n typescript?: boolean;\n};\n\ntype Roots = {\n appRoot: string;\n root: string;\n};\n\nexport function lattice(options: LatticeViteOptions = {}): PluginOption[] {\n const { appRoot } = resolveRoots(options);\n const packages = discoverComponentPackages(appRoot);\n const plugins: PluginOption[] = [\n corePlugin(options),\n optionalPeersPlugin(),\n componentPackagesPlugin(packages),\n typescriptPlugin(options),\n ];\n const iconOptions = resolveIconOptions(options, packages);\n\n if (iconOptions) {\n plugins.push(svgSprite(iconOptions));\n }\n\n return plugins;\n}\n\n/** A Composer package that contributes a Lattice component plugin. */\nexport type LatticeComponentPackage = {\n name: string;\n /** Absolute path to the package's installed directory. */\n dir: string;\n /** Absolute path to the package's JS plugin entry. */\n plugin: string;\n /** Absolute path to the package's stylesheet, when it declares one. */\n css?: string;\n /** Absolute path to the package's icon directory, when it declares one. */\n icons?: string;\n};\n\ntype LatticeManifest = { plugin?: string; css?: string; icons?: string };\n\ntype InstalledPackage = {\n name: string;\n \"install-path\"?: string;\n extra?: { lattice?: LatticeManifest };\n};\n\ntype RootPackageJson = {\n name?: string;\n extra?: { lattice?: LatticeManifest };\n};\n\nfunction resolveManifestPaths(\n manifest: LatticeManifest,\n dir: string,\n): Pick<LatticeComponentPackage, \"css\" | \"icons\"> {\n return {\n ...(typeof manifest.css === \"string\" ? { css: path.resolve(dir, manifest.css) } : {}),\n ...(typeof manifest.icons === \"string\" ? { icons: path.resolve(dir, manifest.icons) } : {}),\n };\n}\n\n/**\n * Resolve every Composer package that declares `extra.lattice.plugin` into an\n * absolute plugin-entry path. `installPathsRelativeTo` is `vendor/composer` (the\n * dir `installed.json` records its `install-path`s against).\n */\nexport function collectComponentPackages(\n installed: { packages?: InstalledPackage[] } | InstalledPackage[],\n installPathsRelativeTo: string,\n): LatticeComponentPackage[] {\n const packages = Array.isArray(installed) ? installed : (installed.packages ?? []);\n\n return packages.flatMap((pkg) => {\n const manifest = pkg.extra?.lattice ?? {};\n const entry = manifest.plugin;\n\n if (typeof entry !== \"string\") {\n return [];\n }\n\n const dir = path.resolve(installPathsRelativeTo, pkg[\"install-path\"] ?? `../${pkg.name}`);\n\n return [\n {\n name: pkg.name,\n dir,\n plugin: path.resolve(dir, entry),\n ...resolveManifestPaths(manifest, dir),\n },\n ];\n });\n}\n\n/**\n * Resolve the composer ROOT project's own `extra.lattice.plugin` — Composer\n * never lists the root package in `installed.json`, so a component package\n * declaring the plugin entry in its own composer.json would otherwise be\n * invisible to its own dev server (e.g. inside a testbench workbench, where\n * the package itself is the app root).\n */\nexport function collectRootComponentPackage(\n composerJson: RootPackageJson,\n appRoot: string,\n): LatticeComponentPackage[] {\n const manifest = composerJson.extra?.lattice ?? {};\n\n if (typeof manifest.plugin !== \"string\" || typeof composerJson.name !== \"string\") {\n return [];\n }\n\n return [\n {\n name: composerJson.name,\n dir: appRoot,\n plugin: path.resolve(appRoot, manifest.plugin),\n ...resolveManifestPaths(manifest, appRoot),\n },\n ];\n}\n\n/**\n * Read `<appRoot>/vendor/composer/installed.json` and `<appRoot>/composer.json`\n * and collect every component package they contribute.\n */\nexport function discoverComponentPackages(appRoot: string): LatticeComponentPackage[] {\n const composerDir = path.resolve(appRoot, \"vendor/composer\");\n\n let installed: LatticeComponentPackage[] = [];\n\n try {\n const raw = readFileSync(path.join(composerDir, \"installed.json\"), \"utf8\");\n installed = collectComponentPackages(JSON.parse(raw), composerDir);\n } catch {\n installed = [];\n }\n\n let root: LatticeComponentPackage[] = [];\n\n try {\n const raw = readFileSync(path.join(appRoot, \"composer.json\"), \"utf8\");\n root = collectRootComponentPackage(JSON.parse(raw), appRoot);\n } catch {\n root = [];\n }\n\n return [...installed, ...root];\n}\n\nconst VIRTUAL_PLUGINS_ID = \"virtual:lattice/plugins\";\nconst RESOLVED_VIRTUAL_PLUGINS_ID = `\\0${VIRTUAL_PLUGINS_ID}`;\n\n/**\n * Exposes the discovered component packages as `virtual:lattice/plugins` — a\n * module whose default export is the array of their plugin objects,\n * ready for `extendRegistry(registry, ...plugins)`. Also grants Vite filesystem\n * access to each package dir so its source compiles from `vendor/` (or a symlink).\n */\nexport function componentPackagesPlugin(packages: LatticeComponentPackage[]): Plugin {\n return {\n name: \"lattice:component-packages\",\n config(config) {\n if (packages.length === 0) {\n return {};\n }\n\n const workspaceRoot = searchForWorkspaceRoot(config.root ?? process.cwd());\n // Vite's mergeAlias puts plugin-config aliases in front of the user config's,\n // so this specific `/css` alias wins over a user's broader package-dir alias.\n const alias = Object.fromEntries(\n packages.flatMap((pkg) => (pkg.css ? [[`@${pkg.name}/css`, pkg.css]] : [])),\n );\n\n return {\n ...(Object.keys(alias).length > 0 ? { resolve: { alias } } : {}),\n server: { fs: { allow: [workspaceRoot, ...packages.map((pkg) => pkg.dir)] } },\n };\n },\n resolveId(id) {\n return id === VIRTUAL_PLUGINS_ID ? RESOLVED_VIRTUAL_PLUGINS_ID : null;\n },\n load(id) {\n if (id !== RESOLVED_VIRTUAL_PLUGINS_ID) {\n return null;\n }\n\n const imports = packages\n .map((pkg, index) => `import p${index} from ${JSON.stringify(pkg.plugin)};`)\n .join(\"\\n\");\n const list = packages.map((_, index) => `p${index}`).join(\", \");\n\n return `${imports}\\nexport default [${list}];\\n`;\n },\n };\n}\n\nexport function latticeConfig(options: LatticeViteOptions = {}): ConfigWithTest {\n const { appRoot, root } = resolveRoots(options);\n\n return {\n resolve: {\n // A react alias would break SSR: Vite only externalizes bare specifiers,\n // so an absolute path inlines react's CJS into the SSR module runner.\n // `dedupe` alone keeps the app on a single React copy, symlinks included.\n ...(options.source\n ? {\n alias: {\n \"@lattice-php/lattice/css\": path.resolve(root, \"../ui/resources/css/lattice.css\"),\n \"@lattice-php/lattice\": path.resolve(root, \"resources/js\"),\n \"@lattice-php/action\": path.resolve(root, \"../action/resources/js\"),\n \"@lattice-php/core\": path.resolve(root, \"../core/resources/js\"),\n \"@lattice-php/form\": path.resolve(root, \"../form/resources/js\"),\n \"@lattice-php/table\": path.resolve(root, \"../table/resources/js\"),\n \"@lattice-php/ui/css\": path.resolve(root, \"../ui/resources/css/lattice.css\"),\n \"@lattice-php/ui\": path.resolve(root, \"../ui/resources/js\"),\n },\n }\n : {}),\n dedupe: [\"@inertiajs/react\", \"react\", \"react-dom\"],\n },\n server: options.source\n ? {\n fs: {\n allow: [searchForWorkspaceRoot(appRoot), root],\n },\n }\n : undefined,\n test: {\n server: {\n deps: {\n inline: [\n \"@lattice-php/lattice\",\n \"@lattice-php/action\",\n \"@lattice-php/core\",\n \"@lattice-php/form\",\n \"@lattice-php/table\",\n \"@lattice-php/ui\",\n /[/\\\\]lattice[/\\\\]dist[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]@radix-ui[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]@tiptap[/\\\\]/,\n /[/\\\\]lattice[/\\\\]node_modules[/\\\\]react-i18next[/\\\\]/,\n ],\n },\n },\n },\n };\n}\n\nfunction corePlugin(options: LatticeViteOptions): Plugin {\n return {\n name: \"lattice\",\n config() {\n return latticeConfig(options);\n },\n };\n}\n\nconst OPTIONAL_PEER_STUB_PREFIX = \"\\0lattice-optional-peer/\";\n\n/**\n * Real-time listeners statically import their optional Echo peers. A consumer\n * that never uses real-time should still build, so stub a missing peer with\n * hooks that throw — the `RealtimeListeners` error boundary then degrades\n * gracefully and warns to install the peer, exactly as when it is absent.\n */\nconst OPTIONAL_PEER_STUBS: Record<string, string> = {\n \"@laravel/echo-react\": [\n \"const missing = () => {\",\n \" throw new Error(\",\n ' \"[lattice] Real-time listeners require @laravel/echo-react. Install it and call configureEcho().\",',\n \" );\",\n \"};\",\n \"export const useEcho = missing;\",\n \"export const useEchoPublic = missing;\",\n \"export const useEchoPresence = missing;\",\n \"export const useEchoNotification = missing;\",\n ].join(\"\\n\"),\n};\n\nfunction optionalPeersPlugin(): Plugin {\n return {\n name: \"lattice:optional-peers\",\n enforce: \"pre\",\n async resolveId(id) {\n if (!Object.prototype.hasOwnProperty.call(OPTIONAL_PEER_STUBS, id)) {\n return null;\n }\n\n const installed = await this.resolve(id, undefined, { skipSelf: true });\n\n return installed ? null : `${OPTIONAL_PEER_STUB_PREFIX}${id}`;\n },\n load(id) {\n if (!id.startsWith(OPTIONAL_PEER_STUB_PREFIX)) {\n return null;\n }\n\n return OPTIONAL_PEER_STUBS[id.slice(OPTIONAL_PEER_STUB_PREFIX.length)] ?? null;\n },\n };\n}\n\n/**\n * Refreshes `node.props` typings from the app's own `php artisan\n * lattice:typescript` whenever the dev server starts — installing or updating\n * a component package would otherwise leave its generated types stale until\n * someone remembers to run the command by hand. Dev-server only: a production\n * build machine may not have PHP installed, and the generated file is a dev\n * ergonomics artifact, not a build input.\n *\n * Module-private like its siblings `optionalPeersPlugin`/`corePlugin` — the\n * `refreshTypeScriptTypes` DI seam it defers to lives in\n * `./vite-typescript-refresh`, which isn't part of the published `vite`\n * subpath either (see that module for why).\n */\nfunction typescriptPlugin(options: LatticeViteOptions): Plugin {\n return {\n name: \"lattice:typescript\",\n apply: \"serve\",\n configureServer(server) {\n const typescript = options.typescript ?? true;\n\n if (typescript === false) {\n return;\n }\n\n const { appRoot } = resolveRoots(options);\n\n refreshTypeScriptTypes(appRoot, server.config.logger);\n },\n };\n}\n\nexport function resolveIconOptions(\n options: LatticeViteOptions,\n packages: LatticeComponentPackage[] = [],\n): SvgSpriteOptions | null {\n const icons = options.icons ?? true;\n\n if (icons === false) {\n return null;\n }\n\n const { root } = resolveRoots(options);\n const iconOptions = icons === true ? {} : icons;\n const { dirs = [], dts, ...spriteOptions } = iconOptions;\n const defaultTypes = {\n file: \"resources/js/types/sprite-icons.ts\",\n augmentModule: \"@lattice-php/ui\",\n augmentInterface: \"KnownIcons\",\n };\n\n return {\n ...spriteOptions,\n iconDirs: [\n path.resolve(root, \"../ui/resources/icons\"),\n ...packages.flatMap((pkg) => (pkg.icons ? [pkg.icons] : [])),\n ...dirs,\n ],\n ...(dts === false ? {} : { dts: { ...defaultTypes, ...dts } }),\n };\n}\n\nfunction resolveRoots(options: LatticeViteOptions): Roots {\n const appRoot = options.appRoot ?? process.cwd();\n const root = options.root ?? path.resolve(appRoot, \"vendor/lattice-php/lattice\");\n\n return { appRoot, root };\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as e}from"./rolldown-runtime-hePW80VL.js";import{t}from"./react-CwJFpaho.js";import{t as n}from"./react-dom-Dl-LT-t1.js";import{_ as r,a as i,c as a,i as o,l as s,m as c,n as l,o as u,r as d,s as f,t as p}from"./floating-ui.dom-CO6FyQ6K.js";import{t as m}from"./jsx-runtime-NZYk81nU.js";import{a as h,c as g,r as _,t as v}from"./time-picker-CAwU5Rl-.js";import{a as y}from"./locale-BZOrJtMq.js";function b(e,t){return e-t*Math.floor(e/t)}var x=1721426;function S(e,t,n,r){t=w(e,t);let i=t-1,a=-2;return n<=2?a=0:C(t)&&(a=-1),1721425+365*i+Math.floor(i/4)-Math.floor(i/100)+Math.floor(i/400)+Math.floor((367*n-362)/12+a+r)}function C(e){return e%4==0&&(e%100!=0||e%400==0)}function w(e,t){return e===`BC`?1-t:t}function T(e){let t=`AD`;return e<=0&&(t=`BC`,e=1-e),[t,e]}var E={standard:[31,28,31,30,31,30,31,31,30,31,30,31],leapyear:[31,29,31,30,31,30,31,31,30,31,30,31]},D=class{fromJulianDay(e){let t=e,n=t-x,r=Math.floor(n/146097),i=b(n,146097),a=Math.floor(i/36524),o=b(i,36524),s=Math.floor(o/1461),c=b(o,1461),l=Math.floor(c/365),[u,d]=T(r*400+a*100+s*4+l+ +(a!==4&&l!==4)),f=t-S(u,d,1,1),p=2;t<S(u,d,3,1)?p=0:C(d)&&(p=1);let m=Math.floor(((f+p)*12+373)/367);return new Tt(u,d,m,t-S(u,d,m,1)+1)}toJulianDay(e){return S(e.era,e.year,e.month,e.day)}getDaysInMonth(e){return E[C(e.year)?`leapyear`:`standard`][e.month-1]}getMonthsInYear(e){return 12}getDaysInYear(e){return C(e.year)?366:365}getMaximumMonthsInYear(){return 12}getMaximumDaysInMonth(){return 31}getYearsInEra(e){return 9999}getEras(){return[`BC`,`AD`]}isInverseEra(e){return e.era===`BC`}balanceDate(e){e.year<=0&&(e.era=e.era===`BC`?`AD`:`BC`,e.year=1-e.year)}constructor(){this.identifier=`gregory`}},ee={"001":1,AD:1,AE:6,AF:6,AI:1,AL:1,AM:1,AN:1,AR:1,AT:1,AU:1,AX:1,AZ:1,BA:1,BE:1,BG:1,BH:6,BM:1,BN:1,BY:1,CH:1,CL:1,CM:1,CN:1,CR:1,CY:1,CZ:1,DE:1,DJ:6,DK:1,DZ:6,EC:1,EE:1,EG:6,ES:1,FI:1,FJ:1,FO:1,FR:1,GB:1,GE:1,GF:1,GP:1,GR:1,HR:1,HU:1,IE:1,IQ:6,IR:6,IS:1,IT:1,JO:6,KG:1,KW:6,KZ:1,LB:1,LI:1,LK:1,LT:1,LU:1,LV:1,LY:6,MC:1,MD:1,ME:1,MK:1,MN:1,MQ:1,MV:5,MY:1,NL:1,NO:1,NZ:1,OM:6,PL:1,QA:6,RE:1,RO:1,RS:1,RU:1,SD:6,SE:1,SI:1,SK:1,SM:1,SY:6,TJ:1,TM:1,TR:1,UA:1,UY:1,UZ:1,VA:1,VN:1,XK:1};function O(e,t){return t=I(t,e.calendar),e.era===t.era&&e.year===t.year&&e.month===t.month&&e.day===t.day}function te(e,t){return t=I(t,e.calendar),e=j(e),t=j(t),e.era===t.era&&e.year===t.year&&e.month===t.month}function ne(e,t){return t=I(t,e.calendar),e=ve(e),t=ve(t),e.era===t.era&&e.year===t.year}function re(e,t){return k(e.calendar,t.calendar)&&O(e,t)}function ie(e,t){return k(e.calendar,t.calendar)&&te(e,t)}function ae(e,t){return k(e.calendar,t.calendar)&&ne(e,t)}function k(e,t){return e.isEqual?.(t)??t.isEqual?.(e)??e.identifier===t.identifier}function oe(e,t){return O(e,A(t))}var se={sun:0,mon:1,tue:2,wed:3,thu:4,fri:5,sat:6};function ce(e,t,n){let r=e.calendar.toJulianDay(e),i=n?se[n]:we(t),a=Math.ceil(r+1-i)%7;return a<0&&(a+=7),a}function le(e){return P(Date.now(),e)}function A(e){return Be(le(e))}function ue(e,t){return e.calendar.toJulianDay(e)-t.calendar.toJulianDay(t)}function de(e,t){return fe(e)-fe(t)}function fe(e){return e.hour*36e5+e.minute*6e4+e.second*1e3+e.millisecond}var pe=null,me=!1;function he(){return pe??=new Intl.DateTimeFormat().resolvedOptions().timeZone,pe}function ge(){return me}function j(e){return e.subtract({days:e.day-1})}function _e(e){return e.add({days:e.calendar.getDaysInMonth(e)-e.day})}function ve(e){return j(e.subtract({months:e.month-1}))}function ye(e){return _e(e.add({months:e.calendar.getMonthsInYear(e)-e.month}))}function M(e,t,n){let r=ce(e,t,n);return e.subtract({days:r})}function be(e,t,n){return M(e,t,n).add({days:6})}var xe=new Map,Se=new Map;function Ce(e){if(Intl.Locale){let t=xe.get(e);return t||(t=new Intl.Locale(e).maximize().region,t&&xe.set(e,t)),t}let t=e.split(`-`)[1];return t===`u`?void 0:t}function we(e){let t=Se.get(e);if(!t){if(Intl.Locale){let n=new Intl.Locale(e);if(`getWeekInfo`in n&&(t=n.getWeekInfo(),t))return Se.set(e,t),t.firstDay}let n=Ce(e);if(e.includes(`-fw-`)){let n=e.split(`-fw-`)[1].split(`-`)[0];t=n===`mon`?{firstDay:1}:n===`tue`?{firstDay:2}:n===`wed`?{firstDay:3}:n===`thu`?{firstDay:4}:n===`fri`?{firstDay:5}:n===`sat`?{firstDay:6}:{firstDay:0}}else t=e.includes(`-ca-iso8601`)?{firstDay:1}:{firstDay:n&&ee[n]||0};Se.set(e,t)}return t.firstDay}function Te(e,t,n){let r=e.calendar.getDaysInMonth(e);return Math.ceil((ce(j(e),t,n)+r)/7)}function Ee(e,t){return e&&t?e.compare(t)<=0?e:t:e||t}function De(e,t){return e&&t?e.compare(t)>=0?e:t:e||t}var Oe={AF:[4,5],AE:[5,6],BH:[5,6],DZ:[5,6],EG:[5,6],IL:[5,6],IQ:[5,6],IR:[5,5],JO:[5,6],KW:[5,6],LY:[5,6],OM:[5,6],QA:[5,6],SA:[5,6],SD:[5,6],SY:[5,6],YE:[5,6]};function ke(e,t){let n=e.calendar.toJulianDay(e),r=Math.ceil(n+1)%7;r<0&&(r+=7);let[i,a]=Oe[Ce(t)]||[6,0];return r===i||r===a}function Ae(e){return e=I(e,new D),je(w(e.era,e.year),e.month,e.day,e.hour,e.minute,e.second,e.millisecond)}function je(e,t,n,r,i,a,o){let s=new Date;return s.setUTCHours(r,i,a,o),s.setUTCFullYear(e,t-1,n),s.getTime()}function Me(e,t){if(t===`UTC`)return 0;if(e>0&&t===he()&&!ge())return new Date(e).getTimezoneOffset()*-6e4;let{year:n,month:r,day:i,hour:a,minute:o,second:s}=Pe(e,t);return je(n,r,i,a,o,s,0)-Math.floor(e/1e3)*1e3}var Ne=new Map;function Pe(e,t){let n=Ne.get(t);n||(n=new Intl.DateTimeFormat(`en-US`,{timeZone:t,hour12:!1,era:`short`,year:`numeric`,month:`numeric`,day:`numeric`,hour:`numeric`,minute:`numeric`,second:`numeric`}),Ne.set(t,n));let r=n.formatToParts(new Date(e)),i={};for(let e of r)e.type!==`literal`&&(i[e.type]=e.value);return{year:i.era===`BC`||i.era===`B`?-i.year+1:+i.year,month:+i.month,day:+i.day,hour:i.hour===`24`?0:+i.hour,minute:+i.minute,second:+i.second}}var Fe=864e5;function Ie(e,t){let n=Ae(e);return Le(e,t,n-Me(n-Fe,t),n-Me(n+Fe,t))}function Le(e,t,n,r){return(n===r?[n]:[n,r]).filter(n=>Re(e,t,n))}function Re(e,t,n){let r=Pe(n,t);return e.year===r.year&&e.month===r.month&&e.day===r.day&&e.hour===r.hour&&e.minute===r.minute&&e.second===r.second}function N(e,t,n=`compatible`){let r=F(e);if(t===`UTC`)return Ae(r);if(t===he()&&n===`compatible`&&!ge()){r=I(r,new D);let e=new Date,t=w(r.era,r.year);return e.setFullYear(t,r.month-1,r.day),e.setHours(r.hour,r.minute,r.second,r.millisecond),e.getTime()}let i=Ae(r),a=Me(i-Fe,t),o=Me(i+Fe,t),s=Le(r,t,i-a,i-o);if(s.length===1)return s[0];if(s.length>1)switch(n){case`compatible`:case`earlier`:return s[0];case`later`:return s[s.length-1];case`reject`:throw RangeError(`Multiple possible absolute times found`)}switch(n){case`earlier`:return Math.min(i-a,i-o);case`compatible`:case`later`:return Math.max(i-a,i-o);case`reject`:throw RangeError(`No such absolute time found`)}}function ze(e,t,n=`compatible`){return new Date(N(e,t,n))}function P(e,t){let n=Me(e,t),r=new Date(e+n),i=r.getUTCFullYear(),a=r.getUTCMonth()+1,o=r.getUTCDate(),s=r.getUTCHours(),c=r.getUTCMinutes(),l=r.getUTCSeconds(),u=r.getUTCMilliseconds();return new Dt(i<1?`BC`:`AD`,i<1?-i+1:i,a,o,t,n,s,c,l,u)}function Be(e){return new Tt(e.calendar,e.era,e.year,e.month,e.day)}function F(e,t){let n=0,r=0,i=0,a=0;if(`timeZone`in e)({hour:n,minute:r,second:i,millisecond:a}=e);else if(`hour`in e&&!t)return e;return t&&({hour:n,minute:r,second:i,millisecond:a}=t),new Et(e.calendar,e.era,e.year,e.month,e.day,n,r,i,a)}function I(e,t){if(k(e.calendar,t))return e;let n=t.fromJulianDay(e.calendar.toJulianDay(e)),r=e.copy();return r.calendar=t,r.era=n.era,r.year=n.year,r.month=n.month,r.day=n.day,Xe(r),r}function Ve(e,t,n){return e instanceof Dt?e.timeZone===t?e:Ue(e,t):P(N(e,t,n),t)}function He(e){let t=Ae(e)-e.offset;return new Date(t)}function Ue(e,t){return I(P(Ae(e)-e.offset,t),e.calendar)}var We=36e5;function Ge(e,t){let n=e.copy(),r=`hour`in n?it(n,t):0;Ke(n,t.years||0),n.calendar.balanceYearMonth&&n.calendar.balanceYearMonth(n,e),n.month+=t.months||0,qe(n),Ye(n),n.day+=(t.weeks||0)*7,n.day+=t.days||0,n.day+=r,Je(n),n.calendar.balanceDate&&n.calendar.balanceDate(n),n.year<1&&(n.year=1,n.month=1,n.day=1);let i=n.calendar.getYearsInEra(n);if(n.year>i){let e=n.calendar.isInverseEra?.(n);n.year=i,n.month=e?1:n.calendar.getMonthsInYear(n),n.day=e?1:n.calendar.getDaysInMonth(n)}n.month<1&&(n.month=1,n.day=1);let a=n.calendar.getMonthsInYear(n);return n.month>a&&(n.month=a,n.day=n.calendar.getDaysInMonth(n)),n.day=Math.max(1,Math.min(n.calendar.getDaysInMonth(n),n.day)),n}function Ke(e,t){e.calendar.isInverseEra?.(e)&&(t=-t),e.year+=t}function qe(e){for(;e.month<1;)Ke(e,-1),e.month+=e.calendar.getMonthsInYear(e);let t=0;for(;e.month>(t=e.calendar.getMonthsInYear(e));)e.month-=t,Ke(e,1)}function Je(e){for(;e.day<1;)e.month--,qe(e),e.day+=e.calendar.getDaysInMonth(e);for(;e.day>e.calendar.getDaysInMonth(e);)e.day-=e.calendar.getDaysInMonth(e),e.month++,qe(e)}function Ye(e){e.month=Math.max(1,Math.min(e.calendar.getMonthsInYear(e),e.month)),e.day=Math.max(1,Math.min(e.calendar.getDaysInMonth(e),e.day))}function Xe(e){e.calendar.constrainDate&&e.calendar.constrainDate(e),e.year=Math.max(1,Math.min(e.calendar.getYearsInEra(e),e.year)),Ye(e)}function Ze(e){let t={};for(let n in e)typeof e[n]==`number`&&(t[n]=-e[n]);return t}function Qe(e,t){return Ge(e,Ze(t))}function $e(e,t){let n=e.copy();return t.era!=null&&(n.era=t.era),t.year!=null&&(n.year=t.year),t.month!=null&&(n.month=t.month),t.day!=null&&(n.day=t.day),Xe(n),n}function et(e,t){let n=e.copy();return t.hour!=null&&(n.hour=t.hour),t.minute!=null&&(n.minute=t.minute),t.second!=null&&(n.second=t.second),t.millisecond!=null&&(n.millisecond=t.millisecond),nt(n),n}function tt(e){e.second+=Math.floor(e.millisecond/1e3),e.millisecond=rt(e.millisecond,1e3),e.minute+=Math.floor(e.second/60),e.second=rt(e.second,60),e.hour+=Math.floor(e.minute/60),e.minute=rt(e.minute,60);let t=Math.floor(e.hour/24);return e.hour=rt(e.hour,24),t}function nt(e){e.millisecond=Math.max(0,Math.min(e.millisecond,1e3)),e.second=Math.max(0,Math.min(e.second,59)),e.minute=Math.max(0,Math.min(e.minute,59)),e.hour=Math.max(0,Math.min(e.hour,23))}function rt(e,t){let n=e%t;return n<0&&(n+=t),n}function it(e,t){return e.hour+=t.hours||0,e.minute+=t.minutes||0,e.second+=t.seconds||0,e.millisecond+=t.milliseconds||0,tt(e)}function at(e,t,n,r){let i=e.copy();switch(t){case`era`:{let t=e.calendar.getEras(),a=t.indexOf(e.era);if(a<0)throw Error(`Invalid era: `+e.era);a=L(a,n,0,t.length-1,r?.round),i.era=t[a],Xe(i);break}case`year`:i.calendar.isInverseEra?.(i)&&(n=-n),i.year=L(e.year,n,-1/0,9999,r?.round),i.year===-1/0&&(i.year=1),i.calendar.balanceYearMonth&&i.calendar.balanceYearMonth(i,e);break;case`month`:i.month=L(e.month,n,1,e.calendar.getMonthsInYear(e),r?.round);break;case`day`:i.day=L(e.day,n,1,e.calendar.getDaysInMonth(e),r?.round);break;default:throw Error(`Unsupported field `+t)}return e.calendar.balanceDate&&e.calendar.balanceDate(i),Xe(i),i}function ot(e,t,n,r){let i=e.copy();switch(t){case`hour`:{let t=e.hour,a=0,o=23;if(r?.hourCycle===12){let e=t>=12;a=e?12:0,o=e?23:11}i.hour=L(t,n,a,o,r?.round);break}case`minute`:i.minute=L(e.minute,n,0,59,r?.round);break;case`second`:i.second=L(e.second,n,0,59,r?.round);break;case`millisecond`:i.millisecond=L(e.millisecond,n,0,999,r?.round);break;default:throw Error(`Unsupported field `+t)}return i}function L(e,t,n,r,i=!1){if(i){e+=Math.sign(t),e<n&&(e=r);let i=Math.abs(t);e=t>0?Math.ceil(e/i)*i:Math.floor(e/i)*i,e>r&&(e=n)}else e+=t,e<n?e=r-(n-e-1):e>r&&(e=n+(e-r-1));return e}function st(e,t){let n;return n=t.years!=null&&t.years!==0||t.months!=null&&t.months!==0||t.weeks!=null&&t.weeks!==0||t.days!=null&&t.days!==0?N(Ge(F(e),{years:t.years,months:t.months,weeks:t.weeks,days:t.days}),e.timeZone):Ae(e)-e.offset,n+=t.milliseconds||0,n+=(t.seconds||0)*1e3,n+=(t.minutes||0)*6e4,n+=(t.hours||0)*36e5,I(P(n,e.timeZone),e.calendar)}function ct(e,t){return st(e,Ze(t))}function lt(e,t,n,r){switch(t){case`hour`:{let t=0,i=23;if(r?.hourCycle===12){let n=e.hour>=12;t=n?12:0,i=n?23:11}let a=F(e),o=I(et(a,{hour:t}),new D),s=[N(o,e.timeZone,`earlier`),N(o,e.timeZone,`later`)].filter(t=>P(t,e.timeZone).day===o.day)[0],c=I(et(a,{hour:i}),new D),l=[N(c,e.timeZone,`earlier`),N(c,e.timeZone,`later`)].filter(t=>P(t,e.timeZone).day===c.day).pop(),u=Ae(e)-e.offset,d=Math.floor(u/We),f=u%We;return u=L(d,n,Math.floor(s/We),Math.floor(l/We),r?.round)*We+f,I(P(u,e.timeZone),e.calendar)}case`minute`:case`second`:case`millisecond`:return ot(e,t,n,r);case`era`:case`year`:case`month`:case`day`:return I(P(N(at(F(e),t,n,r),e.timeZone),e.timeZone),e.calendar);default:throw Error(`Unsupported field `+t)}}function ut(e,t,n){let r=F(e),i=et($e(r,t),t);return i.compare(r)===0?e:I(P(N(i,e.timeZone,n),e.timeZone),e.calendar)}var dt=/^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})$/,ft=/^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?$/,pt=/^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?(?:([+-]\d{2})(?::?(\d{2}))?(?::?(\d{2}))?)?\[(.*?)\]$/,mt=/^([+-]\d{6}|\d{4})-(\d{2})-(\d{2})(?:T(\d{2}))?(?::(\d{2}))?(?::(\d{2}))?(\.\d+)?(?:(?:([+-]\d{2})(?::?(\d{2}))?)|Z)$/;function ht(e){let t=e.match(dt);if(!t)throw mt.test(e)?Error(`Invalid ISO 8601 date string: ${e}. Use parseAbsolute() instead.`):Error(`Invalid ISO 8601 date string: `+e);let n=new Tt(R(t[1],0,9999),R(t[2],1,12),1);return n.day=R(t[3],1,n.calendar.getDaysInMonth(n)),n}function gt(e){let t=e.match(ft);if(!t)throw mt.test(e)?Error(`Invalid ISO 8601 date time string: ${e}. Use parseAbsolute() instead.`):Error(`Invalid ISO 8601 date time string: `+e);let n=R(t[1],-9999,9999),r=new Et(n<1?`BC`:`AD`,n<1?-n+1:n,R(t[2],1,12),1,t[4]?R(t[4],0,23):0,t[5]?R(t[5],0,59):0,t[6]?R(t[6],0,59):0,t[7]?R(t[7],0,1/0)*1e3:0);return r.day=R(t[3],0,r.calendar.getDaysInMonth(r)),r}function _t(e,t){let n=e.match(pt);if(!n)throw Error(`Invalid ISO 8601 date time string: `+e);let r=R(n[1],-9999,9999),i=new Dt(r<1?`BC`:`AD`,r<1?-r+1:r,R(n[2],1,12),1,n[11],0,n[4]?R(n[4],0,23):0,n[5]?R(n[5],0,59):0,n[6]?R(n[6],0,59):0,n[7]?R(n[7],0,1/0)*1e3:0);i.day=R(n[3],0,i.calendar.getDaysInMonth(i));let a=F(i),o;if(n[8]){let e=R(n[8],-23,23);if(i.offset=Math.sign(e)*(Math.abs(e)*36e5+R(n[9]??`0`,0,59)*6e4+R(n[10]??`0`,0,59)*1e3),o=Ae(i)-i.offset,!Ie(a,i.timeZone).includes(o))throw Error(`Offset ${St(i.offset)} is invalid for ${xt(i)} in ${i.timeZone}`)}else o=N(F(a),i.timeZone,t);return P(o,i.timeZone)}function vt(e,t){let n=e.match(mt);if(!n)throw Error(`Invalid ISO 8601 date time string: `+e);let r=R(n[1],-9999,9999),i=new Dt(r<1?`BC`:`AD`,r<1?-r+1:r,R(n[2],1,12),1,t,0,n[4]?R(n[4],0,23):0,n[5]?R(n[5],0,59):0,n[6]?R(n[6],0,59):0,n[7]?R(n[7],0,1/0)*1e3:0);return i.day=R(n[3],0,i.calendar.getDaysInMonth(i)),n[8]&&(i.offset=R(n[8],-23,23)*36e5+R(n[9]??`0`,0,59)*6e4),Ue(i,t)}function R(e,t,n){let r=Number(e);if(r<t||r>n)throw RangeError(`Value out of range: ${t} <= ${r} <= ${n}`);return r}function yt(e){return`${String(e.hour).padStart(2,`0`)}:${String(e.minute).padStart(2,`0`)}:${String(e.second).padStart(2,`0`)}${e.millisecond?String(e.millisecond/1e3).slice(1):``}`}function bt(e){let t=I(e,new D),n;return n=t.era===`BC`?t.year===1?`0000`:`-`+String(Math.abs(1-t.year)).padStart(6,`00`):String(t.year).padStart(4,`0`),`${n}-${String(t.month).padStart(2,`0`)}-${String(t.day).padStart(2,`0`)}`}function xt(e){return`${bt(e)}T${yt(e)}`}function St(e){let t=Math.sign(e)<0?`-`:`+`;e=Math.abs(e);let n=Math.floor(e/36e5),r=Math.floor(e%36e5/6e4),i=Math.floor(e%36e5%6e4/1e3),a=`${t}${String(n).padStart(2,`0`)}:${String(r).padStart(2,`0`)}`;return i!==0&&(a+=`:${String(i).padStart(2,`0`)}`),a}function Ct(e){return`${xt(e)}${St(e.offset)}[${e.timeZone}]`}function wt(e){let t=typeof e[0]==`object`?e.shift():new D,n;if(typeof e[0]==`string`)n=e.shift();else{let e=t.getEras();n=e[e.length-1]}let r=e.shift(),i=e.shift(),a=e.shift();return[t,n,r,i,a]}var Tt=class e{constructor(...e){let[t,n,r,i,a]=wt(e);this.calendar=t,this.era=n,this.year=r,this.month=i,this.day=a,Xe(this)}copy(){return this.era?new e(this.calendar,this.era,this.year,this.month,this.day):new e(this.calendar,this.year,this.month,this.day)}add(e){return Ge(this,e)}subtract(e){return Qe(this,e)}set(e){return $e(this,e)}cycle(e,t,n){return at(this,e,t,n)}toDate(e){return ze(this,e)}toString(){return bt(this)}compare(e){return ue(this,e)}},Et=class e{constructor(...e){let[t,n,r,i,a]=wt(e);this.calendar=t,this.era=n,this.year=r,this.month=i,this.day=a,this.hour=e.shift()||0,this.minute=e.shift()||0,this.second=e.shift()||0,this.millisecond=e.shift()||0,Xe(this)}copy(){return this.era?new e(this.calendar,this.era,this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond):new e(this.calendar,this.year,this.month,this.day,this.hour,this.minute,this.second,this.millisecond)}add(e){return Ge(this,e)}subtract(e){return Qe(this,e)}set(e){return $e(et(this,e),e)}cycle(e,t,n){switch(e){case`era`:case`year`:case`month`:case`day`:return at(this,e,t,n);default:return ot(this,e,t,n)}}toDate(e,t){return ze(this,e,t)}toString(){return xt(this)}compare(e){let t=ue(this,e);return t===0?de(this,F(e)):t}},Dt=class e{constructor(...e){let[t,n,r,i,a]=wt(e),o=e.shift(),s=e.shift();this.calendar=t,this.era=n,this.year=r,this.month=i,this.day=a,this.timeZone=o,this.offset=s,this.hour=e.shift()||0,this.minute=e.shift()||0,this.second=e.shift()||0,this.millisecond=e.shift()||0,Xe(this)}copy(){return this.era?new e(this.calendar,this.era,this.year,this.month,this.day,this.timeZone,this.offset,this.hour,this.minute,this.second,this.millisecond):new e(this.calendar,this.year,this.month,this.day,this.timeZone,this.offset,this.hour,this.minute,this.second,this.millisecond)}add(e){return st(this,e)}subtract(e){return ct(this,e)}set(e,t){return ut(this,e,t)}cycle(e,t,n){return lt(this,e,t,n)}toDate(){return He(this)}toString(){return Ct(this)}toAbsoluteString(){return this.toDate().toISOString()}compare(e){return this.toDate().getTime()-Ve(e,this.timeZone).toDate().getTime()}},Ot=new Map,z=class{constructor(e,t={}){this.formatter=At(e,t),this.options=t}format(e){return this.formatter.format(e)}formatToParts(e){return this.formatter.formatToParts(e)}formatRange(e,t){if(typeof this.formatter.formatRange==`function`)return this.formatter.formatRange(e,t);if(t<e)throw RangeError(`End date must be >= start date`);return`${this.formatter.format(e)} \u{2013} ${this.formatter.format(t)}`}formatRangeToParts(e,t){if(typeof this.formatter.formatRangeToParts==`function`)return this.formatter.formatRangeToParts(e,t);if(t<e)throw RangeError(`End date must be >= start date`);let n=this.formatter.formatToParts(e),r=this.formatter.formatToParts(t);return[...n.map(e=>({...e,source:`startRange`})),{type:`literal`,value:` – `,source:`shared`},...r.map(e=>({...e,source:`endRange`}))]}resolvedOptions(){let e=this.formatter.resolvedOptions();return Pt()&&(this.resolvedHourCycle||=Ft(e.locale,this.options),e.hourCycle=this.resolvedHourCycle,e.hour12=this.resolvedHourCycle===`h11`||this.resolvedHourCycle===`h12`),e.calendar===`ethiopic-amete-alem`&&(e.calendar=`ethioaa`),e}},kt={true:{ja:`h11`},false:{}};function At(e,t={}){if(typeof t.hour12==`boolean`&&Mt()){t={...t};let n=kt[String(t.hour12)][e.split(`-`)[0]],r=t.hour12?`h12`:`h23`;t.hourCycle=n??r,delete t.hour12}let n=e+(t?Object.entries(t).sort((e,t)=>e[0]<t[0]?-1:1).join():``);if(Ot.has(n))return Ot.get(n);let r=new Intl.DateTimeFormat(e,t);return Ot.set(n,r),r}var jt=null;function Mt(){return jt??=new Intl.DateTimeFormat(`en-US`,{hour:`numeric`,hour12:!1}).format(new Date(2020,2,3,0))===`24`,jt}var Nt=null;function Pt(){return Nt??=new Intl.DateTimeFormat(`fr`,{hour:`numeric`,hour12:!1}).resolvedOptions().hourCycle===`h12`,Nt}function Ft(e,t){if(!t.timeStyle&&!t.hour)return;e=e.replace(/(-u-)?-nu-[a-zA-Z0-9]+/,``),e+=(e.includes(`-u-`)?``:`-u`)+`-nu-latn`;let n=At(e,{...t,timeZone:void 0}),r=parseInt(n.formatToParts(new Date(2020,2,3,0)).find(e=>e.type===`hour`).value,10),i=parseInt(n.formatToParts(new Date(2020,2,3,23)).find(e=>e.type===`hour`).value,10);if(r===0&&i===23)return`h23`;if(r===24&&i===23)return`h24`;if(r===0&&i===11)return`h11`;if(r===12&&i===11)return`h12`;throw Error(`Unexpected hour cycle result`)}var It=(e,t=[])=>({parts:(...n)=>{if(Rt(t))return It(e,n);throw Error(`createAnatomy().parts(...) should only be called once. Did you mean to use .extendWith(...) ?`)},extendWith:(...n)=>It(e,[...t,...n]),omit:(...n)=>It(e,t.filter(e=>!n.includes(e))),rename:e=>It(e,t),keys:()=>t,build:()=>[...new Set(t)].reduce((t,n)=>Object.assign(t,{[n]:{selector:[`&[data-scope="${Lt(e)}"][data-part="${Lt(n)}"]`,`& [data-scope="${Lt(e)}"][data-part="${Lt(n)}"]`].join(`, `),attrs:{"data-scope":Lt(e),"data-part":Lt(n)}}}),{})}),Lt=e=>e.replace(/([A-Z])([A-Z])/g,`$1-$2`).replace(/([a-z])([A-Z])/g,`$1-$2`).replace(/[\s_]+/g,`-`).toLowerCase(),Rt=e=>e.length===0,B=It(`date-picker`).parts(`clearTrigger`,`content`,`control`,`input`,`label`,`monthSelect`,`nextTrigger`,`positioner`,`presetTrigger`,`prevTrigger`,`rangeText`,`root`,`table`,`tableBody`,`tableCell`,`tableCellTrigger`,`tableHead`,`tableHeader`,`tableRow`,`trigger`,`view`,`viewControl`,`viewTrigger`,`yearSelect`).build();function zt(e,t,n,r,i){let a={};for(let e in t){let n=e,r=t[n];r!=null&&(a[n]=Math.floor(r/2),a[n]>0&&r%2==0&&a[n]--)}return Ht(e,Bt(e,t,n).subtract(a),t,n,r,i)}function Bt(e,t,n,r,i){let a=e;return t.years?a=ve(e):t.months?a=j(e):t.weeks&&(a=M(e,n)),Ht(e,a,t,n,r,i)}function Vt(e,t,n,r,i){let a={...t};return a.days?a.days--:a.weeks?a.weeks--:a.months?a.months--:a.years&&a.years--,Ht(e,Bt(e,t,n).subtract(a),t,n,r,i)}function Ht(e,t,n,r,i,a){return i&&e.compare(i)>=0&&(t=De(t,Bt(Be(i),n,r))),a&&e.compare(a)<=0&&(t=Ee(t,Vt(Be(a),n,r))),t}function V(e,t,n){let r=Be(e),i=t?Be(t):void 0,a=n?Be(n):void 0,o=r;return i&&(o=De(o,i)),a&&(o=Ee(o,a)),o.compare(r)===0?e:`hour`in e?e.set({year:o.year,month:o.month,day:o.day}):o}function Ut(e,t,n,r,i,a){switch(t){case`start`:return Bt(e,n,r,i,a);case`end`:return Vt(e,n,r,i,a);default:return zt(e,n,r,i,a)}}function Wt(e,t){return e==null||t==null?e===t:!(`hour`in e)&&!(`hour`in t)?O(e,t):F(e).compare(F(t))===0}function Gt(e,t,n,r,i){return e?t?.(e,n)?!0:H(e,r,i):!1}function H(e,t,n){return t!=null&&e.compare(t)<0||n!=null&&e.compare(n)>0}function Kt(e,t,n){let r=e.subtract({days:1});return O(r,e)||H(r,t,n)}function qt(e,t,n){let r=e.add({days:1});return O(r,e)||H(r,t,n)}function Jt(e){let t={...e};for(let e in t)t[e]=1;return t}function Yt(e,t){let n={...t};return n.days?n.days--:n.days=-1,e.add(n)}function Xt(e){if(!e)return;let t=e.calendar.identifier;return t===`gregory`||t===`iso8601`?e.era===`BC`?`short`:void 0:`short`}function Zt(e,t,n){let r=n??F(A(t));return new z(e,{weekday:`long`,month:`long`,year:`numeric`,day:`numeric`,era:Xt(r),calendar:r.calendar.identifier,timeZone:t})}function Qt(e,t,n){let r=n??A(t);return new z(e,{month:`long`,year:`numeric`,era:Xt(r),calendar:r.calendar.identifier,timeZone:t})}function $t(e,t,n,r,i){let a=n.formatRangeToParts(e.toDate(i),t.toDate(i)),o=-1;for(let e=0;e<a.length;e++){let t=a[e];if(t.source===`shared`&&t.type===`literal`)o=e;else if(t.source===`endRange`)break}let s=``,c=``;for(let e=0;e<a.length;e++)e<o?s+=a[e].value:e>o&&(c+=a[e].value);return r(s,c)}function en(e,t,n,r){if(!e)return``;let i=e,a=t??e,o=Zt(n,r);return O(i,a)?o.format(i.toDate(r)):$t(i,a,o,(e,t)=>`${e} \u2013 ${t}`,r)}var tn=[`sun`,`mon`,`tue`,`wed`,`thu`,`fri`,`sat`];function nn(e){return e==null?void 0:tn[e]}function rn(e,t,n){return M(e,t,nn(n))}function an(e,t,n,r){let i=t.add({weeks:e}),a=[],o=rn(i,n,r);for(;a.length<7;){a.push(o);let e=o.add({days:1});if(O(o,e))break;o=e}return a}function on(e,t,n,r){let i=nn(r),a=n??Te(e,t,i);return[...Array(a).keys()].map(n=>an(n,e,t,r))}function sn(e,t){let n=new z(e,{weekday:`long`,timeZone:t}),r=new z(e,{weekday:`short`,timeZone:t}),i=new z(e,{weekday:`narrow`,timeZone:t});return e=>{let a=e instanceof Date?e:e.toDate(t);return{value:e,short:r.format(a),long:n.format(a),narrow:i.format(a)}}}function cn(e,t,n,r){let i=rn(e,r,t),a=[...Array(7).keys()],o=sn(r,n);return a.map(e=>o(i.add({days:e})))}function ln(e,t=`long`,n){if(!n||n.calendar.identifier===`gregory`||n.calendar.identifier===`iso8601`){let n=new Date(2021,0,1),r=[];for(let i=0;i<12;i++)r.push(n.toLocaleString(e,{month:t})),n.setMonth(n.getMonth()+1);return r}let r=n.calendar.getMonthsInYear(n),i=new z(e,{month:t,calendar:n.calendar.identifier}),a=[];for(let e=1;e<=r;e++){let t=n.set({month:e});a.push(i.format(t.toDate(`UTC`)))}return a}function un(e,t){let n=M(e,t,`mon`),r=n.year,i=M(n.set({month:1,day:4}),t,`mon`),a=n.calendar.toJulianDay(n),o=i.calendar.toJulianDay(i);if(a>=o)return 1+Math.floor((a-o)/7);let s=M(n.set({year:r-1,month:1,day:4}),t,`mon`),c=s.calendar.toJulianDay(s);return 1+Math.floor((a-c)/7)}function dn(e){let t=[];for(let n=e.from;n<=e.to;n+=1)t.push(n);return t}var fn=1900,pn=2099;function mn(e,t,n){let r=e.calendar;return{from:t?.year??I(new Tt(fn,1,1),r).year,to:n?.year??I(new Tt(pn,12,31),r).year}}var hn=10;function gn(e){if(e){if(e.length===3)return e.padEnd(4,`0`);if(e.length===2){let t=new Date().getFullYear(),n=Math.floor(t/100)*100+parseInt(e.slice(-2),10);return n>t+hn?(n-100).toString():n.toString()}return e}}function _n(e,t){let n=t?.strict?10:12,r=e-e%10,i=[];for(let e=0;e<n;e+=1){let t=r+e;i.push(t)}return i}function vn(e,t){let n=A(e??he());return t?I(n,t):n}function yn(e,t,n,r){return function(i){let{startDate:a,focusedDate:o}=i,s=Yt(a,e);return H(o,n,r)?{startDate:a,focusedDate:V(o,n,r),endDate:s}:o.compare(a)<0?{startDate:Vt(o,e,t,n,r),focusedDate:V(o,n,r),endDate:s}:o.compare(s)>0?{startDate:Bt(o,e,t,n,r),endDate:s,focusedDate:V(o,n,r)}:{startDate:a,endDate:s,focusedDate:V(o,n,r)}}}function bn(e,t,n,r,i,a){let o=yn(n,r,i,a),s=t.add(n);return o({focusedDate:e.add(n),startDate:Bt(Ht(e,s,n,r,i,a),n,r)})}function xn(e,t,n,r,i,a){let o=yn(n,r,i,a),s=t.subtract(n);return o({focusedDate:e.subtract(n),startDate:Bt(Ht(e,s,n,r,i,a),n,r)})}function Sn(e,t,n,r,i,a,o){let s=yn(r,i,a,o);if(!n&&!r.days)return s({focusedDate:e.add(Jt(r)),startDate:t});if(r.days)return bn(e,t,r,i,a,o);if(r.weeks)return s({focusedDate:e.add({months:1}),startDate:t});if(r.months||r.years)return s({focusedDate:e.add({years:1}),startDate:t})}function Cn(e,t,n,r,i,a,o){let s=yn(r,i,a,o);if(!n&&!r.days)return s({focusedDate:e.subtract(Jt(r)),startDate:t});if(r.days)return xn(e,t,r,i,a,o);if(r.weeks)return s({focusedDate:e.subtract({months:1}),startDate:t});if(r.months||r.years)return s({focusedDate:e.subtract({years:1}),startDate:t})}var wn=new Map;function Tn(e){let t=wn.get(e);return t??(t=`0123456789`+new Intl.NumberFormat(e,{useGrouping:!1}).format(1234567890),wn.set(e,t),t)}var En=(e,t)=>t?Tn(t).includes(e):/\d/.test(e),Dn=(e,t,n)=>!e||e.length!==1||En(e,n)||t.includes(e),On=(e,t,n)=>e.split(``).filter(e=>Dn(e,t,n)).join(``),kn=new Map;function An(e){let t=kn.get(e);if(t!=null)return t;let n=new Intl.DateTimeFormat(e).formatToParts(new Date).find(e=>e.type===`literal`);return t=n?n.value:`/`,kn.set(e,t),t}var jn=e=>e!=null&&e.length===4,Mn=e=>e!=null&&parseFloat(e)<=12,Nn=e=>e!=null&&parseFloat(e)<=31;function Pn(e,t,n){let{year:r,month:i,day:a}=In(Fn(t,n),e)??{};if(r!=null||i!=null||a!=null){let e=new Date;r||=e.getFullYear().toString(),i||=(e.getMonth()+1).toString(),a||=e.getDate().toString()}if(jn(r)||(r=gn(r)),jn(r)&&Mn(i)&&Nn(a))return new Tt(+r,+i,+a);let o=Date.parse(e);if(!isNaN(o)){let e=new Date(o);return new Tt(e.getFullYear(),e.getMonth()+1,e.getDate())}}function Fn(e,t){return new z(e,{day:`numeric`,month:`numeric`,year:`numeric`,timeZone:t}).formatToParts(new Date(2e3,11,25)).map(({type:e,value:t})=>e===`literal`?`${t}?`:`((?!=<${e}>)\\d+)?`).join(``)}function In(e,t){let n=t.match(e);return e.toString().match(/<(.+?)>/g)?.map(e=>{let t=e.match(/<(.+)>/);return!t||t.length<=0?null:e.match(/<(.+)>/)?.[1]}).reduce((e,t,r)=>(t&&(e[t]=n&&n.length>r?n[r+1]:null),e),{})}function Ln(e,t,n){let r=Be(le(n));switch(e){case`thisWeek`:return[M(r,t),be(r,t)];case`thisMonth`:return[j(r),r];case`thisQuarter`:return[j(r).add({months:-((r.month-1)%3)}),r];case`thisYear`:return[ve(r),r];case`last3Days`:return[r.add({days:-2}),r];case`last7Days`:return[r.add({days:-6}),r];case`last14Days`:return[r.add({days:-13}),r];case`last30Days`:return[r.add({days:-29}),r];case`last90Days`:return[r.add({days:-89}),r];case`lastMonth`:return[j(r.add({months:-1})),_e(r.add({months:-1}))];case`lastQuarter`:return[j(r.add({months:-((r.month-1)%3)-3})),_e(r.add({months:-((r.month-1)%3)-1}))];case`lastWeek`:return[M(r,t).add({weeks:-1}),be(r,t).add({weeks:-1})];case`lastYear`:return[ve(r.add({years:-1})),ye(r.add({years:-1}))];default:throw Error(`Invalid date range preset: ${e}`)}}var Rn=Object.defineProperty,zn=(e,t,n)=>t in e?Rn(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Bn=(e,t,n)=>zn(e,typeof t==`symbol`?t:t+``,n),Vn=()=>void 0,Hn=e=>typeof e==`object`&&!!e,U=e=>e?``:void 0,W=e=>e?`true`:void 0,Un=1,Wn=9,Gn=11,G=e=>Hn(e)&&e.nodeType===Un&&typeof e.nodeName==`string`,Kn=e=>Hn(e)&&e.nodeType===Wn,qn=e=>Hn(e)&&e===e.window,Jn=e=>G(e)?e.localName||``:`#document`;function Yn(e){return[`html`,`body`,`#document`].includes(Jn(e))}var Xn=e=>Hn(e)&&e.nodeType!==void 0,Zn=e=>Xn(e)&&e.nodeType===Gn&&`host`in e,Qn=e=>G(e)?e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0:!1;function $n(e){return e?ir(e.getRootNode())===e:!1}function er(e,t){if(!e||!t||!G(e)||!Xn(t))return!1;if(G(t)&&e===t||e.contains(t))return!0;let n=t.getRootNode?.();if(n&&Zn(n)){let n=t;for(;n;){if(e===n)return!0;n=n.parentNode||n.host}}return!1}function tr(e){return Kn(e)?e:qn(e)?e.document:e?.ownerDocument??document}function nr(e){return tr(e).documentElement}function rr(e){return Zn(e)?rr(e.host):Kn(e)?e.defaultView??window:G(e)?e.ownerDocument?.defaultView??window:window}function ir(e){let t=e.activeElement;for(;t?.shadowRoot;){let e=t.shadowRoot.activeElement;if(!e||e===t)break;t=e}return t}function ar(e){if(Jn(e)===`html`)return e;let t=e.assignedSlot||e.parentNode||Zn(e)&&e.host||nr(e);return Zn(t)?t.host:t}function or(e){let t;try{if(t=e.getRootNode({composed:!0}),Kn(t)||Zn(t))return t}catch{}return e.ownerDocument??document}var sr=new WeakMap;function cr(e){return sr.has(e)||sr.set(e,rr(e).getComputedStyle(e)),sr.get(e)}var lr=new Set([`menu`,`listbox`,`dialog`,`grid`,`tree`,`region`,`application`]),ur=e=>lr.has(e),dr=e=>e.getAttribute(`aria-controls`)?.split(` `)||[];function fr(e,t){let n=new Set,r=or(e),i=e=>{let a=e.querySelectorAll(`[aria-controls]`);for(let e of a){if(e.getAttribute(`aria-expanded`)!==`true`)continue;let a=dr(e);for(let e of a){if(!e||n.has(e))continue;n.add(e);let a=r.getElementById(e);if(a){let e=a.getAttribute(`role`),n=a.getAttribute(`aria-modal`)===`true`;if(e&&ur(e)&&!n&&(a===t||a.contains(t)||i(a)))return!0}}}return!1};return i(e)}var pr=()=>typeof document<`u`;function mr(){return navigator.userAgentData?.platform??navigator.platform}var hr=e=>pr()&&e.test(mr()),gr=()=>pr()&&!!navigator.maxTouchPoints,_r=()=>hr(/^iPhone/i),vr=()=>hr(/^iPad/i)||br()&&navigator.maxTouchPoints>1,yr=()=>_r()||vr(),br=()=>hr(/^Mac/i);function xr(e){return e.composedPath?.()??e.nativeEvent?.composedPath?.()}function Sr(e){return xr(e)?.[0]??e.target}function Cr(e){return Or(e).isComposing||e.keyCode===229}var wr=e=>e.button===2||br()&&e.ctrlKey&&e.button===0,Tr={Up:`ArrowUp`,Down:`ArrowDown`,Esc:`Escape`," ":`Space`,",":`Comma`,Left:`ArrowLeft`,Right:`ArrowRight`},Er={ArrowLeft:`ArrowRight`,ArrowRight:`ArrowLeft`};function Dr(e,t={}){let{dir:n=`ltr`,orientation:r=`horizontal`}=t,i=e.key;return i=Tr[i]??i,n===`rtl`&&r===`horizontal`&&i in Er&&(i=Er[i]),i}function Or(e){return e.nativeEvent??e}var kr=(e,t,n,r)=>{let i=typeof e==`function`?e():e;return i?.addEventListener(t,n,r),()=>{i?.removeEventListener(t,n,r)}};function Ar(e,t){let{type:n=`HTMLInputElement`,property:r=`value`}=t,i=rr(e)[n].prototype;return Object.getOwnPropertyDescriptor(i,r)??{}}function jr(e){if(e.localName===`input`)return`HTMLInputElement`;if(e.localName===`textarea`)return`HTMLTextAreaElement`;if(e.localName===`select`)return`HTMLSelectElement`}function Mr(e,t,n=`value`){if(!e)return;let r=jr(e);r&&Ar(e,{type:r,property:n}).set?.call(e,t),e.setAttribute(n,t)}var Nr=`input:not([type='hidden']):not([disabled]), select:not([disabled]), textarea:not([disabled]), a[href], button:not([disabled]), [tabindex], iframe, object, embed, area[href], audio[controls], video[controls], [contenteditable]:not([contenteditable='false']), details > summary:first-of-type`;function Pr(e){return!G(e)||e.closest(`[inert]`)?!1:e.matches(Nr)&&Qn(e)}var Fr=class e{constructor(){Bn(this,`id`,null),Bn(this,`fn_cleanup`),Bn(this,`cleanup`,()=>{this.cancel()})}static create(){return new e}request(e){this.cancel(),this.id=globalThis.requestAnimationFrame(()=>{this.id=null,this.fn_cleanup=e?.()})}cancel(){this.id!==null&&(globalThis.cancelAnimationFrame(this.id),this.id=null),this.fn_cleanup?.(),this.fn_cleanup=void 0}isActive(){return this.id!==null}};function K(e){let t=Fr.create();return t.request(e),t.cleanup}function Ir(e){let t=new Set;function n(e){let n=globalThis.requestAnimationFrame(e);t.add(()=>globalThis.cancelAnimationFrame(n))}return n(()=>n(e)),function(){t.forEach(e=>e())}}function Lr(e){let t=ar(e);return Yn(t)?tr(t).body:G(t)&&Br(t)?t:Lr(t)}var Rr=/auto|scroll|overlay|hidden|clip/,zr=new Set([`inline`,`contents`]);function Br(e){let{overflow:t,overflowX:n,overflowY:r,display:i}=rr(e).getComputedStyle(e);return Rr.test(t+r+n)&&!zr.has(i)}var Vr=`default`,Hr=``,Ur=new WeakMap;function Wr(e={}){let{target:t,doc:n}=e,r=n??document,i=r.documentElement;return yr()?(Vr==="default"&&(Hr=i.style.webkitUserSelect,i.style.webkitUserSelect=`none`),Vr=`disabled`):t&&(Ur.set(t,t.style.userSelect),t.style.userSelect=`none`),()=>Gr({target:t,doc:r})}function Gr(e={}){let{target:t,doc:n}=e,r=(n??document).documentElement;if(yr()){if(Vr!==`disabled`)return;Vr=`restoring`,setTimeout(()=>{Ir(()=>{Vr===`restoring`&&(r.style.webkitUserSelect===`none`&&(r.style.webkitUserSelect=Hr||``),Hr=``,Vr=`default`)})},300)}else if(t&&Ur.has(t)){let e=Ur.get(t);t.style.userSelect===`none`&&(t.style.userSelect=e??``),t.getAttribute(`style`)===``&&t.removeAttribute(`style`),Ur.delete(t)}}function Kr(e={}){let{defer:t,target:n,...r}=e,i=t?K:e=>e(),a=[];return a.push(i(()=>{let e=typeof n==`function`?n():n;a.push(Wr({...r,target:e}))})),()=>{a.forEach(e=>e?.())}}function qr(e,t){return Array.from(e?.querySelectorAll(t)??[])}function Jr(e,t){return e?.querySelector(t)??null}function Yr(e,t){if(!e)return Vn;let n=Object.keys(t).reduce((t,n)=>(t[n]=e.style.getPropertyValue(n),t),{});return Xr(n,t)?Vn:(Object.assign(e.style,t),()=>{Object.assign(e.style,n),e.style.length===0&&e.removeAttribute(`style`)})}function Xr(e,t){return Object.keys(e).every(n=>e[n]===t[n])}function Zr(e,t,n){let{signal:r}=t;return[new Promise((t,i)=>{let a=setTimeout(()=>{i(Error(`Timeout of ${n}ms exceeded`))},n);r.addEventListener(`abort`,()=>{clearTimeout(a),i(new DOMException(`Promise aborted`,`AbortError`))}),e.then(e=>{r.aborted||(clearTimeout(a),t(e))}).catch(e=>{r.aborted||(clearTimeout(a),i(e))})}),()=>t.abort()]}function Qr(e,t){let{timeout:n,rootNode:r}=t,i=rr(r),a=tr(r),o=new i.AbortController;return Zr(new Promise(t=>{let n=e();if(n){t(n);return}let r=new i.MutationObserver(()=>{let n=e();n&&n.isConnected&&(r.disconnect(),t(n))});r.observe(a.body,{childList:!0,subtree:!0})}),o,n)}function $r(e){return e==null?[]:Array.isArray(e)?e:[e]}var ei=e=>e[e.length-1];function ti(e,t){return e.reduce((e,n,r)=>(r%t===0?e.push([n]):ei(e)?.push(n),e),[])}var ni=e=>e?.constructor.name===`Array`,ri=(e,t)=>{if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(!ii(e[n],t[n]))return!1;return!0},ii=(e,t)=>{if(Object.is(e,t))return!0;if(e==null&&t!=null||e!=null&&t==null)return!1;if(typeof e?.isEqual==`function`&&typeof t?.isEqual==`function`)return e.isEqual(t);if(typeof e==`function`&&typeof t==`function`)return e.toString()===t.toString();if(ni(e)&&ni(t))return ri(Array.from(e),Array.from(t));if(typeof e!=`object`||typeof t!=`object`)return!1;let n=Object.keys(t??Object.create(null)),r=n.length;for(let t=0;t<r;t++)if(!Reflect.has(e,n[t]))return!1;for(let i=0;i<r;i++){let r=n[i];if(!ii(e[r],t[r]))return!1}return!0},ai=e=>typeof e==`object`&&!!e,oi=e=>typeof e==`string`,si=e=>typeof e==`function`,ci=e=>e==null,li=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),ui=e=>Object.prototype.toString.call(e),di=Function.prototype.toString,fi=di.call(Object),pi=e=>{if(!ai(e)||ui(e)!=`[object Object]`||gi(e))return!1;let t=Object.getPrototypeOf(e);if(t===null)return!0;let n=li(t,`constructor`)&&t.constructor;return typeof n==`function`&&n instanceof n&&di.call(n)==fi},mi=e=>typeof e==`object`&&!!e&&`$$typeof`in e&&`props`in e,hi=e=>typeof e==`object`&&!!e&&`__v_isVNode`in e,gi=e=>mi(e)||hi(e),_i=e=>e(),vi=()=>{},yi=(...e)=>(...t)=>{e.forEach(function(e){e?.(...t)})};function bi(e,t,...n){if(e in t){let r=t[e];return si(r)?r(...n):r}let r=Error(`No matching key: ${JSON.stringify(e)} in ${JSON.stringify(Object.keys(t))}`);throw Error.captureStackTrace?.(r,bi),r}var{floor:xi,abs:Si,round:Ci,min:wi,max:Ti,pow:Ei,sign:Di}=Math,Oi=e=>Number.isNaN(e),ki=e=>Oi(e)?0:e,Ai=(e,t,n)=>{let r=ki(e);return(t==null||r>=t)&&(n==null||r<=n)},ji=(e,t,n)=>wi(Ti(ki(e),t),n);function Mi(e){if(!pi(e)||e===void 0)return e;let t=Reflect.ownKeys(e).filter(e=>typeof e==`string`),n={};for(let r of t){let t=e[r];t!==void 0&&(n[r]=Mi(t))}return n}function Ni(...e){e.length===1?e[0]:e[1],e.length===2&&e[0]}function Pi(...e){e.length===1?e[0]:e[1],e.length===2&&e[0]}function Fi(e,t){if(e==null)throw Error(t())}function Ii(e=0,t=0,n=0,r=0){if(typeof DOMRect==`function`)return new DOMRect(e,t,n,r);let i={x:e,y:t,width:n,height:r,top:t,right:e+n,bottom:t+r,left:e};return{...i,toJSON:()=>i}}function Li(e){if(!e)return Ii();let{x:t,y:n,width:r,height:i}=e;return Ii(t,n,r,i)}function Ri(e,t){return{contextElement:G(e)?e:e?.contextElement,getBoundingClientRect:()=>{let n=e,r=t?.(n);return r||!n?Li(r):n.getBoundingClientRect()}}}var zi=e=>({variable:e,reference:`var(${e})`}),q={arrowSize:zi(`--arrow-size`),arrowSizeHalf:zi(`--arrow-size-half`),arrowBg:zi(`--arrow-background`),transformOrigin:zi(`--transform-origin`),arrowOffset:zi(`--arrow-offset`)},Bi=e=>e===`top`||e===`bottom`?`y`:`x`;function Vi(e,t){return{name:`transformOrigin`,fn(n){let{elements:r,middlewareData:i,placement:a,rects:o,y:s}=n,c=a.split(`-`)[0],l=Bi(c),u=i.arrow?.x||0,d=i.arrow?.y||0,f=t?.clientWidth||0,p=t?.clientHeight||0,m=u+f/2,h=d+p/2,g=Math.abs(i.shift?.y||0),_=o.reference.height/2,v=p/2,y=e.offset?.mainAxis??e.gutter,b=typeof y==`number`?y+v:y??v,x=g>b,S={top:`${m}px calc(100% + ${b}px)`,bottom:`${m}px ${-b}px`,left:`calc(100% + ${b}px) ${h}px`,right:`${-b}px ${h}px`}[c],C=`${m}px ${o.reference.y+_-s}px`,w=!!e.overlap&&l===`y`&&x;return r.floating.style.setProperty(q.transformOrigin.variable,w?C:S),{data:{transformOrigin:w?C:S}}}}}var Hi={name:`rects`,fn({rects:e}){return{data:e}}},Ui=e=>{if(e)return{name:`shiftArrow`,fn({placement:t,middlewareData:n}){if(!n.arrow)return{};let{x:r,y:i}=n.arrow,a=t.split(`-`)[0];return Object.assign(e.style,{left:r==null?``:`${r}px`,top:i==null?``:`${i}px`,[a]:`calc(100% + ${q.arrowOffset.reference})`}),{}}}};function Wi(e){let[t,n]=e.split(`-`);return{side:t,align:n,hasAlign:n!=null}}function Gi(e){return e.split(`-`)[0]}var Ki={strategy:`absolute`,placement:`bottom`,listeners:!0,restoreStyles:!1,applyStyles:!0,gutter:8,flip:!0,slide:!0,overlap:!1,sameWidth:!1,fitViewport:!1,overflowPadding:8,arrowPadding:4};function qi(e,t){let n=e.devicePixelRatio||1;return Math.round(t*n)/n}function Ji(e,t){return e!=null&&Math.abs(e-t)<.5}function Yi(e){return typeof e==`function`?e():e===`clipping-ancestors`?`clippingAncestors`:e}function Xi(e,t,n){let r=e||t.createElement(`div`);return p({element:r,padding:n.arrowPadding})}function Zi(e,t){if(!ci(t.offset??t.gutter))return f(({placement:n})=>{let r=(e?.clientHeight||0)/2,i=t.offset?.mainAxis??t.gutter,a=typeof i==`number`?i+r:i??r,{hasAlign:o}=Wi(n),s=o?void 0:t.shift;return Mi({crossAxis:t.offset?.crossAxis??s,mainAxis:a,alignmentAxis:t.shift})})}function Qi(e){if(e.flip)return o(()=>{let t=Yi(e.boundary);return{...t?{boundary:t}:void 0,padding:e.overflowPadding,fallbackPlacements:e.flip===!0?void 0:e.flip}})}function $i(e){if(!(!e.slide&&!e.overlap))return a(()=>{let t=Yi(e.boundary);return{...t?{boundary:t}:void 0,mainAxis:e.slide,crossAxis:e.overlap,padding:e.overflowPadding,limiter:u()}})}function ea(e){if(e.sizeMiddleware===!1&&!e.sameWidth&&!e.fitViewport)return;let t,n,r,i;return s(()=>{let a=Yi(e.boundary);return{padding:e.overflowPadding,...a?{boundary:a}:void 0,apply({elements:e,rects:a,availableHeight:o,availableWidth:s}){let c=e.floating,l=Math.round(a.reference.width),u=Math.round(a.reference.height);s=Math.floor(s),o=Math.floor(o),Ji(t,l)||(c.style.setProperty(`--reference-width`,`${l}px`),t=l),Ji(n,u)||(c.style.setProperty(`--reference-height`,`${u}px`),n=u),Ji(r,s)||(c.style.setProperty(`--available-width`,`${s}px`),r=s),Ji(i,o)||(c.style.setProperty(`--available-height`,`${o}px`),i=o)}}})}function ta(e){if(e.hideWhenDetached)return i(()=>({strategy:`referenceHidden`,boundary:Yi(e.boundary)??`clippingAncestors`}))}function na(e){return e?e===!0?{ancestorResize:!0,ancestorScroll:!0,elementResize:!0,layoutShift:!0}:e:{}}var ra=[`transform`,`visibility`,`pointer-events`,`--x`,`--y`,`--z-index`,`--reference-width`,`--reference-height`,`--available-width`,`--available-height`,`--transform-origin`],ia=[`top`,`right`,`bottom`,`left`];function aa(e,t){if(!e)return vi;let n=new Map(t.map(t=>[t,e.style.getPropertyValue(t)]));return()=>{n.forEach((t,n)=>{t?e.style.setProperty(n,t):e.style.removeProperty(n)}),e.style.length===0&&e.removeAttribute(`style`)}}function oa(e){return e==null?null:G(e)?e:typeof e==`object`&&e&&`contextElement`in e&&e.contextElement?e.contextElement:e}function sa(e,t,n={}){let r=()=>(typeof t==`function`?t():t)??null,i=()=>{let t=typeof e==`function`?e():e;return n.getAnchorElement?.()??t},a=()=>{let e=i();return!e&&!n.getAnchorRect?null:Ri(e,n.getAnchorRect)},o=Object.assign({},Ki,n),s=[],c=null,u,f;function p(e){u?.(),f?.(),c=e,u=o.restoreStyles?aa(e,ra):void 0;let t=e.querySelector(`[data-part=arrow]`);f=o.restoreStyles?aa(t,ia):void 0,s=[Zi(t,o),Qi(o),$i(o),Xi(t,e.ownerDocument,o),Ui(t),Vi({gutter:o.gutter,offset:o.offset,overlap:o.overlap},t),ea(o),ta(o),Hi]}let{placement:m,strategy:h,onComplete:g,onPositioned:_}=o,v,y,b=!1,x,S,C=vi,w=na(o.listeners);function T(){if(!o.listeners)return;let e=i(),t=a(),n=r();!t||!n||(oa(e)!==oa(x)||n!==S)&&(C(),x=e,S=n,C=l(t,n,D,w))}async function E(){T();let e=r();if(!e)return;e!==c&&(p(e),b=!1);let t=a();if(!t)return;let n=await d(t,e,{placement:m,middleware:s,strategy:h}),i=rr(e),l=qi(i,n.x),u=qi(i,n.y);if(g?.({...n,x:l,y:u}),o.applyStyles!==!1&&(Ji(v,l)||(e.style.setProperty(`--x`,`${l}px`),v=l),Ji(y,u)||(e.style.setProperty(`--y`,`${u}px`),y=u),o.hideWhenDetached&&(n.middlewareData.hide?.referenceHidden?(e.style.setProperty(`visibility`,`hidden`),e.style.setProperty(`pointer-events`,`none`)):(e.style.removeProperty(`visibility`),e.style.removeProperty(`pointer-events`))),!b)){let t=e.firstElementChild;t&&(e.style.setProperty(`--z-index`,cr(t).zIndex),b=!0)}}async function D(){n.updatePosition?(await n.updatePosition({updatePosition:E,floatingElement:r()}),_?.({placed:!0})):await E()}return D(),()=>{C(),f?.(),u?.(),_?.({placed:!1})}}function ca(e,t,n={}){let{defer:r,...i}=n,a=r?K:e=>e(),o=[];return o.push(a(()=>{o.push(sa(e,t,i))})),()=>{o.forEach(e=>e?.())}}var la={bottom:`rotate(45deg)`,left:`rotate(135deg)`,top:`rotate(225deg)`,right:`rotate(315deg)`};function ua(e={}){let{placement:t,sameWidth:n,fitViewport:r,strategy:i=`absolute`}=e;return{arrow:{position:`absolute`,width:q.arrowSize.reference,height:q.arrowSize.reference,[q.arrowSizeHalf.variable]:`calc(${q.arrowSize.reference} / 2)`,[q.arrowOffset.variable]:`calc(${q.arrowSizeHalf.reference} * -1)`},arrowTip:{transform:t?la[t.split(`-`)[0]]:void 0,background:q.arrowBg.reference,top:`0`,left:`0`,width:`100%`,height:`100%`,position:`absolute`,zIndex:`inherit`},floating:{position:i,isolation:`isolate`,minWidth:n?void 0:`max-content`,width:n?`var(--reference-width)`:void 0,maxWidth:r?`var(--available-width)`:void 0,maxHeight:r?`var(--available-height)`:void 0,pointerEvents:t?void 0:`none`,top:`0px`,left:`0px`,transform:t?`translate3d(var(--x), var(--y), 0)`:`translate3d(0, -100vh, 0)`,zIndex:`var(--z-index)`}}}var da=(e,t)=>e.ids?.label?.(t)??`datepicker:${e.id}:label:${t}`,fa=e=>e.ids?.root??`datepicker:${e.id}`,pa=(e,t)=>e.ids?.table?.(t)??`datepicker:${e.id}:table:${t}`,ma=e=>e.ids?.content??`datepicker:${e.id}:content`,ha=(e,t)=>e.ids?.cellTrigger?.(t)??`datepicker:${e.id}:cell-trigger:${t}`,ga=(e,t)=>e.ids?.prevTrigger?.(t)??`datepicker:${e.id}:prev:${t}`,_a=(e,t)=>e.ids?.nextTrigger?.(t)??`datepicker:${e.id}:next:${t}`,va=(e,t)=>e.ids?.viewTrigger?.(t)??`datepicker:${e.id}:view:${t}`,ya=e=>e.ids?.clearTrigger??`datepicker:${e.id}:clear`,ba=e=>e.ids?.control??`datepicker:${e.id}:control`,xa=(e,t)=>e.ids?.input?.(t)??`datepicker:${e.id}:input:${t}`,Sa=e=>e.ids?.trigger??`datepicker:${e.id}:trigger`,Ca=e=>e.ids?.positioner??`datepicker:${e.id}:positioner`,wa=e=>e.ids?.monthSelect??`datepicker:${e.id}:month-select`,Ta=e=>e.ids?.yearSelect??`datepicker:${e.id}:year-select`,Ea=(e,t)=>Jr(Oa(e),`[data-part=table-cell-trigger][data-view=${t}][data-focus]:not([data-outside-range])`),Da=e=>e.getById(Sa(e)),Oa=e=>e.getById(ma(e)),ka=e=>qr(Pa(e),`[data-part=input]`),Aa=e=>e.getById(Ta(e)),ja=e=>e.getById(wa(e)),Ma=e=>e.getById(ya(e)),Na=e=>e.getById(Ca(e)),Pa=e=>e.getById(ba(e));function Fa(e,t,n){let r=[],i;return a=>{let o=e(a);return o.length!==r.length||o.some((e,t)=>!ii(r[t],e))?(r=o,i=t(o,a),n?.onChange?.(i),i):i}}var Ia=`.`,La=`#`,Ra=new WeakMap,za=new WeakMap;function Ba(e){return e.join(Ia)}function Va(e){return e.includes(Ia)}function Ha(e){return e.startsWith(La)}function Ua(e){return e.startsWith(Ia)}function Wa(e){return Ha(e)?e.slice(La.length):e}function Ga(e,t){return e?`${e}${Ia}${t}`:t}function Ka(e){let t=new Map,n=new Map,r=(e,i)=>{t.set(e,i);let a=i.id;a&&(n.has(a)&&Pi(`[zag-js] Duplicate state id: "${a}"`),n.set(a,e));let o=i.states;if(o){Fi(i.initial,()=>`[zag-js] Compound state "${e}" has child states but no "initial" property`),i.initial in o||Pi(`[zag-js] Compound state "${e}" has initial "${String(i.initial)}" which is not a child state`);for(let[t,n]of Object.entries(o)){if(!n)continue;let i=Ga(e,t);r(i,n)}}};for(let[t,n]of Object.entries(e.states))n&&r(t,n);return{index:t,idIndex:n}}function qa(e){let t=Ra.get(e);if(t)return t;let{index:n,idIndex:r}=Ka(e);return Ra.set(e,n),za.set(e,r),n}function Ja(e,t){return qa(e),za.get(e)?.get(t)}function Ya(e){return e?String(e).split(Ia).filter(Boolean):[]}function Xa(e,t){if(!t)return[];let n=qa(e),r=Ya(t),i=[],a=[];for(let e of r){a.push(e);let t=Ba(a),r=n.get(t);if(!r)break;i.push({path:t,state:r})}return i}function Za(e,t){let n=qa(e),r=Ya(t);if(!r.length)return t;let i=[];for(let e of r){i.push(e);let r=Ba(i);if(!n.has(r))return t}let a=Ba(i),o=n.get(a);for(;o?.initial;){let e=`${a}${Ia}${o.initial}`,t=n.get(e);if(!t)break;a=e,o=t}return a}function Qa(e,t){return qa(e).has(t)}function $a(e,t,n){let r=String(t);if(Ha(r)){let t=Wa(r),n=Ja(e,t);return Fi(n,()=>`[zag-js] Unknown state id: "${t}"`),Za(e,n)}if(Ua(r)&&n)return Za(e,Ga(n,r.slice(1)));if(!Va(r)&&n){let t=Ya(n);for(let n=t.length-1;n>=1;n--){let i=Ga(t.slice(0,n).join(Ia),r);if(Qa(e,i))return Za(e,i)}if(Qa(e,r))return Za(e,r)}return Za(e,r)}function eo(e,t,n){let r=Xa(e,t);for(let e=r.length-1;e>=0;e--){let t=r[e]?.state.on?.[n];if(t)return{transitions:t,source:r[e]?.path}}return{transitions:e.on?.[n],source:void 0}}function to(e,t,n,r){let i=t?Xa(e,t):[],a=Xa(e,n),o=0;for(;o<i.length&&o<a.length&&i[o]?.path===a[o]?.path;)o+=1;let s=i.slice(o).reverse(),c=a.slice(o),l=i.at(-1)?.path===a.at(-1)?.path;return r&&l&&(s=i.slice().reverse(),c=a),{exiting:s,entering:c}}function no(e,t){return e?e===t||e.startsWith(`${t}${Ia}`):!1}function ro(e,t,n){return Xa(e,t).some(e=>e.state.tags?.includes(n))}function io(){return{and:(...e)=>function(t){return e.every(e=>t.guard(e))},or:(...e)=>function(t){return e.some(e=>t.guard(e))},not:e=>function(t){return!t.guard(e)}}}function ao(e){return qa(e),e}var oo=(e=>(e.NotStarted=`Not Started`,e.Started=`Started`,e.Stopped=`Stopped`,e))(oo||{}),so=`__init__`;function co(e){let t=()=>e.getRootNode?.()??document,n=()=>tr(t()),r=()=>n().defaultView??window,i=()=>ir(t()),a=e=>t().getElementById(e);return{...e,getRootNode:t,getDoc:n,getWin:r,getActiveElement:i,isActiveElement:$n,getById:a}}function lo(e){let[t,n]=e,r;return r=!t||!n||t.compare(n)<=0?e:[n,t],r}function uo(e,t){let[n,r]=t;return!n||!r?!1:n.compare(e)<=0&&r.compare(e)>=0}function fo(e){return e.slice().filter(e=>e!=null).sort((e,t)=>e.compare(t))}function po(e){return bi(e,{year:`calendar decade`,month:`calendar year`,day:`calendar month`})}var mo={day:`dd`,month:`mm`,year:`yyyy`};function ho(e){return new z(e).formatToParts(new Date).map(e=>mo[e.type]??e.value).join(``)}var go=e=>!Number.isNaN(e.day)&&!Number.isNaN(e.month)&&!Number.isNaN(e.year),_o={dayCell(e){return e.unavailable?`Not available. ${e.valueText}`:e.firstInRange?`Starting range from ${e.valueText}`:e.lastInRange?`Range ending at ${e.valueText}`:e.selected?`Selected date. ${e.valueText}`:`Choose ${e.valueText}`},trigger(e){return e?`Close calendar`:`Open calendar`},viewTrigger(e){return bi(e,{year:`Switch to month view`,month:`Switch to day view`,day:`Switch to year view`})},presetTrigger(e){let[t=``,n=``]=e;return`select ${t} to ${n}`},prevTrigger(e){return bi(e,{year:`Switch to previous decade`,month:`Switch to previous year`,day:`Switch to previous month`})},nextTrigger(e){return bi(e,{year:`Switch to next decade`,month:`Switch to next year`,day:`Switch to next month`})},placeholder(){return{day:`dd`,month:`mm`,year:`yyyy`}},content:`calendar`,monthSelect:`Select month`,yearSelect:`Select year`,clearTrigger:`Clear selected dates`,weekColumnHeader:`Wk`,weekNumberCell(e){return`Week ${e}`}};function J(e,t){return e?e===`day`?0:e===`month`?1:2:t||0}function vo(e){return e===0?`day`:e===1?`month`:`year`}function yo(e,t,n){return vo(ji(J(e,0),J(t,0),J(n,2)))}function bo(e,t){return J(e,0)>J(t,0)}function xo(e,t){return J(e,0)<J(t,0)}function So(e,t,n){return yo(vo(J(e,0)+1),t,n)}function Co(e,t,n){return yo(vo(J(e,0)-1),t,n)}var wo=[`day`,`month`,`year`];function To(e){wo.forEach(t=>e(t))}var Eo=Fa(e=>[e.view,e.startValue.toString(),e.endValue.toString(),e.locale,e.timeZone,e.selectionMode],([e],t)=>{let{startValue:n,endValue:r,locale:i,timeZone:a,selectionMode:o}=t;if(e===`year`){let e=_n(n.year,{strict:!0}),t=e.at(0).toString(),r=e.at(-1).toString();return{start:t,end:r,formatted:`${t} - ${r}`}}if(e===`month`){let e=new z(i,{year:`numeric`,timeZone:a,calendar:n.calendar.identifier}),t=e.format(n.toDate(a)),s=e.format(r.toDate(a));return{start:t,end:s,formatted:o===`range`?`${t} - ${s}`:t}}let s=new z(i,{month:`long`,year:`numeric`,timeZone:a,calendar:n.calendar.identifier}),c=s.format(n.toDate(a)),l=s.format(r.toDate(a));return{start:c,end:l,formatted:o===`range`?`${c} - ${l}`:c}});function Do(e,t){let{state:n,context:r,prop:i,send:a,computed:o,scope:s}=e,c=r.get(`startValue`),l=o(`endValue`),u=r.get(`value`),d=r.get(`focusedValue`),f=r.get(`hoveredValue`),p=f?lo([u[0],f]):[],m=!!i(`disabled`),h=!!i(`readOnly`),g=!!i(`invalid`),_=o(`isInteractive`),v=u.length===0,y=i(`min`),b=i(`max`),x=i(`locale`),S=i(`timeZone`),C=i(`startOfWeek`),w=n.matches(`focused`),T=n.matches(`open`),E=i(`selectionMode`)===`range`,D=i(`selectionMode`)===`multiple`,ee=i(`isDateUnavailable`),te=i(`maxSelectedDates`),ne=D&&te!=null&&u.length>=te,k=r.get(`currentPlacement`),se=k?Gi(k):void 0,ce=ua({...i(`positioning`),placement:k}),le=An(x),A={..._o,...i(`translations`)};function ue(e=c){let t=i(`fixedWeeks`)?6:void 0;return on(e,x,t,C)}function de(e={}){let{format:t}=e;return ln(x,t,d).map((e,t)=>{let n=t+1;return{label:e,value:n,disabled:H(d.set({month:n}),y,b)}})}function fe(){return dn(mn(d,y,b)).map(e=>({label:e.toString(),value:e,disabled:!Ai(e,y?.year,b?.year)}))}function pe(e){return Gt(e,ee,x,y,b)}function me(e){let t=c??vn(S,d.calendar);a({type:`FOCUS.SET`,value:t.set({month:e})})}function he(e){let t=c??vn(S,d.calendar);a({type:`FOCUS.SET`,value:t.set({year:e})})}function ge(e){let{value:t,disabled:n}=e,r=d.set({year:t}),i=!_n(c.year,{strict:!0}).includes(t),a=Ai(t,y?.year,b?.year),o=E&&uo(r,u),s=E&&u[0]&&ae(r,u[0]),l=E&&u[1]&&ae(r,u[1]),f=E&&p.length>0,m=f&&uo(r,p),h=f&&p[0]&&ae(r,p[0]),g=f&&p[1]&&ae(r,p[1]),_={focused:d.year===e.value,selectable:!i&&a,outsideRange:i,selected:!!u.find(e=>e&&e.year===t),valueText:t.toString(),inRange:o||m,firstInRange:!!s,lastInRange:!!l,inHoveredRange:!!m,firstInHoveredRange:!!h,lastInHoveredRange:!!g,value:r,get disabled(){return n||!_.selectable}};return _}function j(e){let{value:t,disabled:n}=e,r=d.set({month:t}),i=Qt(x,S,d),a=E&&uo(r,u),o=E&&u[0]&&ie(r,u[0]),s=E&&u[1]&&ie(r,u[1]),c=E&&p.length>0,l=c&&uo(r,p),f=c&&p[0]&&ie(r,p[0]),m=c&&p[1]&&ie(r,p[1]),h={focused:d.month===e.value,selectable:!H(r,y,b),selected:!!u.find(e=>e&&e.month===t&&e.year===d.year),valueText:i.format(r.toDate(S)),inRange:a||l,firstInRange:!!o,lastInRange:!!s,inHoveredRange:!!l,firstInHoveredRange:!!f,lastInHoveredRange:!!m,outsideRange:!1,value:r,get disabled(){return n||!h.selectable}};return h}function _e(e){let{value:t,disabled:n,visibleRange:r=o(`visibleRange`)}=e,a=Zt(x,S,d),s=Jt(o(`visibleDuration`)),c=i(`outsideDaySelectable`),l=r.start.add(s).subtract({days:1}),f=H(t,r.start,l),m=E&&uo(t,u),h=E&&u[0]&&O(t,u[0]),g=E&&u[1]&&O(t,u[1]),_=E&&p.length>0,v=_&&uo(t,p),C=_&&p[0]&&O(t,p[0]),w=_&&p[1]&&O(t,p[1]),T=u.some(e=>e!=null&&O(t,e)),D={invalid:H(t,y,b),disabled:n||!c&&f||H(t,y,b)||ne&&!T,selected:T,unavailable:Gt(t,ee,x,y,b)&&!n,outsideRange:f,today:oe(t,S),weekend:ke(t,x),value:t,valueText:a.format(t.toDate(S)),get focused(){return d!=null&&O(t,d)&&(!D.outsideRange||c)},get selectable(){return!D.disabled&&!D.unavailable},inRange:m||v,firstInRange:h,lastInRange:g,inHoveredRange:v,firstInHoveredRange:C,lastInHoveredRange:w};return D}function ve(e){let{view:t=`day`,id:n}=e;return[t,n].filter(Boolean).join(` `)}return{focused:w,open:T,disabled:m,invalid:g,readOnly:h,inline:!!i(`inline`),numOfMonths:i(`numOfMonths`),showWeekNumbers:!!i(`showWeekNumbers`),selectionMode:i(`selectionMode`),maxSelectedDates:te,isMaxSelected:ne,view:r.get(`view`),getRangePresetValue(e){return Ln(e,x,S)},getWeekNumber(e){let t=e[0];return t?un(t,x):0},getDaysInWeek(e,t=c){return an(e,t,x,C)},getOffset(e){let t=c.add(e),n=l.add(e),r=Qt(x,S,d);return{visibleRange:{start:t,end:n},weeks:ue(t),visibleRangeText:{start:r.format(t.toDate(S)),end:r.format(n.toDate(S))}}},getMonthWeeks:ue,isUnavailable:pe,weeks:ue(),weekDays:cn(c,C,S,x),visibleRangeText:o(`visibleRangeText`),value:u,valueAsDate:u.filter(e=>e!=null).map(e=>e.toDate(S)),valueAsString:o(`valueAsString`),focusedValue:d,focusedValueAsDate:d?.toDate(S),focusedValueAsString:i(`format`)(d,{locale:x,timeZone:S}),visibleRange:o(`visibleRange`),selectToday(){let e=V(vn(S,d.calendar),y,b);a({type:`VALUE.SET`,value:[e]})},setValue(e){let t=e.map(e=>V(e,y,b));a({type:`VALUE.SET`,value:t})},setTime(e,t=0){let n=Array.from(u),r=n[t];r&&(`hour`in r||(r=F(r)),r=r.set({hour:e.hour??(`hour`in r?r.hour:0),minute:e.minute??(`minute`in r?r.minute:0),second:e.second??(`second`in r?r.second:0),millisecond:e.millisecond??(`millisecond`in r?r.millisecond:0)}),n[t]=V(r,y,b),a({type:`VALUE.SET`,value:n}))},clearValue(e={}){let{focus:t=!0}=e;a({type:`VALUE.CLEAR`,focus:t})},setFocusedValue(e){a({type:`FOCUS.SET`,value:e})},setOpen(e){i(`inline`)||n.matches(`open`)!==e&&a({type:e?`OPEN`:`CLOSE`})},focusMonth:me,focusYear:he,getYears:fe,getMonths:de,getYearsGrid(e={}){let{columns:t=1}=e;return ti(_n(c.year,{strict:!0}).map(e=>({label:e.toString(),value:e,disabled:!Ai(e,y?.year,b?.year)})),t)},getDecade(){let e=_n(c.year,{strict:!0});return{start:e.at(0),end:e.at(-1)}},getMonthsGrid(e={}){let{columns:t=1,format:n}=e;return ti(de({format:n}),t)},format(e,t={month:`long`,year:`numeric`}){return new z(x,{...t,calendar:e.calendar.identifier}).format(e.toDate(S))},setView(e){a({type:`VIEW.SET`,view:e})},goToNext(){a({type:`GOTO.NEXT`,view:r.get(`view`)})},goToPrev(){a({type:`GOTO.PREV`,view:r.get(`view`)})},getRootProps(){return t.element({...B.root.attrs,dir:i(`dir`),id:fa(s),"data-state":T?`open`:`closed`,"data-disabled":U(m),"data-readonly":U(h),"data-empty":U(v)})},getLabelProps(e={}){let{index:n=0}=e;return t.label({...B.label.attrs,id:da(s,n),dir:i(`dir`),htmlFor:xa(s,n),"data-state":T?`open`:`closed`,"data-index":n,"data-disabled":U(m),"data-readonly":U(h)})},getControlProps(){return t.element({...B.control.attrs,dir:i(`dir`),id:ba(s),"data-disabled":U(m),"data-placeholder-shown":U(v)})},getRangeTextProps(){return t.element({...B.rangeText.attrs,dir:i(`dir`)})},getContentProps(){return t.element({...B.content.attrs,hidden:!T,dir:i(`dir`),"data-state":T?`open`:`closed`,"data-placement":k,"data-side":se,"data-inline":U(i(`inline`)),id:ma(s),tabIndex:-1,role:`application`,"aria-roledescription":`datepicker`,"aria-label":A.content})},getTableProps(e={}){let{view:n=`day`,columns:r=n===`day`?7:4}=e,o=ve(e);return t.element({...B.table.attrs,role:`grid`,"data-columns":r,"aria-roledescription":po(n),id:pa(s,o),"aria-readonly":W(h),"aria-disabled":W(m),"aria-multiselectable":W(i(`selectionMode`)!==`single`),"data-view":n,dir:i(`dir`),tabIndex:-1,onKeyDown(e){if(e.defaultPrevented||m)return;let t={Enter(){_&&(n===`day`&&pe(d)||n===`month`&&!j({value:d.month}).selectable||n===`year`&&!ge({value:d.year}).selectable||a({type:`TABLE.ENTER`,view:n,columns:r,focus:!0}))},ArrowLeft(){a({type:`TABLE.ARROW_LEFT`,view:n,columns:r,focus:!0})},ArrowRight(){a({type:`TABLE.ARROW_RIGHT`,view:n,columns:r,focus:!0})},ArrowUp(){a({type:`TABLE.ARROW_UP`,view:n,columns:r,focus:!0})},ArrowDown(){a({type:`TABLE.ARROW_DOWN`,view:n,columns:r,focus:!0})},PageUp(e){a({type:`TABLE.PAGE_UP`,larger:e.shiftKey,view:n,columns:r,focus:!0})},PageDown(e){a({type:`TABLE.PAGE_DOWN`,larger:e.shiftKey,view:n,columns:r,focus:!0})},Home(){a({type:`TABLE.HOME`,view:n,columns:r,focus:!0})},End(){a({type:`TABLE.END`,view:n,columns:r,focus:!0})}}[Dr(e,{dir:i(`dir`)})];t&&(t(e),e.preventDefault(),e.stopPropagation())},onPointerLeave(){a({type:`TABLE.POINTER_LEAVE`})},onPointerDown(){a({type:`TABLE.POINTER_DOWN`,view:n})},onPointerUp(){a({type:`TABLE.POINTER_UP`,view:n})}})},getTableHeadProps(e={}){let{view:n=`day`}=e;return t.element({...B.tableHead.attrs,"aria-hidden":!0,dir:i(`dir`),"data-view":n,"data-disabled":U(m)})},getTableHeaderProps(e={}){let{view:n=`day`}=e;return t.element({...B.tableHeader.attrs,dir:i(`dir`),"data-view":n,"data-disabled":U(m)})},getTableBodyProps(e={}){let{view:n=`day`}=e;return t.element({...B.tableBody.attrs,"data-view":n,"data-disabled":U(m)})},getTableRowProps(e={}){let{view:n=`day`}=e;return t.element({...B.tableRow.attrs,"aria-disabled":W(m),"data-disabled":U(m),"data-view":n})},getWeekNumberHeaderCellProps(e={}){let{view:n=`day`}=e;return t.element({...B.tableCell.attrs,scope:`col`,"aria-label":A.weekColumnHeader,"data-view":n,"data-type":`week-number`,"data-disabled":U(m)})},getWeekNumberCellProps(e){let{weekIndex:n,week:r}=e,i=r[0]?un(r[0],x):0;return t.element({...B.tableCell.attrs,role:`rowheader`,"aria-label":A.weekNumberCell?.(i),"data-view":`day`,"data-week-index":n,"data-type":`week-number`,"data-disabled":U(m)})},getDayTableCellState:_e,getDayTableCellProps(e){let{value:n}=e,r=_e(e);return t.element({...B.tableCell.attrs,role:`gridcell`,"aria-disabled":W(!r.selectable),"aria-selected":r.selected||r.inRange,"aria-invalid":W(r.invalid),"aria-current":r.today?`date`:void 0,"data-value":n.toString()})},getDayTableCellTriggerProps(e){let{value:n}=e,r=_e(e);return t.element({...B.tableCellTrigger.attrs,id:ha(s,n.toString()),role:`button`,dir:i(`dir`),tabIndex:m?-1:r.focused?0:-1,"aria-label":A.dayCell(r),"aria-disabled":W(!r.selectable),"aria-invalid":W(r.invalid),"data-disabled":U(!r.selectable),"data-selectable":U(r.selectable),"data-selected":U(r.selected),"data-value":n.toString(),"data-view":`day`,"data-today":U(r.today),"data-focus":U(r.focused),"data-unavailable":U(r.unavailable),"data-range-start":U(r.firstInRange),"data-range-end":U(r.lastInRange),"data-in-range":U(r.inRange),"data-outside-range":U(r.outsideRange),"data-weekend":U(r.weekend),"data-in-hover-range":U(r.inHoveredRange),"data-hover-range-start":U(r.firstInHoveredRange),"data-hover-range-end":U(r.lastInHoveredRange),onClick(e){e.defaultPrevented||_&&r.selectable&&a({type:`CELL.CLICK`,cell:`day`,value:n})},onPointerMove:E?e=>{if(e.pointerType===`touch`||!r.selectable)return;let t=!s.isActiveElement(e.currentTarget);f&&re(n,f)||a({type:`CELL.POINTER_MOVE`,cell:`day`,value:n,focus:t,outsideRange:r.outsideRange})}:void 0})},getMonthTableCellState:j,getMonthTableCellProps(e){let{value:n,columns:r}=e,a=j(e);return t.element({...B.tableCell.attrs,dir:i(`dir`),colSpan:r,role:`gridcell`,"aria-selected":W(a.selected||a.inRange),"data-selected":U(a.selected),"aria-disabled":W(!a.selectable),"data-value":n})},getMonthTableCellTriggerProps(e){let{value:n}=e,r=j(e);return t.element({...B.tableCellTrigger.attrs,id:ha(s,n.toString()),role:`button`,dir:i(`dir`),tabIndex:m?-1:r.focused?0:-1,"aria-label":r.valueText,"aria-disabled":W(!r.selectable),"data-disabled":U(!r.selectable),"data-selectable":U(r.selectable),"data-selected":U(r.selected),"data-value":n,"data-view":`month`,"data-focus":U(r.focused),"data-outside-range":U(r.outsideRange),"data-range-start":U(r.firstInRange),"data-range-end":U(r.lastInRange),"data-in-range":U(r.inRange),"data-in-hover-range":U(r.inHoveredRange),"data-hover-range-start":U(r.firstInHoveredRange),"data-hover-range-end":U(r.lastInHoveredRange),onClick(e){e.defaultPrevented||_&&r.selectable&&a({type:`CELL.CLICK`,cell:`month`,value:n})},onPointerMove:E?e=>{if(e.pointerType===`touch`||!r.selectable)return;let t=!s.isActiveElement(e.currentTarget);f&&r.value&&ie(r.value,f)||a({type:`CELL.POINTER_MOVE`,cell:`month`,value:r.value,focus:t})}:void 0})},getYearTableCellState:ge,getYearTableCellProps(e){let{value:n,columns:r}=e,a=ge(e);return t.element({...B.tableCell.attrs,dir:i(`dir`),colSpan:r,role:`gridcell`,"aria-selected":W(a.selected||a.inRange),"data-selected":U(a.selected),"aria-disabled":W(!a.selectable),"data-value":n})},getYearTableCellTriggerProps(e){let{value:n}=e,r=ge(e);return t.element({...B.tableCellTrigger.attrs,id:ha(s,n.toString()),role:`button`,dir:i(`dir`),tabIndex:m?-1:r.focused?0:-1,"aria-label":r.valueText,"aria-disabled":W(!r.selectable),"data-disabled":U(!r.selectable),"data-selectable":U(r.selectable),"data-selected":U(r.selected),"data-value":n,"data-view":`year`,"data-focus":U(r.focused),"data-outside-range":U(r.outsideRange),"data-range-start":U(r.firstInRange),"data-range-end":U(r.lastInRange),"data-in-range":U(r.inRange),"data-in-hover-range":U(r.inHoveredRange),"data-hover-range-start":U(r.firstInHoveredRange),"data-hover-range-end":U(r.lastInHoveredRange),onClick(e){e.defaultPrevented||_&&r.selectable&&a({type:`CELL.CLICK`,cell:`year`,value:n})},onPointerMove:E?e=>{if(e.pointerType===`touch`||!r.selectable)return;let t=!s.isActiveElement(e.currentTarget);f&&r.value&&ae(r.value,f)||a({type:`CELL.POINTER_MOVE`,cell:`year`,value:r.value,focus:t})}:void 0})},getNextTriggerProps(e={}){let{view:n=`day`}=e,r=m||!o(`isNextVisibleRangeValid`);return t.button({...B.nextTrigger.attrs,dir:i(`dir`),id:_a(s,n),type:`button`,"aria-label":A.nextTrigger(n),disabled:r,"data-disabled":U(r),onClick(e){e.defaultPrevented||a({type:`GOTO.NEXT`,view:n})}})},getPrevTriggerProps(e={}){let{view:n=`day`}=e,r=m||!o(`isPrevVisibleRangeValid`);return t.button({...B.prevTrigger.attrs,dir:i(`dir`),id:ga(s,n),type:`button`,"aria-label":A.prevTrigger(n),disabled:r,"data-disabled":U(r),onClick(e){e.defaultPrevented||a({type:`GOTO.PREV`,view:n})}})},getClearTriggerProps(){return t.button({...B.clearTrigger.attrs,id:ya(s),dir:i(`dir`),type:`button`,"aria-label":A.clearTrigger,hidden:!u.length,onClick(e){e.defaultPrevented||_&&a({type:`VALUE.CLEAR`})}})},getTriggerProps(){return t.button({...B.trigger.attrs,id:Sa(s),dir:i(`dir`),type:`button`,"data-placement":k,"data-side":se,"aria-label":A.trigger(T),"aria-controls":ma(s),"aria-expanded":T,"data-state":T?`open`:`closed`,"data-placeholder-shown":U(v),"aria-haspopup":`grid`,disabled:m,onClick(e){e.defaultPrevented||_&&a({type:`TRIGGER.CLICK`})}})},getViewProps(e={}){let{view:n=`day`}=e;return t.element({...B.view.attrs,"data-view":n,hidden:r.get(`view`)!==n})},getViewTriggerProps(e={}){let{view:n=`day`}=e;return t.button({...B.viewTrigger.attrs,"data-view":n,dir:i(`dir`),id:va(s,n),type:`button`,disabled:m,"aria-label":A.viewTrigger(n),onClick(e){e.defaultPrevented||_&&a({type:`VIEW.TOGGLE`,src:`viewTrigger`})}})},getViewControlProps(e={}){let{view:n=`day`}=e;return t.element({...B.viewControl.attrs,"data-view":n,dir:i(`dir`)})},getInputProps(e={}){let{index:n=0,fixOnBlur:r=!0}=e;return t.input({...B.input.attrs,id:xa(s,n),autoComplete:`off`,autoCorrect:`off`,spellCheck:`false`,dir:i(`dir`),name:i(`name`),"data-index":n,"data-state":T?`open`:`closed`,"data-placeholder-shown":U(v),readOnly:h,disabled:m,required:i(`required`),"aria-invalid":W(g),"data-invalid":U(g),placeholder:i(`placeholder`)||ho(x),defaultValue:o(`valueAsString`)[n],onBeforeInput(e){let{data:t}=Or(e);Dn(t,le,x)||e.preventDefault()},onClick(e){e.defaultPrevented||i(`openOnClick`)&&_&&a({type:`OPEN`,src:`input.click`})},onFocus(){a({type:`INPUT.FOCUS`,index:n})},onBlur(e){let t=e.currentTarget.value.trim();a({type:`INPUT.BLUR`,value:t,index:n,fixOnBlur:r})},onKeyDown(e){if(e.defaultPrevented||!_)return;let t={Enter(e){Cr(e)||pe(d)||e.currentTarget.value.trim()!==``&&a({type:`INPUT.ENTER`,value:e.currentTarget.value,index:n})}}[e.key];t&&(t(e),e.preventDefault())},onInput(e){let t=e.currentTarget.value;a({type:`INPUT.CHANGE`,value:On(t,le,x),index:n})}})},getMonthSelectProps(){return t.select({...B.monthSelect.attrs,id:wa(s),"aria-label":A.monthSelect,disabled:m,dir:i(`dir`),defaultValue:c.month,onChange(e){me(Number(e.currentTarget.value))}})},getYearSelectProps(){return t.select({...B.yearSelect.attrs,id:Ta(s),disabled:m,"aria-label":A.yearSelect,dir:i(`dir`),defaultValue:c.year,onChange(e){he(Number(e.currentTarget.value))}})},getPositionerProps(){return t.element({id:Ca(s),...B.positioner.attrs,dir:i(`dir`),style:ce.floating})},getPresetTriggerProps(e){let n=Array.isArray(e.value)?e.value:Ln(e.value,x,S),r=n.filter(e=>e!=null).map(e=>e.toDate(S).toDateString());return t.button({...B.presetTrigger.attrs,"aria-label":A.presetTrigger(r),type:`button`,onClick(e){e.defaultPrevented||_&&a({type:`PRESET.CLICK`,value:n})}})}}}function Oo(e){let t={each(t){for(let n=0;n<e.frames?.length;n+=1){let r=e.frames[n];r&&t(r)}},addEventListener(e,n,r){return t.each(t=>{try{t.document.addEventListener(e,n,r)}catch{}}),()=>{try{t.removeEventListener(e,n,r)}catch{}}},removeEventListener(e,n,r){t.each(t=>{try{t.document.removeEventListener(e,n,r)}catch{}})}};return t}function ko(e){let t=e.frameElement==null?null:e.parent;return{addEventListener:(e,n,r)=>{try{t?.addEventListener(e,n,r)}catch{}return()=>{try{t?.removeEventListener(e,n,r)}catch{}}},removeEventListener:(e,n,r)=>{try{t?.removeEventListener(e,n,r)}catch{}}}}var Ao=`pointerdown.outside`,jo=`focus.outside`;function Mo(e){for(let t of e)if(G(t)&&Pr(t))return!0;return!1}var No=e=>`clientY`in e;function Po(e,t){if(!No(t)||!e)return!1;let n=e.getBoundingClientRect();return n.width===0||n.height===0?!1:n.top<=t.clientY&&t.clientY<=n.top+n.height&&n.left<=t.clientX&&t.clientX<=n.left+n.width}function Fo(e,t){return e.y<=t.y&&t.y<=e.y+e.height&&e.x<=t.x&&t.x<=e.x+e.width}function Io(e,t){if(!t||!No(e))return!1;let n=t.scrollHeight>t.clientHeight,r=n&&e.clientX>t.offsetLeft+t.clientWidth,i=t.scrollWidth>t.clientWidth,a=i&&e.clientY>t.offsetTop+t.clientHeight;return Fo({x:t.offsetLeft,y:t.offsetTop,width:t.clientWidth+(n?16:0),height:t.clientHeight+(i?16:0)},{x:e.clientX,y:e.clientY})?r||a:!1}function Lo(e,t){let{exclude:n,onFocusOutside:r,onPointerDownOutside:i,onInteractOutside:a,defer:o,followControlledElements:s=!0}=t;if(!e)return;let c=tr(e),l=rr(e),u=Oo(l),d=ko(l);function f(t,r){if(!G(r)||!r.isConnected||er(e,r)||Po(e,t)||s&&fr(e,r))return!1;let i=c.querySelector(`[aria-controls="${e.id}"]`);return i&&Io(t,Lr(i))||Io(t,Lr(e))?!1:!n?.(r)}let p=new Set,m=Zn(e?.getRootNode()),h=!1;function g(t){h=!0;let n=()=>{h=!1};c.addEventListener(`pointerup`,n,{once:!0}),l.addEventListener(`pointerup`,n,{once:!0});function r(n){let r=o&&!gr()?K:e=>e(),s=n??t,c=s?.composedPath?.()??[s?.target];r(()=>{let n=m?c[0]:Sr(t);if(!(!e||!f(t,n))){if(i||a){let t=yi(i,a);e.addEventListener(Ao,t,{once:!0})}zo(e,Ao,{bubbles:!1,cancelable:!0,detail:{originalEvent:s,contextmenu:wr(s),focusable:Mo(c),target:n}})}})}t.pointerType===`touch`?(p.forEach(e=>e()),p.add(kr(c,`click`,r,{once:!0})),p.add(d.addEventListener(`click`,r,{once:!0})),p.add(u.addEventListener(`click`,r,{once:!0}))):r()}let _=new Set,v=setTimeout(()=>{_.add(kr(c,`pointerdown`,g,!0)),_.add(d.addEventListener(`pointerdown`,g,!0)),_.add(u.addEventListener(`pointerdown`,g,!0))},0);function y(t){h||(o?K:e=>e())(()=>{let n=t?.composedPath?.()??[t?.target],i=m?n[0]:Sr(t);if(!(!e||!f(t,i))){if(r||a){let t=yi(r,a);e.addEventListener(jo,t,{once:!0})}zo(e,jo,{bubbles:!1,cancelable:!0,detail:{originalEvent:t,contextmenu:!1,focusable:Pr(i),target:i}})}})}return gr()||(_.add(kr(c,`focusin`,y,!0)),_.add(d.addEventListener(`focusin`,y,!0)),_.add(u.addEventListener(`focusin`,y,!0))),()=>{clearTimeout(v),p.forEach(e=>e()),_.forEach(e=>e())}}function Ro(e,t){let{defer:n}=t,r=n?K:e=>e(),i=[];return i.push(r(()=>{let n=typeof e==`function`?e():e;i.push(Lo(n,t))})),()=>{i.forEach(e=>e?.())}}function zo(e,t,n){let r=new(e.ownerDocument.defaultView||window).CustomEvent(t,n);return e.dispatchEvent(r)}function Bo(e,t){return kr(tr(e),`keydown`,e=>{e.key===`Escape`&&(e.isComposing||t?.(e))},{capture:!0})}var Vo=`layer:request-dismiss`,Y={layers:[],branches:[],recentlyRemoved:new Set,count(){return this.layers.length},pointerBlockingLayers(){return this.layers.filter(e=>e.pointerBlocking)},topMostPointerBlockingLayer(){return[...this.pointerBlockingLayers()].slice(-1)[0]},hasPointerBlockingLayer(){return this.pointerBlockingLayers().length>0},isBelowPointerBlockingLayer(e){return this.indexOf(e)<(this.topMostPointerBlockingLayer()?this.indexOf(this.topMostPointerBlockingLayer()?.node):-1)},isTopMost(e){return this.layers[this.count()-1]?.node===e},getNestedLayers(e){return Array.from(this.layers).slice(this.indexOf(e)+1)},getLayersByType(e){return this.layers.filter(t=>t.type===e)},getNestedLayersByType(e,t){let n=this.indexOf(e);return n===-1?[]:this.layers.slice(n+1).filter(e=>e.type===t)},getParentLayerOfType(e,t){let n=this.indexOf(e);if(!(n<=0))return this.layers.slice(0,n).reverse().find(e=>e.type===t)},countNestedLayersOfType(e,t){return this.getNestedLayersByType(e,t).length},isInNestedLayer(e,t){return!!(this.getNestedLayers(e).some(e=>er(e.node,t))||this.recentlyRemoved.size>0)},isInBranch(e){return Array.from(this.branches).some(t=>er(t,e))},add(e){let t=this.indexOf(e.node);t!==-1&&this.layers.splice(t,1),this.layers.push(e),this.syncLayers()},addBranch(e){this.branches.push(e)},remove(e){let t=this.indexOf(e);t<0||(this.layers[t].styleTargets?.forEach(e=>{let t=e();t&&Uo(t)}),this.recentlyRemoved.add(e),Ir(()=>this.recentlyRemoved.delete(e)),t<this.count()-1&&this.getNestedLayers(e).forEach(t=>Y.dismiss(t.node,e)),this.layers.splice(t,1),this.syncLayers())},removeBranch(e){let t=this.branches.indexOf(e);t>=0&&this.branches.splice(t,1)},syncLayers(){this.layers.forEach((e,t)=>{Ho(e,t,e.node),e.styleTargets?.forEach(n=>{let r=n();if(!r||r===e.node)return;Ho(e,t,r);let{zIndex:i}=cr(e.node);r.style.setProperty(`--z-index`,i)})})},indexOf(e){return this.layers.findIndex(t=>t.node===e)},dismiss(e,t){let n=this.indexOf(e);if(n===-1)return;let r=this.layers[n];Go(e,Vo,e=>{r.requestDismiss?.(e),e.defaultPrevented||r?.dismiss()}),Wo(e,Vo,{originalLayer:e,targetLayer:t,originalIndex:n,targetIndex:t?this.indexOf(t):-1}),this.syncLayers()},clear(){this.remove(this.layers[0].node)}};function Ho(e,t,n){n.style.setProperty(`--layer-index`,`${t}`),n.removeAttribute(`data-nested`),n.removeAttribute(`data-has-nested`),Y.getParentLayerOfType(e.node,e.type)&&n.setAttribute(`data-nested`,e.type);let r=Y.countNestedLayersOfType(e.node,e.type);r>0&&n.setAttribute(`data-has-nested`,e.type),n.style.setProperty(`--nested-layer-count`,`${r}`)}function Uo(e){e.style.removeProperty(`--layer-index`),e.style.removeProperty(`--nested-layer-count`),e.style.removeProperty(`--z-index`),e.removeAttribute(`data-nested`),e.removeAttribute(`data-has-nested`)}function Wo(e,t,n){let r=new(e.ownerDocument.defaultView||window).CustomEvent(t,{cancelable:!0,bubbles:!0,detail:n});return e.dispatchEvent(r)}function Go(e,t,n){e.addEventListener(t,n,{once:!0})}var Ko=new WeakMap,qo=new WeakMap;function Jo(e){return Y.isBelowPointerBlockingLayer(e)?`none`:`auto`}function Yo(e){let t=Jo(e);e.style.pointerEvents!==t&&(e.style.pointerEvents=t)}function Xo(e){if(qo.has(e))return;let t=rr(e);if(t.MutationObserver===void 0)return;let n=new t.MutationObserver(()=>{qo.has(e)&&Yo(e)});n.observe(e,{attributes:!0,attributeFilter:[`style`]}),qo.set(e,n)}function Zo(){Y.layers.forEach(({node:e})=>{Yo(e),Xo(e)})}function Qo(e){let t=qo.get(e);t&&(t.disconnect(),qo.delete(e)),e.style.pointerEvents=``}function $o(e,t){let n=tr(e),r=[];return Y.hasPointerBlockingLayer()&&!n.body.hasAttribute(`data-inert`)&&(Ko.set(n.body,n.body.style.pointerEvents),queueMicrotask(()=>{let e=n.body;e&&(e.style.pointerEvents=`none`,e.setAttribute(`data-inert`,``))})),t?.forEach(e=>{let[t,n]=Qr(()=>{let t=e();return G(t)?t:null},{timeout:1e3});t.then(e=>r.push(Yr(e,{pointerEvents:`auto`}))),r.push(n)}),()=>{Y.hasPointerBlockingLayer()||(queueMicrotask(()=>{let e=n.body;if(!e)return;let t=Ko.get(e);t!==void 0&&(e.style.pointerEvents=t,Ko.delete(e)),e.removeAttribute(`data-inert`),e.style.length===0&&e.removeAttribute(`style`)}),r.forEach(e=>e()))}}function es(e,t){let{warnOnMissingNode:n=!0}=t;if(n&&!e){Ni("[@zag-js/dismissable] node is `null` or `undefined`");return}if(!e)return;let{onDismiss:r,onRequestDismiss:i,pointerBlocking:a,exclude:o,debug:s,type:c=`dialog`,layerStyleTargets:l}=t,u={dismiss:r,node:e,type:c,pointerBlocking:a,requestDismiss:i,styleTargets:l};Y.add(u),Zo();function d(n){let i=Sr(n.detail.originalEvent);Y.isBelowPointerBlockingLayer(e)||Y.isInBranch(i)||(t.onPointerDownOutside?.(n),t.onInteractOutside?.(n),!n.defaultPrevented&&(s&&console.log(`onPointerDownOutside:`,n.detail.originalEvent),r?.()))}function f(e){let n=Sr(e.detail.originalEvent);Y.isInBranch(n)||(t.onFocusOutside?.(e),t.onInteractOutside?.(e),!e.defaultPrevented&&(s&&console.log(`onFocusOutside:`,e.detail.originalEvent),r?.()))}function p(n){Y.isTopMost(e)&&(t.onEscapeKeyDown?.(n),!n.defaultPrevented&&r&&(n.preventDefault(),r()))}function m(n){if(!e)return!1;let r=typeof o==`function`?o():o,i=Array.isArray(r)?r:[r],a=t.persistentElements?.map(e=>e()).filter(G);return a&&i.push(...a),i.some(e=>er(e,n))||Y.isInNestedLayer(e,n)}let h=[a?$o(e,t.persistentElements):void 0,Bo(e,p),Ro(e,{exclude:m,onFocusOutside:f,onPointerDownOutside:d,defer:t.defer})];return()=>{Y.remove(e),Zo(),Qo(e),h.forEach(e=>e?.())}}function ts(e,t){let{defer:n}=t,r=n?K:e=>e(),i=[];return i.push(r(()=>{let n=si(e)?e():e;i.push(es(n,t))})),()=>{i.forEach(e=>e?.())}}var ns=`__live-region__`,rs=`__live-region-debug__`,is=`position:fixed;inset-inline:0;bottom:0;z-index:2147483647;padding:12px 16px;background:black;color:white;font-size:14px;line-height:20px;text-align:center;pointer-events:none;`;function as(e={}){let{level:t=`polite`,document:n=document,root:r,delay:i=0,debug:a=!1}=e,o=n.defaultView??window,s=r??n.body;function c(){if(!a)return;let e=n.getElementById(rs);return e||(e=n.createElement(`div`),e.id=rs,e.dataset.liveAnnouncerDebug=`true`,e.setAttribute(`aria-hidden`,`true`),e.style.cssText=is,s.appendChild(e),e)}function l(e,r){n.getElementById(ns)?.remove(),r??=i;let a=n.createElement(`span`);a.id=ns,a.dataset.liveAnnouncer=`true`;let l=t===`assertive`?`alert`:`status`;a.setAttribute(`aria-live`,t),a.setAttribute(`role`,l),Object.assign(a.style,{border:`0`,clip:`rect(0 0 0 0)`,height:`1px`,margin:`-1px`,overflow:`hidden`,padding:`0`,position:`absolute`,width:`1px`,whiteSpace:`nowrap`,wordWrap:`normal`}),s.appendChild(a),o.setTimeout(()=>{if(!a.isConnected)return;a.textContent=e;let t=c();t&&(t.textContent=e)},r)}function u(){n.getElementById(ns)?.remove(),n.getElementById(rs)?.remove()}return{announce:l,destroy:u,toJSON(){return ns}}}var{and:X}=io();function os(e,t){if(e?.length!==t?.length)return!1;let n=Math.max(e.length,t.length);for(let r=0;r<n;r++)if(!Wt(e[r],t[r]))return!1;return!0}function ss(e,t){return e.map(e=>e==null?``:t(`format`)(e,{locale:t(`locale`),timeZone:t(`timeZone`)}))}var cs=ao({props({props:e}){let t=e.locale||`en-US`,n=e.timeZone||`UTC`,r=e.selectionMode||`single`,i=e.numOfMonths||1,a;if(e.createCalendar){let n=new Intl.DateTimeFormat(t).resolvedOptions().calendar;n!==`gregory`&&n!==`iso8601`&&(a=e.createCalendar(n))}let o=e=>!a||e.calendar.identifier===a.identifier?e:I(e,a),s=e.defaultValue?fo(e.defaultValue).map(t=>V(o(t),e.min,e.max)):void 0,c=e.value?fo(e.value).map(t=>V(o(t),e.min,e.max)):void 0,l=e.focusedValue||e.defaultFocusedValue||c?.[0]||s?.[0]||vn(n,a);l=V(o(l),e.min,e.max);let u=e.minView||`day`,d=e.maxView||`year`,f=yo(e.defaultView||e.view||u,u,d);return{locale:t,numOfMonths:i,timeZone:n,selectionMode:r,minView:u,maxView:d,outsideDaySelectable:!1,closeOnSelect:!0,format(e,{locale:t,timeZone:n}){return new z(t,{timeZone:n,day:`2-digit`,month:`2-digit`,year:`numeric`,calendar:a?.identifier}).format(e.toDate(n))},parse(e,{locale:t,timeZone:n}){return Pn(e,t,n)},...e,focusedValue:e.focusedValue===void 0?void 0:l,defaultFocusedValue:l,value:c,defaultValue:s??[],defaultView:f,positioning:{placement:`bottom`,...e.positioning}}},initialState({prop:e}){return e(`inline`)||(e(`open`)??e(`defaultOpen`))?`open`:`idle`},refs(){return{announcer:void 0}},context({prop:e,bindable:t,getContext:n}){return{focusedValue:t(()=>({defaultValue:e(`defaultFocusedValue`),value:e(`focusedValue`),isEqual:Wt,hash:e=>e.toString(),sync:!0,onChange(t){let r=n(),i=r.get(`view`),a=r.get(`value`),o=ss(a,e);e(`onFocusChange`)?.({value:a,valueAsString:o,view:i,focusedValue:t})}})),value:t(()=>({defaultValue:e(`defaultValue`),value:e(`value`),isEqual:os,hash:e=>e.map(e=>e?.toString()??``).join(`,`),onChange(t){let r=n(),i=ss(t,e);e(`onValueChange`)?.({value:t,valueAsString:i,view:r.get(`view`)})}})),inputValue:t(()=>({defaultValue:``})),activeIndex:t(()=>({defaultValue:0,sync:!0})),hoveredValue:t(()=>({defaultValue:null,isEqual:Wt})),view:t(()=>({defaultValue:e(`defaultView`),value:e(`view`),onChange(t){e(`onViewChange`)?.({view:t})}})),startValue:t(()=>({defaultValue:Ut(e(`focusedValue`)||e(`defaultFocusedValue`),`start`,{months:e(`numOfMonths`)},e(`locale`)),isEqual:Wt,hash:e=>e.toString()})),currentPlacement:t(()=>({defaultValue:void 0})),restoreFocus:t(()=>({defaultValue:!1}))}},computed:{isInteractive:({prop:e})=>!e(`disabled`)&&!e(`readOnly`),visibleDuration:({prop:e})=>({months:e(`numOfMonths`)}),endValue:({context:e,computed:t})=>Yt(e.get(`startValue`),t(`visibleDuration`)),visibleRange:({context:e,computed:t})=>({start:e.get(`startValue`),end:t(`endValue`)}),visibleRangeText:({context:e,prop:t,computed:n})=>Eo({view:e.get(`view`),startValue:e.get(`startValue`),endValue:n(`endValue`),locale:t(`locale`),timeZone:t(`timeZone`),selectionMode:t(`selectionMode`)}),isPrevVisibleRangeValid:({context:e,prop:t})=>!Kt(e.get(`startValue`),t(`min`),t(`max`)),isNextVisibleRangeValid:({prop:e,computed:t})=>!qt(t(`endValue`),e(`min`),e(`max`)),valueAsString:({context:e,prop:t})=>ss(e.get(`value`),t)},effects:[`setupLiveRegion`],watch({track:e,prop:t,context:n,action:r,computed:i}){e([()=>t(`locale`)],()=>{r([`setStartValue`,`syncInputElement`])}),e([()=>n.hash(`focusedValue`)],()=>{r([`setStartValue`,`focusActiveCellIfNeeded`,`setHoveredValueIfKeyboard`])}),e([()=>n.hash(`startValue`)],()=>{r([`syncMonthSelectElement`,`syncYearSelectElement`,`invokeOnVisibleRangeChange`])}),e([()=>n.get(`inputValue`)],()=>{r([`syncInputValue`])}),e([()=>n.hash(`value`)],()=>{r([`syncInputElement`])}),e([()=>i(`valueAsString`).toString()],()=>{r([`announceValueText`])}),e([()=>n.get(`view`)],()=>{r([`focusActiveCell`])}),e([()=>t(`open`)],()=>{r([`toggleVisibility`])})},on:{"VALUE.SET":{actions:[`setDateValue`,`setFocusedDate`]},"VIEW.SET":{actions:[`setView`]},"FOCUS.SET":{actions:[`setFocusedDate`]},"VALUE.CLEAR":{actions:[`clearDateValue`,`clearFocusedDate`,`setActiveIndexToStart`,`clearHoveredDate`,`focusFirstInputElement`]},"INPUT.CHANGE":[{guard:`isInputValueEmpty`,actions:[`setInputValue`,`clearDateValue`,`clearFocusedDate`]},{actions:[`setInputValue`,`focusParsedDate`]}],"INPUT.ENTER":{actions:[`focusParsedDate`,`selectFocusedDate`]},"INPUT.FOCUS":{actions:[`setActiveIndex`]},"INPUT.BLUR":[{guard:`shouldFixOnBlur`,actions:[`setActiveIndexToStart`,`selectParsedDate`]},{actions:[`setActiveIndexToStart`]}],"PRESET.CLICK":[{guard:`isOpenControlled`,actions:[`setDateValue`,`setFocusedDate`,`invokeOnClose`]},{target:`focused`,actions:[`setDateValue`,`setFocusedDate`,`focusInputElement`]}],"GOTO.NEXT":[{guard:`isYearView`,actions:[`focusNextDecade`,`announceVisibleRange`]},{guard:`isMonthView`,actions:[`focusNextYear`,`announceVisibleRange`]},{actions:[`focusNextPage`]}],"GOTO.PREV":[{guard:`isYearView`,actions:[`focusPreviousDecade`,`announceVisibleRange`]},{guard:`isMonthView`,actions:[`focusPreviousYear`,`announceVisibleRange`]},{actions:[`focusPreviousPage`]}]},states:{idle:{tags:[`closed`],on:{"CONTROLLED.OPEN":{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`]},"TRIGGER.CLICK":[{guard:`isOpenControlled`,actions:[`invokeOnOpen`]},{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`,`invokeOnOpen`]}],OPEN:[{guard:`isOpenControlled`,actions:[`invokeOnOpen`]},{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`,`invokeOnOpen`]}]}},focused:{tags:[`closed`],on:{"CONTROLLED.OPEN":{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`]},"TRIGGER.CLICK":[{guard:`isOpenControlled`,actions:[`invokeOnOpen`]},{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`,`invokeOnOpen`]}],OPEN:[{guard:`isOpenControlled`,actions:[`invokeOnOpen`]},{target:`open`,actions:[`resetView`,`focusFirstSelectedDate`,`focusActiveCell`,`invokeOnOpen`]}]}},open:{tags:[`open`],entry:[`resumeRangeSelection`],effects:[`trackDismissableElement`,`trackPositioning`],exit:[`clearHoveredDate`],on:{"CONTROLLED.CLOSE":[{guard:X(`shouldRestoreFocus`,`isInteractOutsideEvent`),target:`focused`,actions:[`focusTriggerElement`]},{guard:`shouldRestoreFocus`,target:`focused`,actions:[`focusInputElement`]},{target:`idle`}],"CELL.CLICK":[{guard:`isAboveMinView`,actions:[`setFocusedValueForView`,`setPreviousView`]},{guard:X(`isRangePicker`,`hasSelectedRange`),actions:[`setActiveIndexToStart`,`resetSelection`,`setActiveIndexToEnd`]},{guard:X(`isRangePicker`,`isSelectingEndDate`,`closeOnSelect`,`isOpenControlled`),actions:[`setFocusedDate`,`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`,`invokeOnClose`,`setRestoreFocus`]},{guard:X(`isRangePicker`,`isSelectingEndDate`,`closeOnSelect`),target:`focused`,actions:[`setFocusedDate`,`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`,`invokeOnClose`,`focusInputElement`]},{guard:X(`isRangePicker`,`isSelectingEndDate`),actions:[`setFocusedDate`,`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`]},{guard:`isRangePicker`,actions:[`setFocusedDate`,`setSelectedDate`,`setActiveIndexToEnd`]},{guard:X(`isMultiPicker`,`canSelectDate`),actions:[`setFocusedDate`,`toggleSelectedDate`]},{guard:`isMultiPicker`,actions:[`setFocusedDate`]},{guard:X(`closeOnSelect`,`isOpenControlled`),actions:[`setFocusedDate`,`setSelectedDate`,`invokeOnClose`]},{guard:`closeOnSelect`,target:`focused`,actions:[`setFocusedDate`,`setSelectedDate`,`invokeOnClose`,`focusInputElement`]},{actions:[`setFocusedDate`,`setSelectedDate`]}],"CELL.POINTER_MOVE":[{guard:X(`isRangePicker`,`isSelectingEndDate`,`isDayPointerMoveOutsideVisibleMonth`),actions:[`setHoveredDate`]},{guard:X(`isRangePicker`,`isSelectingEndDate`),actions:[`setHoveredDate`,`setFocusedDate`]}],"TABLE.POINTER_LEAVE":{guard:`isRangePicker`,actions:[`clearHoveredDate`]},"TABLE.POINTER_DOWN":{actions:[`disableTextSelection`]},"TABLE.POINTER_UP":{actions:[`enableTextSelection`]},"TABLE.ESCAPE":[{guard:`isOpenControlled`,actions:[`focusFirstSelectedDate`,`invokeOnClose`]},{target:`focused`,actions:[`focusFirstSelectedDate`,`invokeOnClose`,`focusTriggerElement`]}],"TABLE.ENTER":[{guard:`isAboveMinView`,actions:[`setPreviousView`]},{guard:X(`isRangePicker`,`hasSelectedRange`),actions:[`setActiveIndexToStart`,`resetSelection`,`setActiveIndexToEnd`,`focusNextDay`]},{guard:X(`isRangePicker`,`isSelectingEndDate`,`closeOnSelect`,`isOpenControlled`),actions:[`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`,`invokeOnClose`]},{guard:X(`isRangePicker`,`isSelectingEndDate`,`closeOnSelect`),target:`focused`,actions:[`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`,`invokeOnClose`,`focusInputElement`]},{guard:X(`isRangePicker`,`isSelectingEndDate`),actions:[`setSelectedDate`,`setActiveIndexToStart`,`clearHoveredDate`]},{guard:`isRangePicker`,actions:[`setSelectedDate`,`setActiveIndexToEnd`,`focusNextDay`]},{guard:X(`isMultiPicker`,`canSelectDate`),actions:[`toggleSelectedDate`]},{guard:`isMultiPicker`},{guard:X(`closeOnSelect`,`isOpenControlled`),actions:[`selectFocusedDate`,`invokeOnClose`]},{guard:`closeOnSelect`,target:`focused`,actions:[`selectFocusedDate`,`invokeOnClose`,`focusInputElement`]},{actions:[`selectFocusedDate`]}],"TABLE.ARROW_RIGHT":[{guard:`isMonthView`,actions:[`focusNextMonth`]},{guard:`isYearView`,actions:[`focusNextYear`]},{actions:[`focusNextDay`,`setHoveredDate`]}],"TABLE.ARROW_LEFT":[{guard:`isMonthView`,actions:[`focusPreviousMonth`]},{guard:`isYearView`,actions:[`focusPreviousYear`]},{actions:[`focusPreviousDay`]}],"TABLE.ARROW_UP":[{guard:`isMonthView`,actions:[`focusPreviousMonthColumn`]},{guard:`isYearView`,actions:[`focusPreviousYearColumn`]},{actions:[`focusPreviousWeek`]}],"TABLE.ARROW_DOWN":[{guard:`isMonthView`,actions:[`focusNextMonthColumn`]},{guard:`isYearView`,actions:[`focusNextYearColumn`]},{actions:[`focusNextWeek`]}],"TABLE.PAGE_UP":{actions:[`focusPreviousSection`]},"TABLE.PAGE_DOWN":{actions:[`focusNextSection`]},"TABLE.HOME":[{guard:`isMonthView`,actions:[`focusFirstMonth`]},{guard:`isYearView`,actions:[`focusFirstYear`]},{actions:[`focusSectionStart`]}],"TABLE.END":[{guard:`isMonthView`,actions:[`focusLastMonth`]},{guard:`isYearView`,actions:[`focusLastYear`]},{actions:[`focusSectionEnd`]}],"TRIGGER.CLICK":[{guard:`isOpenControlled`,actions:[`invokeOnClose`]},{target:`focused`,actions:[`invokeOnClose`]}],"VIEW.TOGGLE":{actions:[`setNextView`]},INTERACT_OUTSIDE:[{guard:`isOpenControlled`,actions:[`setActiveIndexToStart`,`invokeOnClose`]},{guard:`shouldRestoreFocus`,target:`focused`,actions:[`setActiveIndexToStart`,`invokeOnClose`,`focusTriggerElement`]},{target:`idle`,actions:[`setActiveIndexToStart`,`invokeOnClose`]}],CLOSE:[{guard:`isOpenControlled`,actions:[`setActiveIndexToStart`,`invokeOnClose`]},{target:`idle`,actions:[`setActiveIndexToStart`,`invokeOnClose`]}]}}},implementations:{guards:{isAboveMinView:({context:e,prop:t})=>bo(e.get(`view`),t(`minView`)),isDayView:({context:e,event:t})=>(t.view||e.get(`view`))===`day`,isMonthView:({context:e,event:t})=>(t.view||e.get(`view`))===`month`,isYearView:({context:e,event:t})=>(t.view||e.get(`view`))===`year`,isRangePicker:({prop:e})=>e(`selectionMode`)===`range`,hasSelectedRange:({context:e})=>e.get(`value`).length===2,isMultiPicker:({prop:e})=>e(`selectionMode`)===`multiple`,canSelectDate:e=>{let{context:t,prop:n,event:r}=e,i=n(`maxSelectedDates`);if(i==null)return!0;let a=t.get(`value`),o=ls(e,r.value??t.get(`focusedValue`));return a.some(e=>Wt(e,o))?!0:a.length<i},shouldRestoreFocus:({context:e})=>!!e.get(`restoreFocus`),isSelectingEndDate:({context:e})=>e.get(`activeIndex`)===1,closeOnSelect:({prop:e})=>!!e(`closeOnSelect`),isOpenControlled:({prop:e})=>e(`open`)!=null||!!e(`inline`),isInteractOutsideEvent:({event:e})=>e.previousEvent?.type===`INTERACT_OUTSIDE`,isInputValueEmpty:({event:e})=>e.value.trim()===``,shouldFixOnBlur:({event:e})=>!!e.fixOnBlur,isDayPointerMoveOutsideVisibleMonth:({event:e})=>e.cell===`day`&&e.outsideRange===!0},effects:{trackPositioning({context:e,prop:t,scope:n}){return t(`inline`)?void 0:(e.get(`currentPlacement`)||e.set(`currentPlacement`,t(`positioning`).placement),ca(Pa(n),()=>Na(n),{...t(`positioning`),defer:!0,onComplete(t){e.set(`currentPlacement`,t.placement)}}))},setupLiveRegion({scope:e,refs:t}){let n=e.getDoc();return t.set(`announcer`,as({level:`assertive`,document:n})),()=>t.get(`announcer`)?.destroy?.()},trackDismissableElement({scope:e,send:t,context:n,prop:r}){return r(`inline`)?void 0:ts(()=>Oa(e),{type:`popover`,defer:!0,layerStyleTargets:[()=>Na(e)],exclude:[...ka(e),Da(e),Ma(e)],onInteractOutside(e){n.set(`restoreFocus`,!e.detail.focusable)},onDismiss(){t({type:`INTERACT_OUTSIDE`})},onEscapeKeyDown(e){e.preventDefault(),t({type:`TABLE.ESCAPE`,src:`dismissable`})}})}},actions:{setNextView({context:e,prop:t}){let n=So(e.get(`view`),t(`minView`),t(`maxView`));e.set(`view`,n)},setPreviousView({context:e,prop:t}){let n=Co(e.get(`view`),t(`minView`),t(`maxView`));e.set(`view`,n)},setView({context:e,event:t}){e.set(`view`,t.view)},setRestoreFocus({context:e}){e.set(`restoreFocus`,!0)},announceValueText({context:e,prop:t,refs:n}){let r=e.get(`value`),i=t(`locale`),a=t(`timeZone`),o;if(t(`selectionMode`)===`range`){let[e,t]=r;o=e&&t?en(e,t,i,a):e?en(e,null,i,a):t?en(t,null,i,a):``}else o=r.map(e=>en(e,null,i,a)).filter(Boolean).join(`,`);n.get(`announcer`)?.announce(o,3e3)},announceVisibleRange({computed:e,refs:t}){let{formatted:n}=e(`visibleRangeText`);t.get(`announcer`)?.announce(n)},disableTextSelection({scope:e}){Kr({target:Oa(e),doc:e.getDoc()})},enableTextSelection({scope:e}){Gr({doc:e.getDoc(),target:Oa(e)})},focusFirstSelectedDate(e){let{context:t}=e;t.get(`value`).length&&Z(e,t.get(`value`)[0])},syncInputElement({scope:e,computed:t}){K(()=>{ka(e).forEach((e,n)=>{Mr(e,t(`valueAsString`)[n]||``)})})},setFocusedDate(e){let{event:t}=e;Z(e,Array.isArray(t.value)?t.value[0]:t.value)},setFocusedValueForView(e){let{context:t,event:n}=e;Z(e,t.get(`focusedValue`).set({[t.get(`view`)]:n.value}))},focusNextMonth(e){let{context:t}=e;Z(e,t.get(`focusedValue`).add({months:1}))},focusPreviousMonth(e){let{context:t}=e;Z(e,t.get(`focusedValue`).subtract({months:1}))},setDateValue({context:e,event:t,prop:n}){if(!Array.isArray(t.value))return;let r=t.value.map(e=>V(e,n(`min`),n(`max`)));e.set(`value`,r)},clearDateValue({context:e}){e.set(`value`,[])},setSelectedDate(e){let{context:t,event:n}=e,r=Array.from(t.get(`value`)),i=t.get(`activeIndex`),a=r[i];r[i]=us(a,ls(e,n.value??t.get(`focusedValue`))),t.set(`value`,lo(r))},resetSelection(e){let{context:t,event:n}=e,r=t.get(`value`)[0],i=ls(e,n.value??t.get(`focusedValue`));t.set(`value`,[us(r,i)])},toggleSelectedDate(e){let{context:t,event:n}=e,r=ls(e,n.value??t.get(`focusedValue`)),i=t.get(`value`),a=i.findIndex(e=>Wt(e,r));if(a===-1){let e=[...i,r];t.set(`value`,fo(e))}else{let e=Array.from(i);e.splice(a,1),t.set(`value`,fo(e))}},setHoveredDate({context:e,event:t}){e.set(`hoveredValue`,t.value)},clearHoveredDate({context:e}){e.set(`hoveredValue`,null)},selectFocusedDate({context:e,computed:t}){let n=Array.from(e.get(`value`)),r=e.get(`activeIndex`),i=n[r];n[r]=us(i,e.get(`focusedValue`).copy()),e.set(`value`,lo(n));let a=t(`valueAsString`);e.set(`inputValue`,a[r])},focusPreviousDay(e){let{context:t}=e;Z(e,t.get(`focusedValue`).subtract({days:1}))},focusNextDay(e){let{context:t}=e;Z(e,t.get(`focusedValue`).add({days:1}))},focusPreviousWeek(e){let{context:t}=e;Z(e,t.get(`focusedValue`).subtract({weeks:1}))},focusNextWeek(e){let{context:t}=e;Z(e,t.get(`focusedValue`).add({weeks:1}))},focusNextPage(e){let{context:t,computed:n,prop:r}=e;ds(e,bn(t.get(`focusedValue`),t.get(`startValue`),n(`visibleDuration`),r(`locale`),r(`min`),r(`max`)))},focusPreviousPage(e){let{context:t,computed:n,prop:r}=e;ds(e,xn(t.get(`focusedValue`),t.get(`startValue`),n(`visibleDuration`),r(`locale`),r(`min`),r(`max`)))},focusSectionStart(e){let{context:t}=e;Z(e,t.get(`startValue`).copy())},focusSectionEnd(e){let{computed:t}=e;Z(e,t(`endValue`).copy())},focusNextSection(e){let{context:t,event:n,computed:r,prop:i}=e,a=Sn(t.get(`focusedValue`),t.get(`startValue`),n.larger,r(`visibleDuration`),i(`locale`),i(`min`),i(`max`));a&&ds(e,a)},focusPreviousSection(e){let{context:t,event:n,computed:r,prop:i}=e,a=Cn(t.get(`focusedValue`),t.get(`startValue`),n.larger,r(`visibleDuration`),i(`locale`),i(`min`),i(`max`));a&&ds(e,a)},focusNextYear(e){let{context:t}=e;Z(e,t.get(`focusedValue`).add({years:1}))},focusPreviousYear(e){let{context:t}=e;Z(e,t.get(`focusedValue`).subtract({years:1}))},focusNextDecade(e){let{context:t}=e;Z(e,t.get(`focusedValue`).add({years:10}))},focusPreviousDecade(e){let{context:t}=e;Z(e,t.get(`focusedValue`).subtract({years:10}))},clearFocusedDate(e){let{context:t,prop:n}=e,r=t.get(`focusedValue`).calendar;Z(e,vn(n(`timeZone`),r))},focusPreviousMonthColumn(e){let{context:t,event:n}=e;Z(e,t.get(`focusedValue`).subtract({months:n.columns}))},focusNextMonthColumn(e){let{context:t,event:n}=e;Z(e,t.get(`focusedValue`).add({months:n.columns}))},focusPreviousYearColumn(e){let{context:t,event:n}=e;Z(e,t.get(`focusedValue`).subtract({years:n.columns}))},focusNextYearColumn(e){let{context:t,event:n}=e;Z(e,t.get(`focusedValue`).add({years:n.columns}))},focusFirstMonth(e){let{context:t}=e,n=t.get(`focusedValue`),r=n.calendar.getMinimumMonthInYear?.(n)??1;Z(e,n.set({month:r}))},focusLastMonth(e){let{context:t}=e,n=t.get(`focusedValue`),r=n.calendar.getMonthsInYear(n);Z(e,n.set({month:r}))},focusFirstYear(e){let{context:t}=e,n=_n(t.get(`focusedValue`).year);Z(e,t.get(`focusedValue`).set({year:n[0]}))},focusLastYear(e){let{context:t}=e,n=_n(t.get(`focusedValue`).year);Z(e,t.get(`focusedValue`).set({year:n[n.length-1]}))},setActiveIndex({context:e,event:t}){e.set(`activeIndex`,t.index)},setActiveIndexToEnd({context:e}){e.set(`activeIndex`,1)},setActiveIndexToStart({context:e}){e.set(`activeIndex`,0)},resumeRangeSelection({context:e,prop:t}){t(`selectionMode`)===`range`&&e.get(`value`).length===1&&e.set(`activeIndex`,1)},focusActiveCell({scope:e,context:t,event:n}){n.src!==`input.click`&&K(()=>{Ea(e,t.get(`view`))?.focus({preventScroll:!0})})},focusActiveCellIfNeeded({scope:e,context:t,event:n}){n.focus&&K(()=>{Ea(e,t.get(`view`))?.focus({preventScroll:!0})})},setHoveredValueIfKeyboard({context:e,event:t,prop:n}){!(t.type.startsWith(`TABLE.ARROW`)||[`TABLE.ENTER`,`TABLE.HOME`,`TABLE.END`,`TABLE.PAGE_UP`,`TABLE.PAGE_DOWN`].includes(t.type))||n(`selectionMode`)!==`range`||e.get(`activeIndex`)===0||e.set(`hoveredValue`,e.get(`focusedValue`).copy())},focusTriggerElement({scope:e}){K(()=>{Da(e)?.focus({preventScroll:!0})})},focusFirstInputElement({scope:e,event:t}){t.focus!==!1&&K(()=>{let[t]=ka(e);(t??Da(e))?.focus({preventScroll:!0})})},focusInputElement({scope:e}){K(()=>{let t=ka(e);if(t.length===0){Da(e)?.focus({preventScroll:!0});return}let n=t.findLastIndex(e=>e.value!==``),r=t[Math.max(n,0)];r?.focus({preventScroll:!0}),r?.setSelectionRange(r.value.length,r.value.length)})},syncMonthSelectElement({scope:e,context:t}){Mr(ja(e),t.get(`startValue`).month.toString())},syncYearSelectElement({scope:e,context:t}){Mr(Aa(e),t.get(`startValue`).year.toString())},setInputValue({context:e,event:t}){e.get(`activeIndex`)===t.index&&e.set(`inputValue`,t.value)},syncInputValue({scope:e,context:t,event:n}){queueMicrotask(()=>{Mr(ka(e)[n.index??t.get(`activeIndex`)],t.get(`inputValue`))})},focusParsedDate(e){let{event:t,prop:n}=e;if(t.index==null)return;let r=n(`parse`)(t.value,{locale:n(`locale`),timeZone:n(`timeZone`)});!r||!go(r)||Z(e,r)},selectParsedDate({context:e,event:t,prop:n}){if(t.index==null)return;let r=n(`parse`)(t.value,{locale:n(`locale`),timeZone:n(`timeZone`)});if((!r||!go(r))&&t.value&&(r=e.get(`focusedValue`).copy()),!r)return;r=V(r,n(`min`),n(`max`));let i=Array.from(e.get(`value`));i[t.index]=us(i[t.index],r);let a=lo(i);e.set(`value`,a);let o=ss(a,n);e.set(`inputValue`,o[t.index])},resetView({context:e}){e.set(`view`,e.initial(`view`))},setStartValue({context:e,computed:t,prop:n}){let r=e.get(`focusedValue`);if(!H(r,e.get(`startValue`),t(`endValue`)))return;let i=Ut(r,`start`,{months:n(`numOfMonths`)},n(`locale`));e.set(`startValue`,i)},invokeOnOpen({prop:e,context:t}){e(`inline`)||e(`onOpenChange`)?.({open:!0,value:t.get(`value`)})},invokeOnClose({prop:e,context:t}){e(`inline`)||e(`onOpenChange`)?.({open:!1,value:t.get(`value`)})},invokeOnVisibleRangeChange({prop:e,context:t,computed:n}){e(`onVisibleRangeChange`)?.({view:t.get(`view`),visibleRange:n(`visibleRange`)})},toggleVisibility({event:e,send:t,prop:n}){t({type:n(`open`)?`CONTROLLED.OPEN`:`CONTROLLED.CLOSE`,previousEvent:e})}}}}),ls=(e,t)=>{let{context:n,prop:r}=e,i=n.get(`view`),a=typeof t==`number`?n.get(`focusedValue`).set({[i]:t}):t;return To(e=>{xo(e,r(`minView`))&&(a=a.set({[e]:+(e===`day`)}))}),a},us=(e,t)=>{if(!e||!(`hour`in e))return t;let n=`timeZone`in e,r=t;return`hour`in t||(r=n?Ve(F(t),e.timeZone):F(t)),r.set({hour:e.hour,minute:e.minute,second:e.second,millisecond:e.millisecond})};function Z(e,t){let{context:n,prop:r,computed:i}=e;if(!t)return;let a=ls(e,t);if(Wt(n.get(`focusedValue`),a))return;let o=yn(i(`visibleDuration`),r(`locale`),r(`min`),r(`max`))({focusedDate:a,startDate:n.get(`startValue`)});n.set(`startValue`,o.startDate),n.set(`focusedValue`,o.focusedDate)}function ds(e,t){let{context:n}=e;n.set(`startValue`,t.startDate),!Wt(n.get(`focusedValue`),t.focusedDate)&&n.set(`focusedValue`,t.focusedDate)}function fs(e){return new Proxy({},{get(t,n){return n===`style`?t=>e({style:t}).style:e}})}var Q=e(t(),1),ps=globalThis.document===void 0?Q.useEffect:Q.useLayoutEffect,ms=e(n(),1);function hs(e){let t=e().value??e().defaultValue,n=e().isEqual??Object.is,[r]=(0,Q.useState)(t),[i,a]=(0,Q.useState)(r),o=e().value!==void 0,s=(0,Q.useRef)(i);s.current=o?e().value:i;let c=(0,Q.useRef)(s.current);ps(()=>{c.current=s.current},[i,e().value]);let l=t=>{let r=c.current,i=si(t)?t(r):t;e().debug&&console.log(`[bindable > ${e().debug}] setValue`,{next:i,prev:r}),o||a(i),n(i,r)||e().onChange?.(i,r)};function u(){return o?e().value:i}return{initial:r,ref:s,get:u,set(t){(e().sync?ms.flushSync:_i)(()=>l(t))},invoke(t,n){e().onChange?.(t,n)},hash(t){return e().hash?.(t)??String(t)}}}hs.cleanup=e=>{(0,Q.useEffect)(()=>e,[])},hs.ref=e=>{let t=(0,Q.useRef)(e);return{get:()=>t.current,set:e=>{t.current=e}}};function gs(e){let t=(0,Q.useRef)(void 0);return t.current===void 0&&(t.current=e()),t.current}function _s(e){let t=(0,Q.useRef)(e);return t.current=e,(0,Q.useMemo)(()=>((...e)=>t.current(...e)),[])}function vs(e){let t=(0,Q.useRef)(e);return gs(()=>({get(e){return t.current[e]},set(e,n){t.current[e]=n}}))}var ys=(e,t)=>{let n=(0,Q.useRef)(!1),r=(0,Q.useRef)(!1);(0,Q.useEffect)(()=>{if(n.current&&r.current)return t();r.current=!0},[...(e??[]).map(e=>typeof e==`function`?e():e)]),(0,Q.useEffect)(()=>(n.current=!0,()=>{n.current=!1}),[])};function bs(e,t={}){let n=(0,Q.useMemo)(()=>{let{id:e,ids:n,getRootNode:r}=t;return co({id:e,ids:n,getRootNode:r})},[t]),r=(...t)=>{e.debug&&console.log(...t)},i=Ss(e.props?.({props:Mi(t),scope:n})??t),a=e.context?.({prop:i,bindable:hs,scope:n,flush:Cs,getContext(){return s},getComputed(){return g},getRefs(){return m},getEvent(){return f()}}),o=xs(a),s=gs(()=>({get(e){return o.current?.[e].ref.current},set(e,t){o.current?.[e].set(t)},initial(e){return o.current?.[e].initial},hash(e){let t=o.current?.[e].get();return o.current?.[e].hash(t)}})),c=(0,Q.useRef)(new Map),l=(0,Q.useRef)(null),u=(0,Q.useRef)(null),d=(0,Q.useRef)({type:``}),f=()=>({...d.current,current(){return d.current},previous(){return u.current}}),p=()=>({...S,matches(...e){return e.some(e=>no(S.ref.current,e))},hasTag(t){return ro(e,S.ref.current,t)}}),m=vs(e.refs?.({prop:i,context:s})??{}),h=_s(t=>{queueMicrotask(()=>{if(w.current!==oo.Started)return;u.current=d.current,d.current=t;let n=E(),{transitions:i,source:a}=eo(e,n,t.type),o=x(i);if(!o)return;l.current=o;let s=$a(e,o.target??n,a);r(`transition`,t.type,o.target||n,`(${o.actions})`),s===n?o.reenter?S.invoke(n,n):v(o.actions??[]):(0,ms.flushSync)(()=>S.set(s))})}),g=_s(t=>{Fi(e.computed,()=>`[zag-js] No computed object found on machine`);let r=e.computed[t];return r({context:s,event:f(),prop:i,refs:m,scope:n,computed:g})}),_=()=>({state:p(),context:s,event:f(),prop:i,send:h,action:v,guard:y,track:ys,refs:m,computed:g,flush:Cs,scope:n,choose:x}),v=t=>{let n=si(t)?t(_()):t;if(!n)return;let r=n.map(t=>{let n=e.implementations?.actions?.[t];return n||Ni(`[zag-js] No implementation found for action "${JSON.stringify(t)}"`),n});for(let e of r)e?.(_())},y=t=>{if(si(t))return t(_());let n=e.implementations?.guards?.[t];return n||Ni(`[zag-js] No implementation found for guard "${JSON.stringify(t)}"`),n?.(_())},b=t=>{let n=si(t)?t(_()):t;if(!n)return;let r=n.map(t=>{let n=e.implementations?.effects?.[t];return n||Ni(`[zag-js] No implementation found for effect "${JSON.stringify(t)}"`),n}),i=[];for(let e of r){let t=e?.(_());t&&i.push(t)}return()=>i.forEach(e=>e?.())},x=e=>$r(e).find(e=>{let t=!e.guard;return oi(e.guard)?t=!!y(e.guard):si(e.guard)&&(t=e.guard(_())),t}),S=hs(()=>({defaultValue:$a(e,e.initialState({prop:i})),onChange(t,n){let{exiting:r,entering:i}=to(e,n,t,l.current?.reenter);if(r.forEach(e=>{c.current.get(e.path)?.(),c.current.delete(e.path)}),r.forEach(e=>{v(e.state?.exit)}),v(l.current?.actions),i.forEach(e=>{let t=b(e.state?.effects);if(t){let n=c.current.get(e.path);c.current.set(e.path,n?yi(n,t):t)}}),n===`__init__`){v(e.entry);let t=b(e.effects);if(t){let e=c.current.get(so);c.current.set(so,e?yi(e,t):t)}}i.forEach(e=>{v(e.state?.entry)})}})),C=(0,Q.useRef)(void 0),w=(0,Q.useRef)(oo.NotStarted),T=_s(()=>w.current);ps(()=>{queueMicrotask(()=>{let e=w.current===oo.Started;w.current=oo.Started,r(e?`rehydrating...`:`initializing...`);let t=C.current??S.initial;S.invoke(t,e?S.get():so)});let t=c.current;return()=>{let n=E();r(`unmounting...`),C.current=n,w.current=oo.Stopped,t.forEach(e=>e?.()),c.current=new Map,l.current=null,queueMicrotask(()=>{v(e.exit),w.current=oo.Stopped})}},[]);let E=()=>`ref`in S?S.ref.current:S.get();return e.watch?.(_()),{state:p(),send:h,context:s,prop:i,scope:n,refs:m,computed:g,event:f(),getStatus:T}}function xs(e){let t=(0,Q.useRef)(e);return t.current=e,t}function Ss(e){let t=xs(e);return _s(function(e){return t.current[e]})}function Cs(e){queueMicrotask(()=>{(0,ms.flushSync)(()=>e())})}var ws=fs(e=>e),Ts=/^(\d{4}-\d{2}-\d{2}T\d{2}:\d{2}(?::\d{2})?)\s+(.+)$/,Es=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}(?::\d{2})?$/,Ds={day:`2-digit`,hour:`2-digit`,hourCycle:`h23`,minute:`2-digit`,month:`2-digit`,year:`numeric`},Os={day:`2-digit`,month:`2-digit`,year:`numeric`};function ks(e){if(typeof e==`string`&&e!==``)try{return ht(e.slice(0,10))}catch{return}}function As(e,t){if(typeof e!=`string`||e===``)return;let n=Ts.exec(e);try{return n?_t(`${Rs(n[1])}[${n[2]}]`):Es.test(e)?Ve(gt(Rs(e)),t):vt(e,t)}catch{return}}function js(e,t){return ks(e)??zs(e,t)}function Ms(e,t,n){return As(e,n)??Bs(e,t,n)}function Ns(e){return e?.toString().slice(0,10)??``}function Ps(e,t){return e?new z(t,{...Os,timeZone:`UTC`}).format(e.toDate(`UTC`)):``}function Fs(e,t){return e?`${Rs((`timeZone`in e?Ue(e,t):Ve(e,t)).toString().replace(/\[.+\]$/,``)).slice(0,19)} ${t}`:``}function Is(e,t,n){if(!e)return``;let r=`timeZone`in e?Ue(e,n):Ve(e,n);return new z(t,{...Ds,timeZone:n}).format(r.toDate())}function Ls(e,t){if(!e)return``;let n=`timeZone`in e?Ue(e,t):Ve(e,t);return[String(n.hour).padStart(2,`0`),String(n.minute).padStart(2,`0`),String(n.second).padStart(2,`0`)].join(`:`)}function Rs(e){return/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}$/.test(e)?`${e}:00`:e}function zs(e,t){let n=Vs(e,t,`date`);if(n)try{return ht(`${n.year.padStart(4,`0`)}-${n.month.padStart(2,`0`)}-${n.day.padStart(2,`0`)}`)}catch{return}}function Bs(e,t,n){let r=Vs(e,t,`date-time`);if(!(!r||!r.hour||!r.minute))try{return Ve(gt(`${r.year.padStart(4,`0`)}-${r.month.padStart(2,`0`)}-${r.day.padStart(2,`0`)}T${r.hour.padStart(2,`0`)}:${r.minute.padStart(2,`0`)}:00`),n)}catch{return}}function Vs(e,t,n){if(typeof e!=`string`||e.trim()===``)return;let r=new z(t,n===`date`?Os:Ds),i=new Date(Date.UTC(2006,10,22,14,30,0)),a=r.formatToParts(i).map(e=>[`day`,`hour`,`minute`,`month`,`year`].includes(e.type)?`(?<${e.type}>\\d{1,4})`:Hs(e.value).replace(/\s+/g,`\\s*`)).join(``),o=RegExp(`^\\s*${a}\\s*$`).exec(e)?.groups;if(!(!o?.day||!o.month||!o.year))return{day:o.day,hour:o.hour,minute:o.minute,month:o.month,year:o.year}}function Hs(e){return e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`)}var $=e(m(),1);function Us({mode:e,controlProps:t,label:n,name:i,testId:a,value:o,min:s,max:l,step:u,disabled:d,readOnly:f,autoFocus:p=!1,tabIndex:m,timezone:b=`UTC`,onChange:x,onBlur:S}){let C=(0,Q.useId)(),{locale:w}=y(),T=(0,Q.useMemo)(()=>[e===`date`?ks(o):As(o,b)].filter(Boolean),[e,b,o]),E=Do(bs(cs,{id:C,name:i,value:T.length>0?T:void 0,min:s?ks(s):void 0,max:l?ks(l):void 0,disabled:d,readOnly:f,locale:w,selectionMode:`single`,timeZone:b,closeOnSelect:e===`date`,format(t){return e===`date`?Ps(t,w):Is(t,w,b)},parse(t){return e===`date`?js(t,w):Ms(t,w,b)},onValueChange(t){let n=t.value[0];x(e===`date`?Ns(n):Fs(n,b))},onOpenChange(e){e.open||S?.()}}),ws),{name:D,onInput:ee,...O}=E.getInputProps(),te=e===`date`?Ns(T[0]):Fs(T[0],b);return(0,$.jsxs)(`div`,{...E.getRootProps(),className:r(`relative`,E.open&&`z-lt-popover`),children:[(0,$.jsx)(`input`,{type:`hidden`,name:i,value:te,"data-test":`${a}-value`}),(0,$.jsxs)(`div`,{...E.getControlProps(),className:`flex gap-2`,children:[(0,$.jsx)(h,{...O,...t,"aria-label":n,autoFocus:p,"data-test":a,disabled:d,onInput:t=>{if(ee?.(t),e!==`date`)return;let n=Ws(t.currentTarget.value);if(!n)return;let r=ks(n);r&&(t.currentTarget.value=n,E.setValue([r]),t.currentTarget.value=Ps(r,w),x(Ns(r)))},readOnly:f,tabIndex:m??void 0}),(0,$.jsx)(g,{...E.getTriggerProps(),"aria-label":`Open ${n||i} calendar`,disabled:d||f,size:`icon`,type:`button`,variant:`secondary`,children:(0,$.jsx)(c,{name:`calendar`,className:`size-lt-icon-md`,"aria-hidden":`true`})})]}),E.open?(0,$.jsx)(`div`,{...E.getPositionerProps(),className:`absolute z-lt-popover mt-2 rounded-lt-sm border border-lt-border bg-lt-popover p-3 text-lt-popover-fg shadow-lt-md`,children:(0,$.jsxs)(`div`,{...E.getContentProps(),className:`grid gap-3`,children:[(0,$.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,$.jsx)(g,{...E.getPrevTriggerProps(),emphasis:`ghost`,size:`icon`,type:`button`,children:(0,$.jsx)(c,{name:`chevron-left`,className:`size-lt-icon-md`,"aria-hidden":`true`})}),(0,$.jsx)(`div`,{...E.getRangeTextProps(),className:`text-sm font-medium text-lt-fg`}),(0,$.jsx)(g,{...E.getNextTriggerProps(),emphasis:`ghost`,size:`icon`,type:`button`,children:(0,$.jsx)(c,{name:`chevron-right`,className:`size-lt-icon-md`,"aria-hidden":`true`})})]}),(0,$.jsxs)(`table`,{...E.getTableProps(),className:`w-full border-collapse text-sm`,children:[(0,$.jsx)(`thead`,{...E.getTableHeadProps(),children:(0,$.jsx)(`tr`,{...E.getTableRowProps(),children:E.weekDays.map(e=>(0,Q.createElement)(`th`,{...E.getTableHeaderProps(),"aria-label":e.long,key:e.value.toString(),className:`size-8 text-center text-xs font-medium text-lt-muted-fg`},e.narrow))})}),(0,$.jsx)(`tbody`,{...E.getTableBodyProps(),children:E.weeks.map((e,t)=>(0,Q.createElement)(`tr`,{...E.getTableRowProps(),key:t},e.map(e=>{let t=E.getDayTableCellState({value:e});return(0,Q.createElement)(`td`,{...E.getDayTableCellProps({value:e}),key:e.toString(),className:`p-0 text-center`},(0,$.jsx)(`button`,{...E.getDayTableCellTriggerProps({value:e}),type:`button`,className:r(`size-8 rounded-lt-sm text-sm text-lt-fg hover:bg-lt-muted`,t.selected&&`bg-lt-primary text-lt-primary-fg`,t.outsideRange&&`text-lt-muted-fg`,t.disabled&&`cursor-not-allowed opacity-40`),children:e.day}))})))})]}),e===`date-time`?(0,$.jsx)(v,{value:_(Ls(T[0],b)),onChange:e=>E.setTime({hour:e.hour,minute:e.minute,second:e.second}),step:u,disabled:d,readOnly:f,testId:`${a}-time`}):null]})}):null]})}function Ws(e){let t=e.replace(/\D/g,``);if(t.length===8)return`${t.slice(0,4)}-${t.slice(4,6)}-${t.slice(6,8)}`}export{Us as DatePickerField};
|