UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

41 lines (38 loc) 1.41 kB
import { OhayoConfigService, OhayoSFConfig } from '@ohayo/util'; import { SFButton } from './interface'; import { SFUISchemaItem } from './schema/ui'; export const SF_DEFAULT_CONFIG: OhayoSFConfig = { formatMap: { 'date-time': { widget: 'date', showTime: true, format: `yyyy-MM-dd'T'HH:mm:ss.SSSxxx`, }, date: { widget: 'date', format: 'yyyy-MM-dd' }, 'full-date': { widget: 'date', format: 'yyyy-MM-dd' }, time: { widget: 'time', format: 'HH:mm:ss.SSSxxx' }, 'full-time': { widget: 'time' }, week: { widget: 'date', mode: 'week', format: 'yyyy-ww' }, month: { widget: 'date', mode: 'month', format: 'yyyy-MM' }, uri: { widget: 'upload' }, email: { widget: 'autocomplete', type: 'email' }, color: { widget: 'string', type: 'color' }, '': { widget: 'string' }, }, ingoreKeywords: ['type', 'enum'], liveValidate: true, autocomplete: null, firstVisual: false, onlyVisual: false, errors: {}, ui: {} as SFUISchemaItem, button: { submit_type: 'primary', reset_type: 'default' } as SFButton, uiDateStringFormat: 'yyyy-MM-dd HH:mm:ss', uiDateNumberFormat: 'T', uiTimeStringFormat: 'HH:mm:ss', uiTimeNumberFormat: 'T', uiEmailSuffixes: ['qq.com', '163.com', 'gmail.com', '126.com', 'aliyun.com'], }; export function mergeConfig(srv: OhayoConfigService): OhayoSFConfig { return srv.merge('sf', SF_DEFAULT_CONFIG)!; }