New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ivandt/importer-angular

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ivandt/importer-angular

Angular wrapper for @ivandt/importer web component

latest
Source
npmnpm
Version
7.0.1
Version published
Maintainers
1
Created
Source

@ivandt/importer-angular

Angular wrapper for the @ivandt/importer web component.

Installation

npm install @ivandt/importer @ivandt/importer-angular

Usage

Basic Example

import { Component } from '@angular/core';
import { IvtImporterComponent } from '@ivandt/importer-angular';
import type { IvtSchema } from '@ivandt/importer';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [IvtImporterComponent],
  template: `
    <div style="height: 600px">
      <ivandt-importer [schema]="schema" />
    </div>
  `
})
export class AppComponent {
  schema: IvtSchema = {
    title: 'Customer Import',
    fields: [
      {
        key: 'name',
        label: 'Full Name',
        type: 'text',
        validators: [{ type: 'required' }]
      },
      {
        key: 'email',
        label: 'Email',
        type: 'text',
        validators: [{ type: 'email' }]
      }
    ]
  };
}

Props

PropTypeRequiredDescription
schemaIvtSchemaYesThe schema configuration for your importer

TypeScript

Import types from @ivandt/importer:

import type { IvtSchema } from '@ivandt/importer';

For full Importer documentation, see the Ivandt.

License

Proprietary - See LICENSE file

Keywords

angular

FAQs

Package last updated on 04 Jan 2026

Did you know?

Socket

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.

Install

Related posts