Skip to content

Commit f1e4d65

Browse files
authored
Merge pull request #200 from forumone/2025-08-package-updates
2025-08 package updates
2 parents 06758d2 + 60ec0ac commit f1e4d65

File tree

12 files changed

+702
-662
lines changed

12 files changed

+702
-662
lines changed

.stylelintrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ rules:
3737
import-notation: string
3838
layer-name-pattern: null
3939
max-nesting-depth: 4
40+
nesting-selector-no-missing-scoping-root: null
41+
no-invalid-position-declaration: null
4042
number-max-precision: null
4143
order/order:
4244
- - type: at-rule

package-lock.json

Lines changed: 667 additions & 629 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -24,35 +24,35 @@
2424
">= 1% in US"
2525
],
2626
"dependencies": {
27-
"next": "15.3.5",
28-
"react": "19.1.0",
29-
"react-dom": "19.1.0",
30-
"react-select": "^5.10.1"
27+
"next": "15.4.5",
28+
"react": "19.1.1",
29+
"react-dom": "19.1.1",
30+
"react-select": "^5.10.2"
3131
},
3232
"devDependencies": {
3333
"@csstools/postcss-global-data": "^3.0.0",
3434
"@eslint/eslintrc": "^3.3.1",
35-
"@forumone/eslint-config-es5": "^3.0.0",
36-
"@forumone/eslint-config-react": "^3.0.0",
37-
"@next/eslint-plugin-next": "15.3.5",
38-
"@storybook/addon-a11y": "^9.0.15",
39-
"@storybook/addon-docs": "^9.0.15",
40-
"@storybook/addon-links": "^9.0.15",
41-
"@storybook/nextjs": "^9.0.15",
35+
"@forumone/eslint-config-es5": "^3.0.2",
36+
"@forumone/eslint-config-react": "^3.0.2",
37+
"@next/eslint-plugin-next": "15.4.5",
38+
"@storybook/addon-a11y": "^9.1.1",
39+
"@storybook/addon-docs": "^9.1.1",
40+
"@storybook/addon-links": "^9.1.1",
41+
"@storybook/nextjs": "^9.1.1",
4242
"@svgr/babel-plugin-add-jsx-attribute": "^8.0.0",
4343
"@svgr/babel-plugin-remove-jsx-attribute": "^8.0.0",
4444
"@svgr/cli": "^8.1.0",
45-
"@types/node": "^20.19.4",
46-
"@types/react": "19.1.8",
47-
"@types/react-dom": "19.1.6",
45+
"@types/node": "^20.19.9",
46+
"@types/react": "19.1.9",
47+
"@types/react-dom": "19.1.7",
4848
"@typescript-eslint/eslint-plugin": "^8.29.1",
4949
"@typescript-eslint/parser": "^8.29.1",
5050
"clsx": "^2.1.1",
5151
"css-loader": "^7.1.2",
5252
"csstype": "3.1.3",
5353
"enhanced-resolve": "^5.18.2",
54-
"eslint": "^9.30.1",
55-
"html-react-parser": "^5.2.5",
54+
"eslint": "^9.32.0",
55+
"html-react-parser": "^5.2.6",
5656
"husky": "^9.1.7",
5757
"inquirer": "^10.2.2",
5858
"plop": "^4.0.1",
@@ -64,20 +64,20 @@
6464
"postcss-preset-env": "^10.2.4",
6565
"postcss-rem": "^3.0.0",
6666
"prettier": "^3.6.2",
67-
"prettier-plugin-organize-imports": "^4.1.0",
68-
"storybook": "^9.0.15",
67+
"prettier-plugin-organize-imports": "^4.2.0",
68+
"storybook": "^9.1.1",
6969
"style-loader": "^4.0.0",
70-
"stylelint": "^16.21.1",
71-
"stylelint-config-standard": "^38.0.0",
70+
"stylelint": "^16.23.0",
71+
"stylelint-config-standard": "^39.0.0",
7272
"stylelint-order": "^7.0.0",
7373
"stylelint-webpack-plugin": "^5.0.1",
7474
"typescript": "~5.8.3",
7575
"yaml": "^2.8.0"
7676
},
7777
"overrides": {
7878
"csstype": "3.1.3",
79-
"@types/react": "19.1.8",
80-
"@types/react-dom": "19.1.6",
79+
"@types/react": "19.1.9",
80+
"@types/react-dom": "19.1.7",
8181
"storybook": "$storybook"
8282
}
8383
}

source/00-config/mixins/accessibility.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
@param {Boolean} $important
55
*/
66
@mixin visually-hidden($important: false) {
7-
clip: rect(1px, 1px, 1px, 1px) iff($important, !important);
7+
clip-path: rect(1px, 1px, 1px, 1px) iff($important, !important);
88
height: 1px iff($important, !important);
99
overflow: hidden iff($important, !important);
10+
overflow-wrap: normal iff($important, !important);
1011
position: absolute iff($important, !important);
1112
width: 1px iff($important, !important);
12-
word-wrap: normal iff($important, !important);
1313
}
1414

1515
/**
@@ -24,7 +24,7 @@
2424
@param {boolean} $important
2525
*/
2626
@mixin visually-hidden-off($important: false) {
27-
clip: auto iff($important, !important);
27+
clip-path: auto iff($important, !important);
2828
height: auto iff($important, !important);
2929
overflow: visible iff($important, !important);
3030
position: static iff($important, !important);

source/01-global/html-elements/02-body/body.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ body {
77
color: var(--text-primary);
88
inline-size: 100%;
99
margin: 0;
10+
overflow-wrap: break-word;
1011
overflow-x: hidden;
1112
padding: 0;
12-
word-wrap: break-word;
1313

1414
&.has-open-menu,
1515
&.has-open-modal {

source/01-global/html-elements/13-headings/headings.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
text-rendering: optimizeLegibility;
1111

1212
@media print {
13+
break-after: avoid;
1314
orphans: 3;
14-
page-break-after: avoid;
1515
widows: 3;
1616

1717
&::after {

source/01-global/html-elements/16-blockquote/blockquote.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ blockquote {
4343
}
4444

4545
@media print {
46-
page-break-inside: avoid;
46+
break-inside: avoid;
4747
}
4848
}

source/01-global/html-elements/17-preformatted-text/preformatted-text.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ pre {
33
overflow: auto;
44

55
@media print {
6-
page-break-inside: avoid;
6+
break-inside: avoid;
77
}
88
}

source/01-global/html-elements/22-list-item/list-item.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ li {
66
}
77

88
@media print {
9-
page-break-inside: avoid;
9+
break-inside: avoid;
1010
}
1111
}

source/01-global/html-elements/24-table/table.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ th {
3030

3131
tr {
3232
@media print {
33-
page-break-inside: avoid;
33+
break-inside: avoid;
3434
}
3535
}
3636

0 commit comments

Comments
 (0)