Files
twenty/packages/twenty-docs/l/ja/twenty-ui/progress-bar.mdx
T
Félix Malfait 5d438bb70c Docs: restructure navigation, add halftone illustrations, clean up hero images (#19728)
## Summary

- **New Getting Started section** with quickstart guide and restructured
navigation
- **Halftone-style illustrations** for User Guide and Developer
introduction cards using a Canvas 2D filter script
- **Removed hero images** (`image:` frontmatter + `<Frame><img>` blocks)
from all user-guide article pages
- **Cleaned up translations** (13 languages): removed hero images and
updated introduction cards to use halftone style
- **Cleaned up twenty-ui pages**: removed outdated hero images from
component docs
- **Deleted orphaned images**: `table.png`, `kanban.png`
- **Developer page**: fixed duplicate icon, switched to 3-column layout

## Test plan

- [ ] Verify docs site builds without errors
- [ ] Check User Guide introduction page renders halftone card images in
both light and dark mode
- [ ] Check Developer introduction page renders 3-column layout with
distinct icons
- [ ] Confirm article pages no longer show hero images at the top
- [ ] Spot-check a few translated pages to ensure hero images are
removed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: github-actions <github-actions@twenty.com>
2026-04-21 09:13:55 +02:00

63 lines
2.5 KiB
Plaintext

---
title: フィードバック
---
進捗やカウントダウンを示し、右から左に動きます。
<Tabs>
<Tab title="使用方法">
```jsx
import { ProgressBar } from "twenty-ui/feedback";
export const MyComponent = () => {
return (
<ProgressBar
duration={6000}
delay={0}
easing="easeInOut"
barHeight={10}
barColor="#4bb543"
autoStart={true}
/>
);
};
```
</Tab>
<Tab title="プロパティ">
| プロパティ | タイプ | 説明 | デフォルト |
| ----- | ------ | ------------------------------------------------------ | --------- |
| 継続時間 | 数 | プログレスバーアニメーションの総デュレーション(ミリ秒) | 3 |
| 遅延 | 数 | プログレスバーアニメーションの開始遅延時間(ミリ秒) | 0 |
| イージング | string | プログレスバーアニメーションのイージング関数 | easeInOut |
| バーの高さ | 数 | バーの高さ(ピクセル) | 24 |
| バーの色 | string | バーの色 | グレー80 |
| 自動開始 | ブール型 | `true`の場合、コンポーネントがマウントされたときにプログレスバーアニメーションが自動的に開始されます。 | `真` |
</Tab>
</Tabs>
## 円形プログレスバー
タスクの進捗を示し、ユーザーに進行中のプロセスを伝達したい場合に、ロード画面などでよく使用されます。
<Tabs>
<Tab title="使用方法">
```jsx
import { CircularProgressBar } from "@/ui/feedback/progress-bar/components/CircularProgressBar";
export const MyComponent = () => {
return <CircularProgressBar size={80} barWidth={6} barColor="green" />;
};
```
</Tab>
<Tab title="プロパティ">
| プロパティ | タイプ | 説明 | デフォルト |
| ----- | ------ | ------------- | ----- |
| サイズ | 数 | 円形プログレスバーのサイズ | 50 |
| バーの幅 | 数 | プログレスバーのラインの幅 | 5 |
| バーの色 | string | プログレスバーの色 | 現在の色 |
</Tab>
</Tabs>