
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
@beeq/core
Advanced tools
The elements and components provided by BEEQ are being implemented with Stencil, a compiler that generates Web Components (more specifically, Custom Elements), combining the best concepts of the most popular frameworks into a simple build-time tool. You can read more about Stencil on their official website.
[!TIP] Please always refer to the official BEEQ documentation for more information about the installation.
BEEQ elements, components, patterns, utilities, etc., are available as an npm package.
$ npm i @beeq/core
BEEQ components are regular HTML elements, or custom elements (often referred to as "web components"). If you're using a simple HTML page, you can use them like any other element.
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@beeq/core/dist/beeq/beeq.css" />
<script type="module" src="https://cdn.jsdelivr.net/npm/@beeq/core/dist/beeq/beeq.esm.js"></script>
</head>
<body>
<bq-button>Click me!</bq-button>
</body>
</html>
[!CAUTION] The icons SVG are shipped in a separate folder. Projects will need to include
node_modules/@beeq/core/dist/beeq/svg
in their build and try to make it in a certain way that it respond to:http://<domain>/svg
You can listen for standard events such as click, mouseover, etc. as you normally would. Most of the BEEQ components emit custom events, we highly recommend the use of those instead. They work the same way as standard events but are prefixed with bq
to prevent collisions with standard events and other libraries.
<bq-checkbox>Checkbox label</bq-checkbox>
<script>
const checkbox = document.querySelector('bq-checkbox');
button.addEventListener('bqChange', (event) => {
console.log('Is checked?', event.detail.checked);
});
</script>
FAQs
BEEQ, a Design System components ruled by Endavan developers :)
The npm package @beeq/core receives a total of 0 weekly downloads. As such, @beeq/core popularity was classified as not popular.
We found that @beeq/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.