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
package/dist/components/index.js
CHANGED
|
@@ -4445,11 +4445,11 @@ function cloneConfig(value) {
|
|
|
4445
4445
|
return JSON.parse(JSON.stringify(value));
|
|
4446
4446
|
}
|
|
4447
4447
|
function ServerOnlyFetcher() {
|
|
4448
|
-
const {
|
|
4448
|
+
const { fetchServerOnly } = getScriptConfigInstance();
|
|
4449
4449
|
const { reinitialize } = useFormActions();
|
|
4450
4450
|
useEffect(() => {
|
|
4451
4451
|
let cancelled = false;
|
|
4452
|
-
|
|
4452
|
+
fetchServerOnly().then((full) => {
|
|
4453
4453
|
if (!cancelled && full) reinitialize(full);
|
|
4454
4454
|
}).catch(() => {
|
|
4455
4455
|
});
|