chore(deps): update dependency @openedx/paragon to v23.14.5 (#2530)

* chore(deps): update dependency @openedx/paragon to v23.14.5

* fix: correct type of ContainerPropsType

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Braden MacDonald <braden@opencraft.com>
This commit is contained in:
renovate[bot]
2025-10-09 17:14:33 +00:00
committed by GitHub
parent aadccc748c
commit b774084a10
2 changed files with 5 additions and 5 deletions

8
package-lock.json generated
View File

@@ -7306,9 +7306,9 @@
}
},
"node_modules/@openedx/paragon": {
"version": "23.14.4",
"resolved": "https://registry.npmjs.org/@openedx/paragon/-/paragon-23.14.4.tgz",
"integrity": "sha512-iY0CX4THmtvmsrVwGYbxgo86PnJirgfYIS4LzqH2umxhBB5oGN41lOxs8EspUglraGb6LPs017hZBVlZFb0z8g==",
"version": "23.14.5",
"resolved": "https://registry.npmjs.org/@openedx/paragon/-/paragon-23.14.5.tgz",
"integrity": "sha512-xfkzrG7XFbtaNrpuKfpLQ3C0u5sHflUSXMtG/GlqsJMLR1hAbayKTcPzp0V8UGgxTXerdk6NoQWjankYMdM/8g==",
"license": "Apache-2.0",
"peer": true,
"workspaces": [
@@ -7359,7 +7359,7 @@
"react-table": "^7.7.0",
"react-transition-group": "^4.4.2",
"sass": "^1.58.3",
"style-dictionary": "^4.3.2",
"style-dictionary": "^4.4.0",
"tabbable": "^5.3.3",
"uncontrollable": "^7.2.1",
"uuid": "^9.0.0"

View File

@@ -8,7 +8,7 @@ import { SearchModal } from '../search-modal';
import { useContentMenuItems, useSettingMenuItems, useToolsMenuItems } from './hooks';
import messages from './messages';
type ContainerPropsType = React.ComponentProps<typeof Container>;
type ContainerPropsType = Omit<React.ComponentProps<typeof Container>, 'children'>;
interface HeaderProps {
contextId?: string,