19.0.0 • Published 5 months ago

ngx-gooey v19.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

npm version StackBlitz

Installation

npm install ngx-gooey

Usage

You can either import into your NgModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import the library
import { Gooey } from 'ngx-gooey';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    Gooey, // <-- Add this line
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Or directly into a standalone component:

  standalone: true,
  imports: [Gooey],

Then use it in your template:

<ngx-gooey> … </ngx-gooey>

You can put regular HTML elements inside ngx-gooey, but using an SVG is recommended for better browser support. Shape blobbing will be applied to everything within the component.

Visit the website for full documentation, properties and examples.

Related

inspired by gooey-react

19.0.0

5 months ago

18.0.1

1 year ago

18.0.0

1 year ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago