Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ngneat/reactive-forms Loading
base: v3.0.0
Choose a base ref
...
head repository: ngneat/reactive-forms Loading
compare: v3.1.0
Choose a head ref
  • 5 commits
  • 6 files changed
  • 2 contributors

Commits on Oct 8, 2021

  1. feat: bump rule

    NetanelBasal committed Oct 8, 2021
    Configuration menu
    Copy the full SHA
    8f9fa05 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2021

  1. docs(readme): fix link and update FormBuilder example

    Fixes the link and updates FormBuilder example to be more in line with Angular guide.
    undsoft committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    f12e437 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2e8d48 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2021

  1. fix(controlsOf): allow using optional fields

    Optional fields will only work with top-level values, and will not work with `FormGroup`:
    
    ```ts
    interface User {
      name?: string;
      foo?: string[];
      // πŸ‘‡πŸ» will not work
      nested?: {
        id: string;
      };
    }
    ```
    
    Fixes #111
    NetanelBasal committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    513beee View commit details
    Browse the repository at this point in the history
  2. chore(release): 3.1.0

    NetanelBasal committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    0b8842c View commit details
    Browse the repository at this point in the history
Loading