@kimuson/claude-code-viewer 0.6.0 → 0.6.1-beta.2

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.
Files changed (55) hide show
  1. package/README.md +78 -59
  2. package/dist/main.js +5241 -5070
  3. package/dist/main.js.map +4 -4
  4. package/dist/migrations/20260401113328_cute_stryfe/migration.sql +34 -0
  5. package/dist/migrations/20260401113328_cute_stryfe/snapshot.json +315 -0
  6. package/dist/static/apple-touch-icon.png +0 -0
  7. package/dist/static/assets/AuthProvider-BKc7q7ka.js +22 -0
  8. package/dist/static/assets/ProtectedRoute-DvQQEf13.js +1 -0
  9. package/dist/static/assets/card-DGrqtTaC.js +1 -0
  10. package/dist/static/assets/createLucideIcon-BL_meogc.js +1 -0
  11. package/dist/static/assets/dist-CG2L4mx5.js +1 -0
  12. package/dist/static/assets/dist-DiGJ7VFi.js +84 -0
  13. package/dist/static/assets/eye-SsvAY8oF.js +1 -0
  14. package/dist/static/assets/index-CxG0FuBy.css +2 -0
  15. package/dist/static/assets/index-Dmx9Pg1o.js +20 -0
  16. package/dist/static/assets/input-B_6IT1CP.js +1 -0
  17. package/dist/static/assets/label-Cw6sZ5kQ.js +1 -0
  18. package/dist/static/assets/login-pLhQHKNI.js +1 -0
  19. package/dist/static/assets/markdown-parser-vendor-D9j1a-bm.js +29 -0
  20. package/dist/static/assets/messages-C8LOJGiE.js +1 -0
  21. package/dist/static/assets/messages-DdODLCjv.js +1 -0
  22. package/dist/static/assets/messages-V7iLbj1C.js +1 -0
  23. package/dist/static/assets/projects-DdfUtEAX.js +1 -0
  24. package/dist/static/assets/refractor-vendor-B-OUwWR7.js +4 -0
  25. package/dist/static/assets/rolldown-runtime-Dw2cE7zH.js +1 -0
  26. package/dist/static/assets/routes-9aZugTrf.js +1 -0
  27. package/dist/static/assets/session-B8VBnvYB.js +8 -0
  28. package/dist/static/assets/session-BZFmVWep.js +1 -0
  29. package/dist/static/assets/syntax-highlighter-vendor-CwGXx8v4.js +6 -0
  30. package/dist/static/assets/workbox-window.prod.es5-DaBTyiAs.js +2 -0
  31. package/dist/static/assets/xterm-vendor-BrP-ENHg.css +1 -0
  32. package/dist/static/assets/xterm-vendor-DRG2K165.js +36 -0
  33. package/dist/static/favicon.ico +0 -0
  34. package/dist/static/icon-192x192.png +0 -0
  35. package/dist/static/icon-512x512.png +0 -0
  36. package/dist/static/icon-maskable-192x192.png +0 -0
  37. package/dist/static/icon-maskable-512x512.png +0 -0
  38. package/dist/static/index.html +20 -9
  39. package/dist/static/manifest.webmanifest +1 -0
  40. package/dist/static/sw.js +1 -0
  41. package/package.json +79 -66
  42. package/dist/static/assets/ProtectedRoute-KMCDjFpr.js +0 -1
  43. package/dist/static/assets/eye-DsqhY3YQ.js +0 -1
  44. package/dist/static/assets/index-BU5VCG8M.js +0 -1
  45. package/dist/static/assets/index-BUy-hZ_L.js +0 -1
  46. package/dist/static/assets/index-CTq99aOX.css +0 -1
  47. package/dist/static/assets/index-DhqtKAUx.js +0 -101
  48. package/dist/static/assets/label-Bx75JYJV.js +0 -1
  49. package/dist/static/assets/login-CIKB0Oew.js +0 -1
  50. package/dist/static/assets/messages-D_2afeYc.js +0 -1
  51. package/dist/static/assets/messages-lrmcxVGh.js +0 -1
  52. package/dist/static/assets/messages-m0e3n_U5.js +0 -1
  53. package/dist/static/assets/session-D50bOHyT.js +0 -58
  54. package/dist/static/assets/session-DDGTF8rc.css +0 -1
  55. package/dist/static/assets/session-WhX_gGJt.js +0 -1
