Skip to content
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
9 changes: 9 additions & 0 deletions docs/angular/src/content/en/components/chip.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ The <ApiLink type="Chip" /> has an <ApiLink type="Chip" member="id" label="id" /
</igx-chip>
```

## Variants

The Angular chip supports several pre-defined stylistic variants. You can change the variant by assigning one of the supported values - `primary`, `info`, `success`, `warning`, or `danger` to the <ApiLink type="Chip" member="variant" label="variant" /> input property.

```html
<igx-chip variant="success">Success</igx-chip>
```

<Sample src="/data-display/chip-variants" height={100} alt="Angular Chip Variants Example" />
Comment thread
ChronosSF marked this conversation as resolved.

### Selection

Expand Down
10 changes: 10 additions & 0 deletions docs/angular/src/content/jp/components/chip.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,16 @@ Ignite UI for Angular Chips モジュールまたはディレクティブをイ
</igx-chip>
```

## バリアント

Angular チップは、いくつかの定義済みスタイル バリアントをサポートしています。<ApiLink type="Chip" member="variant" label="variant" /> 入力プロパティにサポートされている値のいずれか (`primary`、`info`、`success`、`warning`、または `danger`) を割り当てることで、バリアントを変更できます。

```html
<igx-chip variant="success">Success</igx-chip>
```

<Sample src="/data-display/chip-variants" height={100} alt="Angular Chip バリアントの例" />

### 選択

<Image src={selectingDefault} alt="Selecting Default" class="responsive-img" />
Expand Down
Loading