Gathering detailed insights and metrics for @spectrum-web-components/bundle
Gathering detailed insights and metrics for @spectrum-web-components/bundle
Gathering detailed insights and metrics for @spectrum-web-components/bundle
Gathering detailed insights and metrics for @spectrum-web-components/bundle
npm install @spectrum-web-components/bundle
Typescript
Module System
Node Version
NPM Version
TypeScript (66.38%)
CSS (31.4%)
JavaScript (2.07%)
HTML (0.08%)
Handlebars (0.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
1,405 Stars
4,911 Commits
229 Forks
46 Watchers
252 Branches
342 Contributors
Updated on Jul 12, 2025
Latest Version
1.7.0
Package Id
@spectrum-web-components/bundle@1.7.0
Unpacked Size
58.21 kB
Size
6.29 kB
File Count
17
NPM Version
10.8.1
Node Version
20.16.0
Published on
Jun 11, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
74
@spectrum-web-components/bundle
is a master dependency that allows a project to import any and all of the Spectrum Web Components. While it is a great approach to prototyping, the fact that is versions all of the Spectrum Web Components packages collectively means that depending on it can leave you with a lot of package updates to manage at any one version change. For a more predictable upgrade process we suggest that you depend upon individual packages directly, but hope you find this bundle productive when initially trying to get into the act of developing with Spectrum Web Components!
yarn add @spectrum-web-components/bundle
Import the side effectful registrations of the bundled components:
import '@spectrum-web-components/bundle/elements.js';
When looking to leverage their base classes as a type and/or for extension purposes, do so via something like the following for the ActionButton
base class:
import { ActionButton } from '@spectrum-web-components/bundle';
While this bundle directly re-exports the majority of functionality as they would be exported from their own packages, icon packages that export template literals are handled a little different. Due to the large number of exports that they feature, each of these packages are namespaced when included in the bundle.
@spectrum-web-components/icons-ui
is renamed to UIIcons
when leveraging the bundle. This means that you can use workflow icons in your demonstration code by importing them from @spectrum-web-components/bundle/icons.js
like the following:
import { UIIcons } from '@spectrum-web-components/bundle/icons.js';
console.log(UIIcons.AsteriskIcon());
/***
TemplateResult {strings: Array[1], values: Array[0], type: "html", processor: DefaultTemplateProcessor, constructor: Object}
***/
@spectrum-web-components/icons-workflow
is namespaced to WorkflowIcons
when leveraging the bundle. This means that you can use workflow icons in your demonstration code by importing them from @spectrum-web-components/bundle/icons.js
like the following:
import { IconsWorkflow } from '@spectrum-web-components/bundle/icons.js';
console.log(IconsWorkflow.CircleIcon());
/***
TemplateResult {strings: Array[1], values: Array[0], type: "html", processor: DefaultTemplateProcessor, constructor: Object}
***/
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
no binaries found in the repo
Reason
Found 26/29 approved changesets -- score normalized to 8
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
36 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More