@@ -0,0 +1,34 @@
1
+ CREATE TABLE `projects` (
2
+ `id` text PRIMARY KEY NOT NULL,
3
+ `name` text,
4
+ `path` text,
5
+ `session_count` integer DEFAULT 0 NOT NULL,
6
+ `dir_mtime_ms` integer NOT NULL,
7
+ `synced_at` integer NOT NULL
8
+ );
9
+ --> statement-breakpoint
10
+ CREATE TABLE `sessions` (
11
+ `id` text PRIMARY KEY NOT NULL,
12
+ `project_id` text NOT NULL,
13
+ `file_path` text NOT NULL,
14
+ `message_count` integer DEFAULT 0 NOT NULL,
15
+ `first_user_message_json` text,
16
+ `custom_title` text,
17
+ `total_cost_usd` real DEFAULT 0 NOT NULL,
18
+ `cost_breakdown_json` text,
19
+ `token_usage_json` text,
20
+ `model_name` text,
21
+ `pr_links_json` text,
22
+ `file_mtime_ms` integer NOT NULL,
23
+ `last_modified_at` text NOT NULL,
24
+ `synced_at` integer NOT NULL,
25
+ FOREIGN KEY (`project_id`) REFERENCES `projects`(`id`) ON UPDATE no action ON DELETE cascade
26
+ );
27
+ --> statement-breakpoint
28
+ CREATE UNIQUE INDEX `sessions_file_path_unique` ON `sessions` (`file_path`);--> statement-breakpoint
29
+ CREATE INDEX `idx_sessions_project_id` ON `sessions` (`project_id`);--> statement-breakpoint
30
+ CREATE INDEX `idx_sessions_file_mtime` ON `sessions` (`file_mtime_ms`);--> statement-breakpoint
31
+ CREATE TABLE `sync_state` (
32
+ `key` text PRIMARY KEY NOT NULL,
33
+ `value` text NOT NULL
34
+ );
@@ -0,0 +1,315 @@
1
+ {
2
+ "dialect": "sqlite",
3
+ "id": "382a3f92-e566-45ff-af50-939de0afe931",
4
+ "prevIds": ["00000000-0000-0000-0000-000000000000"],
5
+ "version": "7",
6
+ "ddl": [
7
+ {
8
+ "name": "projects",
9
+ "entityType": "tables"
10
+ },
11
+ {
12
+ "type": "text",
13
+ "notNull": false,
14
+ "autoincrement": false,
15
+ "default": null,
16
+ "generated": null,
17
+ "name": "id",
18
+ "table": "projects",
19
+ "entityType": "columns"
20
+ },
21
+ {
22
+ "columns": ["id"],
23
+ "nameExplicit": false,
24
+ "name": "projects_pk",
25
+ "table": "projects",
26
+ "entityType": "pks"
27
+ },
28
+ {
29
+ "type": "text",
30
+ "notNull": false,
31
+ "autoincrement": false,
32
+ "default": null,
33
+ "generated": null,
34
+ "name": "name",
35
+ "table": "projects",
36
+ "entityType": "columns"
37
+ },
38
+ {
39
+ "type": "text",
40
+ "notNull": false,
41
+ "autoincrement": false,
42
+ "default": null,
43
+ "generated": null,
44
+ "name": "path",
45
+ "table": "projects",
46
+ "entityType": "columns"
47
+ },
48
+ {
49
+ "type": "integer",
50
+ "notNull": true,
51
+ "autoincrement": false,
52
+ "default": "0",
53
+ "generated": null,
54
+ "name": "session_count",
55
+ "table": "projects",
56
+ "entityType": "columns"
57
+ },
58
+ {
59
+ "type": "integer",
60
+ "notNull": true,
61
+ "autoincrement": false,
62
+ "default": null,
63
+ "generated": null,
64
+ "name": "dir_mtime_ms",
65
+ "table": "projects",
66
+ "entityType": "columns"
67
+ },
68
+ {
69
+ "type": "integer",
70
+ "notNull": true,
71
+ "autoincrement": false,
72
+ "default": null,
73
+ "generated": null,
74
+ "name": "synced_at",
75
+ "table": "projects",
76
+ "entityType": "columns"
77
+ },
78
+ {
79
+ "name": "sessions",
80
+ "entityType": "tables"
81
+ },
82
+ {
83
+ "type": "text",
84
+ "notNull": false,
85
+ "autoincrement": false,
86
+ "default": null,
87
+ "generated": null,
88
+ "name": "id",
89
+ "table": "sessions",
90
+ "entityType": "columns"
91
+ },
92
+ {
93
+ "columns": ["id"],
94
+ "nameExplicit": false,
95
+ "name": "sessions_pk",
96
+ "table": "sessions",
97
+ "entityType": "pks"
98
+ },
99
+ {
100
+ "type": "text",
101
+ "notNull": true,
102
+ "autoincrement": false,
103
+ "default": null,
104
+ "generated": null,
105
+ "name": "project_id",
106
+ "table": "sessions",
107
+ "entityType": "columns"
108
+ },
109
+ {
110
+ "type": "text",
111
+ "notNull": true,
112
+ "autoincrement": false,
113
+ "default": null,
114
+ "generated": null,
115
+ "name": "file_path",
116
+ "table": "sessions",
117
+ "entityType": "columns"
118
+ },
119
+ {
120
+ "type": "integer",
121
+ "notNull": true,
122
+ "autoincrement": false,
123
+ "default": "0",
124
+ "generated": null,
125
+ "name": "message_count",
126
+ "table": "sessions",
127
+ "entityType": "columns"
128
+ },
129
+ {
130
+ "type": "text",
131
+ "notNull": false,
132
+ "autoincrement": false,
133
+ "default": null,
134
+ "generated": null,
135
+ "name": "first_user_message_json",
136
+ "table": "sessions",
137
+ "entityType": "columns"
138
+ },
139
+ {
140
+ "type": "text",
141
+ "notNull": false,
142
+ "autoincrement": false,
143
+ "default": null,
144
+ "generated": null,
145
+ "name": "custom_title",
146
+ "table": "sessions",
147
+ "entityType": "columns"
148
+ },
149
+ {
150
+ "type": "real",
151
+ "notNull": true,
152
+ "autoincrement": false,
153
+ "default": "0",
154
+ "generated": null,
155
+ "name": "total_cost_usd",
156
+ "table": "sessions",
157
+ "entityType": "columns"
158
+ },
159
+ {
160
+ "type": "text",
161
+ "notNull": false,
162
+ "autoincrement": false,
163
+ "default": null,
164
+ "generated": null,
165
+ "name": "cost_breakdown_json",
166
+ "table": "sessions",
167
+ "entityType": "columns"
168
+ },
169
+ {
170
+ "type": "text",
171
+ "notNull": false,
172
+ "autoincrement": false,
173
+ "default": null,
174
+ "generated": null,
175
+ "name": "token_usage_json",
176
+ "table": "sessions",
177
+ "entityType": "columns"
178
+ },
179
+ {
180
+ "type": "text",
181
+ "notNull": false,
182
+ "autoincrement": false,
183
+ "default": null,
184
+ "generated": null,
185
+ "name": "model_name",
186
+ "table": "sessions",
187
+ "entityType": "columns"
188
+ },
189
+ {
190
+ "type": "text",
191
+ "notNull": false,
192
+ "autoincrement": false,
193
+ "default": null,
194
+ "generated": null,
195
+ "name": "pr_links_json",
196
+ "table": "sessions",
197
+ "entityType": "columns"
198
+ },
199
+ {
200
+ "type": "integer",
201
+ "notNull": true,
202
+ "autoincrement": false,
203
+ "default": null,
204
+ "generated": null,
205
+ "name": "file_mtime_ms",
206
+ "table": "sessions",
207
+ "entityType": "columns"
208
+ },
209
+ {
210
+ "type": "text",
211
+ "notNull": true,
212
+ "autoincrement": false,
213
+ "default": null,
214
+ "generated": null,
215
+ "name": "last_modified_at",
216
+ "table": "sessions",
217
+ "entityType": "columns"
218
+ },
219
+ {
220
+ "type": "integer",
221
+ "notNull": true,
222
+ "autoincrement": false,
223
+ "default": null,
224
+ "generated": null,
225
+ "name": "synced_at",
226
+ "table": "sessions",
227
+ "entityType": "columns"
228
+ },
229
+ {
230
+ "columns": [
231
+ {
232
+ "value": "file_path",
233
+ "isExpression": false
234
+ }
235
+ ],
236
+ "isUnique": true,
237
+ "where": null,
238
+ "origin": "manual",
239
+ "name": "sessions_file_path_unique",
240
+ "table": "sessions",
241
+ "entityType": "indexes"
242
+ },
243
+ {
244
+ "columns": [
245
+ {
246
+ "value": "project_id",
247
+ "isExpression": false
248
+ }
249
+ ],
250
+ "isUnique": false,
251
+ "where": null,
252
+ "origin": "manual",
253
+ "name": "idx_sessions_project_id",
254
+ "table": "sessions",
255
+ "entityType": "indexes"
256
+ },
257
+ {
258
+ "columns": [
259
+ {
260
+ "value": "file_mtime_ms",
261
+ "isExpression": false
262
+ }
263
+ ],
264
+ "isUnique": false,
265
+ "where": null,
266
+ "origin": "manual",
267
+ "name": "idx_sessions_file_mtime",
268
+ "table": "sessions",
269
+ "entityType": "indexes"
270
+ },
271
+ {
272
+ "columns": ["project_id"],
273
+ "tableTo": "projects",
274
+ "columnsTo": ["id"],
275
+ "onUpdate": "NO ACTION",
276
+ "onDelete": "CASCADE",
277
+ "nameExplicit": false,
278
+ "name": "sessions_project_id_projects_id_fk",
279
+ "table": "sessions",
280
+ "entityType": "fks"
281
+ },
282
+ {
283
+ "name": "sync_state",
284
+ "entityType": "tables"
285
+ },
286
+ {
287
+ "type": "text",
288
+ "notNull": false,
289
+ "autoincrement": false,
290
+ "default": null,
291
+ "generated": null,
292
+ "name": "key",
293
+ "table": "sync_state",
294
+ "entityType": "columns"
295
+ },
296
+ {
297
+ "columns": ["key"],
298
+ "nameExplicit": false,
299
+ "name": "sync_state_pk",
300
+ "table": "sync_state",
301
+ "entityType": "pks"
302
+ },
303
+ {
304
+ "type": "text",
305
+ "notNull": true,
306
+ "autoincrement": false,
307
+ "default": null,
308
+ "generated": null,
309
+ "name": "value",
310
+ "table": "sync_state",
311
+ "entityType": "columns"
312
+ }
313
+ ],
314
+ "renames": []
315
+ }
Binary file
@@ -0,0 +1,22 @@
1
+ import{r as e}from"./rolldown-runtime-Dw2cE7zH.js";import{d as t,f as n}from"./markdown-parser-vendor-D9j1a-bm.js";import{t as r}from"./createLucideIcon-BL_meogc.js";var i=e(n(),1),a=i.use,o=typeof window<`u`?i.useLayoutEffect:i.useEffect;function s(e){let t=i.useRef({value:e,prev:null}),n=t.current.value;return e!==n&&(t.current={value:e,prev:n}),t.current.prev}function c(e,t,n={},r={}){i.useEffect(()=>{if(!e.current||r.disabled||typeof IntersectionObserver!=`function`)return;let i=new IntersectionObserver(([e])=>{t(e)},n);return i.observe(e.current),()=>{i.disconnect()}},[t,n,r.disabled,e])}function l(e){let t=i.useRef(null);return i.useImperativeHandle(e,()=>t.current,[]),t}var u=i.createContext(null);function d(e){return i.useContext(u)}function f(e){let t=d();return i.useCallback(n=>t.navigate({...n,from:n.from??e?.from}),[e?.from,t])}var p=r(`loader-circle`,[[`path`,{d:`M21 12a9 9 0 1 1-6.219-8.56`,key:`13zald`}]]),m=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(e){return this.listeners.add(e),this.onSubscribe(),()=>{this.listeners.delete(e),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},h=new class extends m{#e;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e();return window.addEventListener(`visibilitychange`,t,!1),()=>{window.removeEventListener(`visibilitychange`,t)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(e=>{typeof e==`boolean`?this.setFocused(e):this.onFocus()})}setFocused(e){this.#e!==e&&(this.#e=e,this.onFocus())}onFocus(){let e=this.isFocused();this.listeners.forEach(t=>{t(e)})}isFocused(){return typeof this.#e==`boolean`?this.#e:globalThis.document?.visibilityState!==`hidden`}},g={setTimeout:(e,t)=>setTimeout(e,t),clearTimeout:e=>clearTimeout(e),setInterval:(e,t)=>setInterval(e,t),clearInterval:e=>clearInterval(e)},_=new class{#e=g;setTimeoutProvider(e){this.#e=e}setTimeout(e,t){return this.#e.setTimeout(e,t)}clearTimeout(e){this.#e.clearTimeout(e)}setInterval(e,t){return this.#e.setInterval(e,t)}clearInterval(e){this.#e.clearInterval(e)}};function v(e){setTimeout(e,0)}var y=typeof window>`u`||`Deno`in globalThis;function b(){}function x(e,t){return typeof e==`function`?e(t):e}function S(e){return typeof e==`number`&&e>=0&&e!==1/0}function C(e,t){return Math.max(e+(t||0)-Date.now(),0)}function w(e,t){return typeof e==`function`?e(t):e}function T(e,t){return typeof e==`function`?e(t):e}function ee(e,t){let{type:n=`all`,exact:r,fetchStatus:i,predicate:a,queryKey:o,stale:s}=e;if(o){if(r){if(t.queryHash!==D(o,t.options))return!1}else if(!k(t.queryKey,o))return!1}if(n!==`all`){let e=t.isActive();if(n===`active`&&!e||n===`inactive`&&e)return!1}return!(typeof s==`boolean`&&t.isStale()!==s||i&&i!==t.state.fetchStatus||a&&!a(t))}function E(e,t){let{exact:n,status:r,predicate:i,mutationKey:a}=e;if(a){if(!t.options.mutationKey)return!1;if(n){if(O(t.options.mutationKey)!==O(a))return!1}else if(!k(t.options.mutationKey,a))return!1}return!(r&&t.state.status!==r||i&&!i(t))}function D(e,t){return(t?.queryKeyHashFn||O)(e)}function O(e){return JSON.stringify(e,(e,t)=>j(t)?Object.keys(t).sort().reduce((e,n)=>(e[n]=t[n],e),{}):t)}function k(e,t){return e===t?!0:typeof e==typeof t&&e&&t&&typeof e==`object`&&typeof t==`object`?Object.keys(t).every(n=>k(e[n],t[n])):!1}var te=Object.prototype.hasOwnProperty;function ne(e,t,n=0){if(e===t)return e;if(n>500)return t;let r=re(e)&&re(t);if(!r&&!(j(e)&&j(t)))return t;let i=(r?e:Object.keys(e)).length,a=r?t:Object.keys(t),o=a.length,s=r?Array(o):{},c=0;for(let l=0;l<o;l++){let o=r?l:a[l],u=e[o],d=t[o];if(u===d){s[o]=u,(r?l<i:te.call(e,o))&&c++;continue}if(u===null||d===null||typeof u!=`object`||typeof d!=`object`){s[o]=d;continue}let f=ne(u,d,n+1);s[o]=f,f===u&&c++}return i===o&&c===i?e:s}function A(e,t){if(!t||Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(e[n]!==t[n])return!1;return!0}function re(e){return Array.isArray(e)&&e.length===Object.keys(e).length}function j(e){if(!ie(e))return!1;let t=e.constructor;if(t===void 0)return!0;let n=t.prototype;return!(!ie(n)||!n.hasOwnProperty(`isPrototypeOf`)||Object.getPrototypeOf(e)!==Object.prototype)}function ie(e){return Object.prototype.toString.call(e)===`[object Object]`}function ae(e){return new Promise(t=>{_.setTimeout(t,e)})}function M(e,t,n){return typeof n.structuralSharing==`function`?n.structuralSharing(e,t):n.structuralSharing===!1?t:ne(e,t)}function oe(e,t,n=0){let r=[...e,t];return n&&r.length>n?r.slice(1):r}function se(e,t,n=0){let r=[t,...e];return n&&r.length>n?r.slice(0,-1):r}var N=Symbol();function ce(e,t){return!e.queryFn&&t?.initialPromise?()=>t.initialPromise:!e.queryFn||e.queryFn===N?()=>Promise.reject(Error(`Missing queryFn: '${e.queryHash}'`)):e.queryFn}function P(e,t){return typeof e==`function`?e(...t):!!e}function le(e,t,n){let r=!1,i;return Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(i??=t(),r?i:(r=!0,i.aborted?n():i.addEventListener(`abort`,n,{once:!0}),i))}),e}var F=(()=>{let e=()=>y;return{isServer(){return e()},setIsServer(t){e=t}}})();function I(){let e,t,n=new Promise((n,r)=>{e=n,t=r});n.status=`pending`,n.catch(()=>{});function r(e){Object.assign(n,e),delete n.resolve,delete n.reject}return n.resolve=t=>{r({status:`fulfilled`,value:t}),e(t)},n.reject=e=>{r({status:`rejected`,reason:e}),t(e)},n}var ue=v;function de(){let e=[],t=0,n=e=>{e()},r=e=>{e()},i=ue,a=r=>{t?e.push(r):i(()=>{n(r)})},o=()=>{let t=e;e=[],t.length&&i(()=>{r(()=>{t.forEach(e=>{n(e)})})})};return{batch:e=>{let n;t++;try{n=e()}finally{t--,t||o()}return n},batchCalls:e=>(...t)=>{a(()=>{e(...t)})},schedule:a,setNotifyFunction:e=>{n=e},setBatchNotifyFunction:e=>{r=e},setScheduler:e=>{i=e}}}var L=de(),R=new class extends m{#e=!0;#t;#n;constructor(){super(),this.#n=e=>{if(typeof window<`u`&&window.addEventListener){let t=()=>e(!0),n=()=>e(!1);return window.addEventListener(`online`,t,!1),window.addEventListener(`offline`,n,!1),()=>{window.removeEventListener(`online`,t),window.removeEventListener(`offline`,n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(e){this.#n=e,this.#t?.(),this.#t=e(this.setOnline.bind(this))}setOnline(e){this.#e!==e&&(this.#e=e,this.listeners.forEach(t=>{t(e)}))}isOnline(){return this.#e}};function fe(e){return Math.min(1e3*2**e,3e4)}function pe(e){return(e??`online`)===`online`?R.isOnline():!0}var z=class extends Error{constructor(e){super(`CancelledError`),this.revert=e?.revert,this.silent=e?.silent}};function me(e){let t=!1,n=0,r,i=I(),a=()=>i.status!==`pending`,o=t=>{if(!a()){let n=new z(t);f(n),e.onCancel?.(n)}},s=()=>{t=!0},c=()=>{t=!1},l=()=>h.isFocused()&&(e.networkMode===`always`||R.isOnline())&&e.canRun(),u=()=>pe(e.networkMode)&&e.canRun(),d=e=>{a()||(r?.(),i.resolve(e))},f=e=>{a()||(r?.(),i.reject(e))},p=()=>new Promise(t=>{r=e=>{(a()||l())&&t(e)},e.onPause?.()}).then(()=>{r=void 0,a()||e.onContinue?.()}),m=()=>{if(a())return;let r,i=n===0?e.initialPromise:void 0;try{r=i??e.fn()}catch(e){r=Promise.reject(e)}Promise.resolve(r).then(d).catch(r=>{if(a())return;let i=e.retry??(F.isServer()?0:3),o=e.retryDelay??fe,s=typeof o==`function`?o(n,r):o,c=i===!0||typeof i==`number`&&n<i||typeof i==`function`&&i(n,r);if(t||!c){f(r);return}n++,e.onFail?.(n,r),ae(s).then(()=>l()?void 0:p()).then(()=>{t?f(r):m()})})};return{promise:i,status:()=>i.status,cancel:o,continue:()=>(r?.(),i),cancelRetry:s,continueRetry:c,canStart:u,start:()=>(u()?m():p().then(m),i)}}var he=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),S(this.gcTime)&&(this.#e=_.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(e){this.gcTime=Math.max(this.gcTime||0,e??(F.isServer()?1/0:300*1e3))}clearGcTimeout(){this.#e&&=(_.clearTimeout(this.#e),void 0)}},ge=class extends he{#e;#t;#n;#r;#i;#a;#o;constructor(e){super(),this.#o=!1,this.#a=e.defaultOptions,this.setOptions(e.options),this.observers=[],this.#r=e.client,this.#n=this.#r.getQueryCache(),this.queryKey=e.queryKey,this.queryHash=e.queryHash,this.#e=ye(this.options),this.state=e.state??this.#e,this.scheduleGc()}get meta(){return this.options.meta}get promise(){return this.#i?.promise}setOptions(e){if(this.options={...this.#a,...e},this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){let e=ye(this.options);e.data!==void 0&&(this.setState(ve(e.data,e.dataUpdatedAt)),this.#e=e)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus===`idle`&&this.#n.remove(this)}setData(e,t){let n=M(this.state.data,e,this.options);return this.#c({data:n,type:`success`,dataUpdatedAt:t?.updatedAt,manual:t?.manual}),n}setState(e,t){this.#c({type:`setState`,state:e,setStateOptions:t})}cancel(e){let t=this.#i?.promise;return this.#i?.cancel(e),t?t.then(b).catch(b):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#e}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(e=>T(e.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===N||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(e=>w(e.options.staleTime,this)===`static`):!1}isStale(){return this.getObserversCount()>0?this.observers.some(e=>e.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(e=0){return this.state.data===void 0?!0:e===`static`?!1:this.state.isInvalidated?!0:!C(this.state.dataUpdatedAt,e)}onFocus(){this.observers.find(e=>e.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#i?.continue()}onOnline(){this.observers.find(e=>e.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#i?.continue()}addObserver(e){this.observers.includes(e)||(this.observers.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,query:this,observer:e}))}removeObserver(e){this.observers.includes(e)&&(this.observers=this.observers.filter(t=>t!==e),this.observers.length||(this.#i&&(this.#o||this.#s()?this.#i.cancel({revert:!0}):this.#i.cancelRetry()),this.scheduleGc()),this.#n.notify({type:`observerRemoved`,query:this,observer:e}))}getObserversCount(){return this.observers.length}#s(){return this.state.fetchStatus===`paused`&&this.state.status===`pending`}invalidate(){this.state.isInvalidated||this.#c({type:`invalidate`})}async fetch(e,t){if(this.state.fetchStatus!==`idle`&&this.#i?.status()!==`rejected`){if(this.state.data!==void 0&&t?.cancelRefetch)this.cancel({silent:!0});else if(this.#i)return this.#i.continueRetry(),this.#i.promise}if(e&&this.setOptions(e),!this.options.queryFn){let e=this.observers.find(e=>e.options.queryFn);e&&this.setOptions(e.options)}let n=new AbortController,r=e=>{Object.defineProperty(e,`signal`,{enumerable:!0,get:()=>(this.#o=!0,n.signal)})},i=()=>{let e=ce(this.options,t),n=(()=>{let e={client:this.#r,queryKey:this.queryKey,meta:this.meta};return r(e),e})();return this.#o=!1,this.options.persister?this.options.persister(e,n,this):e(n)},a=(()=>{let e={fetchOptions:t,options:this.options,queryKey:this.queryKey,client:this.#r,state:this.state,fetchFn:i};return r(e),e})();this.options.behavior?.onFetch(a,this),this.#t=this.state,(this.state.fetchStatus===`idle`||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#c({type:`fetch`,meta:a.fetchOptions?.meta}),this.#i=me({initialPromise:t?.initialPromise,fn:a.fetchFn,onCancel:e=>{e instanceof z&&e.revert&&this.setState({...this.#t,fetchStatus:`idle`}),n.abort()},onFail:(e,t)=>{this.#c({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#c({type:`pause`})},onContinue:()=>{this.#c({type:`continue`})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{let e=await this.#i.start();if(e===void 0)throw Error(`${this.queryHash} data is undefined`);return this.setData(e),this.#n.config.onSuccess?.(e,this),this.#n.config.onSettled?.(e,this.state.error,this),e}catch(e){if(e instanceof z){if(e.silent)return this.#i.promise;if(e.revert){if(this.state.data===void 0)throw e;return this.state.data}}throw this.#c({type:`error`,error:e}),this.#n.config.onError?.(e,this),this.#n.config.onSettled?.(this.state.data,e,this),e}finally{this.scheduleGc()}}#c(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,fetchFailureCount:e.failureCount,fetchFailureReason:e.error};case`pause`:return{...t,fetchStatus:`paused`};case`continue`:return{...t,fetchStatus:`fetching`};case`fetch`:return{...t,..._e(t.data,this.options),fetchMeta:e.meta??null};case`success`:let n={...t,...ve(e.data,e.dataUpdatedAt),dataUpdateCount:t.dataUpdateCount+1,...!e.manual&&{fetchStatus:`idle`,fetchFailureCount:0,fetchFailureReason:null}};return this.#t=e.manual?n:void 0,n;case`error`:let r=e.error;return{...t,error:r,errorUpdateCount:t.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:t.fetchFailureCount+1,fetchFailureReason:r,fetchStatus:`idle`,status:`error`,isInvalidated:!0};case`invalidate`:return{...t,isInvalidated:!0};case`setState`:return{...t,...e.state}}})(this.state),L.batch(()=>{this.observers.forEach(e=>{e.onQueryUpdate()}),this.#n.notify({query:this,type:`updated`,action:e})})}};function _e(e,t){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:pe(t.networkMode)?`fetching`:`paused`,...e===void 0&&{error:null,status:`pending`}}}function ve(e,t){return{data:e,dataUpdatedAt:t??Date.now(),error:null,isInvalidated:!1,status:`success`}}function ye(e){let t=typeof e.initialData==`function`?e.initialData():e.initialData,n=t!==void 0,r=n?typeof e.initialDataUpdatedAt==`function`?e.initialDataUpdatedAt():e.initialDataUpdatedAt:0;return{data:t,dataUpdateCount:0,dataUpdatedAt:n?r??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?`success`:`pending`,fetchStatus:`idle`}}var be=class extends m{constructor(e,t){super(),this.options=t,this.#e=e,this.#s=null,this.#o=I(),this.bindMethods(),this.setOptions(t)}#e;#t=void 0;#n=void 0;#r=void 0;#i;#a;#o;#s;#c;#l;#u;#d;#f;#p;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),Se(this.#t,this.options)?this.#h():this.updateResult(),this.#y())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return B(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return B(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#b(),this.#x(),this.#t.removeObserver(this)}setOptions(e){let t=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(e),this.options.enabled!==void 0&&typeof this.options.enabled!=`boolean`&&typeof this.options.enabled!=`function`&&typeof T(this.options.enabled,this.#t)!=`boolean`)throw Error(`Expected enabled to be a boolean or a callback that returns a boolean`);this.#S(),this.#t.setOptions(this.options),t._defaulted&&!A(this.options,t)&&this.#e.getQueryCache().notify({type:`observerOptionsUpdated`,query:this.#t,observer:this});let r=this.hasListeners();r&&Ce(this.#t,n,this.options,t)&&this.#h(),this.updateResult(),r&&(this.#t!==n||T(this.options.enabled,this.#t)!==T(t.enabled,this.#t)||w(this.options.staleTime,this.#t)!==w(t.staleTime,this.#t))&&this.#g();let i=this.#_();r&&(this.#t!==n||T(this.options.enabled,this.#t)!==T(t.enabled,this.#t)||i!==this.#p)&&this.#v(i)}getOptimisticResult(e){let t=this.#e.getQueryCache().build(this.#e,e),n=this.createResult(t,e);return we(this,n)&&(this.#r=n,this.#a=this.options,this.#i=this.#t.state),n}getCurrentResult(){return this.#r}trackResult(e,t){return new Proxy(e,{get:(e,n)=>(this.trackProp(n),t?.(n),n===`promise`&&(this.trackProp(`data`),!this.options.experimental_prefetchInRender&&this.#o.status===`pending`&&this.#o.reject(Error(`experimental_prefetchInRender feature flag is not enabled`))),Reflect.get(e,n))})}trackProp(e){this.#m.add(e)}getCurrentQuery(){return this.#t}refetch({...e}={}){return this.fetch({...e})}fetchOptimistic(e){let t=this.#e.defaultQueryOptions(e),n=this.#e.getQueryCache().build(this.#e,t);return n.fetch().then(()=>this.createResult(n,t))}fetch(e){return this.#h({...e,cancelRefetch:e.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#r))}#h(e){this.#S();let t=this.#t.fetch(this.options,e);return e?.throwOnError||(t=t.catch(b)),t}#g(){this.#b();let e=w(this.options.staleTime,this.#t);if(F.isServer()||this.#r.isStale||!S(e))return;let t=C(this.#r.dataUpdatedAt,e)+1;this.#d=_.setTimeout(()=>{this.#r.isStale||this.updateResult()},t)}#_(){return(typeof this.options.refetchInterval==`function`?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#v(e){this.#x(),this.#p=e,!(F.isServer()||T(this.options.enabled,this.#t)===!1||!S(this.#p)||this.#p===0)&&(this.#f=_.setInterval(()=>{(this.options.refetchIntervalInBackground||h.isFocused())&&this.#h()},this.#p))}#y(){this.#g(),this.#v(this.#_())}#b(){this.#d&&=(_.clearTimeout(this.#d),void 0)}#x(){this.#f&&=(_.clearInterval(this.#f),void 0)}createResult(e,t){let n=this.#t,r=this.options,i=this.#r,a=this.#i,o=this.#a,s=e===n?this.#n:e.state,{state:c}=e,l={...c},u=!1,d;if(t._optimisticResults){let i=this.hasListeners(),a=!i&&Se(e,t),o=i&&Ce(e,n,t,r);(a||o)&&(l={...l,..._e(c.data,e.options)}),t._optimisticResults===`isRestoring`&&(l.fetchStatus=`idle`)}let{error:f,errorUpdatedAt:p,status:m}=l;d=l.data;let h=!1;if(t.placeholderData!==void 0&&d===void 0&&m===`pending`){let e;i?.isPlaceholderData&&t.placeholderData===o?.placeholderData?(e=i.data,h=!0):e=typeof t.placeholderData==`function`?t.placeholderData(this.#u?.state.data,this.#u):t.placeholderData,e!==void 0&&(m=`success`,d=M(i?.data,e,t),u=!0)}if(t.select&&d!==void 0&&!h)if(i&&d===a?.data&&t.select===this.#c)d=this.#l;else try{this.#c=t.select,d=t.select(d),d=M(i?.data,d,t),this.#l=d,this.#s=null}catch(e){this.#s=e}this.#s&&(f=this.#s,d=this.#l,p=Date.now(),m=`error`);let g=l.fetchStatus===`fetching`,_=m===`pending`,v=m===`error`,y=_&&g,b=d!==void 0,x={status:m,fetchStatus:l.fetchStatus,isPending:_,isSuccess:m===`success`,isError:v,isInitialLoading:y,isLoading:y,data:d,dataUpdatedAt:l.dataUpdatedAt,error:f,errorUpdatedAt:p,failureCount:l.fetchFailureCount,failureReason:l.fetchFailureReason,errorUpdateCount:l.errorUpdateCount,isFetched:e.isFetched(),isFetchedAfterMount:l.dataUpdateCount>s.dataUpdateCount||l.errorUpdateCount>s.errorUpdateCount,isFetching:g,isRefetching:g&&!_,isLoadingError:v&&!b,isPaused:l.fetchStatus===`paused`,isPlaceholderData:u,isRefetchError:v&&b,isStale:V(e,t),refetch:this.refetch,promise:this.#o,isEnabled:T(t.enabled,e)!==!1};if(this.options.experimental_prefetchInRender){let t=x.data!==void 0,r=x.status===`error`&&!t,i=e=>{r?e.reject(x.error):t&&e.resolve(x.data)},a=()=>{i(this.#o=x.promise=I())},o=this.#o;switch(o.status){case`pending`:e.queryHash===n.queryHash&&i(o);break;case`fulfilled`:(r||x.data!==o.value)&&a();break;case`rejected`:(!r||x.error!==o.reason)&&a();break}}return x}updateResult(){let e=this.#r,t=this.createResult(this.#t,this.options);this.#i=this.#t.state,this.#a=this.options,this.#i.data!==void 0&&(this.#u=this.#t),!A(t,e)&&(this.#r=t,this.#C({listeners:(()=>{if(!e)return!0;let{notifyOnChangeProps:t}=this.options,n=typeof t==`function`?t():t;if(n===`all`||!n&&!this.#m.size)return!0;let r=new Set(n??this.#m);return this.options.throwOnError&&r.add(`error`),Object.keys(this.#r).some(t=>{let n=t;return this.#r[n]!==e[n]&&r.has(n)})})()}))}#S(){let e=this.#e.getQueryCache().build(this.#e,this.options);if(e===this.#t)return;let t=this.#t;this.#t=e,this.#n=e.state,this.hasListeners()&&(t?.removeObserver(this),e.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#y()}#C(e){L.batch(()=>{e.listeners&&this.listeners.forEach(e=>{e(this.#r)}),this.#e.getQueryCache().notify({query:this.#t,type:`observerResultsUpdated`})})}};function xe(e,t){return T(t.enabled,e)!==!1&&e.state.data===void 0&&!(e.state.status===`error`&&t.retryOnMount===!1)}function Se(e,t){return xe(e,t)||e.state.data!==void 0&&B(e,t,t.refetchOnMount)}function B(e,t,n){if(T(t.enabled,e)!==!1&&w(t.staleTime,e)!==`static`){let r=typeof n==`function`?n(e):n;return r===`always`||r!==!1&&V(e,t)}return!1}function Ce(e,t,n,r){return(e!==t||T(r.enabled,e)===!1)&&(!n.suspense||e.state.status!==`error`)&&V(e,n)}function V(e,t){return T(t.enabled,e)!==!1&&e.isStaleByTime(w(t.staleTime,e))}function we(e,t){return!A(e.getCurrentResult(),t)}var Te=class extends he{#e;#t;#n;#r;constructor(e){super(),this.#e=e.client,this.mutationId=e.mutationId,this.#n=e.mutationCache,this.#t=[],this.state=e.state||Ee(),this.setOptions(e.options),this.scheduleGc()}setOptions(e){this.options=e,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(e){this.#t.includes(e)||(this.#t.push(e),this.clearGcTimeout(),this.#n.notify({type:`observerAdded`,mutation:this,observer:e}))}removeObserver(e){this.#t=this.#t.filter(t=>t!==e),this.scheduleGc(),this.#n.notify({type:`observerRemoved`,mutation:this,observer:e})}optionalRemove(){this.#t.length||(this.state.status===`pending`?this.scheduleGc():this.#n.remove(this))}continue(){return this.#r?.continue()??this.execute(this.state.variables)}async execute(e){let t=()=>{this.#i({type:`continue`})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#r=me({fn:()=>this.options.mutationFn?this.options.mutationFn(e,n):Promise.reject(Error(`No mutationFn found`)),onFail:(e,t)=>{this.#i({type:`failed`,failureCount:e,error:t})},onPause:()=>{this.#i({type:`pause`})},onContinue:t,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});let r=this.state.status===`pending`,i=!this.#r.canStart();try{if(r)t();else{this.#i({type:`pending`,variables:e,isPaused:i}),this.#n.config.onMutate&&await this.#n.config.onMutate(e,this,n);let t=await this.options.onMutate?.(e,n);t!==this.state.context&&this.#i({type:`pending`,context:t,variables:e,isPaused:i})}let a=await this.#r.start();return await this.#n.config.onSuccess?.(a,e,this.state.context,this,n),await this.options.onSuccess?.(a,e,this.state.context,n),await this.#n.config.onSettled?.(a,null,this.state.variables,this.state.context,this,n),await this.options.onSettled?.(a,null,e,this.state.context,n),this.#i({type:`success`,data:a}),a}catch(t){try{await this.#n.config.onError?.(t,e,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onError?.(t,e,this.state.context,n)}catch(e){Promise.reject(e)}try{await this.#n.config.onSettled?.(void 0,t,this.state.variables,this.state.context,this,n)}catch(e){Promise.reject(e)}try{await this.options.onSettled?.(void 0,t,e,this.state.context,n)}catch(e){Promise.reject(e)}throw this.#i({type:`error`,error:t}),t}finally{this.#n.runNext(this)}}#i(e){this.state=(t=>{switch(e.type){case`failed`:return{...t,failureCount:e.failureCount,failureReason:e.error};case`pause`:return{...t,isPaused:!0};case`continue`:return{...t,isPaused:!1};case`pending`:return{...t,context:e.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:e.isPaused,status:`pending`,variables:e.variables,submittedAt:Date.now()};case`success`:return{...t,data:e.data,failureCount:0,failureReason:null,error:null,status:`success`,isPaused:!1};case`error`:return{...t,data:void 0,error:e.error,failureCount:t.failureCount+1,failureReason:e.error,isPaused:!1,status:`error`}}})(this.state),L.batch(()=>{this.#t.forEach(t=>{t.onMutationUpdate(e)}),this.#n.notify({mutation:this,type:`updated`,action:e})})}};function Ee(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:`idle`,variables:void 0,submittedAt:0}}var De=class extends m{#e;#t=void 0;#n;#r;constructor(e,t){super(),this.#e=e,this.setOptions(t),this.bindMethods(),this.#i()}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(e){let t=this.options;this.options=this.#e.defaultMutationOptions(e),A(this.options,t)||this.#e.getMutationCache().notify({type:`observerOptionsUpdated`,mutation:this.#n,observer:this}),t?.mutationKey&&this.options.mutationKey&&O(t.mutationKey)!==O(this.options.mutationKey)?this.reset():this.#n?.state.status===`pending`&&this.#n.setOptions(this.options)}onUnsubscribe(){this.hasListeners()||this.#n?.removeObserver(this)}onMutationUpdate(e){this.#i(),this.#a(e)}getCurrentResult(){return this.#t}reset(){this.#n?.removeObserver(this),this.#n=void 0,this.#i(),this.#a()}mutate(e,t){return this.#r=t,this.#n?.removeObserver(this),this.#n=this.#e.getMutationCache().build(this.#e,this.options),this.#n.addObserver(this),this.#n.execute(e)}#i(){let e=this.#n?.state??Ee();this.#t={...e,isPending:e.status===`pending`,isSuccess:e.status===`success`,isError:e.status===`error`,isIdle:e.status===`idle`,mutate:this.mutate,reset:this.reset}}#a(e){L.batch(()=>{if(this.#r&&this.hasListeners()){let t=this.#t.variables,n=this.#t.context,r={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};if(e?.type===`success`){try{this.#r.onSuccess?.(e.data,t,n,r)}catch(e){Promise.reject(e)}try{this.#r.onSettled?.(e.data,null,t,n,r)}catch(e){Promise.reject(e)}}else if(e?.type===`error`){try{this.#r.onError?.(e.error,t,n,r)}catch(e){Promise.reject(e)}try{this.#r.onSettled?.(void 0,e.error,t,n,r)}catch(e){Promise.reject(e)}}}this.listeners.forEach(e=>{e(this.#t)})})}},H=t(),Oe=i.createContext(void 0),U=e=>{let t=i.useContext(Oe);if(e)return e;if(!t)throw Error(`No QueryClient set, use QueryClientProvider to set one`);return t},ke=({client:e,children:t})=>(i.useEffect(()=>(e.mount(),()=>{e.unmount()}),[e]),(0,H.jsx)(Oe.Provider,{value:e,children:t})),Ae=i.createContext(!1),je=()=>i.useContext(Ae);Ae.Provider;function Me(){let e=!1;return{clearReset:()=>{e=!1},reset:()=>{e=!0},isReset:()=>e}}var Ne=i.createContext(Me()),Pe=()=>i.useContext(Ne),Fe=(e,t,n)=>{let r=n?.state.error&&typeof e.throwOnError==`function`?P(e.throwOnError,[n.state.error,n]):e.throwOnError;(e.suspense||e.experimental_prefetchInRender||r)&&(t.isReset()||(e.retryOnMount=!1))},Ie=e=>{i.useEffect(()=>{e.clearReset()},[e])},Le=({result:e,errorResetBoundary:t,throwOnError:n,query:r,suspense:i})=>e.isError&&!t.isReset()&&!e.isFetching&&r&&(i&&e.data===void 0||P(n,[e.error,r])),Re=(e,t)=>t.state.data===void 0,ze=e=>{if(e.suspense){let t=1e3,n=e=>e===`static`?e:Math.max(e??t,t),r=e.staleTime;e.staleTime=typeof r==`function`?(...e)=>n(r(...e)):n(r),typeof e.gcTime==`number`&&(e.gcTime=Math.max(e.gcTime,t))}},Be=(e,t)=>e.isLoading&&e.isFetching&&!t,Ve=(e,t)=>e?.suspense&&t.isPending,He=(e,t,n)=>t.fetchOptimistic(e).catch(()=>{n.clearReset()});function Ue(e,t,n){let r=je(),a=Pe(),o=U(n),s=o.defaultQueryOptions(e);o.getDefaultOptions().queries?._experimental_beforeQuery?.(s);let c=o.getQueryCache().get(s.queryHash);s._optimisticResults=r?`isRestoring`:`optimistic`,ze(s),Fe(s,a,c),Ie(a);let l=!o.getQueryCache().get(s.queryHash),[u]=i.useState(()=>new t(o,s)),d=u.getOptimisticResult(s),f=!r&&e.subscribed!==!1;if(i.useSyncExternalStore(i.useCallback(e=>{let t=f?u.subscribe(L.batchCalls(e)):b;return u.updateResult(),t},[u,f]),()=>u.getCurrentResult(),()=>u.getCurrentResult()),i.useEffect(()=>{u.setOptions(s)},[s,u]),Ve(s,d))throw He(s,u,a);if(Le({result:d,errorResetBoundary:a,throwOnError:s.throwOnError,query:c,suspense:s.suspense}))throw d.error;return o.getDefaultOptions().queries?._experimental_afterQuery?.(s,d),s.experimental_prefetchInRender&&!F.isServer()&&Be(d,r)&&(l?He(s,u,a):c?.promise)?.catch(b).finally(()=>{u.updateResult()}),s.notifyOnChangeProps?d:u.trackResult(d)}function We(e,t){return Ue({...e,enabled:!0,suspense:!0,throwOnError:Re,placeholderData:void 0},be,t)}function W(e,t){let n=U(t),[r]=i.useState(()=>new De(n,e));i.useEffect(()=>{r.setOptions(e)},[r,e]);let a=i.useSyncExternalStore(i.useCallback(e=>r.subscribe(L.batchCalls(e)),[r]),()=>r.getCurrentResult(),()=>r.getCurrentResult()),o=i.useCallback((e,t)=>{r.mutate(e,t).catch(b)},[r]);if(a.error&&P(r.options.throwOnError,[a.error]))throw a.error;return{...a,mutate:o,mutateAsync:a.mutate}}function Ge(e){return`init`in e}function Ke(e){return!!e.write}function qe(e){return`v`in e||`e`in e}function G(e){if(`e`in e)throw e.e;return e.v}function K(e){return typeof e?.then==`function`}function Je(e,t,n){if(!n.p.has(e)){n.p.add(e);let r=()=>n.p.delete(e);t.then(r,r)}}function Ye(e,t,n){let r=new Set;for(let t of n.get(e)?.t||[])r.add(t);for(let e of t.p)r.add(e);return r}var Xe=(e,t,...n)=>t.read(...n),Ze=(e,t,...n)=>t.write(...n),Qe=(e,t)=>t.INTERNAL_onInit?.call(t,e),$e=(e,t,n)=>t.onMount?.call(t,n),et=(e,t)=>{var n;let r=q(e),i=r[0],a=r[6],o=r[9],s=i.get(t);return s||(s={d:new Map,p:new Set,n:0},i.set(t,s),(n=a.i)==null||n.call(a,t),o?.(e,t)),s},tt=e=>{let t=q(e),n=t[1],r=t[3],i=t[4],a=t[5],o=t[6],s=t[13],c=[],l=e=>{try{e()}catch(e){c.push(e)}};do{o.f&&l(o.f);let t=new Set,c=t.add.bind(t);r.forEach(e=>n.get(e)?.l.forEach(c)),r.clear(),a.forEach(c),a.clear(),i.forEach(c),i.clear(),t.forEach(l),r.size&&s(e)}while(r.size||a.size||i.size);if(c.length)throw AggregateError(c)},nt=e=>{let t=q(e),n=t[1],r=t[2],i=t[3],a=t[11],o=t[14],s=t[17],c=[],l=new WeakSet,u=new WeakSet,d=Array.from(i);for(;d.length;){let t=d[d.length-1],i=a(e,t);if(u.has(t)){d.pop();continue}if(l.has(t)){r.get(t)===i.n&&c.push([t,i]),u.add(t),d.pop();continue}l.add(t);for(let e of Ye(t,i,n))l.has(e)||d.push(e)}for(let t=c.length-1;t>=0;--t){let[n,a]=c[t],l=!1;for(let e of a.d.keys())if(e!==n&&i.has(e)){l=!0;break}l&&(r.set(n,a.n),o(e,n),s(e,n)),r.delete(n)}},rt=(e,t)=>{var n,r;let i=q(e),a=i[1],o=i[2],s=i[3],c=i[6],l=i[7],u=i[11],d=i[12],f=i[13],p=i[14],m=i[16],h=i[17],g=i[20],_=i[26],v=i[28],y=u(e,t),b=v[0];if(qe(y)){if(a.has(t)&&o.get(t)!==y.n||y.m===b)return y.m=b,y;let n=!1;for(let[t,r]of y.d)if(p(e,t).n!==r){n=!0;break}if(!n)return y.m=b,y}let x=!0,S=new Set(y.d.keys()),C=new Map,w=()=>{for(let e of S)C.has(e)||y.d.delete(e)},T=()=>{if(a.has(t)){let n=!s.size;h(e,t),n&&(f(e),d(e))}},ee=n=>{var r;if(n===t){let t=u(e,n);if(!qe(t))if(Ge(n))g(e,n,n.init);else throw Error(`no atom init`);return G(t)}let i=p(e,n);try{return G(i)}finally{C.set(n,i.n),y.d.set(n,i.n),K(y.v)&&Je(t,y.v,i),a.has(t)&&((r=a.get(n))==null||r.t.add(t)),x||T()}},E,D,O={get signal(){return E||=new AbortController,E.signal},get setSelf(){return!D&&Ke(t)&&(D=(...n)=>{if(!x)try{return m(e,t,...n)}finally{f(e),d(e)}}),D}},k=y.n,te=o.get(t)===k;try{let r=l(e,t,ee,O);if(g(e,t,r),K(r)){_(e,r,()=>E?.abort());let t=()=>{w(),T()};r.then(t,t)}else w();return(n=c.r)==null||n.call(c,t),y.m=b,y}catch(e){return delete y.v,y.e=e,++y.n,y.m=b,y}finally{x=!1,y.n!==k&&te&&(o.set(t,y.n),s.add(t),(r=c.c)==null||r.call(c,t))}},it=(e,t)=>{let n=q(e),r=n[1],i=n[2],a=n[11],o=[t];for(;o.length;){let t=o.pop(),n=a(e,t);for(let s of Ye(t,n,r)){let t=a(e,s);i.get(s)!==t.n&&(i.set(s,t.n),o.push(s))}}},at=(e,t,...n)=>{let r=q(e),i=r[3],a=r[6],o=r[8],s=r[11],c=r[12],l=r[13],u=r[14],d=r[15],f=r[16],p=r[17],m=r[20],h=r[28],g=!0,_=t=>G(u(e,t)),v=(n,...r)=>{var o;let u=s(e,n);try{if(n===t){if(!Ge(n))throw Error(`atom not writable`);let t=u.n,s=r[0];m(e,n,s),p(e,n),t!==u.n&&(++h[0],i.add(n),d(e,n),(o=a.c)==null||o.call(a,n));return}else return f(e,n,...r)}finally{g||(l(e),c(e))}};try{return o(e,t,_,v,...n)}finally{g=!1}},ot=(e,t)=>{var n;let r=q(e),i=r[1],a=r[3],o=r[6],s=r[11],c=r[15],l=r[18],u=r[19],d=s(e,t),f=i.get(t);if(f){for(let[r,i]of d.d)if(!f.d.has(r)){let u=s(e,r);l(e,r).t.add(t),f.d.add(r),i!==u.n&&(a.add(r),c(e,r),(n=o.c)==null||n.call(o,r))}for(let n of f.d)d.d.has(n)||(f.d.delete(n),u(e,n)?.t.delete(t))}},st=(e,t)=>{var n;let r=q(e),i=r[1],a=r[4],o=r[6],s=r[10],c=r[11],l=r[12],u=r[13],d=r[14],f=r[16],p=r[18],m=c(e,t),h=i.get(t);if(!h){d(e,t);for(let n of m.d.keys())p(e,n).t.add(t);h={l:new Set,d:new Set(m.d.keys()),t:new Set},i.set(t,h),Ke(t)&&a.add(()=>{let n=!0,r=(...r)=>{try{return f(e,t,...r)}finally{n||(u(e),l(e))}};try{let i=s(e,t,r);i&&(h.u=()=>{n=!0;try{i()}finally{n=!1}})}finally{n=!1}}),(n=o.m)==null||n.call(o,t)}return h},ct=(e,t)=>{var n;let r=q(e),i=r[1],a=r[5],o=r[6],s=r[11],c=r[19],l=s(e,t),u=i.get(t);if(!u||u.l.size)return u;let d=!1;for(let e of u.t)if(i.get(e)?.d.has(t)){d=!0;break}if(!d){u.u&&a.add(u.u),u=void 0,i.delete(t);for(let n of l.d.keys())c(e,n)?.t.delete(t);(n=o.u)==null||n.call(o,t);return}return u},lt=(e,t,n)=>{let r=q(e),i=r[11],a=r[27],o=i(e,t),s=`v`in o,c=o.v;if(K(n))for(let r of o.d.keys())Je(t,n,i(e,r));o.v=n,delete o.e,(!s||!Object.is(c,o.v))&&(++o.n,K(c)&&a(e,c))},ut=(e,t)=>{let n=q(e)[14];return G(n(e,t))},dt=(e,t,...n)=>{let r=q(e),i=r[3],a=r[12],o=r[13],s=r[16],c=i.size;try{return s(e,t,...n)}finally{i.size!==c&&(o(e),a(e))}},ft=(e,t,n)=>{let r=q(e),i=r[12],a=r[18],o=r[19],s=a(e,t).l;return s.add(n),i(e),()=>{s.delete(n),o(e,t),i(e)}},pt=(e,t,n)=>{let r=q(e)[25],i=r.get(t);if(!i){i=new Set,r.set(t,i);let e=()=>r.delete(t);t.then(e,e)}i.add(n)},mt=(e,t)=>{q(e)[25].get(t)?.forEach(e=>e())},ht=new WeakMap,q=e=>ht.get(e);function gt(e){let t=q(e),n=t[24];return n?n(t):t}function _t(...e){let t={get(e){let n=q(t)[21];return n(t,e)},set(e,...n){let r=q(t)[22];return r(t,e,...n)},sub(e,n){let r=q(t)[23];return r(t,e,n)}},n=[new WeakMap,new WeakMap,new WeakMap,new Set,new Set,new Set,{},Xe,Ze,Qe,$e,et,tt,nt,rt,it,at,ot,st,ct,lt,ut,dt,ft,void 0,new WeakMap,pt,mt,[0]].map((t,n)=>e[n]||t);return ht.set(t,Object.freeze(n)),t}var vt=0;function yt(e,t){let n=`atom${++vt}`,r={toString(){return n}};return typeof e==`function`?r.read=e:(r.init=e,r.read=bt,r.write=xt),t&&(r.write=t),r}function bt(e){return e(this)}function xt(e,t,n){return t(this,typeof n==`function`?n(e(this)):n)}var St;function Ct(){return St?St():_t()}var wt;function Tt(){return wt||=Ct(),wt}var Et=(0,i.createContext)(void 0);function J(e){let t=(0,i.useContext)(Et);return e?.store||t||Tt()}var Y=e=>typeof e?.then==`function`,X=e=>{e.status||(e.status=`pending`,e.then(t=>{e.status=`fulfilled`,e.value=t},t=>{e.status=`rejected`,e.reason=t}))},Dt=i.use||(e=>{if(e.status===`pending`)throw e;if(e.status===`fulfilled`)return e.value;throw e.status===`rejected`?e.reason:(X(e),e)}),Ot=new WeakMap,kt=(e,t,n)=>{let r=gt(e)[26],i=Ot.get(t);return i||(i=new Promise((a,o)=>{let s=t,c=e=>t=>{s===e&&a(t)},l=e=>t=>{s===e&&o(t)},u=()=>{try{let t=n();Y(t)?(Ot.set(t,i),s=t,t.then(c(t),l(t)),r(e,t,u)):a(t)}catch(e){o(e)}};t.then(c(t),l(t)),r(e,t,u)}),Ot.set(t,i)),i};function At(e,t){let{delay:n,unstable_promiseStatus:r=!i.use}=t||{},a=J(t),[[o,s,c],l]=(0,i.useReducer)(t=>{let n=a.get(e);return Object.is(t[0],n)&&t[1]===a&&t[2]===e?t:[n,a,e]},void 0,()=>[a.get(e),a,e]),u=o;if((s!==a||c!==e)&&(l(),u=a.get(e)),(0,i.useEffect)(()=>{let t=a.sub(e,()=>{if(r)try{let t=a.get(e);Y(t)&&X(kt(a,t,()=>a.get(e)))}catch{}if(typeof n==`number`){console.warn(`[DEPRECATED] delay option is deprecated and will be removed in v3.
2
+
3
+ Migration guide:
4
+
5
+ Create a custom hook like the following.
6
+
7
+ function useAtomValueWithDelay<Value>(
8
+ atom: Atom<Value>,
9
+ options: { delay: number },
10
+ ): Value {
11
+ const { delay } = options
12
+ const store = useStore(options)
13
+ const [value, setValue] = useState(() => store.get(atom))
14
+ useEffect(() => {
15
+ const unsub = store.sub(atom, () => {
16
+ setTimeout(() => setValue(store.get(atom)), delay)
17
+ })
18
+ return unsub
19
+ }, [store, atom, delay])
20
+ return value
21
+ }
22
+ `),setTimeout(l,n);return}l()});return l(),t},[a,e,n,r]),(0,i.useDebugValue)(u),Y(u)){let t=kt(a,u,()=>a.get(e));return r&&X(t),Dt(t)}return u}function jt(e,t){let n=J(t);return(0,i.useCallback)((...t)=>n.set(e,...t),[n,e])}function Mt(e,t){return[At(e,t),jt(e,t)]}var Nt=yt({authEnabled:!1,authenticated:!1,checked:!1}),Pt=(e,t,n={})=>{let r=`${e}=${t}`;if(e.startsWith(`__Secure-`)&&!n.secure)throw Error(`__Secure- Cookie must have Secure attributes`);if(e.startsWith(`__Host-`)){if(!n.secure)throw Error(`__Host- Cookie must have Secure attributes`);if(n.path!==`/`)throw Error(`__Host- Cookie must have Path attributes with "/"`);if(n.domain)throw Error(`__Host- Cookie must not have Domain attributes`)}for(let e of[`domain`,`path`])if(n[e]&&/[;\r\n]/.test(n[e]))throw Error(`${e} must not contain ";", "\\r", or "\\n"`);if(n&&typeof n.maxAge==`number`&&n.maxAge>=0){if(n.maxAge>3456e4)throw Error(`Cookies Max-Age SHOULD NOT be greater than 400 days (34560000 seconds) in duration.`);r+=`; Max-Age=${n.maxAge|0}`}if(n.domain&&n.prefix!==`host`&&(r+=`; Domain=${n.domain}`),n.path&&(r+=`; Path=${n.path}`),n.expires){if(n.expires.getTime()-Date.now()>3456e7)throw Error(`Cookies Expires SHOULD NOT be greater than 400 days (34560000 seconds) in the future.`);r+=`; Expires=${n.expires.toUTCString()}`}if(n.httpOnly&&(r+=`; HttpOnly`),n.secure&&(r+=`; Secure`),n.sameSite&&(r+=`; SameSite=${n.sameSite.charAt(0).toUpperCase()+n.sameSite.slice(1)}`),n.priority&&(r+=`; Priority=${n.priority.charAt(0).toUpperCase()+n.priority.slice(1)}`),n.partitioned){if(!n.secure)throw Error(`Partitioned Cookie must have Secure attributes`);r+=`; Partitioned`}return r},Ft=(e,t,n)=>(t=encodeURIComponent(t),Pt(e,t,n)),It=(e,t)=>(e=e.replace(/\/+$/,``),e+=`/`,t=t.replace(/^\/+/,``),e+t),Lt=(e,t)=>{for(let[n,r]of Object.entries(t)){let t=RegExp(`/:`+n+`(?:{[^/]+})?\\??`);e=e.replace(t,r?`/${r}`:``)}return e},Rt=e=>{let t=new URLSearchParams;for(let[n,r]of Object.entries(e))if(r!==void 0)if(Array.isArray(r))for(let e of r)t.append(n,e);else t.set(n,r);return t},zt=(e,t)=>{switch(t){case`ws`:return e.replace(/^http/,`ws`);case`http`:return e.replace(/^ws/,`http`)}},Bt=e=>/^https?:\/\/[^\/]+?\/index(?=\?|$)/.test(e)?e.replace(/\/index(?=\?|$)/,`/`):e.replace(/\/index(?=\?|$)/,``);function Z(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function Vt(e,t){if(!Z(e)&&!Z(t))return t;let n={...e};for(let e in t){let r=t[e];Z(n[e])&&Z(r)?n[e]=Vt(n[e],r):n[e]=r}return n}var Ht=(e,t)=>new Proxy(()=>{},{get(n,r){if(!(typeof r!=`string`||r===`then`))return Ht(e,[...t,r])},apply(n,r,i){return e({path:t,args:i})}}),Ut=class{url;method;buildSearchParams;queryParams=void 0;pathParams={};rBody;cType=void 0;constructor(e,t,n){this.url=e,this.method=t,this.buildSearchParams=n.buildSearchParams}fetch=async(e,t)=>{if(e){if(e.query&&(this.queryParams=this.buildSearchParams(e.query)),e.form){let t=new FormData;for(let[n,r]of Object.entries(e.form))if(r!==void 0)if(Array.isArray(r))for(let e of r)t.append(n,e);else t.append(n,r);this.rBody=t}e.json&&(this.rBody=JSON.stringify(e.json),this.cType=`application/json`),e.param&&(this.pathParams=e.param)}let n=this.method.toUpperCase(),r={...e?.header,...typeof t?.headers==`function`?await t.headers():t?.headers};if(e?.cookie){let t=[];for(let[n,r]of Object.entries(e.cookie))t.push(Ft(n,r,{path:`/`}));r.Cookie=t.join(`,`)}this.cType&&(r[`Content-Type`]=this.cType);let i=new Headers(r??void 0),a=this.url;a=Bt(a),a=Lt(a,this.pathParams),this.queryParams&&(a=a+`?`+this.queryParams.toString()),n=this.method.toUpperCase();let o=!(n===`GET`||n===`HEAD`);return(t?.fetch||fetch)(a,{body:o?this.rBody:void 0,method:n,headers:i,...t?.init})}},Wt=(e,t)=>Ht(function n(r){let i=t?.buildSearchParams??Rt,a=[...r.path],o=a.slice(-3).reverse();if(o[0]===`toString`)return o[1]===`name`?o[2]||``:n.toString();if(o[0]===`valueOf`)return o[1]===`name`?o[2]||``:n;let s=``;if(/^\$/.test(o[0])){let e=a.pop();e&&(s=e.replace(/^\$/,``))}let c=It(e,a.join(`/`));if(s===`url`||s===`path`){let t=c;return r.args[0]&&(r.args[0].param&&(t=Lt(c,r.args[0].param)),r.args[0].query&&(t=t+`?`+i(r.args[0].query).toString())),t=Bt(t),s===`url`?new URL(t):t.slice(e.replace(/\/+$/,``).length).replace(/^\/?/,`/`)}if(s===`ws`){let e=zt(r.args[0]&&r.args[0].param?Lt(c,r.args[0].param):c,`ws`),n=new URL(e),i=r.args[0]?.query;return i&&Object.entries(i).forEach(([e,t])=>{Array.isArray(t)?t.forEach(t=>n.searchParams.append(e,t)):n.searchParams.set(e,t)}),((...e)=>t?.webSocket!==void 0&&typeof t.webSocket==`function`?t.webSocket(...e):new WebSocket(...e))(n.toString())}let l=new Ut(c,s,{buildSearchParams:i});if(s){t??={};let e=Vt(t,{...r.args[1]});return l.fetch(r.args[0],e)}return l},[]),Gt=class extends Error{status;statusText;constructor(e,t){super(`HttpError: ${e} ${t}`),this.status=e,this.statusText=t}},Q=Wt(`/`,{fetch:async(...e)=>{let t=await fetch(...e);if(!t.ok)throw console.error(t),new Gt(t.status,t.statusText);return t}}),$={queryKey:[`auth`,`check`],queryFn:async()=>await(await Q.api.auth.check.$get()).json()},Kt={queryKey:[`projects`],queryFn:async()=>{let e=await Q.api.projects.$get({param:{}});if(!e.ok)throw Error(`Failed to fetch projects: ${e.statusText}`);return await e.json()}},qt=(e,t)=>({queryKey:[`directory-listing`,e,t],queryFn:async()=>{let n=await Q.api[`file-system`][`directory-browser`].$get({query:{...e!==void 0&&e!==``?{currentPath:e}:{},...t===void 0?{}:{showHidden:t.toString()}}});if(!n.ok)throw Error(`Failed to fetch directory listing`);return await n.json()}}),Jt=(e,t)=>({queryKey:[`projects`,e],queryFn:async()=>{let n=await Q.api.projects[`:projectId`].$get({param:{projectId:e},query:{cursor:t}});if(!n.ok)throw Error(`Failed to fetch project: ${n.statusText}`);return await n.json()}}),Yt=(e,t)=>({queryKey:[`projects`,e,`sessions`,t],queryFn:async()=>{let n=await Q.api.projects[`:projectId`].sessions[`:sessionId`].$get({param:{projectId:e,sessionId:t}});if(!n.ok)throw Error(`Failed to fetch session: ${n.statusText}`);return await n.json()}}),Xt=e=>({queryKey:[`claude-commands`,e],queryFn:async()=>{let t=await Q.api.projects[`:projectId`][`claude-commands`].$get({param:{projectId:e}});if(!t.ok)throw Error(`Failed to fetch claude commands: ${t.statusText}`);return await t.json()}}),Zt={queryKey:[`sessionProcesses`],queryFn:async()=>{let e=await Q.api[`claude-code`][`session-processes`].$get({});if(!e.ok)throw Error(`Failed to fetch alive tasks: ${e.statusText}`);return await e.json()}},Qt=e=>({queryKey:[`git`,`current-revisions`,e],queryFn:async()=>{let t=await Q.api.projects[`:projectId`].git[`current-revisions`].$get({param:{projectId:e}});if(!t.ok)throw Error(`Failed to fetch current revisions: ${t.statusText}`);return await t.json()}}),$t=e=>({queryKey:[`git`,`branches`,e],queryFn:async()=>{let t=await Q.api.projects[`:projectId`].git.branches.$get({param:{projectId:e}});if(!t.ok)throw Error(`Failed to fetch branches: ${t.statusText}`);return await t.json()}}),en=(e,t,n)=>({queryKey:[`git`,`diff`,e,t,n],queryFn:async()=>{let r=await Q.api.projects[`:projectId`].git.diff.$post({param:{projectId:e},json:{fromRef:t,toRef:n}});if(!r.ok)throw Error(`Failed to fetch diff: ${r.statusText}`);return await r.json()}}),tn=e=>({queryKey:[`mcp`,`list`,e],queryFn:async()=>{let t=await Q.api.projects[`:projectId`].mcp.list.$get({param:{projectId:e}});if(!t.ok)throw Error(`Failed to fetch MCP list: ${t.statusText}`);return await t.json()}}),nn=(e,t)=>({queryKey:[`file-completion`,e,t],queryFn:async()=>{let n=await Q.api[`file-system`][`file-completion`].$get({query:{basePath:t,projectId:e}});if(!n.ok)throw Error(`Failed to fetch file completion`);return await n.json()}}),rn={queryKey:[`config`],queryFn:async()=>{let e=await Q.api.config.$get();if(!e.ok)throw Error(`Failed to fetch config: ${e.statusText}`);return await e.json()}},an={queryKey:[`version`],queryFn:async()=>{let e=await Q.api.version.$get();if(!e.ok)throw Error(`Failed to fetch system version: ${e.statusText}`);return await e.json()}},on={queryKey:[`cc`,`meta`],queryFn:async()=>{let e=await Q.api[`claude-code`].meta.$get();if(!e.ok)throw Error(`Failed to fetch system features: ${e.statusText}`);return await e.json()}},sn={queryKey:[`flags`],queryFn:async()=>{let e=await Q.api[`feature-flags`].$get();if(!e.ok)throw Error(`Failed to fetch feature flags: ${e.statusText}`);return await e.json()}},cn=(e,t)=>({queryKey:[`projects`,e,`sessions`,t,`agent-sessions`],queryFn:async()=>{let n=await Q.api.projects[`:projectId`].sessions[`:sessionId`][`agent-sessions`].$get({param:{projectId:e,sessionId:t}});if(!n.ok)throw Error(`Failed to fetch agent sessions: ${n.statusText}`);return await n.json()}}),ln=(e,t,n)=>({queryKey:[`projects`,e,`agent-sessions`,t,n],queryFn:async()=>{let r=await Q.api.projects[`:projectId`][`agent-sessions`][`:agentId`].$get({param:{projectId:e,agentId:t},query:{sessionId:n}});if(!r.ok)throw Error(`Failed to fetch agent session: ${r.statusText}`);return await r.json()}}),un=(e,t)=>({queryKey:[`search`,e,t?.limit,t?.projectId],queryFn:async()=>{let n=await Q.api.search.$get({query:{q:e,...t?.limit===void 0?{}:{limit:t.limit.toString()},...t?.projectId!==void 0&&t.projectId!==``?{projectId:t.projectId}:{}}});if(!n.ok)throw Error(`Failed to search: ${n.statusText}`);return await n.json()}}),dn={queryKey:[`notifications`],queryFn:async()=>{let e=await Q.api.notifications.$get();if(!e.ok)throw Error(`Failed to fetch notifications: ${e.statusText}`);return await e.json()}},fn={queryKey:[`pending-permission-requests`],queryFn:async()=>{let e=await Q.api[`claude-code`][`pending-permission-requests`].$get();if(!e.ok)throw Error(`Failed to fetch pending permission requests`);return await e.json()}},pn={queryKey:[`pending-question-requests`],queryFn:async()=>{let e=await Q.api[`claude-code`][`pending-question-requests`].$get();if(!e.ok)throw Error(`Failed to fetch pending question requests`);return await e.json()}},mn=(e,t)=>({queryKey:[`projects`,e,`files`,t],queryFn:async()=>{let n=await Q.api.projects[`:projectId`].files.$get({param:{projectId:e},query:{filePath:t}});if(!n.ok)throw Error(`Failed to fetch file content`);return await n.json()}}),hn=({children:e})=>{let t=jt(Nt),{data:n}=We({queryKey:$.queryKey,queryFn:$.queryFn});return(0,i.useEffect)(()=>{t({authEnabled:n.authEnabled,authenticated:n.authenticated,checked:!0})},[n,t]),(0,H.jsx)(H.Fragment,{children:e})},gn=()=>{let e=At(Nt),t=U(),n=f(),r=W({mutationFn:async e=>{await Q.api.auth.login.$post({json:{password:e}})},onSuccess:async()=>{await t.invalidateQueries({queryKey:$.queryKey}),n({to:`/projects`})}}),i=W({mutationFn:async()=>{await Q.api.auth.logout.$post(),await t.invalidateQueries({queryKey:$.queryKey})},onSuccess:()=>{n({to:`/login`})}});return{authEnabled:e.authEnabled,isAuthenticated:e.authenticated,login:r.mutateAsync,logout:i.mutateAsync}};export{ee as $,jt as A,Te as B,Zt as C,Nt as D,Q as E,We as F,le as G,ge as H,Ue as I,ce as J,oe as K,Re as L,yt as M,Tt as N,Mt as O,W as P,E as Q,ke as R,Yt as S,Gt as T,R as U,be as V,L as W,O as X,x as Y,D as Z,fn as _,on as a,m as at,Kt as b,qt as c,d as ct,mn as d,l as dt,b as et,$t as f,c as ft,dn as g,tn as h,ln as i,h as it,J as j,At as k,sn as l,u as lt,en as m,s as mt,gn as n,w as nt,Xt as o,p as ot,Qt as p,o as pt,se as q,cn as r,N as rt,rn as s,f as st,hn as t,k as tt,nn as u,a as ut,pn as v,an as w,un as x,Jt as y,U as z};
@@ -0,0 +1 @@
1
+ import{r as e}from"./rolldown-runtime-Dw2cE7zH.js";import{d as t,f as n}from"./markdown-parser-vendor-D9j1a-bm.js";import{E as r,P as i,g as a,n as o,st as s,z as c}from"./AuthProvider-BKc7q7ka.js";import{$ as l,A as u,C as d,D as f,E as p,M as m,N as h,O as g,S as _,T as v,Y as y,_ as b,b as x,et as S,j as C,k as w,v as T,w as E,x as D,y as O}from"./dist-DiGJ7VFi.js";import{n as k}from"./dist-CG2L4mx5.js";import{t as A}from"./createLucideIcon-BL_meogc.js";import{f as j,s as M}from"./card-DGrqtTaC.js";var N=A(`bell`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`,key:`11g9vi`}]]),ee=A(`check`,[[`path`,{d:`M20 6 9 17l-5-5`,key:`1gmf2c`}]]),te=A(`chevron-right`,[[`path`,{d:`m9 18 6-6-6-6`,key:`mthhwq`}]]),ne=A(`folder`,[[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),re=A(`plus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`M12 5v14`,key:`s699le`}]]),P=e(n(),1),F=t(),I=Object.freeze({position:`absolute`,border:0,width:1,height:1,padding:0,margin:-1,overflow:`hidden`,clip:`rect(0, 0, 0, 0)`,whiteSpace:`nowrap`,wordWrap:`normal`}),ie=`VisuallyHidden`,ae=P.forwardRef((e,t)=>(0,F.jsx)(u.span,{...e,ref:t,style:{...I,...e.style}}));ae.displayName=ie;var oe=ae;function se(e){let t=P.useRef({value:e,previous:e});return P.useMemo(()=>(t.current.value!==e&&(t.current.previous=t.current.value,t.current.value=e),t.current.previous),[e])}function ce(e){let[t,n]=P.useState(void 0);return f(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});let t=new ResizeObserver(t=>{if(!Array.isArray(t)||!t.length)return;let r=t[0],i,a;if(`borderBoxSize`in r){let e=r.borderBoxSize,t=Array.isArray(e)?e[0]:e;i=t.inlineSize,a=t.blockSize}else i=e.offsetWidth,a=e.offsetHeight;n({width:i,height:a})});return t.observe(e,{box:`border-box`}),()=>t.unobserve(e)}else n(void 0)},[e]),t}var le=`Checkbox`,[ue,de]=w(le),[fe,pe]=ue(le);function me(e){let{__scopeCheckbox:t,checked:n,children:r,defaultChecked:i,disabled:a,form:o,name:s,onCheckedChange:c,required:l,value:u=`on`,internal_do_not_use_render:d}=e,[f,m]=p({prop:n,defaultProp:i??!1,onChange:c,caller:le}),[h,g]=P.useState(null),[_,v]=P.useState(null),y=P.useRef(!1),b=h?!!o||!!h.closest(`form`):!0,x={checked:f,disabled:a,setChecked:m,control:h,setControl:g,name:s,form:o,value:u,hasConsumerStoppedPropagationRef:y,required:l,defaultChecked:L(i)?!1:i,isFormControl:b,bubbleInput:_,setBubbleInput:v};return(0,F.jsx)(fe,{scope:t,...x,children:Se(d)?d(x):r})}var he=`CheckboxTrigger`,ge=P.forwardRef(({__scopeCheckbox:e,onKeyDown:t,onClick:n,...r},i)=>{let{control:a,value:o,disabled:s,checked:c,required:l,setControl:d,setChecked:f,hasConsumerStoppedPropagationRef:p,isFormControl:m,bubbleInput:h}=pe(he,e),_=j(i,d),v=P.useRef(c);return P.useEffect(()=>{let e=a?.form;if(e){let t=()=>f(v.current);return e.addEventListener(`reset`,t),()=>e.removeEventListener(`reset`,t)}},[a,f]),(0,F.jsx)(u.button,{type:`button`,role:`checkbox`,"aria-checked":L(c)?`mixed`:c,"aria-required":l,"data-state":Ce(c),"data-disabled":s?``:void 0,disabled:s,value:o,...r,ref:_,onKeyDown:g(t,e=>{e.key===`Enter`&&e.preventDefault()}),onClick:g(n,e=>{f(e=>L(e)?!0:!e),h&&m&&(p.current=e.isPropagationStopped(),p.current||e.stopPropagation())})})});ge.displayName=he;var _e=P.forwardRef((e,t)=>{let{__scopeCheckbox:n,name:r,checked:i,defaultChecked:a,required:o,disabled:s,value:c,onCheckedChange:l,form:u,...d}=e;return(0,F.jsx)(me,{__scopeCheckbox:n,checked:i,defaultChecked:a,disabled:s,required:o,onCheckedChange:l,name:r,form:u,value:c,internal_do_not_use_render:({isFormControl:e})=>(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(ge,{...d,ref:t,__scopeCheckbox:n}),e&&(0,F.jsx)(xe,{__scopeCheckbox:n})]})})});_e.displayName=le;var ve=`CheckboxIndicator`,ye=P.forwardRef((e,t)=>{let{__scopeCheckbox:n,forceMount:r,...i}=e,a=pe(ve,n);return(0,F.jsx)(v,{present:r||L(a.checked)||a.checked===!0,children:(0,F.jsx)(u.span,{"data-state":Ce(a.checked),"data-disabled":a.disabled?``:void 0,...i,ref:t,style:{pointerEvents:`none`,...e.style}})})});ye.displayName=ve;var be=`CheckboxBubbleInput`,xe=P.forwardRef(({__scopeCheckbox:e,...t},n)=>{let{control:r,hasConsumerStoppedPropagationRef:i,checked:a,defaultChecked:o,required:s,disabled:c,name:l,value:d,form:f,bubbleInput:p,setBubbleInput:m}=pe(be,e),h=j(n,m),g=se(a),_=ce(r);P.useEffect(()=>{let e=p;if(!e)return;let t=window.HTMLInputElement.prototype,n=Object.getOwnPropertyDescriptor(t,`checked`).set,r=!i.current;if(g!==a&&n){let t=new Event(`click`,{bubbles:r});e.indeterminate=L(a),n.call(e,L(a)?!1:a),e.dispatchEvent(t)}},[p,g,a,i]);let v=P.useRef(L(a)?!1:a);return(0,F.jsx)(u.input,{type:`checkbox`,"aria-hidden":!0,defaultChecked:o??v.current,required:s,disabled:c,name:l,value:d,form:f,...t,tabIndex:-1,ref:h,style:{...t.style,..._,position:`absolute`,pointerEvents:`none`,opacity:0,margin:0,transform:`translateX(-100%)`}})});xe.displayName=be;function Se(e){return typeof e==`function`}function L(e){return e===`indeterminate`}function Ce(e){return L(e)?`indeterminate`:e?`checked`:`unchecked`}var we=[`top`,`right`,`bottom`,`left`],R=Math.min,z=Math.max,Te=Math.round,Ee=Math.floor,B=e=>({x:e,y:e}),De={left:`right`,right:`left`,bottom:`top`,top:`bottom`};function Oe(e,t,n){return z(e,R(t,n))}function V(e,t){return typeof e==`function`?e(t):e}function H(e){return e.split(`-`)[0]}function U(e){return e.split(`-`)[1]}function ke(e){return e===`x`?`y`:`x`}function Ae(e){return e===`y`?`height`:`width`}function W(e){let t=e[0];return t===`t`||t===`b`?`y`:`x`}function je(e){return ke(W(e))}function Me(e,t,n){n===void 0&&(n=!1);let r=U(e),i=je(e),a=Ae(i),o=i===`x`?r===(n?`end`:`start`)?`right`:`left`:r===`start`?`bottom`:`top`;return t.reference[a]>t.floating[a]&&(o=Ve(o)),[o,Ve(o)]}function Ne(e){let t=Ve(e);return[Pe(e),t,Pe(t)]}function Pe(e){return e.includes(`start`)?e.replace(`start`,`end`):e.replace(`end`,`start`)}var Fe=[`left`,`right`],Ie=[`right`,`left`],Le=[`top`,`bottom`],Re=[`bottom`,`top`];function ze(e,t,n){switch(e){case`top`:case`bottom`:return n?t?Ie:Fe:t?Fe:Ie;case`left`:case`right`:return t?Le:Re;default:return[]}}function Be(e,t,n,r){let i=U(e),a=ze(H(e),n===`start`,r);return i&&(a=a.map(e=>e+`-`+i),t&&(a=a.concat(a.map(Pe)))),a}function Ve(e){let t=H(e);return De[t]+e.slice(t.length)}function He(e){return{top:0,right:0,bottom:0,left:0,...e}}function Ue(e){return typeof e==`number`?{top:e,right:e,bottom:e,left:e}:He(e)}function We(e){let{x:t,y:n,width:r,height:i}=e;return{width:r,height:i,top:n,left:t,right:t+r,bottom:n+i,x:t,y:n}}function Ge(e,t,n){let{reference:r,floating:i}=e,a=W(t),o=je(t),s=Ae(o),c=H(t),l=a===`y`,u=r.x+r.width/2-i.width/2,d=r.y+r.height/2-i.height/2,f=r[s]/2-i[s]/2,p;switch(c){case`top`:p={x:u,y:r.y-i.height};break;case`bottom`:p={x:u,y:r.y+r.height};break;case`right`:p={x:r.x+r.width,y:d};break;case`left`:p={x:r.x-i.width,y:d};break;default:p={x:r.x,y:r.y}}switch(U(t)){case`start`:p[o]-=f*(n&&l?-1:1);break;case`end`:p[o]+=f*(n&&l?-1:1);break}return p}async function Ke(e,t){t===void 0&&(t={});let{x:n,y:r,platform:i,rects:a,elements:o,strategy:s}=e,{boundary:c=`clippingAncestors`,rootBoundary:l=`viewport`,elementContext:u=`floating`,altBoundary:d=!1,padding:f=0}=V(t,e),p=Ue(f),m=o[d?u===`floating`?`reference`:`floating`:u],h=We(await i.getClippingRect({element:await(i.isElement==null?void 0:i.isElement(m))??!0?m:m.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(o.floating)),boundary:c,rootBoundary:l,strategy:s})),g=u===`floating`?{x:n,y:r,width:a.floating.width,height:a.floating.height}:a.reference,_=await(i.getOffsetParent==null?void 0:i.getOffsetParent(o.floating)),v=await(i.isElement==null?void 0:i.isElement(_))&&await(i.getScale==null?void 0:i.getScale(_))||{x:1,y:1},y=We(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:o,rect:g,offsetParent:_,strategy:s}):g);return{top:(h.top-y.top+p.top)/v.y,bottom:(y.bottom-h.bottom+p.bottom)/v.y,left:(h.left-y.left+p.left)/v.x,right:(y.right-h.right+p.right)/v.x}}var qe=50,Je=async(e,t,n)=>{let{placement:r=`bottom`,strategy:i=`absolute`,middleware:a=[],platform:o}=n,s=o.detectOverflow?o:{...o,detectOverflow:Ke},c=await(o.isRTL==null?void 0:o.isRTL(t)),l=await o.getElementRects({reference:e,floating:t,strategy:i}),{x:u,y:d}=Ge(l,r,c),f=r,p=0,m={};for(let n=0;n<a.length;n++){let h=a[n];if(!h)continue;let{name:g,fn:_}=h,{x:v,y,data:b,reset:x}=await _({x:u,y:d,initialPlacement:r,placement:f,strategy:i,middlewareData:m,rects:l,platform:s,elements:{reference:e,floating:t}});u=v??u,d=y??d,m[g]={...m[g],...b},x&&p<qe&&(p++,typeof x==`object`&&(x.placement&&(f=x.placement),x.rects&&(l=x.rects===!0?await o.getElementRects({reference:e,floating:t,strategy:i}):x.rects),{x:u,y:d}=Ge(l,f,c)),n=-1)}return{x:u,y:d,placement:f,strategy:i,middlewareData:m}},Ye=e=>({name:`arrow`,options:e,async fn(t){let{x:n,y:r,placement:i,rects:a,platform:o,elements:s,middlewareData:c}=t,{element:l,padding:u=0}=V(e,t)||{};if(l==null)return{};let d=Ue(u),f={x:n,y:r},p=je(i),m=Ae(p),h=await o.getDimensions(l),g=p===`y`,_=g?`top`:`left`,v=g?`bottom`:`right`,y=g?`clientHeight`:`clientWidth`,b=a.reference[m]+a.reference[p]-f[p]-a.floating[m],x=f[p]-a.reference[p],S=await(o.getOffsetParent==null?void 0:o.getOffsetParent(l)),C=S?S[y]:0;(!C||!await(o.isElement==null?void 0:o.isElement(S)))&&(C=s.floating[y]||a.floating[m]);let w=b/2-x/2,T=C/2-h[m]/2-1,E=R(d[_],T),D=R(d[v],T),O=E,k=C-h[m]-D,A=C/2-h[m]/2+w,j=Oe(O,A,k),M=!c.arrow&&U(i)!=null&&A!==j&&a.reference[m]/2-(A<O?E:D)-h[m]/2<0,N=M?A<O?A-O:A-k:0;return{[p]:f[p]+N,data:{[p]:j,centerOffset:A-j-N,...M&&{alignmentOffset:N}},reset:M}}}),Xe=function(e){return e===void 0&&(e={}),{name:`flip`,options:e,async fn(t){var n;let{placement:r,middlewareData:i,rects:a,initialPlacement:o,platform:s,elements:c}=t,{mainAxis:l=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:f=`bestFit`,fallbackAxisSideDirection:p=`none`,flipAlignment:m=!0,...h}=V(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};let g=H(r),_=W(o),v=H(o)===o,y=await(s.isRTL==null?void 0:s.isRTL(c.floating)),b=d||(v||!m?[Ve(o)]:Ne(o)),x=p!==`none`;!d&&x&&b.push(...Be(o,m,p,y));let S=[o,...b],C=await s.detectOverflow(t,h),w=[],T=i.flip?.overflows||[];if(l&&w.push(C[g]),u){let e=Me(r,a,y);w.push(C[e[0]],C[e[1]])}if(T=[...T,{placement:r,overflows:w}],!w.every(e=>e<=0)){let e=(i.flip?.index||0)+1,t=S[e];if(t&&(!(u===`alignment`&&_!==W(t))||T.every(e=>W(e.placement)===_?e.overflows[0]>0:!0)))return{data:{index:e,overflows:T},reset:{placement:t}};let n=T.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0]?.placement;if(!n)switch(f){case`bestFit`:{let e=T.filter(e=>{if(x){let t=W(e.placement);return t===_||t===`y`}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0]?.[0];e&&(n=e);break}case`initialPlacement`:n=o;break}if(r!==n)return{reset:{placement:n}}}return{}}}};function Ze(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Qe(e){return we.some(t=>e[t]>=0)}var $e=function(e){return e===void 0&&(e={}),{name:`hide`,options:e,async fn(t){let{rects:n,platform:r}=t,{strategy:i=`referenceHidden`,...a}=V(e,t);switch(i){case`referenceHidden`:{let e=Ze(await r.detectOverflow(t,{...a,elementContext:`reference`}),n.reference);return{data:{referenceHiddenOffsets:e,referenceHidden:Qe(e)}}}case`escaped`:{let e=Ze(await r.detectOverflow(t,{...a,altBoundary:!0}),n.floating);return{data:{escapedOffsets:e,escaped:Qe(e)}}}default:return{}}}}},et=new Set([`left`,`top`]);async function tt(e,t){let{placement:n,platform:r,elements:i}=e,a=await(r.isRTL==null?void 0:r.isRTL(i.floating)),o=H(n),s=U(n),c=W(n)===`y`,l=et.has(o)?-1:1,u=a&&c?-1:1,d=V(t,e),{mainAxis:f,crossAxis:p,alignmentAxis:m}=typeof d==`number`?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&typeof m==`number`&&(p=s===`end`?m*-1:m),c?{x:p*u,y:f*l}:{x:f*l,y:p*u}}var nt=function(e){return e===void 0&&(e=0),{name:`offset`,options:e,async fn(t){var n;let{x:r,y:i,placement:a,middlewareData:o}=t,s=await tt(t,e);return a===o.offset?.placement&&(n=o.arrow)!=null&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:a}}}}},rt=function(e){return e===void 0&&(e={}),{name:`shift`,options:e,async fn(t){let{x:n,y:r,placement:i,platform:a}=t,{mainAxis:o=!0,crossAxis:s=!1,limiter:c={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=V(e,t),u={x:n,y:r},d=await a.detectOverflow(t,l),f=W(H(i)),p=ke(f),m=u[p],h=u[f];if(o){let e=p===`y`?`top`:`left`,t=p===`y`?`bottom`:`right`,n=m+d[e],r=m-d[t];m=Oe(n,m,r)}if(s){let e=f===`y`?`top`:`left`,t=f===`y`?`bottom`:`right`,n=h+d[e],r=h-d[t];h=Oe(n,h,r)}let g=c.fn({...t,[p]:m,[f]:h});return{...g,data:{x:g.x-n,y:g.y-r,enabled:{[p]:o,[f]:s}}}}}},it=function(e){return e===void 0&&(e={}),{options:e,fn(t){let{x:n,y:r,placement:i,rects:a,middlewareData:o}=t,{offset:s=0,mainAxis:c=!0,crossAxis:l=!0}=V(e,t),u={x:n,y:r},d=W(i),f=ke(d),p=u[f],m=u[d],h=V(s,t),g=typeof h==`number`?{mainAxis:h,crossAxis:0}:{mainAxis:0,crossAxis:0,...h};if(c){let e=f===`y`?`height`:`width`,t=a.reference[f]-a.floating[e]+g.mainAxis,n=a.reference[f]+a.reference[e]-g.mainAxis;p<t?p=t:p>n&&(p=n)}if(l){let e=f===`y`?`width`:`height`,t=et.has(H(i)),n=a.reference[d]-a.floating[e]+(t&&o.offset?.[d]||0)+(t?0:g.crossAxis),r=a.reference[d]+a.reference[e]+(t?0:o.offset?.[d]||0)-(t?g.crossAxis:0);m<n?m=n:m>r&&(m=r)}return{[f]:p,[d]:m}}}},at=function(e){return e===void 0&&(e={}),{name:`size`,options:e,async fn(t){var n,r;let{placement:i,rects:a,platform:o,elements:s}=t,{apply:c=()=>{},...l}=V(e,t),u=await o.detectOverflow(t,l),d=H(i),f=U(i),p=W(i)===`y`,{width:m,height:h}=a.floating,g,_;d===`top`||d===`bottom`?(g=d,_=f===(await(o.isRTL==null?void 0:o.isRTL(s.floating))?`start`:`end`)?`left`:`right`):(_=d,g=f===`end`?`top`:`bottom`);let v=h-u.top-u.bottom,y=m-u.left-u.right,b=R(h-u[g],v),x=R(m-u[_],y),S=!t.middlewareData.shift,C=b,w=x;if((n=t.middlewareData.shift)!=null&&n.enabled.x&&(w=y),(r=t.middlewareData.shift)!=null&&r.enabled.y&&(C=v),S&&!f){let e=z(u.left,0),t=z(u.right,0),n=z(u.top,0),r=z(u.bottom,0);p?w=m-2*(e!==0||t!==0?e+t:z(u.left,u.right)):C=h-2*(n!==0||r!==0?n+r:z(u.top,u.bottom))}await c({...t,availableWidth:w,availableHeight:C});let T=await o.getDimensions(s.floating);return m!==T.width||h!==T.height?{reset:{rects:!0}}:{}}}};function ot(){return typeof window<`u`}function st(e){return ct(e)?(e.nodeName||``).toLowerCase():`#document`}function G(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function K(e){return((ct(e)?e.ownerDocument:e.document)||window.document)?.documentElement}function ct(e){return ot()?e instanceof Node||e instanceof G(e).Node:!1}function q(e){return ot()?e instanceof Element||e instanceof G(e).Element:!1}function J(e){return ot()?e instanceof HTMLElement||e instanceof G(e).HTMLElement:!1}function lt(e){return!ot()||typeof ShadowRoot>`u`?!1:e instanceof ShadowRoot||e instanceof G(e).ShadowRoot}function ut(e){let{overflow:t,overflowX:n,overflowY:r,display:i}=X(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&i!==`inline`&&i!==`contents`}function dt(e){return/^(table|td|th)$/.test(st(e))}function ft(e){try{if(e.matches(`:popover-open`))return!0}catch{}try{return e.matches(`:modal`)}catch{return!1}}var pt=/transform|translate|scale|rotate|perspective|filter/,mt=/paint|layout|strict|content/,Y=e=>!!e&&e!==`none`,ht;function gt(e){let t=q(e)?X(e):e;return Y(t.transform)||Y(t.translate)||Y(t.scale)||Y(t.rotate)||Y(t.perspective)||!vt()&&(Y(t.backdropFilter)||Y(t.filter))||pt.test(t.willChange||``)||mt.test(t.contain||``)}function _t(e){let t=Z(e);for(;J(t)&&!yt(t);){if(gt(t))return t;if(ft(t))return null;t=Z(t)}return null}function vt(){return ht??=typeof CSS<`u`&&CSS.supports&&CSS.supports(`-webkit-backdrop-filter`,`none`),ht}function yt(e){return/^(html|body|#document)$/.test(st(e))}function X(e){return G(e).getComputedStyle(e)}function bt(e){return q(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Z(e){if(st(e)===`html`)return e;let t=e.assignedSlot||e.parentNode||lt(e)&&e.host||K(e);return lt(t)?t.host:t}function xt(e){let t=Z(e);return yt(t)?e.ownerDocument?e.ownerDocument.body:e.body:J(t)&&ut(t)?t:xt(t)}function St(e,t,n){t===void 0&&(t=[]),n===void 0&&(n=!0);let r=xt(e),i=r===e.ownerDocument?.body,a=G(r);if(i){let e=Ct(a);return t.concat(a,a.visualViewport||[],ut(r)?r:[],e&&n?St(e):[])}else return t.concat(r,St(r,[],n))}function Ct(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function wt(e){let t=X(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,i=J(e),a=i?e.offsetWidth:n,o=i?e.offsetHeight:r,s=Te(n)!==a||Te(r)!==o;return s&&(n=a,r=o),{width:n,height:r,$:s}}function Tt(e){return q(e)?e:e.contextElement}function Et(e){let t=Tt(e);if(!J(t))return B(1);let n=t.getBoundingClientRect(),{width:r,height:i,$:a}=wt(t),o=(a?Te(n.width):n.width)/r,s=(a?Te(n.height):n.height)/i;return(!o||!Number.isFinite(o))&&(o=1),(!s||!Number.isFinite(s))&&(s=1),{x:o,y:s}}var Dt=B(0);function Ot(e){let t=G(e);return!vt()||!t.visualViewport?Dt:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function kt(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==G(e)?!1:t}function Q(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);let i=e.getBoundingClientRect(),a=Tt(e),o=B(1);t&&(r?q(r)&&(o=Et(r)):o=Et(e));let s=kt(a,n,r)?Ot(a):B(0),c=(i.left+s.x)/o.x,l=(i.top+s.y)/o.y,u=i.width/o.x,d=i.height/o.y;if(a){let e=G(a),t=r&&q(r)?G(r):r,n=e,i=Ct(n);for(;i&&r&&t!==n;){let e=Et(i),t=i.getBoundingClientRect(),r=X(i),a=t.left+(i.clientLeft+parseFloat(r.paddingLeft))*e.x,o=t.top+(i.clientTop+parseFloat(r.paddingTop))*e.y;c*=e.x,l*=e.y,u*=e.x,d*=e.y,c+=a,l+=o,n=G(i),i=Ct(n)}}return We({width:u,height:d,x:c,y:l})}function At(e,t){let n=bt(e).scrollLeft;return t?t.left+n:Q(K(e)).left+n}function jt(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-At(e,n),y:n.top+t.scrollTop}}function Mt(e){let{elements:t,rect:n,offsetParent:r,strategy:i}=e,a=i===`fixed`,o=K(r),s=t?ft(t.floating):!1;if(r===o||s&&a)return n;let c={scrollLeft:0,scrollTop:0},l=B(1),u=B(0),d=J(r);if((d||!d&&!a)&&((st(r)!==`body`||ut(o))&&(c=bt(r)),d)){let e=Q(r);l=Et(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}let f=o&&!d&&!a?jt(o,c):B(0);return{width:n.width*l.x,height:n.height*l.y,x:n.x*l.x-c.scrollLeft*l.x+u.x+f.x,y:n.y*l.y-c.scrollTop*l.y+u.y+f.y}}function Nt(e){return Array.from(e.getClientRects())}function Pt(e){let t=K(e),n=bt(e),r=e.ownerDocument.body,i=z(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),a=z(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight),o=-n.scrollLeft+At(e),s=-n.scrollTop;return X(r).direction===`rtl`&&(o+=z(t.clientWidth,r.clientWidth)-i),{width:i,height:a,x:o,y:s}}var Ft=25;function It(e,t){let n=G(e),r=K(e),i=n.visualViewport,a=r.clientWidth,o=r.clientHeight,s=0,c=0;if(i){a=i.width,o=i.height;let e=vt();(!e||e&&t===`fixed`)&&(s=i.offsetLeft,c=i.offsetTop)}let l=At(r);if(l<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i=e.compatMode===`CSS1Compat`&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,o=Math.abs(r.clientWidth-t.clientWidth-i);o<=Ft&&(a-=o)}else l<=Ft&&(a+=l);return{width:a,height:o,x:s,y:c}}function Lt(e,t){let n=Q(e,!0,t===`fixed`),r=n.top+e.clientTop,i=n.left+e.clientLeft,a=J(e)?Et(e):B(1);return{width:e.clientWidth*a.x,height:e.clientHeight*a.y,x:i*a.x,y:r*a.y}}function Rt(e,t,n){let r;if(t===`viewport`)r=It(e,n);else if(t===`document`)r=Pt(K(e));else if(q(t))r=Lt(t,n);else{let n=Ot(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return We(r)}function zt(e,t){let n=Z(e);return n===t||!q(n)||yt(n)?!1:X(n).position===`fixed`||zt(n,t)}function Bt(e,t){let n=t.get(e);if(n)return n;let r=St(e,[],!1).filter(e=>q(e)&&st(e)!==`body`),i=null,a=X(e).position===`fixed`,o=a?Z(e):e;for(;q(o)&&!yt(o);){let t=X(o),n=gt(o);!n&&t.position===`fixed`&&(i=null),(a?!n&&!i:!n&&t.position===`static`&&i&&(i.position===`absolute`||i.position===`fixed`)||ut(o)&&!n&&zt(e,o))?r=r.filter(e=>e!==o):i=t,o=Z(o)}return t.set(e,r),r}function Vt(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e,a=[...n===`clippingAncestors`?ft(t)?[]:Bt(t,this._c):[].concat(n),r],o=Rt(t,a[0],i),s=o.top,c=o.right,l=o.bottom,u=o.left;for(let e=1;e<a.length;e++){let n=Rt(t,a[e],i);s=z(n.top,s),c=R(n.right,c),l=R(n.bottom,l),u=z(n.left,u)}return{width:c-u,height:l-s,x:u,y:s}}function Ht(e){let{width:t,height:n}=wt(e);return{width:t,height:n}}function Ut(e,t,n){let r=J(t),i=K(t),a=n===`fixed`,o=Q(e,!0,a,t),s={scrollLeft:0,scrollTop:0},c=B(0);function l(){c.x=At(i)}if(r||!r&&!a)if((st(t)!==`body`||ut(i))&&(s=bt(t)),r){let e=Q(t,!0,a,t);c.x=e.x+t.clientLeft,c.y=e.y+t.clientTop}else i&&l();a&&!r&&i&&l();let u=i&&!r&&!a?jt(i,s):B(0);return{x:o.left+s.scrollLeft-c.x-u.x,y:o.top+s.scrollTop-c.y-u.y,width:o.width,height:o.height}}function Wt(e){return X(e).position===`static`}function Gt(e,t){if(!J(e)||X(e).position===`fixed`)return null;if(t)return t(e);let n=e.offsetParent;return K(e)===n&&(n=n.ownerDocument.body),n}function Kt(e,t){let n=G(e);if(ft(e))return n;if(!J(e)){let t=Z(e);for(;t&&!yt(t);){if(q(t)&&!Wt(t))return t;t=Z(t)}return n}let r=Gt(e,t);for(;r&&dt(r)&&Wt(r);)r=Gt(r,t);return r&&yt(r)&&Wt(r)&&!gt(r)?n:r||_t(e)||n}var qt=async function(e){let t=this.getOffsetParent||Kt,n=this.getDimensions,r=await n(e.floating);return{reference:Ut(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}};function Jt(e){return X(e).direction===`rtl`}var Yt={convertOffsetParentRelativeRectToViewportRelativeRect:Mt,getDocumentElement:K,getClippingRect:Vt,getOffsetParent:Kt,getElementRects:qt,getClientRects:Nt,getDimensions:Ht,getScale:Et,isElement:q,isRTL:Jt};function Xt(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function Zt(e,t){let n=null,r,i=K(e);function a(){var e;clearTimeout(r),(e=n)==null||e.disconnect(),n=null}function o(s,c){s===void 0&&(s=!1),c===void 0&&(c=1),a();let l=e.getBoundingClientRect(),{left:u,top:d,width:f,height:p}=l;if(s||t(),!f||!p)return;let m=Ee(d),h=Ee(i.clientWidth-(u+f)),g=Ee(i.clientHeight-(d+p)),_=Ee(u),v={rootMargin:-m+`px `+-h+`px `+-g+`px `+-_+`px`,threshold:z(0,R(1,c))||1},y=!0;function b(t){let n=t[0].intersectionRatio;if(n!==c){if(!y)return o();n?o(!1,n):r=setTimeout(()=>{o(!1,1e-7)},1e3)}n===1&&!Xt(l,e.getBoundingClientRect())&&o(),y=!1}try{n=new IntersectionObserver(b,{...v,root:i.ownerDocument})}catch{n=new IntersectionObserver(b,v)}n.observe(e)}return o(!0),a}function Qt(e,t,n,r){r===void 0&&(r={});let{ancestorScroll:i=!0,ancestorResize:a=!0,elementResize:o=typeof ResizeObserver==`function`,layoutShift:s=typeof IntersectionObserver==`function`,animationFrame:c=!1}=r,l=Tt(e),u=i||a?[...l?St(l):[],...t?St(t):[]]:[];u.forEach(e=>{i&&e.addEventListener(`scroll`,n,{passive:!0}),a&&e.addEventListener(`resize`,n)});let d=l&&s?Zt(l,n):null,f=-1,p=null;o&&(p=new ResizeObserver(e=>{let[r]=e;r&&r.target===l&&p&&t&&(p.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame(()=>{var e;(e=p)==null||e.observe(t)})),n()}),l&&!c&&p.observe(l),t&&p.observe(t));let m,h=c?Q(e):null;c&&g();function g(){let t=Q(e);h&&!Xt(h,t)&&n(),h=t,m=requestAnimationFrame(g)}return n(),()=>{var e;u.forEach(e=>{i&&e.removeEventListener(`scroll`,n),a&&e.removeEventListener(`resize`,n)}),d?.(),(e=p)==null||e.disconnect(),p=null,c&&cancelAnimationFrame(m)}}var $t=nt,en=rt,tn=Xe,nn=at,rn=$e,an=Ye,on=it,sn=(e,t,n)=>{let r=new Map,i={platform:Yt,...n},a={...i.platform,_c:r};return Je(e,t,{...i,platform:a})},cn=e(S(),1),ln=typeof document<`u`?P.useLayoutEffect:function(){};function un(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e==`function`&&e.toString()===t.toString())return!0;let n,r,i;if(e&&t&&typeof e==`object`){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;r--!==0;)if(!un(e[r],t[r]))return!1;return!0}if(i=Object.keys(e),n=i.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(t,i[r]))return!1;for(r=n;r--!==0;){let n=i[r];if(!(n===`_owner`&&e.$$typeof)&&!un(e[n],t[n]))return!1}return!0}return e!==e&&t!==t}function dn(e){return typeof window>`u`?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function fn(e,t){let n=dn(e);return Math.round(t*n)/n}function pn(e){let t=P.useRef(e);return ln(()=>{t.current=e}),t}function mn(e){e===void 0&&(e={});let{placement:t=`bottom`,strategy:n=`absolute`,middleware:r=[],platform:i,elements:{reference:a,floating:o}={},transform:s=!0,whileElementsMounted:c,open:l}=e,[u,d]=P.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[f,p]=P.useState(r);un(f,r)||p(r);let[m,h]=P.useState(null),[g,_]=P.useState(null),v=P.useCallback(e=>{e!==S.current&&(S.current=e,h(e))},[]),y=P.useCallback(e=>{e!==C.current&&(C.current=e,_(e))},[]),b=a||m,x=o||g,S=P.useRef(null),C=P.useRef(null),w=P.useRef(u),T=c!=null,E=pn(c),D=pn(i),O=pn(l),k=P.useCallback(()=>{if(!S.current||!C.current)return;let e={placement:t,strategy:n,middleware:f};D.current&&(e.platform=D.current),sn(S.current,C.current,e).then(e=>{let t={...e,isPositioned:O.current!==!1};A.current&&!un(w.current,t)&&(w.current=t,cn.flushSync(()=>{d(t)}))})},[f,t,n,D,O]);ln(()=>{l===!1&&w.current.isPositioned&&(w.current.isPositioned=!1,d(e=>({...e,isPositioned:!1})))},[l]);let A=P.useRef(!1);ln(()=>(A.current=!0,()=>{A.current=!1}),[]),ln(()=>{if(b&&(S.current=b),x&&(C.current=x),b&&x){if(E.current)return E.current(b,x,k);k()}},[b,x,k,E,T]);let j=P.useMemo(()=>({reference:S,floating:C,setReference:v,setFloating:y}),[v,y]),M=P.useMemo(()=>({reference:b,floating:x}),[b,x]),N=P.useMemo(()=>{let e={position:n,left:0,top:0};if(!M.floating)return e;let t=fn(M.floating,u.x),r=fn(M.floating,u.y);return s?{...e,transform:`translate(`+t+`px, `+r+`px)`,...dn(M.floating)>=1.5&&{willChange:`transform`}}:{position:n,left:t,top:r}},[n,s,M.floating,u.x,u.y]);return P.useMemo(()=>({...u,update:k,refs:j,elements:M,floatingStyles:N}),[u,k,j,M,N])}var hn=e=>{function t(e){return{}.hasOwnProperty.call(e,`current`)}return{name:`arrow`,options:e,fn(n){let{element:r,padding:i}=typeof e==`function`?e(n):e;return r&&t(r)?r.current==null?{}:an({element:r.current,padding:i}).fn(n):r?an({element:r,padding:i}).fn(n):{}}}},gn=(e,t)=>{let n=$t(e);return{name:n.name,fn:n.fn,options:[e,t]}},_n=(e,t)=>{let n=en(e);return{name:n.name,fn:n.fn,options:[e,t]}},vn=(e,t)=>({fn:on(e).fn,options:[e,t]}),yn=(e,t)=>{let n=tn(e);return{name:n.name,fn:n.fn,options:[e,t]}},bn=(e,t)=>{let n=nn(e);return{name:n.name,fn:n.fn,options:[e,t]}},xn=(e,t)=>{let n=rn(e);return{name:n.name,fn:n.fn,options:[e,t]}},Sn=(e,t)=>{let n=hn(e);return{name:n.name,fn:n.fn,options:[e,t]}},Cn=`Arrow`,wn=P.forwardRef((e,t)=>{let{children:n,width:r=10,height:i=5,...a}=e;return(0,F.jsx)(u.svg,{...a,ref:t,width:r,height:i,viewBox:`0 0 30 10`,preserveAspectRatio:`none`,children:e.asChild?n:(0,F.jsx)(`polygon`,{points:`0,0 30,0 15,10`})})});wn.displayName=Cn;var Tn=wn,En=`Popper`,[Dn,On]=w(En),[kn,An]=Dn(En),jn=e=>{let{__scopePopper:t,children:n}=e,[r,i]=P.useState(null);return(0,F.jsx)(kn,{scope:t,anchor:r,onAnchorChange:i,children:n})};jn.displayName=En;var Mn=`PopperAnchor`,Nn=P.forwardRef((e,t)=>{let{__scopePopper:n,virtualRef:r,...i}=e,a=An(Mn,n),o=P.useRef(null),s=j(t,o),c=P.useRef(null);return P.useEffect(()=>{let e=c.current;c.current=r?.current||o.current,e!==c.current&&a.onAnchorChange(c.current)}),r?null:(0,F.jsx)(u.div,{...i,ref:s})});Nn.displayName=Mn;var Pn=`PopperContent`,[Fn,In]=Dn(Pn),Ln=P.forwardRef((e,t)=>{let{__scopePopper:n,side:r=`bottom`,sideOffset:i=0,align:a=`center`,alignOffset:o=0,arrowPadding:s=0,avoidCollisions:c=!0,collisionBoundary:l=[],collisionPadding:p=0,sticky:m=`partial`,hideWhenDetached:h=!1,updatePositionStrategy:g=`optimized`,onPlaced:_,...v}=e,y=An(Pn,n),[b,x]=P.useState(null),S=j(t,e=>x(e)),[C,w]=P.useState(null),T=ce(C),E=T?.width??0,D=T?.height??0,O=r+(a===`center`?``:`-`+a),k=typeof p==`number`?p:{top:0,right:0,bottom:0,left:0,...p},A=Array.isArray(l)?l:[l],M=A.length>0,N={padding:k,boundary:A.filter(Vn),altBoundary:M},{refs:ee,floatingStyles:te,placement:ne,isPositioned:re,middlewareData:I}=mn({strategy:`fixed`,placement:O,whileElementsMounted:(...e)=>Qt(...e,{animationFrame:g===`always`}),elements:{reference:y.anchor},middleware:[gn({mainAxis:i+D,alignmentAxis:o}),c&&_n({mainAxis:!0,crossAxis:!1,limiter:m===`partial`?vn():void 0,...N}),c&&yn({...N}),bn({...N,apply:({elements:e,rects:t,availableWidth:n,availableHeight:r})=>{let{width:i,height:a}=t.reference,o=e.floating.style;o.setProperty(`--radix-popper-available-width`,`${n}px`),o.setProperty(`--radix-popper-available-height`,`${r}px`),o.setProperty(`--radix-popper-anchor-width`,`${i}px`),o.setProperty(`--radix-popper-anchor-height`,`${a}px`)}}),C&&Sn({element:C,padding:s}),Hn({arrowWidth:E,arrowHeight:D}),h&&xn({strategy:`referenceHidden`,...N})]}),[ie,ae]=Un(ne),oe=d(_);f(()=>{re&&oe?.()},[re,oe]);let se=I.arrow?.x,le=I.arrow?.y,ue=I.arrow?.centerOffset!==0,[de,fe]=P.useState();return f(()=>{b&&fe(window.getComputedStyle(b).zIndex)},[b]),(0,F.jsx)(`div`,{ref:ee.setFloating,"data-radix-popper-content-wrapper":``,style:{...te,transform:re?te.transform:`translate(0, -200%)`,minWidth:`max-content`,zIndex:de,"--radix-popper-transform-origin":[I.transformOrigin?.x,I.transformOrigin?.y].join(` `),...I.hide?.referenceHidden&&{visibility:`hidden`,pointerEvents:`none`}},dir:e.dir,children:(0,F.jsx)(Fn,{scope:n,placedSide:ie,onArrowChange:w,arrowX:se,arrowY:le,shouldHideArrow:ue,children:(0,F.jsx)(u.div,{"data-side":ie,"data-align":ae,...v,ref:S,style:{...v.style,animation:re?void 0:`none`}})})})});Ln.displayName=Pn;var Rn=`PopperArrow`,zn={top:`bottom`,right:`left`,bottom:`top`,left:`right`},Bn=P.forwardRef(function(e,t){let{__scopePopper:n,...r}=e,i=In(Rn,n),a=zn[i.placedSide];return(0,F.jsx)(`span`,{ref:i.onArrowChange,style:{position:`absolute`,left:i.arrowX,top:i.arrowY,[a]:0,transformOrigin:{top:``,right:`0 0`,bottom:`center 0`,left:`100% 0`}[i.placedSide],transform:{top:`translateY(100%)`,right:`translateY(50%) rotate(90deg) translateX(-50%)`,bottom:`rotate(180deg)`,left:`translateY(50%) rotate(-90deg) translateX(50%)`}[i.placedSide],visibility:i.shouldHideArrow?`hidden`:void 0},children:(0,F.jsx)(Tn,{...r,ref:t,style:{...r.style,display:`block`}})})});Bn.displayName=Rn;function Vn(e){return e!==null}var Hn=e=>({name:`transformOrigin`,options:e,fn(t){let{placement:n,rects:r,middlewareData:i}=t,a=i.arrow?.centerOffset!==0,o=a?0:e.arrowWidth,s=a?0:e.arrowHeight,[c,l]=Un(n),u={start:`0%`,center:`50%`,end:`100%`}[l],d=(i.arrow?.x??0)+o/2,f=(i.arrow?.y??0)+s/2,p=``,m=``;return c===`bottom`?(p=a?u:`${d}px`,m=`${-s}px`):c===`top`?(p=a?u:`${d}px`,m=`${r.floating.height+s}px`):c===`right`?(p=`${-s}px`,m=a?u:`${f}px`):c===`left`&&(p=`${r.floating.width+s}px`,m=a?u:`${f}px`),{data:{x:p,y:m}}}});function Un(e){let[t,n=`center`]=e.split(`-`);return[t,n]}var Wn=jn,Gn=Nn,Kn=Ln,qn=Bn,Jn=`Popover`,[Yn,Xn]=w(Jn,[On]),Zn=On(),[Qn,$]=Yn(Jn),$n=e=>{let{__scopePopover:t,children:n,open:r,defaultOpen:i,onOpenChange:a,modal:o=!1}=e,s=Zn(t),c=P.useRef(null),[l,u]=P.useState(!1),[d,f]=p({prop:r,defaultProp:i??!1,onChange:a,caller:Jn});return(0,F.jsx)(Wn,{...s,children:(0,F.jsx)(Qn,{scope:t,contentId:E(),triggerRef:c,open:d,onOpenChange:f,onOpenToggle:P.useCallback(()=>f(e=>!e),[f]),hasCustomAnchor:l,onCustomAnchorAdd:P.useCallback(()=>u(!0),[]),onCustomAnchorRemove:P.useCallback(()=>u(!1),[]),modal:o,children:n})})};$n.displayName=Jn;var er=`PopoverAnchor`,tr=P.forwardRef((e,t)=>{let{__scopePopover:n,...r}=e,i=$(er,n),a=Zn(n),{onCustomAnchorAdd:o,onCustomAnchorRemove:s}=i;return P.useEffect(()=>(o(),()=>s()),[o,s]),(0,F.jsx)(Gn,{...a,...r,ref:t})});tr.displayName=er;var nr=`PopoverTrigger`,rr=P.forwardRef((e,t)=>{let{__scopePopover:n,...r}=e,i=$(nr,n),a=Zn(n),o=j(t,i.triggerRef),s=(0,F.jsx)(u.button,{type:`button`,"aria-haspopup":`dialog`,"aria-expanded":i.open,"aria-controls":i.contentId,"data-state":vr(i.open),...r,ref:o,onClick:g(e.onClick,i.onOpenToggle)});return i.hasCustomAnchor?s:(0,F.jsx)(Gn,{asChild:!0,...a,children:s})});rr.displayName=nr;var ir=`PopoverPortal`,[ar,or]=Yn(ir,{forceMount:void 0}),sr=e=>{let{__scopePopover:t,forceMount:n,children:r,container:i}=e,a=$(ir,t);return(0,F.jsx)(ar,{scope:t,forceMount:n,children:(0,F.jsx)(v,{present:n||a.open,children:(0,F.jsx)(x,{asChild:!0,container:i,children:r})})})};sr.displayName=ir;var cr=`PopoverContent`,lr=P.forwardRef((e,t)=>{let n=or(cr,e.__scopePopover),{forceMount:r=n.forceMount,...i}=e,a=$(cr,e.__scopePopover);return(0,F.jsx)(v,{present:r||a.open,children:a.modal?(0,F.jsx)(dr,{...i,ref:t}):(0,F.jsx)(fr,{...i,ref:t})})});lr.displayName=cr;var ur=C(`PopoverContent.RemoveScroll`),dr=P.forwardRef((e,t)=>{let n=$(cr,e.__scopePopover),r=P.useRef(null),i=j(t,r),a=P.useRef(!1);return P.useEffect(()=>{let e=r.current;if(e)return b(e)},[]),(0,F.jsx)(T,{as:ur,allowPinchZoom:!0,children:(0,F.jsx)(pr,{...e,ref:i,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:g(e.onCloseAutoFocus,e=>{e.preventDefault(),a.current||n.triggerRef.current?.focus()}),onPointerDownOutside:g(e.onPointerDownOutside,e=>{let t=e.detail.originalEvent,n=t.button===0&&t.ctrlKey===!0;a.current=t.button===2||n},{checkForDefaultPrevented:!1}),onFocusOutside:g(e.onFocusOutside,e=>e.preventDefault(),{checkForDefaultPrevented:!1})})})}),fr=P.forwardRef((e,t)=>{let n=$(cr,e.__scopePopover),r=P.useRef(!1),i=P.useRef(!1);return(0,F.jsx)(pr,{...e,ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:t=>{e.onCloseAutoFocus?.(t),t.defaultPrevented||(r.current||n.triggerRef.current?.focus(),t.preventDefault()),r.current=!1,i.current=!1},onInteractOutside:t=>{e.onInteractOutside?.(t),t.defaultPrevented||(r.current=!0,t.detail.originalEvent.type===`pointerdown`&&(i.current=!0));let a=t.target;n.triggerRef.current?.contains(a)&&t.preventDefault(),t.detail.originalEvent.type===`focusin`&&i.current&&t.preventDefault()}})}),pr=P.forwardRef((e,t)=>{let{__scopePopover:n,trapFocus:r,onOpenAutoFocus:i,onCloseAutoFocus:a,disableOutsidePointerEvents:o,onEscapeKeyDown:s,onPointerDownOutside:c,onFocusOutside:l,onInteractOutside:u,...d}=e,f=$(cr,n),p=Zn(n);return O(),(0,F.jsx)(D,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:i,onUnmountAutoFocus:a,children:(0,F.jsx)(_,{asChild:!0,disableOutsidePointerEvents:o,onInteractOutside:u,onEscapeKeyDown:s,onPointerDownOutside:c,onFocusOutside:l,onDismiss:()=>f.onOpenChange(!1),children:(0,F.jsx)(Kn,{"data-state":vr(f.open),role:`dialog`,id:f.contentId,...p,...d,ref:t,style:{...d.style,"--radix-popover-content-transform-origin":`var(--radix-popper-transform-origin)`,"--radix-popover-content-available-width":`var(--radix-popper-available-width)`,"--radix-popover-content-available-height":`var(--radix-popper-available-height)`,"--radix-popover-trigger-width":`var(--radix-popper-anchor-width)`,"--radix-popover-trigger-height":`var(--radix-popper-anchor-height)`}})})})}),mr=`PopoverClose`,hr=P.forwardRef((e,t)=>{let{__scopePopover:n,...r}=e,i=$(mr,n);return(0,F.jsx)(u.button,{type:`button`,...r,ref:t,onClick:g(e.onClick,()=>i.onOpenChange(!1))})});hr.displayName=mr;var gr=`PopoverArrow`,_r=P.forwardRef((e,t)=>{let{__scopePopover:n,...r}=e,i=Zn(n);return(0,F.jsx)(qn,{...i,...r,ref:t})});_r.displayName=gr;function vr(e){return e?`open`:`closed`}var yr=$n,br=rr,xr=sr,Sr=lr,[Cr,wr]=w(`Tooltip`,[On]),Tr=On(),Er=`TooltipProvider`,Dr=700,Or=`tooltip.open`,[kr,Ar]=Cr(Er),jr=e=>{let{__scopeTooltip:t,delayDuration:n=Dr,skipDelayDuration:r=300,disableHoverableContent:i=!1,children:a}=e,o=P.useRef(!0),s=P.useRef(!1),c=P.useRef(0);return P.useEffect(()=>{let e=c.current;return()=>window.clearTimeout(e)},[]),(0,F.jsx)(kr,{scope:t,isOpenDelayedRef:o,delayDuration:n,onOpen:P.useCallback(()=>{window.clearTimeout(c.current),o.current=!1},[]),onClose:P.useCallback(()=>{window.clearTimeout(c.current),c.current=window.setTimeout(()=>o.current=!0,r)},[r]),isPointerInTransitRef:s,onPointerInTransitChange:P.useCallback(e=>{s.current=e},[]),disableHoverableContent:i,children:a})};jr.displayName=Er;var Mr=`Tooltip`,[Nr,Pr]=Cr(Mr),Fr=e=>{let{__scopeTooltip:t,children:n,open:r,defaultOpen:i,onOpenChange:a,disableHoverableContent:o,delayDuration:s}=e,c=Ar(Mr,e.__scopeTooltip),l=Tr(t),[u,d]=P.useState(null),f=E(),m=P.useRef(0),h=o??c.disableHoverableContent,g=s??c.delayDuration,_=P.useRef(!1),[v,y]=p({prop:r,defaultProp:i??!1,onChange:e=>{e?(c.onOpen(),document.dispatchEvent(new CustomEvent(Or))):c.onClose(),a?.(e)},caller:Mr}),b=P.useMemo(()=>v?_.current?`delayed-open`:`instant-open`:`closed`,[v]),x=P.useCallback(()=>{window.clearTimeout(m.current),m.current=0,_.current=!1,y(!0)},[y]),S=P.useCallback(()=>{window.clearTimeout(m.current),m.current=0,y(!1)},[y]),C=P.useCallback(()=>{window.clearTimeout(m.current),m.current=window.setTimeout(()=>{_.current=!0,y(!0),m.current=0},g)},[g,y]);return P.useEffect(()=>()=>{m.current&&=(window.clearTimeout(m.current),0)},[]),(0,F.jsx)(Wn,{...l,children:(0,F.jsx)(Nr,{scope:t,contentId:f,open:v,stateAttribute:b,trigger:u,onTriggerChange:d,onTriggerEnter:P.useCallback(()=>{c.isOpenDelayedRef.current?C():x()},[c.isOpenDelayedRef,C,x]),onTriggerLeave:P.useCallback(()=>{h?S():(window.clearTimeout(m.current),m.current=0)},[S,h]),onOpen:x,onClose:S,disableHoverableContent:h,children:n})})};Fr.displayName=Mr;var Ir=`TooltipTrigger`,Lr=P.forwardRef((e,t)=>{let{__scopeTooltip:n,...r}=e,i=Pr(Ir,n),a=Ar(Ir,n),o=Tr(n),s=j(t,P.useRef(null),i.onTriggerChange),c=P.useRef(!1),l=P.useRef(!1),d=P.useCallback(()=>c.current=!1,[]);return P.useEffect(()=>()=>document.removeEventListener(`pointerup`,d),[d]),(0,F.jsx)(Gn,{asChild:!0,...o,children:(0,F.jsx)(u.button,{"aria-describedby":i.open?i.contentId:void 0,"data-state":i.stateAttribute,...r,ref:s,onPointerMove:g(e.onPointerMove,e=>{e.pointerType!==`touch`&&!l.current&&!a.isPointerInTransitRef.current&&(i.onTriggerEnter(),l.current=!0)}),onPointerLeave:g(e.onPointerLeave,()=>{i.onTriggerLeave(),l.current=!1}),onPointerDown:g(e.onPointerDown,()=>{i.open&&i.onClose(),c.current=!0,document.addEventListener(`pointerup`,d,{once:!0})}),onFocus:g(e.onFocus,()=>{c.current||i.onOpen()}),onBlur:g(e.onBlur,i.onClose),onClick:g(e.onClick,i.onClose)})})});Lr.displayName=Ir;var Rr=`TooltipPortal`,[zr,Br]=Cr(Rr,{forceMount:void 0}),Vr=e=>{let{__scopeTooltip:t,forceMount:n,children:r,container:i}=e,a=Pr(Rr,t);return(0,F.jsx)(zr,{scope:t,forceMount:n,children:(0,F.jsx)(v,{present:n||a.open,children:(0,F.jsx)(x,{asChild:!0,container:i,children:r})})})};Vr.displayName=Rr;var Hr=`TooltipContent`,Ur=P.forwardRef((e,t)=>{let n=Br(Hr,e.__scopeTooltip),{forceMount:r=n.forceMount,side:i=`top`,...a}=e,o=Pr(Hr,e.__scopeTooltip);return(0,F.jsx)(v,{present:r||o.open,children:o.disableHoverableContent?(0,F.jsx)(Jr,{side:i,...a,ref:t}):(0,F.jsx)(Wr,{side:i,...a,ref:t})})}),Wr=P.forwardRef((e,t)=>{let n=Pr(Hr,e.__scopeTooltip),r=Ar(Hr,e.__scopeTooltip),i=P.useRef(null),a=j(t,i),[o,s]=P.useState(null),{trigger:c,onClose:l}=n,u=i.current,{onPointerInTransitChange:d}=r,f=P.useCallback(()=>{s(null),d(!1)},[d]),p=P.useCallback((e,t)=>{let n=e.currentTarget,r={x:e.clientX,y:e.clientY},i=Qr(r,Zr(r,n.getBoundingClientRect())),a=$r(t.getBoundingClientRect());s(ti([...i,...a])),d(!0)},[d]);return P.useEffect(()=>()=>f(),[f]),P.useEffect(()=>{if(c&&u){let e=e=>p(e,u),t=e=>p(e,c);return c.addEventListener(`pointerleave`,e),u.addEventListener(`pointerleave`,t),()=>{c.removeEventListener(`pointerleave`,e),u.removeEventListener(`pointerleave`,t)}}},[c,u,p,f]),P.useEffect(()=>{if(o){let e=e=>{let t=e.target,n={x:e.clientX,y:e.clientY},r=c?.contains(t)||u?.contains(t),i=!ei(n,o);r?f():i&&(f(),l())};return document.addEventListener(`pointermove`,e),()=>document.removeEventListener(`pointermove`,e)}},[c,u,o,l,f]),(0,F.jsx)(Jr,{...e,ref:a})}),[Gr,Kr]=Cr(Mr,{isInside:!1}),qr=m(`TooltipContent`),Jr=P.forwardRef((e,t)=>{let{__scopeTooltip:n,children:r,"aria-label":i,onEscapeKeyDown:a,onPointerDownOutside:o,...s}=e,c=Pr(Hr,n),l=Tr(n),{onClose:u}=c;return P.useEffect(()=>(document.addEventListener(Or,u),()=>document.removeEventListener(Or,u)),[u]),P.useEffect(()=>{if(c.trigger){let e=e=>{e.target?.contains(c.trigger)&&u()};return window.addEventListener(`scroll`,e,{capture:!0}),()=>window.removeEventListener(`scroll`,e,{capture:!0})}},[c.trigger,u]),(0,F.jsx)(_,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:a,onPointerDownOutside:o,onFocusOutside:e=>e.preventDefault(),onDismiss:u,children:(0,F.jsxs)(Kn,{"data-state":c.stateAttribute,...l,...s,ref:t,style:{...s.style,"--radix-tooltip-content-transform-origin":`var(--radix-popper-transform-origin)`,"--radix-tooltip-content-available-width":`var(--radix-popper-available-width)`,"--radix-tooltip-content-available-height":`var(--radix-popper-available-height)`,"--radix-tooltip-trigger-width":`var(--radix-popper-anchor-width)`,"--radix-tooltip-trigger-height":`var(--radix-popper-anchor-height)`},children:[(0,F.jsx)(qr,{children:r}),(0,F.jsx)(Gr,{scope:n,isInside:!0,children:(0,F.jsx)(oe,{id:c.contentId,role:`tooltip`,children:i||r})})]})})});Ur.displayName=Hr;var Yr=`TooltipArrow`,Xr=P.forwardRef((e,t)=>{let{__scopeTooltip:n,...r}=e,i=Tr(n);return Kr(Yr,n).isInside?null:(0,F.jsx)(qn,{...i,...r,ref:t})});Xr.displayName=Yr;function Zr(e,t){let n=Math.abs(t.top-e.y),r=Math.abs(t.bottom-e.y),i=Math.abs(t.right-e.x),a=Math.abs(t.left-e.x);switch(Math.min(n,r,i,a)){case a:return`left`;case i:return`right`;case n:return`top`;case r:return`bottom`;default:throw Error(`unreachable`)}}function Qr(e,t,n=5){let r=[];switch(t){case`top`:r.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case`bottom`:r.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case`left`:r.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case`right`:r.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return r}function $r(e){let{top:t,right:n,bottom:r,left:i}=e;return[{x:i,y:t},{x:n,y:t},{x:n,y:r},{x:i,y:r}]}function ei(e,t){let{x:n,y:r}=e,i=!1;for(let e=0,a=t.length-1;e<t.length;a=e++){let o=t[e],s=t[a],c=o.x,l=o.y,u=s.x,d=s.y;l>r!=d>r&&n<(u-c)*(r-l)/(d-l)+c&&(i=!i)}return i}function ti(e){let t=e.slice();return t.sort((e,t)=>e.x<t.x?-1:e.x>t.x?1:e.y<t.y?-1:e.y>t.y?1:0),ni(t)}function ni(e){if(e.length<=1)return e.slice();let t=[];for(let n=0;n<e.length;n++){let r=e[n];for(;t.length>=2;){let e=t[t.length-1],n=t[t.length-2];if((e.x-n.x)*(r.y-n.y)>=(e.y-n.y)*(r.x-n.x))t.pop();else break}t.push(r)}t.pop();let n=[];for(let t=e.length-1;t>=0;t--){let r=e[t];for(;n.length>=2;){let e=n[n.length-1],t=n[n.length-2];if((e.x-t.x)*(r.y-t.y)>=(e.y-t.y)*(r.x-t.x))n.pop();else break}n.push(r)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}var ri=jr,ii=Fr,ai=Lr,oi=Vr,si=Ur,ci=Xr,li=({delayDuration:e=0,...t})=>(0,F.jsx)(ri,{"data-slot":`tooltip-provider`,delayDuration:e,...t}),ui=({...e})=>(0,F.jsx)(li,{children:(0,F.jsx)(ii,{"data-slot":`tooltip`,...e})}),di=({...e})=>(0,F.jsx)(ai,{"data-slot":`tooltip-trigger`,...e}),fi=({className:e,sideOffset:t=0,children:n,...r})=>(0,F.jsx)(oi,{children:(0,F.jsxs)(si,{"data-slot":`tooltip-content`,sideOffset:t,className:M(`bg-foreground text-background animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-fit origin-(--radix-tooltip-content-transform-origin) rounded-md px-3 py-1.5 text-xs text-balance`,e),...r,children:[n,(0,F.jsx)(ci,{className:`bg-foreground fill-foreground z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]`})]})}),pi=({...e})=>(0,F.jsx)(yr,{"data-slot":`popover`,...e}),mi=({...e})=>(0,F.jsx)(br,{"data-slot":`popover-trigger`,...e}),hi=({className:e,align:t=`center`,sideOffset:n=4,...r})=>(0,F.jsx)(xr,{children:(0,F.jsx)(Sr,{"data-slot":`popover-content`,align:t,sideOffset:n,className:M(`bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-72 origin-(--radix-popover-content-transform-origin) rounded-md border p-4 shadow-md outline-hidden`,e),...r})}),gi=({sessionId:e})=>{let t=c(),{data:n}=y(a),o=(0,P.useMemo)(()=>n?.notifications??[],[n?.notifications]),s=i({mutationFn:async e=>{await r.api.notifications[`:sessionId`].consume.$post({param:{sessionId:e},json:{types:[`session_paused`,`session_completed`]}})},onSuccess:()=>{t.invalidateQueries({queryKey:a.queryKey})}}),u=(0,P.useRef)(null);(0,P.useEffect)(()=>{if(e===void 0||e===``){u.current=null;return}n!==void 0&&u.current!==e&&(u.current=e,o.some(t=>t.sessionId===e&&(t.type===`session_paused`||t.type===`session_completed`))&&s.mutate(e))},[e,n,o,s]);let d=o.length;return(0,F.jsx)(li,{children:(0,F.jsxs)(pi,{children:[(0,F.jsxs)(ui,{children:[(0,F.jsx)(di,{asChild:!0,children:(0,F.jsx)(mi,{asChild:!0,children:(0,F.jsxs)(`button`,{type:`button`,className:M(`relative w-11 h-11 md:w-7 md:h-7 flex items-center justify-center rounded transition-colors`,d>0?`text-primary`:`hover:bg-muted text-muted-foreground hover:text-foreground`),"aria-label":`Notifications`,children:[(0,F.jsx)(N,{className:`w-3.5 h-3.5`}),d>0&&(0,F.jsx)(`span`,{className:`absolute -top-0.5 -right-0.5 md:top-0 md:right-0 flex h-3.5 w-3.5 items-center justify-center rounded-full bg-primary text-[9px] font-bold text-primary-foreground`,children:d>9?`9+`:d})]})})}),(0,F.jsx)(fi,{side:`bottom`,className:`text-xs`,children:(0,F.jsx)(k,{id:`notification.title`})})]}),(0,F.jsxs)(hi,{align:`end`,className:`w-[calc(100vw-2rem)] sm:w-80 p-0 z-[53]`,sideOffset:8,collisionPadding:16,children:[(0,F.jsxs)(`div`,{className:`flex items-center justify-between border-b px-3 py-2`,children:[(0,F.jsx)(`p`,{className:`text-sm font-medium`,children:(0,F.jsx)(k,{id:`notification.title`})}),d>0&&(0,F.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:d})]}),(0,F.jsx)(`div`,{className:`max-h-[300px] overflow-y-auto`,children:o.length===0?(0,F.jsxs)(`div`,{className:`flex flex-col items-center justify-center py-8 text-muted-foreground`,children:[(0,F.jsx)(ee,{className:`w-5 h-5 mb-2`}),(0,F.jsx)(`p`,{className:`text-xs`,children:(0,F.jsx)(k,{id:`notification.empty`})})]}):(0,F.jsx)(`div`,{className:`p-1.5 space-y-0.5`,children:o.map(e=>(0,F.jsxs)(l,{to:`/projects/$projectId/session`,params:{projectId:e.projectId},search:{sessionId:e.sessionId},className:`flex items-start gap-2.5 rounded-md p-2 text-sm transition-colors hover:bg-muted/50`,onClick:()=>s.mutate(e.sessionId),children:[(0,F.jsx)(`div`,{className:`mt-0.5 h-2 w-2 rounded-full bg-primary flex-shrink-0`}),(0,F.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,F.jsx)(`p`,{className:`text-xs font-medium truncate`,children:e.type===`session_paused`?(0,F.jsx)(k,{id:`notification.session_paused`}):e.type===`session_completed`?(0,F.jsx)(k,{id:`notification.session_completed`}):e.type===`permission_requested`?(0,F.jsx)(k,{id:`notification.permission_requested`}):(0,F.jsx)(k,{id:`notification.question_asked`})}),(0,F.jsx)(`p`,{className:`text-[11px] text-muted-foreground font-mono truncate`,children:e.sessionId}),(0,F.jsx)(`p`,{className:`text-[10px] text-muted-foreground mt-0.5`,children:h(new Date(e.createdAt),{target:`time`})})]})]},e.id))})})]})]})})},_i=({className:e,...t})=>(0,F.jsx)(_e,{"data-slot":`checkbox`,className:M(`peer border-input dark:bg-input/30 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground dark:data-[state=checked]:bg-primary data-[state=checked]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50`,e),...t,children:(0,F.jsx)(ye,{"data-slot":`checkbox-indicator`,className:`flex items-center justify-center text-current transition-none`,children:(0,F.jsx)(ee,{className:`size-3.5`})})}),vi=({children:e})=>{let{isAuthenticated:t}=o(),n=s();return(0,P.useEffect)(()=>{t||n({to:`/login`})},[t,n]),t?(0,F.jsx)(F.Fragment,{children:e}):null};export{I as _,hi as a,te as b,fi as c,Gn as d,qn as f,se as g,On as h,pi as i,li as l,Wn as m,_i as n,mi as o,Kn as p,gi as r,ui as s,vi as t,di as u,re as v,ee as x,ne as y};