Skip to content

Commit f606c76

Browse files
authored
Merge pull request #990 from dnum-mi/develop
Develop
2 parents ef3543b + 5f5a788 commit f606c76

File tree

70 files changed

+2610
-3992
lines changed

Some content is hidden

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

70 files changed

+2610
-3992
lines changed

.github/workflows/run-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ jobs:
3434
run: pnpm check-exports-ci
3535
- name: Test
3636
run: pnpm test
37-
- name: Install Playwright
37+
- name: Install Playwright dependencies
3838
run: pnpx playwright install --with-deps
39+
- name: Install Playwright
40+
run: pnpx playwright install
3941
- name: Build Storybook
4042
run: pnpm build-storybook --quiet
4143
- name: Serve Storybook and run tests

.storybook/main.ts

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ const config: StorybookConfig = {
88
'@storybook/addon-interactions',
99
'@storybook/addon-themes',
1010
'@storybook/addon-a11y',
11-
'@storybook/addon-styling',
12-
'@storybook/addon-mdx-gfm',
1311
'@chromatic-com/storybook',
1412
],
1513
framework: {

.storybook/preview.ts

+29-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { withThemeByDataAttribute } from '@storybook/addon-styling'
21
import { themes } from '@storybook/theming'
32
import { setup } from '@storybook/vue3'
43
import { FocusTrap } from 'focus-trap-vue'
@@ -20,19 +19,11 @@ import '../src/main.css'
2019
import './theme.css'
2120
// import '@gouvfr/dsfr/dist/core/core.min.css'
2221

23-
export const decorators = [
24-
withThemeByDataAttribute({
25-
themes: {
26-
Clair: 'light',
27-
Sombre: 'dark',
28-
},
29-
defaultTheme: 'light',
30-
attributeName: 'data-fr-theme',
31-
}),
32-
]
33-
3422
const preview: Preview = {
3523
parameters: {
24+
backgrounds: {
25+
disable: true,
26+
},
3627
docs: {
3728
theme: { ...themes.normal, ...VueDsfrTheme },
3829
},
@@ -95,6 +86,32 @@ const preview: Preview = {
9586
},
9687

9788
tags: ['autodocs'],
89+
90+
// Gestion des thèmes clair et sombre des stories
91+
globalTypes: {
92+
theme: {
93+
description: 'Global theme for components',
94+
toolbar: {
95+
// The label to show for this toolbar item
96+
title: 'Thème',
97+
icon: 'circlehollow',
98+
// Array of plain string values or MenuItem shape (see below)
99+
items: ['Thème clair', 'Thème sombre'],
100+
// Change title based on selected value
101+
dynamicTitle: true,
102+
},
103+
},
104+
},
105+
initialGlobals: {
106+
theme: 'Thème clair',
107+
},
108+
decorators: [
109+
(story, context) => {
110+
const selectedTheme = context.globals.theme.includes('clair') ? 'light' : 'dark'
111+
document.documentElement.setAttribute('data-fr-theme', selectedTheme)
112+
return story()
113+
},
114+
],
98115
}
99116

100117
const RouterLink = defineComponent({

.vitepress/config.ts

+4
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',

demo-app/App.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { computed, ref } from 'vue'
2+
import { computed, ref, useId } from 'vue'
33
import { useRoute } from 'vue-router'
44
55
import DsfrBreadcrumb from '../src/components/DsfrBreadcrumb/DsfrBreadcrumb.vue'
@@ -64,6 +64,7 @@ const quickLinks: DsfrHeaderProps['quickLinks'] = [
6464
const route = useRoute()
6565
const navItems: DsfrNavigationProps['navItems'] = [
6666
{
67+
id: useId(),
6768
to: { name: 'Home' },
6869
text: 'Accueil',
6970
},

package.json

+50-51
Original file line numberDiff line numberDiff line change
@@ -70,79 +70,78 @@
7070
"commitlint": "commitlint --edit"
7171
},
7272
"peerDependencies": {
73-
"@iconify/vue": "^4.1.2",
74-
"vue": "^3.4.38",
75-
"vue-router": "^4.4.3"
73+
"@iconify/vue": "^4.2.0",
74+
"vue": "^3.5.13",
75+
"vue-router": "^4.5.0"
7676
},
7777
"dependencies": {
7878
"@gouvfr/dsfr": "~1.12.1",
79-
"focus-trap": "^7.6.0",
79+
"focus-trap": "^7.6.2",
8080
"focus-trap-vue": "^4.0.3",
81-
"vue": "^3.5.12",
82-
"vue-router": "^4.4.5"
81+
"vue": "^3.5.13",
82+
"vue-router": "^4.5.0"
8383
},
8484
"devDependencies": {
85-
"@antfu/eslint-config": "^3.8.0",
86-
"@chromatic-com/storybook": "^2.0.2",
87-
"@commitlint/cli": "^19.5.0",
88-
"@commitlint/config-conventional": "^19.5.0",
89-
"@iconify/vue": "^4.1.2",
90-
"@playwright/test": "1.48.1",
91-
"@storybook/addon-a11y": "^8.3.6",
92-
"@storybook/addon-docs": "^8.3.6",
93-
"@storybook/addon-essentials": "^8.3.6",
94-
"@storybook/addon-interactions": "^8.3.6",
95-
"@storybook/addon-links": "^8.3.6",
96-
"@storybook/addon-mdx-gfm": "^8.3.6",
97-
"@storybook/addon-styling": "^1.3.7",
98-
"@storybook/addon-themes": "^8.3.6",
99-
"@storybook/blocks": "^8.3.6",
100-
"@storybook/test": "^8.3.6",
101-
"@storybook/test-runner": "^0.19.1",
102-
"@storybook/theming": "^8.3.6",
103-
"@storybook/vue3": "^8.3.6",
104-
"@storybook/vue3-vite": "^8.3.6",
85+
"@antfu/eslint-config": "^3.12.0",
86+
"@chromatic-com/storybook": "^3.2.2",
87+
"@commitlint/cli": "^19.6.1",
88+
"@commitlint/config-conventional": "^19.6.0",
89+
"@iconify/vue": "^4.2.0",
90+
"@playwright/test": "1.49.1",
91+
"@storybook/addon-a11y": "^8.4.7",
92+
"@storybook/addon-docs": "^8.4.7",
93+
"@storybook/addon-essentials": "^8.4.7",
94+
"@storybook/addon-interactions": "^8.4.7",
95+
"@storybook/addon-links": "^8.4.7",
96+
"@storybook/addon-mdx-gfm": "^8.4.7",
97+
"@storybook/addon-themes": "^8.4.7",
98+
"@storybook/blocks": "^8.4.7",
99+
"@storybook/test": "^8.4.7",
100+
"@storybook/test-runner": "^0.20.1",
101+
"@storybook/theming": "^8.4.7",
102+
"@storybook/vue3": "^8.4.7",
103+
"@storybook/vue3-vite": "^8.4.7",
105104
"@testing-library/dom": "^10.4.0",
106-
"@testing-library/jest-dom": "^6.6.2",
105+
"@testing-library/jest-dom": "^6.6.3",
107106
"@testing-library/user-event": "^14.5.2",
108107
"@testing-library/vue": "^8.1.0",
109108
"@types/jsdom": "^21.1.7",
110-
"@types/node": "^20.17.4",
111-
"@vitejs/plugin-vue": "^5.1.4",
112-
"@vitejs/plugin-vue-jsx": "^4.0.1",
109+
"@types/node": "^22.10.2",
110+
"@vitejs/plugin-vue": "^5.2.1",
111+
"@vitejs/plugin-vue-jsx": "^4.1.1",
113112
"@vue/test-utils": "^2.4.6",
114-
"@vue/tsconfig": "^0.5.1",
115-
"@vueuse/core": "^11.2.0",
116-
"@vueuse/shared": "^11.2.0",
117-
"@whyframe/core": "^0.1.11",
113+
"@vue/tsconfig": "^0.7.0",
114+
"@vueuse/core": "^12.0.0",
115+
"@vueuse/shared": "^12.0.0",
116+
"@whyframe/core": "^0.1.12",
118117
"@whyframe/vue": "^0.1.7",
119-
"browserslist": "^4.24.2",
120-
"chalk": "^5.3.0",
121-
"commitlint": "^19.5.0",
118+
"browserslist": "^4.24.3",
119+
"chalk": "^5.4.0",
120+
"commitlint": "^19.6.1",
122121
"cross-env": "^7.0.3",
123-
"eslint": "^9.13.0",
124-
"eslint-plugin-vue": "^9.30.0",
122+
"eslint": "^9.17.0",
123+
"eslint-plugin-vue": "^9.32.0",
125124
"globby": "^14.0.2",
126-
"husky": "^9.1.6",
127-
"inquirer": "^10.2.2",
125+
"husky": "^9.1.7",
126+
"inquirer": "^12.2.0",
128127
"jsdom": "^25.0.1",
129-
"lightningcss": "^1.27.0",
130-
"lint-staged": "^15.2.10",
128+
"lightningcss": "^1.28.2",
129+
"lint-staged": "^15.2.11",
131130
"npm-run-all": "^4.1.5",
132131
"p-debounce": "^4.0.0",
133-
"pnpm": "^9.10.0",
132+
"pnpm": "^9.15.0",
134133
"publint": "^0.2.12",
135134
"regenerator-runtime": "^0.14.1",
136135
"rimraf": "^6.0.1",
137136
"semantic-release": "^24.2.0",
138-
"start-server-and-test": "^2.0.8",
139-
"storybook": "^8.3.6",
140-
"typescript": "~5.5.4",
141-
"vite": "^5.4.10",
142-
"vite-node": "^2.1.4",
137+
"start-server-and-test": "^2.0.9",
138+
"storybook": "^8.4.7",
139+
"typescript": "~5.6.3",
140+
"vite": "^5.4.11",
141+
"vite-node": "^2.1.8",
143142
"vite-plugin-full-reload": "^1.2.0",
144-
"vitepress": "^1.4.2",
145-
"vitest": "^2.1.4",
143+
"vitepress": "^1.5.0",
144+
"vitest": "^2.1.8",
146145
"vue-demi": "^0.14.10",
147146
"vue-tsc": "^2.1.10"
148147
},

0 commit comments

Comments
 (0)