Install via package manager
The@beeq/core package is the foundation of BEEQ. All framework wrappers depend on it as a peer dependency.
Use via CDN
You can use BEEQ directly from a CDN without any build step. Add the stylesheet and the ES module script to your HTML<head>:
SVG icon setup
BEEQ’s icon system loads SVG files at runtime. The SVG assets are shipped in a separate folder inside the package (dist/beeq/svg) and must be served from a URL that the browser can reach.
Use setBasePath from @beeq/core to tell the icon component where to find SVG files:
Framework wrappers
@beeq/core works out of the box in any environment, but framework-specific packages add value accessor support, type-safe props, and idiomatic event bindings.
Each wrapper lists
@beeq/core as a peer dependency. Always install both packages together.Angular
BeeQModule, NgModel two-way binding, and standalone component support.React
Native React components with
onBq* event props and full TypeScript types.Vue
v-model support and @bq* event handlers for all form components.Plain HTML / CDN
Zero build-step usage with CDN links and native
addEventListener.