@fctc/interface-logic 4.0.3 → 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 +90 -90
package/dist/hooks.mjs
CHANGED
|
@@ -2195,6 +2195,7 @@ var isBase64File = (str) => {
|
|
|
2195
2195
|
};
|
|
2196
2196
|
|
|
2197
2197
|
// src/provider/react-query-provider.tsx
|
|
2198
|
+
import { useState as useState2 } from "react";
|
|
2198
2199
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
2199
2200
|
import { jsx } from "react/jsx-runtime";
|
|
2200
2201
|
|
|
@@ -2828,12 +2829,12 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
2828
2829
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
2829
2830
|
|
|
2830
2831
|
// src/provider/version-gate-provider.tsx
|
|
2831
|
-
import { useEffect as useEffect2, useState as
|
|
2832
|
+
import { useEffect as useEffect2, useState as useState3 } from "react";
|
|
2832
2833
|
import { useQueryClient } from "@tanstack/react-query";
|
|
2833
2834
|
import { Fragment, jsx as jsx4 } from "react/jsx-runtime";
|
|
2834
2835
|
|
|
2835
2836
|
// src/provider/env-provider.tsx
|
|
2836
|
-
import { createContext, useContext, useState as
|
|
2837
|
+
import { createContext, useContext, useState as useState4, useCallback } from "react";
|
|
2837
2838
|
|
|
2838
2839
|
// src/configs/axios-client.ts
|
|
2839
2840
|
import axios from "axios";
|