Skip to content

Commit

Permalink
chore: fix ts build error
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwuapps committed Apr 1, 2024
1 parent a3f9268 commit 8b5a88b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"dev": "concurrently --kill-others \"npm:watch.*\"",
"watch.core": "nx build @go-ui/core -- --watch",
"dev.core": "nx start @go-ui/core",
"dev.react.app": "nx start @go-ui/react-starter",
"dev.react": "nx start @go-ui/react-starter",
"dev.vue": "nx dev @go-ui/vue-starter",
"build.core": "nx build @go-ui/core",
"build.react": "nx build @go-ui/react",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@commitlint/config-conventional": "^13.2.0",
"@release-it/conventional-changelog": "^5.1.1",
"@stencil-community/postcss": "^2.2.0",
"@stencil/core": "^4.12.3",
"@stencil/core": "^4.13.0",
"@stencil/react-output-target": "^0.5.3",
"@stencil/sass": "^3.0.4",
"@stencil/vue-output-target": "^0.8.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class GoNavSubmenuTrigger {
if (!this.submenuEl) {
warning('<go-nav-submenu-trigger> is missing <go-nav-submenu> with id: ' + this.controls, this.el);
}
this.submenuEl.addEventListener('toggle', (e) => {
this.submenuEl.addEventListener('toggle', (e: CustomEvent) => {
this.isOpen = e.detail.isOpen;
});
}
Expand Down
32 changes: 16 additions & 16 deletions pnpm-lock.yaml

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

0 comments on commit 8b5a88b

Please sign in to comment.