{"version":3,"sources":["../src/collapse/collapse-panel-props.ts"],"names":[],"mappings":"AAEA;;KAEK;AAEL,OAAO,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAC;AAC9C,QAAA,MAAM,KAAK,EAAE,oBA6BZ,CAAC;AAEF,eAAe,KAAK,CAAC","file":"collapse-panel-props.d.ts","sourcesContent":["/* eslint-disable */\n\n/**\n * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC\n * */\n\nimport { TdCollapsePanelProps } from './type';\nconst props: TdCollapsePanelProps = {\n /** 折叠面板内容 */\n content: {\n type: String,\n },\n /** 禁止当前面板展开,优先级大于 Collapse 的同名属性 */\n disabled: {\n type: null, // 要使用 undefined 的地方,不能用具体类型,不然会转成对应类型,导致无法识别undefined\n value: undefined,\n },\n /** 当前折叠面板展开图标,优先级大于 Collapse 的同名属性 */\n expandIcon: {\n type: Boolean,\n value: true,\n },\n /** 面板头内容 */\n header: {\n type: String,\n },\n /** 面板头的右侧区域,一般用于呈现面板操作 */\n headerRightContent: {\n type: String,\n optionalTypes: [Boolean],\n },\n /** 当前面板唯一标识,如果值为空则取当前面下标兜底作为唯一标识 */\n value: {\n type: String,\n optionalTypes: [Number],\n },\n};\n\nexport default props;\n"]}