Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@fluid-topics/ft-case-deflection
Advanced tools
A Web Component that can perform requests from ft portal and possibly create JIRA issues
A Web Component that can perform requests from ft portal or create issues in a JIRA project
The case deflection component requires the Fluid Topics public API and Material Icon font to be imported independently.
npm install @fluid-topics/ft-case-deflection
yarn add @fluid-topics/ft-case-deflection
To be placed at the end of HTML body:
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/dist/fluidtopics.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-case-deflection/build/ft-case-deflection.min.js"></script>
import { html } from "lit"
import "@fluid-topics/ft-case-deflection"
function render() {
return html` <ft-case-deflection
baseUrl="https://tinman-demo-dev.fluidtopics.net"
jiraUrl="https://jira-dr.mrs.antidot.net"
jiraToken="Basic bHp2YXJhOkwxTzJKM1U0eHgq"
projectId="11900"
issueTypeId="10700"
.searchFilters=${ {
key: 'Version_FT',
values: ['latest'],
negative: false
} }
.filteredMetadataKeys=${ [
"FT_Version",
"Product",
"language",
"audience",
"Category",
"ft:lastPublication"
] }
@search=${ (e: CustomEvent<FtSearchRequest>) => console.log("Search launched: ", e.detail) }
@issue-created=${ (e: CustomEvent<string>) => console.log("Issue created: ", e.detail) }
></ft-case-deflection> `
}
<html lang="en">
<head>
<title>My custom integration</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<ft-case-deflection
baseUrl="http://doc.fluidtopics.com"
jiraUrl="<JIRA_URL>"
jiraToken="Basic <token>"
projectId="11900"
issueTypeId="10700"
.filteredMetadataKeys="["FT_Version","Product","language","audience","Category","ft:lastPublication"]"
></ft-case-deflection>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/dist/fluidtopics.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-case-deflection/build/ft-case-deflection.min.js"></script>
<script>
const caseDeflection = document.querySelector('ft-case-deflection');
caseDeflection.setAttribute("searchFilters", JSON.stringify({
key: 'Version_FT',
values: ['latest'],
negative: false
}));
caseDeflection.addEventListener("search", event => console.log("Search launched: ", event.detail));
caseDeflection.addEventListener("issue-created", event => console.log("Issue created: ", event.detail));
</script>
</body>
</html>
FAQs
A Web Component that can perform requests from ft portal and possibly create JIRA issues
The npm package @fluid-topics/ft-case-deflection receives a total of 5 weekly downloads. As such, @fluid-topics/ft-case-deflection popularity was classified as not popular.
We found that @fluid-topics/ft-case-deflection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.