-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CLI: Add TS 4.9 CLI templates #19986
CLI: Add TS 4.9 CLI templates #19986
Conversation
3cc3bf2
to
ec8c429
Compare
Socket Security Pull Request Report👍 No new dependency issues detected in pull request Pull request report summary
Bot CommandsTo ignore an alert, reply with a comment starting with Powered by socket.dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, except for some svelte changes, that seem unrelated?
|
||
const dispatch = createEventDispatcher(); | ||
|
||
/** | ||
* Optional click handler | ||
*/ | ||
export let onClick = (event) => { | ||
dispatch('click', event); | ||
}; | ||
</script> | ||
|
||
<button | ||
type="button" | ||
class={['storybook-button', `storybook-button--${size}`, mode].join(' ')} | ||
{style} | ||
on:click={onClick} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this related to this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made a new PR for this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
render: (args) => ({ | ||
Component: Header, | ||
props: args, | ||
on: { | ||
login: args.onLogin, | ||
logout: args.onLogout, | ||
createAccount: args.onCreateAccount, | ||
}, | ||
}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this related to this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made a new PR for this #20007
ec8c429
to
31f581f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aside from Norbert's feedback, all is good on my end.
06619ca
to
7781b9a
Compare
fe7bf94
to
1b08b3f
Compare
43c7fc2
to
39500c0
Compare
2758c17
to
3634baf
Compare
3634baf
to
09dd5d7
Compare
What I did