step-item-props.d.ts.map 1.1 KB

1
  1. {"version":3,"sources":["../src/steps/step-item-props.ts"],"names":[],"mappings":"AAEA;;KAEK;AAEL,OAAO,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AACzC,QAAA,MAAM,KAAK,EAAE,eA6BZ,CAAC;AAEF,eAAe,KAAK,CAAC","file":"step-item-props.d.ts","sourcesContent":["/* eslint-disable */\n\n/**\n * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC\n * */\n\nimport { TdStepItemProps } from './type';\nconst props: TdStepItemProps = {\n /** 步骤描述 */\n content: {\n type: String,\n value: '',\n },\n /** 组件类名,用于设置组件外层元素元素类名 */\n externalClasses: {\n type: Array,\n },\n /** 图标。传入 slot 代表使用插槽,其他字符串代表使用内置图标 */\n icon: {\n type: String,\n },\n /** 当前步骤的状态 */\n status: {\n type: String,\n value: 'default',\n },\n /** 子步骤条,仅支持 layout = 'vertical' 时 */\n subStepItems: {\n type: Array,\n value: [],\n },\n /** 标题 */\n title: {\n type: String,\n value: '',\n },\n};\n\nexport default props;\n"]}