manga-ui-compents-abi 1.0.3 → 1.0.5

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.
@@ -0,0 +1,4911 @@
1
+ import { jsxs as t, jsx as e, Fragment as oe } from "react/jsx-runtime";
2
+ import fn, { forwardRef as ce, useCallback as Fe, useEffect as B, createContext as cn, useState as k, useContext as an, useRef as fe, useMemo as ln } from "react";
3
+ import { createPortal as Le } from "react-dom";
4
+ const vn = "_button_cvovu_11", bn = "_sm_cvovu_85", $n = "_md_cvovu_99", Nn = "_lg_cvovu_113", yn = "_primary_cvovu_133", kn = "_secondary_cvovu_153", wn = "_outline_cvovu_173", Cn = "_ghost_cvovu_199", xn = "_danger_cvovu_227", Bn = "_loading_cvovu_247", In = "_spin_cvovu_1", Tn = "_fullWidth_cvovu_303", zn = "_iconOnly_cvovu_313", Qe = {
5
+ button: vn,
6
+ sm: bn,
7
+ md: $n,
8
+ lg: Nn,
9
+ primary: yn,
10
+ secondary: kn,
11
+ outline: wn,
12
+ ghost: Cn,
13
+ danger: xn,
14
+ loading: Bn,
15
+ spin: In,
16
+ fullWidth: Tn,
17
+ iconOnly: zn
18
+ }, Ln = ce(
19
+ ({
20
+ variant: n = "primary",
21
+ size: a = "md",
22
+ loading: s = !1,
23
+ fullWidth: l = !1,
24
+ leftIcon: c,
25
+ rightIcon: r,
26
+ iconOnly: i = !1,
27
+ disabled: _,
28
+ className: o = "",
29
+ children: d,
30
+ ...p
31
+ }, u) => {
32
+ const m = [
33
+ Qe.button,
34
+ Qe[n],
35
+ Qe[a],
36
+ s && Qe.loading,
37
+ l && Qe.fullWidth,
38
+ i && Qe.iconOnly,
39
+ o
40
+ ].filter(Boolean).join(" ");
41
+ return /* @__PURE__ */ t(
42
+ "button",
43
+ {
44
+ ref: u,
45
+ className: m,
46
+ disabled: _ || s,
47
+ ...p,
48
+ children: [
49
+ c && !i && /* @__PURE__ */ e("span", { children: c }),
50
+ d,
51
+ r && !i && /* @__PURE__ */ e("span", { children: r })
52
+ ]
53
+ }
54
+ );
55
+ }
56
+ );
57
+ Ln.displayName = "Button";
58
+ const jn = "_inputWrapper_1geb8_11", Sn = "_label_1geb8_25", Dn = "_required_1geb8_43", qn = "_inputContainer_1geb8_53", Rn = "_input_1geb8_11", Mn = "_sm_1geb8_145", An = "_lg_1geb8_155", En = "_error_1geb8_167", Wn = "_errorMessage_1geb8_177", Pn = "_helperText_1geb8_209", Fn = "_hasLeftIcon_1geb8_223", On = "_hasRightIcon_1geb8_231", Gn = "_leftIcon_1geb8_239", Un = "_rightIcon_1geb8_241", Vn = "_fullWidth_1geb8_293", J = {
59
+ inputWrapper: jn,
60
+ label: Sn,
61
+ required: Dn,
62
+ inputContainer: qn,
63
+ input: Rn,
64
+ sm: Mn,
65
+ lg: An,
66
+ error: En,
67
+ errorMessage: Wn,
68
+ helperText: Pn,
69
+ hasLeftIcon: Fn,
70
+ hasRightIcon: On,
71
+ leftIcon: Gn,
72
+ rightIcon: Un,
73
+ fullWidth: Vn
74
+ }, Hn = ce(
75
+ ({
76
+ label: n,
77
+ size: a = "md",
78
+ error: s,
79
+ helperText: l,
80
+ leftIcon: c,
81
+ rightIcon: r,
82
+ fullWidth: i = !1,
83
+ required: _ = !1,
84
+ className: o = "",
85
+ id: d,
86
+ ...p
87
+ }, u) => {
88
+ const m = d || `input-${Math.random().toString(36).substr(2, 9)}`, h = [
89
+ J.inputWrapper,
90
+ J[a],
91
+ s && J.error,
92
+ c && J.hasLeftIcon,
93
+ r && J.hasRightIcon,
94
+ i && J.fullWidth,
95
+ o
96
+ ].filter(Boolean).join(" ");
97
+ return /* @__PURE__ */ t("div", { className: h, children: [
98
+ n && /* @__PURE__ */ t("label", { htmlFor: m, className: J.label, children: [
99
+ n,
100
+ _ && /* @__PURE__ */ e("span", { className: J.required, children: "*" })
101
+ ] }),
102
+ /* @__PURE__ */ t("div", { className: J.inputContainer, children: [
103
+ c && /* @__PURE__ */ e("span", { className: J.leftIcon, children: c }),
104
+ /* @__PURE__ */ e(
105
+ "input",
106
+ {
107
+ ref: u,
108
+ id: m,
109
+ className: J.input,
110
+ "aria-invalid": !!s,
111
+ "aria-describedby": s ? `${m}-error` : l ? `${m}-helper` : void 0,
112
+ ...p
113
+ }
114
+ ),
115
+ r && /* @__PURE__ */ e("span", { className: J.rightIcon, children: r })
116
+ ] }),
117
+ s && /* @__PURE__ */ e("span", { id: `${m}-error`, className: J.errorMessage, role: "alert", children: s }),
118
+ l && !s && /* @__PURE__ */ e("span", { id: `${m}-helper`, className: J.helperText, children: l })
119
+ ] });
120
+ }
121
+ );
122
+ Hn.displayName = "Input";
123
+ const Yn = "_card_4rvo0_11", Kn = "_elevated_4rvo0_45", Qn = "_outlined_4rvo0_53", Jn = "_hoverable_4rvo0_65", Xn = "_header_4rvo0_109", Zn = "_body_4rvo0_121", et = "_footer_4rvo0_129", nt = "_compact_4rvo0_143", tt = "_spacious_4rvo0_167", Ye = {
124
+ card: Yn,
125
+ default: "_default_4rvo0_37",
126
+ elevated: Kn,
127
+ outlined: Qn,
128
+ hoverable: Jn,
129
+ header: Xn,
130
+ body: Zn,
131
+ footer: et,
132
+ compact: nt,
133
+ spacious: tt
134
+ }, at = ce(
135
+ ({
136
+ variant: n = "default",
137
+ padding: a = "default",
138
+ hoverable: s = !1,
139
+ className: l = "",
140
+ children: c,
141
+ ...r
142
+ }, i) => {
143
+ const _ = [
144
+ Ye.card,
145
+ Ye[n],
146
+ a !== "default" && Ye[a],
147
+ s && Ye.hoverable,
148
+ l
149
+ ].filter(Boolean).join(" ");
150
+ return /* @__PURE__ */ e("div", { ref: i, className: _, ...r, children: c });
151
+ }
152
+ );
153
+ at.displayName = "Card";
154
+ const st = ce(
155
+ ({ className: n = "", children: a, ...s }, l) => /* @__PURE__ */ e("div", { ref: l, className: `${Ye.header} ${n}`, ...s, children: a })
156
+ );
157
+ st.displayName = "CardHeader";
158
+ const ot = ce(
159
+ ({ className: n = "", children: a, ...s }, l) => /* @__PURE__ */ e("div", { ref: l, className: `${Ye.body} ${n}`, ...s, children: a })
160
+ );
161
+ ot.displayName = "CardBody";
162
+ const ct = ce(
163
+ ({ className: n = "", children: a, ...s }, l) => /* @__PURE__ */ e("div", { ref: l, className: `${Ye.footer} ${n}`, ...s, children: a })
164
+ );
165
+ ct.displayName = "CardFooter";
166
+ const lt = "_badge_69hvm_11", rt = "_sm_69hvm_43", it = "_md_69hvm_57", _t = "_lg_69hvm_71", dt = "_primary_69hvm_97", mt = "_success_69hvm_107", pt = "_warning_69hvm_117", ut = "_danger_69hvm_127", ht = "_info_69hvm_137", gt = "_outline_69hvm_149", ft = "_withDot_69hvm_207", vt = "_pulse_69hvm_227", Je = {
167
+ badge: lt,
168
+ sm: rt,
169
+ md: it,
170
+ lg: _t,
171
+ default: "_default_69hvm_87",
172
+ primary: dt,
173
+ success: mt,
174
+ warning: pt,
175
+ danger: ut,
176
+ info: ht,
177
+ outline: gt,
178
+ withDot: ft,
179
+ pulse: vt
180
+ }, bt = ce(
181
+ ({
182
+ variant: n = "default",
183
+ size: a = "md",
184
+ outline: s = !1,
185
+ withDot: l = !1,
186
+ pulse: c = !1,
187
+ className: r = "",
188
+ children: i,
189
+ ..._
190
+ }, o) => {
191
+ const d = [
192
+ Je.badge,
193
+ Je[n],
194
+ Je[a],
195
+ s && Je.outline,
196
+ l && Je.withDot,
197
+ c && Je.pulse,
198
+ r
199
+ ].filter(Boolean).join(" ");
200
+ return /* @__PURE__ */ e("span", { ref: o, className: d, ..._, children: i });
201
+ }
202
+ );
203
+ bt.displayName = "Badge";
204
+ const $t = "_overlay_1b62k_11", Nt = "_fadeIn_1b62k_1", yt = "_modal_1b62k_35", kt = "_slideIn_1b62k_1", wt = "_sm_1b62k_63", Ct = "_md_1b62k_71", xt = "_lg_1b62k_79", Bt = "_xl_1b62k_87", It = "_full_1b62k_95", Tt = "_header_1b62k_107", zt = "_title_1b62k_125", Lt = "_closeButton_1b62k_145", jt = "_body_1b62k_191", St = "_footer_1b62k_205", je = {
205
+ overlay: $t,
206
+ fadeIn: Nt,
207
+ modal: yt,
208
+ slideIn: kt,
209
+ sm: wt,
210
+ md: Ct,
211
+ lg: xt,
212
+ xl: Bt,
213
+ full: It,
214
+ header: Tt,
215
+ title: zt,
216
+ closeButton: Lt,
217
+ body: jt,
218
+ footer: St
219
+ };
220
+ function Dt({
221
+ isOpen: n,
222
+ onClose: a,
223
+ title: s,
224
+ size: l = "md",
225
+ showCloseButton: c = !0,
226
+ closeOnOverlayClick: r = !0,
227
+ closeOnEscape: i = !0,
228
+ children: _,
229
+ footer: o
230
+ }) {
231
+ const d = Fe(
232
+ (m) => {
233
+ m.key === "Escape" && i && a();
234
+ },
235
+ [a, i]
236
+ );
237
+ if (B(() => (n && (document.addEventListener("keydown", d), document.body.style.overflow = "hidden"), () => {
238
+ document.removeEventListener("keydown", d), document.body.style.overflow = "";
239
+ }), [n, d]), !n) return null;
240
+ const p = (m) => {
241
+ m.target === m.currentTarget && r && a();
242
+ }, u = /* @__PURE__ */ e("div", { className: je.overlay, onClick: p, children: /* @__PURE__ */ t("div", { className: `${je.modal} ${je[l]}`, role: "dialog", "aria-modal": "true", children: [
243
+ (s || c) && /* @__PURE__ */ t("div", { className: je.header, children: [
244
+ s && /* @__PURE__ */ e("h2", { className: je.title, children: s }),
245
+ c && /* @__PURE__ */ e(
246
+ "button",
247
+ {
248
+ className: je.closeButton,
249
+ onClick: a,
250
+ "aria-label": "Close modal",
251
+ children: "✕"
252
+ }
253
+ )
254
+ ] }),
255
+ /* @__PURE__ */ e("div", { className: je.body, children: _ }),
256
+ o && /* @__PURE__ */ e("div", { className: je.footer, children: o })
257
+ ] }) });
258
+ return Le(u, document.body);
259
+ }
260
+ Dt.displayName = "Modal";
261
+ const qt = "_avatar_loudu_11", Rt = "_image_loudu_43", Mt = "_xs_loudu_57", At = "_sm_loudu_69", Et = "_md_loudu_81", Wt = "_lg_loudu_93", Pt = "_xl_loudu_105", Ft = "_xxl_loudu_117", Ot = "_circle_loudu_135", Gt = "_rounded_loudu_143", Ut = "_square_loudu_151", Vt = "_wrapper_loudu_161", Ht = "_status_loudu_171", Yt = "_online_loudu_191", Kt = "_offline_loudu_199", Qt = "_busy_loudu_207", Jt = "_group_loudu_217", ge = {
262
+ avatar: qt,
263
+ image: Rt,
264
+ xs: Mt,
265
+ sm: At,
266
+ md: Et,
267
+ lg: Wt,
268
+ xl: Pt,
269
+ xxl: Ft,
270
+ circle: Ot,
271
+ rounded: Gt,
272
+ square: Ut,
273
+ wrapper: Vt,
274
+ status: Ht,
275
+ online: Yt,
276
+ offline: Kt,
277
+ busy: Qt,
278
+ group: Jt
279
+ }, Xt = ce(
280
+ ({
281
+ src: n,
282
+ alt: a = "",
283
+ initials: s,
284
+ size: l = "md",
285
+ shape: c = "circle",
286
+ status: r,
287
+ className: i = "",
288
+ ..._
289
+ }, o) => {
290
+ const d = [
291
+ ge.avatar,
292
+ ge[l],
293
+ ge[c],
294
+ i
295
+ ].filter(Boolean).join(" "), p = /* @__PURE__ */ e("div", { ref: o, className: d, children: n ? /* @__PURE__ */ e("img", { src: n, alt: a, className: ge.image, ..._ }) : /* @__PURE__ */ e("span", { children: s || "?" }) });
296
+ return r ? /* @__PURE__ */ t("div", { className: ge.wrapper, children: [
297
+ p,
298
+ /* @__PURE__ */ e("span", { className: `${ge.status} ${ge[r]}` })
299
+ ] }) : p;
300
+ }
301
+ );
302
+ Xt.displayName = "Avatar";
303
+ function bN({ children: n, max: a }) {
304
+ const s = fn.Children.toArray(n), l = a ? s.slice(0, a) : s, c = a ? s.length - a : 0;
305
+ return /* @__PURE__ */ t("div", { className: ge.group, children: [
306
+ l,
307
+ c > 0 && /* @__PURE__ */ t("div", { className: `${ge.avatar} ${ge.md} ${ge.circle}`, children: [
308
+ "+",
309
+ c
310
+ ] })
311
+ ] });
312
+ }
313
+ const Zt = "_tabList_1c0yh_11", ea = "_tab_1c0yh_11", na = "_active_1c0yh_71", ta = "_tabPanel_1c0yh_107", aa = "_pills_1c0yh_117", sa = "_underline_1c0yh_167", tn = {
314
+ tabList: Zt,
315
+ tab: ea,
316
+ active: na,
317
+ tabPanel: ta,
318
+ pills: aa,
319
+ underline: sa
320
+ }, _n = cn(null);
321
+ function oa({
322
+ defaultTab: n,
323
+ activeTab: a,
324
+ onTabChange: s,
325
+ variant: l = "default",
326
+ children: c
327
+ }) {
328
+ const [r, i] = k(n || ""), _ = a ?? r, o = (d) => {
329
+ a || i(d), s?.(d);
330
+ };
331
+ return /* @__PURE__ */ e(_n.Provider, { value: { activeTab: _, setActiveTab: o }, children: /* @__PURE__ */ e("div", { "data-variant": l, children: c }) });
332
+ }
333
+ function ca({ children: n, variant: a = "default" }) {
334
+ return /* @__PURE__ */ e(
335
+ "div",
336
+ {
337
+ className: `${tn.tabList} ${a !== "default" ? tn[a] : ""}`,
338
+ role: "tablist",
339
+ children: n
340
+ }
341
+ );
342
+ }
343
+ function la({ id: n, children: a, icon: s, disabled: l = !1 }) {
344
+ const c = an(_n);
345
+ if (!c) throw new Error("Tab must be used within Tabs");
346
+ const { activeTab: r, setActiveTab: i } = c, _ = r === n;
347
+ return /* @__PURE__ */ t(
348
+ "button",
349
+ {
350
+ className: `${tn.tab} ${_ ? tn.active : ""}`,
351
+ role: "tab",
352
+ "aria-selected": _,
353
+ onClick: () => !l && i(n),
354
+ disabled: l,
355
+ children: [
356
+ s && /* @__PURE__ */ e("span", { children: s }),
357
+ a
358
+ ]
359
+ }
360
+ );
361
+ }
362
+ function ra({ id: n, children: a }) {
363
+ const s = an(_n);
364
+ if (!s) throw new Error("TabPanel must be used within Tabs");
365
+ const { activeTab: l } = s;
366
+ return l !== n ? null : /* @__PURE__ */ e("div", { className: tn.tabPanel, role: "tabpanel", children: a });
367
+ }
368
+ oa.displayName = "Tabs";
369
+ ca.displayName = "TabList";
370
+ la.displayName = "Tab";
371
+ ra.displayName = "TabPanel";
372
+ const ia = "_selectWrapper_gp0p4_11", _a = "_label_gp0p4_25", da = "_required_gp0p4_43", ma = "_selectContainer_gp0p4_53", pa = "_select_gp0p4_11", ua = "_arrow_gp0p4_139", ha = "_sm_gp0p4_167", ga = "_lg_gp0p4_177", fa = "_error_gp0p4_189", va = "_errorMessage_gp0p4_199", ba = "_helperText_gp0p4_215", $a = "_fullWidth_gp0p4_229", _e = {
373
+ selectWrapper: ia,
374
+ label: _a,
375
+ required: da,
376
+ selectContainer: ma,
377
+ select: pa,
378
+ arrow: ua,
379
+ sm: ha,
380
+ lg: ga,
381
+ error: fa,
382
+ errorMessage: va,
383
+ helperText: ba,
384
+ fullWidth: $a
385
+ }, Na = ce(
386
+ ({
387
+ label: n,
388
+ options: a,
389
+ placeholder: s,
390
+ size: l = "md",
391
+ error: c,
392
+ helperText: r,
393
+ fullWidth: i = !1,
394
+ required: _ = !1,
395
+ className: o = "",
396
+ id: d,
397
+ ...p
398
+ }, u) => {
399
+ const m = d || `select-${Math.random().toString(36).substr(2, 9)}`, h = [
400
+ _e.selectWrapper,
401
+ _e[l],
402
+ c && _e.error,
403
+ i && _e.fullWidth,
404
+ o
405
+ ].filter(Boolean).join(" ");
406
+ return /* @__PURE__ */ t("div", { className: h, children: [
407
+ n && /* @__PURE__ */ t("label", { htmlFor: m, className: _e.label, children: [
408
+ n,
409
+ _ && /* @__PURE__ */ e("span", { className: _e.required, children: "*" })
410
+ ] }),
411
+ /* @__PURE__ */ t("div", { className: _e.selectContainer, children: [
412
+ /* @__PURE__ */ t(
413
+ "select",
414
+ {
415
+ ref: u,
416
+ id: m,
417
+ className: _e.select,
418
+ "aria-invalid": !!c,
419
+ ...p,
420
+ children: [
421
+ s && /* @__PURE__ */ e("option", { value: "", disabled: !0, children: s }),
422
+ a.map((f) => /* @__PURE__ */ e(
423
+ "option",
424
+ {
425
+ value: f.value,
426
+ disabled: f.disabled,
427
+ children: f.label
428
+ },
429
+ f.value
430
+ ))
431
+ ]
432
+ }
433
+ ),
434
+ /* @__PURE__ */ e("span", { className: _e.arrow, children: /* @__PURE__ */ e("svg", { width: "16", height: "16", fill: "none", stroke: "currentColor", strokeWidth: "2.5", viewBox: "0 0 24 24", children: /* @__PURE__ */ e("path", { d: "m6 9 6 6 6-6" }) }) })
435
+ ] }),
436
+ c && /* @__PURE__ */ e("span", { className: _e.errorMessage, children: c }),
437
+ r && !c && /* @__PURE__ */ e("span", { className: _e.helperText, children: r })
438
+ ] });
439
+ }
440
+ );
441
+ Na.displayName = "Select";
442
+ const ya = "_toastContainer_1eyww_11", ka = "_topRight_1eyww_33", wa = "_topLeft_1eyww_43", Ca = "_bottomRight_1eyww_53", xa = "_bottomLeft_1eyww_63", Ba = "_topCenter_1eyww_73", Ia = "_bottomCenter_1eyww_85", Ta = "_toast_1eyww_11", za = "_slideIn_1eyww_1", La = "_exiting_1eyww_129", ja = "_slideOut_1eyww_1", Sa = "_icon_1eyww_139", Da = "_content_1eyww_161", qa = "_title_1eyww_171", Ra = "_message_1eyww_191", Ma = "_closeBtn_1eyww_207", Aa = "_success_1eyww_251", Ea = "_error_1eyww_267", Wa = "_warning_1eyww_283", Pa = "_info_1eyww_299", ke = {
443
+ toastContainer: ya,
444
+ topRight: ka,
445
+ topLeft: wa,
446
+ bottomRight: Ca,
447
+ bottomLeft: xa,
448
+ topCenter: Ba,
449
+ bottomCenter: Ia,
450
+ toast: Ta,
451
+ slideIn: za,
452
+ exiting: La,
453
+ slideOut: ja,
454
+ icon: Sa,
455
+ content: Da,
456
+ title: qa,
457
+ message: Ra,
458
+ closeBtn: Ma,
459
+ success: Aa,
460
+ error: Ea,
461
+ warning: Wa,
462
+ info: Pa
463
+ }, pn = cn(null), Fa = {
464
+ success: "✓",
465
+ error: "✕",
466
+ warning: "⚠",
467
+ info: "ℹ"
468
+ };
469
+ function Oa({ toast: n, onRemove: a }) {
470
+ const [s, l] = k(!1);
471
+ B(() => {
472
+ if (n.duration !== 0) {
473
+ const r = setTimeout(() => {
474
+ l(!0), setTimeout(a, 200);
475
+ }, n.duration || 4e3);
476
+ return () => clearTimeout(r);
477
+ }
478
+ }, [n.duration, a]);
479
+ const c = () => {
480
+ l(!0), setTimeout(a, 200);
481
+ };
482
+ return /* @__PURE__ */ t("div", { className: `${ke.toast} ${ke[n.variant || "info"]} ${s ? ke.exiting : ""}`, children: [
483
+ /* @__PURE__ */ e("span", { className: ke.icon, children: Fa[n.variant || "info"] }),
484
+ /* @__PURE__ */ t("div", { className: ke.content, children: [
485
+ n.title && /* @__PURE__ */ e("div", { className: ke.title, children: n.title }),
486
+ /* @__PURE__ */ e("div", { className: ke.message, children: n.message })
487
+ ] }),
488
+ /* @__PURE__ */ e("button", { className: ke.closeBtn, onClick: c, children: "✕" })
489
+ ] });
490
+ }
491
+ function Ga({ children: n, position: a = "topRight" }) {
492
+ const [s, l] = k([]), c = Fe((i) => {
493
+ const _ = Math.random().toString(36).substr(2, 9);
494
+ l((o) => [...o, { ...i, id: _ }]);
495
+ }, []), r = Fe((i) => {
496
+ l((_) => _.filter((o) => o.id !== i));
497
+ }, []);
498
+ return /* @__PURE__ */ t(pn.Provider, { value: { addToast: c, removeToast: r }, children: [
499
+ n,
500
+ Le(
501
+ /* @__PURE__ */ e("div", { className: `${ke.toastContainer} ${ke[a]}`, children: s.map((i) => /* @__PURE__ */ e(
502
+ Oa,
503
+ {
504
+ toast: i,
505
+ onRemove: () => r(i.id)
506
+ },
507
+ i.id
508
+ )) }),
509
+ document.body
510
+ )
511
+ ] });
512
+ }
513
+ function $N() {
514
+ const n = an(pn);
515
+ if (!n)
516
+ throw new Error("useToast must be used within ToastProvider");
517
+ return n;
518
+ }
519
+ Ga.displayName = "ToastProvider";
520
+ const Ua = "_tooltipWrapper_17jm1_11", Va = "_tooltip_17jm1_11", Ha = "_top_17jm1_75", Ya = "_bottom_17jm1_95", Ka = "_left_17jm1_115", Qa = "_right_17jm1_135", rn = {
521
+ tooltipWrapper: Ua,
522
+ tooltip: Va,
523
+ top: Ha,
524
+ bottom: Ya,
525
+ left: Ka,
526
+ right: Qa
527
+ };
528
+ function Ja({
529
+ content: n,
530
+ position: a = "top",
531
+ children: s
532
+ }) {
533
+ return /* @__PURE__ */ t("div", { className: rn.tooltipWrapper, children: [
534
+ s,
535
+ /* @__PURE__ */ e("div", { className: `${rn.tooltip} ${rn[a]}`, children: n })
536
+ ] });
537
+ }
538
+ Ja.displayName = "Tooltip";
539
+ const Xa = "_progressWrapper_1nzwi_11", Za = "_label_1nzwi_19", es = "_labelText_1nzwi_33", ns = "_percentage_1nzwi_49", ts = "_track_1nzwi_63", as = "_sm_1nzwi_83", ss = "_md_1nzwi_91", os = "_lg_1nzwi_99", cs = "_fill_1nzwi_109", ls = "_success_1nzwi_133", rs = "_warning_1nzwi_141", is = "_danger_1nzwi_149", _s = "_striped_1nzwi_159", ds = "_animated_1nzwi_187", ms = "_stripeMove_1nzwi_1", ps = "_indeterminate_1nzwi_217", de = {
540
+ progressWrapper: Xa,
541
+ label: Za,
542
+ labelText: es,
543
+ percentage: ns,
544
+ track: ts,
545
+ sm: as,
546
+ md: ss,
547
+ lg: os,
548
+ fill: cs,
549
+ default: "_default_1nzwi_125",
550
+ success: ls,
551
+ warning: rs,
552
+ danger: is,
553
+ striped: _s,
554
+ animated: ds,
555
+ stripeMove: ms,
556
+ indeterminate: ps
557
+ };
558
+ function us({
559
+ value: n = 0,
560
+ variant: a = "default",
561
+ size: s = "md",
562
+ label: l,
563
+ showPercentage: c = !1,
564
+ striped: r = !1,
565
+ animated: i = !1,
566
+ indeterminate: _ = !1
567
+ }) {
568
+ const o = Math.min(100, Math.max(0, n)), d = [
569
+ de.progressWrapper,
570
+ de[a],
571
+ de[s],
572
+ r && de.striped,
573
+ i && de.animated,
574
+ _ && de.indeterminate
575
+ ].filter(Boolean).join(" ");
576
+ return /* @__PURE__ */ t("div", { className: d, children: [
577
+ (l || c) && /* @__PURE__ */ t("div", { className: de.label, children: [
578
+ l && /* @__PURE__ */ e("span", { className: de.labelText, children: l }),
579
+ c && !_ && /* @__PURE__ */ t("span", { className: de.percentage, children: [
580
+ o,
581
+ "%"
582
+ ] })
583
+ ] }),
584
+ /* @__PURE__ */ e("div", { className: de.track, children: /* @__PURE__ */ e(
585
+ "div",
586
+ {
587
+ className: de.fill,
588
+ style: { width: _ ? void 0 : `${o}%` },
589
+ role: "progressbar",
590
+ "aria-valuenow": _ ? void 0 : o,
591
+ "aria-valuemin": 0,
592
+ "aria-valuemax": 100
593
+ }
594
+ ) })
595
+ ] });
596
+ }
597
+ us.displayName = "Progress";
598
+ const hs = "_skeleton_r2www_11", gs = "_shimmer_r2www_1", fs = "_text_r2www_71", vs = "_title_r2www_83", bs = "_avatar_r2www_97", $s = "_thumbnail_r2www_107", Ns = "_button_r2www_117", ys = "_card_r2www_127", ks = "_xs_r2www_141", ws = "_sm_r2www_151", Cs = "_md_r2www_161", xs = "_lg_r2www_171", Bs = "_xl_r2www_181", Is = "_noAnimation_r2www_193", Ts = "_fullWidth_r2www_203", zs = "_mangaCard_r2www_213", Ls = "_cover_r2www_233", js = "_lines_r2www_247", ze = {
599
+ skeleton: hs,
600
+ shimmer: gs,
601
+ text: fs,
602
+ title: vs,
603
+ avatar: bs,
604
+ thumbnail: $s,
605
+ button: Ns,
606
+ card: ys,
607
+ xs: ks,
608
+ sm: ws,
609
+ md: Cs,
610
+ lg: xs,
611
+ xl: Bs,
612
+ noAnimation: Is,
613
+ fullWidth: Ts,
614
+ mangaCard: zs,
615
+ cover: Ls,
616
+ lines: js
617
+ };
618
+ function on({
619
+ variant: n = "text",
620
+ size: a = "md",
621
+ width: s,
622
+ height: l,
623
+ noAnimation: c = !1,
624
+ fullWidth: r = !1,
625
+ className: i = "",
626
+ style: _
627
+ }) {
628
+ const o = [
629
+ ze.skeleton,
630
+ ze[n],
631
+ n === "avatar" && ze[a],
632
+ c && ze.noAnimation,
633
+ r && ze.fullWidth,
634
+ i
635
+ ].filter(Boolean).join(" "), d = {
636
+ ..._,
637
+ ...s && { width: typeof s == "number" ? `${s}px` : s },
638
+ ...l && { height: typeof l == "number" ? `${l}px` : l }
639
+ };
640
+ return /* @__PURE__ */ e("div", { className: o, style: d });
641
+ }
642
+ function Ss() {
643
+ return /* @__PURE__ */ t("div", { className: ze.mangaCard, children: [
644
+ /* @__PURE__ */ e("div", { className: `${ze.skeleton} ${ze.cover}` }),
645
+ /* @__PURE__ */ t("div", { className: ze.lines, children: [
646
+ /* @__PURE__ */ e(on, { variant: "title", width: "80%" }),
647
+ /* @__PURE__ */ e(on, { variant: "text", width: "60%" }),
648
+ /* @__PURE__ */ e(on, { variant: "text", width: "40%" })
649
+ ] })
650
+ ] });
651
+ }
652
+ on.displayName = "Skeleton";
653
+ Ss.displayName = "SkeletonMangaCard";
654
+ const Ds = "_switchWrapper_lf04y_11", qs = "_disabled_lf04y_25", Rs = "_checked_lf04y_85", Ms = "_label_lf04y_129", As = "_input_lf04y_147", Es = "_sm_lf04y_163", Ws = "_lg_lf04y_195", Oe = {
655
+ switchWrapper: Ds,
656
+ disabled: qs,
657
+ switch: "_switch_lf04y_11",
658
+ checked: Rs,
659
+ label: Ms,
660
+ input: As,
661
+ sm: Es,
662
+ lg: Ws
663
+ }, Ps = ce(
664
+ ({
665
+ label: n,
666
+ size: a = "md",
667
+ checked: s = !1,
668
+ disabled: l = !1,
669
+ onCheckedChange: c,
670
+ onChange: r,
671
+ className: i = "",
672
+ ..._
673
+ }, o) => {
674
+ const d = [
675
+ Oe.switchWrapper,
676
+ Oe[a],
677
+ s && Oe.checked,
678
+ l && Oe.disabled,
679
+ i
680
+ ].filter(Boolean).join(" "), p = (u) => {
681
+ r?.(u), c?.(u.target.checked);
682
+ };
683
+ return /* @__PURE__ */ t("label", { className: d, children: [
684
+ /* @__PURE__ */ e(
685
+ "input",
686
+ {
687
+ ref: o,
688
+ type: "checkbox",
689
+ className: Oe.input,
690
+ checked: s,
691
+ disabled: l,
692
+ onChange: p,
693
+ ..._
694
+ }
695
+ ),
696
+ /* @__PURE__ */ e("span", { className: Oe.switch }),
697
+ n && /* @__PURE__ */ e("span", { className: Oe.label, children: n })
698
+ ] });
699
+ }
700
+ );
701
+ Ps.displayName = "Switch";
702
+ const Fs = "_checkboxWrapper_dpxrp_11", Os = "_disabled_dpxrp_25", Gs = "_checkbox_dpxrp_11", Us = "_checkmark_dpxrp_65", Vs = "_checked_dpxrp_85", Hs = "_label_dpxrp_129", Ys = "_input_dpxrp_143", Ks = "_sm_dpxrp_159", Qs = "_lg_dpxrp_177", Js = "_indeterminate_dpxrp_197", we = {
703
+ checkboxWrapper: Fs,
704
+ disabled: Os,
705
+ checkbox: Gs,
706
+ checkmark: Us,
707
+ checked: Vs,
708
+ label: Hs,
709
+ input: Ys,
710
+ sm: Ks,
711
+ lg: Qs,
712
+ indeterminate: Js
713
+ }, Xs = ce(
714
+ ({
715
+ label: n,
716
+ size: a = "md",
717
+ checked: s = !1,
718
+ indeterminate: l = !1,
719
+ disabled: c = !1,
720
+ onCheckedChange: r,
721
+ onChange: i,
722
+ className: _ = "",
723
+ ...o
724
+ }, d) => {
725
+ const p = [
726
+ we.checkboxWrapper,
727
+ we[a],
728
+ s && we.checked,
729
+ l && we.indeterminate,
730
+ c && we.disabled,
731
+ _
732
+ ].filter(Boolean).join(" "), u = (m) => {
733
+ i?.(m), r?.(m.target.checked);
734
+ };
735
+ return /* @__PURE__ */ t("label", { className: p, children: [
736
+ /* @__PURE__ */ e(
737
+ "input",
738
+ {
739
+ ref: d,
740
+ type: "checkbox",
741
+ className: we.input,
742
+ checked: s,
743
+ disabled: c,
744
+ onChange: u,
745
+ ...o
746
+ }
747
+ ),
748
+ /* @__PURE__ */ e("span", { className: we.checkbox, children: /* @__PURE__ */ e("span", { className: we.checkmark, children: "✓" }) }),
749
+ n && /* @__PURE__ */ e("span", { className: we.label, children: n })
750
+ ] });
751
+ }
752
+ );
753
+ Xs.displayName = "Checkbox";
754
+ const Zs = "_radioWrapper_y3wxd_11", eo = "_disabled_y3wxd_25", no = "_radio_y3wxd_11", to = "_checked_y3wxd_89", ao = "_label_y3wxd_133", so = "_input_y3wxd_147", oo = "_radioGroup_y3wxd_163", co = "_horizontal_y3wxd_175", lo = "_groupLabel_y3wxd_185", Te = {
755
+ radioWrapper: Zs,
756
+ disabled: eo,
757
+ radio: no,
758
+ checked: to,
759
+ label: ao,
760
+ input: so,
761
+ radioGroup: oo,
762
+ horizontal: co,
763
+ groupLabel: lo
764
+ }, un = cn(null);
765
+ function ro({
766
+ name: n,
767
+ value: a = "",
768
+ onChange: s = () => {
769
+ },
770
+ label: l,
771
+ horizontal: c = !1,
772
+ disabled: r = !1,
773
+ children: i
774
+ }) {
775
+ return /* @__PURE__ */ e(un.Provider, { value: { name: n, value: a, onChange: s, disabled: r }, children: /* @__PURE__ */ t("div", { role: "radiogroup", children: [
776
+ l && /* @__PURE__ */ e("div", { className: Te.groupLabel, children: l }),
777
+ /* @__PURE__ */ e("div", { className: `${Te.radioGroup} ${c ? Te.horizontal : ""}`, children: i })
778
+ ] }) });
779
+ }
780
+ const io = ce(
781
+ ({ value: n, label: a, disabled: s, className: l = "", ...c }, r) => {
782
+ const i = an(un), _ = i?.name || c.name || "", o = i ? i.value === n : !1, d = s ?? i?.disabled ?? !1, p = () => {
783
+ i?.onChange(n);
784
+ }, u = [
785
+ Te.radioWrapper,
786
+ o && Te.checked,
787
+ d && Te.disabled,
788
+ l
789
+ ].filter(Boolean).join(" ");
790
+ return /* @__PURE__ */ t("label", { className: u, children: [
791
+ /* @__PURE__ */ e(
792
+ "input",
793
+ {
794
+ ref: r,
795
+ type: "radio",
796
+ className: Te.input,
797
+ name: _,
798
+ value: n,
799
+ checked: o,
800
+ disabled: d,
801
+ onChange: p,
802
+ ...c
803
+ }
804
+ ),
805
+ /* @__PURE__ */ e("span", { className: Te.radio }),
806
+ a && /* @__PURE__ */ e("span", { className: Te.label, children: a })
807
+ ] });
808
+ }
809
+ );
810
+ io.displayName = "Radio";
811
+ ro.displayName = "RadioGroup";
812
+ const _o = "_accordion_gl4q2_11", mo = "_item_gl4q2_23", po = "_open_gl4q2_51", uo = "_trigger_gl4q2_63", ho = "_triggerText_gl4q2_99", go = "_triggerIcon_gl4q2_117", fo = "_content_gl4q2_161", vo = "_contentInner_gl4q2_181", Pe = {
813
+ accordion: _o,
814
+ item: mo,
815
+ open: po,
816
+ trigger: uo,
817
+ triggerText: ho,
818
+ triggerIcon: go,
819
+ content: fo,
820
+ contentInner: vo
821
+ }, hn = cn(null);
822
+ function bo({
823
+ defaultOpen: n = [],
824
+ allowMultiple: a = !1,
825
+ children: s,
826
+ className: l = ""
827
+ }) {
828
+ const [c, r] = k(n), i = (_) => {
829
+ r((o) => o.includes(_) ? o.filter((d) => d !== _) : a ? [...o, _] : [_]);
830
+ };
831
+ return /* @__PURE__ */ e(hn.Provider, { value: { openItems: c, toggleItem: i, allowMultiple: a }, children: /* @__PURE__ */ e("div", { className: `${Pe.accordion} ${l}`, children: s }) });
832
+ }
833
+ function $o({
834
+ id: n,
835
+ title: a,
836
+ children: s,
837
+ disabled: l = !1
838
+ }) {
839
+ const c = an(hn);
840
+ if (!c) throw new Error("AccordionItem must be used within Accordion");
841
+ const { openItems: r, toggleItem: i } = c, _ = r.includes(n);
842
+ return /* @__PURE__ */ t("div", { className: `${Pe.item} ${_ ? Pe.open : ""}`, children: [
843
+ /* @__PURE__ */ t(
844
+ "button",
845
+ {
846
+ className: Pe.trigger,
847
+ onClick: () => !l && i(n),
848
+ disabled: l,
849
+ "aria-expanded": _,
850
+ children: [
851
+ /* @__PURE__ */ e("span", { className: Pe.triggerText, children: a }),
852
+ /* @__PURE__ */ e("span", { className: Pe.triggerIcon, children: "▼" })
853
+ ]
854
+ }
855
+ ),
856
+ /* @__PURE__ */ e("div", { className: Pe.content, children: /* @__PURE__ */ e("div", { className: Pe.contentInner, children: s }) })
857
+ ] });
858
+ }
859
+ bo.displayName = "Accordion";
860
+ $o.displayName = "AccordionItem";
861
+ const No = "_dropdown_1dkfo_11", yo = "_trigger_1dkfo_21", ko = "_menu_1dkfo_29", wo = "_open_1dkfo_65", Co = "_alignRight_1dkfo_79", xo = "_alignCenter_1dkfo_89", Bo = "_item_1dkfo_109", Io = "_danger_1dkfo_161", To = "_disabled_1dkfo_179", zo = "_itemIcon_1dkfo_199", Lo = "_separator_1dkfo_219", jo = "_label_1dkfo_233", ie = {
862
+ dropdown: No,
863
+ trigger: yo,
864
+ menu: ko,
865
+ open: wo,
866
+ alignRight: Co,
867
+ alignCenter: xo,
868
+ item: Bo,
869
+ danger: Io,
870
+ disabled: To,
871
+ itemIcon: zo,
872
+ separator: Lo,
873
+ label: jo
874
+ };
875
+ function So({
876
+ trigger: n,
877
+ children: a,
878
+ align: s = "left",
879
+ closeOnClick: l = !0
880
+ }) {
881
+ const [c, r] = k(!1), i = fe(null);
882
+ B(() => {
883
+ const o = (d) => {
884
+ i.current && !i.current.contains(d.target) && r(!1);
885
+ };
886
+ return c && document.addEventListener("mousedown", o), () => document.removeEventListener("mousedown", o);
887
+ }, [c]);
888
+ const _ = s === "right" ? ie.alignRight : s === "center" ? ie.alignCenter : "";
889
+ return /* @__PURE__ */ t(
890
+ "div",
891
+ {
892
+ ref: i,
893
+ className: `${ie.dropdown} ${c ? ie.open : ""} ${_}`,
894
+ children: [
895
+ /* @__PURE__ */ e("div", { className: ie.trigger, onClick: () => r(!c), children: n }),
896
+ /* @__PURE__ */ e("div", { className: ie.menu, onClick: l ? () => r(!1) : void 0, children: a })
897
+ ]
898
+ }
899
+ );
900
+ }
901
+ function Do({
902
+ children: n,
903
+ icon: a,
904
+ danger: s = !1,
905
+ disabled: l = !1,
906
+ onClick: c
907
+ }) {
908
+ const r = () => {
909
+ !l && c && c();
910
+ }, i = [
911
+ ie.item,
912
+ s && ie.danger,
913
+ l && ie.disabled
914
+ ].filter(Boolean).join(" ");
915
+ return /* @__PURE__ */ t("button", { className: i, onClick: r, disabled: l, children: [
916
+ a && /* @__PURE__ */ e("span", { className: ie.itemIcon, children: a }),
917
+ n
918
+ ] });
919
+ }
920
+ function qo() {
921
+ return /* @__PURE__ */ e("div", { className: ie.separator });
922
+ }
923
+ function Ro({ children: n }) {
924
+ return /* @__PURE__ */ e("div", { className: ie.label, children: n });
925
+ }
926
+ So.displayName = "Dropdown";
927
+ Do.displayName = "DropdownItem";
928
+ qo.displayName = "DropdownSeparator";
929
+ Ro.displayName = "DropdownLabel";
930
+ const Mo = "_sliderWrapper_1pmo4_11", Ao = "_label_1pmo4_25", Eo = "_labelText_1pmo4_37", Wo = "_value_1pmo4_53", Po = "_sliderContainer_1pmo4_65", Fo = "_track_1pmo4_79", Oo = "_fill_1pmo4_99", Go = "_thumb_1pmo4_115", Uo = "_input_1pmo4_163", Vo = "_sm_1pmo4_183", Ho = "_lg_1pmo4_203", Yo = "_disabled_1pmo4_227", me = {
931
+ sliderWrapper: Mo,
932
+ label: Ao,
933
+ labelText: Eo,
934
+ value: Wo,
935
+ sliderContainer: Po,
936
+ track: Fo,
937
+ fill: Oo,
938
+ thumb: Go,
939
+ input: Uo,
940
+ sm: Vo,
941
+ lg: Ho,
942
+ disabled: Yo
943
+ }, Ko = ce(
944
+ ({
945
+ value: n = 0,
946
+ min: a = 0,
947
+ max: s = 100,
948
+ step: l = 1,
949
+ label: c,
950
+ showValue: r = !1,
951
+ size: i = "md",
952
+ disabled: _ = !1,
953
+ onValueChange: o,
954
+ onChange: d,
955
+ className: p = "",
956
+ ...u
957
+ }, m) => {
958
+ const h = (n - a) / (s - a) * 100, f = ($) => {
959
+ const v = Number($.target.value);
960
+ d?.($), o?.(v);
961
+ }, g = [
962
+ me.sliderWrapper,
963
+ me[i],
964
+ _ && me.disabled,
965
+ p
966
+ ].filter(Boolean).join(" ");
967
+ return /* @__PURE__ */ t("div", { className: g, children: [
968
+ (c || r) && /* @__PURE__ */ t("div", { className: me.label, children: [
969
+ c && /* @__PURE__ */ e("span", { className: me.labelText, children: c }),
970
+ r && /* @__PURE__ */ e("span", { className: me.value, children: n })
971
+ ] }),
972
+ /* @__PURE__ */ t("div", { className: me.sliderContainer, children: [
973
+ /* @__PURE__ */ e("div", { className: me.track }),
974
+ /* @__PURE__ */ e("div", { className: me.fill, style: { width: `${h}%` } }),
975
+ /* @__PURE__ */ e("div", { className: me.thumb, style: { left: `${h}%` } }),
976
+ /* @__PURE__ */ e(
977
+ "input",
978
+ {
979
+ ref: m,
980
+ type: "range",
981
+ className: me.input,
982
+ value: n,
983
+ min: a,
984
+ max: s,
985
+ step: l,
986
+ disabled: _,
987
+ onChange: f,
988
+ ...u
989
+ }
990
+ )
991
+ ] })
992
+ ] });
993
+ }
994
+ );
995
+ Ko.displayName = "Slider";
996
+ const Qo = "_alert_1my5n_11", Jo = "_icon_1my5n_31", Xo = "_content_1my5n_51", Zo = "_title_1my5n_61", ec = "_description_1my5n_79", nc = "_closeBtn_1my5n_93", tc = "_info_1my5n_137", ac = "_success_1my5n_153", sc = "_warning_1my5n_169", oc = "_error_1my5n_185", Ge = {
997
+ alert: Qo,
998
+ icon: Jo,
999
+ content: Xo,
1000
+ title: Zo,
1001
+ description: ec,
1002
+ closeBtn: nc,
1003
+ info: tc,
1004
+ success: ac,
1005
+ warning: sc,
1006
+ error: oc
1007
+ }, cc = {
1008
+ info: "ℹ",
1009
+ success: "✓",
1010
+ warning: "⚠",
1011
+ error: "✕"
1012
+ };
1013
+ function lc({
1014
+ variant: n = "info",
1015
+ title: a,
1016
+ children: s,
1017
+ closable: l = !1,
1018
+ onClose: c,
1019
+ icon: r,
1020
+ className: i = ""
1021
+ }) {
1022
+ return /* @__PURE__ */ t("div", { className: `${Ge.alert} ${Ge[n]} ${i}`, role: "alert", children: [
1023
+ /* @__PURE__ */ e("span", { className: Ge.icon, children: r ?? cc[n] }),
1024
+ /* @__PURE__ */ t("div", { className: Ge.content, children: [
1025
+ a && /* @__PURE__ */ e("div", { className: Ge.title, children: a }),
1026
+ s && /* @__PURE__ */ e("div", { className: Ge.description, children: s })
1027
+ ] }),
1028
+ l && /* @__PURE__ */ e("button", { className: Ge.closeBtn, onClick: c, "aria-label": "Close", children: "✕" })
1029
+ ] });
1030
+ }
1031
+ lc.displayName = "Alert";
1032
+ const rc = "_pagination_1pgq3_11", ic = "_button_1pgq3_23", _c = "_active_1pgq3_65", dc = "_ellipsis_1pgq3_101", mc = "_nav_1pgq3_125", pc = "_sm_1pgq3_135", uc = "_lg_1pgq3_149", Ce = {
1033
+ pagination: rc,
1034
+ button: ic,
1035
+ active: _c,
1036
+ ellipsis: dc,
1037
+ nav: mc,
1038
+ sm: pc,
1039
+ lg: uc
1040
+ };
1041
+ function hc({
1042
+ currentPage: n,
1043
+ totalPages: a,
1044
+ onPageChange: s,
1045
+ maxVisible: l = 5,
1046
+ showNavigation: c = !0,
1047
+ size: r = "md",
1048
+ className: i = ""
1049
+ }) {
1050
+ const o = (() => {
1051
+ const d = [];
1052
+ if (a <= l) {
1053
+ for (let h = 1; h <= a; h++) d.push(h);
1054
+ return d;
1055
+ }
1056
+ const p = Math.floor(l / 2);
1057
+ let u = Math.max(1, n - p), m = Math.min(a, n + p);
1058
+ n <= p ? m = l : n >= a - p && (u = a - l + 1), u > 1 && (d.push(1), u > 2 && d.push("ellipsis"));
1059
+ for (let h = u; h <= m; h++) d.push(h);
1060
+ return m < a && (m < a - 1 && d.push("ellipsis"), d.push(a)), d;
1061
+ })();
1062
+ return /* @__PURE__ */ t("nav", { className: `${Ce.pagination} ${Ce[r]} ${i}`, "aria-label": "Pagination", children: [
1063
+ c && /* @__PURE__ */ e(
1064
+ "button",
1065
+ {
1066
+ className: `${Ce.button} ${Ce.nav}`,
1067
+ onClick: () => s(n - 1),
1068
+ disabled: n <= 1,
1069
+ "aria-label": "Previous page",
1070
+ children: "←"
1071
+ }
1072
+ ),
1073
+ o.map(
1074
+ (d, p) => d === "ellipsis" ? /* @__PURE__ */ e("span", { className: Ce.ellipsis, children: "..." }, `ellipsis-${p}`) : /* @__PURE__ */ e(
1075
+ "button",
1076
+ {
1077
+ className: `${Ce.button} ${n === d ? Ce.active : ""}`,
1078
+ onClick: () => s(d),
1079
+ "aria-current": n === d ? "page" : void 0,
1080
+ children: d
1081
+ },
1082
+ d
1083
+ )
1084
+ ),
1085
+ c && /* @__PURE__ */ e(
1086
+ "button",
1087
+ {
1088
+ className: `${Ce.button} ${Ce.nav}`,
1089
+ onClick: () => s(n + 1),
1090
+ disabled: n >= a,
1091
+ "aria-label": "Next page",
1092
+ children: "→"
1093
+ }
1094
+ )
1095
+ ] });
1096
+ }
1097
+ hc.displayName = "Pagination";
1098
+ const gc = "_breadcrumb_uypmd_11", fc = "_item_uypmd_27", vc = "_link_uypmd_39", bc = "_current_uypmd_69", $c = "_separator_uypmd_81", Nc = "_icon_uypmd_93", yc = "_sm_uypmd_107", kc = "_lg_uypmd_115", Se = {
1099
+ breadcrumb: gc,
1100
+ item: fc,
1101
+ link: vc,
1102
+ current: bc,
1103
+ separator: $c,
1104
+ icon: Nc,
1105
+ sm: yc,
1106
+ lg: kc
1107
+ };
1108
+ function wc({
1109
+ items: n,
1110
+ separator: a = "/",
1111
+ size: s = "md",
1112
+ className: l = ""
1113
+ }) {
1114
+ return /* @__PURE__ */ e(
1115
+ "nav",
1116
+ {
1117
+ className: `${Se.breadcrumb} ${s !== "md" ? Se[s] : ""} ${l}`,
1118
+ "aria-label": "Breadcrumb",
1119
+ children: n.map((c, r) => {
1120
+ const i = r === n.length - 1;
1121
+ return /* @__PURE__ */ t("div", { className: Se.item, children: [
1122
+ c.icon && /* @__PURE__ */ e("span", { className: Se.icon, children: c.icon }),
1123
+ i || !c.href ? /* @__PURE__ */ e("span", { className: `${Se.link} ${i ? Se.current : ""}`, children: c.label }) : /* @__PURE__ */ e("a", { href: c.href, className: Se.link, children: c.label }),
1124
+ !i && /* @__PURE__ */ e("span", { className: Se.separator, children: a })
1125
+ ] }, r);
1126
+ })
1127
+ }
1128
+ );
1129
+ }
1130
+ wc.displayName = "Breadcrumb";
1131
+ const Cc = "_divider_1tg6m_11", xc = "_line_1tg6m_25", Bc = "_noLabel_1tg6m_47", Ic = "_label_1tg6m_57", Tc = "_vertical_1tg6m_77", zc = "_dashed_1tg6m_113", Lc = "_sm_1tg6m_141", jc = "_md_1tg6m_149", Sc = "_lg_1tg6m_157", De = {
1132
+ divider: Cc,
1133
+ line: xc,
1134
+ noLabel: Bc,
1135
+ label: Ic,
1136
+ vertical: Tc,
1137
+ dashed: zc,
1138
+ sm: Lc,
1139
+ md: jc,
1140
+ lg: Sc
1141
+ };
1142
+ function Dc({
1143
+ label: n,
1144
+ vertical: a = !1,
1145
+ dashed: s = !1,
1146
+ spacing: l = "md",
1147
+ className: c = ""
1148
+ }) {
1149
+ const r = [
1150
+ De.divider,
1151
+ !n && De.noLabel,
1152
+ a && De.vertical,
1153
+ s && De.dashed,
1154
+ De[l],
1155
+ c
1156
+ ].filter(Boolean).join(" ");
1157
+ return /* @__PURE__ */ t("div", { className: r, role: "separator", children: [
1158
+ /* @__PURE__ */ e("div", { className: De.line }),
1159
+ n && /* @__PURE__ */ e("span", { className: De.label, children: n }),
1160
+ n && /* @__PURE__ */ e("div", { className: De.line })
1161
+ ] });
1162
+ }
1163
+ Dc.displayName = "Divider";
1164
+ const qc = "_tableWrapper_7nh49_11", Rc = "_table_7nh49_11", Mc = "_thead_7nh49_43", Ac = "_th_7nh49_43", Ec = "_tbody_7nh49_81", Wc = "_td_7nh49_97", Pc = "_striped_7nh49_131", Fc = "_compact_7nh49_141", qe = {
1165
+ tableWrapper: qc,
1166
+ table: Rc,
1167
+ thead: Mc,
1168
+ th: Ac,
1169
+ tbody: Ec,
1170
+ td: Wc,
1171
+ striped: Pc,
1172
+ compact: Fc
1173
+ };
1174
+ function Oc({
1175
+ columns: n,
1176
+ data: a,
1177
+ striped: s = !1,
1178
+ compact: l = !1,
1179
+ className: c = ""
1180
+ }) {
1181
+ const r = [
1182
+ qe.table,
1183
+ s && qe.striped,
1184
+ l && qe.compact,
1185
+ c
1186
+ ].filter(Boolean).join(" ");
1187
+ return /* @__PURE__ */ e("div", { className: qe.tableWrapper, children: /* @__PURE__ */ t("table", { className: r, children: [
1188
+ /* @__PURE__ */ e("thead", { className: qe.thead, children: /* @__PURE__ */ e("tr", { children: n.map((i) => /* @__PURE__ */ e("th", { className: qe.th, children: i.header }, String(i.key))) }) }),
1189
+ /* @__PURE__ */ e("tbody", { className: qe.tbody, children: a.map((i, _) => /* @__PURE__ */ e("tr", { children: n.map((o) => {
1190
+ const d = i[o.key];
1191
+ return /* @__PURE__ */ e("td", { className: qe.td, children: o.render ? o.render(d, i) : String(d ?? "") }, String(o.key));
1192
+ }) }, _)) })
1193
+ ] }) });
1194
+ }
1195
+ Oc.displayName = "Table";
1196
+ const Gc = "_rating_1353j_11", Uc = "_star_1353j_23", Vc = "_filled_1353j_37", Hc = "_half_1353j_47", Yc = "_readonly_1353j_79", Kc = "_sm_1353j_97", Qc = "_lg_1353j_105", Jc = "_value_1353j_115", Ue = {
1197
+ rating: Gc,
1198
+ star: Uc,
1199
+ filled: Vc,
1200
+ half: Hc,
1201
+ readonly: Yc,
1202
+ sm: Kc,
1203
+ lg: Qc,
1204
+ value: Jc
1205
+ };
1206
+ function Xc({
1207
+ value: n = 0,
1208
+ max: a = 5,
1209
+ readonly: s = !1,
1210
+ showValue: l = !1,
1211
+ size: c = "md",
1212
+ onValueChange: r,
1213
+ className: i = ""
1214
+ }) {
1215
+ const [_, o] = k(null), d = _ ?? n, p = (m) => {
1216
+ !s && r && r(m);
1217
+ }, u = [
1218
+ Ue.rating,
1219
+ s && Ue.readonly,
1220
+ c !== "md" && Ue[c],
1221
+ i
1222
+ ].filter(Boolean).join(" ");
1223
+ return /* @__PURE__ */ t("div", { className: u, children: [
1224
+ Array.from({ length: a }, (m, h) => {
1225
+ const f = h + 1, g = d >= f, $ = !g && d > h && d < f;
1226
+ return /* @__PURE__ */ e(
1227
+ "span",
1228
+ {
1229
+ className: `${Ue.star} ${g ? Ue.filled : ""} ${$ ? Ue.half : ""}`,
1230
+ onClick: () => p(f),
1231
+ onMouseEnter: () => !s && o(f),
1232
+ onMouseLeave: () => !s && o(null),
1233
+ role: s ? "img" : "button",
1234
+ "aria-label": `${f} star${f > 1 ? "s" : ""}`,
1235
+ children: "★"
1236
+ },
1237
+ h
1238
+ );
1239
+ }),
1240
+ l && /* @__PURE__ */ e("span", { className: Ue.value, children: n.toFixed(1) })
1241
+ ] });
1242
+ }
1243
+ Xc.displayName = "Rating";
1244
+ const Zc = "_spinner_1uv1q_11", el = "_icon_1uv1q_23", nl = "_spin_1uv1q_11", tl = "_xs_1uv1q_39", al = "_sm_1uv1q_51", sl = "_md_1uv1q_63", ol = "_lg_1uv1q_75", cl = "_xl_1uv1q_87", ll = "_withLabel_1uv1q_101", rl = "_label_1uv1q_111", il = "_primary_1uv1q_129", _l = "_secondary_1uv1q_137", dl = "_white_1uv1q_145", Xe = {
1245
+ spinner: Zc,
1246
+ icon: el,
1247
+ spin: nl,
1248
+ xs: tl,
1249
+ sm: al,
1250
+ md: sl,
1251
+ lg: ol,
1252
+ xl: cl,
1253
+ withLabel: ll,
1254
+ label: rl,
1255
+ primary: il,
1256
+ secondary: _l,
1257
+ white: dl
1258
+ };
1259
+ function ml({
1260
+ size: n = "md",
1261
+ variant: a = "primary",
1262
+ label: s,
1263
+ className: l = ""
1264
+ }) {
1265
+ const c = [
1266
+ Xe.spinner,
1267
+ Xe[n],
1268
+ Xe[a],
1269
+ s && Xe.withLabel,
1270
+ l
1271
+ ].filter(Boolean).join(" ");
1272
+ return /* @__PURE__ */ t("div", { className: c, role: "status", "aria-label": s || "Loading", children: [
1273
+ /* @__PURE__ */ e("div", { className: Xe.icon }),
1274
+ s && /* @__PURE__ */ e("span", { className: Xe.label, children: s })
1275
+ ] });
1276
+ }
1277
+ ml.displayName = "Spinner";
1278
+ const pl = "_tag_1jbmd_11", ul = "_removeBtn_1jbmd_63", hl = "_primary_1jbmd_117", gl = "_success_1jbmd_139", fl = "_warning_1jbmd_153", vl = "_info_1jbmd_167", bl = "_sm_1jbmd_183", $l = "_lg_1jbmd_193", sn = {
1279
+ tag: pl,
1280
+ removeBtn: ul,
1281
+ primary: hl,
1282
+ success: gl,
1283
+ warning: fl,
1284
+ info: vl,
1285
+ sm: bl,
1286
+ lg: $l
1287
+ };
1288
+ function Nl({
1289
+ children: n,
1290
+ variant: a = "default",
1291
+ size: s = "md",
1292
+ removable: l = !1,
1293
+ onRemove: c,
1294
+ className: r = ""
1295
+ }) {
1296
+ const i = [
1297
+ sn.tag,
1298
+ a !== "default" && sn[a],
1299
+ s !== "md" && sn[s],
1300
+ r
1301
+ ].filter(Boolean).join(" ");
1302
+ return /* @__PURE__ */ t("span", { className: i, children: [
1303
+ n,
1304
+ l && /* @__PURE__ */ e(
1305
+ "button",
1306
+ {
1307
+ className: sn.removeBtn,
1308
+ onClick: c,
1309
+ "aria-label": "Remove tag",
1310
+ children: "✕"
1311
+ }
1312
+ )
1313
+ ] });
1314
+ }
1315
+ Nl.displayName = "Tag";
1316
+ const yl = "_popover_1j290_11", kl = "_trigger_1j290_21", wl = "_content_1j290_29", Cl = "_open_1j290_61", xl = "_top_1j290_75", Bl = "_bottom_1j290_97", Il = "_left_1j290_119", Tl = "_right_1j290_141", zl = "_title_1j290_165", Ll = "_body_1j290_187", Ve = {
1317
+ popover: yl,
1318
+ trigger: kl,
1319
+ content: wl,
1320
+ open: Cl,
1321
+ top: xl,
1322
+ bottom: Bl,
1323
+ left: Il,
1324
+ right: Tl,
1325
+ title: zl,
1326
+ body: Ll
1327
+ };
1328
+ function jl({
1329
+ trigger: n,
1330
+ children: a,
1331
+ title: s,
1332
+ position: l = "bottom",
1333
+ className: c = ""
1334
+ }) {
1335
+ const [r, i] = k(!1), _ = fe(null);
1336
+ B(() => {
1337
+ const d = (p) => {
1338
+ _.current && !_.current.contains(p.target) && i(!1);
1339
+ };
1340
+ return r && document.addEventListener("mousedown", d), () => document.removeEventListener("mousedown", d);
1341
+ }, [r]);
1342
+ const o = [
1343
+ Ve.popover,
1344
+ Ve[l],
1345
+ r && Ve.open,
1346
+ c
1347
+ ].filter(Boolean).join(" ");
1348
+ return /* @__PURE__ */ t("div", { ref: _, className: o, children: [
1349
+ /* @__PURE__ */ e("div", { className: Ve.trigger, onClick: () => i(!r), children: n }),
1350
+ /* @__PURE__ */ t("div", { className: Ve.content, children: [
1351
+ s && /* @__PURE__ */ e("div", { className: Ve.title, children: s }),
1352
+ /* @__PURE__ */ e("div", { className: Ve.body, children: a })
1353
+ ] })
1354
+ ] });
1355
+ }
1356
+ jl.displayName = "Popover";
1357
+ const Sl = "_stepper_172t4_11", Dl = "_horizontal_172t4_21", ql = "_vertical_172t4_29", Rl = "_step_172t4_11", Ml = "_indicator_172t4_71", Al = "_active_172t4_115", El = "_completed_172t4_129", Wl = "_content_172t4_145", Pl = "_title_172t4_165", Fl = "_description_172t4_189", Ol = "_connector_172t4_205", $e = {
1358
+ stepper: Sl,
1359
+ horizontal: Dl,
1360
+ vertical: ql,
1361
+ step: Rl,
1362
+ indicator: Ml,
1363
+ active: Al,
1364
+ completed: El,
1365
+ content: Wl,
1366
+ title: Pl,
1367
+ description: Fl,
1368
+ connector: Ol
1369
+ };
1370
+ function Gl({
1371
+ steps: n,
1372
+ currentStep: a,
1373
+ orientation: s = "horizontal",
1374
+ className: l = ""
1375
+ }) {
1376
+ return /* @__PURE__ */ e("div", { className: `${$e.stepper} ${$e[s]} ${l}`, children: n.map((c, r) => {
1377
+ const i = r < a, _ = r === a, o = r === n.length - 1, d = [
1378
+ $e.step,
1379
+ i && $e.completed,
1380
+ _ && $e.active
1381
+ ].filter(Boolean).join(" ");
1382
+ return /* @__PURE__ */ t("div", { className: d, children: [
1383
+ /* @__PURE__ */ e("div", { className: $e.indicator, children: i ? "✓" : c.icon || r + 1 }),
1384
+ /* @__PURE__ */ t("div", { className: $e.content, children: [
1385
+ /* @__PURE__ */ e("div", { className: $e.title, children: c.title }),
1386
+ c.description && /* @__PURE__ */ e("div", { className: $e.description, children: c.description })
1387
+ ] }),
1388
+ !o && /* @__PURE__ */ e("div", { className: $e.connector })
1389
+ ] }, r);
1390
+ }) });
1391
+ }
1392
+ Gl.displayName = "Stepper";
1393
+ const Ul = "_timeline_gmw8h_11", Vl = "_item_gmw8h_49", Hl = "_dot_gmw8h_69", Yl = "_card_gmw8h_111", Kl = "_time_gmw8h_11", Ql = "_title_gmw8h_157", Jl = "_description_gmw8h_175", He = {
1394
+ timeline: Ul,
1395
+ item: Vl,
1396
+ dot: Hl,
1397
+ card: Yl,
1398
+ time: Kl,
1399
+ title: Ql,
1400
+ description: Jl
1401
+ };
1402
+ function Xl({ items: n, className: a = "" }) {
1403
+ return /* @__PURE__ */ e("div", { className: `${He.timeline} ${a}`, children: n.map((s, l) => /* @__PURE__ */ t("div", { className: He.item, children: [
1404
+ /* @__PURE__ */ e("div", { className: He.dot, children: s.icon || "•" }),
1405
+ /* @__PURE__ */ t("div", { className: He.card, children: [
1406
+ /* @__PURE__ */ e("div", { className: He.time, children: s.time }),
1407
+ /* @__PURE__ */ e("div", { className: He.title, children: s.title }),
1408
+ s.description && /* @__PURE__ */ e("div", { className: He.description, children: s.description })
1409
+ ] })
1410
+ ] }, l)) });
1411
+ }
1412
+ Xl.displayName = "Timeline";
1413
+ const Zl = "_statsCard_1d7wd_11", er = "_icon_1d7wd_51", nr = "_content_1d7wd_85", tr = "_value_1d7wd_95", ar = "_label_1d7wd_113", sr = "_trend_1d7wd_133", or = "_up_1d7wd_151", cr = "_down_1d7wd_159", lr = "_success_1d7wd_169", rr = "_warning_1d7wd_177", ir = "_info_1d7wd_185", _r = "_danger_1d7wd_193", Re = {
1414
+ statsCard: Zl,
1415
+ icon: er,
1416
+ content: nr,
1417
+ value: tr,
1418
+ label: ar,
1419
+ trend: sr,
1420
+ up: or,
1421
+ down: cr,
1422
+ success: lr,
1423
+ warning: rr,
1424
+ info: ir,
1425
+ danger: _r
1426
+ };
1427
+ function dr({
1428
+ value: n,
1429
+ label: a,
1430
+ icon: s,
1431
+ variant: l = "default",
1432
+ trend: c,
1433
+ trendValue: r,
1434
+ className: i = ""
1435
+ }) {
1436
+ const _ = [
1437
+ Re.statsCard,
1438
+ l !== "default" && Re[l],
1439
+ i
1440
+ ].filter(Boolean).join(" ");
1441
+ return /* @__PURE__ */ t("div", { className: _, children: [
1442
+ s && /* @__PURE__ */ e("div", { className: Re.icon, children: s }),
1443
+ /* @__PURE__ */ t("div", { className: Re.content, children: [
1444
+ /* @__PURE__ */ e("div", { className: Re.value, children: n }),
1445
+ /* @__PURE__ */ e("div", { className: Re.label, children: a }),
1446
+ c && r && /* @__PURE__ */ t("div", { className: `${Re.trend} ${Re[c]}`, children: [
1447
+ c === "up" ? "↑" : "↓",
1448
+ " ",
1449
+ r
1450
+ ] })
1451
+ ] })
1452
+ ] });
1453
+ }
1454
+ dr.displayName = "StatsCard";
1455
+ const mr = "_carousel_1ryxv_11", pr = "_track_1ryxv_29", ur = "_slide_1ryxv_39", hr = "_nav_1ryxv_63", gr = "_navPrev_1ryxv_131", fr = "_navNext_1ryxv_139", vr = "_dots_1ryxv_149", br = "_dot_1ryxv_149", $r = "_active_1ryxv_189", Nr = "_overlay_1ryxv_209", yr = "_overlayTitle_1ryxv_227", kr = "_overlayDescription_1ryxv_243", te = {
1456
+ carousel: mr,
1457
+ track: pr,
1458
+ slide: ur,
1459
+ nav: hr,
1460
+ navPrev: gr,
1461
+ navNext: fr,
1462
+ dots: vr,
1463
+ dot: br,
1464
+ active: $r,
1465
+ overlay: Nr,
1466
+ overlayTitle: yr,
1467
+ overlayDescription: kr
1468
+ };
1469
+ function wr({
1470
+ slides: n,
1471
+ showNav: a = !0,
1472
+ showDots: s = !0,
1473
+ className: l = ""
1474
+ }) {
1475
+ const [c, r] = k(0), i = (d) => {
1476
+ r((d + n.length) % n.length);
1477
+ }, _ = () => i(c - 1), o = () => i(c + 1);
1478
+ return /* @__PURE__ */ t("div", { className: `${te.carousel} ${l}`, children: [
1479
+ /* @__PURE__ */ e(
1480
+ "div",
1481
+ {
1482
+ className: te.track,
1483
+ style: { transform: `translateX(-${c * 100}%)` },
1484
+ children: n.map((d, p) => /* @__PURE__ */ e("div", { className: te.slide, children: d.content || /* @__PURE__ */ t(oe, { children: [
1485
+ d.image && /* @__PURE__ */ e("img", { src: d.image, alt: d.title || "" }),
1486
+ (d.title || d.description) && /* @__PURE__ */ t("div", { className: te.overlay, children: [
1487
+ d.title && /* @__PURE__ */ e("div", { className: te.overlayTitle, children: d.title }),
1488
+ d.description && /* @__PURE__ */ e("div", { className: te.overlayDescription, children: d.description })
1489
+ ] })
1490
+ ] }) }, p))
1491
+ }
1492
+ ),
1493
+ a && n.length > 1 && /* @__PURE__ */ t(oe, { children: [
1494
+ /* @__PURE__ */ e("button", { className: `${te.nav} ${te.navPrev}`, onClick: _, children: "←" }),
1495
+ /* @__PURE__ */ e("button", { className: `${te.nav} ${te.navNext}`, onClick: o, children: "→" })
1496
+ ] }),
1497
+ s && n.length > 1 && /* @__PURE__ */ e("div", { className: te.dots, children: n.map((d, p) => /* @__PURE__ */ e(
1498
+ "button",
1499
+ {
1500
+ className: `${te.dot} ${c === p ? te.active : ""}`,
1501
+ onClick: () => i(p),
1502
+ "aria-label": `Go to slide ${p + 1}`
1503
+ },
1504
+ p
1505
+ )) })
1506
+ ] });
1507
+ }
1508
+ wr.displayName = "Carousel";
1509
+ const Cr = "_fileUpload_38cz6_11", xr = "_dropzone_38cz6_19", Br = "_dragging_38cz6_65", Ir = "_disabled_38cz6_79", Tr = "_icon_38cz6_89", zr = "_text_38cz6_97", Lr = "_mainText_38cz6_105", jr = "_subText_38cz6_121", Sr = "_input_38cz6_135", Dr = "_fileList_38cz6_145", qr = "_file_38cz6_11", Rr = "_fileIcon_38cz6_183", Mr = "_fileInfo_38cz6_191", Ar = "_fileName_38cz6_201", Er = "_fileSize_38cz6_219", Wr = "_removeBtn_38cz6_231", G = {
1510
+ fileUpload: Cr,
1511
+ dropzone: xr,
1512
+ dragging: Br,
1513
+ disabled: Ir,
1514
+ icon: Tr,
1515
+ text: zr,
1516
+ mainText: Lr,
1517
+ subText: jr,
1518
+ input: Sr,
1519
+ fileList: Dr,
1520
+ file: qr,
1521
+ fileIcon: Rr,
1522
+ fileInfo: Mr,
1523
+ fileName: Ar,
1524
+ fileSize: Er,
1525
+ removeBtn: Wr
1526
+ }, Pr = (n) => n < 1024 ? `${n} B` : n < 1024 * 1024 ? `${(n / 1024).toFixed(1)} KB` : `${(n / (1024 * 1024)).toFixed(1)} MB`;
1527
+ function Fr({
1528
+ accept: n,
1529
+ multiple: a = !1,
1530
+ maxSize: s,
1531
+ disabled: l = !1,
1532
+ onFilesChange: c,
1533
+ className: r = ""
1534
+ }) {
1535
+ const [i, _] = k([]), [o, d] = k(!1), p = fe(null), u = (v) => {
1536
+ if (!v) return;
1537
+ const b = Array.from(v).filter((y) => !s || y.size <= s).map((y) => ({
1538
+ file: y,
1539
+ id: `${y.name}-${Date.now()}-${Math.random()}`
1540
+ })), C = a ? [...i, ...b] : b;
1541
+ _(C), c?.(C.map((y) => y.file));
1542
+ }, m = (v) => {
1543
+ v.preventDefault(), d(!1), l || u(v.dataTransfer.files);
1544
+ }, h = (v) => {
1545
+ v.preventDefault(), l || d(!0);
1546
+ }, f = () => d(!1), g = (v) => {
1547
+ const b = i.filter((C) => C.id !== v);
1548
+ _(b), c?.(b.map((C) => C.file));
1549
+ }, $ = [
1550
+ G.dropzone,
1551
+ o && G.dragging,
1552
+ l && G.disabled
1553
+ ].filter(Boolean).join(" ");
1554
+ return /* @__PURE__ */ t("div", { className: `${G.fileUpload} ${r}`, children: [
1555
+ /* @__PURE__ */ t(
1556
+ "div",
1557
+ {
1558
+ className: $,
1559
+ onClick: () => !l && p.current?.click(),
1560
+ onDrop: m,
1561
+ onDragOver: h,
1562
+ onDragLeave: f,
1563
+ children: [
1564
+ /* @__PURE__ */ e("span", { className: G.icon, children: "📁" }),
1565
+ /* @__PURE__ */ t("div", { className: G.text, children: [
1566
+ /* @__PURE__ */ e("div", { className: G.mainText, children: "Dosyaları Sürükle veya Tıkla" }),
1567
+ /* @__PURE__ */ e("div", { className: G.subText, children: n ? `Kabul edilen: ${n}` : "Tüm dosya türleri kabul edilir" })
1568
+ ] }),
1569
+ /* @__PURE__ */ e(
1570
+ "input",
1571
+ {
1572
+ ref: p,
1573
+ type: "file",
1574
+ className: G.input,
1575
+ accept: n,
1576
+ multiple: a,
1577
+ disabled: l,
1578
+ onChange: (v) => u(v.target.files)
1579
+ }
1580
+ )
1581
+ ]
1582
+ }
1583
+ ),
1584
+ i.length > 0 && /* @__PURE__ */ e("div", { className: G.fileList, children: i.map((v) => /* @__PURE__ */ t("div", { className: G.file, children: [
1585
+ /* @__PURE__ */ e("span", { className: G.fileIcon, children: "📄" }),
1586
+ /* @__PURE__ */ t("div", { className: G.fileInfo, children: [
1587
+ /* @__PURE__ */ e("div", { className: G.fileName, children: v.file.name }),
1588
+ /* @__PURE__ */ e("div", { className: G.fileSize, children: Pr(v.file.size) })
1589
+ ] }),
1590
+ /* @__PURE__ */ e(
1591
+ "button",
1592
+ {
1593
+ className: G.removeBtn,
1594
+ onClick: () => g(v.id),
1595
+ "aria-label": "Remove file",
1596
+ children: "✕"
1597
+ }
1598
+ )
1599
+ ] }, v.id)) })
1600
+ ] });
1601
+ }
1602
+ Fr.displayName = "FileUpload";
1603
+ const Or = "_navbar_lodlc_11", Gr = "_sticky_lodlc_23", Ur = "_transparent_lodlc_35", Vr = "_container_lodlc_49", Hr = "_brand_lodlc_69", Yr = "_brandLogo_lodlc_83", Kr = "_brandName_lodlc_91", Qr = "_brandAccent_lodlc_107", Jr = "_nav_lodlc_11", Xr = "_navLink_lodlc_129", Zr = "_active_lodlc_165", ei = "_actions_lodlc_179", ni = "_menuToggle_lodlc_193", ti = "_mobileOpen_lodlc_253", X = {
1604
+ navbar: Or,
1605
+ sticky: Gr,
1606
+ transparent: Ur,
1607
+ container: Vr,
1608
+ brand: Hr,
1609
+ brandLogo: Yr,
1610
+ brandName: Kr,
1611
+ brandAccent: Qr,
1612
+ nav: Jr,
1613
+ navLink: Xr,
1614
+ active: Zr,
1615
+ actions: ei,
1616
+ menuToggle: ni,
1617
+ mobileOpen: ti
1618
+ };
1619
+ function ai({
1620
+ logo: n,
1621
+ brandName: a = "ABI",
1622
+ brandAccent: s = "-UI",
1623
+ items: l = [],
1624
+ actions: c,
1625
+ contained: r = !0,
1626
+ maxWidth: i = 1200,
1627
+ sticky: _ = !0,
1628
+ transparent: o = !1,
1629
+ className: d = ""
1630
+ }) {
1631
+ const [p, u] = k(!1), m = [
1632
+ X.navbar,
1633
+ _ && X.sticky,
1634
+ o && X.transparent,
1635
+ d
1636
+ ].filter(Boolean).join(" "), h = r ? {
1637
+ maxWidth: typeof i == "number" ? `${i}px` : i,
1638
+ margin: "0 auto",
1639
+ padding: "0 1.5rem"
1640
+ } : void 0, f = /* @__PURE__ */ t(oe, { children: [
1641
+ /* @__PURE__ */ t("a", { href: "/", className: X.brand, children: [
1642
+ n && /* @__PURE__ */ e("span", { className: X.brandLogo, children: n }),
1643
+ /* @__PURE__ */ t("span", { className: X.brandName, children: [
1644
+ a,
1645
+ s && /* @__PURE__ */ e("span", { className: X.brandAccent, children: s })
1646
+ ] })
1647
+ ] }),
1648
+ /* @__PURE__ */ e("div", { className: `${X.nav} ${p ? X.mobileOpen : ""}`, children: l.map((g, $) => /* @__PURE__ */ e(
1649
+ "a",
1650
+ {
1651
+ href: g.href,
1652
+ className: `${X.navLink} ${g.active ? X.active : ""}`,
1653
+ children: g.label
1654
+ },
1655
+ $
1656
+ )) }),
1657
+ c && /* @__PURE__ */ e("div", { className: X.actions, children: c }),
1658
+ /* @__PURE__ */ e(
1659
+ "button",
1660
+ {
1661
+ className: X.menuToggle,
1662
+ onClick: () => u(!p),
1663
+ "aria-label": "Toggle menu",
1664
+ children: p ? "✕" : "☰"
1665
+ }
1666
+ )
1667
+ ] });
1668
+ return /* @__PURE__ */ e("nav", { className: m, children: r ? /* @__PURE__ */ e("div", { className: X.container, style: h, children: f }) : f });
1669
+ }
1670
+ ai.displayName = "Navbar";
1671
+ const si = "_footer_1m3gl_11", oi = "_content_1m3gl_23", ci = "_brand_1m3gl_41", li = "_brandName_1m3gl_53", ri = "_brandAccent_1m3gl_69", ii = "_brandDescription_1m3gl_77", _i = "_group_1m3gl_93", di = "_groupTitle_1m3gl_105", mi = "_groupLinks_1m3gl_121", pi = "_link_1m3gl_133", ui = "_bottom_1m3gl_159", hi = "_copyright_1m3gl_189", gi = "_socials_1m3gl_203", fi = "_social_1m3gl_203", Z = {
1672
+ footer: si,
1673
+ content: oi,
1674
+ brand: ci,
1675
+ brandName: li,
1676
+ brandAccent: ri,
1677
+ brandDescription: ii,
1678
+ group: _i,
1679
+ groupTitle: di,
1680
+ groupLinks: mi,
1681
+ link: pi,
1682
+ bottom: ui,
1683
+ copyright: hi,
1684
+ socials: gi,
1685
+ social: fi
1686
+ };
1687
+ function vi({
1688
+ brandName: n = "ABI",
1689
+ brandAccent: a = "-UI",
1690
+ description: s = "Manga sitesi için çizgi roman tarzı component kütüphanesi.",
1691
+ groups: l = [],
1692
+ copyright: c = `© ${(/* @__PURE__ */ new Date()).getFullYear()} ABI-UI. Tüm hakları saklıdır.`,
1693
+ socials: r = [],
1694
+ className: i = ""
1695
+ }) {
1696
+ return /* @__PURE__ */ t("footer", { className: `${Z.footer} ${i}`, children: [
1697
+ /* @__PURE__ */ t("div", { className: Z.content, children: [
1698
+ /* @__PURE__ */ t("div", { className: Z.brand, children: [
1699
+ /* @__PURE__ */ t("span", { className: Z.brandName, children: [
1700
+ n,
1701
+ /* @__PURE__ */ e("span", { className: Z.brandAccent, children: a })
1702
+ ] }),
1703
+ /* @__PURE__ */ e("p", { className: Z.brandDescription, children: s })
1704
+ ] }),
1705
+ l.map((_, o) => /* @__PURE__ */ t("div", { className: Z.group, children: [
1706
+ /* @__PURE__ */ e("span", { className: Z.groupTitle, children: _.title }),
1707
+ /* @__PURE__ */ e("div", { className: Z.groupLinks, children: _.links.map((d, p) => /* @__PURE__ */ e("a", { href: d.href, className: Z.link, children: d.label }, p)) })
1708
+ ] }, o))
1709
+ ] }),
1710
+ /* @__PURE__ */ t("div", { className: Z.bottom, children: [
1711
+ /* @__PURE__ */ e("span", { className: Z.copyright, children: c }),
1712
+ r.length > 0 && /* @__PURE__ */ e("div", { className: Z.socials, children: r.map((_, o) => /* @__PURE__ */ e(
1713
+ "a",
1714
+ {
1715
+ href: _.href,
1716
+ className: Z.social,
1717
+ "aria-label": _.label,
1718
+ children: _.icon
1719
+ },
1720
+ o
1721
+ )) })
1722
+ ] })
1723
+ ] });
1724
+ }
1725
+ vi.displayName = "Footer";
1726
+ const bi = "_calendar_1dpnz_11", $i = "_header_1dpnz_35", Ni = "_monthYear_1dpnz_49", yi = "_navBtn_1dpnz_65", ki = "_weekDays_1dpnz_115", wi = "_weekDay_1dpnz_115", Ci = "_days_1dpnz_149", xi = "_day_1dpnz_149", Bi = "_disabled_1dpnz_197", Ii = "_selected_1dpnz_197", Ti = "_today_1dpnz_207", zi = "_otherMonth_1dpnz_231", ee = {
1727
+ calendar: bi,
1728
+ header: $i,
1729
+ monthYear: Ni,
1730
+ navBtn: yi,
1731
+ weekDays: ki,
1732
+ weekDay: wi,
1733
+ days: Ci,
1734
+ day: xi,
1735
+ disabled: Bi,
1736
+ selected: Ii,
1737
+ today: Ti,
1738
+ otherMonth: zi
1739
+ }, Li = ["Pz", "Pt", "Sa", "Ça", "Pe", "Cu", "Ct"], ji = [
1740
+ "Ocak",
1741
+ "Şubat",
1742
+ "Mart",
1743
+ "Nisan",
1744
+ "Mayıs",
1745
+ "Haziran",
1746
+ "Temmuz",
1747
+ "Ağustos",
1748
+ "Eylül",
1749
+ "Ekim",
1750
+ "Kasım",
1751
+ "Aralık"
1752
+ ];
1753
+ function Si({
1754
+ value: n,
1755
+ onDateChange: a,
1756
+ minDate: s,
1757
+ maxDate: l,
1758
+ className: c = ""
1759
+ }) {
1760
+ const r = /* @__PURE__ */ new Date(), [i, _] = k(n || r), o = i.getFullYear(), d = i.getMonth(), p = new Date(o, d, 1), u = new Date(o, d + 1, 0), m = p.getDay(), h = u.getDate(), f = () => _(new Date(o, d - 1, 1)), g = () => _(new Date(o, d + 1, 1)), $ = (N) => N === r.getDate() && d === r.getMonth() && o === r.getFullYear(), v = (N) => n ? N === n.getDate() && d === n.getMonth() && o === n.getFullYear() : !1, b = (N) => {
1761
+ const z = new Date(o, d, N);
1762
+ return !!(s && z < s || l && z > l);
1763
+ }, C = (N) => {
1764
+ b(N) || a?.(new Date(o, d, N));
1765
+ }, y = [];
1766
+ for (let N = 0; N < m; N++)
1767
+ y.push(/* @__PURE__ */ e("div", { className: `${ee.day} ${ee.otherMonth}` }, `prev-${N}`));
1768
+ for (let N = 1; N <= h; N++) {
1769
+ const z = [
1770
+ ee.day,
1771
+ $(N) && ee.today,
1772
+ v(N) && ee.selected,
1773
+ b(N) && ee.disabled
1774
+ ].filter(Boolean).join(" ");
1775
+ y.push(
1776
+ /* @__PURE__ */ e("button", { className: z, onClick: () => C(N), children: N }, N)
1777
+ );
1778
+ }
1779
+ return /* @__PURE__ */ t("div", { className: `${ee.calendar} ${c}`, children: [
1780
+ /* @__PURE__ */ t("div", { className: ee.header, children: [
1781
+ /* @__PURE__ */ e("button", { className: ee.navBtn, onClick: f, children: "←" }),
1782
+ /* @__PURE__ */ t("span", { className: ee.monthYear, children: [
1783
+ ji[d],
1784
+ " ",
1785
+ o
1786
+ ] }),
1787
+ /* @__PURE__ */ e("button", { className: ee.navBtn, onClick: g, children: "→" })
1788
+ ] }),
1789
+ /* @__PURE__ */ e("div", { className: ee.weekDays, children: Li.map((N) => /* @__PURE__ */ e("div", { className: ee.weekDay, children: N }, N)) }),
1790
+ /* @__PURE__ */ e("div", { className: ee.days, children: y })
1791
+ ] });
1792
+ }
1793
+ Si.displayName = "Calendar";
1794
+ const Di = "_colorPicker_12itg_11", qi = "_preview_12itg_29", Ri = "_swatch_12itg_51", Mi = "_value_12itg_67", Ai = "_presets_12itg_85", Ei = "_preset_12itg_85", Wi = "_active_12itg_125", Pi = "_inputWrapper_12itg_139", Fi = "_colorInput_12itg_149", Oi = "_textInput_12itg_185", Ne = {
1795
+ colorPicker: Di,
1796
+ preview: qi,
1797
+ swatch: Ri,
1798
+ value: Mi,
1799
+ presets: Ai,
1800
+ preset: Ei,
1801
+ active: Wi,
1802
+ inputWrapper: Pi,
1803
+ colorInput: Fi,
1804
+ textInput: Oi
1805
+ }, Gi = [
1806
+ "#dc2626",
1807
+ "#ea580c",
1808
+ "#d97706",
1809
+ "#16a34a",
1810
+ "#0284c7",
1811
+ "#7c3aed",
1812
+ "#db2777",
1813
+ "#1f2937",
1814
+ "#f43f5e",
1815
+ "#f97316",
1816
+ "#eab308",
1817
+ "#22c55e",
1818
+ "#06b6d4",
1819
+ "#8b5cf6",
1820
+ "#ec4899",
1821
+ "#6b7280"
1822
+ ];
1823
+ function Ui({
1824
+ value: n = "#dc2626",
1825
+ onColorChange: a,
1826
+ presets: s = Gi,
1827
+ showInput: l = !0,
1828
+ className: c = ""
1829
+ }) {
1830
+ const [r, i] = k(n);
1831
+ B(() => {
1832
+ i(n);
1833
+ }, [n]);
1834
+ const _ = (o) => {
1835
+ i(o), a?.(o);
1836
+ };
1837
+ return /* @__PURE__ */ t("div", { className: `${Ne.colorPicker} ${c}`, children: [
1838
+ /* @__PURE__ */ t("div", { className: Ne.preview, children: [
1839
+ /* @__PURE__ */ e("div", { className: Ne.swatch, style: { backgroundColor: r } }),
1840
+ /* @__PURE__ */ e("span", { className: Ne.value, children: r })
1841
+ ] }),
1842
+ /* @__PURE__ */ e("div", { className: Ne.presets, children: s.map((o) => /* @__PURE__ */ e(
1843
+ "button",
1844
+ {
1845
+ className: `${Ne.preset} ${r === o ? Ne.active : ""}`,
1846
+ style: { backgroundColor: o },
1847
+ onClick: () => _(o),
1848
+ "aria-label": `Select color ${o}`
1849
+ },
1850
+ o
1851
+ )) }),
1852
+ l && /* @__PURE__ */ t("div", { className: Ne.inputWrapper, children: [
1853
+ /* @__PURE__ */ e(
1854
+ "input",
1855
+ {
1856
+ type: "color",
1857
+ className: Ne.colorInput,
1858
+ value: r,
1859
+ onChange: (o) => _(o.target.value)
1860
+ }
1861
+ ),
1862
+ /* @__PURE__ */ e(
1863
+ "input",
1864
+ {
1865
+ type: "text",
1866
+ className: Ne.textInput,
1867
+ value: r,
1868
+ onChange: (o) => _(o.target.value),
1869
+ placeholder: "#000000"
1870
+ }
1871
+ )
1872
+ ] })
1873
+ ] });
1874
+ }
1875
+ Ui.displayName = "ColorPicker";
1876
+ const Vi = "_notificationCenter_1t8n1_11", Hi = "_trigger_1t8n1_23", Yi = "_badge_1t8n1_71", Ki = "_dropdown_1t8n1_117", Qi = "_open_1t8n1_157", Ji = "_header_1t8n1_171", Xi = "_title_1t8n1_187", Zi = "_markAll_1t8n1_203", e_ = "_item_1t8n1_233", n_ = "_unread_1t8n1_265", t_ = "_icon_1t8n1_273", a_ = "_content_1t8n1_301", s_ = "_message_1t8n1_311", o_ = "_time_1t8n1_325", c_ = "_empty_1t8n1_341", l_ = "_emptyIcon_1t8n1_353", r_ = "_emptyText_1t8n1_363", A = {
1877
+ notificationCenter: Vi,
1878
+ trigger: Hi,
1879
+ badge: Yi,
1880
+ dropdown: Ki,
1881
+ open: Qi,
1882
+ header: Ji,
1883
+ title: Xi,
1884
+ markAll: Zi,
1885
+ item: e_,
1886
+ unread: n_,
1887
+ icon: t_,
1888
+ content: a_,
1889
+ message: s_,
1890
+ time: o_,
1891
+ empty: c_,
1892
+ emptyIcon: l_,
1893
+ emptyText: r_
1894
+ };
1895
+ function i_({
1896
+ notifications: n,
1897
+ onMarkAllRead: a,
1898
+ onNotificationClick: s,
1899
+ className: l = ""
1900
+ }) {
1901
+ const [c, r] = k(!1), i = fe(null), _ = n.filter((o) => !o.read).length;
1902
+ return B(() => {
1903
+ const o = (d) => {
1904
+ i.current && !i.current.contains(d.target) && r(!1);
1905
+ };
1906
+ return c && document.addEventListener("mousedown", o), () => document.removeEventListener("mousedown", o);
1907
+ }, [c]), /* @__PURE__ */ t("div", { ref: i, className: `${A.notificationCenter} ${c ? A.open : ""} ${l}`, children: [
1908
+ /* @__PURE__ */ t("button", { className: A.trigger, onClick: () => r(!c), children: [
1909
+ "🔔",
1910
+ _ > 0 && /* @__PURE__ */ e("span", { className: A.badge, children: _ })
1911
+ ] }),
1912
+ /* @__PURE__ */ t("div", { className: A.dropdown, children: [
1913
+ /* @__PURE__ */ t("div", { className: A.header, children: [
1914
+ /* @__PURE__ */ e("span", { className: A.title, children: "Bildirimler" }),
1915
+ _ > 0 && /* @__PURE__ */ e("button", { className: A.markAll, onClick: a, children: "Tümünü Oku" })
1916
+ ] }),
1917
+ n.length === 0 ? /* @__PURE__ */ t("div", { className: A.empty, children: [
1918
+ /* @__PURE__ */ e("div", { className: A.emptyIcon, children: "📭" }),
1919
+ /* @__PURE__ */ e("div", { className: A.emptyText, children: "Bildirim Yok" })
1920
+ ] }) : n.map((o) => /* @__PURE__ */ t(
1921
+ "div",
1922
+ {
1923
+ className: `${A.item} ${o.read ? "" : A.unread}`,
1924
+ onClick: () => s?.(o.id),
1925
+ children: [
1926
+ /* @__PURE__ */ e("div", { className: A.icon, children: o.icon || "📌" }),
1927
+ /* @__PURE__ */ t("div", { className: A.content, children: [
1928
+ /* @__PURE__ */ e("div", { className: A.message, children: o.message }),
1929
+ /* @__PURE__ */ e("div", { className: A.time, children: o.time })
1930
+ ] })
1931
+ ]
1932
+ },
1933
+ o.id
1934
+ ))
1935
+ ] })
1936
+ ] });
1937
+ }
1938
+ i_.displayName = "NotificationCenter";
1939
+ const __ = "_posterCard_ajba8_11", d_ = "_image_ajba8_45", m_ = "_imageContainer_ajba8_57", p_ = "_placeholder_ajba8_85", u_ = "_gradientOverlay_ajba8_107", h_ = "_badges_ajba8_129", g_ = "_badge_ajba8_129", f_ = "_hot_ajba8_183", v_ = "_completed_ajba8_191", b_ = "_adult_ajba8_199", $_ = "_content_ajba8_211", N_ = "_title_ajba8_229", y_ = "_genres_ajba8_265", k_ = "_genre_ajba8_265", w_ = "_genreMore_ajba8_307", C_ = "_meta_ajba8_329", x_ = "_metaItem_ajba8_343", B_ = "_rating_ajba8_359", I_ = "_sm_ajba8_409", T_ = "_lg_ajba8_435", q = {
1940
+ posterCard: __,
1941
+ image: d_,
1942
+ imageContainer: m_,
1943
+ placeholder: p_,
1944
+ gradientOverlay: u_,
1945
+ badges: h_,
1946
+ badge: g_,
1947
+ new: "_new_ajba8_175",
1948
+ hot: f_,
1949
+ completed: v_,
1950
+ adult: b_,
1951
+ content: $_,
1952
+ title: N_,
1953
+ genres: y_,
1954
+ genre: k_,
1955
+ genreMore: w_,
1956
+ meta: C_,
1957
+ metaItem: x_,
1958
+ rating: B_,
1959
+ sm: I_,
1960
+ lg: T_
1961
+ };
1962
+ function z_({
1963
+ image: n,
1964
+ title: a,
1965
+ rating: s,
1966
+ showRating: l = !1,
1967
+ genres: c = [],
1968
+ maxGenres: r = 2,
1969
+ chapters: i,
1970
+ status: _,
1971
+ badges: o = [],
1972
+ isAdult: d = !1,
1973
+ size: p = "md",
1974
+ onClick: u,
1975
+ className: m = ""
1976
+ }) {
1977
+ const h = [
1978
+ q.posterCard,
1979
+ p !== "md" && q[p],
1980
+ m
1981
+ ].filter(Boolean).join(" "), f = c.slice(0, r), g = c.length - r, $ = d ? [{ label: "+18", type: "adult" }, ...o] : o;
1982
+ return /* @__PURE__ */ e("div", { className: h, onClick: u, children: /* @__PURE__ */ t("div", { className: q.imageContainer, children: [
1983
+ n ? /* @__PURE__ */ e("img", { src: n, alt: a, className: q.image, loading: "lazy" }) : /* @__PURE__ */ e("div", { className: q.placeholder, children: "📚" }),
1984
+ /* @__PURE__ */ e("div", { className: q.gradientOverlay }),
1985
+ $.length > 0 && /* @__PURE__ */ e("div", { className: q.badges, children: $.map((v, b) => /* @__PURE__ */ e(
1986
+ "span",
1987
+ {
1988
+ className: `${q.badge} ${v.type ? q[v.type] : ""}`,
1989
+ children: v.label
1990
+ },
1991
+ b
1992
+ )) }),
1993
+ l && s !== void 0 && /* @__PURE__ */ e("span", { className: q.rating, children: s.toFixed(1) }),
1994
+ /* @__PURE__ */ t("div", { className: q.content, children: [
1995
+ /* @__PURE__ */ e("h3", { className: q.title, children: a }),
1996
+ f.length > 0 && /* @__PURE__ */ t("div", { className: q.genres, children: [
1997
+ f.map((v, b) => /* @__PURE__ */ e("span", { className: q.genre, children: v }, b)),
1998
+ g > 0 && /* @__PURE__ */ t("span", { className: q.genreMore, children: [
1999
+ "+",
2000
+ g
2001
+ ] })
2002
+ ] }),
2003
+ (i !== void 0 || _) && /* @__PURE__ */ t("div", { className: q.meta, children: [
2004
+ i !== void 0 && /* @__PURE__ */ t("span", { className: q.metaItem, children: [
2005
+ i,
2006
+ " Bölüm"
2007
+ ] }),
2008
+ _ && /* @__PURE__ */ t("span", { className: q.metaItem, children: [
2009
+ "• ",
2010
+ _
2011
+ ] })
2012
+ ] })
2013
+ ] })
2014
+ ] }) });
2015
+ }
2016
+ z_.displayName = "MangaPosterCard";
2017
+ const L_ = "_chapterList_1s625_11", j_ = "_header_1s625_35", S_ = "_title_1s625_53", D_ = "_chapterCount_1s625_69", q_ = "_chapterItem_1s625_83", R_ = "_read_1s625_123", M_ = "_chapterTitle_1s625_131", A_ = "_chapterNumber_1s625_141", E_ = "_chapterInfo_1s625_167", W_ = "_chapterMeta_1s625_197", P_ = "_chapterDate_1s625_211", F_ = "_newBadge_1s625_225", O_ = "_readIndicator_1s625_247", G_ = "_views_1s625_269", U_ = "_compact_1s625_283", V = {
2018
+ chapterList: L_,
2019
+ header: j_,
2020
+ title: S_,
2021
+ chapterCount: D_,
2022
+ chapterItem: q_,
2023
+ read: R_,
2024
+ chapterTitle: M_,
2025
+ chapterNumber: A_,
2026
+ chapterInfo: E_,
2027
+ chapterMeta: W_,
2028
+ chapterDate: P_,
2029
+ newBadge: F_,
2030
+ readIndicator: O_,
2031
+ views: G_,
2032
+ compact: U_
2033
+ };
2034
+ function V_({
2035
+ chapters: n,
2036
+ title: a = "Bölümler",
2037
+ onChapterClick: s,
2038
+ compact: l = !1,
2039
+ showViews: c = !1,
2040
+ className: r = ""
2041
+ }) {
2042
+ const i = [
2043
+ V.chapterList,
2044
+ l && V.compact,
2045
+ r
2046
+ ].filter(Boolean).join(" "), _ = (o) => o >= 1e6 ? `${(o / 1e6).toFixed(1)}M` : o >= 1e3 ? `${(o / 1e3).toFixed(1)}K` : o.toString();
2047
+ return /* @__PURE__ */ t("div", { className: i, children: [
2048
+ /* @__PURE__ */ t("div", { className: V.header, children: [
2049
+ /* @__PURE__ */ e("span", { className: V.title, children: a }),
2050
+ /* @__PURE__ */ t("span", { className: V.chapterCount, children: [
2051
+ n.length,
2052
+ " Bölüm"
2053
+ ] })
2054
+ ] }),
2055
+ n.map((o) => /* @__PURE__ */ t(
2056
+ "div",
2057
+ {
2058
+ className: `${V.chapterItem} ${o.isRead ? V.read : ""}`,
2059
+ onClick: () => s?.(o),
2060
+ children: [
2061
+ /* @__PURE__ */ t("span", { className: V.chapterNumber, children: [
2062
+ "#",
2063
+ o.number
2064
+ ] }),
2065
+ /* @__PURE__ */ t("div", { className: V.chapterInfo, children: [
2066
+ /* @__PURE__ */ e("div", { className: V.chapterTitle, children: o.title || `Bölüm ${o.number}` }),
2067
+ /* @__PURE__ */ t("div", { className: V.chapterMeta, children: [
2068
+ o.date && /* @__PURE__ */ e("span", { className: V.chapterDate, children: o.date }),
2069
+ o.isNew && /* @__PURE__ */ e("span", { className: V.newBadge, children: "Yeni" })
2070
+ ] })
2071
+ ] }),
2072
+ c && o.views !== void 0 && /* @__PURE__ */ t("span", { className: V.views, children: [
2073
+ "👁 ",
2074
+ _(o.views)
2075
+ ] }),
2076
+ o.isRead && /* @__PURE__ */ e("span", { className: V.readIndicator, children: "✓" })
2077
+ ]
2078
+ },
2079
+ o.number
2080
+ ))
2081
+ ] });
2082
+ }
2083
+ V_.displayName = "ChapterList";
2084
+ const H_ = "_readingProgress_n5j27_11", Y_ = "_header_n5j27_35", K_ = "_label_n5j27_47", Q_ = "_percentage_n5j27_63", J_ = "_progressBar_n5j27_79", X_ = "_progressFill_n5j27_97", Z_ = "_chapterInfo_n5j27_113", ed = "_inline_n5j27_133", nd = "_card_n5j27_175", td = "_nearComplete_n5j27_203", ad = "_pulse_n5j27_1", xe = {
2085
+ readingProgress: H_,
2086
+ header: Y_,
2087
+ label: K_,
2088
+ percentage: Q_,
2089
+ progressBar: J_,
2090
+ progressFill: X_,
2091
+ chapterInfo: Z_,
2092
+ inline: ed,
2093
+ card: nd,
2094
+ nearComplete: td,
2095
+ pulse: ad
2096
+ };
2097
+ function sd({
2098
+ currentChapter: n,
2099
+ totalChapters: a,
2100
+ label: s = "Okuma İlerlemesi",
2101
+ variant: l = "default",
2102
+ showChapterInfo: c = !0,
2103
+ className: r = ""
2104
+ }) {
2105
+ const i = Math.round(n / a * 100), _ = i >= 90, o = [
2106
+ xe.readingProgress,
2107
+ l !== "default" && xe[l],
2108
+ _ && xe.nearComplete,
2109
+ r
2110
+ ].filter(Boolean).join(" ");
2111
+ return /* @__PURE__ */ t("div", { className: o, children: [
2112
+ /* @__PURE__ */ t("div", { className: xe.header, children: [
2113
+ /* @__PURE__ */ e("span", { className: xe.label, children: s }),
2114
+ /* @__PURE__ */ t("span", { className: xe.percentage, children: [
2115
+ i,
2116
+ "%"
2117
+ ] })
2118
+ ] }),
2119
+ /* @__PURE__ */ e("div", { className: xe.progressBar, children: /* @__PURE__ */ e(
2120
+ "div",
2121
+ {
2122
+ className: xe.progressFill,
2123
+ style: { width: `${i}%` }
2124
+ }
2125
+ ) }),
2126
+ c && l !== "inline" && /* @__PURE__ */ t("div", { className: xe.chapterInfo, children: [
2127
+ /* @__PURE__ */ t("span", { children: [
2128
+ "Bölüm ",
2129
+ n
2130
+ ] }),
2131
+ /* @__PURE__ */ t("span", { children: [
2132
+ a,
2133
+ " bölümden"
2134
+ ] })
2135
+ ] })
2136
+ ] });
2137
+ }
2138
+ sd.displayName = "ReadingProgress";
2139
+ const od = "_commentCard_1eniv_11", cd = "_avatar_1eniv_33", ld = "_content_1eniv_79", rd = "_header_1eniv_91", id = "_username_1eniv_107", _d = "_badge_1eniv_121", dd = "_author_1eniv_141", md = "_mod_1eniv_149", pd = "_time_1eniv_157", ud = "_body_1eniv_171", hd = "_chapterRef_1eniv_189", gd = "_actions_1eniv_223", fd = "_action_1eniv_223", vd = "_liked_1eniv_277", bd = "_spoiler_1eniv_287", $d = "_spoilerOverlay_1eniv_305", Nd = "_replyIndicator_1eniv_341", E = {
2140
+ commentCard: od,
2141
+ avatar: cd,
2142
+ content: ld,
2143
+ header: rd,
2144
+ username: id,
2145
+ badge: _d,
2146
+ author: dd,
2147
+ mod: md,
2148
+ time: pd,
2149
+ body: ud,
2150
+ chapterRef: hd,
2151
+ actions: gd,
2152
+ action: fd,
2153
+ liked: vd,
2154
+ spoiler: bd,
2155
+ spoilerOverlay: $d,
2156
+ replyIndicator: Nd
2157
+ };
2158
+ function yd({
2159
+ avatar: n,
2160
+ username: a,
2161
+ badge: s,
2162
+ comment: l,
2163
+ time: c,
2164
+ chapter: r,
2165
+ likes: i = 0,
2166
+ isLiked: _ = !1,
2167
+ isSpoiler: o = !1,
2168
+ replyTo: d,
2169
+ onLike: p,
2170
+ onReply: u,
2171
+ className: m = ""
2172
+ }) {
2173
+ const [h, f] = k(!1), g = ($) => {
2174
+ switch ($) {
2175
+ case "author":
2176
+ return "Yazar";
2177
+ case "mod":
2178
+ return "Mod";
2179
+ case "vip":
2180
+ return "VIP";
2181
+ default:
2182
+ return "";
2183
+ }
2184
+ };
2185
+ return /* @__PURE__ */ t("div", { className: `${E.commentCard} ${m}`, children: [
2186
+ /* @__PURE__ */ e("div", { className: E.avatar, children: n ? /* @__PURE__ */ e("img", { src: n, alt: a }) : a.charAt(0).toUpperCase() }),
2187
+ /* @__PURE__ */ t("div", { className: E.content, children: [
2188
+ /* @__PURE__ */ t("div", { className: E.header, children: [
2189
+ /* @__PURE__ */ e("span", { className: E.username, children: a }),
2190
+ s && /* @__PURE__ */ e("span", { className: `${E.badge} ${E[s]}`, children: g(s) }),
2191
+ /* @__PURE__ */ e("span", { className: E.time, children: c })
2192
+ ] }),
2193
+ r !== void 0 && /* @__PURE__ */ t("span", { className: E.chapterRef, children: [
2194
+ "📖 Bölüm ",
2195
+ r
2196
+ ] }),
2197
+ d && /* @__PURE__ */ t("div", { className: E.replyIndicator, children: [
2198
+ "↩ @",
2199
+ d,
2200
+ " kullanıcısına yanıt"
2201
+ ] }),
2202
+ /* @__PURE__ */ t("div", { className: o && !h ? E.spoiler : "", children: [
2203
+ /* @__PURE__ */ e("p", { className: E.body, children: l }),
2204
+ o && !h && /* @__PURE__ */ e(
2205
+ "div",
2206
+ {
2207
+ className: E.spoilerOverlay,
2208
+ onClick: () => f(!0),
2209
+ children: "🔒 Spoiler - Görmek için tıkla"
2210
+ }
2211
+ )
2212
+ ] }),
2213
+ /* @__PURE__ */ t("div", { className: E.actions, children: [
2214
+ /* @__PURE__ */ t(
2215
+ "button",
2216
+ {
2217
+ className: `${E.action} ${_ ? E.liked : ""}`,
2218
+ onClick: p,
2219
+ children: [
2220
+ _ ? "❤️" : "🤍",
2221
+ " ",
2222
+ i
2223
+ ]
2224
+ }
2225
+ ),
2226
+ /* @__PURE__ */ e("button", { className: E.action, onClick: u, children: "💬 Yanıtla" })
2227
+ ] })
2228
+ ] })
2229
+ ] });
2230
+ }
2231
+ yd.displayName = "CommentCard";
2232
+ const kd = "_genreChip_zuez4_11", wd = "_selected_zuez4_65", Cd = "_icon_zuez4_89", xd = "_count_zuez4_99", Bd = "_sm_zuez4_127", Id = "_lg_zuez4_137", Td = "_outline_zuez4_149", zd = "_filled_zuez4_169", Ld = "_action_zuez4_179", jd = "_adventure_zuez4_187", Sd = "_comedy_zuez4_195", Dd = "_drama_zuez4_203", qd = "_fantasy_zuez4_211", Rd = "_horror_zuez4_219", Md = "_romance_zuez4_227", Ad = "_scifi_zuez4_235", Ed = "_sports_zuez4_243", Wd = "_supernatural_zuez4_251", Ze = {
2233
+ genreChip: kd,
2234
+ selected: wd,
2235
+ icon: Cd,
2236
+ count: xd,
2237
+ sm: Bd,
2238
+ lg: Id,
2239
+ outline: Td,
2240
+ filled: zd,
2241
+ action: Ld,
2242
+ adventure: jd,
2243
+ comedy: Sd,
2244
+ drama: Dd,
2245
+ fantasy: qd,
2246
+ horror: Rd,
2247
+ romance: Md,
2248
+ scifi: Ad,
2249
+ sports: Ed,
2250
+ supernatural: Wd
2251
+ }, Pd = {
2252
+ action: "⚔️",
2253
+ adventure: "🗺️",
2254
+ comedy: "😂",
2255
+ drama: "🎭",
2256
+ fantasy: "🧙",
2257
+ horror: "👻",
2258
+ romance: "💕",
2259
+ scifi: "🚀",
2260
+ sports: "⚽",
2261
+ supernatural: "✨",
2262
+ mystery: "🔍",
2263
+ slice_of_life: "☀️",
2264
+ psychological: "🧠",
2265
+ thriller: "😱",
2266
+ school: "🏫",
2267
+ isekai: "🌀",
2268
+ mecha: "🤖",
2269
+ music: "🎵",
2270
+ shounen: "👦",
2271
+ shoujo: "👧",
2272
+ seinen: "👨",
2273
+ josei: "👩"
2274
+ };
2275
+ function Fd({
2276
+ label: n,
2277
+ icon: a,
2278
+ count: s,
2279
+ selected: l = !1,
2280
+ size: c = "md",
2281
+ variant: r = "default",
2282
+ onClick: i,
2283
+ className: _ = ""
2284
+ }) {
2285
+ const o = [
2286
+ Ze.genreChip,
2287
+ l && Ze.selected,
2288
+ c !== "md" && Ze[c],
2289
+ r !== "default" && Ze[r],
2290
+ _
2291
+ ].filter(Boolean).join(" "), d = n.toLowerCase().replace(/\s+/g, "_"), p = a ?? Pd[d];
2292
+ return /* @__PURE__ */ t(
2293
+ "button",
2294
+ {
2295
+ className: o,
2296
+ onClick: i,
2297
+ "data-genre": d,
2298
+ children: [
2299
+ p && /* @__PURE__ */ e("span", { className: Ze.icon, children: p }),
2300
+ n,
2301
+ s !== void 0 && /* @__PURE__ */ e("span", { className: Ze.count, children: s })
2302
+ ]
2303
+ }
2304
+ );
2305
+ }
2306
+ Fd.displayName = "GenreChip";
2307
+ const Od = "_searchBar_1pvbl_11", Gd = "_inputWrapper_1pvbl_25", Ud = "_searchIcon_1pvbl_63", Vd = "_input_1pvbl_25", Hd = "_clearBtn_1pvbl_107", Yd = "_dropdown_1pvbl_149", Kd = "_section_1pvbl_183", Qd = "_sectionTitle_1pvbl_201", Jd = "_resultItem_1pvbl_221", Xd = "_resultImage_1pvbl_247", Zd = "_resultInfo_1pvbl_263", em = "_resultTitle_1pvbl_273", nm = "_resultMeta_1pvbl_291", tm = "_recentItem_1pvbl_305", am = "_recentText_1pvbl_331", sm = "_recentIcon_1pvbl_349", om = "_removeRecent_1pvbl_359", cm = "_loading_1pvbl_387", lm = "_noResults_1pvbl_405", L = {
2308
+ searchBar: Od,
2309
+ inputWrapper: Gd,
2310
+ searchIcon: Ud,
2311
+ input: Vd,
2312
+ clearBtn: Hd,
2313
+ dropdown: Yd,
2314
+ section: Kd,
2315
+ sectionTitle: Qd,
2316
+ resultItem: Jd,
2317
+ resultImage: Xd,
2318
+ resultInfo: Zd,
2319
+ resultTitle: em,
2320
+ resultMeta: nm,
2321
+ recentItem: tm,
2322
+ recentText: am,
2323
+ recentIcon: sm,
2324
+ removeRecent: om,
2325
+ loading: cm,
2326
+ noResults: lm
2327
+ };
2328
+ function rm({
2329
+ placeholder: n = "Manga ara...",
2330
+ results: a = [],
2331
+ recentSearches: s = [],
2332
+ isLoading: l = !1,
2333
+ onSearch: c,
2334
+ onResultClick: r,
2335
+ onRecentClick: i,
2336
+ onClearRecent: _,
2337
+ className: o = ""
2338
+ }) {
2339
+ const [d, p] = k(""), [u, m] = k(!1), h = fe(null);
2340
+ B(() => {
2341
+ const b = (C) => {
2342
+ h.current && !h.current.contains(C.target) && m(!1);
2343
+ };
2344
+ return document.addEventListener("mousedown", b), () => document.removeEventListener("mousedown", b);
2345
+ }, []);
2346
+ const f = (b) => {
2347
+ p(b), c?.(b), m(!0);
2348
+ }, g = (b) => {
2349
+ r?.(b), p(""), m(!1);
2350
+ }, $ = (b) => {
2351
+ p(b), i?.(b), c?.(b);
2352
+ }, v = u && (d.length > 0 || s.length > 0);
2353
+ return /* @__PURE__ */ t("div", { ref: h, className: `${L.searchBar} ${o}`, children: [
2354
+ /* @__PURE__ */ t("div", { className: L.inputWrapper, children: [
2355
+ /* @__PURE__ */ e("span", { className: L.searchIcon, children: "🔍" }),
2356
+ /* @__PURE__ */ e(
2357
+ "input",
2358
+ {
2359
+ type: "text",
2360
+ className: L.input,
2361
+ placeholder: n,
2362
+ value: d,
2363
+ onChange: (b) => f(b.target.value),
2364
+ onFocus: () => m(!0)
2365
+ }
2366
+ ),
2367
+ d && /* @__PURE__ */ e(
2368
+ "button",
2369
+ {
2370
+ className: L.clearBtn,
2371
+ onClick: () => {
2372
+ p(""), c?.("");
2373
+ },
2374
+ children: "✕"
2375
+ }
2376
+ )
2377
+ ] }),
2378
+ v && /* @__PURE__ */ e("div", { className: L.dropdown, children: l ? /* @__PURE__ */ e("div", { className: L.loading, children: "⏳ Aranıyor..." }) : /* @__PURE__ */ t(oe, { children: [
2379
+ d.length > 0 && a.length > 0 && /* @__PURE__ */ t("div", { className: L.section, children: [
2380
+ /* @__PURE__ */ e("div", { className: L.sectionTitle, children: "Sonuçlar" }),
2381
+ a.map((b) => /* @__PURE__ */ t(
2382
+ "div",
2383
+ {
2384
+ className: L.resultItem,
2385
+ onClick: () => g(b),
2386
+ children: [
2387
+ b.image && /* @__PURE__ */ e(
2388
+ "img",
2389
+ {
2390
+ src: b.image,
2391
+ alt: b.title,
2392
+ className: L.resultImage
2393
+ }
2394
+ ),
2395
+ /* @__PURE__ */ t("div", { className: L.resultInfo, children: [
2396
+ /* @__PURE__ */ e("div", { className: L.resultTitle, children: b.title }),
2397
+ b.meta && /* @__PURE__ */ e("div", { className: L.resultMeta, children: b.meta })
2398
+ ] })
2399
+ ]
2400
+ },
2401
+ b.id
2402
+ ))
2403
+ ] }),
2404
+ d.length > 0 && a.length === 0 && !l && /* @__PURE__ */ t("div", { className: L.noResults, children: [
2405
+ '"',
2406
+ d,
2407
+ '" için sonuç bulunamadı'
2408
+ ] }),
2409
+ d.length === 0 && s.length > 0 && /* @__PURE__ */ t("div", { className: L.section, children: [
2410
+ /* @__PURE__ */ e("div", { className: L.sectionTitle, children: "Son Aramalar" }),
2411
+ s.map((b, C) => /* @__PURE__ */ t(
2412
+ "div",
2413
+ {
2414
+ className: L.recentItem,
2415
+ onClick: () => $(b),
2416
+ children: [
2417
+ /* @__PURE__ */ t("span", { className: L.recentText, children: [
2418
+ /* @__PURE__ */ e("span", { className: L.recentIcon, children: "🕐" }),
2419
+ b
2420
+ ] }),
2421
+ /* @__PURE__ */ e(
2422
+ "button",
2423
+ {
2424
+ className: L.removeRecent,
2425
+ onClick: (y) => {
2426
+ y.stopPropagation(), _?.(b);
2427
+ },
2428
+ children: "✕"
2429
+ }
2430
+ )
2431
+ ]
2432
+ },
2433
+ C
2434
+ ))
2435
+ ] })
2436
+ ] }) })
2437
+ ] });
2438
+ }
2439
+ rm.displayName = "SearchBar";
2440
+ const im = "_userCard_1cr4b_11", _m = "_avatar_1cr4b_43", dm = "_avatarImage_1cr4b_55", mm = "_levelBadge_1cr4b_103", pm = "_username_1cr4b_141", um = "_roleBadge_1cr4b_159", hm = "_admin_1cr4b_181", gm = "_mod_1cr4b_189", fm = "_vip_1cr4b_197", vm = "_translator_1cr4b_205", bm = "_stats_1cr4b_215", $m = "_stat_1cr4b_215", Nm = "_statValue_1cr4b_247", ym = "_statLabel_1cr4b_261", km = "_joinDate_1cr4b_275", wm = "_actions_1cr4b_289", Cm = "_horizontal_1cr4b_303", xm = "_info_1cr4b_333", Bm = "_compact_1cr4b_365", H = {
2441
+ userCard: im,
2442
+ avatar: _m,
2443
+ avatarImage: dm,
2444
+ levelBadge: mm,
2445
+ username: pm,
2446
+ roleBadge: um,
2447
+ admin: hm,
2448
+ mod: gm,
2449
+ vip: fm,
2450
+ translator: vm,
2451
+ stats: bm,
2452
+ stat: $m,
2453
+ statValue: Nm,
2454
+ statLabel: ym,
2455
+ joinDate: km,
2456
+ actions: wm,
2457
+ horizontal: Cm,
2458
+ info: xm,
2459
+ compact: Bm
2460
+ }, Im = {
2461
+ member: "Üye",
2462
+ admin: "Admin",
2463
+ mod: "Moderatör",
2464
+ vip: "VIP",
2465
+ translator: "Çevirmen"
2466
+ };
2467
+ function Tm({
2468
+ avatar: n,
2469
+ username: a,
2470
+ level: s,
2471
+ role: l = "member",
2472
+ stats: c = [],
2473
+ joinDate: r,
2474
+ variant: i = "default",
2475
+ actions: _,
2476
+ onClick: o,
2477
+ className: d = ""
2478
+ }) {
2479
+ const p = [
2480
+ H.userCard,
2481
+ i !== "default" && H[i],
2482
+ d
2483
+ ].filter(Boolean).join(" "), u = (m) => typeof m == "string" ? m : m >= 1e6 ? `${(m / 1e6).toFixed(1)}M` : m >= 1e3 ? `${(m / 1e3).toFixed(1)}K` : m.toString();
2484
+ return /* @__PURE__ */ t("div", { className: p, onClick: o, children: [
2485
+ /* @__PURE__ */ t("div", { className: H.avatar, children: [
2486
+ /* @__PURE__ */ e("div", { className: H.avatarImage, children: n ? /* @__PURE__ */ e("img", { src: n, alt: a }) : a.charAt(0).toUpperCase() }),
2487
+ s !== void 0 && /* @__PURE__ */ t("span", { className: H.levelBadge, children: [
2488
+ "LV.",
2489
+ s
2490
+ ] })
2491
+ ] }),
2492
+ /* @__PURE__ */ t("div", { className: H.info, children: [
2493
+ /* @__PURE__ */ e("h3", { className: H.username, children: a }),
2494
+ l !== "member" && /* @__PURE__ */ e("span", { className: `${H.roleBadge} ${H[l]}`, children: Im[l] }),
2495
+ c.length > 0 && /* @__PURE__ */ e("div", { className: H.stats, children: c.map((m, h) => /* @__PURE__ */ t("div", { className: H.stat, children: [
2496
+ /* @__PURE__ */ e("span", { className: H.statValue, children: u(m.value) }),
2497
+ /* @__PURE__ */ e("span", { className: H.statLabel, children: m.label })
2498
+ ] }, h)) }),
2499
+ r && /* @__PURE__ */ t("span", { className: H.joinDate, children: [
2500
+ "📅 ",
2501
+ r
2502
+ ] }),
2503
+ _ && /* @__PURE__ */ e("div", { className: H.actions, children: _ })
2504
+ ] })
2505
+ ] });
2506
+ }
2507
+ Tm.displayName = "UserCard";
2508
+ const zm = "_detailHeader_1lzr9_11", Lm = "_cover_1lzr9_33", jm = "_coverImage_1lzr9_43", Sm = "_coverPlaceholder_1lzr9_61", Dm = "_info_1lzr9_87", qm = "_title_1lzr9_101", Rm = "_altTitle_1lzr9_119", Mm = "_meta_1lzr9_135", Am = "_metaItem_1lzr9_147", Em = "_metaIcon_1lzr9_165", Wm = "_metaLabel_1lzr9_173", Pm = "_badges_1lzr9_183", Fm = "_badge_1lzr9_183", Om = "_ongoing_1lzr9_219", Gm = "_completed_1lzr9_227", Um = "_hiatus_1lzr9_235", Vm = "_adult_1lzr9_243", Hm = "_stats_1lzr9_253", Ym = "_stat_1lzr9_253", Km = "_statValue_1lzr9_285", Qm = "_statLabel_1lzr9_299", Jm = "_description_1lzr9_313", Xm = "_descriptionClamped_1lzr9_327", Zm = "_readMore_1lzr9_343", e1 = "_actions_1lzr9_365", w = {
2509
+ detailHeader: zm,
2510
+ cover: Lm,
2511
+ coverImage: jm,
2512
+ coverPlaceholder: Sm,
2513
+ info: Dm,
2514
+ title: qm,
2515
+ altTitle: Rm,
2516
+ meta: Mm,
2517
+ metaItem: Am,
2518
+ metaIcon: Em,
2519
+ metaLabel: Wm,
2520
+ badges: Pm,
2521
+ badge: Fm,
2522
+ ongoing: Om,
2523
+ completed: Gm,
2524
+ hiatus: Um,
2525
+ adult: Vm,
2526
+ stats: Hm,
2527
+ stat: Ym,
2528
+ statValue: Km,
2529
+ statLabel: Qm,
2530
+ description: Jm,
2531
+ descriptionClamped: Xm,
2532
+ readMore: Zm,
2533
+ actions: e1
2534
+ }, n1 = {
2535
+ ongoing: "Devam Ediyor",
2536
+ completed: "Tamamlandı",
2537
+ hiatus: "Ara Verildi"
2538
+ };
2539
+ function t1({
2540
+ cover: n,
2541
+ title: a,
2542
+ altTitle: s,
2543
+ author: l,
2544
+ artist: c,
2545
+ status: r,
2546
+ isAdult: i = !1,
2547
+ genres: _ = [],
2548
+ rating: o,
2549
+ views: d,
2550
+ chapters: p,
2551
+ followers: u,
2552
+ description: m,
2553
+ actions: h,
2554
+ className: f = ""
2555
+ }) {
2556
+ const [g, $] = k(!1), v = (b) => b >= 1e6 ? `${(b / 1e6).toFixed(1)}M` : b >= 1e3 ? `${(b / 1e3).toFixed(1)}K` : b.toString();
2557
+ return /* @__PURE__ */ t("div", { className: `${w.detailHeader} ${f}`, children: [
2558
+ /* @__PURE__ */ e("div", { className: w.cover, children: n ? /* @__PURE__ */ e("img", { src: n, alt: a, className: w.coverImage }) : /* @__PURE__ */ e("div", { className: w.coverPlaceholder, children: "📚" }) }),
2559
+ /* @__PURE__ */ t("div", { className: w.info, children: [
2560
+ /* @__PURE__ */ e("h1", { className: w.title, children: a }),
2561
+ s && /* @__PURE__ */ e("p", { className: w.altTitle, children: s }),
2562
+ /* @__PURE__ */ t("div", { className: w.meta, children: [
2563
+ l && /* @__PURE__ */ t("span", { className: w.metaItem, children: [
2564
+ /* @__PURE__ */ e("span", { className: w.metaIcon, children: "✍️" }),
2565
+ /* @__PURE__ */ e("span", { className: w.metaLabel, children: "Yazar:" }),
2566
+ " ",
2567
+ l
2568
+ ] }),
2569
+ c && c !== l && /* @__PURE__ */ t("span", { className: w.metaItem, children: [
2570
+ /* @__PURE__ */ e("span", { className: w.metaIcon, children: "🎨" }),
2571
+ /* @__PURE__ */ e("span", { className: w.metaLabel, children: "Çizer:" }),
2572
+ " ",
2573
+ c
2574
+ ] })
2575
+ ] }),
2576
+ /* @__PURE__ */ t("div", { className: w.badges, children: [
2577
+ r && /* @__PURE__ */ e("span", { className: `${w.badge} ${w[r]}`, children: n1[r] }),
2578
+ i && /* @__PURE__ */ e("span", { className: `${w.badge} ${w.adult}`, children: "+18" }),
2579
+ _.slice(0, 4).map((b, C) => /* @__PURE__ */ e("span", { className: w.badge, children: b }, C))
2580
+ ] }),
2581
+ /* @__PURE__ */ t("div", { className: w.stats, children: [
2582
+ o !== void 0 && /* @__PURE__ */ t("div", { className: w.stat, children: [
2583
+ /* @__PURE__ */ t("span", { className: w.statValue, children: [
2584
+ "⭐ ",
2585
+ o.toFixed(1)
2586
+ ] }),
2587
+ /* @__PURE__ */ e("span", { className: w.statLabel, children: "Puan" })
2588
+ ] }),
2589
+ d !== void 0 && /* @__PURE__ */ t("div", { className: w.stat, children: [
2590
+ /* @__PURE__ */ e("span", { className: w.statValue, children: v(d) }),
2591
+ /* @__PURE__ */ e("span", { className: w.statLabel, children: "Görüntülenme" })
2592
+ ] }),
2593
+ p !== void 0 && /* @__PURE__ */ t("div", { className: w.stat, children: [
2594
+ /* @__PURE__ */ e("span", { className: w.statValue, children: p }),
2595
+ /* @__PURE__ */ e("span", { className: w.statLabel, children: "Bölüm" })
2596
+ ] }),
2597
+ u !== void 0 && /* @__PURE__ */ t("div", { className: w.stat, children: [
2598
+ /* @__PURE__ */ e("span", { className: w.statValue, children: v(u) }),
2599
+ /* @__PURE__ */ e("span", { className: w.statLabel, children: "Takipçi" })
2600
+ ] })
2601
+ ] }),
2602
+ m && /* @__PURE__ */ t("div", { children: [
2603
+ /* @__PURE__ */ e("p", { className: `${w.description} ${g ? "" : w.descriptionClamped}`, children: m }),
2604
+ m.length > 200 && /* @__PURE__ */ e(
2605
+ "button",
2606
+ {
2607
+ className: w.readMore,
2608
+ onClick: () => $(!g),
2609
+ children: g ? "Daha Az" : "Devamını Oku"
2610
+ }
2611
+ )
2612
+ ] }),
2613
+ h && /* @__PURE__ */ e("div", { className: w.actions, children: h })
2614
+ ] })
2615
+ ] });
2616
+ }
2617
+ t1.displayName = "MangaDetailHeader";
2618
+ const a1 = "_favoriteButton_xie9w_11", s1 = "_active_xie9w_79", o1 = "_icon_xie9w_91", c1 = "_heartBeat_xie9w_1", l1 = "_count_xie9w_121", r1 = "_iconOnly_xie9w_135", i1 = "_sm_xie9w_159", _1 = "_lg_xie9w_177", d1 = "_particles_xie9w_197", m1 = "_particle_xie9w_197", p1 = "_particleBurst_xie9w_1", Me = {
2619
+ favoriteButton: a1,
2620
+ active: s1,
2621
+ icon: o1,
2622
+ heartBeat: c1,
2623
+ count: l1,
2624
+ iconOnly: r1,
2625
+ sm: i1,
2626
+ lg: _1,
2627
+ particles: d1,
2628
+ particle: m1,
2629
+ particleBurst: p1
2630
+ };
2631
+ function u1({
2632
+ isFavorite: n = !1,
2633
+ count: a,
2634
+ showCount: s = !0,
2635
+ iconOnly: l = !1,
2636
+ size: c = "md",
2637
+ onToggle: r,
2638
+ className: i = ""
2639
+ }) {
2640
+ const _ = [
2641
+ Me.favoriteButton,
2642
+ n && Me.active,
2643
+ l && Me.iconOnly,
2644
+ c !== "md" && Me[c],
2645
+ i
2646
+ ].filter(Boolean).join(" ");
2647
+ return /* @__PURE__ */ t("button", { className: _, onClick: () => {
2648
+ r?.(!n);
2649
+ }, children: [
2650
+ /* @__PURE__ */ e("span", { className: Me.icon, children: n ? "❤️" : "🤍" }),
2651
+ s && a !== void 0 && !l && /* @__PURE__ */ e("span", { className: Me.count, children: a }),
2652
+ /* @__PURE__ */ e("div", { className: Me.particles, children: [...Array(8)].map((d, p) => /* @__PURE__ */ e("span", { className: Me.particle }, p)) })
2653
+ ] });
2654
+ }
2655
+ u1.displayName = "FavoriteButton";
2656
+ const h1 = "_bookmarkWrapper_zn342_11", g1 = "_bookmarkButton_zn342_21", f1 = "_active_zn342_75", v1 = "_icon_zn342_87", b1 = "_arrow_zn342_95", $1 = "_open_zn342_105", N1 = "_dropdown_zn342_115", y1 = "_dropdownHeader_zn342_145", k1 = "_chapterItem_zn342_165", w1 = "_selected_zn342_201", C1 = "_chapterNumber_zn342_211", x1 = "_chapterDate_zn342_221", B1 = "_currentBadge_zn342_233", I1 = "_dropdownActions_zn342_255", T1 = "_actionBtn_zn342_271", z1 = "_remove_zn342_315", U = {
2657
+ bookmarkWrapper: h1,
2658
+ bookmarkButton: g1,
2659
+ active: f1,
2660
+ icon: v1,
2661
+ arrow: b1,
2662
+ open: $1,
2663
+ dropdown: N1,
2664
+ dropdownHeader: y1,
2665
+ chapterItem: k1,
2666
+ selected: w1,
2667
+ chapterNumber: C1,
2668
+ chapterDate: x1,
2669
+ currentBadge: B1,
2670
+ dropdownActions: I1,
2671
+ actionBtn: T1,
2672
+ remove: z1
2673
+ };
2674
+ function L1({
2675
+ isBookmarked: n = !1,
2676
+ bookmarkedChapter: a,
2677
+ chapters: s = [],
2678
+ label: l = "Yer İşareti",
2679
+ onBookmarkChange: c,
2680
+ className: r = ""
2681
+ }) {
2682
+ const [i, _] = k(!1), o = fe(null);
2683
+ B(() => {
2684
+ const m = (h) => {
2685
+ o.current && !o.current.contains(h.target) && _(!1);
2686
+ };
2687
+ return document.addEventListener("mousedown", m), () => document.removeEventListener("mousedown", m);
2688
+ }, []);
2689
+ const d = (m) => {
2690
+ c?.(m), _(!1);
2691
+ }, p = () => {
2692
+ c?.(null), _(!1);
2693
+ }, u = [
2694
+ U.bookmarkButton,
2695
+ n && U.active,
2696
+ i && U.open
2697
+ ].filter(Boolean).join(" ");
2698
+ return /* @__PURE__ */ t("div", { ref: o, className: `${U.bookmarkWrapper} ${r}`, children: [
2699
+ /* @__PURE__ */ t("button", { className: u, onClick: () => _(!i), children: [
2700
+ /* @__PURE__ */ e("span", { className: U.icon, children: n ? "🔖" : "📑" }),
2701
+ l,
2702
+ s.length > 0 && /* @__PURE__ */ e("span", { className: U.arrow, children: "▼" })
2703
+ ] }),
2704
+ i && s.length > 0 && /* @__PURE__ */ t("div", { className: U.dropdown, children: [
2705
+ /* @__PURE__ */ e("div", { className: U.dropdownHeader, children: "Bölüm Seç" }),
2706
+ s.slice(0, 10).map((m) => /* @__PURE__ */ t(
2707
+ "div",
2708
+ {
2709
+ className: `${U.chapterItem} ${a === m.number ? U.selected : ""}`,
2710
+ onClick: () => d(m.number),
2711
+ children: [
2712
+ /* @__PURE__ */ t("span", { className: U.chapterNumber, children: [
2713
+ "Bölüm ",
2714
+ m.number
2715
+ ] }),
2716
+ a === m.number && /* @__PURE__ */ e("span", { className: U.currentBadge, children: "Kayıtlı" }),
2717
+ m.date && /* @__PURE__ */ e("span", { className: U.chapterDate, children: m.date })
2718
+ ]
2719
+ },
2720
+ m.number
2721
+ )),
2722
+ n && /* @__PURE__ */ e("div", { className: U.dropdownActions, children: /* @__PURE__ */ e("button", { className: `${U.actionBtn} ${U.remove}`, onClick: p, children: "Kaldır" }) })
2723
+ ] })
2724
+ ] });
2725
+ }
2726
+ L1.displayName = "BookmarkButton";
2727
+ const j1 = "_readerToolbar_614ag_11", S1 = "_navGroup_614ag_39", D1 = "_navBtn_614ag_51", q1 = "_chapterInfo_614ag_113", R1 = "_chapterTitle_614ag_127", M1 = "_mangaTitle_614ag_141", A1 = "_toolsGroup_614ag_155", E1 = "_toolBtn_614ag_167", W1 = "_active_614ag_215", P1 = "_divider_614ag_229", F1 = "_modeGroup_614ag_311", O1 = "_modeBtn_614ag_321", G1 = "_compact_614ag_381", U1 = "_sticky_614ag_423", T = {
2728
+ readerToolbar: j1,
2729
+ navGroup: S1,
2730
+ navBtn: D1,
2731
+ chapterInfo: q1,
2732
+ chapterTitle: R1,
2733
+ mangaTitle: M1,
2734
+ toolsGroup: A1,
2735
+ toolBtn: E1,
2736
+ active: W1,
2737
+ divider: P1,
2738
+ modeGroup: F1,
2739
+ modeBtn: O1,
2740
+ compact: G1,
2741
+ sticky: U1
2742
+ };
2743
+ function V1({
2744
+ mangaTitle: n,
2745
+ chapterTitle: a,
2746
+ currentPage: s = 1,
2747
+ totalPages: l = 1,
2748
+ hasPrevChapter: c = !1,
2749
+ hasNextChapter: r = !1,
2750
+ readingMode: i = "vertical",
2751
+ isFullscreen: _ = !1,
2752
+ compact: o = !1,
2753
+ sticky: d = !1,
2754
+ onPrevChapter: p,
2755
+ onNextChapter: u,
2756
+ onPrevPage: m,
2757
+ onNextPage: h,
2758
+ onModeChange: f,
2759
+ onFullscreenToggle: g,
2760
+ onSettingsClick: $,
2761
+ className: v = ""
2762
+ }) {
2763
+ const b = [
2764
+ T.readerToolbar,
2765
+ o && T.compact,
2766
+ d && T.sticky,
2767
+ v
2768
+ ].filter(Boolean).join(" ");
2769
+ return /* @__PURE__ */ t("div", { className: b, children: [
2770
+ /* @__PURE__ */ t("div", { className: T.navGroup, children: [
2771
+ /* @__PURE__ */ e(
2772
+ "button",
2773
+ {
2774
+ className: T.navBtn,
2775
+ disabled: !c,
2776
+ onClick: p,
2777
+ title: "Önceki Bölüm",
2778
+ children: "⏮"
2779
+ }
2780
+ ),
2781
+ /* @__PURE__ */ e(
2782
+ "button",
2783
+ {
2784
+ className: T.navBtn,
2785
+ disabled: s <= 1,
2786
+ onClick: m,
2787
+ title: "Önceki Sayfa",
2788
+ children: "◀"
2789
+ }
2790
+ ),
2791
+ /* @__PURE__ */ e(
2792
+ "button",
2793
+ {
2794
+ className: T.navBtn,
2795
+ disabled: s >= l,
2796
+ onClick: h,
2797
+ title: "Sonraki Sayfa",
2798
+ children: "▶"
2799
+ }
2800
+ ),
2801
+ /* @__PURE__ */ e(
2802
+ "button",
2803
+ {
2804
+ className: T.navBtn,
2805
+ disabled: !r,
2806
+ onClick: u,
2807
+ title: "Sonraki Bölüm",
2808
+ children: "⏭"
2809
+ }
2810
+ )
2811
+ ] }),
2812
+ /* @__PURE__ */ t("div", { className: T.chapterInfo, children: [
2813
+ /* @__PURE__ */ e("span", { className: T.chapterTitle, children: a }),
2814
+ /* @__PURE__ */ e("span", { className: T.mangaTitle, children: n })
2815
+ ] }),
2816
+ /* @__PURE__ */ t("div", { className: T.toolsGroup, children: [
2817
+ /* @__PURE__ */ t("div", { className: T.modeGroup, children: [
2818
+ /* @__PURE__ */ e(
2819
+ "button",
2820
+ {
2821
+ className: `${T.modeBtn} ${i === "vertical" ? T.active : ""}`,
2822
+ onClick: () => f?.("vertical"),
2823
+ title: "Dikey",
2824
+ children: "↕"
2825
+ }
2826
+ ),
2827
+ /* @__PURE__ */ e(
2828
+ "button",
2829
+ {
2830
+ className: `${T.modeBtn} ${i === "horizontal" ? T.active : ""}`,
2831
+ onClick: () => f?.("horizontal"),
2832
+ title: "Yatay",
2833
+ children: "↔"
2834
+ }
2835
+ ),
2836
+ /* @__PURE__ */ e(
2837
+ "button",
2838
+ {
2839
+ className: `${T.modeBtn} ${i === "single" ? T.active : ""}`,
2840
+ onClick: () => f?.("single"),
2841
+ title: "Tek Sayfa",
2842
+ children: "▢"
2843
+ }
2844
+ )
2845
+ ] }),
2846
+ /* @__PURE__ */ e("div", { className: T.divider }),
2847
+ /* @__PURE__ */ e(
2848
+ "button",
2849
+ {
2850
+ className: `${T.toolBtn} ${_ ? T.active : ""}`,
2851
+ onClick: g,
2852
+ title: _ ? "Tam Ekrandan Çık" : "Tam Ekran",
2853
+ children: "⛶"
2854
+ }
2855
+ ),
2856
+ /* @__PURE__ */ e(
2857
+ "button",
2858
+ {
2859
+ className: T.toolBtn,
2860
+ onClick: $,
2861
+ title: "Ayarlar",
2862
+ children: "⚙️"
2863
+ }
2864
+ )
2865
+ ] })
2866
+ ] });
2867
+ }
2868
+ V1.displayName = "ReaderToolbar";
2869
+ const H1 = "_pageCounter_so3oz_11", Y1 = "_current_so3oz_37", K1 = "_separator_so3oz_53", Q1 = "_total_so3oz_67", J1 = "_withProgress_so3oz_81", X1 = "_progressBar_so3oz_93", Z1 = "_progressFill_so3oz_109", ep = "_numbers_so3oz_123", np = "_compact_so3oz_137", tp = "_floating_so3oz_173", ap = "_pill_so3oz_223", Be = {
2870
+ pageCounter: H1,
2871
+ current: Y1,
2872
+ separator: K1,
2873
+ total: Q1,
2874
+ withProgress: J1,
2875
+ progressBar: X1,
2876
+ progressFill: Z1,
2877
+ numbers: ep,
2878
+ compact: np,
2879
+ floating: tp,
2880
+ pill: ap
2881
+ };
2882
+ function sp({
2883
+ currentPage: n,
2884
+ totalPages: a,
2885
+ showProgress: s = !1,
2886
+ variant: l = "default",
2887
+ className: c = ""
2888
+ }) {
2889
+ const r = n / a * 100, i = [
2890
+ Be.pageCounter,
2891
+ s && Be.withProgress,
2892
+ l !== "default" && Be[l],
2893
+ c
2894
+ ].filter(Boolean).join(" ");
2895
+ return /* @__PURE__ */ t("div", { className: i, children: [
2896
+ s && /* @__PURE__ */ e("div", { className: Be.progressBar, children: /* @__PURE__ */ e(
2897
+ "div",
2898
+ {
2899
+ className: Be.progressFill,
2900
+ style: { width: `${r}%` }
2901
+ }
2902
+ ) }),
2903
+ /* @__PURE__ */ t("div", { className: Be.numbers, children: [
2904
+ /* @__PURE__ */ e("span", { className: Be.current, children: n }),
2905
+ /* @__PURE__ */ e("span", { className: Be.separator, children: "/" }),
2906
+ /* @__PURE__ */ e("span", { className: Be.total, children: a })
2907
+ ] })
2908
+ ] });
2909
+ }
2910
+ sp.displayName = "PageCounter";
2911
+ const op = "_likeButton_hi7z6_11", cp = "_liked_hi7z6_65", lp = "_icon_hi7z6_77", rp = "_disliked_hi7z6_87", ip = "_count_hi7z6_129", _p = "_likeDislikeGroup_hi7z6_145", dp = "_vertical_hi7z6_181", mp = "_floatingOne_hi7z6_275", R = {
2912
+ likeButton: op,
2913
+ liked: cp,
2914
+ icon: lp,
2915
+ disliked: rp,
2916
+ count: ip,
2917
+ likeDislikeGroup: _p,
2918
+ vertical: dp,
2919
+ floatingOne: mp
2920
+ };
2921
+ function pp({
2922
+ state: n = "none",
2923
+ likeCount: a = 0,
2924
+ dislikeCount: s = 0,
2925
+ showDislike: l = !1,
2926
+ vertical: c = !1,
2927
+ onLike: r,
2928
+ onDislike: i,
2929
+ className: _ = ""
2930
+ }) {
2931
+ const o = (d) => d >= 1e6 ? `${(d / 1e6).toFixed(1)}M` : d >= 1e3 ? `${(d / 1e3).toFixed(1)}K` : d.toString();
2932
+ return l ? /* @__PURE__ */ t("div", { className: `${R.likeDislikeGroup} ${_}`, children: [
2933
+ /* @__PURE__ */ t(
2934
+ "button",
2935
+ {
2936
+ className: `${R.likeButton} ${n === "liked" ? R.liked : ""} ${c ? R.vertical : ""}`,
2937
+ onClick: r,
2938
+ children: [
2939
+ /* @__PURE__ */ e("span", { className: R.icon, children: "👍" }),
2940
+ /* @__PURE__ */ e("span", { className: R.count, children: o(a) }),
2941
+ /* @__PURE__ */ e("span", { className: R.floatingOne, children: "+1" })
2942
+ ]
2943
+ }
2944
+ ),
2945
+ /* @__PURE__ */ t(
2946
+ "button",
2947
+ {
2948
+ className: `${R.likeButton} ${n === "disliked" ? R.disliked : ""} ${c ? R.vertical : ""}`,
2949
+ onClick: i,
2950
+ children: [
2951
+ /* @__PURE__ */ e("span", { className: R.icon, children: "👎" }),
2952
+ /* @__PURE__ */ e("span", { className: R.count, children: o(s) })
2953
+ ]
2954
+ }
2955
+ )
2956
+ ] }) : /* @__PURE__ */ t(
2957
+ "button",
2958
+ {
2959
+ className: `${R.likeButton} ${n === "liked" ? R.liked : ""} ${c ? R.vertical : ""} ${_}`,
2960
+ onClick: r,
2961
+ children: [
2962
+ /* @__PURE__ */ e("span", { className: R.icon, children: "👍" }),
2963
+ /* @__PURE__ */ e("span", { className: R.count, children: o(a) }),
2964
+ /* @__PURE__ */ e("span", { className: R.floatingOne, children: "+1" })
2965
+ ]
2966
+ }
2967
+ );
2968
+ }
2969
+ pp.displayName = "LikeButton";
2970
+ const up = "_shareWrapper_v0g7p_11", hp = "_shareButton_v0g7p_21", gp = "_icon_v0g7p_87", fp = "_dropdown_v0g7p_97", vp = "_dropdownTitle_v0g7p_131", bp = "_socialGrid_v0g7p_153", $p = "_socialBtn_v0g7p_165", Np = "_twitter_v0g7p_211", yp = "_facebook_v0g7p_221", kp = "_whatsapp_v0g7p_231", wp = "_telegram_v0g7p_241", Cp = "_reddit_v0g7p_251", xp = "_discord_v0g7p_261", Bp = "_copy_v0g7p_271", Ip = "_more_v0g7p_281", Tp = "_divider_v0g7p_291", zp = "_copyLink_v0g7p_305", Lp = "_copied_v0g7p_351", jp = "_copyIcon_v0g7p_361", Sp = "_copyText_v0g7p_369", Dp = "_iconOnly_v0g7p_385", ne = {
2971
+ shareWrapper: up,
2972
+ shareButton: hp,
2973
+ icon: gp,
2974
+ dropdown: fp,
2975
+ dropdownTitle: vp,
2976
+ socialGrid: bp,
2977
+ socialBtn: $p,
2978
+ twitter: Np,
2979
+ facebook: yp,
2980
+ whatsapp: kp,
2981
+ telegram: wp,
2982
+ reddit: Cp,
2983
+ discord: xp,
2984
+ copy: Bp,
2985
+ more: Ip,
2986
+ divider: Tp,
2987
+ copyLink: zp,
2988
+ copied: Lp,
2989
+ copyIcon: jp,
2990
+ copyText: Sp,
2991
+ iconOnly: Dp
2992
+ }, qp = {
2993
+ twitter: "𝕏",
2994
+ facebook: "📘",
2995
+ whatsapp: "💬",
2996
+ telegram: "✈️",
2997
+ reddit: "🔴",
2998
+ discord: "🎮"
2999
+ };
3000
+ function Rp({
3001
+ url: n = typeof window < "u" ? window.location.href : "",
3002
+ title: a = "",
3003
+ platforms: s = ["twitter", "facebook", "whatsapp", "telegram"],
3004
+ showCopyLink: l = !0,
3005
+ iconOnly: c = !1,
3006
+ onShare: r,
3007
+ className: i = ""
3008
+ }) {
3009
+ const [_, o] = k(!1), [d, p] = k(!1), u = fe(null);
3010
+ B(() => {
3011
+ const g = ($) => {
3012
+ u.current && !u.current.contains($.target) && o(!1);
3013
+ };
3014
+ return document.addEventListener("mousedown", g), () => document.removeEventListener("mousedown", g);
3015
+ }, []);
3016
+ const m = (g) => {
3017
+ const $ = encodeURIComponent(n), v = encodeURIComponent(a), b = {
3018
+ twitter: `https://twitter.com/intent/tweet?url=${$}&text=${v}`,
3019
+ facebook: `https://www.facebook.com/sharer/sharer.php?u=${$}`,
3020
+ whatsapp: `https://wa.me/?text=${v}%20${$}`,
3021
+ telegram: `https://t.me/share/url?url=${$}&text=${v}`,
3022
+ reddit: `https://reddit.com/submit?url=${$}&title=${v}`,
3023
+ discord: "https://discord.com/channels/@me"
3024
+ };
3025
+ window.open(b[g], "_blank", "width=600,height=400"), r?.(g), o(!1);
3026
+ }, h = async () => {
3027
+ try {
3028
+ await navigator.clipboard.writeText(n), p(!0), r?.("copy"), setTimeout(() => p(!1), 2e3);
3029
+ } catch (g) {
3030
+ console.error("Failed to copy:", g);
3031
+ }
3032
+ }, f = [
3033
+ ne.shareButton,
3034
+ c && ne.iconOnly
3035
+ ].filter(Boolean).join(" ");
3036
+ return /* @__PURE__ */ t("div", { ref: u, className: `${ne.shareWrapper} ${i}`, children: [
3037
+ /* @__PURE__ */ t("button", { className: f, onClick: () => o(!_), children: [
3038
+ /* @__PURE__ */ e("span", { className: ne.icon, children: "📤" }),
3039
+ !c && "Paylaş"
3040
+ ] }),
3041
+ _ && /* @__PURE__ */ t("div", { className: ne.dropdown, children: [
3042
+ /* @__PURE__ */ e("div", { className: ne.dropdownTitle, children: "Paylaş" }),
3043
+ /* @__PURE__ */ e("div", { className: ne.socialGrid, children: s.map((g) => /* @__PURE__ */ e(
3044
+ "button",
3045
+ {
3046
+ className: `${ne.socialBtn} ${ne[g]}`,
3047
+ onClick: () => m(g),
3048
+ title: g,
3049
+ children: qp[g]
3050
+ },
3051
+ g
3052
+ )) }),
3053
+ l && /* @__PURE__ */ t(oe, { children: [
3054
+ /* @__PURE__ */ e("div", { className: ne.divider }),
3055
+ /* @__PURE__ */ t(
3056
+ "button",
3057
+ {
3058
+ className: `${ne.copyLink} ${d ? ne.copied : ""}`,
3059
+ onClick: h,
3060
+ children: [
3061
+ /* @__PURE__ */ e("span", { className: ne.copyIcon, children: d ? "✓" : "📋" }),
3062
+ /* @__PURE__ */ e("span", { className: ne.copyText, children: d ? "Kopyalandı!" : "Linki Kopyala" })
3063
+ ]
3064
+ }
3065
+ )
3066
+ ] })
3067
+ ] })
3068
+ ] });
3069
+ }
3070
+ Rp.displayName = "ShareButton";
3071
+ const Mp = "_followButton_1snff_11", Ap = "_following_1snff_81", Ep = "_icon_1snff_107", Wp = "_count_1snff_127", Pp = "_sm_1snff_149", Fp = "_lg_1snff_167", Op = "_iconOnly_1snff_187", Gp = "_text_1snff_201", Up = "_bell_1snff_221", Vp = "_loading_1snff_253", Hp = "_spin_1snff_1", Yp = "_justFollowed_1snff_293", Kp = "_followPulse_1snff_1", pe = {
3072
+ followButton: Mp,
3073
+ following: Ap,
3074
+ icon: Ep,
3075
+ count: Wp,
3076
+ sm: Pp,
3077
+ lg: Fp,
3078
+ iconOnly: Op,
3079
+ text: Gp,
3080
+ bell: Up,
3081
+ loading: Vp,
3082
+ spin: Hp,
3083
+ justFollowed: Yp,
3084
+ followPulse: Kp
3085
+ };
3086
+ function Qp({
3087
+ isFollowing: n = !1,
3088
+ count: a,
3089
+ showCount: s = !1,
3090
+ size: l = "md",
3091
+ variant: c = "default",
3092
+ iconOnly: r = !1,
3093
+ loading: i = !1,
3094
+ onToggle: _,
3095
+ className: o = ""
3096
+ }) {
3097
+ const [d, p] = k(!1), u = () => {
3098
+ i || (n || (p(!0), setTimeout(() => p(!1), 400)), _?.(!n));
3099
+ }, m = ($) => $ >= 1e6 ? `${($ / 1e6).toFixed(1)}M` : $ >= 1e3 ? `${($ / 1e3).toFixed(1)}K` : $.toString(), h = () => i ? "⏳" : c === "bell" ? n ? "🔔" : "🔕" : n ? "✓" : "+", f = () => c === "bell" ? n ? "Bildirimlerde" : "Bildirim Al" : n ? "Takip Ediliyor" : "Takip Et", g = [
3100
+ pe.followButton,
3101
+ n && pe.following,
3102
+ l !== "md" && pe[l],
3103
+ c !== "default" && pe[c],
3104
+ r && pe.iconOnly,
3105
+ i && pe.loading,
3106
+ d && pe.justFollowed,
3107
+ o
3108
+ ].filter(Boolean).join(" ");
3109
+ return /* @__PURE__ */ t("button", { className: g, onClick: u, children: [
3110
+ /* @__PURE__ */ e("span", { className: pe.icon, children: h() }),
3111
+ /* @__PURE__ */ e("span", { className: pe.text, children: n ? /* @__PURE__ */ e("span", { children: /* @__PURE__ */ e("span", { className: pe.defaultText, children: f() }) }) : f() }),
3112
+ s && a !== void 0 && /* @__PURE__ */ e("span", { className: pe.count, children: m(a) })
3113
+ ] });
3114
+ }
3115
+ Qp.displayName = "FollowButton";
3116
+ const Jp = "_overlay_17fla_11", Xp = "_modal_17fla_41", Zp = "_header_17fla_111", eu = "_title_17fla_127", nu = "_titleIcon_17fla_149", tu = "_closeBtn_17fla_157", au = "_body_17fla_199", su = "_description_17fla_207", ou = "_reasonList_17fla_223", cu = "_reasonItem_17fla_235", lu = "_selected_17fla_279", ru = "_radioCircle_17fla_291", iu = "_detailsLabel_17fla_357", _u = "_detailsInput_17fla_379", du = "_footer_17fla_425", mu = "_cancelBtn_17fla_439", pu = "_submitBtn_17fla_483", W = {
3117
+ overlay: Jp,
3118
+ modal: Xp,
3119
+ header: Zp,
3120
+ title: eu,
3121
+ titleIcon: nu,
3122
+ closeBtn: tu,
3123
+ body: au,
3124
+ description: su,
3125
+ reasonList: ou,
3126
+ reasonItem: cu,
3127
+ selected: lu,
3128
+ radioCircle: ru,
3129
+ detailsLabel: iu,
3130
+ detailsInput: _u,
3131
+ footer: du,
3132
+ cancelBtn: mu,
3133
+ submitBtn: pu
3134
+ }, uu = [
3135
+ { id: "spam", label: "Spam veya yanıltıcı içerik" },
3136
+ { id: "inappropriate", label: "Uygunsuz veya rahatsız edici içerik" },
3137
+ { id: "copyright", label: "Telif hakkı ihlali" },
3138
+ { id: "spoiler", label: "Spoiler işareti olmadan spoiler" },
3139
+ { id: "wrong_content", label: "Yanlış bölüm veya içerik" },
3140
+ { id: "other", label: "Diğer" }
3141
+ ];
3142
+ function hu({
3143
+ isOpen: n,
3144
+ contentType: a = "içerik",
3145
+ reasons: s = uu,
3146
+ showDetails: l = !0,
3147
+ onClose: c,
3148
+ onSubmit: r
3149
+ }) {
3150
+ const [i, _] = k(null), [o, d] = k("");
3151
+ B(() => {
3152
+ const m = (h) => {
3153
+ h.key === "Escape" && c();
3154
+ };
3155
+ return n && (document.addEventListener("keydown", m), document.body.style.overflow = "hidden"), () => {
3156
+ document.removeEventListener("keydown", m), document.body.style.overflow = "";
3157
+ };
3158
+ }, [n, c]), B(() => {
3159
+ n && (_(null), d(""));
3160
+ }, [n]);
3161
+ const p = () => {
3162
+ i && (r?.(i, o || void 0), c());
3163
+ };
3164
+ if (!n) return null;
3165
+ const u = /* @__PURE__ */ e("div", { className: W.overlay, onClick: c, children: /* @__PURE__ */ t("div", { className: W.modal, onClick: (m) => m.stopPropagation(), children: [
3166
+ /* @__PURE__ */ t("div", { className: W.header, children: [
3167
+ /* @__PURE__ */ t("h2", { className: W.title, children: [
3168
+ /* @__PURE__ */ e("span", { className: W.titleIcon, children: "🚨" }),
3169
+ "Şikayet Et"
3170
+ ] }),
3171
+ /* @__PURE__ */ e("button", { className: W.closeBtn, onClick: c, children: "✕" })
3172
+ ] }),
3173
+ /* @__PURE__ */ t("div", { className: W.body, children: [
3174
+ /* @__PURE__ */ t("p", { className: W.description, children: [
3175
+ "Bu ",
3176
+ a,
3177
+ " neden şikayet ediyorsunuz?"
3178
+ ] }),
3179
+ /* @__PURE__ */ e("div", { className: W.reasonList, children: s.map((m) => /* @__PURE__ */ t(
3180
+ "div",
3181
+ {
3182
+ className: `${W.reasonItem} ${i === m.id ? W.selected : ""}`,
3183
+ onClick: () => _(m.id),
3184
+ children: [
3185
+ /* @__PURE__ */ e("span", { className: W.radioCircle }),
3186
+ m.label
3187
+ ]
3188
+ },
3189
+ m.id
3190
+ )) }),
3191
+ l && /* @__PURE__ */ t(oe, { children: [
3192
+ /* @__PURE__ */ e("label", { className: W.detailsLabel, children: "Ek Açıklama (İsteğe Bağlı)" }),
3193
+ /* @__PURE__ */ e(
3194
+ "textarea",
3195
+ {
3196
+ className: W.detailsInput,
3197
+ placeholder: "Detaylı açıklama yazabilirsiniz...",
3198
+ value: o,
3199
+ onChange: (m) => d(m.target.value)
3200
+ }
3201
+ )
3202
+ ] })
3203
+ ] }),
3204
+ /* @__PURE__ */ t("div", { className: W.footer, children: [
3205
+ /* @__PURE__ */ e("button", { className: W.cancelBtn, onClick: c, children: "İptal" }),
3206
+ /* @__PURE__ */ e(
3207
+ "button",
3208
+ {
3209
+ className: W.submitBtn,
3210
+ disabled: !i,
3211
+ onClick: p,
3212
+ children: "Gönder"
3213
+ }
3214
+ )
3215
+ ] })
3216
+ ] }) });
3217
+ return Le(u, document.body);
3218
+ }
3219
+ hu.displayName = "ReportModal";
3220
+ const gu = "_emptyState_1ueeu_11", fu = "_icon_1ueeu_33", vu = "_float_1ueeu_1", bu = "_title_1ueeu_71", $u = "_description_1ueeu_89", Nu = "_action_1ueeu_107", yu = "_compact_1ueeu_117", ku = "_bordered_1ueeu_153", wu = "_card_1ueeu_169", Cu = "_noResults_1ueeu_187", xu = "_noData_1ueeu_195", Bu = "_error_1ueeu_203", Iu = "_image_1ueeu_221", Tu = "_illustration_1ueeu_257", Ae = {
3221
+ emptyState: gu,
3222
+ icon: fu,
3223
+ float: vu,
3224
+ title: bu,
3225
+ description: $u,
3226
+ action: Nu,
3227
+ compact: yu,
3228
+ bordered: ku,
3229
+ card: wu,
3230
+ noResults: Cu,
3231
+ noData: xu,
3232
+ error: Bu,
3233
+ image: Iu,
3234
+ illustration: Tu
3235
+ }, zu = {
3236
+ default: "📭",
3237
+ noResults: "🔍",
3238
+ noData: "📂",
3239
+ error: "⚠️"
3240
+ }, Lu = {
3241
+ default: "Burada henüz içerik yok",
3242
+ noResults: "Sonuç bulunamadı",
3243
+ noData: "Veri yok",
3244
+ error: "Bir hata oluştu"
3245
+ }, ju = {
3246
+ default: "Yeni içerik eklendiğinde burada görünecek.",
3247
+ noResults: "Arama kriterlerinize uygun sonuç bulunamadı. Farklı anahtar kelimeler deneyin.",
3248
+ noData: "Görüntülenecek veri bulunmuyor.",
3249
+ error: "Bir şeyler yanlış gitti. Lütfen daha sonra tekrar deneyin."
3250
+ };
3251
+ function Su({
3252
+ icon: n,
3253
+ title: a,
3254
+ description: s,
3255
+ action: l,
3256
+ variant: c = "default",
3257
+ type: r = "default",
3258
+ className: i = ""
3259
+ }) {
3260
+ const _ = [
3261
+ Ae.emptyState,
3262
+ c !== "default" && Ae[c],
3263
+ r !== "default" && Ae[r],
3264
+ i
3265
+ ].filter(Boolean).join(" "), o = n ?? zu[r], d = a ?? Lu[r], p = s ?? ju[r];
3266
+ return /* @__PURE__ */ t("div", { className: _, children: [
3267
+ c === "illustration" ? /* @__PURE__ */ e("div", { className: Ae.icon, children: o }) : /* @__PURE__ */ e("span", { className: Ae.icon, children: o }),
3268
+ /* @__PURE__ */ e("h3", { className: Ae.title, children: d }),
3269
+ /* @__PURE__ */ e("p", { className: Ae.description, children: p }),
3270
+ l && /* @__PURE__ */ e("div", { className: Ae.action, children: l })
3271
+ ] });
3272
+ }
3273
+ Su.displayName = "EmptyState";
3274
+ const Du = "_dataTable_7o2n1_11", qu = "_tableHeader_7o2n1_31", Ru = "_tableTitle_7o2n1_49", Mu = "_headerActions_7o2n1_63", Au = "_searchWrapper_7o2n1_77", Eu = "_searchInput_7o2n1_99", Wu = "_tableContainer_7o2n1_131", Pu = "_table_7o2n1_31", Fu = "_sortable_7o2n1_191", Ou = "_sortIcon_7o2n1_211", Gu = "_sorted_7o2n1_225", Uu = "_striped_7o2n1_279", Vu = "_compact_7o2n1_289", Hu = "_tableFooter_7o2n1_339", Yu = "_rowInfo_7o2n1_357", Ku = "_paginationWrapper_7o2n1_369", Qu = "_pageBtn_7o2n1_381", Ju = "_active_7o2n1_439", Xu = "_emptyRow_7o2n1_453", Zu = "_loading_7o2n1_467", I = {
3275
+ dataTable: Du,
3276
+ tableHeader: qu,
3277
+ tableTitle: Ru,
3278
+ headerActions: Mu,
3279
+ searchWrapper: Au,
3280
+ searchInput: Eu,
3281
+ tableContainer: Wu,
3282
+ table: Pu,
3283
+ sortable: Fu,
3284
+ sortIcon: Ou,
3285
+ sorted: Gu,
3286
+ striped: Uu,
3287
+ compact: Vu,
3288
+ tableFooter: Hu,
3289
+ rowInfo: Yu,
3290
+ paginationWrapper: Ku,
3291
+ pageBtn: Qu,
3292
+ active: Ju,
3293
+ emptyRow: Xu,
3294
+ loading: Zu
3295
+ };
3296
+ function eh({
3297
+ data: n,
3298
+ columns: a,
3299
+ title: s,
3300
+ showSearch: l = !1,
3301
+ searchPlaceholder: c = "Ara...",
3302
+ searchFields: r = [],
3303
+ striped: i = !1,
3304
+ compact: _ = !1,
3305
+ pageSize: o = 10,
3306
+ loading: d = !1,
3307
+ emptyMessage: p = "Veri bulunamadı",
3308
+ rowKey: u,
3309
+ headerActions: m,
3310
+ className: h = ""
3311
+ }) {
3312
+ const [f, g] = k(""), [$, v] = k(null), [b, C] = k(null), [y, N] = k(1), z = ln(() => {
3313
+ if (!f.trim() || r.length === 0) return n;
3314
+ const x = f.toLowerCase();
3315
+ return n.filter(
3316
+ (be) => r.some((S) => {
3317
+ const Ke = be[S];
3318
+ return String(Ke).toLowerCase().includes(x);
3319
+ })
3320
+ );
3321
+ }, [n, f, r]), O = ln(() => !$ || !b ? z : [...z].sort((x, be) => {
3322
+ const S = x[$], Ke = be[$];
3323
+ if (S === Ke) return 0;
3324
+ if (S == null) return 1;
3325
+ if (Ke == null) return -1;
3326
+ const dn = S < Ke ? -1 : 1;
3327
+ return b === "asc" ? dn : -dn;
3328
+ }), [z, $, b]), ve = ln(() => {
3329
+ if (o === 0) return O;
3330
+ const x = (y - 1) * o;
3331
+ return O.slice(x, x + o);
3332
+ }, [O, y, o]), le = o > 0 ? Math.ceil(O.length / o) : 1, en = (x) => {
3333
+ $ === x ? b === "asc" ? C("desc") : b === "desc" ? (v(null), C(null)) : C("asc") : (v(x), C("asc"));
3334
+ }, nn = (x) => $ !== x ? "↕" : b === "asc" ? "↑" : "↓", gn = [
3335
+ I.dataTable,
3336
+ i && I.striped,
3337
+ _ && I.compact,
3338
+ d && I.loading,
3339
+ h
3340
+ ].filter(Boolean).join(" ");
3341
+ return /* @__PURE__ */ t("div", { className: gn, children: [
3342
+ (s || l || m) && /* @__PURE__ */ t("div", { className: I.tableHeader, children: [
3343
+ s && /* @__PURE__ */ e("h3", { className: I.tableTitle, children: s }),
3344
+ /* @__PURE__ */ t("div", { className: I.headerActions, children: [
3345
+ l && /* @__PURE__ */ t("div", { className: I.searchWrapper, children: [
3346
+ /* @__PURE__ */ e("span", { children: "🔍" }),
3347
+ /* @__PURE__ */ e(
3348
+ "input",
3349
+ {
3350
+ type: "text",
3351
+ className: I.searchInput,
3352
+ placeholder: c,
3353
+ value: f,
3354
+ onChange: (x) => {
3355
+ g(x.target.value), N(1);
3356
+ }
3357
+ }
3358
+ )
3359
+ ] }),
3360
+ m
3361
+ ] })
3362
+ ] }),
3363
+ /* @__PURE__ */ e("div", { className: I.tableContainer, children: /* @__PURE__ */ t("table", { className: I.table, children: [
3364
+ /* @__PURE__ */ e("thead", { children: /* @__PURE__ */ e("tr", { children: a.map((x) => /* @__PURE__ */ t(
3365
+ "th",
3366
+ {
3367
+ className: x.sortable ? `${I.sortable} ${$ === x.key ? I.sorted : ""}` : "",
3368
+ style: { width: x.width },
3369
+ onClick: x.sortable ? () => en(String(x.key)) : void 0,
3370
+ children: [
3371
+ x.label,
3372
+ x.sortable && /* @__PURE__ */ e("span", { className: I.sortIcon, children: nn(String(x.key)) })
3373
+ ]
3374
+ },
3375
+ String(x.key)
3376
+ )) }) }),
3377
+ /* @__PURE__ */ e("tbody", { children: ve.length === 0 ? /* @__PURE__ */ e("tr", { children: /* @__PURE__ */ e("td", { colSpan: a.length, className: I.emptyRow, children: p }) }) : ve.map((x, be) => /* @__PURE__ */ e("tr", { children: a.map((S) => /* @__PURE__ */ e("td", { children: S.render ? S.render(x[S.key], x, be) : String(x[S.key] ?? "") }, String(S.key))) }, u ? String(x[u]) : be)) })
3378
+ ] }) }),
3379
+ o > 0 && O.length > o && /* @__PURE__ */ t("div", { className: I.tableFooter, children: [
3380
+ /* @__PURE__ */ t("span", { className: I.rowInfo, children: [
3381
+ (y - 1) * o + 1,
3382
+ "-",
3383
+ Math.min(y * o, O.length),
3384
+ " / ",
3385
+ O.length
3386
+ ] }),
3387
+ /* @__PURE__ */ t("div", { className: I.paginationWrapper, children: [
3388
+ /* @__PURE__ */ e(
3389
+ "button",
3390
+ {
3391
+ className: I.pageBtn,
3392
+ disabled: y === 1,
3393
+ onClick: () => N(1),
3394
+ children: "«"
3395
+ }
3396
+ ),
3397
+ /* @__PURE__ */ e(
3398
+ "button",
3399
+ {
3400
+ className: I.pageBtn,
3401
+ disabled: y === 1,
3402
+ onClick: () => N((x) => x - 1),
3403
+ children: "‹"
3404
+ }
3405
+ ),
3406
+ Array.from({ length: Math.min(5, le) }, (x, be) => {
3407
+ let S = be + 1;
3408
+ return le > 5 && (y > 3 && (S = y - 2 + be), y > le - 2 && (S = le - 4 + be)), /* @__PURE__ */ e(
3409
+ "button",
3410
+ {
3411
+ className: `${I.pageBtn} ${y === S ? I.active : ""}`,
3412
+ onClick: () => N(S),
3413
+ children: S
3414
+ },
3415
+ S
3416
+ );
3417
+ }),
3418
+ /* @__PURE__ */ e(
3419
+ "button",
3420
+ {
3421
+ className: I.pageBtn,
3422
+ disabled: y === le,
3423
+ onClick: () => N((x) => x + 1),
3424
+ children: "›"
3425
+ }
3426
+ ),
3427
+ /* @__PURE__ */ e(
3428
+ "button",
3429
+ {
3430
+ className: I.pageBtn,
3431
+ disabled: y === le,
3432
+ onClick: () => N(le),
3433
+ children: "»"
3434
+ }
3435
+ )
3436
+ ] })
3437
+ ] })
3438
+ ] });
3439
+ }
3440
+ eh.displayName = "DataTable";
3441
+ const nh = "_textareaWrapper_qkp8t_11", th = "_label_qkp8t_23", ah = "_required_qkp8t_39", sh = "_textareaContainer_qkp8t_47", oh = "_textarea_qkp8t_11", ch = "_comic_qkp8t_121", lh = "_sm_qkp8t_145", rh = "_lg_qkp8t_157", ih = "_error_qkp8t_171", _h = "_errorMessage_qkp8t_187", dh = "_footer_qkp8t_201", mh = "_charCount_qkp8t_213", ph = "_warning_qkp8t_225", uh = "_exceeded_qkp8t_233", hh = "_helperText_qkp8t_245", gh = "_noResize_qkp8t_273", fh = "_autoGrow_qkp8t_283", D = {
3442
+ textareaWrapper: nh,
3443
+ label: th,
3444
+ required: ah,
3445
+ textareaContainer: sh,
3446
+ textarea: oh,
3447
+ comic: ch,
3448
+ sm: lh,
3449
+ lg: rh,
3450
+ error: ih,
3451
+ errorMessage: _h,
3452
+ footer: dh,
3453
+ charCount: mh,
3454
+ warning: ph,
3455
+ exceeded: uh,
3456
+ helperText: hh,
3457
+ noResize: gh,
3458
+ autoGrow: fh
3459
+ };
3460
+ function vh({
3461
+ label: n,
3462
+ size: a = "md",
3463
+ variant: s = "default",
3464
+ error: l = !1,
3465
+ errorMessage: c,
3466
+ helperText: r,
3467
+ required: i = !1,
3468
+ maxChars: _,
3469
+ showCharCount: o = !1,
3470
+ noResize: d = !1,
3471
+ autoGrow: p = !1,
3472
+ className: u = "",
3473
+ value: m,
3474
+ onChange: h,
3475
+ ...f
3476
+ }) {
3477
+ const g = fe(null), $ = String(m || "").length;
3478
+ B(() => {
3479
+ p && g.current && (g.current.style.height = "auto", g.current.style.height = `${g.current.scrollHeight}px`);
3480
+ }, [m, p]);
3481
+ const v = [
3482
+ D.textareaWrapper,
3483
+ a !== "md" && D[a],
3484
+ s !== "default" && D[s],
3485
+ l && D.error,
3486
+ d && D.noResize,
3487
+ p && D.autoGrow,
3488
+ u
3489
+ ].filter(Boolean).join(" "), b = () => _ ? $ > _ ? `${D.charCount} ${D.exceeded}` : $ > _ * 0.9 ? `${D.charCount} ${D.warning}` : D.charCount : D.charCount;
3490
+ return /* @__PURE__ */ t("div", { className: v, children: [
3491
+ n && /* @__PURE__ */ t("label", { className: D.label, children: [
3492
+ n,
3493
+ i && /* @__PURE__ */ e("span", { className: D.required, children: " *" })
3494
+ ] }),
3495
+ /* @__PURE__ */ e("div", { className: D.textareaContainer, children: /* @__PURE__ */ e(
3496
+ "textarea",
3497
+ {
3498
+ ref: g,
3499
+ className: D.textarea,
3500
+ value: m,
3501
+ onChange: h,
3502
+ maxLength: _,
3503
+ ...f
3504
+ }
3505
+ ) }),
3506
+ /* @__PURE__ */ t("div", { className: D.footer, children: [
3507
+ l && c ? /* @__PURE__ */ e("span", { className: D.errorMessage, children: c }) : r ? /* @__PURE__ */ e("span", { className: D.helperText, children: r }) : /* @__PURE__ */ e("span", {}),
3508
+ o && /* @__PURE__ */ t("span", { className: b(), children: [
3509
+ $,
3510
+ _ ? ` / ${_}` : ""
3511
+ ] })
3512
+ ] })
3513
+ ] });
3514
+ }
3515
+ vh.displayName = "TextArea";
3516
+ const bh = "_overlay_1pn8d_11", $h = "_header_1pn8d_59", Nh = "_title_1pn8d_87", yh = "_counter_1pn8d_101", kh = "_closeBtn_1pn8d_113", wh = "_imageContainer_1pn8d_155", Ch = "_image_1pn8d_155", xh = "_navBtn_1pn8d_219", Bh = "_prevBtn_1pn8d_283", Ih = "_nextBtn_1pn8d_291", Th = "_thumbnails_1pn8d_301", zh = "_thumbnail_1pn8d_301", Lh = "_active_1pn8d_369", jh = "_loading_1pn8d_467", Y = {
3517
+ overlay: bh,
3518
+ header: $h,
3519
+ title: Nh,
3520
+ counter: yh,
3521
+ closeBtn: kh,
3522
+ imageContainer: wh,
3523
+ image: Ch,
3524
+ navBtn: xh,
3525
+ prevBtn: Bh,
3526
+ nextBtn: Ih,
3527
+ thumbnails: Th,
3528
+ thumbnail: zh,
3529
+ active: Lh,
3530
+ loading: jh
3531
+ };
3532
+ function Sh({
3533
+ images: n,
3534
+ initialIndex: a = 0,
3535
+ isOpen: s,
3536
+ title: l,
3537
+ showThumbnails: c = !0,
3538
+ showCounter: r = !0,
3539
+ onClose: i,
3540
+ onIndexChange: _
3541
+ }) {
3542
+ const [o, d] = k(a), [p, u] = k(!0);
3543
+ B(() => {
3544
+ s && (d(a), u(!0));
3545
+ }, [s, a]), B(() => {
3546
+ const v = (b) => {
3547
+ if (s)
3548
+ switch (b.key) {
3549
+ case "Escape":
3550
+ i();
3551
+ break;
3552
+ case "ArrowLeft":
3553
+ m();
3554
+ break;
3555
+ case "ArrowRight":
3556
+ h();
3557
+ break;
3558
+ }
3559
+ };
3560
+ return document.addEventListener("keydown", v), () => document.removeEventListener("keydown", v);
3561
+ }, [s, o]), B(() => (s && (document.body.style.overflow = "hidden"), () => {
3562
+ document.body.style.overflow = "";
3563
+ }), [s]);
3564
+ const m = Fe(() => {
3565
+ if (o > 0) {
3566
+ const v = o - 1;
3567
+ d(v), u(!0), _?.(v);
3568
+ }
3569
+ }, [o, _]), h = Fe(() => {
3570
+ if (o < n.length - 1) {
3571
+ const v = o + 1;
3572
+ d(v), u(!0), _?.(v);
3573
+ }
3574
+ }, [o, n.length, _]), f = (v) => {
3575
+ d(v), u(!0), _?.(v);
3576
+ };
3577
+ if (!s || n.length === 0) return null;
3578
+ const g = n[o], $ = /* @__PURE__ */ t("div", { className: Y.overlay, onClick: i, children: [
3579
+ /* @__PURE__ */ t("div", { className: Y.header, children: [
3580
+ /* @__PURE__ */ e("span", { className: Y.title, children: l }),
3581
+ r && /* @__PURE__ */ t("span", { className: Y.counter, children: [
3582
+ o + 1,
3583
+ " / ",
3584
+ n.length
3585
+ ] }),
3586
+ /* @__PURE__ */ e("button", { className: Y.closeBtn, onClick: i, children: "✕" })
3587
+ ] }),
3588
+ /* @__PURE__ */ t("div", { className: Y.imageContainer, onClick: (v) => v.stopPropagation(), children: [
3589
+ p && /* @__PURE__ */ e("span", { className: Y.loading, children: "Yükleniyor..." }),
3590
+ /* @__PURE__ */ e(
3591
+ "img",
3592
+ {
3593
+ src: g.src,
3594
+ alt: g.alt || `Image ${o + 1}`,
3595
+ className: Y.image,
3596
+ onLoad: () => u(!1),
3597
+ style: { display: p ? "none" : "block" }
3598
+ }
3599
+ )
3600
+ ] }),
3601
+ n.length > 1 && /* @__PURE__ */ t(oe, { children: [
3602
+ /* @__PURE__ */ e(
3603
+ "button",
3604
+ {
3605
+ className: `${Y.navBtn} ${Y.prevBtn}`,
3606
+ onClick: (v) => {
3607
+ v.stopPropagation(), m();
3608
+ },
3609
+ disabled: o === 0,
3610
+ children: "◀"
3611
+ }
3612
+ ),
3613
+ /* @__PURE__ */ e(
3614
+ "button",
3615
+ {
3616
+ className: `${Y.navBtn} ${Y.nextBtn}`,
3617
+ onClick: (v) => {
3618
+ v.stopPropagation(), h();
3619
+ },
3620
+ disabled: o === n.length - 1,
3621
+ children: "▶"
3622
+ }
3623
+ )
3624
+ ] }),
3625
+ c && n.length > 1 && /* @__PURE__ */ e("div", { className: Y.thumbnails, onClick: (v) => v.stopPropagation(), children: n.map((v, b) => /* @__PURE__ */ e(
3626
+ "button",
3627
+ {
3628
+ className: `${Y.thumbnail} ${b === o ? Y.active : ""}`,
3629
+ onClick: () => f(b),
3630
+ children: /* @__PURE__ */ e("img", { src: v.thumbnail || v.src, alt: "" })
3631
+ },
3632
+ b
3633
+ )) })
3634
+ ] });
3635
+ return Le($, document.body);
3636
+ }
3637
+ Sh.displayName = "ImageViewer";
3638
+ const Dh = "_overlay_23pkb_11", qh = "_fadeIn_23pkb_1", Rh = "_drawer_23pkb_47", Mh = "_left_23pkb_77", Ah = "_slideInLeft_23pkb_1", Eh = "_right_23pkb_93", Wh = "_slideInRight_23pkb_1", Ph = "_sm_23pkb_151", Fh = "_md_23pkb_159", Oh = "_lg_23pkb_167", Gh = "_full_23pkb_175", Uh = "_header_23pkb_185", Vh = "_title_23pkb_201", Hh = "_closeBtn_23pkb_215", Yh = "_body_23pkb_257", Kh = "_footer_23pkb_271", Qh = "_navMenu_23pkb_283", Jh = "_navItem_23pkb_295", Xh = "_active_23pkb_337", Zh = "_navIcon_23pkb_347", eg = "_divider_23pkb_357", ng = "_userSection_23pkb_371", tg = "_userAvatar_23pkb_391", ag = "_userInfo_23pkb_407", sg = "_userName_23pkb_415", og = "_userEmail_23pkb_427", Ie = {
3639
+ overlay: Dh,
3640
+ fadeIn: qh,
3641
+ drawer: Rh,
3642
+ left: Mh,
3643
+ slideInLeft: Ah,
3644
+ right: Eh,
3645
+ slideInRight: Wh,
3646
+ sm: Ph,
3647
+ md: Fh,
3648
+ lg: Oh,
3649
+ full: Gh,
3650
+ header: Uh,
3651
+ title: Vh,
3652
+ closeBtn: Hh,
3653
+ body: Yh,
3654
+ footer: Kh,
3655
+ navMenu: Qh,
3656
+ navItem: Jh,
3657
+ active: Xh,
3658
+ navIcon: Zh,
3659
+ divider: eg,
3660
+ userSection: ng,
3661
+ userAvatar: tg,
3662
+ userInfo: ag,
3663
+ userName: sg,
3664
+ userEmail: og
3665
+ };
3666
+ function cg({
3667
+ isOpen: n,
3668
+ position: a = "left",
3669
+ size: s = "md",
3670
+ title: l,
3671
+ showCloseButton: c = !0,
3672
+ closeOnOverlayClick: r = !0,
3673
+ closeOnEscape: i = !0,
3674
+ header: _,
3675
+ footer: o,
3676
+ children: d,
3677
+ onClose: p,
3678
+ className: u = ""
3679
+ }) {
3680
+ if (B(() => {
3681
+ if (!i) return;
3682
+ const f = (g) => {
3683
+ g.key === "Escape" && n && p();
3684
+ };
3685
+ return document.addEventListener("keydown", f), () => document.removeEventListener("keydown", f);
3686
+ }, [n, i, p]), B(() => (n && (document.body.style.overflow = "hidden"), () => {
3687
+ document.body.style.overflow = "";
3688
+ }), [n]), !n) return null;
3689
+ const m = [
3690
+ Ie.drawer,
3691
+ Ie[a],
3692
+ Ie[s],
3693
+ u
3694
+ ].filter(Boolean).join(" "), h = /* @__PURE__ */ t(oe, { children: [
3695
+ /* @__PURE__ */ e(
3696
+ "div",
3697
+ {
3698
+ className: Ie.overlay,
3699
+ onClick: r ? p : void 0
3700
+ }
3701
+ ),
3702
+ /* @__PURE__ */ t("div", { className: m, children: [
3703
+ (l || _ || c) && /* @__PURE__ */ t("div", { className: Ie.header, children: [
3704
+ _ || /* @__PURE__ */ e("span", { className: Ie.title, children: l }),
3705
+ c && /* @__PURE__ */ e("button", { className: Ie.closeBtn, onClick: p, children: "✕" })
3706
+ ] }),
3707
+ /* @__PURE__ */ e("div", { className: Ie.body, children: d }),
3708
+ o && /* @__PURE__ */ e("div", { className: Ie.footer, children: o })
3709
+ ] })
3710
+ ] });
3711
+ return Le(h, document.body);
3712
+ }
3713
+ cg.displayName = "Drawer";
3714
+ const lg = "_overlay_1nv17_11", rg = "_fadeIn_1nv17_1", ig = "_dialog_1nv17_61", _g = "_scaleIn_1nv17_1", dg = "_iconWrapper_1nv17_111", mg = "_icon_1nv17_111", pg = "_danger_1nv17_151", ug = "_warning_1nv17_161", hg = "_info_1nv17_171", gg = "_success_1nv17_181", fg = "_content_1nv17_193", vg = "_title_1nv17_203", bg = "_message_1nv17_221", $g = "_actions_1nv17_237", Ng = "_btn_1nv17_251", yg = "_cancelBtn_1nv17_293", kg = "_confirmBtn_1nv17_311", wg = "_loading_1nv17_367", K = {
3715
+ overlay: lg,
3716
+ fadeIn: rg,
3717
+ dialog: ig,
3718
+ scaleIn: _g,
3719
+ iconWrapper: dg,
3720
+ icon: mg,
3721
+ danger: pg,
3722
+ warning: ug,
3723
+ info: hg,
3724
+ success: gg,
3725
+ content: fg,
3726
+ title: vg,
3727
+ message: bg,
3728
+ actions: $g,
3729
+ btn: Ng,
3730
+ cancelBtn: yg,
3731
+ confirmBtn: kg,
3732
+ loading: wg
3733
+ }, Cg = {
3734
+ danger: "⚠️",
3735
+ warning: "❓",
3736
+ info: "ℹ️",
3737
+ success: "✓"
3738
+ }, xg = {
3739
+ danger: "Emin misiniz?",
3740
+ warning: "Dikkat",
3741
+ info: "Bilgi",
3742
+ success: "Onay"
3743
+ };
3744
+ function Bg({
3745
+ isOpen: n,
3746
+ variant: a = "danger",
3747
+ title: s,
3748
+ message: l,
3749
+ confirmText: c = "Onayla",
3750
+ cancelText: r = "İptal",
3751
+ loading: i = !1,
3752
+ onConfirm: _,
3753
+ onCancel: o
3754
+ }) {
3755
+ if (B(() => {
3756
+ const u = (m) => {
3757
+ m.key === "Escape" && n && o();
3758
+ };
3759
+ return document.addEventListener("keydown", u), () => document.removeEventListener("keydown", u);
3760
+ }, [n, o]), B(() => (n && (document.body.style.overflow = "hidden"), () => {
3761
+ document.body.style.overflow = "";
3762
+ }), [n]), !n) return null;
3763
+ const d = [
3764
+ K.dialog,
3765
+ i && K.loading
3766
+ ].filter(Boolean).join(" "), p = /* @__PURE__ */ e("div", { className: K.overlay, onClick: o, children: /* @__PURE__ */ t("div", { className: d, onClick: (u) => u.stopPropagation(), children: [
3767
+ /* @__PURE__ */ e("div", { className: K.iconWrapper, children: /* @__PURE__ */ e("span", { className: `${K.icon} ${K[a]}`, children: Cg[a] }) }),
3768
+ /* @__PURE__ */ t("div", { className: K.content, children: [
3769
+ /* @__PURE__ */ e("h3", { className: K.title, children: s || xg[a] }),
3770
+ /* @__PURE__ */ e("p", { className: K.message, children: l })
3771
+ ] }),
3772
+ /* @__PURE__ */ t("div", { className: K.actions, children: [
3773
+ /* @__PURE__ */ e("button", { className: `${K.btn} ${K.cancelBtn}`, onClick: o, children: r }),
3774
+ /* @__PURE__ */ e(
3775
+ "button",
3776
+ {
3777
+ className: `${K.btn} ${K.confirmBtn} ${K[a]}`,
3778
+ onClick: _,
3779
+ children: i ? "..." : c
3780
+ }
3781
+ )
3782
+ ] })
3783
+ ] }) });
3784
+ return Le(p, document.body);
3785
+ }
3786
+ Bg.displayName = "ConfirmDialog";
3787
+ const Ig = "_scrollToTop_1frqn_11", Tg = "_visible_1frqn_67", zg = "_bottomLeft_1frqn_103", Lg = "_bottomCenter_1frqn_113", jg = "_sm_1frqn_135", Sg = "_lg_1frqn_147", Dg = "_rounded_1frqn_161", qg = "_icon_1frqn_169", Rg = "_withText_1frqn_183", Mg = "_text_1frqn_197", Ag = "_withProgress_1frqn_211", Eg = "_progressRing_1frqn_219", Wg = "_progressBg_1frqn_241", Pg = "_progressFill_1frqn_249", ue = {
3788
+ scrollToTop: Ig,
3789
+ visible: Tg,
3790
+ bottomLeft: zg,
3791
+ bottomCenter: Lg,
3792
+ sm: jg,
3793
+ lg: Sg,
3794
+ rounded: Dg,
3795
+ icon: qg,
3796
+ withText: Rg,
3797
+ text: Mg,
3798
+ withProgress: Ag,
3799
+ progressRing: Eg,
3800
+ progressBg: Wg,
3801
+ progressFill: Pg
3802
+ };
3803
+ function Fg({
3804
+ showAfter: n = 400,
3805
+ position: a = "bottomRight",
3806
+ size: s = "md",
3807
+ showProgress: l = !1,
3808
+ icon: c = "↑",
3809
+ showText: r = !1,
3810
+ text: i = "Yukarı",
3811
+ smooth: _ = !0,
3812
+ className: o = ""
3813
+ }) {
3814
+ const [d, p] = k(!1), [u, m] = k(0);
3815
+ B(() => {
3816
+ const b = () => {
3817
+ const C = window.scrollY, y = document.documentElement.scrollHeight - window.innerHeight;
3818
+ p(C > n), l && y > 0 && m(C / y * 100);
3819
+ };
3820
+ return window.addEventListener("scroll", b, { passive: !0 }), b(), () => window.removeEventListener("scroll", b);
3821
+ }, [n, l]);
3822
+ const h = () => {
3823
+ window.scrollTo({
3824
+ top: 0,
3825
+ behavior: _ ? "smooth" : "auto"
3826
+ });
3827
+ }, f = [
3828
+ ue.scrollToTop,
3829
+ d && ue.visible,
3830
+ a !== "bottomRight" && ue[a],
3831
+ s !== "md" && ue[s],
3832
+ r && ue.withText,
3833
+ l && ue.withProgress,
3834
+ o
3835
+ ].filter(Boolean).join(" "), g = s === "sm" ? 22 : s === "lg" ? 32 : 27, $ = 2 * Math.PI * g, v = $ - u / 100 * $;
3836
+ return /* @__PURE__ */ t("button", { className: f, onClick: h, "aria-label": "Yukarı git", children: [
3837
+ l && /* @__PURE__ */ t("svg", { className: ue.progressRing, viewBox: "0 0 60 60", children: [
3838
+ /* @__PURE__ */ e("circle", { className: ue.progressBg, cx: "30", cy: "30", r: g }),
3839
+ /* @__PURE__ */ e(
3840
+ "circle",
3841
+ {
3842
+ className: ue.progressFill,
3843
+ cx: "30",
3844
+ cy: "30",
3845
+ r: g,
3846
+ strokeDasharray: $,
3847
+ strokeDashoffset: v
3848
+ }
3849
+ )
3850
+ ] }),
3851
+ /* @__PURE__ */ e("span", { className: ue.icon, children: c }),
3852
+ r && /* @__PURE__ */ e("span", { className: ue.text, children: i })
3853
+ ] });
3854
+ }
3855
+ Fg.displayName = "ScrollToTop";
3856
+ const Og = "_lazyImage_okdde_11", Gg = "_image_okdde_23", Ug = "_loaded_okdde_41", Vg = "_placeholder_okdde_51", Hg = "_placeholderIcon_okdde_71", Yg = "_shimmer_okdde_85", Kg = "_error_okdde_127", Qg = "_errorIcon_okdde_151", Jg = "_errorText_okdde_161", Xg = "_ratio16x9_okdde_175", Zg = "_ratio4x3_okdde_183", ef = "_ratio1x1_okdde_191", nf = "_ratio2x3_okdde_199", tf = "_ratio3x4_okdde_209", af = "_blurPlaceholder_okdde_219", sf = "_hidden_okdde_243", of = "_comic_okdde_253", cf = "_zoomOnHover_okdde_265", lf = "_rounded_okdde_283", rf = "_roundedLg_okdde_291", _f = "_circle_okdde_299", Q = {
3857
+ lazyImage: Og,
3858
+ image: Gg,
3859
+ loaded: Ug,
3860
+ placeholder: Vg,
3861
+ placeholderIcon: Hg,
3862
+ shimmer: Yg,
3863
+ error: Kg,
3864
+ errorIcon: Qg,
3865
+ errorText: Jg,
3866
+ ratio16x9: Xg,
3867
+ ratio4x3: Zg,
3868
+ ratio1x1: ef,
3869
+ ratio2x3: nf,
3870
+ ratio3x4: tf,
3871
+ blurPlaceholder: af,
3872
+ hidden: sf,
3873
+ comic: of,
3874
+ zoomOnHover: cf,
3875
+ rounded: lf,
3876
+ roundedLg: rf,
3877
+ circle: _f
3878
+ };
3879
+ function df({
3880
+ src: n,
3881
+ alt: a,
3882
+ placeholder: s,
3883
+ ratio: l,
3884
+ rounding: c = "none",
3885
+ comic: r = !1,
3886
+ zoomOnHover: i = !1,
3887
+ width: _,
3888
+ height: o,
3889
+ onLoad: d,
3890
+ onError: p,
3891
+ className: u = "",
3892
+ style: m
3893
+ }) {
3894
+ const [h, f] = k(!1), [g, $] = k(!1), [v, b] = k(!1), C = fe(null);
3895
+ B(() => {
3896
+ const ve = new IntersectionObserver(
3897
+ ([le]) => {
3898
+ le.isIntersecting && (b(!0), ve.disconnect());
3899
+ },
3900
+ { rootMargin: "100px" }
3901
+ );
3902
+ return C.current && ve.observe(C.current), () => ve.disconnect();
3903
+ }, []);
3904
+ const y = () => {
3905
+ f(!0), d?.();
3906
+ }, N = () => {
3907
+ $(!0), p?.();
3908
+ }, z = [
3909
+ Q.lazyImage,
3910
+ l && Q[`ratio${l.replace("x", "x")}`],
3911
+ c !== "none" && Q[c],
3912
+ r && Q.comic,
3913
+ i && Q.zoomOnHover,
3914
+ u
3915
+ ].filter(Boolean).join(" "), O = {
3916
+ width: _,
3917
+ height: o,
3918
+ ...m
3919
+ };
3920
+ return /* @__PURE__ */ t("div", { ref: C, className: z, style: O, children: [
3921
+ s && /* @__PURE__ */ e(
3922
+ "div",
3923
+ {
3924
+ className: `${Q.blurPlaceholder} ${h ? Q.hidden : ""}`,
3925
+ style: { backgroundImage: `url(${s})` }
3926
+ }
3927
+ ),
3928
+ !h && !g && !s && /* @__PURE__ */ t("div", { className: Q.placeholder, children: [
3929
+ /* @__PURE__ */ e("span", { className: Q.placeholderIcon, children: "🖼️" }),
3930
+ /* @__PURE__ */ e("div", { className: Q.shimmer })
3931
+ ] }),
3932
+ g && /* @__PURE__ */ t("div", { className: Q.error, children: [
3933
+ /* @__PURE__ */ e("span", { className: Q.errorIcon, children: "⚠️" }),
3934
+ /* @__PURE__ */ e("span", { className: Q.errorText, children: "Yüklenemedi" })
3935
+ ] }),
3936
+ v && !g && /* @__PURE__ */ e(
3937
+ "img",
3938
+ {
3939
+ src: n,
3940
+ alt: a,
3941
+ className: `${Q.image} ${h ? Q.loaded : ""}`,
3942
+ onLoad: y,
3943
+ onError: N
3944
+ }
3945
+ )
3946
+ ] });
3947
+ }
3948
+ df.displayName = "LazyImage";
3949
+ const mf = "_filterPanel_a9olm_11", pf = "_header_a9olm_29", uf = "_title_a9olm_47", hf = "_clearBtn_a9olm_67", gf = "_body_a9olm_101", ff = "_filterGroup_a9olm_111", vf = "_filterLabel_a9olm_127", bf = "_chipGroup_a9olm_147", $f = "_chip_a9olm_147", Nf = "_selected_a9olm_191", yf = "_collapsible_a9olm_235", kf = "_collapseIcon_a9olm_249", wf = "_open_a9olm_259", Cf = "_collapsibleContent_a9olm_267", xf = "_footer_a9olm_289", Bf = "_applyBtn_a9olm_303", If = "_horizontal_a9olm_345", P = {
3950
+ filterPanel: mf,
3951
+ header: pf,
3952
+ title: uf,
3953
+ clearBtn: hf,
3954
+ body: gf,
3955
+ filterGroup: ff,
3956
+ filterLabel: vf,
3957
+ chipGroup: bf,
3958
+ chip: $f,
3959
+ selected: Nf,
3960
+ collapsible: yf,
3961
+ collapseIcon: kf,
3962
+ open: wf,
3963
+ collapsibleContent: Cf,
3964
+ footer: xf,
3965
+ applyBtn: Bf,
3966
+ horizontal: If
3967
+ };
3968
+ function Tf({
3969
+ groups: n,
3970
+ values: a = {},
3971
+ showClear: s = !0,
3972
+ showApply: l = !1,
3973
+ horizontal: c = !1,
3974
+ title: r = "🔎 Filtreler",
3975
+ footer: i,
3976
+ onChange: _,
3977
+ onApply: o,
3978
+ onClear: d,
3979
+ className: p = ""
3980
+ }) {
3981
+ const [u, m] = k(a), [h, f] = k(new Set(n.map((y) => y.id))), g = (y, N, z) => {
3982
+ const O = u[y];
3983
+ let ve;
3984
+ if (z) {
3985
+ const en = Array.isArray(O) ? O.filter((nn) => typeof nn == "string") : O && typeof O == "string" ? [O] : [];
3986
+ ve = en.includes(N) ? en.filter((nn) => nn !== N) : [...en, N];
3987
+ } else
3988
+ ve = O === N ? "" : N;
3989
+ const le = { ...u, [y]: ve };
3990
+ m(le), _?.(le);
3991
+ }, $ = (y) => {
3992
+ const N = new Set(h);
3993
+ N.has(y) ? N.delete(y) : N.add(y), f(N);
3994
+ }, v = () => {
3995
+ m({}), d?.(), _?.({});
3996
+ }, b = (y, N) => {
3997
+ const z = u[y];
3998
+ return Array.isArray(z) ? z.includes(N) : z === N;
3999
+ }, C = [
4000
+ P.filterPanel,
4001
+ c && P.horizontal,
4002
+ p
4003
+ ].filter(Boolean).join(" ");
4004
+ return /* @__PURE__ */ t("div", { className: C, children: [
4005
+ /* @__PURE__ */ t("div", { className: P.header, children: [
4006
+ /* @__PURE__ */ e("span", { className: P.title, children: r }),
4007
+ s && Object.keys(u).length > 0 && /* @__PURE__ */ e("button", { className: P.clearBtn, onClick: v, children: "Temizle" })
4008
+ ] }),
4009
+ /* @__PURE__ */ e("div", { className: P.body, children: n.map((y) => /* @__PURE__ */ t(
4010
+ "div",
4011
+ {
4012
+ className: `${P.filterGroup} ${y.collapsible ? P.collapsible : ""} ${h.has(y.id) ? P.open : ""}`,
4013
+ children: [
4014
+ /* @__PURE__ */ t(
4015
+ "label",
4016
+ {
4017
+ className: P.filterLabel,
4018
+ onClick: y.collapsible ? () => $(y.id) : void 0,
4019
+ children: [
4020
+ y.label,
4021
+ y.collapsible && /* @__PURE__ */ e("span", { className: P.collapseIcon, children: "▼" })
4022
+ ]
4023
+ }
4024
+ ),
4025
+ /* @__PURE__ */ e("div", { className: y.collapsible ? P.collapsibleContent : void 0, children: y.type === "chips" && y.options && /* @__PURE__ */ e("div", { className: P.chipGroup, children: y.options.map((N) => /* @__PURE__ */ e(
4026
+ "button",
4027
+ {
4028
+ className: `${P.chip} ${b(y.id, N.value) ? P.selected : ""}`,
4029
+ onClick: () => g(y.id, N.value, y.multiple),
4030
+ children: N.label
4031
+ },
4032
+ N.value
4033
+ )) }) })
4034
+ ]
4035
+ },
4036
+ y.id
4037
+ )) }),
4038
+ (l || i) && /* @__PURE__ */ t("div", { className: P.footer, children: [
4039
+ i,
4040
+ l && /* @__PURE__ */ e(
4041
+ "button",
4042
+ {
4043
+ className: P.applyBtn,
4044
+ onClick: () => o?.(u),
4045
+ children: "Uygula"
4046
+ }
4047
+ )
4048
+ ] })
4049
+ ] });
4050
+ }
4051
+ Tf.displayName = "FilterPanel";
4052
+ const zf = "_sortSelector_599zq_11", Lf = "_trigger_599zq_21", jf = "_open_599zq_67", Sf = "_icon_599zq_75", Df = "_arrow_599zq_83", qf = "_dropdown_599zq_103", Rf = "_option_599zq_131", Mf = "_selected_599zq_177", Af = "_checkmark_599zq_187", Ef = "_compact_599zq_199", Wf = "_iconOnly_599zq_211", Pf = "_currentLabel_599zq_225", re = {
4053
+ sortSelector: zf,
4054
+ trigger: Lf,
4055
+ open: jf,
4056
+ icon: Sf,
4057
+ arrow: Df,
4058
+ dropdown: qf,
4059
+ option: Rf,
4060
+ selected: Mf,
4061
+ checkmark: Af,
4062
+ compact: Ef,
4063
+ iconOnly: Wf,
4064
+ currentLabel: Pf
4065
+ };
4066
+ function Ff({
4067
+ options: n,
4068
+ value: a,
4069
+ placeholder: s = "Sırala",
4070
+ icon: l = "↕️",
4071
+ compact: c = !1,
4072
+ iconOnly: r = !1,
4073
+ onChange: i,
4074
+ className: _ = ""
4075
+ }) {
4076
+ const [o, d] = k(!1), p = fe(null);
4077
+ B(() => {
4078
+ const f = (g) => {
4079
+ p.current && !p.current.contains(g.target) && d(!1);
4080
+ };
4081
+ return document.addEventListener("mousedown", f), () => document.removeEventListener("mousedown", f);
4082
+ }, []);
4083
+ const u = n.find((f) => f.value === a), m = (f) => {
4084
+ i?.(f), d(!1);
4085
+ }, h = [
4086
+ re.sortSelector,
4087
+ c && re.compact,
4088
+ r && re.iconOnly,
4089
+ _
4090
+ ].filter(Boolean).join(" ");
4091
+ return /* @__PURE__ */ t("div", { ref: p, className: h, children: [
4092
+ /* @__PURE__ */ t(
4093
+ "button",
4094
+ {
4095
+ className: `${re.trigger} ${o ? re.open : ""}`,
4096
+ onClick: () => d(!o),
4097
+ children: [
4098
+ /* @__PURE__ */ e("span", { className: re.icon, children: l }),
4099
+ /* @__PURE__ */ e("span", { className: re.currentLabel, children: u?.label || s }),
4100
+ /* @__PURE__ */ e("span", { className: re.arrow, children: "▼" })
4101
+ ]
4102
+ }
4103
+ ),
4104
+ o && /* @__PURE__ */ e("div", { className: re.dropdown, children: n.map((f) => /* @__PURE__ */ t(
4105
+ "button",
4106
+ {
4107
+ className: `${re.option} ${a === f.value ? re.selected : ""}`,
4108
+ onClick: () => m(f.value),
4109
+ children: [
4110
+ /* @__PURE__ */ t("span", { children: [
4111
+ f.icon && /* @__PURE__ */ t("span", { children: [
4112
+ f.icon,
4113
+ " "
4114
+ ] }),
4115
+ f.label
4116
+ ] }),
4117
+ a === f.value && /* @__PURE__ */ e("span", { className: re.checkmark, children: "✓" })
4118
+ ]
4119
+ },
4120
+ f.value
4121
+ )) })
4122
+ ] });
4123
+ }
4124
+ Ff.displayName = "SortSelector";
4125
+ const Of = "_overlay_1i5l5_11", Gf = "_fadeIn_1i5l5_1", Uf = "_spinner_1i5l5_65", Vf = "_spin_1i5l5_65", Hf = "_message_1i5l5_105", Yf = "_pulse_1i5l5_1", Kf = "_progress_1i5l5_149", Qf = "_progressBar_1i5l5_165", Jf = "_progressText_1i5l5_179", Xf = "_logo_1i5l5_193", Zf = "_bounce_1i5l5_1", ev = "_comic_1i5l5_231", nv = "_dots_1i5l5_257", tv = "_dot_1i5l5_257", av = "_dotBounce_1i5l5_1", sv = "_mangaLoader_1i5l5_337", ov = "_mangaPages_1i5l5_351", cv = "_mangaPage_1i5l5_351", lv = "_pageFlip_1i5l5_1", F = {
4126
+ overlay: Of,
4127
+ fadeIn: Gf,
4128
+ spinner: Uf,
4129
+ spin: Vf,
4130
+ message: Hf,
4131
+ pulse: Yf,
4132
+ progress: Kf,
4133
+ progressBar: Qf,
4134
+ progressText: Jf,
4135
+ logo: Xf,
4136
+ bounce: Zf,
4137
+ comic: ev,
4138
+ dots: nv,
4139
+ dot: tv,
4140
+ dotBounce: av,
4141
+ mangaLoader: sv,
4142
+ mangaPages: ov,
4143
+ mangaPage: cv,
4144
+ pageFlip: lv
4145
+ };
4146
+ function rv({
4147
+ isVisible: n,
4148
+ variant: a = "default",
4149
+ message: s = "Yükleniyor...",
4150
+ logo: l,
4151
+ showProgress: c = !1,
4152
+ progress: r = 0
4153
+ }) {
4154
+ if (B(() => (n && (document.body.style.overflow = "hidden"), () => {
4155
+ document.body.style.overflow = "";
4156
+ }), [n]), !n) return null;
4157
+ const i = [
4158
+ F.overlay,
4159
+ a !== "default" && F[a]
4160
+ ].filter(Boolean).join(" "), _ = /* @__PURE__ */ t("div", { className: i, children: [
4161
+ l && /* @__PURE__ */ e("span", { className: F.logo, children: l }),
4162
+ a === "dots" ? /* @__PURE__ */ t("div", { className: F.dots, children: [
4163
+ /* @__PURE__ */ e("span", { className: F.dot }),
4164
+ /* @__PURE__ */ e("span", { className: F.dot }),
4165
+ /* @__PURE__ */ e("span", { className: F.dot })
4166
+ ] }) : a === "manga" ? /* @__PURE__ */ e("div", { className: F.mangaLoader, children: /* @__PURE__ */ t("div", { className: F.mangaPages, children: [
4167
+ /* @__PURE__ */ e("span", { className: F.mangaPage }),
4168
+ /* @__PURE__ */ e("span", { className: F.mangaPage }),
4169
+ /* @__PURE__ */ e("span", { className: F.mangaPage })
4170
+ ] }) }) : /* @__PURE__ */ e("div", { className: F.spinner }),
4171
+ s && /* @__PURE__ */ e("p", { className: F.message, children: s }),
4172
+ c && /* @__PURE__ */ t(oe, { children: [
4173
+ /* @__PURE__ */ e("div", { className: F.progress, children: /* @__PURE__ */ e(
4174
+ "div",
4175
+ {
4176
+ className: F.progressBar,
4177
+ style: { width: `${r}%` }
4178
+ }
4179
+ ) }),
4180
+ /* @__PURE__ */ t("span", { className: F.progressText, children: [
4181
+ Math.round(r),
4182
+ "%"
4183
+ ] })
4184
+ ] })
4185
+ ] });
4186
+ return Le(_, document.body);
4187
+ }
4188
+ rv.displayName = "LoadingOverlay";
4189
+ const iv = "_fab_1bemw_11", _v = "_bottomRight_1bemw_79", dv = "_bottomLeft_1bemw_89", mv = "_bottomCenter_1bemw_99", pv = "_topRight_1bemw_111", uv = "_topLeft_1bemw_121", hv = "_sm_1bemw_133", gv = "_lg_1bemw_145", fv = "_extended_1bemw_159", vv = "_label_1bemw_173", bv = "_primary_1bemw_187", $v = "_secondary_1bemw_195", Nv = "_success_1bemw_205", yv = "_danger_1bemw_213", kv = "_warning_1bemw_221", wv = "_info_1bemw_231", Cv = "_pulse_1bemw_241", xv = "_fabPulse_1bemw_1", Bv = "_menu_1bemw_285", Iv = "_open_1bemw_309", Tv = "_menuItem_1bemw_321", zv = "_menuIcon_1bemw_371", Lv = "_rotateOnOpen_1bemw_381", jv = "_icon_1bemw_381", ae = {
4190
+ fab: iv,
4191
+ bottomRight: _v,
4192
+ bottomLeft: dv,
4193
+ bottomCenter: mv,
4194
+ topRight: pv,
4195
+ topLeft: uv,
4196
+ sm: hv,
4197
+ lg: gv,
4198
+ extended: fv,
4199
+ label: vv,
4200
+ primary: bv,
4201
+ secondary: $v,
4202
+ success: Nv,
4203
+ danger: yv,
4204
+ warning: kv,
4205
+ info: wv,
4206
+ pulse: Cv,
4207
+ fabPulse: xv,
4208
+ menu: Bv,
4209
+ open: Iv,
4210
+ menuItem: Tv,
4211
+ menuIcon: zv,
4212
+ rotateOnOpen: Lv,
4213
+ icon: jv
4214
+ };
4215
+ function Sv({
4216
+ icon: n,
4217
+ label: a,
4218
+ position: s = "bottomRight",
4219
+ size: l = "md",
4220
+ color: c = "primary",
4221
+ extended: r = !1,
4222
+ pulse: i = !1,
4223
+ menuItems: _,
4224
+ onClick: o,
4225
+ className: d = ""
4226
+ }) {
4227
+ const [p, u] = k(!1), m = () => {
4228
+ _ && _.length > 0 ? u(!p) : o?.();
4229
+ }, h = (g) => {
4230
+ g.onClick?.(), u(!1);
4231
+ }, f = [
4232
+ ae.fab,
4233
+ ae[s],
4234
+ l !== "md" && ae[l],
4235
+ ae[c],
4236
+ r && ae.extended,
4237
+ i && ae.pulse,
4238
+ _ && ae.rotateOnOpen,
4239
+ p && ae.open,
4240
+ d
4241
+ ].filter(Boolean).join(" ");
4242
+ return /* @__PURE__ */ t("button", { className: f, onClick: m, children: [
4243
+ _ && _.length > 0 && /* @__PURE__ */ e("div", { className: ae.menu, children: _.map((g, $) => /* @__PURE__ */ t(
4244
+ "button",
4245
+ {
4246
+ className: ae.menuItem,
4247
+ onClick: (v) => {
4248
+ v.stopPropagation(), h(g);
4249
+ },
4250
+ children: [
4251
+ /* @__PURE__ */ e("span", { className: ae.menuIcon, children: g.icon }),
4252
+ g.label
4253
+ ]
4254
+ },
4255
+ $
4256
+ )) }),
4257
+ /* @__PURE__ */ e("span", { className: ae.icon, children: n }),
4258
+ a && r && /* @__PURE__ */ e("span", { className: ae.label, children: a })
4259
+ ] });
4260
+ }
4261
+ Sv.displayName = "FloatingActionButton";
4262
+ const Dv = "_overlay_6ehxf_11", qv = "_fadeIn_6ehxf_1", Rv = "_sheet_6ehxf_47", Mv = "_slideUp_6ehxf_1", Av = "_handle_6ehxf_109", Ev = "_handleBar_6ehxf_123", Wv = "_header_6ehxf_139", Pv = "_title_6ehxf_155", Fv = "_closeBtn_6ehxf_169", Ov = "_body_6ehxf_209", Gv = "_footer_6ehxf_223", Uv = "_sm_6ehxf_235", Vv = "_md_6ehxf_243", Hv = "_lg_6ehxf_251", Yv = "_full_6ehxf_259", Kv = "_menuList_6ehxf_271", Qv = "_menuItem_6ehxf_283", Jv = "_menuIcon_6ehxf_337", Xv = "_menuDivider_6ehxf_345", Zv = "_destructive_6ehxf_359", ye = {
4263
+ overlay: Dv,
4264
+ fadeIn: qv,
4265
+ sheet: Rv,
4266
+ slideUp: Mv,
4267
+ handle: Av,
4268
+ handleBar: Ev,
4269
+ header: Wv,
4270
+ title: Pv,
4271
+ closeBtn: Fv,
4272
+ body: Ov,
4273
+ footer: Gv,
4274
+ sm: Uv,
4275
+ md: Vv,
4276
+ lg: Hv,
4277
+ full: Yv,
4278
+ menuList: Kv,
4279
+ menuItem: Qv,
4280
+ menuIcon: Jv,
4281
+ menuDivider: Xv,
4282
+ destructive: Zv
4283
+ };
4284
+ function eb({
4285
+ isOpen: n,
4286
+ size: a = "md",
4287
+ title: s,
4288
+ showHandle: l = !0,
4289
+ showCloseButton: c = !0,
4290
+ closeOnOverlayClick: r = !0,
4291
+ footer: i,
4292
+ children: _,
4293
+ onClose: o,
4294
+ className: d = ""
4295
+ }) {
4296
+ if (B(() => {
4297
+ const m = (h) => {
4298
+ h.key === "Escape" && n && o();
4299
+ };
4300
+ return document.addEventListener("keydown", m), () => document.removeEventListener("keydown", m);
4301
+ }, [n, o]), B(() => (n && (document.body.style.overflow = "hidden"), () => {
4302
+ document.body.style.overflow = "";
4303
+ }), [n]), !n) return null;
4304
+ const p = [
4305
+ ye.sheet,
4306
+ ye[a],
4307
+ d
4308
+ ].filter(Boolean).join(" "), u = /* @__PURE__ */ t(oe, { children: [
4309
+ /* @__PURE__ */ e(
4310
+ "div",
4311
+ {
4312
+ className: ye.overlay,
4313
+ onClick: r ? o : void 0
4314
+ }
4315
+ ),
4316
+ /* @__PURE__ */ t("div", { className: p, children: [
4317
+ l && /* @__PURE__ */ e("div", { className: ye.handle, children: /* @__PURE__ */ e("div", { className: ye.handleBar }) }),
4318
+ (s || c) && /* @__PURE__ */ t("div", { className: ye.header, children: [
4319
+ /* @__PURE__ */ e("span", { className: ye.title, children: s }),
4320
+ c && /* @__PURE__ */ e("button", { className: ye.closeBtn, onClick: o, children: "✕" })
4321
+ ] }),
4322
+ /* @__PURE__ */ e("div", { className: ye.body, children: _ }),
4323
+ i && /* @__PURE__ */ e("div", { className: ye.footer, children: i })
4324
+ ] })
4325
+ ] });
4326
+ return Le(u, document.body);
4327
+ }
4328
+ eb.displayName = "BottomSheet";
4329
+ const nb = "_marquee_xooub_11", tb = "_content_xooub_33", ab = "_scroll_xooub_1", sb = "_item_xooub_79", ob = "_itemIcon_xooub_101", cb = "_separator_xooub_109", lb = "_primary_xooub_121", rb = "_warning_xooub_139", ib = "_info_xooub_157", _b = "_fade_xooub_177", db = "_comic_xooub_237", mb = "_clickable_xooub_257", Ee = {
4330
+ marquee: nb,
4331
+ content: tb,
4332
+ scroll: ab,
4333
+ item: sb,
4334
+ itemIcon: ob,
4335
+ separator: cb,
4336
+ primary: lb,
4337
+ warning: rb,
4338
+ info: ib,
4339
+ fade: _b,
4340
+ comic: db,
4341
+ clickable: mb
4342
+ };
4343
+ function pb({
4344
+ items: n,
4345
+ variant: a = "default",
4346
+ duration: s = 20,
4347
+ pauseOnHover: l = !0,
4348
+ fadeEdges: c = !0,
4349
+ separator: r = "•",
4350
+ onItemClick: i,
4351
+ className: _ = ""
4352
+ }) {
4353
+ const o = [...n, ...n], d = [
4354
+ Ee.marquee,
4355
+ a !== "default" && Ee[a],
4356
+ c && Ee.fade,
4357
+ i && Ee.clickable,
4358
+ _
4359
+ ].filter(Boolean).join(" "), p = {
4360
+ "--duration": `${s}s`,
4361
+ "--pause-on-hover": l ? "paused" : "running"
4362
+ }, u = (m) => {
4363
+ m.href && window.open(m.href, "_blank"), i?.(m);
4364
+ };
4365
+ return /* @__PURE__ */ e("div", { className: d, children: /* @__PURE__ */ e("div", { className: Ee.content, style: p, children: o.map((m, h) => /* @__PURE__ */ t("span", { children: [
4366
+ /* @__PURE__ */ t(
4367
+ "span",
4368
+ {
4369
+ className: Ee.item,
4370
+ onClick: i ? () => u(m) : void 0,
4371
+ style: { cursor: i || m.href ? "pointer" : "default" },
4372
+ children: [
4373
+ m.icon && /* @__PURE__ */ e("span", { className: Ee.itemIcon, children: m.icon }),
4374
+ m.text
4375
+ ]
4376
+ }
4377
+ ),
4378
+ /* @__PURE__ */ t("span", { className: Ee.separator, children: [
4379
+ " ",
4380
+ r,
4381
+ " "
4382
+ ] })
4383
+ ] }, h)) }) });
4384
+ }
4385
+ pb.displayName = "Marquee";
4386
+ const ub = "_cookieConsent_t8leq_11", hb = "_slideUp_t8leq_1", gb = "_content_t8leq_73", fb = "_icon_t8leq_87", vb = "_text_t8leq_95", bb = "_link_t8leq_109", $b = "_actions_t8leq_131", Nb = "_btn_t8leq_143", yb = "_rejectBtn_t8leq_183", kb = "_acceptBtn_t8leq_193", wb = "_settingsBtn_t8leq_203", Cb = "_compact_t8leq_231", xb = "_floating_t8leq_257", se = {
4387
+ cookieConsent: ub,
4388
+ slideUp: hb,
4389
+ content: gb,
4390
+ icon: fb,
4391
+ text: vb,
4392
+ link: bb,
4393
+ actions: $b,
4394
+ btn: Nb,
4395
+ rejectBtn: yb,
4396
+ acceptBtn: kb,
4397
+ settingsBtn: wb,
4398
+ compact: Cb,
4399
+ floating: xb
4400
+ };
4401
+ function Bb({
4402
+ variant: n = "default",
4403
+ message: a = "Bu site çerezleri kullanmaktadır. Sitemizi kullanarak çerez politikamızı kabul etmiş olursunuz.",
4404
+ privacyLink: s,
4405
+ privacyText: l = "Gizlilik Politikası",
4406
+ acceptText: c = "Kabul Et",
4407
+ rejectText: r = "Reddet",
4408
+ showSettings: i = !1,
4409
+ settingsText: _ = "Ayarlar",
4410
+ storageKey: o = "cookie-consent",
4411
+ onAccept: d,
4412
+ onReject: p,
4413
+ onSettings: u,
4414
+ className: m = ""
4415
+ }) {
4416
+ const [h, f] = k(!1);
4417
+ B(() => {
4418
+ localStorage.getItem(o) || f(!0);
4419
+ }, [o]);
4420
+ const g = () => {
4421
+ localStorage.setItem(o, "accepted"), f(!1), d?.();
4422
+ }, $ = () => {
4423
+ localStorage.setItem(o, "rejected"), f(!1), p?.();
4424
+ };
4425
+ if (!h) return null;
4426
+ const v = [
4427
+ se.cookieConsent,
4428
+ n !== "default" && se[n],
4429
+ m
4430
+ ].filter(Boolean).join(" "), b = /* @__PURE__ */ t("div", { className: v, children: [
4431
+ /* @__PURE__ */ t("div", { className: se.content, children: [
4432
+ /* @__PURE__ */ e("span", { className: se.icon, children: "🍪" }),
4433
+ /* @__PURE__ */ t("p", { className: se.text, children: [
4434
+ a,
4435
+ s && /* @__PURE__ */ t(oe, { children: [
4436
+ " ",
4437
+ /* @__PURE__ */ e("a", { href: s, className: se.link, target: "_blank", rel: "noopener noreferrer", children: l })
4438
+ ] })
4439
+ ] })
4440
+ ] }),
4441
+ /* @__PURE__ */ t("div", { className: se.actions, children: [
4442
+ i && /* @__PURE__ */ e("button", { className: `${se.btn} ${se.settingsBtn}`, onClick: u, children: _ }),
4443
+ /* @__PURE__ */ e("button", { className: `${se.btn} ${se.rejectBtn}`, onClick: $, children: r }),
4444
+ /* @__PURE__ */ e("button", { className: `${se.btn} ${se.acceptBtn}`, onClick: g, children: c })
4445
+ ] })
4446
+ ] });
4447
+ return Le(b, document.body);
4448
+ }
4449
+ Bb.displayName = "CookieConsent";
4450
+ const Ib = "_countdown_15r7u_11", Tb = "_unit_15r7u_25", zb = "_value_15r7u_51", Lb = "_label_15r7u_67", jb = "_separator_15r7u_85", Sb = "_blink_15r7u_1", Db = "_compact_15r7u_127", qb = "_inline_15r7u_163", Rb = "_card_15r7u_211", Mb = "_units_15r7u_233", Ab = "_cardTitle_15r7u_243", Eb = "_urgent_15r7u_261", Wb = "_urgentPulse_15r7u_1", Pb = "_expired_15r7u_297", Fb = "_expiredText_15r7u_305", he = {
4451
+ countdown: Ib,
4452
+ unit: Tb,
4453
+ value: zb,
4454
+ label: Lb,
4455
+ separator: jb,
4456
+ blink: Sb,
4457
+ compact: Db,
4458
+ inline: qb,
4459
+ card: Rb,
4460
+ units: Mb,
4461
+ cardTitle: Ab,
4462
+ urgent: Eb,
4463
+ urgentPulse: Wb,
4464
+ expired: Pb,
4465
+ expiredText: Fb
4466
+ };
4467
+ function mn(n) {
4468
+ const a = n.getTime() - Date.now();
4469
+ return a <= 0 ? { days: 0, hours: 0, minutes: 0, seconds: 0, total: 0 } : {
4470
+ days: Math.floor(a / (1e3 * 60 * 60 * 24)),
4471
+ hours: Math.floor(a / (1e3 * 60 * 60) % 24),
4472
+ minutes: Math.floor(a / (1e3 * 60) % 60),
4473
+ seconds: Math.floor(a / 1e3 % 60),
4474
+ total: a
4475
+ };
4476
+ }
4477
+ function Ob({
4478
+ targetDate: n,
4479
+ variant: a = "default",
4480
+ title: s,
4481
+ showDays: l = !0,
4482
+ showHours: c = !0,
4483
+ showMinutes: r = !0,
4484
+ showSeconds: i = !0,
4485
+ showSeparator: _ = !0,
4486
+ expiredText: o = "Süre Doldu!",
4487
+ onExpire: d,
4488
+ className: p = ""
4489
+ }) {
4490
+ const u = typeof n == "string" ? new Date(n) : n, [m, h] = k(mn(u)), [f, g] = k(!1);
4491
+ B(() => {
4492
+ const N = setInterval(() => {
4493
+ const z = mn(u);
4494
+ h(z), z.total <= 0 && !f && (g(!0), d?.(), clearInterval(N));
4495
+ }, 1e3);
4496
+ return () => clearInterval(N);
4497
+ }, [u, f, d]);
4498
+ const $ = m.total > 0 && m.total < 36e5, v = [
4499
+ he.countdown,
4500
+ a !== "default" && he[a],
4501
+ $ && he.urgent,
4502
+ f && he.expired,
4503
+ p
4504
+ ].filter(Boolean).join(" "), b = (N) => N.toString().padStart(2, "0");
4505
+ if (f)
4506
+ return /* @__PURE__ */ e("div", { className: v, children: /* @__PURE__ */ e("span", { className: he.expiredText, children: o }) });
4507
+ const C = [];
4508
+ l && m.days > 0 && C.push({ value: m.days, label: "Gün" }), c && C.push({ value: m.hours, label: "Saat" }), r && C.push({ value: m.minutes, label: "Dakika" }), i && C.push({ value: m.seconds, label: "Saniye" });
4509
+ const y = /* @__PURE__ */ e(oe, { children: C.map((N, z) => /* @__PURE__ */ t("span", { children: [
4510
+ /* @__PURE__ */ t("span", { className: he.unit, children: [
4511
+ /* @__PURE__ */ e("span", { className: he.value, children: b(N.value) }),
4512
+ /* @__PURE__ */ e("span", { className: he.label, children: N.label })
4513
+ ] }),
4514
+ _ && z < C.length - 1 && /* @__PURE__ */ e("span", { className: he.separator, children: ":" })
4515
+ ] }, N.label)) });
4516
+ return a === "card" ? /* @__PURE__ */ t("div", { className: v, children: [
4517
+ s && /* @__PURE__ */ e("span", { className: he.cardTitle, children: s }),
4518
+ /* @__PURE__ */ e("div", { className: he.units, children: y })
4519
+ ] }) : /* @__PURE__ */ e("div", { className: v, children: y });
4520
+ }
4521
+ Ob.displayName = "CountdownTimer";
4522
+ const Gb = "_avatarFrame_1scl5_1", Ub = "_clickable_1scl5_27", Vb = "_avatarContent_1scl5_37", Hb = "_avatarImage_1scl5_63", Yb = "_initials_1scl5_75", Kb = "_frameRing_1scl5_91", Qb = "_basic_1scl5_107", Jb = "_bronze_1scl5_115", Xb = "_silver_1scl5_133", Zb = "_gold_1scl5_153", e$ = "_diamond_1scl5_173", n$ = "_legendary_1scl5_193", t$ = "_rainbowBorder_1scl5_1", a$ = "_anim_pulse_1scl5_219", s$ = "_pulse_1scl5_1", o$ = "_anim_rotate_1scl5_227", c$ = "_rotate_1scl5_1", l$ = "_anim_rainbow_1scl5_235", r$ = "_particle_1scl5_317", i$ = "_particleFloat_1scl5_1", _$ = "_levelBadge_1scl5_449", d$ = "_premiumBadge_1scl5_487", m$ = "_onlineStatus_1scl5_507", p$ = "_online_1scl5_507", u$ = "_offline_1scl5_539", j = {
4523
+ avatarFrame: Gb,
4524
+ clickable: Ub,
4525
+ avatarContent: Vb,
4526
+ avatarImage: Hb,
4527
+ initials: Yb,
4528
+ frameRing: Kb,
4529
+ basic: Qb,
4530
+ bronze: Jb,
4531
+ silver: Xb,
4532
+ gold: Zb,
4533
+ diamond: e$,
4534
+ legendary: n$,
4535
+ rainbowBorder: t$,
4536
+ anim_pulse: a$,
4537
+ pulse: s$,
4538
+ anim_rotate: o$,
4539
+ rotate: c$,
4540
+ anim_rainbow: l$,
4541
+ particle: r$,
4542
+ particleFloat: i$,
4543
+ levelBadge: _$,
4544
+ premiumBadge: d$,
4545
+ onlineStatus: m$,
4546
+ online: p$,
4547
+ offline: u$
4548
+ }, h$ = {
4549
+ none: { primary: "transparent", secondary: "transparent" },
4550
+ basic: { primary: "#52525b", secondary: "#3f3f46" },
4551
+ bronze: { primary: "#cd7f32", secondary: "#8b4513" },
4552
+ silver: { primary: "#c0c0c0", secondary: "#808080" },
4553
+ gold: { primary: "#ffd700", secondary: "#daa520" },
4554
+ diamond: { primary: "#b9f2ff", secondary: "#00bfff" },
4555
+ legendary: { primary: "#ff6b6b", secondary: "#9b59b6" }
4556
+ };
4557
+ function g$({
4558
+ children: n,
4559
+ src: a,
4560
+ name: s,
4561
+ frame: l = "none",
4562
+ animation: c = "none",
4563
+ size: r = 80,
4564
+ level: i,
4565
+ isPremium: _ = !1,
4566
+ isOnline: o,
4567
+ className: d = "",
4568
+ onClick: p
4569
+ }) {
4570
+ const u = s ? s.split(" ").map((f) => f[0]).join("").toUpperCase().slice(0, 2) : "?", m = [
4571
+ j.avatarFrame,
4572
+ l !== "none" && j[l],
4573
+ c !== "none" && j[`anim_${c}`],
4574
+ p && j.clickable,
4575
+ d
4576
+ ].filter(Boolean).join(" "), h = h$[l];
4577
+ return /* @__PURE__ */ t(
4578
+ "div",
4579
+ {
4580
+ className: m,
4581
+ style: {
4582
+ "--frame-size": `${r}px`,
4583
+ "--frame-primary": h.primary,
4584
+ "--frame-secondary": h.secondary
4585
+ },
4586
+ onClick: p,
4587
+ children: [
4588
+ l !== "none" && /* @__PURE__ */ e("div", { className: j.frameRing, children: c === "particles" && /* @__PURE__ */ t(oe, { children: [
4589
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 0 } }),
4590
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 1 } }),
4591
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 2 } }),
4592
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 3 } }),
4593
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 4 } }),
4594
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 5 } }),
4595
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 6 } }),
4596
+ /* @__PURE__ */ e("span", { className: j.particle, style: { "--i": 7 } })
4597
+ ] }) }),
4598
+ /* @__PURE__ */ e("div", { className: j.avatarContent, children: a ? /* @__PURE__ */ e("img", { src: a, alt: s || "Avatar", className: j.avatarImage }) : n || /* @__PURE__ */ e("span", { className: j.initials, children: u }) }),
4599
+ i !== void 0 && /* @__PURE__ */ e("div", { className: j.levelBadge, children: /* @__PURE__ */ e("span", { children: i }) }),
4600
+ _ && /* @__PURE__ */ e("div", { className: j.premiumBadge, children: "💎" }),
4601
+ o !== void 0 && /* @__PURE__ */ e("div", { className: `${j.onlineStatus} ${o ? j.online : j.offline}` })
4602
+ ]
4603
+ }
4604
+ );
4605
+ }
4606
+ g$.displayName = "AvatarFrame";
4607
+ const f$ = "_animatedBackground_ur98v_1", v$ = "_paused_ur98v_27", b$ = "_backgroundLayer_ur98v_35", $$ = "_content_ur98v_47", N$ = "_particles_ur98v_61", y$ = "_particle_ur98v_61", k$ = "_particleFloat_ur98v_1", w$ = "_stars_ur98v_127", C$ = "_starTwinkle_ur98v_1", x$ = "_fire_ur98v_175", B$ = "_fireRise_ur98v_1", I$ = "_ice_ur98v_219", T$ = "_iceFall_ur98v_1", z$ = "_galaxy_ur98v_279", L$ = "_galaxySpin_ur98v_1", j$ = "_matrix_ur98v_317", S$ = "_matrixFall_ur98v_1", D$ = "_waves_ur98v_375", q$ = "_wave_ur98v_375", R$ = "_waveMove_ur98v_1", M$ = "_aurora_ur98v_437", A$ = "_auroraLayer_ur98v_445", E$ = "_auroraWave_ur98v_1", We = {
4608
+ animatedBackground: f$,
4609
+ paused: v$,
4610
+ backgroundLayer: b$,
4611
+ content: $$,
4612
+ particles: N$,
4613
+ particle: y$,
4614
+ particleFloat: k$,
4615
+ stars: w$,
4616
+ starTwinkle: C$,
4617
+ fire: x$,
4618
+ fireRise: B$,
4619
+ ice: I$,
4620
+ iceFall: T$,
4621
+ galaxy: z$,
4622
+ galaxySpin: L$,
4623
+ matrix: j$,
4624
+ matrixFall: S$,
4625
+ waves: D$,
4626
+ wave: q$,
4627
+ waveMove: R$,
4628
+ aurora: M$,
4629
+ auroraLayer: A$,
4630
+ auroraWave: E$
4631
+ }, W$ = {
4632
+ particles: { colors: ["#dc2626", "#f87171", "#fca5a5"], particleCount: 50 },
4633
+ waves: { colors: ["#1e40af", "#3b82f6", "#60a5fa"] },
4634
+ stars: { colors: ["#fbbf24", "#fcd34d", "#fde68a"], particleCount: 100 },
4635
+ fire: { colors: ["#dc2626", "#f97316", "#fbbf24"], particleCount: 40 },
4636
+ ice: { colors: ["#06b6d4", "#22d3ee", "#a5f3fc"], particleCount: 30 },
4637
+ galaxy: { colors: ["#7c3aed", "#a855f7", "#c084fc", "#e879f9"], particleCount: 80 },
4638
+ matrix: { colors: ["#22c55e", "#4ade80", "#86efac"], particleCount: 60 },
4639
+ aurora: { colors: ["#22c55e", "#06b6d4", "#8b5cf6", "#ec4899"] }
4640
+ };
4641
+ function P$({
4642
+ type: n,
4643
+ children: a,
4644
+ intensity: s = 0.5,
4645
+ speed: l = 1,
4646
+ animated: c = !0,
4647
+ height: r = "200px",
4648
+ borderRadius: i = "12px",
4649
+ className: _ = ""
4650
+ }) {
4651
+ const o = W$[n], d = fe(null), p = [
4652
+ We.animatedBackground,
4653
+ We[n],
4654
+ !c && We.paused,
4655
+ _
4656
+ ].filter(Boolean).join(" "), u = () => o.particleCount ? Array.from({ length: Math.floor(o.particleCount * s) }).map((f, g) => /* @__PURE__ */ e(
4657
+ "span",
4658
+ {
4659
+ className: We.particle,
4660
+ style: {
4661
+ "--x": `${Math.random() * 100}%`,
4662
+ "--y": `${Math.random() * 100}%`,
4663
+ "--delay": `${Math.random() * 5}s`,
4664
+ "--duration": `${(3 + Math.random() * 4) / l}s`,
4665
+ "--size": `${2 + Math.random() * 4}px`,
4666
+ "--color": o.colors[Math.floor(Math.random() * o.colors.length)],
4667
+ "--opacity": 0.3 + Math.random() * 0.7
4668
+ }
4669
+ },
4670
+ g
4671
+ )) : null, m = () => o.colors.map((f, g) => /* @__PURE__ */ e(
4672
+ "div",
4673
+ {
4674
+ className: We.wave,
4675
+ style: {
4676
+ "--color": f,
4677
+ "--delay": `${g * 0.5}s`,
4678
+ "--duration": `${(6 - g) / l}s`,
4679
+ "--opacity": 0.3 + g * 0.15
4680
+ }
4681
+ },
4682
+ g
4683
+ )), h = () => o.colors.map((f, g) => /* @__PURE__ */ e(
4684
+ "div",
4685
+ {
4686
+ className: We.auroraLayer,
4687
+ style: {
4688
+ "--color": f,
4689
+ "--delay": `${g * 1.5}s`,
4690
+ "--duration": `${(8 + g * 2) / l}s`
4691
+ }
4692
+ },
4693
+ g
4694
+ ));
4695
+ return /* @__PURE__ */ t(
4696
+ "div",
4697
+ {
4698
+ ref: d,
4699
+ className: p,
4700
+ style: {
4701
+ "--height": typeof r == "number" ? `${r}px` : r,
4702
+ "--radius": typeof i == "number" ? `${i}px` : i,
4703
+ "--intensity": s
4704
+ },
4705
+ children: [
4706
+ /* @__PURE__ */ t("div", { className: We.backgroundLayer, children: [
4707
+ (n === "particles" || n === "stars" || n === "fire" || n === "ice" || n === "galaxy" || n === "matrix") && u(),
4708
+ n === "waves" && m(),
4709
+ n === "aurora" && h()
4710
+ ] }),
4711
+ a && /* @__PURE__ */ e("div", { className: We.content, children: a })
4712
+ ]
4713
+ }
4714
+ );
4715
+ }
4716
+ P$.displayName = "AnimatedBackground";
4717
+ const F$ = "_badgeContainer_1ak7x_1", O$ = "_grid_1ak7x_13", G$ = "_sm_1ak7x_27", U$ = "_badge_1ak7x_1", V$ = "_md_1ak7x_37", H$ = "_lg_1ak7x_47", Y$ = "_clickable_1ak7x_81", K$ = "_iconWrapper_1ak7x_89", Q$ = "_iconEmoji_1ak7x_127", J$ = "_iconImage_1ak7x_135", X$ = "_common_1ak7x_149", Z$ = "_uncommon_1ak7x_157", eN = "_rare_1ak7x_167", nN = "_rareGlow_1ak7x_1", tN = "_epic_1ak7x_179", aN = "_epicGlow_1ak7x_1", sN = "_legendary_1ak7x_191", oN = "_legendaryBorder_1ak7x_1", cN = "_legendaryGlow_1ak7x_1", lN = "_glowEffect_1ak7x_305", rN = "_locked_1ak7x_347", iN = "_lockOverlay_1ak7x_357", _N = "_badgeInfo_1ak7x_379", dN = "_badgeName_1ak7x_393", mN = "_rarityLabel_1ak7x_405", pN = "_moreCount_1ak7x_461", M = {
4718
+ badgeContainer: F$,
4719
+ grid: O$,
4720
+ sm: G$,
4721
+ badge: U$,
4722
+ md: V$,
4723
+ lg: H$,
4724
+ clickable: Y$,
4725
+ iconWrapper: K$,
4726
+ iconEmoji: Q$,
4727
+ iconImage: J$,
4728
+ common: X$,
4729
+ uncommon: Z$,
4730
+ rare: eN,
4731
+ rareGlow: nN,
4732
+ epic: tN,
4733
+ epicGlow: aN,
4734
+ legendary: sN,
4735
+ legendaryBorder: oN,
4736
+ legendaryGlow: cN,
4737
+ glowEffect: lN,
4738
+ locked: rN,
4739
+ lockOverlay: iN,
4740
+ badgeInfo: _N,
4741
+ badgeName: dN,
4742
+ rarityLabel: mN,
4743
+ moreCount: pN
4744
+ }, uN = {
4745
+ common: "Yaygın",
4746
+ uncommon: "Nadir Değil",
4747
+ rare: "Nadir",
4748
+ epic: "Epik",
4749
+ legendary: "Efsanevi"
4750
+ };
4751
+ function hN({
4752
+ badges: n,
4753
+ size: a = "md",
4754
+ showTooltip: s = !0,
4755
+ showRarity: l = !1,
4756
+ grid: c = !1,
4757
+ maxDisplay: r,
4758
+ onBadgeClick: i,
4759
+ className: _ = ""
4760
+ }) {
4761
+ const o = Array.isArray(n) ? n : [n], d = r ? o.slice(0, r) : o, p = r ? Math.max(0, o.length - r) : 0, u = [
4762
+ M.badgeContainer,
4763
+ c && M.grid,
4764
+ M[a],
4765
+ _
4766
+ ].filter(Boolean).join(" "), m = (h, f) => {
4767
+ const g = h.rarity || "common", $ = h.unlocked !== !1, v = [
4768
+ M.badge,
4769
+ M[g],
4770
+ !$ && M.locked,
4771
+ i && M.clickable
4772
+ ].filter(Boolean).join(" ");
4773
+ return /* @__PURE__ */ t(
4774
+ "div",
4775
+ {
4776
+ className: v,
4777
+ onClick: () => $ && i?.(h),
4778
+ title: s ? `${h.name}${h.description ? `: ${h.description}` : ""}` : void 0,
4779
+ children: [
4780
+ /* @__PURE__ */ t("div", { className: M.iconWrapper, children: [
4781
+ h.icon.startsWith("http") || h.icon.startsWith("/") ? /* @__PURE__ */ e("img", { src: h.icon, alt: h.name, className: M.iconImage }) : /* @__PURE__ */ e("span", { className: M.iconEmoji, children: h.icon }),
4782
+ !$ && /* @__PURE__ */ e("div", { className: M.lockOverlay, children: "🔒" })
4783
+ ] }),
4784
+ (a === "lg" || l) && /* @__PURE__ */ t("div", { className: M.badgeInfo, children: [
4785
+ /* @__PURE__ */ e("span", { className: M.badgeName, children: h.name }),
4786
+ l && /* @__PURE__ */ e("span", { className: `${M.rarityLabel} ${M[g]}`, children: uN[g] })
4787
+ ] }),
4788
+ $ && g !== "common" && g !== "uncommon" && /* @__PURE__ */ e("div", { className: M.glowEffect })
4789
+ ]
4790
+ },
4791
+ h.id || f
4792
+ );
4793
+ };
4794
+ return /* @__PURE__ */ t("div", { className: u, children: [
4795
+ d.map(m),
4796
+ p > 0 && /* @__PURE__ */ e("div", { className: `${M.badge} ${M.moreCount}`, children: /* @__PURE__ */ t("span", { children: [
4797
+ "+",
4798
+ p
4799
+ ] }) })
4800
+ ] });
4801
+ }
4802
+ hN.displayName = "BadgeDisplay";
4803
+ function NN() {
4804
+ const [n, a] = k(() => {
4805
+ const r = localStorage.getItem("abi-ui-theme");
4806
+ return r || (window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
4807
+ });
4808
+ B(() => {
4809
+ document.documentElement.setAttribute("data-theme", n), localStorage.setItem("abi-ui-theme", n);
4810
+ }, [n]);
4811
+ const s = Fe(() => {
4812
+ a((r) => r === "light" ? "dark" : "light");
4813
+ }, []), l = Fe(() => a("light"), []), c = Fe(() => a("dark"), []);
4814
+ return {
4815
+ theme: n,
4816
+ toggleTheme: s,
4817
+ setLightTheme: l,
4818
+ setDarkTheme: c,
4819
+ isDark: n === "dark",
4820
+ isLight: n === "light"
4821
+ };
4822
+ }
4823
+ export {
4824
+ bo as Accordion,
4825
+ $o as AccordionItem,
4826
+ lc as Alert,
4827
+ P$ as AnimatedBackground,
4828
+ Xt as Avatar,
4829
+ g$ as AvatarFrame,
4830
+ bN as AvatarGroup,
4831
+ bt as Badge,
4832
+ hN as BadgeDisplay,
4833
+ L1 as BookmarkButton,
4834
+ eb as BottomSheet,
4835
+ wc as Breadcrumb,
4836
+ Ln as Button,
4837
+ Si as Calendar,
4838
+ at as Card,
4839
+ ot as CardBody,
4840
+ ct as CardFooter,
4841
+ st as CardHeader,
4842
+ wr as Carousel,
4843
+ V_ as ChapterList,
4844
+ Xs as Checkbox,
4845
+ Ui as ColorPicker,
4846
+ yd as CommentCard,
4847
+ Bg as ConfirmDialog,
4848
+ Bb as CookieConsent,
4849
+ Ob as CountdownTimer,
4850
+ eh as DataTable,
4851
+ Dc as Divider,
4852
+ cg as Drawer,
4853
+ So as Dropdown,
4854
+ Do as DropdownItem,
4855
+ Ro as DropdownLabel,
4856
+ qo as DropdownSeparator,
4857
+ Su as EmptyState,
4858
+ u1 as FavoriteButton,
4859
+ Fr as FileUpload,
4860
+ Tf as FilterPanel,
4861
+ Sv as FloatingActionButton,
4862
+ Qp as FollowButton,
4863
+ vi as Footer,
4864
+ Fd as GenreChip,
4865
+ Sh as ImageViewer,
4866
+ Hn as Input,
4867
+ df as LazyImage,
4868
+ pp as LikeButton,
4869
+ rv as LoadingOverlay,
4870
+ t1 as MangaDetailHeader,
4871
+ z_ as MangaPosterCard,
4872
+ pb as Marquee,
4873
+ Dt as Modal,
4874
+ ai as Navbar,
4875
+ i_ as NotificationCenter,
4876
+ sp as PageCounter,
4877
+ hc as Pagination,
4878
+ jl as Popover,
4879
+ us as Progress,
4880
+ io as Radio,
4881
+ ro as RadioGroup,
4882
+ Xc as Rating,
4883
+ V1 as ReaderToolbar,
4884
+ sd as ReadingProgress,
4885
+ hu as ReportModal,
4886
+ Fg as ScrollToTop,
4887
+ rm as SearchBar,
4888
+ Na as Select,
4889
+ Rp as ShareButton,
4890
+ on as Skeleton,
4891
+ Ss as SkeletonMangaCard,
4892
+ Ko as Slider,
4893
+ Ff as SortSelector,
4894
+ ml as Spinner,
4895
+ dr as StatsCard,
4896
+ Gl as Stepper,
4897
+ Ps as Switch,
4898
+ la as Tab,
4899
+ ca as TabList,
4900
+ ra as TabPanel,
4901
+ Oc as Table,
4902
+ oa as Tabs,
4903
+ Nl as Tag,
4904
+ vh as TextArea,
4905
+ Xl as Timeline,
4906
+ Ga as ToastProvider,
4907
+ Ja as Tooltip,
4908
+ Tm as UserCard,
4909
+ NN as useTheme,
4910
+ $N as useToast
4911
+ };