npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qbs-origin/origin-form

v0.6.4

Published

Angular library for dynamic form generation with formly integration.

Readme

@qbs-origin/origin-form

Angular library for dynamic form generation with formly integration.

Installation

Using Angular CLI (Recommended)

ng add @qbs-origin/origin-form

This will automatically install the package and all required peer dependencies.

Using npm

npm install @qbs-origin/origin-form

Dependencies

The following packages are installed automatically with this library:

  • @qbs-origin/sign-lib - Digital signature functionality
  • @ekyc_qoobiss/qbs-ect-cmp - eKYC components

Peer Dependencies

This library requires the following peer dependencies (you need to install them in your project):

npm install @angular/cdk @angular/material @ngx-formly/core @ngx-formly/material @ngx-translate/core @ngx-translate/http-loader @microsoft/signalr file-saver lodash ng2-pdf-viewer ngx-markdown ngx-scrollbar ts-md5 uuid

Usage

Import the OriginFormModule in your Angular module:

import { OriginFormModule } from '@qbs-origin/origin-form';

@NgModule({
  imports: [
    OriginFormModule
  ]
})
export class AppModule { }

Component Usage

Use the OriginFormComponent in your template:

<app-origin-form
  [configComponent]="config"
  [configUuid]="uuid"
  [currentLanguageIso]="'en'"
  [showLanguageSelector]="true"
  (event)="onFormEvent($event)">
</app-origin-form>

Configuration

InputConfig Interface

The configComponent input accepts an InputConfig object:

import { InputConfig } from '@qbs-origin/origin-form';

const config: InputConfig = {
  Token: 'your-auth-token',
  RefreshToken: 'your-refresh-token',
  BaseUrlGateway: 'https://api.example.com/gateway',
  BaseUrlAuthenticator: 'https://api.example.com/auth',
  BaseUrlInfrastructure: 'https://api.example.com/infrastructure',
  BaseUrlPublicInfrastructure: 'https://api.example.com/public',
  BaseUrlDocuments: 'https://api.example.com/documents',
  BaseUrlBusiness: 'https://api.example.com/business',
  BaseUrlSmartAccounts: 'https://api.example.com/smart-accounts',
  ClientId: 'your-client-id'
};

Component Inputs

| Input | Type | Description | |-------|------|-------------| | configComponent | InputConfig | Configuration object with API URLs and authentication | | configUuid | string | Unique identifier for the form configuration | | currentStepId | string | Current step identifier (optional) | | appModel | FormModel | Form model data (optional) | | currentLanguageIso | string | Language ISO code (e.g., 'en', 'ro') | | showLanguageSelector | boolean | Show/hide language selector (default: true) | | showDisplayMode | boolean | Enable display mode (default: false) | | isDemoMode | boolean | Enable demo mode (default: false) | | fillData | any | Pre-fill form data (optional) | | env | string | Environment type (optional) |

Component Outputs

| Output | Type | Description | |--------|------|-------------| | event | EventEmitter | Emits form events (success, error, step changes, etc.) |

Exported Services

The library exports the following services that can be injected:

  • ConfigService - Manage application configuration
  • OriginFormAuthService - Handle authentication
  • ApplicationDataService - Manage application data
  • FormsService - Form operations
  • LanguageService - Language management
  • DictionaryService - Dictionary/lookup data
  • TranslationService - Translations
  • DialogService - Dialog/modal management

License

Proprietary - Qoobiss