tuikit-atomicx-vue3-electron 5.10.0 → 6.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/dist/{PopoverPortal-B5nQO1jH.js → PopoverPortal-Bsu4OkTw.js} +61 -29
  2. package/dist/{PopoverTrigger-LW6v3-7z.js → PopoverTrigger-B0P8xvIa.js} +10 -10
  3. package/dist/PopperContent-z1T-iFrf.js +1665 -0
  4. package/dist/Teleport-DEZ3r-DL.js +918 -0
  5. package/dist/baseComp/Modal/Modal.js +219 -154
  6. package/dist/components/BarrageInput/EmojiPicker/EmojiPicker.js +2 -2
  7. package/dist/components/BarrageInput/TextEditor/CharacterCountExtension.js +1 -1
  8. package/dist/components/BarrageInput/TextEditor/EditorCore.js +7 -7
  9. package/dist/components/CoHostPanel/BattlePanel.js +188 -168
  10. package/dist/components/CoHostPanel/BattlePanel.vue.d.ts +8 -1
  11. package/dist/components/CoHostPanel/CoHostPanel.js +135 -8
  12. package/dist/components/CoHostPanel/CoHostPanel.vue.d.ts +18 -1
  13. package/dist/components/CoHostPanel/ConfigSettingPanel.js +65 -52
  14. package/dist/components/CoHostPanel/ConfigSettingPanel.vue.d.ts +3 -1
  15. package/dist/components/CoHostPanel/ConnectionPanel.js +300 -206
  16. package/dist/components/CoHostPanel/ConnectionPanel.vue.d.ts +3 -1
  17. package/dist/components/CoHostPanel/RecommendHostList.js +67 -67
  18. package/dist/components/CoHostPanel/battleAutoStart.d.ts +5 -0
  19. package/dist/components/CoHostPanel/battleAutoStart.js +11 -0
  20. package/dist/components/CoHostPanel/constants.d.ts +13 -0
  21. package/dist/components/CoHostPanel/constants.js +5 -3
  22. package/dist/components/CoHostPanel/i18n/en-US/index.d.ts +3 -6
  23. package/dist/components/CoHostPanel/i18n/en-US/index.js +6 -7
  24. package/dist/components/CoHostPanel/i18n/zh-CN/index.d.ts +3 -5
  25. package/dist/components/CoHostPanel/i18n/zh-CN/index.js +7 -7
  26. package/dist/components/CoHostPanel/index.d.ts +16 -0
  27. package/dist/components/CoHostPanel/index.js +10 -1
  28. package/dist/components/CoHostPanel/inviteMutex.d.ts +9 -0
  29. package/dist/components/CoHostPanel/inviteMutex.js +16 -0
  30. package/dist/components/ConversationList/index.js +7 -7
  31. package/dist/components/LiveAudienceList/LiveAudienceList.js +132 -3
  32. package/dist/components/LiveAudienceList/LiveAudienceListH5.js +65 -3
  33. package/dist/components/LiveAudienceList/constants.d.ts +16 -0
  34. package/dist/components/LiveAudienceList/constants.js +4 -0
  35. package/dist/components/LiveAudienceList/index.d.ts +2 -1
  36. package/dist/components/LiveAudienceList/index.js +12 -7
  37. package/dist/components/LiveView/CoreViewDecorate/BattleDecorate.js +160 -8
  38. package/dist/components/LiveView/CoreViewDecorate/BattleUserDecorate.js +35 -43
  39. package/dist/components/LiveView/CoreViewDecorate/CoHostDecorate.js +3 -3
  40. package/dist/components/LiveView/CoreViewDecorate/LiveCoreDecorate.js +1 -1
  41. package/dist/components/LiveView/index.d.ts +4 -0
  42. package/dist/components/LiveView/index.js +13 -13
  43. package/dist/components/LiveView/index.vue.d.ts +2 -0
  44. package/dist/components/MessageInput/AttachmentPicker/index.js +2 -2
  45. package/dist/components/MessageInput/EmojiPicker/EmojiPicker.js +2 -2
  46. package/dist/components/MessageInput/TextEditor/EditorCore.js +1 -1
  47. package/dist/components/MessageInput/TextEditor/extensions/MentionSuggestion.js +3 -3
  48. package/dist/components/MessageInput/TextEditor/extensions/characterCountExtension.js +1 -1
  49. package/dist/components/MessageInput/TextEditor/extensions/emojiExtension.js +1 -1
  50. package/dist/components/MessageInput/TextEditor/extensions/enterKeyExtension.js +1 -1
  51. package/dist/components/MessageInput/TextEditor/extensions/imageExtension.js +8 -8
  52. package/dist/components/MessageInput/TextEditor/extensions/mentionExtension.js +10 -10
  53. package/dist/components/MessageInput/TextEditor/index.js +1 -1
  54. package/dist/components/MessageList/Message/MessageLayout/MessageActionDropdown/MessageActionDropdown.js +377 -361
  55. package/dist/components/StreamMixer/LocalMixer/index.js +131 -121
  56. package/dist/i18n/assembly/live-en-US.d.ts +1 -6
  57. package/dist/i18n/assembly/live-zh-CN.d.ts +1 -5
  58. package/dist/i18n/manifest.json +14 -47
  59. package/dist/{index-BejtWwxH.js → index-BI6SFIuK.js} +58 -58
  60. package/dist/{index-Bx7tbGhD.js → index-BQwnly3M.js} +1 -1
  61. package/dist/{index-Du3phCj7.js → index-BbugaLDf.js} +1354 -1300
  62. package/dist/{index-B_4JqmDM.js → index-DlEoDVjd.js} +3 -3
  63. package/dist/index.js +212 -207
  64. package/dist/report/MetricsKey.d.ts +1 -0
  65. package/dist/report/MetricsKey.js +1 -1
  66. package/dist/states/BattleState/BattleState.js +133 -116
  67. package/dist/states/CoHostState/CoHostState.d.ts +39 -115
  68. package/dist/states/CoHostState/CoHostState.js +11 -213
  69. package/dist/states/CoHostState/index.js +301 -2
  70. package/dist/states/LiveListState/LiveListState.js +108 -84
  71. package/dist/states/LiveMonitorState/api/http.js +1097 -909
  72. package/dist/states/LiveSeatState/seatEventManager.js +34 -32
  73. package/dist/states/LiveSeatState/usePlayStream/RTCStreamManager.js +21 -17
  74. package/dist/states/LiveSeatState/usePlayStream/RTCStreamPlayer.js +21 -17
  75. package/dist/states/LiveSummaryState/LiveSummaryState.d.ts +16 -0
  76. package/dist/states/LiveSummaryState/LiveSummaryState.js +79 -0
  77. package/dist/states/LiveSummaryState/index.d.ts +1 -0
  78. package/dist/states/LiveSummaryState/index.js +4 -0
  79. package/dist/states/LoginState.js +26 -23
  80. package/dist/states/VideoMixerState/VideoMixerState.js +266 -284
  81. package/dist/styles/index.css +1 -1
  82. package/dist/subEntry/live/index.js +175 -170
  83. package/dist/subEntry/live/live.d.ts +2 -0
  84. package/dist/subEntry/live/live.js +41 -37
  85. package/dist/subEntry/room/index.js +129 -128
  86. package/dist/types/coHost.d.ts +19 -3
  87. package/dist/types/coHost.js +1 -1
  88. package/dist/types/index.d.ts +1 -0
  89. package/dist/types/index.js +63 -62
  90. package/dist/types/liveSummary.d.ts +39 -0
  91. package/dist/types/liveSummary.js +1 -0
  92. package/dist/types/seat.d.ts +37 -0
  93. package/dist/types/seat.js +5 -4
  94. package/dist/useId-BpdmaUdC.js +12 -0
  95. package/dist/utils/loginCoordinator.d.ts +32 -0
  96. package/dist/utils/loginCoordinator.js +20 -0
  97. package/dist/utils/time.js +15 -15
  98. package/dist/{utils-ClBQ9q32.js → utils-H9oshwIj.js} +3 -3
  99. package/package.json +4 -4
  100. package/src/components/CoHostPanel/BattlePanel.vue +415 -130
  101. package/src/components/CoHostPanel/CoHostPanel.vue +302 -227
  102. package/src/components/CoHostPanel/ConfigSettingPanel.vue +28 -11
  103. package/src/components/CoHostPanel/ConnectionPanel.vue +416 -81
  104. package/src/components/CoHostPanel/RecommendHostList.vue +27 -13
  105. package/src/components/CoHostPanel/battleAutoStart.ts +57 -0
  106. package/src/components/CoHostPanel/constants.ts +15 -0
  107. package/src/components/CoHostPanel/i18n/en-US/index.ts +6 -7
  108. package/src/components/CoHostPanel/i18n/zh-CN/index.ts +7 -7
  109. package/src/components/CoHostPanel/index.ts +7 -7
  110. package/src/components/CoHostPanel/inviteMutex.ts +62 -0
  111. package/src/components/LiveAudienceList/LiveAudienceList.vue +1 -1
  112. package/src/components/LiveAudienceList/LiveAudienceListH5.vue +1 -1
  113. package/src/components/LiveAudienceList/constants.ts +17 -0
  114. package/src/components/LiveAudienceList/index.ts +1 -1
  115. package/src/components/LiveView/CoreViewDecorate/BattleDecorate.vue +473 -415
  116. package/src/components/LiveView/CoreViewDecorate/BattleUserDecorate.vue +10 -14
  117. package/src/components/LiveView/CoreViewDecorate/LiveCoreDecorate.vue +2 -0
  118. package/src/components/LiveView/index.vue +2 -2
  119. package/src/components/StreamMixer/LocalMixer/index.vue +58 -34
  120. package/src/components/StreamMixer/MacStreamMixer.vue +0 -1
  121. package/src/report/MetricsKey.ts +1 -0
  122. package/src/subEntry/live/live.ts +2 -1
  123. package/src/types/coHost.ts +21 -2
  124. package/src/types/index.ts +1 -0
  125. package/src/types/liveSummary.ts +40 -0
  126. package/src/types/seat.ts +38 -1
  127. package/src/utils/loginCoordinator.ts +78 -0
  128. package/dist/PopperContent-C9GDUX84.js +0 -1613
  129. package/dist/Teleport-DaOf7Aoo.js +0 -896
  130. package/dist/index-BC_rsj8Y.js +0 -197
  131. package/dist/useId-CYH_IsNz.js +0 -16
