-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
543 additions
and
40 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
packages/products/tdesign-vue-next/src/tag/check-tag-group-props.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* eslint-disable */ | ||
|
||
/** | ||
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC | ||
* */ | ||
|
||
import { TdCheckTagGroupProps } from '../tag/type'; | ||
import { PropType } from 'vue'; | ||
|
||
export default { | ||
/** 透传标签选中态属性 */ | ||
checkedProps: { | ||
type: Object as PropType<TdCheckTagGroupProps['checkedProps']>, | ||
}, | ||
/** 是否支持选中多个标签 */ | ||
multiple: Boolean, | ||
/** 标签选项列表 */ | ||
options: { | ||
type: Array as PropType<TdCheckTagGroupProps['options']>, | ||
}, | ||
/** 透传标签未选态属性 */ | ||
uncheckedProps: { | ||
type: Object as PropType<TdCheckTagGroupProps['uncheckedProps']>, | ||
}, | ||
/** 选中标签值 */ | ||
value: { | ||
type: Array as PropType<TdCheckTagGroupProps['value']>, | ||
default: undefined as TdCheckTagGroupProps['value'], | ||
}, | ||
modelValue: { | ||
type: Array as PropType<TdCheckTagGroupProps['value']>, | ||
default: undefined as TdCheckTagGroupProps['value'], | ||
}, | ||
/** 选中标签值,非受控属性 */ | ||
defaultValue: { | ||
type: Array as PropType<TdCheckTagGroupProps['defaultValue']>, | ||
default: (): TdCheckTagGroupProps['defaultValue'] => [], | ||
}, | ||
/** null */ | ||
onChange: Function as PropType<TdCheckTagGroupProps['onChange']>, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.