@lumiastream/ui 0.2.8-alpha.2 → 0.2.8-alpha.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/dist/index.js +214 -65
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -72,6 +72,15 @@ Artifacts land in `dist/` and are what gets published to npm.
72
72
  1. Run `pnpm storybook` for hot‑reloading Storybook and `pnpm watch` for the library bundle.
73
73
  2. Commit with Conventional Commits (`feat:`, `fix:` …) so the release pipeline can auto‑generate changelogs.
74
74
 
75
+ ### Running live inside other repos
76
+
77
+ To iterate on this library against a real consumer (Overlay-UI or LumiaStream)
78
+ without publishing a new npm version each time, see **[LOCAL_DEV.md](./LOCAL_DEV.md)**.
79
+ It covers the symlink workflow for both pnpm (Overlay-UI) and npm (LumiaStream),
80
+ the Vite config requirements that have to stay in place for the symlinked
81
+ workflow to work, and a troubleshooting table for the symptoms we've hit in
82
+ practice.
83
+
75
84
  ---
76
85
 
77
86
  ## 🪪 License
package/dist/index.js CHANGED
@@ -508,7 +508,7 @@ import FormControlLabel from "@mui/material/FormControlLabel";
508
508
  import { forwardRef as forwardRef2 } from "react";
509
509
  import { useController, useFormContext } from "react-hook-form";
510
510
  import classNames4 from "classnames";
