Skip to content

Commit de7d4d3

Browse files
kubeclaude
andcommitted
Update Petrinaut toolchain: tsgo 20260610, storybook 10.4.3, oxlint 1.69.0
- @typescript/native-preview 20260607.1 -> 20260610.1 (all 4 packages) - storybook + @storybook/react-vite 10.4.2 -> 10.4.3 (petrinaut + refractive) - oxlint 1.63.0 -> 1.69.0 (all 4 packages) - oxlint-tsgolint 0.22.1 -> 0.23.0 (all 4 packages) oxlint 1.69.0 newly fires jsx-a11y(control-has-associated-label) on 5 elements: add aria-label to the spreadsheet cell editor, search input and simulation timeline range input (genuine missing labels), and to the scenario/metric description textareas (oxlint false-positives: both have a properly wired htmlFor/id pair, but the linter can't verify template literal equality statically). vitest 4.1.9, storybook 10.4.4/10.4.5 and rolldown 1.1.1 don't clear the 5-day age gate yet. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent c4a6738 commit de7d4d3

10 files changed

Lines changed: 218 additions & 210 deletions

File tree

apps/petrinaut-website/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
"@rolldown/plugin-babel": "0.2.3",
3535
"@types/react": "19.2.17",
3636
"@types/react-dom": "19.2.3",
37-
"@typescript/native-preview": "7.0.0-dev.20260607.1",
37+
"@typescript/native-preview": "7.0.0-dev.20260610.1",
3838
"@vitejs/plugin-react": "6.0.2",
3939
"@whatwg-node/server": "0.10.18",
4040
"babel-plugin-react-compiler": "1.0.0",
41-
"oxlint": "1.63.0",
42-
"oxlint-tsgolint": "0.22.1",
41+
"oxlint": "1.69.0",
42+
"oxlint-tsgolint": "0.23.0",
4343
"sharp": "0.34.5",
4444
"vite": "8.0.16"
4545
}

libs/@hashintel/petrinaut-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
"devDependencies": {
7171
"@types/babel__standalone": "7.1.9",
7272
"@types/node": "22.18.13",
73-
"@typescript/native-preview": "7.0.0-dev.20260607.1",
74-
"oxlint": "1.63.0",
75-
"oxlint-tsgolint": "0.22.1",
73+
"@typescript/native-preview": "7.0.0-dev.20260610.1",
74+
"oxlint": "1.69.0",
75+
"oxlint-tsgolint": "0.23.0",
7676
"rolldown": "1.0.3",
7777
"rolldown-plugin-dts": "0.25.2",
7878
"typescript": "6.0.3",

libs/@hashintel/petrinaut/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,24 +79,24 @@
7979
"@hashintel/ds-helpers": "workspace:*",
8080
"@pandacss/dev": "1.11.1",
8181
"@rolldown/plugin-babel": "0.2.3",
82-
"@storybook/react-vite": "10.4.2",
82+
"@storybook/react-vite": "10.4.3",
8383
"@testing-library/dom": "10.4.1",
8484
"@testing-library/react": "16.3.2",
8585
"@types/babel__standalone": "7.1.9",
8686
"@types/lodash-es": "4.17.12",
8787
"@types/react": "19.2.17",
8888
"@types/react-dom": "19.2.3",
89-
"@typescript/native-preview": "7.0.0-dev.20260607.1",
89+
"@typescript/native-preview": "7.0.0-dev.20260610.1",
9090
"@vitejs/plugin-react": "6.0.2",
9191
"babel-plugin-react-compiler": "1.0.0",
9292
"jsdom": "29.1.1",
93-
"oxlint": "1.63.0",
94-
"oxlint-tsgolint": "0.22.1",
93+
"oxlint": "1.69.0",
94+
"oxlint-tsgolint": "0.23.0",
9595
"react": "19.2.7",
9696
"react-dom": "19.2.7",
9797
"rolldown": "1.0.3",
9898
"rolldown-plugin-dts": "0.25.2",
99-
"storybook": "10.4.2",
99+
"storybook": "10.4.3",
100100
"vite": "8.0.16",
101101
"vitest": "4.1.8"
102102
},

libs/@hashintel/petrinaut/src/ui/components/spreadsheet.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ export const Spreadsheet: React.FC<SpreadsheetProps> = ({
622622
) : isEditing ? (
623623
<input
624624
ref={inputRef}
625+
aria-label="Cell value"
625626
type="number"
626627
value={editingValue}
627628
onChange={(event) =>

libs/@hashintel/petrinaut/src/ui/views/Editor/components/BottomBar/simulation-controls.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ export const SimulationControls: React.FC<SimulationControlsProps> = ({
203203
</div>
204204

205205
<input
206+
aria-label="Simulation timeline"
206207
type="range"
207208
min="0"
208209
max={Math.max(0, totalFrames - 1)}

libs/@hashintel/petrinaut/src/ui/views/Editor/panels/LeftSideBar/subviews/search-panel.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ const SearchTitle: React.FC = () => {
413413
return (
414414
<input
415415
ref={searchInputRef}
416+
aria-label="Search"
416417
type="text"
417418
placeholder="Find anything…"
418419
className={searchInputStyle}

libs/@hashintel/petrinaut/src/ui/views/Editor/panels/SimulateView/metrics/metric-form.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ const MetricFormSections = ({
227227
</label>
228228
<textarea
229229
id={`${idPrefix}metric-description`}
230+
aria-label="Description"
230231
className={textareaStyle}
231232
value={state.description}
232233
onChange={(e) => callbacks.onDescriptionChange(e.target.value)}

libs/@hashintel/petrinaut/src/ui/views/Editor/panels/SimulateView/scenarios/scenario-form.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,7 @@ const ScenarioFormSections = ({
628628
</label>
629629
<textarea
630630
id={`${idPrefix}scenario-description`}
631+
aria-label="Description"
631632
className={textareaStyle}
632633
value={state.description}
633634
onChange={(e) => callbacks.onDescriptionChange(e.target.value)}

libs/@hashintel/refractive/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@
3333
"devDependencies": {
3434
"@babel/core": "7.29.7",
3535
"@rolldown/plugin-babel": "0.2.3",
36-
"@storybook/react-vite": "10.4.2",
36+
"@storybook/react-vite": "10.4.3",
3737
"@types/react": "19.2.17",
3838
"@types/react-dom": "19.2.3",
39-
"@typescript/native-preview": "7.0.0-dev.20260607.1",
39+
"@typescript/native-preview": "7.0.0-dev.20260610.1",
4040
"@vitejs/plugin-react": "6.0.2",
4141
"babel-plugin-react-compiler": "1.0.0",
42-
"oxlint": "1.63.0",
43-
"oxlint-tsgolint": "0.22.1",
42+
"oxlint": "1.69.0",
43+
"oxlint-tsgolint": "0.23.0",
4444
"rolldown": "1.0.3",
4545
"rolldown-plugin-dts": "0.25.2",
46-
"storybook": "10.4.2",
46+
"storybook": "10.4.3",
4747
"vite": "8.0.16"
4848
},
4949
"peerDependencies": {

0 commit comments

Comments
 (0)