export default [ { title: '电话号码', screenshot: '', schema: { componentName: 'PisellPhone', props: { mode: 'edit', placeholder: '请输入手机号', countryCode: '+86', }, }, }, { title: '电话号码(国家码选择)', screenshot: '', schema: { componentName: 'PisellPhone', props: { mode: 'edit', showCountrySelector: true, commonCountryCodes: ['+86', '+1'], }, }, }, { title: '电话号码(只读可拨号)', screenshot: '', schema: { componentName: 'PisellPhone', props: { mode: 'read', value: '13800000000', countryCode: '+86', enableDial: true, }, }, }, { title: '电话号码(脱敏)', screenshot: '', schema: { componentName: 'PisellPhone', props: { mode: 'read', value: '13800000000', enableMasking: true, maskPattern: 'middle', }, }, }, ];