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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@flebee/forms

v0.3.0-beta.0

Published

Formly integration with flebee ui

Downloads

24

Readme

Flebee Forms is a powerful extension of Formly for Angular that introduces signals and a declarative approach to form creation. With a strong emphasis on type inference, Flebee Forms enables the development of complex forms with enhanced type safety, making form creation in Angular more intuitive and efficient.

Note: While Flebee Forms provides robust type inference capabilities, we recognize that there may be some limitations. We invite contributions or suggestions from the community to help us improve the type inference within our library.

In addition to seamless integration with Formly, Flebee Forms incorporates a wide range of Flebee UI components. This allows for not only data input but also the representation and interaction with various UI elements, such as buttons and other visual components.

Important: Flebee Forms is currently in development and in the beta phase. Some features may not be fully operational.

Getting Started

To begin using Flebee Forms, follow the comprehensive guide available on our documentation site. This guide will walk you through the installation process, basic setup, and initial configuration to help you seamlessly integrate Flebee Forms into your Angular project.

Visit the Flebee Forms Getting Started Guide to get started.

Documentation

For detailed information on all available components, their properties, methods, and examples, please refer to our documentation. The documentation provides usage examples to help you make the most of Flebee Forms.

Access the full documentation here: Flebee Forms Documentation.

Features

  • Signal Integration: Extends Formly with signals for more effective state management.
  • Declarative Form Creation: Build forms using a declarative API that simplifies complex form structures.
  • Type Inference: Leverage TypeScript to ensure type safety in your forms.
  • Zoneless Components: Designed to work without Angular zones, improving performance.
  • Server-Side Rendering (SSR) Support: Optimized for server-side rendering.
  • Flebee UI Components: Includes additional Flebee UI components for easy representations and interactions, such as buttons and more.

Usage Example

Here’s a quick example of how to define a form using Flebee Forms:

import { ChangeDetectionStrategy, Component, computed, effect, signal, TemplateRef, viewChild } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';

import { BeeForms, buildForm } from '@flebee/forms';
import { withButton } from '@flebee/forms/button';
import { withFieldGroup } from '@flebee/forms/field-group';
import { withInput } from '@flebee/forms/input';
import { withTemplate } from '@flebee/forms/template';
import { BeeButton } from '@flebee/ui/button';

@Component({
  standalone: true,
  selector: 'app-root',
  imports: [BeeForms, BeeButton, ReactiveFormsModule],
  template: `
    <form [formGroup]="address.form" (ngSubmit)="onSubmit()" class="p-6">
      <bee-forms [fields]="address.fields" [form]="address.form" [(model)]="address.model" />
    </form>

    <ng-template #headerTpl>
      <header class="flex flex-col gap-4 mb-4">
        <h2> Example Form </h2>

        <button beeButton variant="secondary" type="button" (click)="toggle()">
          Toggle Example (Current: {{ example() }})
        </button>
      </header>
    </ng-template>
  `,
  changeDetection: ChangeDetectionStrategy.OnPush
})
export class AppComponent {
  public subTitle = computed(() => `Address${this.example() ? ' Updated' : ''}`);
  public label = computed(() => `Name${this.example() ? ' Updated' : ''}`);
  public header = viewChild.required<TemplateRef<void>>('headerTpl');
  public buttonLabel = viewChild.required<TemplateRef<void>>('buttonLabel');
  public price = signal(0);
  public example = signal(false);

  public address = buildForm(
    withTemplate({ template: this.header, className: 'col-span-full mt-4' }),
    withFieldGroup(
      { className: 'grid gap-4 grid-cols-2' },
      withInput({ key: 'name', props: { type: 'text', label: this.label, required: true } }),
      withInput({ key: 'price', props: { type: 'number', label: 'Price' } })
    ),
    withFieldGroup(
      { key: 'address', className: 'grid gap-4 grid-cols-2' },
      withTemplate({ template: this.subTitle, className: 'col-span-full mt-4' }),
      withInput({ key: 'name', props: { type: 'text', label: 'Name' } }),
      withInput({ key: 'phone', props: { type: 'tel', label: 'Phone' } }),
      withInput({ key: 'date', props: { type: 'date', label: 'Date' } })
    ),
    withButton({ className: 'mt-4 block', props: { type: 'submit', label: 'Save' } })
  );

  constructor() {
    // Effect to log model changes
    effect(() => console.log(this.address.model()));

    // Subscribe to form value changes
    this.address.form.valueChanges.subscribe((value) => console.log(value));

    // Log the form instance
    console.log(this.address.form);
    // Inference: FormGroup<{
    //   name: FormControl<string>;
    //   price: FormControl<number | undefined>;
    //   address: FormGroup<{
    //     name: FormControl<string | undefined>;
    //     phone: FormControl<string | undefined>;
    //     date: FormControl<Date | undefined>;
    //   }>;
    // }>

    // Log the current model
    console.log(this.address.model());
    // Inference: Partial<{
    //   name: string | undefined;
    //   price: number | undefined;
    //   address: Partial<{
    //     name: string | undefined;
    //     phone: string | undefined;
    //     date: Date | undefined;
    //   }> | undefined;
    // }>
  }

  toggle() {
    this.example.update((value) => !value);
  }

  onSubmit() {
    // Log the form value without nulls
    console.log(this.address.form.getRawValue());
    // Inference: {
    //     name: string;
    //     price: number | undefined;
    //     address: {
    //         name: string | undefined;
    //         phone: string | undefined;
    //         date: Date | undefined;
    //     };
    // }
  }
}

In this example, you can see how Flebee Forms simplifies form creation with a clear structure and robust type inference, all while leveraging signals for improved state management.

Contributing

We welcome contributions! Please read our Contributing Guide to learn about our development process and how to submit pull requests.

License

This project is licensed under the MIT License.