@m4l/layouts 9.1.2 → 9.1.3

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,7 +1,7 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { unstable_HistoryRouter } from "react-router-dom";
3
3
  import { EnvironmentProvider, HostToolsProvider, NetworkProvider, DomainCountryProvider } from "@m4l/core";
4
- import { LocalesProvider, HostThemeProvider, ResponsiveContainerProvider, FormatterProvider } from "@m4l/graphics";
4
+ import { DeviceTypeProvider, LocalesProvider, HostThemeProvider, ResponsiveContainerProvider, FormatterProvider } from "@m4l/graphics";
5
5
  import { BaseModule, WindowToolsMFProvider, DynamicMFParmsProvider, AppearanceComponentProvider } from "@m4l/components";
6
6
  import { M as MFWindowsTitle } from "../MFWindowsTitle/MFWindowsTitle.js";
7
7
  function MFHostApp(props) {
@@ -24,7 +24,7 @@ function MFHostApp(props) {
24
24
  observedDivRef,
25
25
  isAddEditModule = false
26
26
  } = props;
27
- return /* @__PURE__ */ jsx(EnvironmentProvider, { ...environment, children: /* @__PURE__ */ jsx(HostToolsProvider, { ...hostTools, children: /* @__PURE__ */ jsx(NetworkProvider, { axiosOperation, children: /* @__PURE__ */ jsx(LocalesProvider, { isMicroFrontEnd: true, localeHost: currentLocale, children: /* @__PURE__ */ jsx(
27
+ return /* @__PURE__ */ jsx(EnvironmentProvider, { ...environment, children: /* @__PURE__ */ jsx(HostToolsProvider, { ...hostTools, children: /* @__PURE__ */ jsx(NetworkProvider, { axiosOperation, children: /* @__PURE__ */ jsx(DeviceTypeProvider, { children: /* @__PURE__ */ jsx(LocalesProvider, { isMicroFrontEnd: true, localeHost: currentLocale, children: /* @__PURE__ */ jsx(
28
28
  HostThemeProvider,
29
29
  {
30
30
  isMicroFrontEnd: true,
@@ -53,7 +53,7 @@ function MFHostApp(props) {
53
53
  }
54
54
  ) }) })
55
55
  }
56
- ) }) }) }) });
56
+ ) }) }) }) }) });
57
57
  }
58
58
  export {
59
59
  MFHostApp as M
@@ -1,6 +1,6 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import { DomainCountryProvider } from "@m4l/core";
3
- import { FormatterProvider, ResponsiveContainerProvider } from "@m4l/graphics";
3
+ import { DeviceTypeProvider, FormatterProvider, ResponsiveContainerProvider } from "@m4l/graphics";
4
4
  import { BaseModule } from "@m4l/components";
5
5
  function MFNoAuthApp(props) {
6
6
  const {
@@ -21,7 +21,7 @@ function MFNoAuthApp(props) {
21
21
  decimal_symbol: ".",
22
22
  thousands_symbol: ","
23
23
  };
24
- return /* @__PURE__ */ jsx(DomainCountryProvider, { isMicroFrontEnd: true, ...domianCountry, children: /* @__PURE__ */ jsx(
24
+ return /* @__PURE__ */ jsx(DeviceTypeProvider, { children: /* @__PURE__ */ jsx(DomainCountryProvider, { isMicroFrontEnd: true, ...domianCountry, children: /* @__PURE__ */ jsx(
25
25
  BaseModule,
26
26
  {
27
27
  isAuth,
@@ -32,7 +32,7 @@ function MFNoAuthApp(props) {
32
32
  privileges,
33
33
  children: /* @__PURE__ */ jsx(FormatterProvider, { isMicroFrontEnd: true, ...formatters, children: /* @__PURE__ */ jsx(ResponsiveContainerProvider, { observedDivRef, children }) })
34
34
  }
35
- ) });
35
+ ) }) });
36
36
  }
37
37
  export {
38
38
  MFNoAuthApp as M
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/layouts",
3
- "version": "9.1.2",
3
+ "version": "9.1.3",
4
4
  "license": "UNLICENSED",
5
5
  "author": "M4L Team",
6
6
  "lint-staged": {