props.d.ts.map 1.2 KB

1
  1. {"version":3,"sources":["../src/swipe-cell/props.ts"],"names":[],"mappings":"AAEA;;;KAGK;AAEL,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,QAAA,MAAM,KAAK,EAAE,gBAmBZ,CAAC;AAEF,eAAe,KAAK,CAAC","file":"props.d.ts","sourcesContent":["/* eslint-disable */\n\n/**\n * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC\n * updated at 2021-11-24 16:40:31\n * */\n\nimport { TdSwipeCellProps } from './type';\nconst props: TdSwipeCellProps = {\n /** 是否禁用滑动 */\n disabled: {\n type: Boolean,\n },\n /** 左侧滑动操作项。所有行为同 `right` */\n left: {\n type: Array,\n },\n /** 操作项是否呈现为打开态,值为数组时表示分别控制左右滑动的展开和收起状态 */\n opened: {\n type: Boolean,\n optionalTypes: [Array],\n value: false,\n },\n /** 右侧滑动操作项。有两种定义方式,一种是使用数组,二种是使用插槽。`right.text` 表示操作文本,`right.className` 表示操作项类名,`right.style` 表示操作项样式,`right.onClick` 表示点击操作项后执行的回调函数。示例:`[{ text: '删除', style: 'background-color: red', onClick: () => {} }]` */\n right: {\n type: Array,\n },\n};\n\nexport default props;\n"]}