Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The following is a curated list of changes in the Enact samples module, newest c
## [unreleased]

- Added `ui/spotlight-sandbox` sample demonstrating standalone `@enact/spotlight` usage
- Updated major dependencies
- Updated minor dependencies

## [2.7.0] - 2023-05-09
Expand Down
4 changes: 2 additions & 2 deletions agate/all-samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
"@reduxjs/toolkit": "^2.12.0",
"ilib": "^14.22.0",
"prop-types": "^15.8.1",
"query-string": "^9.4.0",
"query-string": "^9.4.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-redux": "^9.3.0",
"react-router": "^7.18.0",
"react-router": "^8.1.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
}
Expand Down
2 changes: 1 addition & 1 deletion limestone/all-samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-redux": "^9.3.0",
"react-router-dom": "^6.28.0",
Comment thread
daniel-stoian-lgp marked this conversation as resolved.
"react-router": "^8.1.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
}
Expand Down
3 changes: 1 addition & 2 deletions limestone/all-samples/src/App/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import kind from '@enact/core/kind';
import Scroller from '@enact/limestone/Scroller';
import ThemeDecorator from '@enact/limestone/ThemeDecorator';
import PropTypes from 'prop-types';
import {HashRouter, Route, Routes, useNavigate} from 'react-router-dom';
import {StaticRouter} from 'react-router-dom/server';
import {HashRouter, Route, Routes, StaticRouter, useNavigate} from 'react-router';

import SampleItem from '../components/SampleItem';
import ButtonToSamples from '../components/ButtonToSamples';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Button from '@enact/limestone/Button';
import {Link} from 'react-router-dom';
import {Link} from 'react-router';

import css from './ButtonToSamples.module.less';

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"private": true,
"repository": "https://github.com/enactjs/samples",
"engines": {
"node": ">= 20.19.0"
"node": ">= 22.22.0"
},
"dependencies": {
"readdirp": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions tutorial-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
"@enact/limestone": "^1.10.1",
"@enact/spotlight": "^5.5.1",
"@enact/ui": "^5.5.1",
"@types/node": "^24.13.2",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"ilib": "^14.22.0",
"prop-types": "^15.8.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
2 changes: 1 addition & 1 deletion ui/all-samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-redux": "^9.3.0",
"react-router": "^7.18.0",
"react-router": "^8.1.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
}
Expand Down
Loading