Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@ag.common/help-reference
Advanced tools
`HelpReference` and `ArticleLink` are components that allow an application to reference export service help content from the page itself without opening a new tab and breaking a users' flow.
HelpReference
and ArticleLink
are components that allow an application to reference export service help content from the page itself without opening a new tab and breaking a users' flow.
yarn add @ag.common/help-reference
import { PageContent } from '@ag.ds-next/react/content';
import { HelpReference } from '@ag.common/help-reference';
function Page() {
return (
<PageContent>
<YourPageContent />
<HelpReference reference="your-reference" />
</PageContent>
);
}
You may reference an article in-app directly using an ArticleLink without needing to set up any reference content
import { Text } from '@ag.ds-next/react/text';
import { PageContent } from '@ag.ds-next/react/content';
import { ArticleLink } from '@ag.common/help-reference';
function Page() {
return (
<PageContent>
<YourPageContent />
<Text as="p">
You can place an ArticleLink anywhere in your page and have it{' '}
<ArticleLink article="your-article">reference</ArticleLink> a help
article
</Text>
</PageContent>
);
}
FAQs
`HelpReference` and `ArticleLink` are components that allow an application to reference export service help content from the page itself without opening a new tab and breaking a users' flow.
The npm package @ag.common/help-reference receives a total of 0 weekly downloads. As such, @ag.common/help-reference popularity was classified as not popular.
We found that @ag.common/help-reference demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.