@@ -1,6 +1,6 @@
1
- import { b as D, n as k, r as A, l as b, F as N, D as E, h as R, m as I, P as M, T as $ } from "./Teleport-DaOf7Aoo.js";
2
- import { c as K, d as L, u as j, b as z, e as w } from "./PopperContent-C9GDUX84.js";
3
- import { u as T } from "./useId-CYH_IsNz.js";
1
+ import { c as D, a as A, r as k, u as b, F as N, D as E, b as R, d as I, e as M, T as $ } from "./Teleport-DEZ3r-DL.js";
2
+ import { a as K, u as L, b as j, c as z, d as w } from "./PopperContent-z1T-iFrf.js";
3
+ import { u as T } from "./useId-BpdmaUdC.js";
4
4
  import { defineComponent as m, toRefs as U, ref as P, openBlock as c, createBlock as v, unref as e, withCtx as f, renderSlot as g, createVNode as h, mergeProps as _, withModifiers as C, normalizeProps as x, guardReactiveProps as W } from "vue";
5
5
  const [B, V] = /* @__PURE__ */ D("PopoverRoot");
6
6
  var G = /* @__PURE__ */ m({
@@ -24,7 +24,7 @@ var G = /* @__PURE__ */ m({
24
24
  },
25
25
  emits: ["update:open"],
26
26
  setup(d, { emit: p }) {
27
- const n = d, r = p, { modal: i } = U(n), a = k(n, "open", r, {
27
+ const n = d, o = p, { modal: i } = U(n), a = A(n, "open", o, {
28
28
  defaultValue: n.defaultOpen,
29
29
  passive: n.open === void 0
30
30
  }), l = P(), u = P(!1);
@@ -41,7 +41,7 @@ var G = /* @__PURE__ */ m({
41
41
  },
42
42
  triggerElement: l,
43
43
  hasCustomAnchor: u
44
- }), (t, o) => (c(), v(e(K), null, {
44
+ }), (t, r) => (c(), v(e(K), null, {
45
45
  default: f(() => [g(t.$slots, "default", {
46
46
  open: e(a),
47
47
  close: () => a.value = !1
@@ -56,6 +56,10 @@ var G = /* @__PURE__ */ m({
56
56
  type: Boolean,
57
57
  required: !1
58
58
  },
59
+ memoDependencies: {
60
+ type: Array,
61
+ required: !1
62
+ },
59
63
  side: {
60
64
  type: null,
61
65
  required: !1
@@ -128,6 +132,10 @@ var G = /* @__PURE__ */ m({
128
132
  type: null,
129
133
  required: !1
130
134
  },
135
+ dir: {
136
+ type: String,
137
+ required: !1
138
+ },
131
139
  asChild: {
132
140
  type: Boolean,
133
141
  required: !1
@@ -150,22 +158,22 @@ var G = /* @__PURE__ */ m({
150
158
  "closeAutoFocus"
151
159
  ],
152
160
  setup(d, { emit: p }) {
153
- const n = d, r = p, i = L(A(n, "trapFocus", "disableOutsidePointerEvents")), { forwardRef: a } = b(), l = B();
161
+ const n = d, o = p, i = L(k(n, "trapFocus", "disableOutsidePointerEvents")), { forwardRef: a } = b(), l = B();
154
162
  return j(), (u, t) => (c(), v(e(N), {
155
163
  "as-child": "",
156
164
  loop: "",
157
165
  trapped: u.trapFocus,
158
- onMountAutoFocus: t[5] || (t[5] = (o) => r("openAutoFocus", o)),
159
- onUnmountAutoFocus: t[6] || (t[6] = (o) => r("closeAutoFocus", o))
166
+ onMountAutoFocus: t[5] || (t[5] = (r) => o("openAutoFocus", r)),
167
+ onUnmountAutoFocus: t[6] || (t[6] = (r) => o("closeAutoFocus", r))
160
168
  }, {
161
169
  default: f(() => [h(e(E), {
162
170
  "as-child": "",
163
171
  "disable-outside-pointer-events": u.disableOutsidePointerEvents,
164
- onPointerDownOutside: t[0] || (t[0] = (o) => r("pointerDownOutside", o)),
165
- onInteractOutside: t[1] || (t[1] = (o) => r("interactOutside", o)),
166
- onEscapeKeyDown: t[2] || (t[2] = (o) => r("escapeKeyDown", o)),
167
- onFocusOutside: t[3] || (t[3] = (o) => r("focusOutside", o)),
168
- onDismiss: t[4] || (t[4] = (o) => e(l).onOpenChange(!1))
172
+ onPointerDownOutside: t[0] || (t[0] = (r) => o("pointerDownOutside", r)),
173
+ onInteractOutside: t[1] || (t[1] = (r) => o("interactOutside", r)),
174
+ onEscapeKeyDown: t[2] || (t[2] = (r) => o("escapeKeyDown", r)),
175
+ onFocusOutside: t[3] || (t[3] = (r) => o("focusOutside", r)),
176
+ onDismiss: t[4] || (t[4] = (r) => e(l).onOpenChange(!1))
169
177
  }, {
170
178
  default: f(() => [h(e(z), _(e(i), {
171
179
  id: e(l).contentId,
@@ -196,6 +204,10 @@ var G = /* @__PURE__ */ m({
196
204
  }), F = H, J = /* @__PURE__ */ m({
197
205
  __name: "PopoverContentModal",
198
206
  props: {
207
+ memoDependencies: {
208
+ type: Array,
209
+ required: !1
210
+ },
199
211
  side: {
200
212
  type: null,
201
213
  required: !1
@@ -268,6 +280,10 @@ var G = /* @__PURE__ */ m({
268
280
  type: null,
269
281
  required: !1
270
282
  },
283
+ dir: {
284
+ type: String,
285
+ required: !1
286
+ },
271
287
  asChild: {
272
288
  type: Boolean,
273
289
  required: !1
@@ -290,32 +306,36 @@ var G = /* @__PURE__ */ m({
290
306
  "closeAutoFocus"
291
307
  ],
292
308
  setup(d, { emit: p }) {
293
- const n = d, r = p, i = B(), a = P(!1);
309
+ const n = d, o = p, i = B(), a = P(!1);
294
310
  R(!0);
295
- const l = w(n, r), { forwardRef: u, currentElement: t } = b();
296
- return I(t), (o, s) => (c(), v(F, _(e(l), {
311
+ const l = w(n, o), { forwardRef: u, currentElement: t } = b();
312
+ return I(t), (r, s) => (c(), v(F, _(e(l), {
297
313
  ref: e(u),
298
314
  "trap-focus": e(i).open.value,
299
315
  "disable-outside-pointer-events": "",
300
316
  onCloseAutoFocus: s[0] || (s[0] = C((y) => {
301
317
  var q;
302
- r("closeAutoFocus", y), a.value || (q = e(i).triggerElement.value) == null || q.focus();
318
+ o("closeAutoFocus", y), a.value || (q = e(i).triggerElement.value) == null || q.focus();
303
319
  }, ["prevent"])),
304
320
  onPointerDownOutside: s[1] || (s[1] = (y) => {
305
- r("pointerDownOutside", y);
321
+ o("pointerDownOutside", y);
306
322
  const q = y.detail.originalEvent, O = q.button === 0 && q.ctrlKey === !0, S = q.button === 2 || O;
307
323
  a.value = S;
308
324
  }),
309
325
  onFocusOutside: s[2] || (s[2] = C(() => {
310
326
  }, ["prevent"]))
311
327
  }), {
312
- default: f(() => [g(o.$slots, "default")]),
328
+ default: f(() => [g(r.$slots, "default")]),
313
329
  _: 3
314
330
  }, 16, ["trap-focus"]));
315
331
  }
316
332
  }), Q = J, X = /* @__PURE__ */ m({
317
333
  __name: "PopoverContentNonModal",
318
334
  props: {
335
+ memoDependencies: {
336
+ type: Array,
337
+ required: !1
338
+ },
319
339
  side: {
320
340
  type: null,
321
341
  required: !1
@@ -388,6 +408,10 @@ var G = /* @__PURE__ */ m({
388
408
  type: null,
389
409
  required: !1
390
410
  },
411
+ dir: {
412
+ type: String,
413
+ required: !1
414
+ },
391
415
  asChild: {
392
416
  type: Boolean,
393
417
  required: !1
@@ -410,17 +434,17 @@ var G = /* @__PURE__ */ m({
410
434
  "closeAutoFocus"
411
435
  ],
412
436
  setup(d, { emit: p }) {
413
- const n = d, r = p, i = B(), a = P(!1), l = P(!1), u = w(n, r);
414
- return (t, o) => (c(), v(F, _(e(u), {
437
+ const n = d, o = p, i = B(), a = P(!1), l = P(!1), u = w(n, o);
438
+ return (t, r) => (c(), v(F, _(e(u), {
415
439
  "trap-focus": !1,
416
440
  "disable-outside-pointer-events": !1,
417
- onCloseAutoFocus: o[0] || (o[0] = (s) => {
441
+ onCloseAutoFocus: r[0] || (r[0] = (s) => {
418
442
  var y;
419
- r("closeAutoFocus", s), s.defaultPrevented || (a.value || (y = e(i).triggerElement.value) == null || y.focus(), s.preventDefault()), a.value = !1, l.value = !1;
443
+ o("closeAutoFocus", s), s.defaultPrevented || (a.value || (y = e(i).triggerElement.value) == null || y.focus(), s.preventDefault()), a.value = !1, l.value = !1;
420
444
  }),
421
- onInteractOutside: o[1] || (o[1] = async (s) => {
445
+ onInteractOutside: r[1] || (r[1] = async (s) => {
422
446
  var O;
423
- r("interactOutside", s), s.defaultPrevented || (a.value = !0, s.detail.originalEvent.type === "pointerdown" && (l.value = !0));
447
+ o("interactOutside", s), s.defaultPrevented || (a.value = !0, s.detail.originalEvent.type === "pointerdown" && (l.value = !0));
424
448
  const y = s.target;
425
449
  ((O = e(i).triggerElement.value) == null ? void 0 : O.contains(y)) && s.preventDefault(), s.detail.originalEvent.type === "focusin" && l.value && s.preventDefault();
426
450
  })
@@ -436,6 +460,10 @@ var G = /* @__PURE__ */ m({
436
460
  type: Boolean,
437
461
  required: !1
438
462
  },
463
+ memoDependencies: {
464
+ type: Array,
465
+ required: !1
466
+ },
439
467
  side: {
440
468
  type: null,
441
469
  required: !1
@@ -508,6 +536,10 @@ var G = /* @__PURE__ */ m({
508
536
  type: null,
509
537
  required: !1
510
538
  },
539
+ dir: {
540
+ type: String,
541
+ required: !1
542
+ },
511
543
  asChild: {
512
544
  type: Boolean,
513
545
  required: !1
@@ -530,7 +562,7 @@ var G = /* @__PURE__ */ m({
530
562
  "closeAutoFocus"
531
563
  ],
532
564
  setup(d, { emit: p }) {
533
- const n = d, r = p, i = B(), a = w(n, r), { forwardRef: l } = b();
565
+ const n = d, o = p, i = B(), a = w(n, o), { forwardRef: l } = b();
534
566
  return i.contentId || (i.contentId = T(void 0, "reka-popover-content")), (u, t) => (c(), v(e(M), { present: u.forceMount || e(i).open.value }, {
535
567
  default: f(() => [e(i).modal.value ? (c(), v(Q, _({ key: 0 }, e(a), { ref: e(l) }), {
536
568
  default: f(() => [g(u.$slots, "default")]),
@@ -564,15 +596,15 @@ var G = /* @__PURE__ */ m({
564
596
  },
565
597
  setup(d) {
566
598
  const p = d;
567
- return (n, r) => (c(), v(e($), x(W(p)), {
599
+ return (n, o) => (c(), v(e($), x(W(p)), {
568
600
  default: f(() => [g(n.$slots, "default")]),
569
601
  _: 3
570
602
  }, 16));
571
603
  }
572
604
  }), le = ee;
573
605
  export {
574
- ie as P,
606
+ se as P,
575
607
  le as a,
576
- se as b,
608
+ ie as b,
577
609
  B as i
578
610
  };
@@ -1,9 +1,9 @@
1
- import { l as p, a } from "./Teleport-DaOf7Aoo.js";
2
- import { u as d } from "./useId-CYH_IsNz.js";
3
- import { P as u } from "./PopperContent-C9GDUX84.js";
4
- import { i as c } from "./PopoverPortal-B5nQO1jH.js";
5
- import { defineComponent as g, onMounted as f, openBlock as m, createBlock as v, resolveDynamicComponent as _, unref as r, withCtx as t, createVNode as h, renderSlot as C } from "vue";
6
- var P = /* @__PURE__ */ g({
1
+ import { u as l, P as a } from "./Teleport-DEZ3r-DL.js";
2
+ import { u as d } from "./useId-BpdmaUdC.js";
3
+ import { P as u } from "./PopperContent-z1T-iFrf.js";
4
+ import { i as c } from "./PopoverPortal-Bsu4OkTw.js";
5
+ import { defineComponent as g, onMounted as f, openBlock as m, createBlock as v, resolveDynamicComponent as _, unref as r, withCtx as t, createVNode as h, renderSlot as P } from "vue";
6
+ var C = /* @__PURE__ */ g({
7
7
  __name: "PopoverTrigger",
8
8
  props: {
9
9
  asChild: {
@@ -17,9 +17,9 @@ var P = /* @__PURE__ */ g({
17
17
  }
18
18
  },
19
19
  setup(n) {
20
- const i = n, e = c(), { forwardRef: s, currentElement: l } = p();
20
+ const i = n, e = c(), { forwardRef: s, currentElement: p } = l();
21
21
  return e.triggerId || (e.triggerId = d(void 0, "reka-popover-trigger")), f(() => {
22
- e.triggerElement.value = l.value;
22
+ e.triggerElement.value = p.value;
23
23
  }), (o, y) => (m(), v(_(r(e).hasCustomAnchor.value ? r(a) : r(u)), { "as-child": "" }, {
24
24
  default: t(() => [h(r(a), {
25
25
  id: r(e).triggerId,
@@ -33,7 +33,7 @@ var P = /* @__PURE__ */ g({
33
33
  "as-child": i.asChild,
34
34
  onClick: r(e).onOpenToggle
35
35
  }, {
36
- default: t(() => [C(o.$slots, "default")]),
36
+ default: t(() => [P(o.$slots, "default")]),
37
37
  _: 3
38
38
  }, 8, [
39
39
  "id",
@@ -48,7 +48,7 @@ var P = /* @__PURE__ */ g({
48
48
  _: 3
49
49
  }));
50
50
  }
51
- }), w = P;
51
+ }), w = C;
52
52
  export {
53
53
  w as P
54
54
  };