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

@snteam/amplify-angular-core

v1.0.38

Published

Angular 20 components for building dynamic forms and list views with AWS Amplify Data

Readme

@snteam/amplify-angular-core

Angular 20 components for building dynamic forms and list views with AWS Amplify Data.

Features

  • DynamicFormComponent: Generates dynamic forms based on Amplify Data models
  • ListViewComponent: Displays paginated lists of Amplify Data model items
  • Standalone Components: Built with Angular 20 standalone architecture
  • TypeScript Support: Full TypeScript support with type definitions
  • AWS Amplify Integration: Seamless integration with AWS Amplify Data

Installation

npm install @snteam/amplify-angular-core

Peer Dependencies

This package requires the following peer dependencies:

npm install @angular/core@^20.3.0 @angular/common@^20.3.0 @angular/forms@^20.3.0 @angular/material@^20.3.0 @angular/cdk@^20.3.0 aws-amplify@^6.0.0 @aws-amplify/ui-angular@^6.0.0 rxjs@~7.8.0

Usage

DynamicFormComponent

import { DynamicFormComponent } from '@snteam/amplify-angular-core';

@Component({
  selector: 'app-example',
  standalone: true,
  imports: [DynamicFormComponent],
  template: `
    <snteam-dynamic-form 
      [model]="'User'" 
      [itemId]="userId"
      (itemOutput)="onItemOutput($event)">
    </snteam-dynamic-form>
  `
})
export class ExampleComponent {
  userId = 'user-123';
  
  onItemOutput(item: any) {
    console.log('Form output:', item);
  }
}

ListViewComponent

import { ListViewComponent } from '@snteam/amplify-angular-core';

@Component({
  selector: 'app-list',
  standalone: true,
  imports: [ListViewComponent],
  template: `
    <snteam-list-view [modelName]="'User'"></snteam-list-view>
  `
})
export class ListComponent {}

Components

  • DynamicFormComponent: Main form component for creating/editing Amplify Data models
  • ListViewComponent: Main list component for displaying Amplify Data models
  • DynamicFormQuestionComponent: Renders individual form fields
  • DynamicFormGroupComponent: Handles nested form groups
  • RecordRelationshipsComponent: Manages model relationships

Services

  • AmplifyModelService: Centralized service for Amplify Data operations
  • AmplifyFormBuilderService: Generates Angular reactive forms from Amplify schemas
  • QuestionControlService: Converts model fields to question objects

License

MIT

Contributing

Please read our contributing guidelines before submitting pull requests.

Support

For issues and questions, please use the GitHub issue tracker.