props.d.ts.map 1.4 KB

1
  1. {"version":3,"sources":["../src/tab-bar/props.ts"],"names":[],"mappings":"AAEA;;KAEK;AAEL,OAAO,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AACvC,QAAA,MAAM,KAAK,EAAE,aA0CZ,CAAC;AAEF,eAAe,KAAK,CAAC","file":"props.d.ts","sourcesContent":["/* eslint-disable */\n\n/**\n * 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC\n * */\n\nimport { TdTabBarProps } from './type';\nconst props: TdTabBarProps = {\n /** 是否显示外边框 */\n bordered: {\n type: Boolean,\n value: true,\n },\n /** 标签颜色设置。示例:[选中标签的颜色, 未选中的标签颜色] */\n color: {\n type: Array,\n value: ['#0052D9', 'rgba(0, 0, 0, .6)'],\n },\n /** 组件类名,用于设置外层元素类名 */\n externalClasses: {\n type: Array,\n },\n /** 是否固定在底部 */\n fixed: {\n type: Boolean,\n value: true,\n },\n /** 是否为 iPhoneX 留出底部安全距离 */\n safeAreaInsetBottom: {\n type: Boolean,\n value: true,\n },\n /** 是否需要分割线 */\n split: {\n type: Boolean,\n value: true,\n },\n /** 当前选中标签的索引 */\n value: {\n type: String,\n optionalTypes: [Number, Array],\n value: null,\n },\n /** 当前选中标签的索引,非受控属性 */\n defaultValue: {\n type: String,\n optionalTypes: [Number, Array],\n value: undefined,\n },\n};\n\nexport default props;\n"]}