Angular Barcode - Setup
Smart UI for Angular supports both standalone components (bootstrapApplication) and NgModule-based apps (bootstrapModule(AppModule)). Steps 1-5 show the standalone path; the section below shows the NgModule path with the same package and styles.
Demo source (Smart UI repo): angular/src/barcode/basic
1 NPM Install
Install the smart-webcomponents-angular package:
npm install smart-webcomponents-angular
2 Register styles
Add the default Smart UI stylesheet to angular.json -> projects -> <your-project> -> architect -> build -> options -> styles (merge with existing entries):
"styles": [ "node_modules/smart-webcomponents-angular/source/styles/smart.default.css" ]
Add optional theme CSS from the same package after smart.default.css if you use Bootstrap, Fluent, or other bundled themes.
3 Import the Angular module
Import BarcodeModule from smart-webcomponents-angular/barcode: use @Component.imports for standalone, or add it to your AppModule (or feature module) imports array for NgModule apps.
import { BarcodeModule } from 'smart-webcomponents-angular/barcode';
4 Root component (standalone)
Add BarcodeModule to your root standalone component (src/app/app.ts). Snippet from Smart UI demos (paths normalized to app.html / App where applicable):
import { Component, ViewChild, OnInit, AfterViewInit } from '@angular/core';
import { BarcodeComponent } from 'smart-webcomponents-angular/barcode';
import { BarcodeModule } from 'smart-webcomponents-angular/barcode';
@Component({
selector: 'app-root',
standalone: true,
imports: [ BarcodeModule ],
templateUrl: './app.html',
styleUrl: './app.css'
})
export class App implements AfterViewInit, OnInit {
@ViewChild('pharmacode', { read: BarcodeComponent, static: false }) pharmacode!: BarcodeComponent;
@ViewChild('codabar', { read: BarcodeComponent, static: false }) codabar!: BarcodeComponent;
@ViewChild('code128c', { read: BarcodeComponent, static: false }) code128c!: BarcodeComponent;
@ViewChild('code128a', { read: BarcodeComponent, static: false }) code128a!: BarcodeComponent;
@ViewChild('code128b', { read: BarcodeComponent, static: false }) code128b!: BarcodeComponent;
@ViewChild('msi10', { read: BarcodeComponent, static: false }) msi10!: BarcodeComponent;
@ViewChild('msi11', { read: BarcodeComponent, static: false }) msi11!: BarcodeComponent;
@ViewChild('code39', { read: BarcodeComponent, static: false }) code39!: BarcodeComponent;
ngOnInit(): void {
// onInit code.
}
ngAfterViewInit(): void {
// afterViewInit code.
this.init();
}
init(): void {
// init code.
// no code
}
}
Boot the app with bootstrapApplication from src/main.ts and an ApplicationConfig in src/app/app.config.ts as generated by the CLI.
5 Template (standalone)
Use your markup in src/app/app.html (or inline template). Bind properties and events on smart-barcode as needed:
<div class="container">
<h3>The barcode element supports a wide range of the most common barcode types available</h3>
<div class="underlined">Pharmacode:</div>
<smart-barcode #pharmacode [type]="'pharmacode'" [value]="'1234'"></smart-barcode>
<div class="underlined">Codabar:</div>
<smart-barcode #codabar [type]="'codabar'" [value]="'A2402B'" ></smart-barcode>
<div class="underlined">Code128 A | B | C:</div>
<smart-barcode #code128c [type]="'code128c'" [value]="'22481203'"></smart-barcode>
<smart-barcode #code128a [type]="'code128a'" [value]="'EXAMPLE'"></smart-barcode>
<smart-barcode #code128b [type]="'code128b'" [value]="'example'"></smart-barcode>
<br/>
<div class="underlined">MSI 10 | 11:</div>
<smart-barcode #msi10 [type]="'msi10'" [value]="'12345'"></smart-barcode>
<smart-barcode #msi11 [type]="'msi11'" [value]="'67890'"></smart-barcode>
<div class="underlined">Code39:</div>
<smart-barcode #code39 [type]="'code39'" [value]="'*1234567AB*'" [lineWidth]="2" ></smart-barcode>
</div>
6 NgModule bootstrap (also supported)
Same npm package and angular.json styles as steps 1-2. Put BarcodeModule on your NgModule.imports instead of @Component.imports, and bootstrap with bootstrapModule(AppModule).
The demo sources bundled for this widget use standalone only (there is no app.module.ts in that folder). NgModule is fully supported: put BarcodeModule from smart-webcomponents-angular/barcode on NgModule.imports, make your root component non-standalone (remove standalone: true and move widget modules from @Component.imports to the module), and bootstrap with platformBrowserDynamic().bootstrapModule(AppModule).
Minimal main.ts + app.module.ts pairing (adjust paths to match your CLI layout):
src/main.ts
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule).catch((err) => console.error(err));
src/app/app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { BarcodeModule } from 'smart-webcomponents-angular/barcode';
@NgModule({
declarations: [ AppComponent ],
imports: [ BrowserModule, BarcodeModule ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Reuse the template and class logic from steps 4-5 in AppComponent, configured for declarations + NgModule.imports instead of a standalone @Component.
Run
ng serve or npm start - then open http://localhost:4200/.
Smart UI for Angular - full documentation
Accessibility
The Barcode component follows WAI-ARIA best practices:
- Keyboard navigation - Tab, Arrow keys, Enter, and Escape are supported
- ARIA roles - Appropriate roles and labels are applied automatically
- Focus management - Visible focus indicators for keyboard users
- Screen readers - State changes are announced to assistive technology
- High contrast - Supports Windows High Contrast Mode and forced colors
For custom labeling, set aria-label or aria-labelledby attributes on the component.
Supported stacks: Smart UI targets Angular 17+, React 18+, Vue 3+, Node 18 LTS, and evergreen browsers; pin exact package versions to your org policy.