Files
mixtape/zero.Backoffice.UI/app/modules/countries/schemas/editor.ts
T
2021-12-22 10:55:40 +01:00

13 lines
390 B
TypeScript

import { ZeroEditor } from "../../../editor/editor";
import { formatDate } from '../../../utils/dates';
const editor = new ZeroEditor('countries');
editor.resourcePrefix = '@country.fields.';
editor.field('name').text({ maxLength: 120 });
editor.field('code').text({ maxLength: 2 });
editor.field('isPreferred', { optional: true, horizontal: true }).toggle();
export default editor;