@fctc/interface-logic 4.0.4 → 4.0.5
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 +125 -124
- package/dist/hooks.mjs +3 -2
- package/dist/provider.js +151 -149
- package/dist/provider.mjs +17 -15
- package/dist/services.js +124 -123
- package/dist/services.mjs +3 -2
- package/package.json +1 -1
package/dist/services.mjs
CHANGED
|
@@ -2170,6 +2170,7 @@ var toQueryString = (params) => {
|
|
|
2170
2170
|
};
|
|
2171
2171
|
|
|
2172
2172
|
// src/provider/react-query-provider.tsx
|
|
2173
|
+
import { useState as useState2 } from "react";
|
|
2173
2174
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
2174
2175
|
import { jsx } from "react/jsx-runtime";
|
|
2175
2176
|
|
|
@@ -2803,12 +2804,12 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
2803
2804
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
2804
2805
|
|
|
2805
2806
|
// src/provider/version-gate-provider.tsx
|
|
2806
|
-
import { useEffect as useEffect2, useState as
|
|
2807
|
+
import { useEffect as useEffect2, useState as useState3 } from "react";
|
|
2807
2808
|
import { useQueryClient } from "@tanstack/react-query";
|
|
2808
2809
|
import { Fragment, jsx as jsx4 } from "react/jsx-runtime";
|
|
2809
2810
|
|
|
2810
2811
|
// src/provider/env-provider.tsx
|
|
2811
|
-
import { createContext, useContext, useState as
|
|
2812
|
+
import { createContext, useContext, useState as useState4, useCallback } from "react";
|
|
2812
2813
|
|
|
2813
2814
|
// src/configs/axios-client.ts
|
|
2814
2815
|
import axios from "axios";
|