@fctc/widget-logic 1.2.1 → 1.2.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.
- package/dist/hooks.js +1 -1
- package/dist/hooks.mjs +2 -2
- package/dist/index.js +756 -754
- package/dist/index.mjs +894 -892
- package/package.json +2 -1
package/dist/hooks.js
CHANGED
package/dist/hooks.mjs
CHANGED
|
@@ -590,7 +590,7 @@ var useCompany = (accessToken) => {
|
|
|
590
590
|
var use_company_default = useCompany;
|
|
591
591
|
|
|
592
592
|
// src/hooks/core/use-app-provider.tsx
|
|
593
|
-
import { evalJSONContext } from "@fctc/interface-logic";
|
|
593
|
+
import { evalJSONContext, MainProvider } from "@fctc/interface-logic";
|
|
594
594
|
import { jsx } from "react/jsx-runtime";
|
|
595
595
|
var AppProviderInitialValue = {
|
|
596
596
|
config: {},
|
|
@@ -643,7 +643,7 @@ var AppProvider = ({ children }) => {
|
|
|
643
643
|
action,
|
|
644
644
|
view
|
|
645
645
|
},
|
|
646
|
-
children
|
|
646
|
+
children: /* @__PURE__ */ jsx(MainProvider, { children })
|
|
647
647
|
}
|
|
648
648
|
);
|
|
649
649
|
};
|