Skip to content

Commit 5a7e836

Browse files
committed
docs: 📝 amélioration de la documentation
- Ajout de Pagination dans la doc vitepress - Ajout de DsfrMultiSelect dans Storybook
1 parent 6319028 commit 5a7e836

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+553
-29
lines changed

‎.vitepress/config.ts‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,10 @@ const composants = [
240240
text: 'DsfrNotice',
241241
link: '/composants/DsfrNotice.md',
242242
},
243+
{
244+
text: 'DsfrPagination',
245+
link: '/composants/DsfrPagination.md',
246+
},
243247
{
244248
text: 'DsfrPicture',
245249
link: '/composants/DsfrPicture.md',

‎src/components/DsfrAlert/DsfrAlert.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const delay = (timeout = 100) =>
1111
export default {
1212
component: DsfrAlert,
1313
title: 'Composants/DsfrAlert',
14+
tags: ['message'],
1415
argTypes: {
1516
id: {
1617
control: 'text',

‎src/components/DsfrBadge/DsfrBadge.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import DsfrBadge from './DsfrBadge.vue'
66
export default {
77
component: DsfrBadge,
88
title: 'Composants/DsfrBadge',
9+
tags: ['chip'],
910
argTypes: {
1011
label: {
1112
control: 'text',

‎src/components/DsfrBreadcrumb/DsfrBreadcrumb.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fil d’ariane - DsfrBreadcrumb
1+
# Fil d’ariane - `DsfrBreadcrumb`
22

33
## 🌟 Introduction
44

‎src/components/DsfrButton/DsfrButton.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import DsfrButton from './DsfrButton.vue'
1010
export default {
1111
component: DsfrButton,
1212
title: 'Composants/DsfrButton',
13+
tags: ['bouton'],
1314
argTypes: {
1415
label: {
1516
control: 'text',

‎src/components/DsfrButton/DsfrButtonGroup.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Groupe de boutons - DsfrButtonGroup
1+
# Groupe de boutons - `DsfrButtonGroup`
22

33
## 🌟 Introduction
44

‎src/components/DsfrButton/DsfrButtonGroup.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import DsfrButtonGroup from './DsfrButtonGroup.vue'
1010
export default {
1111
component: DsfrButtonGroup,
1212
title: 'Composants/DsfrButtonGroup',
13+
tags: ['bouton'],
1314
argTypes: {
1415
buttons: {
1516
control: 'object',

‎src/components/DsfrCallout/DsfrCallout.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ const delay = (timeout = 100) =>
1414
const meta: Meta<typeof DsfrCallout> = {
1515
component: DsfrCallout,
1616
title: 'Composants/DsfrCallout',
17+
tags: ['message'],
1718
argTypes: {
1819
title: {
1920
control: 'text',

‎src/components/DsfrCheckbox/DsfrCheckbox.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import DsfrCheckbox from './DsfrCheckbox.vue'
88
export default {
99
component: DsfrCheckbox,
1010
title: 'Composants/DsfrCheckbox',
11+
tags: ['formulaire'],
1112
argTypes: {
1213
id: {
1314
control: 'text',

‎src/components/DsfrCheckbox/DsfrCheckboxSet.stories.ts‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import DsfrCheckboxSet from './DsfrCheckboxSet.vue'
88
export default {
99
component: DsfrCheckboxSet,
1010
title: 'Composants/DsfrCheckboxSet',
11+
tags: ['formulaire'],
1112
argTypes: {
1213
disabled: {
1314
control: 'boolean',

0 commit comments

Comments
 (0)