511
- import { jsx as jsx5 } from "react/jsx-runtime";
511
+ import { Fragment, jsx as jsx5 } from "react/jsx-runtime";
512
512
  var LSCheckbox = forwardRef2(({ className = "", checked, inputRef, slotProps, ...props }, ref) => {
513
513
  const CheckboxComponent = Checkbox;
514
514
  return /* @__PURE__ */ jsx5(
@@ -539,8 +539,31 @@ function LSCheckboxField({
539
539
  checkboxProps
540
540
  }) {
541
541
  const formContext = useFormContext();
542
- const resolvedControl = control ?? formContext.control;
543
- const { field } = useController({ name, control: resolvedControl });
542
+ const resolvedControl = control ?? formContext?.control;
543
+ if (!resolvedControl) return /* @__PURE__ */ jsx5(Fragment, {});
544
+ return /* @__PURE__ */ jsx5(
545
+ LSCheckboxFieldInner,
546
+ {
547
+ name,
548
+ label,
549
+ control: resolvedControl,
550
+ className,
551
+ disabled,
552
+ labelPlacement,
553
+ checkboxProps
554
+ }
555
+ );
556
+ }
557
+ function LSCheckboxFieldInner({
558
+ name,
559
+ label,
560
+ control,
561
+ className = "",
562
+ disabled,
563
+ labelPlacement = "end",
564
+ checkboxProps
565
+ }) {
566
+ const { field } = useController({ name, control });
544
567
  return /* @__PURE__ */ jsx5(
545
568
  FormControlLabel,
546
569
  {
@@ -1045,7 +1068,7 @@ import Search from "@mui/icons-material/Search";
1045
1068
  import KeyboardArrowDown2 from "@mui/icons-material/KeyboardArrowDown";
1046
1069
  import Tooltip from "@mui/material/Tooltip";
1047
1070
  import {
1048
- Fragment,
1071
+ Fragment as Fragment2,
1049
1072
  createContext,
1050
1073
  forwardRef as forwardRef4,
1051
1074
  useCallback as useCallback2,
@@ -1055,7 +1078,7 @@ import {
1055
1078
  useRef as useRef3,
1056
1079
  useState as useState4
1057
1080
  } from "react";
1058
- import { Fragment as Fragment2, jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
1081
+ import { Fragment as Fragment3, jsx as jsx11, jsxs as jsxs5 } from "react/jsx-runtime";
1059
1082
  import { createElement } from "react";
1060
1083
  var LSVariableInputContext = createContext({});
1061
1084
  var LSVariableInputProvider = ({
@@ -1799,7 +1822,7 @@ var LSVariableInputField = forwardRef4((props, ref) => {
1799
1822
  const fullToken = `${rootToken}.${node.relativePath}`;
1800
1823
  const expanded = node.isExpandable && isPathExpanded(fullToken);
1801
1824
  const { displayValue, fullValue } = getVariableValuePreview(node.value);
1802
- return /* @__PURE__ */ jsxs5(Fragment, { children: [
1825
+ return /* @__PURE__ */ jsxs5(Fragment2, { children: [
1803
1826
  /* @__PURE__ */ jsxs5(
1804
1827
  "div",
1805
1828
  {
@@ -1938,7 +1961,7 @@ var LSVariableInputField = forwardRef4((props, ref) => {
1938
1961
  const expanded = expandable && isPathExpanded(definition.name);
1939
1962
  const isLast = idx === filteredAllowedVariables.length - 1;
1940
1963
  const rowCls = `ls-variable-picker__row${isLast && !expanded ? " ls-variable-picker__row--no-border" : ""}`;
1941
- return /* @__PURE__ */ jsxs5(Fragment, { children: [
1964
+ return /* @__PURE__ */ jsxs5(Fragment2, { children: [
1942
1965
  /* @__PURE__ */ jsxs5(
1943
1966
  "div",
1944
1967
  {
@@ -1978,7 +2001,7 @@ var LSVariableInputField = forwardRef4((props, ref) => {
1978
2001
  const tree = systemVariableValueTrees.get(variable.name);
1979
2002
  const expandable = !!tree && tree.length > 0;
1980
2003
  const expanded = expandable && isPathExpanded(rootToken);
1981
- return /* @__PURE__ */ jsxs5(Fragment, { children: [
2004
+ return /* @__PURE__ */ jsxs5(Fragment2, { children: [
1982
2005
  /* @__PURE__ */ jsxs5(
1983
2006
  "div",
1984
2007
  {
@@ -2028,7 +2051,7 @@ var LSVariableInputField = forwardRef4((props, ref) => {
2028
2051
  ref
2029
2052
  }
2030
2053
  );
2031
- return /* @__PURE__ */ jsxs5(Fragment2, { children: [
2054
+ return /* @__PURE__ */ jsxs5(Fragment3, { children: [
2032
2055
  /* @__PURE__ */ jsx11(
2033
2056
  Popover,
2034
2057
  {
@@ -2212,7 +2235,7 @@ var VariableInputTextField = forwardRef4(
2212
2235
  ...paramsSlotInputProps,
2213
2236
  ...paramsInputProps,
2214
2237
  startAdornment,
2215
- endAdornment: /* @__PURE__ */ jsxs5(Fragment2, { children: [
2238
+ endAdornment: /* @__PURE__ */ jsxs5(Fragment3, { children: [
2216
2239
  endAdornment ?? null,
2217
2240
  showVariableIcon ? /* @__PURE__ */ jsx11(
2218
2241
  Tooltip,
@@ -3438,9 +3461,20 @@ var SE_EVENT_TO_LUMIA_ALERT = {
3438
3461
  // LumiaAlertValues / activity.types.ts.
3439
3462
  merch: "fourthwall-shopOrder",
3440
3463
  purchase: "fourthwall-shopOrder",
3441
- charityCampaignDonation: "twitch-charityDonation",
3442
- host: "twitch-raid",
3443
- redemption: "twitch-redemption"
3464
+ charityCampaignDonation: "twitch-charityDonation"
3465
+ // NOTE — two SE events intentionally NOT mapped:
3466
+ // • `host` → previously `twitch-raid`. Twitch deprecated hosting in
3467
+ // late 2022 so the event never fires on the platform anymore. Even
3468
+ // if it did, host payloads don't carry a viewer count (raids do),
3469
+ // so the rendered alert would read "{name} raided with ?? viewers".
3470
+ // Drop the mapping; SE widgets configured with a `host` block fall
3471
+ // through to the unsupported placeholder rather than producing
3472
+ // misleading raid alerts.
3473
+ // • `redemption` → SE's `redemption` event is the legacy SE Store
3474
+ // redemption (their own loyalty-point store purchases), NOT Twitch
3475
+ // channel-point redemptions. Different payload, different semantics.
3476
+ // SE Store is mostly deprecated and seldom used; dropping the
3477
+ // mapping prevents misleading "channel-point redemption" alerts.
3444
3478
  };
3445
3479
  function pickGraphics(g) {
3446
3480
  if (!g) return { type: "image", content: { src: "", loop: false, volume: 1 } };
@@ -3459,25 +3493,48 @@ var SE_DEFAULT_DURATION_BY_EVENT = {
3459
3493
  tip: 5,
3460
3494
  cheer: 5,
3461
3495
  raid: 8,
3462
- host: 8,
3463
3496
  merch: 8,
3464
3497
  purchase: 8,
3465
- charityCampaignDonation: 8,
3466
- redemption: 5
3498
+ charityCampaignDonation: 8
3499
+ // `redemption` intentionally omitted — see SE_EVENT_TO_LUMIA_ALERT above
3500
+ // for why SE Store redemptions don't map to Twitch redemptions.
3467
3501
  };
3502
+ function cssKebabToCamel(input) {
3503
+ const out = {};
3504
+ for (const [k, v] of Object.entries(input)) {
3505
+ const camel = k.replace(/-([a-z])/g, (_m, c) => c.toUpperCase());
3506
+ out[camel] = v;
3507
+ }
3508
+ return out;
3509
+ }
3468
3510
  function buildAlertEvent(seEvent, seEventType) {
3469
3511
  if (!seEvent) {
3470
3512
  return { on: false, variations: [] };
3471
3513
  }
3472
3514
  const text = seEvent.text ?? {};
3473
3515
  const css = text.css ?? {};
3474
- const messageCss = css.message ?? {};
3516
+ const rawMessageCss = css.message ?? {};
3517
+ const messageCss = cssKebabToCamel(rawMessageCss);
3475
3518
  const highlight = css.highlights ?? {};
3519
+ const shadowEnabled = text.enableShadow !== false;
3520
+ const importedTextShadow = css["text-shadow"] ?? "rgba(0, 0, 0, 0.8) 1px 1px 1px";
3521
+ const textShadow = shadowEnabled ? importedTextShadow : "none";
3522
+ const marginTopRaw = Number(css["margin-top"]);
3523
+ const pushTextUp = Number.isFinite(marginTopRaw) ? -marginTopRaw : 0;
3476
3524
  const variations = (seEvent.variations ?? []).map((variation) => buildAlertVariation(variation, seEventType)).filter((v) => v != null);
3477
3525
  const defaultDuration = (seEventType && SE_DEFAULT_DURATION_BY_EVENT[seEventType]) ?? 8;
3478
3526
  return {
3479
3527
  on: seEvent.enabled !== false,
3480
- theme: "CUSTOM",
3528
+ // CAREFUL: Lumia's `AlertThemes.CUSTOM` enum value is lowercase
3529
+ // `'custom'` (Overlay-UI/.../Alert.types.ts). The AlertBoxHandler
3530
+ // runtime does a strict equality check — `copiedAlert.theme ===
3531
+ // AlertThemes.CUSTOM` — so uppercase `'CUSTOM'` falls through to the
3532
+ // templated (Branded / Card / Simple) code path. That path calls
3533
+ // `replaceModuleVariables` WITHOUT the wrapVariablesWithHtml argument
3534
+ // and the variable highlight span never gets rendered, which is
3535
+ // exactly the "everything is white" bug imported alerts hit. The
3536
+ // lowercase value is load-bearing.
3537
+ theme: "custom",
3481
3538
  themeSettings: {
3482
3539
  primaryColor: null,
3483
3540
  accentColor: null,
@@ -3490,14 +3547,14 @@ function buildAlertEvent(seEvent, seEventType) {
3490
3547
  showBrandIcon: true
3491
3548
  },
3492
3549
  settings: { duration: (seEvent.duration ?? defaultDuration) * 1e3 },
3493
- layout: { value: translateLayout(seEvent.layout), css: {}, customCss: "" },
3550
+ layout: { value: translateLayout(seEvent.layout), css: {}, customCss: "", pushTextUp, pushTextLeft: 0 },
3494
3551
  text: {
3495
3552
  css: {
3496
3553
  fontFamily: css["font-family"] ?? "Roboto",
3497
3554
  fontSize: css["font-size"] ?? 30,
3498
3555
  color: css.color ?? "#ffffff",
3499
3556
  fontWeight: css["font-weight"] ?? "bold",
3500
- textShadow: css["text-shadow"] ?? "rgba(0, 0, 0, 0.8) 1px 1px 1px",
3557
+ textShadow,
3501
3558
  textAlign: css["text-align"] ?? "center"
3502
3559
  },
3503
3560
  messageCss,
@@ -3512,11 +3569,45 @@ function buildAlertEvent(seEvent, seEventType) {
3512
3569
  },
3513
3570
  animations: {
3514
3571
  alertEnterAnimation: seEvent.animation?.in ?? "fadeIn",
3572
+ alertEnterAnimationDelay: 0,
3515
3573
  alertEnterAnimationDuration: (seEvent.animation?.inDuration ?? 1) * 1e3,
3516
3574
  alertExitAnimation: seEvent.animation?.out ?? "fadeOut",
3575
+ alertExitAnimationDelay: 0,
3517
3576
  alertExitAnimationDuration: (seEvent.animation?.outDuration ?? 1) * 1e3,
3518
3577
  textEnterAnimation: text.animation ?? "",
3519
- textEnterAnimationDuration: 1e3
3578
+ textEnterDelay: 0,
3579
+ textEnterAnimationDuration: 1e3,
3580
+ textEnterRepeat: 1,
3581
+ // SE has no separate "text exit" semantics — the text fades out with
3582
+ // the alert. Lumia's AlertBoxHandler reads these fields directly to
3583
+ // schedule `setTextVisible(false)` via
3584
+ // duration - textExitAnimationDuration - textExitOffset
3585
+ // If either is undefined the math evaluates to NaN, setTimeout
3586
+ // fires immediately, and the text becomes visible for one frame
3587
+ // before being hidden — which is exactly the bug that made
3588
+ // imported alerts look like they had "no text at all". Defaulting
3589
+ // to a 1s fade-out that starts 1s before the alert ends matches
3590
+ // SE's perceived behaviour.
3591
+ textExitAnimation: "fadeOut",
3592
+ textExitAnimationDuration: 1e3,
3593
+ textExitOffset: 1e3,
3594
+ // SE wraps variables (`{name}`, `{amount}`, etc.) in a span styled by
3595
+ // `text.css.highlights`. Color comes via `themeSettings.highlightColor`;
3596
+ // the animation lives here. When SE *doesn't* set
3597
+ // `highlights.animation` explicitly, variables visually inherit the
3598
+ // text-level `text.animation` (`pulse`, `bounce`, etc.) because
3599
+ // they're nested inside the animating text. We mirror that fallback so
3600
+ // imports look the same as on SE — without it, common imports (where
3601
+ // only `text.animation` is set) would have a static highlight color
3602
+ // with no pulse, which reads as "the highlight animation didn't
3603
+ // import" even though the color did.
3604
+ highlightTextEnterAnimation: highlight.animation || text.animation || "",
3605
+ highlightTextEnterDelay: 0,
3606
+ highlightTextEnterAnimationDuration: 1e3,
3607
+ highlightTextEnterRepeat: 1,
3608
+ highlightTextExitAnimation: "",
3609
+ highlightTextExitAnimationDuration: 0,
3610
+ highlightTextExitOffset: 0
3520
3611
  },
3521
3612
  tts: {
3522
3613
  enabled: !!seEvent.tts?.enabled,
@@ -4022,10 +4113,21 @@ var SE_KAPPAGEN_EVENT_TO_LUMIA_ALERT = {
4022
4113
  subscriber: "twitch-subscriber",
4023
4114
  cheer: "twitch-bits",
4024
4115
  raid: "twitch-raid",
4025
- host: "twitch-host",
4026
- tip: "streamelements-donation",
4027
- purchase: "streamlabs-merch",
4028
- embers: "youtube-superchat"
4116
+ tip: "streamelements-donation"
4117
+ // NOTE — three SE events intentionally NOT mapped:
4118
+ // • `host` → previously `twitch-host`, which doesn't exist in
4119
+ // LumiaAlertValues (verified). Twitch deprecated hosting
4120
+ // in 2022 so the event never fires anyway.
4121
+ // • `purchase` → previously `streamlabs-merch`, which is deprecated. The
4122
+ // main Alert Box mapper routes merch/purchase to
4123
+ // `fourthwall-shopOrder`; keep Kappagen consistent by
4124
+ // dropping the legacy SL path rather than splitting
4125
+ // emoji emotion between two competing alert keys.
4126
+ // • `embers` → previously `youtube-superchat`, which is wrong on both
4127
+ // ends: embers were a deprecated Twitch paid-emote
4128
+ // feature unrelated to YouTube super chats.
4129
+ // All three drop silently; the rest of the widget (size, spawn zone,
4130
+ // per-event flags for the remaining events) still imports.
4029
4131
  };
4030
4132
  function mapKappagen(widget) {
4031
4133
  const v = widget.variables ?? {};
@@ -4261,11 +4363,22 @@ function liftSESpritesIntoTiers(types) {
4261
4363
  const cat = SE_TYPE_TO_CATEGORY[seKey];
4262
4364
  if (!cat) continue;
4263
4365
  const variations = block?.variations ?? [];
4264
- const tiers = variations.filter((v) => typeof v?.src === "string" && v.src.length > 0).map((v) => ({
4265
- minAmount: typeof v.amount === "number" && v.amount > 0 ? v.amount : 1,
4266
- imageUrl: v.src,
4267
- scale: typeof v.cheerSize === "number" && v.cheerSize > 0 ? v.cheerSize : 1
4268
- }));
4366
+ const usable = variations.filter((v) => typeof v?.src === "string" && v.src.length > 0);
4367
+ const flagged = usable.filter((v) => v.default === true);
4368
+ const picked = flagged.length > 0 ? flagged : usable;
4369
+ const seenAmounts = /* @__PURE__ */ new Set();
4370
+ const tiers = [];
4371
+ for (const v of picked) {
4372
+ const amount = typeof v.amount === "number" && v.amount > 0 ? v.amount : 1;
4373
+ if (seenAmounts.has(amount)) continue;
4374
+ seenAmounts.add(amount);
4375
+ tiers.push({
4376
+ minAmount: amount,
4377
+ imageUrl: v.src,
4378
+ scale: typeof v.cheerSize === "number" && v.cheerSize > 0 ? v.cheerSize : 1
4379
+ });
4380
+ }
4381
+ tiers.sort((a, b) => a.minAmount - b.minAmount);
4269
4382
  if (tiers.length > 0) out[cat] = tiers;
4270
4383
  }
4271
4384
  return out;
@@ -4304,8 +4417,10 @@ function categoriesFromListeners(listeners) {
4304
4417
  }
4305
4418
  function mapHypeCup(widget) {
4306
4419
  const v = widget.variables ?? {};
4307
- const cupX = typeof v.cupPosition?.x === "number" ? clamp01(v.cupPosition.x) : 0.5;
4308
- const cupY = typeof v.cupPosition?.y === "number" ? clamp01(v.cupPosition.y) : 0.7;
4420
+ const widgetWidth = typeof v.width === "number" && v.width > 0 ? v.width : parsePx(widget.css?.width);
4421
+ const widgetHeight = typeof v.height === "number" && v.height > 0 ? v.height : parsePx(widget.css?.height);
4422
+ const cupX = positionToFraction(v.cupPosition?.x, widgetWidth, 0.5);
4423
+ const cupY = positionToFraction(v.cupPosition?.y, widgetHeight, 0.7);
4309
4424
  const bounce = typeof v.bounce === "number" ? Math.min(1, Math.max(0, v.bounce)) : 0.3;
4310
4425
  const maxBodies = typeof v.recentEvents === "number" && v.recentEvents > 0 ? Math.min(300, Math.max(10, v.recentEvents)) : 80;
4311
4426
  const duration = typeof v.duration === "number" && v.duration > 0 ? Math.min(15, Math.max(1, v.duration)) : 3;
@@ -4364,6 +4479,20 @@ function clamp01(n) {
4364
4479
  if (!Number.isFinite(n)) return 0.5;
4365
4480
  return Math.min(1, Math.max(0, n));
4366
4481
  }
4482
+ function positionToFraction(raw, widgetDim, fallback) {
4483
+ if (typeof raw !== "number" || !Number.isFinite(raw)) return fallback;
4484
+ if (raw <= 1) return clamp01(raw);
4485
+ if (typeof widgetDim !== "number" || widgetDim <= 0) return fallback;
4486
+ return clamp01(raw / widgetDim);
4487
+ }
4488
+ function parsePx(raw) {
4489
+ if (typeof raw === "number" && Number.isFinite(raw)) return raw;
4490
+ if (typeof raw !== "string") return void 0;
4491
+ const match = raw.match(/^(-?\d+(?:\.\d+)?)/);
4492
+ if (!match) return void 0;
4493
+ const n = Number(match[1]);
4494
+ return Number.isFinite(n) ? n : void 0;
4495
+ }
4367
4496
 
4368
4497
  // src/se-import/mappers/streamboss.ts
4369
4498
  var SE_LISTENER_TO_ALERT = {
@@ -4406,13 +4535,13 @@ function mapStreamBoss(widget) {
4406
4535
  selectedEvents.push(alertKey);
4407
4536
  }
4408
4537
  const barColor = typeof v.colors?.frame === "string" && v.colors.frame ? v.colors.frame : "#2bff00";
4538
+ const widgetHeight = parsePx2(widget.css?.height);
4539
+ const tooShortForCard = typeof widgetHeight === "number" && widgetHeight < 140;
4540
+ const theme = v.showImage === false || tooShortForCard ? "bar-only" : "card";
4409
4541
  return buildUnit(widget, "streamboss", {
4410
4542
  content: {
4411
4543
  version: 1,
4412
- // Theme: SE bit-boss with `showImage: true` reads as the Card layout
4413
- // (avatar + name + bar). When images are hidden it's effectively
4414
- // our Bar-Only theme.
4415
- theme: v.showImage === false ? "bar-only" : "card",
4544
+ theme,
4416
4545
  initialBossName: "Stream Boss",
4417
4546
  // SE has no stage cycling — every takeover resets to baseHP. We
4418
4547
  // honor that by shipping a single-element healthStages array; the
@@ -4473,6 +4602,14 @@ function mapStreamBoss(widget) {
4473
4602
  }
4474
4603
  });
4475
4604
  }
4605
+ function parsePx2(raw) {
4606
+ if (typeof raw === "number" && Number.isFinite(raw)) return raw;
4607
+ if (typeof raw !== "string") return void 0;
4608
+ const match = raw.match(/^(-?\d+(?:\.\d+)?)/);
4609
+ if (!match) return void 0;
4610
+ const n = Number(match[1]);
4611
+ return Number.isFinite(n) ? n : void 0;
4612
+ }
4476
4613
 
4477
4614
  // src/se-import/feature-flags.ts
4478
4615
  var SE_IMPORT_FLAGS = {
@@ -4552,7 +4689,6 @@ function dispatch(widget) {
4552
4689
  if (GOAL_TYPES.has(t)) return { unit: mapGoal(widget), status: "direct", lumiaType: "goal" };
4553
4690
  if (t === "se-widget-alert-box") return { unit: mapAlertBox(widget), status: "direct", lumiaType: "alert" };
4554
4691
  if (t === "se-widget-alert-box-merch") return { unit: mapAlertBox(widget, { onlyEvents: ["merch"] }), status: "direct", lumiaType: "alert" };
4555
- if (t === "se-widget-store-redemptions") return { unit: mapSingleAlert(widget, "twitch-redemption"), status: "direct", lumiaType: "alert" };
4556
4692
  if (t === "se-widget-donor-drive-alert") return { unit: mapSingleAlert(widget, "donordrive-donation"), status: "direct", lumiaType: "alert" };
4557
4693
  if (t === "se-widget-extralife-alert") return { unit: mapSingleAlert(widget, "extralife-donation"), status: "direct", lumiaType: "alert" };
4558
4694
  if (t === "se-widget-tiltify-alert") return { unit: mapSingleAlert(widget, "tiltify-campaignDonation"), status: "direct", lumiaType: "alert" };
@@ -5069,21 +5205,34 @@ function ActiveLayerPreview({ overlay, layerId, CustomEmbed }) {
5069
5205
  }
5070
5206
 
5071
5207
  // src/se-import/ui/SEImportWizard.css
5072
- styleInject('.se-import,\n.se-import * {\n box-sizing: border-box;\n}\n.se-import {\n --se-bg: #17162a;\n --se-surface: #27264a;\n --se-panel: #171b38;\n --se-panel-2: #202449;\n --se-border: rgba(116, 124, 211, 0.24);\n --se-border-strong: rgba(126, 128, 255, 0.58);\n --se-text: #f5f4ff;\n --se-muted: #bab8d2;\n --se-primary: #ff4076;\n --se-purple: #393853;\n --se-green: #06c96f;\n --se-warn: #f7a42b;\n width: 100%;\n min-width: min(680px, 100%);\n color: var(--se-text);\n font-family: inherit;\n}\n.se-import__shell {\n border-radius: 0;\n padding: 28px 48px 24px;\n}\n.se-import__header {\n display: grid;\n justify-items: center;\n gap: 42px;\n}\n.se-import__title {\n display: inline-flex;\n align-items: center;\n gap: 10px;\n font-size: 20px;\n font-weight: 500;\n}\n.se-import-stepper {\n display: grid;\n width: min(760px, 100%);\n grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));\n}\n.se-import-step {\n position: relative;\n display: grid;\n justify-items: center;\n gap: 12px;\n min-width: 0;\n color: rgba(255, 255, 255, 0.72);\n}\n.se-import-step__label {\n color: var(--se-text);\n font-size: 18px;\n line-height: 1.1;\n}\n.se-import-step__line {\n position: absolute;\n top: 42px;\n left: 50%;\n width: 100%;\n height: 2px;\n background: rgba(255, 255, 255, 0.16);\n}\n.se-import-step:last-child .se-import-step__line {\n display: none;\n}\n.se-import-step__dot {\n z-index: 1;\n display: grid;\n width: 22px;\n height: 22px;\n place-items: center;\n border-radius: 50%;\n background: #47485e;\n color: #fff;\n font-size: 13px;\n font-weight: 700;\n line-height: 1;\n}\n.se-import-step--active .se-import-step__dot {\n background: var(--se-primary);\n}\n.se-import-step--done .se-import-step__dot {\n background: var(--se-green);\n}\n.se-import-step--done .se-import-step__line {\n background: var(--se-green);\n}\n.se-import-step--done + .se-import-step--active .se-import-step__line {\n background:\n linear-gradient(\n 90deg,\n var(--se-green),\n var(--se-primary));\n}\n.se-import__content {\n display: grid;\n min-height: 470px;\n place-items: center;\n padding: 64px 0 28px;\n}\n.se-import-panel {\n width: min(100%, 1080px);\n padding: 28px;\n}\n.se-import-panel--narrow {\n width: min(100%, 1140px);\n}\n.se-import-panel--medium {\n width: min(100%, 880px);\n}\n.se-import-panel--wide {\n width: min(100%, 1000px);\n}\n.se-import-panel--confirm {\n width: min(100%, 800px);\n}\n.se-import-panel h2,\n.se-import-panel h3,\n.se-import-panel p {\n margin: 0;\n}\n.se-import-panel h2 {\n font-size: 26px;\n font-weight: 700;\n line-height: 1.15;\n}\n.se-import-panel > p {\n margin-top: 14px;\n color: var(--se-muted);\n font-size: 16px;\n line-height: 1.45;\n}\n.se-import-field {\n margin-top: 34px;\n}\n.se-import-field .mui-ls-input {\n --ls-control-height: 66px;\n}\n.se-import-field .MuiInputLabel-root {\n color: var(--se-text);\n font-weight: 700;\n}\n.se-import-field .MuiInputLabel-root.Mui-focused {\n color: #dfe1ff;\n}\n.se-import-field .MuiInputBase-root {\n background: rgba(28, 32, 66, 0.85);\n box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.04);\n font-size: 18px;\n}\n.se-import-field .MuiOutlinedInput-notchedOutline {\n border-color: var(--se-border-strong) !important;\n}\n.se-import-help {\n display: flex;\n gap: 18px;\n margin-top: 30px;\n border: 1px solid var(--se-purple);\n border-radius: 12px;\n padding: 24px;\n color: var(--white2);\n}\n.se-import-help__icon {\n display: grid;\n width: 30px;\n height: 30px;\n flex: 0 0 auto;\n place-items: center;\n border: 1px solid var(--se-purple);\n border-radius: 50%;\n color: var(--white2);\n font-weight: 800;\n}\n.se-import-help__title {\n color: var(--se-text);\n font-size: 18px;\n font-weight: 700;\n}\n.se-import-help ol {\n margin: 16px 0 0;\n padding-left: 18px;\n font-size: 15px;\n line-height: 1.7;\n}\n.se-import-help a {\n color: var(--primary);\n font-weight: 700;\n}\n.se-import-help--info {\n align-items: center;\n}\n.se-import-section-title {\n display: flex;\n gap: 1rem;\n margin-bottom: 1.5rem;\n}\n.se-import-section-title__num {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 46px;\n height: 46px;\n border: 1px solid var(--se-purple);\n border-radius: 50%;\n font-size: 1.5rem;\n font-weight: 800;\n}\n.se-import-section-title__content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n.se-import-section-title h3 {\n font-size: 18px;\n font-weight: 800;\n}\n.se-import-section-title p {\n margin-top: 4px;\n color: var(--se-muted);\n font-size: 14px;\n}\n.se-import-grid {\n display: grid;\n gap: 8px;\n margin-top: 10px;\n}\n.se-import-grid--four {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n}\n.se-import-grid--two {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n}\n.se-import-stat {\n min-height: 116px;\n border: 1px solid rgba(255, 255, 255, 0.06);\n border-radius: 8px;\n background:\n linear-gradient(\n 135deg,\n rgba(42, 47, 92, 0.9),\n rgba(33, 38, 78, 0.9));\n padding: 24px 22px;\n}\n.se-import-stat--success {\n background:\n linear-gradient(\n 135deg,\n rgba(12, 91, 86, 0.72),\n rgba(32, 65, 76, 0.8));\n border-color: rgba(19, 201, 126, 0.25);\n}\n.se-import-stat--info {\n border-color: rgba(116, 104, 255, 0.8);\n box-shadow: inset 3px 0 0 #6e76ff;\n}\n.se-import-stat--warn,\n.se-import-stat--muted {\n box-shadow: inset 3px 0 0 var(--se-warn);\n}\n.se-import-stat__label {\n color: var(--se-muted);\n font-size: 12px;\n font-weight: 800;\n letter-spacing: 0.04em;\n text-transform: uppercase;\n}\n.se-import-stat__value {\n margin-top: 12px;\n color: #fff;\n font-size: 30px;\n font-weight: 800;\n line-height: 1;\n}\n.se-import-stat__sub {\n margin-top: 8px;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-option {\n display: grid;\n grid-template-columns: auto minmax(0, 1fr) auto auto;\n align-items: center;\n gap: 18px;\n border: 1px solid var(--se-purple);\n border-radius: 12px;\n background:\n linear-gradient(\n 135deg,\n rgba(35, 39, 81, 0.95),\n rgba(31, 35, 73, 0.95));\n box-shadow: inset 3px 0 0 var(--se-primary);\n cursor: pointer;\n padding: 22px;\n margin-bottom: 1rem;\n}\n.se-import-option--disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n.se-import-option__icon {\n display: grid;\n width: 26px;\n height: 26px;\n place-items: center;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.22);\n color: #d8dbff;\n font-weight: 800;\n}\n.se-import-option__body {\n display: grid;\n gap: 8px;\n min-width: 0;\n}\n.se-import-option__title {\n font-size: 17px;\n font-weight: 800;\n}\n.se-import-option__copy {\n color: var(--se-muted);\n font-size: 14px;\n line-height: 1.45;\n}\n.se-import-option__count {\n color: #fff;\n font-size: 16px;\n}\n.se-import-option input {\n position: absolute;\n opacity: 0;\n pointer-events: none;\n}\n.se-import-toggle {\n position: relative;\n width: 48px;\n height: 28px;\n border-radius: 999px;\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);\n}\n.se-import-toggle::after {\n position: absolute;\n top: 4px;\n left: 4px;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n background: #fff;\n content: "";\n transition: transform 160ms ease;\n}\n.se-import-option input:checked + .se-import-toggle {\n background: var(--primary);\n}\n.se-import-option input:checked + .se-import-toggle::after {\n transform: translateX(20px);\n}\n.se-import-advanced {\n margin-top: 26px;\n border-radius: 10px;\n background: rgba(32, 36, 73, 0.7);\n padding: 24px;\n}\n.se-import-advanced summary {\n cursor: pointer;\n font-size: 18px;\n font-weight: 700;\n}\n.se-import-advanced p {\n margin-top: 10px;\n color: var(--se-muted);\n}\n.se-import-transfer {\n position: relative;\n display: grid;\n width: min(720px, 100%);\n min-height: 190px;\n grid-template-columns: 180px minmax(260px, 1fr) 180px;\n align-items: center;\n gap: 28px;\n margin: 0 auto 60px;\n}\n.se-import-transfer__source {\n position: relative;\n display: grid;\n width: 160px;\n height: 160px;\n place-items: center;\n animation: se-import-source-bounce 1.8s ease-in-out infinite;\n}\n.se-import-transfer__source::before {\n top: -13px;\n left: -13px;\n box-shadow: 155px 0 0 var(--se-primary);\n}\n.se-import-transfer__source::after {\n bottom: -13px;\n left: -13px;\n box-shadow: 155px 0 0 var(--se-primary);\n}\n.se-import-transfer__source img {\n width: 192px;\n height: 192px;\n object-fit: contain;\n}\n.se-import-transfer__source--lumia {\n animation-delay: 0.22s;\n}\n.se-import-transfer__files {\n position: relative;\n height: 130px;\n}\n.se-import-transfer__file {\n position: absolute;\n top: 50%;\n left: -18px;\n width: 56px;\n height: 66px;\n object-fit: contain;\n transform: translateY(-50%);\n filter: drop-shadow(0 10px 12px rgba(8, 9, 25, 0.25));\n animation: se-import-file-fly 2.4s cubic-bezier(0.35, 0, 0.25, 1) infinite;\n}\n.se-import-transfer__file--one {\n animation-delay: 0s;\n}\n.se-import-transfer__file--two {\n animation-delay: 0.38s;\n}\n.se-import-transfer__file--three {\n animation-delay: 0.76s;\n}\n.se-import-transfer__file--four {\n animation-delay: 1.14s;\n}\n@keyframes se-import-source-bounce {\n 0%, 100% {\n transform: translateY(0) scale(1);\n }\n 50% {\n transform: translateY(-8px) scale(1.025);\n }\n}\n@keyframes se-import-file-fly {\n 0% {\n opacity: 0;\n transform: translate(-10px, -50%) scale(0.82) rotate(-8deg);\n }\n 12% {\n opacity: 1;\n }\n 45% {\n transform: translate(145px, calc(-50% - 18px)) scale(1.08) rotate(5deg);\n }\n 82% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n transform: translate(330px, -50%) scale(0.9) rotate(10deg);\n }\n}\n.se-import-mirror-head {\n display: flex;\n align-items: end;\n justify-content: space-between;\n gap: 20px;\n}\n.se-import-mirror-head p {\n margin-top: 14px;\n color: var(--se-muted);\n font-size: 16px;\n}\n.se-import-mirror-head span {\n flex: 0 0 auto;\n color: var(--se-muted);\n font-weight: 700;\n}\n.se-import-progress {\n width: 100%;\n height: 14px;\n margin-top: 28px;\n overflow: hidden;\n border: 0;\n border-radius: 999px;\n background: rgba(255, 64, 118, 0.1);\n}\n.se-import-progress::-webkit-progress-bar {\n background: rgba(255, 64, 118, 0.1);\n}\n.se-import-progress::-webkit-progress-value {\n border-radius: 999px;\n background:\n linear-gradient(\n 90deg,\n #ff4076,\n #e7295f);\n}\n.se-import-progress::-moz-progress-bar {\n border-radius: 999px;\n background:\n linear-gradient(\n 90deg,\n #ff4076,\n #e7295f);\n}\n.se-import-asset-list {\n max-height: 360px;\n margin-top: 22px;\n overflow-y: auto;\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n}\n.se-import-asset-row {\n display: grid;\n grid-template-columns: 32px minmax(0, 1fr) auto auto;\n align-items: center;\n gap: 14px;\n min-height: 42px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-asset-row__icon {\n width: 24px;\n height: 28px;\n justify-self: end;\n object-fit: contain;\n}\n.se-import-asset-row__url {\n overflow: hidden;\n font-family:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n monospace;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.se-import-asset-row__state {\n color: #9b8cff;\n font-weight: 800;\n}\n.se-import-asset-row--done .se-import-asset-row__state,\n.se-import-asset-row--reused .se-import-asset-row__state {\n color: var(--se-green);\n}\n.se-import-asset-row--failed .se-import-asset-row__state,\n.se-import-asset-row__error {\n color: #ff8080;\n}\n.se-import-link-button {\n border: 0;\n background: transparent;\n color: #ff9ab6;\n cursor: pointer;\n font: inherit;\n font-weight: 800;\n}\n.se-import-overview {\n margin-top: 28px;\n border: 1px solid var(--se-border);\n border-radius: 12px;\n background: rgba(26, 30, 61, 0.62);\n padding: 28px;\n}\n.se-import-overview h3 {\n margin-bottom: 18px;\n font-size: 18px;\n font-weight: 800;\n}\n.se-import-row {\n display: grid;\n grid-template-columns: 190px minmax(0, 1fr) auto;\n gap: 18px;\n align-items: center;\n min-height: 48px;\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n color: var(--se-muted);\n}\n.se-import-row strong {\n min-width: 0;\n overflow: hidden;\n color: var(--se-text);\n font-weight: 600;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.se-import-row em {\n color: var(--se-muted);\n font-style: normal;\n}\n.se-import-review-card {\n display: flex;\n justify-content: space-between;\n gap: 18px;\n border: 1px solid var(--se-border);\n border-radius: 10px;\n background: rgba(30, 34, 71, 0.8);\n padding: 20px;\n}\n.se-import-review-card__type {\n font-family:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n monospace;\n font-weight: 800;\n}\n.se-import-review-card p {\n margin-top: 8px;\n color: var(--se-muted);\n line-height: 1.45;\n}\n.se-import-review-card__status {\n flex: 0 0 auto;\n color: #facc15;\n font-size: 11px;\n font-weight: 800;\n letter-spacing: 0.04em;\n text-transform: uppercase;\n}\n.se-import-review-bulk,\n.se-import-actions--inline {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: flex-end;\n gap: 10px;\n margin-top: 16px;\n}\n.se-import-muted {\n margin-top: 16px;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-generated {\n display: grid;\n gap: 12px;\n margin-top: 18px;\n}\n.se-import-generated__title {\n font-weight: 800;\n}\n.se-import-preview {\n width: 100%;\n height: 260px;\n border: 1px solid var(--se-border);\n border-radius: 8px;\n background: repeating-conic-gradient(#1a1c20 0% 25%, #1d1f24 0% 50%) 50% / 20px 20px;\n}\n.se-import-code {\n margin-top: 16px;\n}\n.se-import-code summary {\n cursor: pointer;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-code pre {\n max-height: 220px;\n margin: 10px 0 0;\n overflow: auto;\n border-radius: 8px;\n background: rgba(0, 0, 0, 0.28);\n padding: 12px;\n color: #d8dcff;\n font-size: 12px;\n}\n.se-import-error {\n margin-top: 18px;\n border: 1px solid rgba(239, 68, 68, 0.45);\n border-radius: 8px;\n background: rgba(220, 38, 38, 0.12);\n padding: 12px;\n color: #fca5a5;\n}\n.se-import-error__title {\n font-weight: 800;\n}\n.se-import-error__hint {\n margin-top: 6px;\n white-space: pre-wrap;\n}\n.se-import-actions {\n display: flex;\n justify-content: flex-end;\n gap: 12px;\n margin-top: 8px;\n}\n@media (max-width: 900px) {\n .se-import__shell {\n min-height: 0;\n padding: 24px 18px;\n }\n .se-import__content {\n min-height: 0;\n padding-top: 32px;\n }\n .se-import-stepper {\n grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));\n }\n .se-import-step__label {\n font-size: 13px;\n }\n .se-import-grid--four,\n .se-import-grid--two,\n .se-import-transfer {\n grid-template-columns: 1fr;\n }\n .se-import-transfer {\n justify-items: center;\n }\n .se-import-transfer__files {\n width: min(360px, 100%);\n }\n .se-import-option,\n .se-import-row,\n .se-import-asset-row {\n grid-template-columns: 1fr;\n }\n .se-import-mirror-head,\n .se-import-review-card {\n align-items: flex-start;\n flex-direction: column;\n }\n}\n');
5208
+ styleInject('.se-import,\n.se-import * {\n box-sizing: border-box;\n}\n.se-import {\n --se-bg: #17162a;\n --se-surface: #27264a;\n --se-panel: #171b38;\n --se-panel-2: #202449;\n --se-border: rgba(116, 124, 211, 0.24);\n --se-border-strong: rgba(126, 128, 255, 0.58);\n --se-text: #f5f4ff;\n --se-muted: #bab8d2;\n --se-primary: #ff4076;\n --se-purple: #393853;\n --se-green: #06c96f;\n --se-warn: #f7a42b;\n width: 100%;\n height: 100%;\n min-width: min(680px, 100%);\n color: var(--se-text);\n font-family: inherit;\n display: flex;\n flex-direction: column;\n min-height: 0;\n}\n.se-import__shell {\n border-radius: 0;\n padding: 28px 48px 24px;\n display: flex;\n flex-direction: column;\n flex: 1;\n min-height: 0;\n}\n.se-import__header {\n flex: 0 0 auto;\n}\nfooter.se-import-actions {\n flex: 0 0 auto;\n}\n.se-import__header {\n display: grid;\n justify-items: center;\n gap: 42px;\n}\n.se-import__title {\n display: inline-flex;\n align-items: center;\n gap: 10px;\n font-size: 20px;\n font-weight: 500;\n}\n.se-import-stepper {\n display: grid;\n width: min(760px, 100%);\n grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));\n}\n.se-import-step {\n position: relative;\n display: grid;\n justify-items: center;\n gap: 12px;\n min-width: 0;\n color: rgba(255, 255, 255, 0.72);\n}\n.se-import-step__label {\n color: var(--se-text);\n font-size: 18px;\n line-height: 1.1;\n}\n.se-import-step__line {\n position: absolute;\n top: 42px;\n left: 50%;\n width: 100%;\n height: 2px;\n background: rgba(255, 255, 255, 0.16);\n}\n.se-import-step:last-child .se-import-step__line {\n display: none;\n}\n.se-import-step__dot {\n z-index: 1;\n display: grid;\n width: 22px;\n height: 22px;\n place-items: center;\n border-radius: 50%;\n background: #47485e;\n color: #fff;\n font-size: 13px;\n font-weight: 700;\n line-height: 1;\n}\n.se-import-step--active .se-import-step__dot {\n background: var(--se-primary);\n}\n.se-import-step--done .se-import-step__dot {\n background: var(--se-green);\n}\n.se-import-step--done .se-import-step__line {\n background: var(--se-green);\n}\n.se-import-step--done + .se-import-step--active .se-import-step__line {\n background:\n linear-gradient(\n 90deg,\n var(--se-green),\n var(--se-primary));\n}\n.se-import__content {\n display: grid;\n place-items: center;\n padding: 64px 0 28px;\n flex: 1;\n min-height: 0;\n overflow-y: auto;\n}\n@media (max-height: 760px) {\n .se-import__shell {\n padding: 18px 32px 16px;\n }\n .se-import__content {\n padding: 32px 0 16px;\n }\n}\n.se-import-panel {\n width: min(100%, 1080px);\n padding: 28px;\n}\n.se-import-panel--narrow {\n width: min(100%, 1140px);\n}\n.se-import-panel--medium {\n width: min(100%, 880px);\n}\n.se-import-panel--wide {\n width: min(100%, 1000px);\n}\n.se-import-panel--confirm {\n width: min(100%, 800px);\n}\n.se-import-panel h2,\n.se-import-panel h3,\n.se-import-panel p {\n margin: 0;\n}\n.se-import-panel h2 {\n font-size: 26px;\n font-weight: 700;\n line-height: 1.15;\n}\n.se-import-panel > p {\n margin-top: 14px;\n color: var(--se-muted);\n font-size: 16px;\n line-height: 1.45;\n}\n.se-import-field {\n margin-top: 34px;\n}\n.se-import-field .mui-ls-input {\n --ls-control-height: 66px;\n}\n.se-import-field .MuiInputLabel-root {\n color: var(--se-text);\n font-weight: 700;\n}\n.se-import-field .MuiInputLabel-root.Mui-focused {\n color: #dfe1ff;\n}\n.se-import-field .MuiInputBase-root {\n background: rgba(28, 32, 66, 0.85);\n box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.04);\n font-size: 18px;\n}\n.se-import-field .MuiOutlinedInput-notchedOutline {\n border-color: var(--se-border-strong) !important;\n}\n.se-import-help {\n display: flex;\n gap: 18px;\n margin-top: 30px;\n border: 1px solid var(--se-purple);\n border-radius: 12px;\n padding: 24px;\n color: var(--white2);\n}\n.se-import-help__icon {\n display: grid;\n width: 30px;\n height: 30px;\n flex: 0 0 auto;\n place-items: center;\n border: 1px solid var(--se-purple);\n border-radius: 50%;\n color: var(--white2);\n font-weight: 800;\n}\n.se-import-help__title {\n color: var(--se-text);\n font-size: 18px;\n font-weight: 700;\n}\n.se-import-help ol {\n margin: 16px 0 0;\n padding-left: 18px;\n font-size: 15px;\n line-height: 1.7;\n}\n.se-import-help a {\n color: var(--primary);\n font-weight: 700;\n}\n.se-import-help--info {\n align-items: center;\n}\n.se-import-section-title {\n display: flex;\n gap: 1rem;\n margin-bottom: 1.5rem;\n}\n.se-import-section-title__num {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 46px;\n height: 46px;\n border: 1px solid var(--se-purple);\n border-radius: 50%;\n font-size: 1.5rem;\n font-weight: 800;\n}\n.se-import-section-title__content {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n.se-import-section-title h3 {\n font-size: 18px;\n font-weight: 800;\n}\n.se-import-section-title p {\n margin-top: 4px;\n color: var(--se-muted);\n font-size: 14px;\n}\n.se-import-grid {\n display: grid;\n gap: 8px;\n margin-top: 10px;\n}\n.se-import-grid--four {\n grid-template-columns: repeat(4, minmax(0, 1fr));\n}\n.se-import-grid--two {\n grid-template-columns: repeat(2, minmax(0, 1fr));\n}\n.se-import-stat {\n min-height: 116px;\n border: 1px solid rgba(255, 255, 255, 0.06);\n border-radius: 8px;\n background:\n linear-gradient(\n 135deg,\n rgba(42, 47, 92, 0.9),\n rgba(33, 38, 78, 0.9));\n padding: 24px 22px;\n}\n.se-import-stat--success {\n background:\n linear-gradient(\n 135deg,\n rgba(12, 91, 86, 0.72),\n rgba(32, 65, 76, 0.8));\n border-color: rgba(19, 201, 126, 0.25);\n}\n.se-import-stat--info {\n border-color: rgba(116, 104, 255, 0.8);\n box-shadow: inset 3px 0 0 #6e76ff;\n}\n.se-import-stat--warn,\n.se-import-stat--muted {\n box-shadow: inset 3px 0 0 var(--se-warn);\n}\n.se-import-stat__label {\n color: var(--se-muted);\n font-size: 12px;\n font-weight: 800;\n letter-spacing: 0.04em;\n text-transform: uppercase;\n}\n.se-import-stat__value {\n margin-top: 12px;\n color: #fff;\n font-size: 30px;\n font-weight: 800;\n line-height: 1;\n}\n.se-import-stat__sub {\n margin-top: 8px;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-option {\n display: grid;\n grid-template-columns: auto minmax(0, 1fr) auto auto;\n align-items: center;\n gap: 18px;\n border: 1px solid var(--se-purple);\n border-radius: 12px;\n background:\n linear-gradient(\n 135deg,\n rgba(35, 39, 81, 0.95),\n rgba(31, 35, 73, 0.95));\n box-shadow: inset 3px 0 0 var(--se-primary);\n cursor: pointer;\n padding: 22px;\n margin-bottom: 1rem;\n}\n.se-import-option--disabled {\n cursor: not-allowed;\n opacity: 0.5;\n}\n.se-import-option__icon {\n display: grid;\n width: 26px;\n height: 26px;\n place-items: center;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.22);\n color: #d8dbff;\n font-weight: 800;\n}\n.se-import-option__body {\n display: grid;\n gap: 8px;\n min-width: 0;\n}\n.se-import-option__title {\n font-size: 17px;\n font-weight: 800;\n}\n.se-import-option__copy {\n color: var(--se-muted);\n font-size: 14px;\n line-height: 1.45;\n}\n.se-import-option__count {\n color: #fff;\n font-size: 16px;\n}\n.se-import-option input {\n position: absolute;\n opacity: 0;\n pointer-events: none;\n}\n.se-import-toggle {\n position: relative;\n width: 48px;\n height: 28px;\n border-radius: 999px;\n box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);\n}\n.se-import-toggle::after {\n position: absolute;\n top: 4px;\n left: 4px;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n background: #fff;\n content: "";\n transition: transform 160ms ease;\n}\n.se-import-option input:checked + .se-import-toggle {\n background: var(--primary);\n}\n.se-import-option input:checked + .se-import-toggle::after {\n transform: translateX(20px);\n}\n.se-import-advanced {\n margin-top: 26px;\n border-radius: 10px;\n background: rgba(32, 36, 73, 0.7);\n padding: 24px;\n}\n.se-import-advanced summary {\n cursor: pointer;\n font-size: 18px;\n font-weight: 700;\n}\n.se-import-advanced p {\n margin-top: 10px;\n color: var(--se-muted);\n}\n.se-import-transfer {\n position: relative;\n display: grid;\n width: min(720px, 100%);\n min-height: 190px;\n grid-template-columns: 180px minmax(260px, 1fr) 180px;\n align-items: center;\n gap: 28px;\n margin: 0 auto 60px;\n}\n.se-import-transfer__source {\n position: relative;\n display: grid;\n width: 160px;\n height: 160px;\n place-items: center;\n animation: se-import-source-bounce 1.8s ease-in-out infinite;\n}\n.se-import-transfer__source::before {\n top: -13px;\n left: -13px;\n box-shadow: 155px 0 0 var(--se-primary);\n}\n.se-import-transfer__source::after {\n bottom: -13px;\n left: -13px;\n box-shadow: 155px 0 0 var(--se-primary);\n}\n.se-import-transfer__source img {\n width: 192px;\n height: 192px;\n object-fit: contain;\n}\n.se-import-transfer__source--lumia {\n animation-delay: 0.22s;\n}\n.se-import-transfer__files {\n position: relative;\n height: 130px;\n}\n.se-import-transfer__file {\n position: absolute;\n top: 50%;\n left: -18px;\n width: 56px;\n height: 66px;\n object-fit: contain;\n transform: translateY(-50%);\n filter: drop-shadow(0 10px 12px rgba(8, 9, 25, 0.25));\n animation: se-import-file-fly 2.4s cubic-bezier(0.35, 0, 0.25, 1) infinite;\n}\n.se-import-transfer__file--one {\n animation-delay: 0s;\n}\n.se-import-transfer__file--two {\n animation-delay: 0.38s;\n}\n.se-import-transfer__file--three {\n animation-delay: 0.76s;\n}\n.se-import-transfer__file--four {\n animation-delay: 1.14s;\n}\n@keyframes se-import-source-bounce {\n 0%, 100% {\n transform: translateY(0) scale(1);\n }\n 50% {\n transform: translateY(-8px) scale(1.025);\n }\n}\n@keyframes se-import-file-fly {\n 0% {\n opacity: 0;\n transform: translate(-10px, -50%) scale(0.82) rotate(-8deg);\n }\n 12% {\n opacity: 1;\n }\n 45% {\n transform: translate(145px, calc(-50% - 18px)) scale(1.08) rotate(5deg);\n }\n 82% {\n opacity: 1;\n }\n 100% {\n opacity: 0;\n transform: translate(330px, -50%) scale(0.9) rotate(10deg);\n }\n}\n.se-import-mirror-head {\n display: flex;\n align-items: end;\n justify-content: space-between;\n gap: 20px;\n}\n.se-import-mirror-head p {\n margin-top: 14px;\n color: var(--se-muted);\n font-size: 16px;\n}\n.se-import-mirror-head span {\n flex: 0 0 auto;\n color: var(--se-muted);\n font-weight: 700;\n}\n.se-import-progress {\n width: 100%;\n height: 14px;\n margin-top: 28px;\n overflow: hidden;\n border: 0;\n border-radius: 999px;\n background: rgba(255, 64, 118, 0.1);\n}\n.se-import-progress::-webkit-progress-bar {\n background: rgba(255, 64, 118, 0.1);\n}\n.se-import-progress::-webkit-progress-value {\n border-radius: 999px;\n background:\n linear-gradient(\n 90deg,\n #ff4076,\n #e7295f);\n}\n.se-import-progress::-moz-progress-bar {\n border-radius: 999px;\n background:\n linear-gradient(\n 90deg,\n #ff4076,\n #e7295f);\n}\n.se-import-asset-list {\n max-height: 360px;\n margin-top: 22px;\n overflow-y: auto;\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n}\n.se-import-asset-row {\n display: grid;\n grid-template-columns: 32px minmax(0, 1fr) auto auto;\n align-items: center;\n gap: 14px;\n min-height: 42px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-asset-row__icon {\n width: 24px;\n height: 28px;\n justify-self: end;\n object-fit: contain;\n}\n.se-import-asset-row__url {\n overflow: hidden;\n font-family:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n monospace;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.se-import-asset-row__state {\n color: #9b8cff;\n font-weight: 800;\n}\n.se-import-asset-row--done .se-import-asset-row__state,\n.se-import-asset-row--reused .se-import-asset-row__state {\n color: var(--se-green);\n}\n.se-import-asset-row--failed .se-import-asset-row__state,\n.se-import-asset-row__error {\n color: #ff8080;\n}\n.se-import-link-button {\n border: 0;\n background: transparent;\n color: #ff9ab6;\n cursor: pointer;\n font: inherit;\n font-weight: 800;\n}\n.se-import-overview {\n margin-top: 28px;\n border: 1px solid var(--se-border);\n border-radius: 12px;\n background: rgba(26, 30, 61, 0.62);\n padding: 28px;\n}\n.se-import-overview h3 {\n margin-bottom: 18px;\n font-size: 18px;\n font-weight: 800;\n}\n.se-import-row {\n display: grid;\n grid-template-columns: 190px minmax(0, 1fr) auto;\n gap: 18px;\n align-items: center;\n min-height: 48px;\n border-top: 1px solid rgba(255, 255, 255, 0.08);\n color: var(--se-muted);\n}\n.se-import-row strong {\n min-width: 0;\n overflow: hidden;\n color: var(--se-text);\n font-weight: 600;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n.se-import-row em {\n color: var(--se-muted);\n font-style: normal;\n}\n.se-import-review-card {\n display: flex;\n justify-content: space-between;\n gap: 18px;\n border: 1px solid var(--se-border);\n border-radius: 10px;\n background: rgba(30, 34, 71, 0.8);\n padding: 20px;\n}\n.se-import-review-card__type {\n font-family:\n ui-monospace,\n SFMono-Regular,\n Menlo,\n Monaco,\n Consolas,\n monospace;\n font-weight: 800;\n}\n.se-import-review-card p {\n margin-top: 8px;\n color: var(--se-muted);\n line-height: 1.45;\n}\n.se-import-review-card__status {\n flex: 0 0 auto;\n color: #facc15;\n font-size: 11px;\n font-weight: 800;\n letter-spacing: 0.04em;\n text-transform: uppercase;\n}\n.se-import-review-bulk,\n.se-import-actions--inline {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: flex-end;\n gap: 10px;\n margin-top: 16px;\n}\n.se-import-muted {\n margin-top: 16px;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-generated {\n display: grid;\n gap: 12px;\n margin-top: 18px;\n}\n.se-import-generated__title {\n font-weight: 800;\n}\n.se-import-preview {\n width: 100%;\n height: 260px;\n border: 1px solid var(--se-border);\n border-radius: 8px;\n background: repeating-conic-gradient(#1a1c20 0% 25%, #1d1f24 0% 50%) 50% / 20px 20px;\n}\n.se-import-code {\n margin-top: 16px;\n}\n.se-import-code summary {\n cursor: pointer;\n color: var(--se-muted);\n font-size: 13px;\n}\n.se-import-code pre {\n max-height: 220px;\n margin: 10px 0 0;\n overflow: auto;\n border-radius: 8px;\n background: rgba(0, 0, 0, 0.28);\n padding: 12px;\n color: #d8dcff;\n font-size: 12px;\n}\n.se-import-error {\n margin-top: 18px;\n border: 1px solid rgba(239, 68, 68, 0.45);\n border-radius: 8px;\n background: rgba(220, 38, 38, 0.12);\n padding: 12px;\n color: #fca5a5;\n}\n.se-import-error__title {\n font-weight: 800;\n}\n.se-import-error__hint {\n margin-top: 6px;\n white-space: pre-wrap;\n}\n.se-import-actions {\n display: flex;\n justify-content: flex-end;\n gap: 12px;\n margin-top: 8px;\n}\nfooter.se-import-actions:not(.se-import-actions--inline) {\n background: var(--se-bg, #17162a);\n border-top: 1px solid rgba(255, 255, 255, 0.06);\n margin: 0 -48px -24px;\n padding: 16px 48px;\n}\n@media (max-height: 760px) {\n footer.se-import-actions:not(.se-import-actions--inline) {\n margin: 0 -32px -16px;\n padding: 12px 32px;\n }\n}\n@media (max-width: 900px) {\n .se-import__shell {\n min-height: 0;\n padding: 24px 18px;\n }\n .se-import__content {\n min-height: 0;\n padding-top: 32px;\n }\n .se-import-stepper {\n grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));\n }\n .se-import-step__label {\n font-size: 13px;\n }\n .se-import-grid--four,\n .se-import-grid--two,\n .se-import-transfer {\n grid-template-columns: 1fr;\n }\n .se-import-transfer {\n justify-items: center;\n }\n .se-import-transfer__files {\n width: min(360px, 100%);\n }\n .se-import-option,\n .se-import-row,\n .se-import-asset-row {\n grid-template-columns: 1fr;\n }\n .se-import-mirror-head,\n .se-import-review-card {\n align-items: flex-start;\n flex-direction: column;\n }\n}\n');
5209
+
5210
+ // src/assets/source_se.svg
5211
+ var source_se_default = 'data:image/svg+xml,<svg width="157" height="164" viewBox="0 0 157 164" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<rect x="8.5" y="9.5" width="139" height="145" fill="%23242444" stroke="%23FF4076" stroke-width="3"/>%0A<path d="M87.1229 44.9224L89.0788 48.7235C102.041 53.3686 110.947 65.8756 110.947 79.7241C110.947 97.8858 96.1663 112.658 77.9929 112.658C59.8196 112.658 45.0457 97.8858 45.0457 79.7241C45.0457 65.8684 53.9519 53.3686 66.9143 48.7235L68.8702 44.9296C53.1725 49.0337 42 63.3222 42 79.7241C42 99.5592 58.1524 115.701 78.0001 115.701C97.8479 115.701 114 99.5592 114 79.7241C114 63.3222 102.828 49.0265 87.1229 44.9224Z" fill="url(%23paint0_linear_1424_495)"/>%0A<mask id="mask0_1424_495" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="47" y="48" width="62" height="63">%0A<path d="M77.9986 110.386C94.991 110.386 108.766 96.6196 108.766 79.638C108.766 62.6563 94.991 48.8899 77.9986 48.8899C61.0061 48.8899 47.231 62.6563 47.231 79.638C47.231 96.6196 61.0061 110.386 77.9986 110.386Z" fill="white"/>%0A</mask>%0A<g mask="url(%23mask0_1424_495)">%0A<path d="M108.825 78.9093C108.651 81.2463 105.036 90.9619 100.59 90.9619C98.7853 90.9619 98.3812 88.322 98.0853 86.3602C97.2841 89.4905 91.7629 96.2563 87.6706 96.2563C80.2295 96.2563 78.4974 80.5683 77.9921 78.4766C77.4869 80.561 75.7548 96.2563 68.3137 96.2563C64.2215 96.2563 58.7002 89.4977 57.8991 86.3602C57.6031 88.322 57.2062 90.9619 55.3947 90.9619C50.9487 90.9619 47.3328 81.2463 47.1596 78.9093C46.207 80.3158 46.2214 85.9995 47.636 89.6419C52.3561 101.795 64.1782 110.429 77.9849 110.429C91.7917 110.429 103.614 101.795 108.334 89.6419C109.749 85.9995 109.763 80.3231 108.81 78.9093H108.825Z" fill="url(%23paint1_linear_1424_495)"/>%0A<path d="M77.9988 96.2998C79.2258 98.5497 81.8961 101.918 86.4719 101.918C91.0478 101.918 94.6059 97.2014 95.7968 95.2105C95.4143 96.6097 94.642 99.6032 97.132 99.6032C102.841 99.6032 106.969 90.5798 106.969 90.5798C102.466 102.178 91.1777 110.422 77.9988 110.422C64.8199 110.422 53.532 102.178 49.0283 90.5798C49.0283 90.5798 53.1567 99.6032 58.8656 99.6032C61.3628 99.6032 60.5833 96.6021 60.2008 95.2105C61.3917 97.2014 64.8343 101.918 69.5257 101.918C74.1014 101.918 76.7646 98.5428 77.9988 96.2998Z" fill="url(%23paint2_linear_1424_495)"/>%0A<path d="M85.2523 106.419C82.4448 106.419 80.2579 105.546 77.9989 104.14C75.7399 105.539 73.553 106.419 70.7455 106.419C66.4656 106.419 65.1664 105.157 63.6147 104.003C63.658 105.474 65.1592 107.552 66.7109 108.301C70.1537 109.817 74.0221 110.422 77.9989 110.422C81.9756 110.422 85.8442 109.809 89.2868 108.301C90.8385 107.544 92.3326 105.474 92.3831 104.003C90.8313 105.157 89.5323 106.419 85.2523 106.419Z" fill="url(%23paint3_linear_1424_495)"/>%0A</g>%0A<path d="M73.8428 64.7073L69.4257 74.0622C69.2453 74.4446 69.1804 74.8773 69.2525 75.3029L70.6527 83.7562C70.696 84.0303 71.1002 84.0303 71.1435 83.7562L71.9013 79.1473C72.2116 77.2359 73.2292 75.5048 74.7522 74.3003L73.8428 64.7001V64.7073Z" fill="%23FF4800"/>%0A<path d="M82.1584 64.7073L86.5755 74.0622C86.7559 74.4446 86.8208 74.8773 86.7487 75.3029L85.3485 83.7634C85.3052 84.0376 84.9082 84.0376 84.8577 83.7634L84.0999 79.1473C83.7896 77.2359 82.7719 75.5048 81.249 74.3003L82.1584 64.7001V64.7073Z" fill="%23FF4800"/>%0A<path d="M84.5241 50.0291L78.4687 38.2867C78.2739 37.9044 77.7326 37.9044 77.5305 38.2867L71.4751 50.0219C71.2226 50.5052 71.1287 51.0606 71.2081 51.5943L74.261 73.0451L73.8063 75.0503L75.4158 79.4645C75.4519 79.5655 75.5457 79.6304 75.6468 79.6304H80.3308C80.4319 79.6304 80.5257 79.5655 80.5618 79.4645L82.1712 75.0503L81.7165 73.0451L84.7695 51.5943C84.8489 51.0534 84.7551 50.5052 84.5024 50.0219L84.5241 50.0291Z" fill="url(%23paint4_linear_1424_495)"/>%0A<path d="M77.7905 69.5107L75.6397 74.8265C75.3077 75.6488 75.2427 76.5576 75.4593 77.4159L77.7544 86.605C77.8193 86.8575 78.1802 86.8575 78.2379 86.605L80.5331 77.4159C80.7495 76.5576 80.6846 75.6488 80.3526 74.8265L78.2019 69.5107C78.1225 69.3232 77.8554 69.3232 77.7832 69.5107H77.7905Z" fill="%23FF4800"/>%0A<rect width="15" height="16" fill="%23FF4076"/>%0A<rect y="148" width="15" height="16" fill="%23FF4076"/>%0A<rect x="142" width="15" height="16" fill="%23FF4076"/>%0A<rect x="142" y="148" width="15" height="16" fill="%23FF4076"/>%0A<defs>%0A<linearGradient id="paint0_linear_1424_495" x1="78.0001" y1="24.4742" x2="78.0001" y2="138.609" gradientUnits="userSpaceOnUse">%0A<stop offset="0.3" stop-color="%2300ADFF"/>%0A<stop offset="1" stop-color="%231542FF"/>%0A</linearGradient>%0A<linearGradient id="paint1_linear_1424_495" x1="77.9993" y1="79.7965" x2="77.9993" y2="120.816" gradientUnits="userSpaceOnUse">%0A<stop stop-color="%23FCE3AD"/>%0A<stop offset="0.07" stop-color="%23FCE2A4"/>%0A<stop offset="0.19" stop-color="%23FCE08B"/>%0A<stop offset="0.33" stop-color="%23FCDD64"/>%0A<stop offset="0.48" stop-color="%23FCDA32"/>%0A<stop offset="0.66" stop-color="%23F9BC22"/>%0A<stop offset="1" stop-color="%23F57700"/>%0A</linearGradient>%0A<linearGradient id="paint2_linear_1424_495" x1="77.9988" y1="90.2913" x2="77.9988" y2="113.603" gradientUnits="userSpaceOnUse">%0A<stop stop-color="%23FCD619"/>%0A<stop offset="0.35" stop-color="%23F9B811"/>%0A<stop offset="1" stop-color="%23F57700"/>%0A</linearGradient>%0A<linearGradient id="paint3_linear_1424_495" x1="77.9989" y1="101.947" x2="77.9989" y2="112.694" gradientUnits="userSpaceOnUse">%0A<stop stop-color="%23F57700"/>%0A<stop offset="1" stop-color="%23FF4800"/>%0A</linearGradient>%0A<linearGradient id="paint4_linear_1424_495" x1="77.9996" y1="38.0054" x2="77.9996" y2="92.2167" gradientUnits="userSpaceOnUse">%0A<stop stop-color="%23E4E4E4"/>%0A<stop offset="0.88" stop-color="%23B6B8B8"/>%0A</linearGradient>%0A</defs>%0A</svg>%0A';
5212
+
5213
+ // src/assets/source_lumia.svg
5214
+ var source_lumia_default = 'data:image/svg+xml,<svg width="157" height="164" viewBox="0 0 157 164" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<rect x="8.5" y="9.5" width="139" height="145" fill="%23242444" stroke="%23FF4076" stroke-width="3"/>%0A<path d="M81.877 128.851C81.877 131.843 79.5456 132.572 76.6689 132.572C73.7923 132.572 71.4609 131.843 71.4609 128.851H81.877Z" fill="%23FF4076"/>%0A<path d="M77.3916 32C84.8793 32 92.6433 34.2919 98.5977 39.2305C104.635 44.2381 108.604 51.8052 108.604 61.8105C108.603 73.1268 103.496 81.0627 98.6982 88.5176C98.5049 88.8177 98.3117 89.1179 98.1201 89.417C93.1275 97.1931 88.4496 104.881 88.0957 116.606C88.0422 118.373 86.5954 119.776 84.8281 119.776H73.832L74.0488 120.9H82.7236C84.5288 120.901 85.9921 122.364 85.9922 124.169C85.9922 125.975 84.5288 127.438 82.7236 127.438H71.3496C69.7828 127.438 68.4363 126.326 68.1396 124.788L66.6631 117.126C66.4786 116.168 66.7307 115.178 67.3516 114.426C67.9726 113.674 68.8977 113.238 69.873 113.238H81.7549C82.8573 101.346 87.9524 93.1519 92.6182 85.8848C92.7267 85.7157 92.8346 85.5466 92.9424 85.3789C97.9058 77.6522 102.065 71.1771 102.065 61.8105C102.065 53.7021 98.9254 47.9983 94.4229 44.2637C89.8371 40.46 83.6294 38.5381 77.3916 38.5381C65.8229 38.5382 53.5382 46.8207 53.5381 62.1387C53.5381 70.5737 57.3337 78.2378 61.7773 85.8975C62.3932 86.9591 63.0286 88.0311 63.665 89.1064C65.2574 91.7971 66.8614 94.5084 68.2139 97.1221C68.5532 97.7775 68.8826 98.4382 69.1982 99.1035C69.7167 98.1764 70.2716 97.2596 70.8477 96.3564C73.0295 92.9368 75.7271 89.4027 78.3623 85.9502C78.789 85.3914 79.2138 84.8343 79.6348 84.2803C82.7122 80.2309 85.6068 76.2986 87.7383 72.4648C89.8803 68.6123 91.0742 65.165 91.0742 62.084C91.0742 58.1367 89.6207 55.1129 87.3291 53.0479C85.0029 50.9516 81.5869 49.6475 77.3916 49.6475C70.0529 49.6475 64.5294 55.5289 64.5293 62.084C64.5293 64.4095 65.0263 68.0042 66.2227 70.8975C67.4926 73.9687 68.9334 74.959 70.2285 74.959C71.187 74.9589 71.7005 74.6624 72.085 74.2744C72.5587 73.7963 73.0139 72.9773 73.3662 71.7422C74.0688 69.2783 74.0688 66.3016 74.0684 64.2012V64.0537C74.0686 62.2485 75.5317 60.7852 77.3369 60.7852C79.1422 60.7852 80.6062 62.2485 80.6064 64.0537V65.2021C80.5968 67.3108 80.4956 70.5813 79.6533 73.5352C79.1375 75.3439 78.2704 77.3208 76.7295 78.876C75.0993 80.5211 72.9061 81.497 70.2285 81.4971C64.7429 81.4971 61.6996 77.0691 60.1807 73.3955C58.5882 69.5443 57.9912 65.0667 57.9912 62.084C57.9913 51.8935 66.4665 43.1094 77.3916 43.1094C82.9298 43.1094 87.9897 44.8418 91.7061 48.1904C95.4567 51.5704 97.6123 56.3999 97.6123 62.084C97.6123 66.7738 95.8263 71.3721 93.4521 75.6426C91.0671 79.9317 87.9082 84.2005 84.8408 88.2363C84.4031 88.8123 83.9677 89.3835 83.5361 89.9492C80.8874 93.4208 78.3814 96.705 76.3604 99.873C73.9874 103.593 72.5611 106.741 72.2754 109.389C72.0981 111.031 70.7238 112.283 69.0723 112.307C67.4206 112.33 66.0104 111.118 65.7861 109.481C65.3962 106.635 64.1894 103.57 62.4072 100.126C61.1449 97.6868 59.6908 95.2302 58.1406 92.6113C57.4828 91.4997 56.8073 90.3588 56.1221 89.1777C51.6525 81.4736 47 72.474 47 62.1387C47.0001 42.4332 63.0409 32.0001 77.3916 32Z" fill="%23FF4076"/>%0A<path d="M71.6338 65.5146C72.1863 65.262 72.839 65.5052 73.0918 66.0576C73.3445 66.6102 73.1013 67.2627 72.5488 67.5156L68.7217 69.2666C68.1692 69.5191 67.5155 69.2768 67.2627 68.7246C67.0099 68.1719 67.2531 67.5186 67.8057 67.2656L71.6338 65.5146Z" fill="%23FF4076"/>%0A<path d="M82.208 65.5684C82.4316 65.0036 83.0708 64.7267 83.6357 64.9502L87.5498 66.5C88.1146 66.7236 88.3914 67.3628 88.168 67.9277C87.9445 68.4926 87.3052 68.7691 86.7402 68.5459L82.8262 66.9961C82.2611 66.7726 81.9845 66.1333 82.208 65.5684Z" fill="%23FF4076"/>%0A<path d="M66.9834 60.3623C67.1772 59.7865 67.8011 59.4771 68.377 59.6709L72.3662 61.0127C72.942 61.2065 73.2522 61.8304 73.0586 62.4062C72.8649 62.982 72.2408 63.2921 71.665 63.0986L67.6758 61.7559C67.0999 61.5621 66.7896 60.9382 66.9834 60.3623Z" fill="%23FF4076"/>%0A<path d="M86.4482 58.8301C86.9968 58.5686 87.6533 58.8014 87.915 59.3496C88.1767 59.8979 87.9437 60.5547 87.3955 60.8164L83.5977 62.6299C83.049 62.8917 82.3923 62.6587 82.1309 62.1104C81.8692 61.562 82.1012 60.9053 82.6494 60.6436L86.4482 58.8301Z" fill="%23FF4076"/>%0A<path d="M73.084 53.8389C73.6539 53.6282 74.2874 53.9193 74.498 54.4893L75.958 58.4395C76.1686 59.0093 75.8775 59.6428 75.3076 59.8535C74.7377 60.0642 74.1042 59.7721 73.8936 59.2021L72.4336 55.252C72.2231 54.6822 72.5143 54.0496 73.084 53.8389Z" fill="%23FF4076"/>%0A<path d="M80.2275 54.2715C80.4366 53.701 81.0691 53.4072 81.6396 53.6162C82.2102 53.8253 82.5031 54.4578 82.2939 55.0283L80.8447 58.9824C80.6357 59.5529 80.0041 59.8458 79.4336 59.6367C78.8631 59.4277 78.5702 58.7961 78.7793 58.2256L80.2275 54.2715Z" fill="%23FF4076"/>%0A<rect width="15" height="16" fill="%23FF4076"/>%0A<rect y="148" width="15" height="16" fill="%23FF4076"/>%0A<rect x="142" width="15" height="16" fill="%23FF4076"/>%0A<rect x="142" y="148" width="15" height="16" fill="%23FF4076"/>%0A</svg>%0A';
5215
+
5216
+ // src/assets/audio_file.svg
5217
+ var audio_file_default = 'data:image/svg+xml,<svg width="23" height="29" viewBox="0 0 23 29" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7675 8.5178V25.5534C22.7675 26.3064 22.4678 27.0287 21.9341 27.5611C21.4004 28.0936 20.6765 28.3925 19.9217 28.3926H2.84579C2.09106 28.3925 1.36706 28.0936 0.833383 27.5611C0.299704 27.0287 0 26.3064 0 25.5534V2.83914C3.46516e-05 2.08616 0.299694 1.36386 0.833383 0.831425C1.36706 0.298996 2.09106 4.12048e-05 2.84579 0H14.2297L22.7675 8.5178ZM15.5614 14.0434C15.4739 14.0241 15.383 14.0247 15.2956 14.045L9.28308 15.4475C9.1509 15.4784 9.03315 15.5534 8.94878 15.6597C8.86444 15.766 8.81842 15.8978 8.81843 16.0335V21.3474C8.45759 21.2198 8.06549 21.2104 7.6989 21.3203C7.33226 21.4304 7.01003 21.6543 6.77901 21.9596C6.54799 22.2648 6.42011 22.6357 6.4138 23.0184C6.4075 23.4012 6.52298 23.776 6.74378 24.0886C6.96461 24.4013 7.27932 24.6355 7.64215 24.7576C8.00495 24.8797 8.39716 24.8834 8.76206 24.7678C9.12698 24.6522 9.44546 24.4232 9.67178 24.1145C9.8981 23.8057 10.0205 23.433 10.0209 23.0501V18.9157L14.831 17.7934V20.1445C14.47 20.0168 14.0778 20.0074 13.7111 20.1174C13.3444 20.2275 13.0222 20.4514 12.7912 20.7567C12.5603 21.0619 12.4326 21.4328 12.4264 21.8155C12.4201 22.1983 12.5358 22.5734 12.7567 22.8861C12.9777 23.1987 13.2923 23.4328 13.6551 23.5547C14.018 23.6766 14.4105 23.6799 14.7754 23.5641C15.1403 23.4483 15.459 23.2193 15.6851 22.9104C15.9112 22.6015 16.0333 22.2288 16.0335 21.8461C16.0335 21.8032 16.032 21.7605 16.0292 21.7184C16.032 21.694 16.0335 21.6697 16.0335 21.6456V14.6306C16.0335 14.5401 16.013 14.4506 15.9736 14.3691C15.9343 14.2876 15.8769 14.216 15.8061 14.1597L15.8022 14.1569C15.7315 14.1017 15.649 14.0628 15.5614 14.0434ZM12.8068 9.93757H20.633L12.8068 2.12945V9.93757Z" fill="white"/>%0A</svg>%0A';
5218
+
5219
+ // src/assets/img_file.svg
5220
+ var img_file_default = 'data:image/svg+xml,<svg width="23" height="29" viewBox="0 0 23 29" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7445 13.2276C13.0784 13.2276 14.0388 13.2283 14.7699 13.3267C15.4894 13.4235 15.9266 13.6082 16.2504 13.9322C16.5743 14.2565 16.7591 14.694 16.8559 15.4135C16.9544 16.1445 16.9554 17.1047 16.9554 18.4385V19.8415C16.9554 21.1754 16.9547 22.1358 16.8563 22.8669C16.7595 23.5864 16.5748 24.0236 16.2508 24.3474C15.9265 24.6713 15.489 24.8561 14.7695 24.9529C14.0385 25.0514 13.0784 25.0524 11.7445 25.0524H10.3415C9.00759 25.0524 8.04722 25.0517 7.31607 24.9533C6.59659 24.8565 6.1594 24.6718 5.83564 24.3478C5.51168 24.0235 5.32694 23.586 5.23007 22.8665C5.13166 22.1355 5.13065 21.1754 5.13065 19.8415V18.4385C5.13065 17.1046 5.13135 16.1442 5.22968 15.4131C5.32646 14.6936 5.51124 14.2564 5.83524 13.9326C6.15948 13.6087 6.597 13.4239 7.31646 13.3271C8.04751 13.2287 9.00765 13.2276 10.3415 13.2276H11.7445ZM8.28842 17.3961C7.82545 17.4347 7.44577 17.667 7.10626 17.9398C6.82149 18.1692 6.50307 18.4799 6.13274 18.8496V19.8415C6.13274 20.2034 6.13329 20.5335 6.1347 20.8314L6.91641 20.0497C7.40027 19.5659 7.72283 19.2453 7.98583 19.0328C8.24538 18.8237 8.35792 18.7979 8.40703 18.7944C8.53557 18.7835 8.66468 18.8079 8.78007 18.8656C8.82286 18.8874 8.91773 18.9527 9.08187 19.2445C9.2474 19.5391 9.42752 19.9572 9.69683 20.5856L9.73402 20.6729L9.74615 20.6995C9.85061 20.9435 9.94729 21.1693 10.044 21.3474C10.1458 21.5332 10.2932 21.7566 10.5416 21.9103C10.8341 22.0915 11.1831 22.1586 11.5221 22.0993C11.8097 22.0481 12.0292 21.8962 12.1927 21.7615C12.3484 21.6324 12.5226 21.4582 12.7106 21.2702L12.7313 21.2495C13.0294 20.9514 13.2231 20.7583 13.3823 20.6244C13.5351 20.4954 13.6068 20.4645 13.6461 20.4525C13.7783 20.4126 13.9194 20.4126 14.0516 20.4525C14.0909 20.4645 14.1626 20.4954 14.3155 20.6244C14.4747 20.7583 14.6682 20.9512 14.9668 21.2499L15.9141 22.1972C15.9464 21.6935 15.9519 21.0675 15.9533 20.2517L15.9392 20.238C15.6656 19.9645 15.4301 19.7285 15.2197 19.551C14.9973 19.3637 14.7552 19.1989 14.4564 19.1091C14.0602 18.9896 13.6375 18.9896 13.2413 19.1091C12.9425 19.1996 12.7011 19.3637 12.478 19.551C12.2676 19.7285 12.0321 19.9649 11.7593 20.2384L11.739 20.258C11.5237 20.4726 11.3971 20.5989 11.2982 20.6796L11.2841 20.6917L11.2759 20.6756C11.2149 20.5634 11.1434 20.3997 11.0234 20.1198L10.9862 20.0329L10.9706 19.9965C10.7209 19.4143 10.5113 18.9245 10.3044 18.5556C10.0904 18.1761 9.82392 17.819 9.40873 17.6114C9.06229 17.4379 8.67451 17.3634 8.28842 17.3961ZM14.1996 14.9312C13.6185 14.9312 13.1474 15.4023 13.1474 15.9834C13.1474 16.5645 13.6185 17.0356 14.1996 17.0356C14.7807 17.0356 15.2518 16.5645 15.2518 15.9834C15.2518 15.4023 14.7807 14.9312 14.1996 14.9312Z" fill="white"/>%0A<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7675 8.5178V25.5534C22.7675 26.3064 22.4678 27.0287 21.9341 27.5611C21.4004 28.0936 20.6765 28.3925 19.9217 28.3926H2.84579C2.09106 28.3925 1.36706 28.0936 0.833383 27.5611C0.299704 27.0287 0 26.3064 0 25.5534V2.83914C3.46516e-05 2.08616 0.299694 1.36386 0.833383 0.831425C1.36706 0.298996 2.09106 4.12048e-05 2.84579 0H14.2297L22.7675 8.5178ZM10.3415 12.426C9.03021 12.426 8.00652 12.4252 7.2096 12.5324C6.40115 12.6413 5.76631 12.868 5.26843 13.3654C4.77051 13.863 4.54419 14.4978 4.43544 15.3062C4.32825 16.1032 4.32897 17.1273 4.32897 18.4385V19.8415C4.32897 21.1528 4.32816 22.1765 4.43544 22.9734C4.54428 23.7819 4.77099 24.4167 5.26843 24.9146C5.766 25.4125 6.40083 25.6388 7.20921 25.7476C8.00621 25.8548 9.03026 25.854 10.3415 25.854H11.7445C13.0558 25.854 14.0795 25.8549 14.8764 25.7476C15.6849 25.6387 16.3197 25.412 16.8176 24.9146C17.3155 24.417 17.5418 23.7822 17.6506 22.9738C17.7578 22.1768 17.757 21.1528 17.757 19.8415V18.4385C17.757 17.1272 17.7578 16.1035 17.6506 15.3066C17.5417 14.4982 17.315 13.8633 16.8176 13.3654C16.32 12.8675 15.6852 12.6412 14.8768 12.5324C14.0798 12.4253 13.0557 12.426 11.7445 12.426H10.3415ZM12.8068 9.93757H20.633L12.8068 2.12945V9.93757Z" fill="white"/>%0A</svg>%0A';
5221
+
5222
+ // src/assets/video_file.svg
5223
+ var video_file_default = 'data:image/svg+xml,<svg width="23" height="29" viewBox="0 0 23 29" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7675 8.5178V25.5534C22.7675 26.3064 22.4678 27.0287 21.9341 27.5611C21.4004 28.0936 20.6765 28.3925 19.9217 28.3926H2.84579C2.09106 28.3925 1.36706 28.0936 0.833383 27.5611C0.299704 27.0287 0 26.3064 0 25.5534V2.83914C3.46516e-05 2.08616 0.299694 1.36386 0.833383 0.831425C1.36706 0.298996 2.09106 4.12048e-05 2.84579 0H14.2297L22.7675 8.5178ZM7.89972 14.6224C7.44912 14.6224 7.01703 14.8013 6.69838 15.1199C6.37968 15.4386 6.20046 15.8709 6.20046 16.3216V20.9563C6.20046 21.407 6.37968 21.8393 6.69838 22.158C7.01703 22.4766 7.44912 22.6555 7.89972 22.6556H13.1525C13.6032 22.6556 14.0355 22.4767 14.3542 22.158C14.6729 21.8393 14.8517 21.407 14.8517 20.9563V19.9714L16.9648 21.8531C17.4622 22.296 18.2506 21.9425 18.2506 21.2757V15.7748C18.2506 15.1074 17.4622 14.7545 16.9648 15.1974L14.8517 17.0791V16.3216C14.8517 15.8709 14.6729 15.4386 14.3542 15.1199C14.0355 14.8012 13.6032 14.6224 13.1525 14.6224H7.89972ZM12.8068 9.93757H20.633L12.8068 2.12945V9.93757Z" fill="white"/>%0A</svg>%0A';
5224
+
5225
+ // src/assets/sound.svg
5226
+ var sound_default = 'data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path d="M18.622 3.21699C18.7399 3.31063 18.8351 3.42968 18.9005 3.56526C18.966 3.70084 19 3.84944 19 3.99999V15.667C19 15.707 18.9977 15.7473 18.993 15.788C18.9977 15.858 19 15.9287 19 16C18.9997 16.6368 18.7967 17.2569 18.4206 17.7707C18.0444 18.2844 17.5145 18.6652 16.9076 18.8578C16.3007 19.0505 15.6482 19.045 15.0446 18.8422C14.441 18.6394 13.9176 18.2498 13.5501 17.7298C13.1826 17.2098 12.9901 16.5864 13.0004 15.9497C13.0107 15.313 13.2234 14.6961 13.6076 14.1883C13.9918 13.6805 14.5276 13.3082 15.1375 13.1251C15.7473 12.942 16.3997 12.9577 17 13.17V9.25999L9 11.127V18.003C8.99924 18.6397 8.79595 19.2596 8.41953 19.7731C8.04312 20.2866 7.5131 20.667 6.90616 20.8593C6.29923 21.0516 5.64684 21.0458 5.0434 20.8428C4.43996 20.6398 3.91676 20.2501 3.54948 19.73C3.1822 19.2099 2.98991 18.5865 3.00041 17.9499C3.01091 17.3133 3.22367 16.6966 3.60789 16.1889C3.99212 15.6813 4.5279 15.309 5.13771 15.126C5.74752 14.943 6.39973 14.9588 7 15.171V6.33299C6.99997 6.10722 7.07635 5.88808 7.2167 5.71124C7.35705 5.53439 7.55312 5.41024 7.773 5.35899L17.773 3.02599C17.9183 2.99221 18.0694 2.99139 18.2151 3.02357C18.3608 3.05576 18.4974 3.12013 18.615 3.21199L18.622 3.21699Z" fill="white"/>%0A</svg>%0A';
5227
+
5228
+ // src/assets/img.svg
5229
+ var img_default = 'data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path fill-rule="evenodd" clip-rule="evenodd" d="M3.172 3.17199C2 4.34299 2 6.22899 2 9.99999V14C2 17.771 2 19.657 3.172 20.828C4.344 21.999 6.229 22 10 22H14C17.771 22 19.657 22 20.828 20.828C21.999 19.656 22 17.771 22 14V9.99999C22 7.15999 22 5.38999 21.5 4.18899V17C21.0246 17.0001 20.5538 16.9065 20.1146 16.7246C19.6753 16.5427 19.2762 16.2761 18.94 15.94L18.188 15.188C17.466 14.466 17.106 14.106 16.697 13.954C16.2474 13.7868 15.7526 13.7868 15.303 13.954C14.894 14.106 14.533 14.466 13.813 15.188L13.699 15.301C13.114 15.886 12.821 16.179 12.51 16.233C12.2685 16.2756 12.0197 16.2279 11.811 16.099C11.543 15.933 11.38 15.552 11.053 14.791L11 14.667C10.25 12.917 9.876 12.043 9.222 11.715C8.89266 11.5499 8.52411 11.4789 8.157 11.51C7.428 11.572 6.756 12.245 5.41 13.59L3.5 15.5V2.88699C3.384 2.97299 3.27467 3.06799 3.172 3.17199Z" fill="white"/>%0A<mask id="mask0_1424_377" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="2" y="2" width="20" height="20">%0A<path d="M2 10C2 6.229 2 4.343 3.172 3.172C4.344 2.001 6.229 2 10 2H14C17.771 2 19.657 2 20.828 3.172C21.999 4.344 22 6.229 22 10V14C22 17.771 22 19.657 20.828 20.828C19.656 21.999 17.771 22 14 22H10C6.229 22 4.343 22 3.172 20.828C2.001 19.656 2 17.771 2 14V10Z" fill="white"/>%0A</mask>%0A<g mask="url(%23mask0_1424_377)">%0A<path d="M2 10C2 6.229 2 4.343 3.172 3.172C4.344 2.001 6.229 2 10 2H14C17.771 2 19.657 2 20.828 3.172C21.999 4.344 22 6.229 22 10V14C22 17.771 22 19.657 20.828 20.828C19.656 21.999 17.771 22 14 22H10C6.229 22 4.343 22 3.172 20.828C2.001 19.656 2 17.771 2 14V10Z" stroke="white" stroke-width="4"/>%0A</g>%0A<path d="M15 11C16.1046 11 17 10.1046 17 9C17 7.89543 16.1046 7 15 7C13.8954 7 13 7.89543 13 9C13 10.1046 13.8954 11 15 11Z" fill="white"/>%0A</svg>%0A';
5230
+
5231
+ // src/assets/video.svg
5232
+ var video_default = 'data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">%0A<path d="M5 5.5C4.27065 5.5 3.57118 5.78973 3.05546 6.30546C2.53973 6.82118 2.25 7.52065 2.25 8.25V15.75C2.25 16.4793 2.53973 17.1788 3.05546 17.6945C3.57118 18.2103 4.27065 18.5 5 18.5H13.5C14.2293 18.5 14.9288 18.2103 15.4445 17.6945C15.9603 17.1788 16.25 16.4793 16.25 15.75V14.156L19.669 17.201C20.474 17.918 21.75 17.346 21.75 16.267V7.365C21.75 6.285 20.474 5.714 19.669 6.431L16.25 9.476V8.25C16.25 7.52065 15.9603 6.82118 15.4445 6.30546C14.9288 5.78973 14.2293 5.5 13.5 5.5H5Z" fill="white"/>%0A</svg>%0A';
5073
5233
 
5074
5234
  // src/se-import/ui/SEImportWizard.tsx
5075
- import { Fragment as Fragment3, jsx as jsx13, jsxs as jsxs7 } from "react/jsx-runtime";
5076
- var sourceSEIcon = new URL("../../assets/source_se.svg", import.meta.url).href;
5077
- var sourceLumiaIcon = new URL(
5078
- "../../assets/source_lumia.svg",
5079
- import.meta.url
5080
- ).href;
5081
- var audioFileIcon = new URL("../../assets/audio_file.svg", import.meta.url).href;
5082
- var imageFileIcon = new URL("../../assets/img_file.svg", import.meta.url).href;
5083
- var videoFileIcon = new URL("../../assets/video_file.svg", import.meta.url).href;
5084
- var audioIcon = new URL("../../assets/sound.svg", import.meta.url).href;
5085
- var imageIcon = new URL("../../assets/img.svg", import.meta.url).href;
5086
- var videoIcon = new URL("../../assets/video.svg", import.meta.url).href;
5235
+ import { Fragment as Fragment4, jsx as jsx13, jsxs as jsxs7 } from "react/jsx-runtime";
5087
5236
  var CORE_STEPS = [
5088
5237
  { key: "connect", label: "Connect" },
5089
5238
  { key: "pick", label: "Overlays" },
@@ -5332,7 +5481,7 @@ function StepModePicker({
5332
5481
  {
5333
5482
  primary: true,
5334
5483
  title: "Import everything from StreamElements",
5335
- body: /* @__PURE__ */ jsxs7(Fragment3, { children: [
5484
+ body: /* @__PURE__ */ jsxs7(Fragment4, { children: [
5336
5485
  /* @__PURE__ */ jsx13("div", { style: { marginBottom: 10 }, children: "Connect once and bring over your entire SE setup:" }),
5337
5486
  /* @__PURE__ */ jsx13(
5338
5487
  "ul",
@@ -5356,7 +5505,7 @@ function StepModePicker({
5356
5505
  ModeCard,
5357
5506
  {
5358
5507
  title: "Import a single overlay",
5359
- body: /* @__PURE__ */ jsxs7(Fragment3, { children: [
5508
+ body: /* @__PURE__ */ jsxs7(Fragment4, { children: [
5360
5509
  "Paste a single overlay's public preview URL to bring just that overlay over.",
5361
5510
  /* @__PURE__ */ jsx13("div", { style: { marginTop: 10, color: "var(--se-muted)" }, children: "No login required \u2014 perfect for trying one overlay before deciding whether to migrate your whole account." })
5362
5511
  ] }),
@@ -5521,7 +5670,7 @@ function StepPickOverlay({
5521
5670
  /* @__PURE__ */ jsx13("div", { className: "se-import-help__icon", children: "\u2026" }),
5522
5671
  /* @__PURE__ */ jsx13("div", { children: "Fetching your StreamElements overlays." })
5523
5672
  ] }),
5524
- error && /* @__PURE__ */ jsxs7(Fragment3, { children: [
5673
+ error && /* @__PURE__ */ jsxs7(Fragment4, { children: [
5525
5674
  /* @__PURE__ */ jsx13(ErrorPanel, { message: error.message, hint: error.hint }),
5526
5675
  /* @__PURE__ */ jsx13("div", { style: { marginTop: 12 }, children: /* @__PURE__ */ jsx13(LSButton, { type: "button", color: "secondary", onClick: onRetry, label: "Retry" }) })
5527
5676
  ] }),
@@ -5532,7 +5681,7 @@ function StepPickOverlay({
5532
5681
  /* @__PURE__ */ jsx13("p", { children: "This StreamElements account doesn't have any overlays yet. Create one in the SE dashboard, or use the legacy preview URL flow from the Connect step." })
5533
5682
  ] })
5534
5683
  ] }),
5535
- !loading && !error && overlays && overlays.length > 0 && /* @__PURE__ */ jsxs7(Fragment3, { children: [
5684
+ !loading && !error && overlays && overlays.length > 0 && /* @__PURE__ */ jsxs7(Fragment4, { children: [
5536
5685
  /* @__PURE__ */ jsxs7("div", { className: "se-import-actions se-import-actions--inline", style: { marginTop: 24, marginBottom: 16, justifyContent: "space-between", alignItems: "center", display: "flex" }, children: [
5537
5686
  /* @__PURE__ */ jsxs7("label", { style: { display: "inline-flex", alignItems: "center", gap: 8, cursor: "pointer", fontSize: 14, fontWeight: 600 }, children: [
5538
5687
  /* @__PURE__ */ jsx13(
@@ -5779,19 +5928,19 @@ function mirrorLabel(state) {
5779
5928
  }
5780
5929
  function fileTypeIcon(url) {
5781
5930
  const ext = filenameFromURL(url).split(".").pop()?.toLowerCase();
5782
- if (ext === "mp3" || ext === "wav" || ext === "ogg") return audioIcon;
5783
- if (ext === "webm" || ext === "mp4" || ext === "mov") return videoIcon;
5784
- return imageIcon;
5931
+ if (ext === "mp3" || ext === "wav" || ext === "ogg") return sound_default;
5932
+ if (ext === "webm" || ext === "mp4" || ext === "mov") return video_default;
5933
+ return img_default;
5785
5934
  }
5786
5935
  function AssetTransferAnimation() {
5787
5936
  return /* @__PURE__ */ jsxs7("div", { className: "se-import-transfer", "aria-hidden": "true", children: [
5788
- /* @__PURE__ */ jsx13("div", { className: "se-import-transfer__source se-import-transfer__source--se", children: /* @__PURE__ */ jsx13("img", { src: sourceSEIcon, alt: "" }) }),
5937
+ /* @__PURE__ */ jsx13("div", { className: "se-import-transfer__source se-import-transfer__source--se", children: /* @__PURE__ */ jsx13("img", { src: source_se_default, alt: "" }) }),
5789
5938
  /* @__PURE__ */ jsxs7("div", { className: "se-import-transfer__files", children: [
5790
5939
  /* @__PURE__ */ jsx13(
5791
5940
  "img",
5792
5941
  {
5793
5942
  className: "se-import-transfer__file se-import-transfer__file--one",
5794
- src: imageFileIcon,
5943
+ src: img_file_default,
5795
5944
  alt: ""
5796
5945
  }
5797
5946
  ),
@@ -5799,7 +5948,7 @@ function AssetTransferAnimation() {
5799
5948
  "img",
5800
5949
  {
5801
5950
  className: "se-import-transfer__file se-import-transfer__file--two",
5802
- src: audioFileIcon,
5951
+ src: audio_file_default,
5803
5952
  alt: ""
5804
5953
  }
5805
5954
  ),
@@ -5807,7 +5956,7 @@ function AssetTransferAnimation() {
5807
5956
  "img",
5808
5957
  {
5809
5958
  className: "se-import-transfer__file se-import-transfer__file--three",
5810
- src: imageFileIcon,
5959
+ src: img_file_default,
5811
5960
  alt: ""
5812
5961
  }
5813
5962
  ),
@@ -5815,12 +5964,12 @@ function AssetTransferAnimation() {
5815
5964
  "img",
5816
5965
  {
5817
5966
  className: "se-import-transfer__file se-import-transfer__file--four",
5818
- src: videoFileIcon,
5967
+ src: video_file_default,
5819
5968
  alt: ""
5820
5969
  }
5821
5970
  )
5822
5971
  ] }),
5823
- /* @__PURE__ */ jsx13("div", { className: "se-import-transfer__source se-import-transfer__source--lumia", children: /* @__PURE__ */ jsx13("img", { src: sourceLumiaIcon, alt: "" }) })
5972
+ /* @__PURE__ */ jsx13("div", { className: "se-import-transfer__source se-import-transfer__source--lumia", children: /* @__PURE__ */ jsx13("img", { src: source_lumia_default, alt: "" }) })
5824
5973
  ] });
5825
5974
  }
5826
5975
  function StepMirror({
@@ -5971,7 +6120,7 @@ function StepReview({
5971
6120
  /* @__PURE__ */ jsx13("summary", { children: "Original StreamElements config" }),
5972
6121
  /* @__PURE__ */ jsx13("pre", { children: JSON.stringify(item.seWidget.variables ?? {}, null, 2) })
5973
6122
  ] }),
5974
- /* @__PURE__ */ jsx13("div", { className: "se-import-actions se-import-actions--inline", children: state === "generated" ? /* @__PURE__ */ jsxs7(Fragment3, { children: [
6123
+ /* @__PURE__ */ jsx13("div", { className: "se-import-actions se-import-actions--inline", children: state === "generated" ? /* @__PURE__ */ jsxs7(Fragment4, { children: [
5975
6124
  /* @__PURE__ */ jsx13(
5976
6125
  LSButton,
5977
6126
  {
@@ -5999,7 +6148,7 @@ function StepReview({
5999
6148
  label: "Use this and continue"
6000
6149
  }
6001
6150
  )
6002
- ] }) : /* @__PURE__ */ jsxs7(Fragment3, { children: [
6151
+ ] }) : /* @__PURE__ */ jsxs7(Fragment4, { children: [
6003
6152
  !item.flaggedOff && /* @__PURE__ */ jsx13(
6004
6153
  LSButton,
6005
6154
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumiastream/ui",
3
- "version": "0.2.8-alpha.2",
3
+ "version": "0.2.8-alpha.5",
4
4
  "author": "Lumia Stream",
5
5
  "license": "ISC",
6
6
  "description": "Lumia UI Kit",