Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
128 lines
3.8 KiB
Vue
128 lines
3.8 KiB
Vue
<script setup>
|
|
import Button from './Button.vue';
|
|
|
|
// Constants for documentation
|
|
const VARIANTS = ['solid', 'outline', 'faded', 'link', 'ghost'];
|
|
const COLORS = ['blue', 'ruby', 'amber', 'slate', 'teal'];
|
|
const SIZES = ['default', 'sm', 'lg'];
|
|
</script>
|
|
|
|
<template>
|
|
<Story title="Components/Button" :layout="{ type: 'grid', width: '800px' }">
|
|
<!-- Basic Variants -->
|
|
<Variant title="Basic Variants">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button
|
|
v-for="variant in VARIANTS"
|
|
:key="variant"
|
|
:label="variant"
|
|
:variant="variant"
|
|
/>
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Colors -->
|
|
<Variant title="Color Variants">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button
|
|
v-for="color in COLORS"
|
|
:key="color"
|
|
:label="color"
|
|
:color="color"
|
|
/>
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Sizes -->
|
|
<Variant title="Size Variants">
|
|
<div class="flex flex-wrap items-center gap-2 p-4 bg-n-background">
|
|
<Button v-for="size in SIZES" :key="size" :label="size" :size="size" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Icons -->
|
|
<Variant title="Icons">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button label="Leading Icon" icon="i-lucide-plus" />
|
|
<Button label="Trailing Icon" icon="i-lucide-plus" trailing-icon />
|
|
<Button icon="i-lucide-plus" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Loading State -->
|
|
<Variant title="Loading State">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button label="Loading" is-loading />
|
|
<Button label="Loading" variant="outline" is-loading />
|
|
<Button is-loading icon="i-lucide-plus" />
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Disabled State -->
|
|
<Variant title="Disabled State">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button label="Disabled" disabled />
|
|
<Button label="Disabled Outline" variant="outline" disabled />
|
|
<Button label="Disabled Icon" icon="delete" disabled />
|
|
<Button
|
|
label="Disabled Destructive"
|
|
color="ruby"
|
|
disabled
|
|
icon="delete"
|
|
size="sm"
|
|
/>
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Color Combinations -->
|
|
<Variant title="Color & Variant Combinations">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<template v-for="color in COLORS" :key="color">
|
|
<Button
|
|
v-for="variant in VARIANTS"
|
|
:key="`${color}-${variant}`"
|
|
:label="`${color} ${variant}`"
|
|
:color="color"
|
|
:variant="variant"
|
|
/>
|
|
</template>
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Icon Positions -->
|
|
<Variant title="Icon Positions & Sizes">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<template v-for="size in SIZES" :key="size">
|
|
<Button
|
|
:label="`${size} Leading`"
|
|
icon="i-lucide-plus"
|
|
:size="size"
|
|
/>
|
|
<Button
|
|
:label="`${size} Trailing`"
|
|
icon="i-lucide-plus"
|
|
trailing-icon
|
|
:size="size"
|
|
/>
|
|
<Button icon="i-lucide-plus" :size="size" />
|
|
</template>
|
|
</div>
|
|
</Variant>
|
|
|
|
<!-- Ghost & Link Variants -->
|
|
<Variant title="Ghost & Link Variants">
|
|
<div class="flex flex-wrap gap-2 p-4 bg-n-background">
|
|
<Button label="Ghost Button" variant="ghost" color="slate" />
|
|
<Button
|
|
label="Ghost with Icon"
|
|
variant="ghost"
|
|
color="slate"
|
|
icon="i-lucide-plus"
|
|
/>
|
|
<Button label="Link Button" variant="link" />
|
|
<Button label="Link with Icon" variant="link" icon="i-lucide-plus" />
|
|
</div>
|
|
</Variant>
|
|
</Story>
|
|
</template>
|