1
0

devex: storybook for UI Package (#4984)

* add storybook

* clean up stories

* small fix

* add stories for all components

* add vintl

* default to dark mode

* fix  teleport

* add theme addon

* add new modal story

* delete broken stories

* move all stories to central stories folder

* fix paths

* add pnpm run storybook

* remove chromatic

* add add-stories.md

* fix types

* fix unncessary args field

* cover more addordion states

* pt2

* remove old vintl

* fix: missing style + ctx

---------

Co-authored-by: Calum H. (IMB11) <contact@cal.engineer>
This commit is contained in:
Truman Gao
2026-01-01 16:32:58 -08:00
committed by GitHub
parent 477d77cdc1
commit daf804947c
65 changed files with 5526 additions and 78 deletions

View File

@@ -0,0 +1,49 @@
import type { Meta, StoryObj } from '@storybook/vue3-vite'
import Toggle from '../../components/base/Toggle.vue'
const meta = {
title: 'Base/Toggle',
component: Toggle,
} satisfies Meta<typeof Toggle>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {
modelValue: false,
},
}
export const Checked: Story = {
args: {
modelValue: true,
},
}
export const Disabled: Story = {
args: {
modelValue: false,
disabled: true,
},
}
export const AllStates: Story = {
render: () => ({
components: { Toggle },
template: /*html*/ `
<div style="display: flex; flex-direction: column; gap: 1rem;">
<div style="display: flex; align-items: center; gap: 0.5rem;">
<Toggle :model-value="false" /> Off
</div>
<div style="display: flex; align-items: center; gap: 0.5rem;">
<Toggle :model-value="true" /> On
</div>
<div style="display: flex; align-items: center; gap: 0.5rem;">
<Toggle :model-value="false" :disabled="true" /> Disabled
</div>
</div>
`,
}),
}