Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(n-dynamic-tags): add input-class tag-class prop #5264

Merged
merged 3 commits into from
Nov 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- `n-card` adds `content-class`, `footer-class`, `header-class` and `header-extra-class` props.
- `n-descriptions` adds `content-class` and `label-class` props.
- `n-upload` adds `file-list-class` and `trigger-class` props.
- `n-dynamic-input` adds `input-class` and `tag-class` props.

## 2.35.0

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- `n-card` 新增 `content-class`、`footer-class`、`header-class` 和 `header-extra-class` 属性
- `n-descriptions` 新增 `content-class` 和 `label-class` 属性
- `n-upload` 新增 `file-list-class` 和 `trigger-class` 属性
- `n-dynamic-input` 新增 `input-class` 和 `tag-class` 属性

## 2.35.0

Expand Down
2 changes: 2 additions & 0 deletions src/dynamic-tags/demos/enUS/index.demo-entry.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ on-create.vue
| default-value | `string[]` | `[]` | Default value. | |
| disabled | `boolean` | `false` | Whether the tag is disabled. | |
| input-props | `InputProps` | `undefined` | Props of internal `n-input`. | 2.25.0 |
| input-class | `string` | `undefined` | Customize the class of the input. | NEXT_VERSION |
| input-style | `string \| Object` | `undefined` | Customize the style of the input. | |
| max | `number` | `undefined` | Maximum number of tags. | |
| round | `boolean` | `false` | Whether the tag has rounded corners. | |
| render-tag | `((tag: string, index: number) => VNodeChild) \| ((tag: { label: string, value: string }, index: number) => VNodeChild)` | `undefined` | custom render tag. | 2.27.0 |
| size | `'small' \| 'medium' \| 'large'` | `'medium'` | Size of the tag. | |
| tag-class | `string` | `undefined` | Customize the class of the tag. | NEXT_VERSION |
| tag-style | `string \| Object` | `undefined` | Customize the style of the tag. | |
| type | `'default' \| 'primary' \| 'info' \| 'success' \| 'warning' \| 'error'` | `'default'` | Type of the tag. | |
| value | `string[]` | `undefined` | Value if manually set. | |
Expand Down
2 changes: 2 additions & 0 deletions src/dynamic-tags/demos/zhCN/index.demo-entry.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ on-create.vue
| default-value | `string[] \| Array<{ label: string, value: string }>` | `[]` | 非受控模式下的默认值 | |
| disabled | `boolean` | `false` | 是否禁用 | |
| input-props | `InputProps` | `undefined` | 内部 `n-input` 组件的属性 | 2.25.0 |
| input-class | `string` | `undefined` | 自定义输入框的类名 | NEXT_VERSION |
| input-style | `string \| Object` | `undefined` | 自定义输入框的样式 | |
| max | `number` | `undefined` | tag 的最大数量 | |
| round | `boolean` | `false` | 是否圆角 | |
| render-tag | `((tag: string, index: number) => VNodeChild) \| ((tag: { label: string, value: string }, index: number) => VNodeChild)` | `undefined` | 自定义渲染 tag | 2.27.0 |
| size | `'small' \| 'medium' \| 'large'` | `'medium'` | 尺寸大小 | |
| tag-class | `string` | `undefined` | 自定义标签的类名 | NEXT_VERSION |
| tag-style | `string \| Object` | `undefined` | 自定义标签的样式 | |
| type | `'default' \| 'primary' \| 'info' \| 'success' \| 'warning' \| 'error'` | `'default'` | 标签类型 | |
| value | `string[] \| Array<{ label: string, value: string }>` | `undefined` | 受控模式下的值 | |
Expand Down
6 changes: 6 additions & 0 deletions src/dynamic-tags/src/DynamicTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ export const dynamicTagsProps = {
default: () => []
},
value: Array as PropType<Array<string | DynamicTagsOption>>,
inputClass: String,
inputStyle: [String, Object] as PropType<string | CSSProperties>,
inputProps: Object as PropType<InputProps>,
max: Number as PropType<number>,
tagClass: String,
tagStyle: [String, Object] as PropType<string | CSSProperties>,
renderTag: Function as PropType<
| ((tag: string, index: number) => VNodeChild)
Expand Down Expand Up @@ -218,6 +220,7 @@ export default defineComponent({
default: () => {
const {
mergedTheme,
tagClass,
tagStyle,
type,
round,
Expand All @@ -227,6 +230,7 @@ export default defineComponent({
mergedDisabled,
showInput,
inputValue,
inputClass,
inputStyle,
inputSize,
inputForceFocused,
Expand All @@ -247,6 +251,7 @@ export default defineComponent({
key={index}
theme={mergedTheme.peers.Tag}
themeOverrides={mergedTheme.peerOverrides.Tag}
class={tagClass}
style={tagStyle}
type={type}
round={round}
Expand Down Expand Up @@ -276,6 +281,7 @@ export default defineComponent({
placeholder=""
size={inputSize}
style={inputStyle}
class={inputClass}
autosize
{...this.inputProps}
ref="inputInstRef"
Expand Down