fix
This commit is contained in:
parent
0b9538aab9
commit
005f0f69d1
|
|
@ -12,7 +12,7 @@ import { toast } from "../ui/toast";
|
|||
|
||||
const editorFormWidth = {} as Record<string, { w: number; f: any }>;
|
||||
|
||||
export { FMLocal } from "./typings";
|
||||
export type { FMLocal } from "./typings";
|
||||
|
||||
export const Form: FC<FMProps> = (props) => {
|
||||
const { PassProp, body, feature, sfd_field } = props;
|
||||
|
|
|
|||
12
exports.tsx
12
exports.tsx
|
|
@ -140,13 +140,13 @@ export { validate as validateField } from "@/comps/form/utils/validate";
|
|||
export { sortTree, treePrefix } from "@/comps/list/utils/sort-tree";
|
||||
|
||||
export { getFilter } from "@/comps/filter/utils/get-filter";
|
||||
export {
|
||||
export type {
|
||||
fieldType,
|
||||
FieldTypeCustom,
|
||||
FMLocal,
|
||||
formType,
|
||||
} from "@/comps/form/typings";
|
||||
export { TableListType } from "@/comps/list/utils/typings";
|
||||
export type { TableListType } from "@/comps/list/utils/typings";
|
||||
export { generateTableList as generateTableList } from "@/comps/md/gen/gen-table-list";
|
||||
export { generateSelect } from "@/comps/md/gen/md-select";
|
||||
export { MasterDetailType } from "@/comps/md/utils/typings";
|
||||
|
|
@ -161,11 +161,9 @@ export { call_prasi_events, prasi_events } from "lib/utils/prasi-events";
|
|||
export { Login } from "@/preset/login/Login";
|
||||
export { generateLogin } from "@/preset/login/utils/generate";
|
||||
export { logout } from "@/preset/login/utils/logout";
|
||||
export {
|
||||
registerSession,
|
||||
RG,
|
||||
UserSession,
|
||||
} from "@/preset/login/utils/register";
|
||||
export type { RG } from "@/preset/login/utils/register";
|
||||
export { registerSession } from "@/preset/login/utils/register";
|
||||
export type { UserSession } from "@/preset/login/utils/register";
|
||||
|
||||
export { Card } from "@/comps/custom/Card";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { useLocal } from "lib/utils/use-local";
|
||||
import { FC, useEffect } from "react";
|
||||
import { PFTypes } from "./typings";
|
||||
export { PFTypes } from "./typings";
|
||||
export type { PFTypes } from "./typings";
|
||||
export { generateProfile } from "./utils/generate";
|
||||
export const Profile: FC<PFTypes> = ({
|
||||
on_load,
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
export const _ = undefined
|
||||
Loading…
Reference in New Issue