local-operator-ui 0.4.7 → 0.5.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.
@@ -1,4 +1,4 @@
1
- import { s as styled, a0 as Box, aE as keyframes, J as Typography, a as reactExports, j as jsxRuntimeExports, t as useTheme, Z as LinearProgress, $ as Button, bD as ThemeProvider, b8 as darkTheme, bC as CssBaseline, bE as ReactDOM, R as React, bF as ErrorBoundary } from "./error-boundary-BLf1xS7L.js";
1
+ import { w as styled, a3 as Box, Z as keyframes, S as Typography, a as reactExports, j as jsxRuntimeExports, B as useTheme, ap as LinearProgress, a2 as Button, bL as getTheme, ac as DEFAULT_THEME, bK as ThemeProvider, bJ as CssBaseline, bM as ReactDOM, R as React, bN as ErrorBoundary } from "./fonts-ChEL5asK.js";
2
2
  const AppContainer = styled(Box)(() => ({
3
3
  display: "flex",
4
4
  height: "100vh",
@@ -381,18 +381,22 @@ const InstallerContent = () => {
381
381
  /* @__PURE__ */ jsxRuntimeExports.jsx(ProgressSection, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(InstallationProgress, {}) })
382
382
  ] });
383
383
  };
384
+ const defaultThemeOption = getTheme(DEFAULT_THEME);
385
+ const defaultMuiTheme$1 = defaultThemeOption.theme;
384
386
  const InstallerApp = () => {
385
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(ThemeProvider, { theme: darkTheme, children: [
387
+ return /* @__PURE__ */ jsxRuntimeExports.jsxs(ThemeProvider, { theme: defaultMuiTheme$1, children: [
386
388
  /* @__PURE__ */ jsxRuntimeExports.jsx(CssBaseline, {}),
387
389
  /* @__PURE__ */ jsxRuntimeExports.jsx(AppContainer, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(InstallerContent, {}) })
388
390
  ] });
389
391
  };
392
+ const defaultTheme = getTheme(DEFAULT_THEME);
393
+ const defaultMuiTheme = defaultTheme.theme;
390
394
  document.addEventListener("DOMContentLoaded", () => {
391
395
  const root = ReactDOM.createRoot(
392
396
  document.getElementById("app")
393
397
  );
394
398
  root.render(
395
- /* @__PURE__ */ jsxRuntimeExports.jsx(React.StrictMode, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs(ThemeProvider, { theme: darkTheme, children: [
399
+ /* @__PURE__ */ jsxRuntimeExports.jsx(React.StrictMode, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs(ThemeProvider, { theme: defaultMuiTheme, children: [
396
400
  /* @__PURE__ */ jsxRuntimeExports.jsx(CssBaseline, {}),
397
401
  /* @__PURE__ */ jsxRuntimeExports.jsx(ErrorBoundary, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(InstallerApp, {}) })
398
402
  ] }) })