dirk-cfx-react 1.1.92 → 1.1.93
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/components/index.cjs +2 -2
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +2 -2
- package/dist/components/index.js.map +1 -1
- package/dist/hooks/index.cjs +37 -6
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.cts +11 -1
- package/dist/hooks/index.d.ts +11 -1
- package/dist/hooks/index.js +37 -6
- package/dist/hooks/index.js.map +1 -1
- package/dist/index.cjs +39 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +39 -14
- package/dist/index.js.map +1 -1
- package/dist/providers/index.cjs +0 -6
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.js +0 -6
- package/dist/providers/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -4452,11 +4452,11 @@ function cloneConfig(value) {
|
|
|
4452
4452
|
return JSON.parse(JSON.stringify(value));
|
|
4453
4453
|
}
|
|
4454
4454
|
function ServerOnlyFetcher() {
|
|
4455
|
-
const {
|
|
4455
|
+
const { fetchServerOnly } = getScriptConfigInstance();
|
|
4456
4456
|
const { reinitialize } = useFormActions();
|
|
4457
4457
|
react.useEffect(() => {
|
|
4458
4458
|
let cancelled = false;
|
|
4459
|
-
|
|
4459
|
+
fetchServerOnly().then((full) => {
|
|
4460
4460
|
if (!cancelled && full) reinitialize(full);
|
|
4461
4461
|
}).catch(() => {
|
|
4462
4462
|
});
|