Skip to content

Commit ae9536a

Browse files
committed
chore(deps): Update dev dependencies
1 parent 9468f48 commit ae9536a

10 files changed

Lines changed: 430 additions & 531 deletions

File tree

globals/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"devDependencies": {
2323
"@mui/material": "^6.5.0",
2424
"@mui/styles": "^6.4.8",
25-
"react": "^19.1.1",
26-
"react-dom": "^19.1.1",
27-
"tss-react": "^4.9.19"
25+
"react": "^19.2.4",
26+
"react-dom": "^19.2.4",
27+
"tss-react": "^4.9.20"
2828
},
2929
"peerDependencies": {
3030
"@mui/material": "^5.0.0 || ^6.0.0",

gw2-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
},
4646
"devDependencies": {
4747
"clsx": "^2.1.1",
48-
"react": "^19.1.1",
49-
"react-dom": "^19.1.1",
48+
"react": "^19.2.4",
49+
"react-dom": "^19.2.4",
5050
"ts-patch": "^3.3.0",
5151
"typia": "^9.7.2"
5252
},

gw2-ui/src/components/CustomComponent/CustomComponent.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ import WikiLink, { type WikiLinkProps } from '../WikiLink/WikiLink';
1313
/**
1414
* Allows supplying custom data in the data props
1515
*/
16-
export interface CustomComponentProps
17-
extends Omit<IconWithTextProps, 'icon' | 'text' | 'loading'> {
16+
export interface CustomComponentProps extends Omit<
17+
IconWithTextProps,
18+
'icon' | 'text' | 'loading'
19+
> {
1820
type: 'Skill' | 'Trait';
1921
data: unknown;
2022
text?: string;

gw2-ui/src/components/Item/Item.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ import Error from '../Error/Error';
55
import IconWithText from '../IconWithText/IconWithText';
66
import ItemInternal, { type ItemInternalProps } from './ItemInternal';
77

8-
export interface ItemProps
9-
extends Omit<ItemInternalProps, 'dataItem' | 'dataUpgrades'> {
8+
export interface ItemProps extends Omit<
9+
ItemInternalProps,
10+
'dataItem' | 'dataUpgrades'
11+
> {
1012
id: number;
1113
}
1214
const SKILL_ERROR_NAMES = {

gw2-ui/src/components/Skill/SkillInternal.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ import professioncss from '../Profession/professions.module.css';
1010
import Tooltip, { type TooltipProps } from '../Tooltip/Tooltip';
1111
import WikiLink, { type WikiLinkProps } from '../WikiLink/WikiLink';
1212

13-
export interface SkillInternalProps
14-
extends Omit<IconWithTextProps, 'icon' | 'text' | 'loading' | 'style'> {
13+
export interface SkillInternalProps extends Omit<
14+
IconWithTextProps,
15+
'icon' | 'text' | 'loading' | 'style'
16+
> {
1517
data: GW2ApiSkill;
1618
text?: string;
1719
disableLink?: boolean;

gw2-ui/src/components/Specialization/Specialization.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ const SPECIALIZATION_ERROR_MESSAGES = {
1717
`A Network Error occured trying to fetch the specialization ${id}.`,
1818
};
1919

20-
export interface SpecializationProps
21-
extends Omit<SpecializationInternalProps, 'data'> {
20+
export interface SpecializationProps extends Omit<
21+
SpecializationInternalProps,
22+
'data'
23+
> {
2224
id: number;
2325
}
2426

gw2-ui/src/gw2api/types/common/fact.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,10 @@ export interface GW2ApiFactPercent extends GW2ApiFactBase {
8383
percent: number;
8484
}
8585

86-
export interface GW2ApiFactPrefixedBuff
87-
extends Optional<Omit<GW2ApiFactBuff, 'type'>, 'status'> {
86+
export interface GW2ApiFactPrefixedBuff extends Optional<
87+
Omit<GW2ApiFactBuff, 'type'>,
88+
'status'
89+
> {
8890
type: 'PrefixedBuff';
8991
prefix: Partial<Omit<GW2ApiFactBuff, 'type'>>;
9092
}

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"generate-api-cache": "node --experimental-fetch ./generate_api_cache.mjs"
1010
},
1111
"dependencies": {
12-
"react": "^19.1.1",
13-
"react-dom": "^19.1.1"
12+
"react": "^19.2.4",
13+
"react-dom": "^19.2.4"
1414
},
1515
"devDependencies": {
16-
"@babel/preset-env": "^7.28.5",
16+
"@babel/preset-env": "^7.29.0",
1717
"@babel/preset-react": "^7.28.5",
1818
"@babel/preset-typescript": "^7.28.5",
1919
"@rollup/plugin-babel": "^6.1.0",
@@ -23,12 +23,12 @@
2323
"@rollup/plugin-terser": "^0.4.4",
2424
"@rollup/plugin-typescript": "^12.3.0",
2525
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
26-
"@storybook/react-webpack5": "^9.1.16",
27-
"@types/node": "^24.10.0",
28-
"@types/react": "^19.2.2",
29-
"@types/react-dom": "^19.2.2",
30-
"@typescript-eslint/eslint-plugin": "^8.46.3",
31-
"@typescript-eslint/parser": "^8.46.3",
26+
"@storybook/react-webpack5": "^9.1.19",
27+
"@types/node": "^24.10.13",
28+
"@types/react": "^19.2.14",
29+
"@types/react-dom": "^19.2.3",
30+
"@typescript-eslint/eslint-plugin": "^8.56.1",
31+
"@typescript-eslint/parser": "^8.56.1",
3232
"eslint": "^8.57.1",
3333
"eslint-config-airbnb": "^19.0.4",
3434
"eslint-config-prettier": "^10.1.8",
@@ -40,13 +40,13 @@
4040
"gh-pages": "^6.3.0",
4141
"postcss": "^8.5.6",
4242
"postcss-url": "^10.1.3",
43-
"prettier": "^3.6.2",
44-
"rimraf": "^6.1.0",
45-
"rollup": "^4.52.5",
46-
"rollup-plugin-dts": "^6.2.3",
43+
"prettier": "^3.8.1",
44+
"rimraf": "^6.1.3",
45+
"rollup": "^4.59.0",
46+
"rollup-plugin-dts": "^6.3.0",
4747
"rollup-plugin-peer-deps-external": "^2.2.4",
4848
"rollup-plugin-postcss": "^4.0.2",
49-
"storybook": "^9.1.16",
49+
"storybook": "^9.1.19",
5050
"typescript": "^5.9.3",
5151
"typescript-plugin-css-modules": "^5.2.0"
5252
},

0 commit comments

Comments
 (0)