@arcanejs/toolkit 3.0.0 → 3.1.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.
|
@@ -27555,7 +27555,16 @@ body {
|
|
|
27555
27555
|
padding: ${(p2) => p2.theme.sizingPx.spacing}px;
|
|
27556
27556
|
`;
|
|
27557
27557
|
function rootComponent(props) {
|
|
27558
|
-
return /* @__PURE__ */ import_react15.default.createElement(
|
|
27558
|
+
return /* @__PURE__ */ import_react15.default.createElement(
|
|
27559
|
+
PreferredThemeProvider2,
|
|
27560
|
+
{
|
|
27561
|
+
dark: props.themes?.dark ?? DARK_THEME,
|
|
27562
|
+
light: props.themes?.light ?? LIGHT_THEME
|
|
27563
|
+
},
|
|
27564
|
+
/* @__PURE__ */ import_react15.default.createElement(BaseStyle, null),
|
|
27565
|
+
/* @__PURE__ */ import_react15.default.createElement(GlobalStyle, null),
|
|
27566
|
+
/* @__PURE__ */ import_react15.default.createElement(StyledStage, { ...props })
|
|
27567
|
+
);
|
|
27559
27568
|
}
|
|
27560
27569
|
|
|
27561
27570
|
// src/frontend/index.ts
|