@uniformdev/context-devtools 19.57.0 → 19.58.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.
- package/dist/esm/index.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/esm/index.js
CHANGED
|
@@ -2065,7 +2065,7 @@ function ContextDevTools(props) {
|
|
|
2065
2065
|
}
|
|
2066
2066
|
};
|
|
2067
2067
|
return /* @__PURE__ */ jsxs17(DevToolsSettingsContextProvider, { settings: props.settings, saveSettings: props.saveSettings, children: [
|
|
2068
|
-
/* @__PURE__ */ jsx27(DesignSystemTheme, {}),
|
|
2068
|
+
/* @__PURE__ */ jsx27(DesignSystemTheme, { disableReset: true, disableGlobalReset: true }),
|
|
2069
2069
|
/* @__PURE__ */ jsx27(Theme, {}),
|
|
2070
2070
|
/* @__PURE__ */ jsxs17(
|
|
2071
2071
|
"div",
|
|
@@ -2314,7 +2314,7 @@ function ToggleEmbeddedContextDevTools(props) {
|
|
|
2314
2314
|
return null;
|
|
2315
2315
|
}
|
|
2316
2316
|
return contextValue ? /* @__PURE__ */ jsxs19("div", { children: [
|
|
2317
|
-
/* @__PURE__ */ jsx30(DesignSystemTheme2, {}),
|
|
2317
|
+
/* @__PURE__ */ jsx30(DesignSystemTheme2, { disableGlobalReset: true, disableReset: true }),
|
|
2318
2318
|
/* @__PURE__ */ jsx30(Theme, {}),
|
|
2319
2319
|
/* @__PURE__ */ jsx30(EmbedToggleButton, { onClick: () => setDevtoolsOpen((prev) => !prev) }),
|
|
2320
2320
|
devtoolsOpen ? /* @__PURE__ */ jsx30(
|
package/dist/index.js
CHANGED
|
@@ -2099,7 +2099,7 @@ function ContextDevTools(props) {
|
|
|
2099
2099
|
}
|
|
2100
2100
|
};
|
|
2101
2101
|
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(DevToolsSettingsContextProvider, { settings: props.settings, saveSettings: props.saveSettings, children: [
|
|
2102
|
-
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(import_design_system14.Theme, {}),
|
|
2102
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(import_design_system14.Theme, { disableReset: true, disableGlobalReset: true }),
|
|
2103
2103
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(Theme, {}),
|
|
2104
2104
|
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
2105
2105
|
"div",
|
|
@@ -2345,7 +2345,7 @@ function ToggleEmbeddedContextDevTools(props) {
|
|
|
2345
2345
|
return null;
|
|
2346
2346
|
}
|
|
2347
2347
|
return contextValue ? /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("div", { children: [
|
|
2348
|
-
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_design_system15.Theme, {}),
|
|
2348
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_design_system15.Theme, { disableGlobalReset: true, disableReset: true }),
|
|
2349
2349
|
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(Theme, {}),
|
|
2350
2350
|
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(EmbedToggleButton, { onClick: () => setDevtoolsOpen((prev) => !prev) }),
|
|
2351
2351
|
devtoolsOpen ? /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/context-devtools",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.58.0",
|
|
4
4
|
"description": "Uniform Context developer tools components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@emotion/react": "11.11.1",
|
|
34
|
-
"@uniformdev/context": "19.
|
|
35
|
-
"@uniformdev/design-system": "19.
|
|
34
|
+
"@uniformdev/context": "19.58.0",
|
|
35
|
+
"@uniformdev/design-system": "19.58.0",
|
|
36
36
|
"formik": "^2.2.9",
|
|
37
37
|
"react-use": "^17.4.0",
|
|
38
38
|
"reakit": "^1.3.11",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "1e355c1405dc744f333cbce45766965c160c535c"
|
|
48
48
|
}
|