checkin
This commit is contained in:
parent
6ba6245eb1
commit
47d7f6397c
|
|
@ -255,7 +255,7 @@ export const FieldTypeInput: FC<{
|
|||
}
|
||||
}}
|
||||
//@ts-ignore
|
||||
inputmode="decimal"
|
||||
inputMode="decimal"
|
||||
value={format(value, {
|
||||
mask: "____-____-_______",
|
||||
replacement: { _: /\d/ },
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ export type FieldProp = {
|
|||
label: string;
|
||||
desc?: string;
|
||||
props?: any;
|
||||
mask?:string;
|
||||
mask?: string;
|
||||
kv?: { default: any; index: "preserve" | "auto-sort" };
|
||||
upload?: {
|
||||
mode: "single-file" | "multi-file";
|
||||
|
|
@ -221,7 +221,7 @@ export const formType = (active: { item_id: string }, meta: any) => {
|
|||
}
|
||||
|
||||
return `
|
||||
const ___data = ${data};
|
||||
const ___data = ${data} ;
|
||||
const fm = null as unknown as {
|
||||
status: "init" | "loading" | "saving" | "ready";
|
||||
data: typeof ___data;
|
||||
|
|
|
|||
10
exports.tsx
10
exports.tsx
|
|
@ -156,8 +156,8 @@ export type {
|
|||
fieldType,
|
||||
FieldTypeCustom,
|
||||
FMLocal,
|
||||
formType,
|
||||
} from "lib/comps/form/typings";
|
||||
export { formType } from "lib/comps/form/typings";
|
||||
export type { TableListType } from "lib/comps/list/utils/typings";
|
||||
export { generateTableList as generateTableList } from "lib/comps/md/gen/gen-table-list";
|
||||
export { generateSelect } from "lib/comps/md/gen/md-select";
|
||||
|
|
@ -169,9 +169,9 @@ export { GetValue } from "lib/utils/get-value";
|
|||
export { password } from "lib/utils/password";
|
||||
export { call_prasi_events, prasi_events } from "lib/utils/prasi-events";
|
||||
export { Card } from "lib/comps/custom/Card";
|
||||
export {registerSession} from "lib/preset/login/utils/register";
|
||||
export {logout} from "lib/preset/login/utils/logout";
|
||||
export {Login} from "lib/preset/login/Login"
|
||||
export { registerSession } from "lib/preset/login/utils/register";
|
||||
export { logout } from "lib/preset/login/utils/logout";
|
||||
export { Login } from "lib/preset/login/Login";
|
||||
/* MENU */
|
||||
export { Menu, MenuIcon } from "lib/preset/menu/Menu";
|
||||
|
||||
|
|
@ -193,4 +193,4 @@ export { formatTime, longDate, shortDate, timeAgo } from "lib/utils/date";
|
|||
export { getBasename, getPathname } from "lib/utils/pathname";
|
||||
|
||||
export { formatMoney } from "lib/comps/form/field/type/TypeMoney";
|
||||
export {Flow} from "lib/comps/ui/flow"
|
||||
export { Flow } from "lib/comps/ui/flow";
|
||||
|
|
|
|||
Loading…
Reference in New Issue