reactivated 0.37.0 → 0.37.1
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/generator.mjs +2 -2
- package/package.json +1 -1
- package/src/generator.mts +2 -2
package/dist/generator.mjs
CHANGED
|
@@ -213,7 +213,7 @@ if (Object.keys(urls).length !== 0) {
|
|
|
213
213
|
}
|
|
214
214
|
sourceFile.addStatements("export type UUID = `${string}-${string}-${string}-${string}-${string}`;");
|
|
215
215
|
sourceFile.addStatements(`
|
|
216
|
-
export {Options} from "reactivated/dist/conf";
|
|
216
|
+
export type {Options} from "reactivated/dist/conf";
|
|
217
217
|
|
|
218
218
|
export const rpc = new RPC(typeof window != "undefined" ? rpcUtils.defaultRequester : null as any);
|
|
219
219
|
import React from "react"
|
|
@@ -253,7 +253,7 @@ export const {createRenderer, Iterator} = forms.bindWidgetType<_Types["globals"]
|
|
|
253
253
|
export type FieldHandler = forms.FieldHandler<_Types["globals"]["Widget"]>;
|
|
254
254
|
export type models = _Types["globals"]["models"];
|
|
255
255
|
|
|
256
|
-
export {FormHandler} from "reactivated/dist/forms";
|
|
256
|
+
export type {FormHandler} from "reactivated/dist/forms";
|
|
257
257
|
export const {Form, FormSet, Widget, useForm, useFormSet, ManagementForm} = forms;
|
|
258
258
|
`);
|
|
259
259
|
// tslint:disable-next-line
|
package/package.json
CHANGED
package/src/generator.mts
CHANGED
|
@@ -280,7 +280,7 @@ sourceFile.addStatements(
|
|
|
280
280
|
);
|
|
281
281
|
|
|
282
282
|
sourceFile.addStatements(`
|
|
283
|
-
export {Options} from "reactivated/dist/conf";
|
|
283
|
+
export type {Options} from "reactivated/dist/conf";
|
|
284
284
|
|
|
285
285
|
export const rpc = new RPC(typeof window != "undefined" ? rpcUtils.defaultRequester : null as any);
|
|
286
286
|
import React from "react"
|
|
@@ -320,7 +320,7 @@ export const {createRenderer, Iterator} = forms.bindWidgetType<_Types["globals"]
|
|
|
320
320
|
export type FieldHandler = forms.FieldHandler<_Types["globals"]["Widget"]>;
|
|
321
321
|
export type models = _Types["globals"]["models"];
|
|
322
322
|
|
|
323
|
-
export {FormHandler} from "reactivated/dist/forms";
|
|
323
|
+
export type {FormHandler} from "reactivated/dist/forms";
|
|
324
324
|
export const {Form, FormSet, Widget, useForm, useFormSet, ManagementForm} = forms;
|
|
325
325
|
`);
|
|
326
326
|
|