1.0.2 â€ĸ Published 7 months ago

@groupix/groupix-spinner v1.0.2

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

Groupix Spinner

A lightweight, customizable spinner component for Angular applications.

✨ Features

  • 🚀 Simple integration
  • 🎨 Colorful bouncing ball animation
  • đŸ”ĸ Customizable ball count (3-9)
  • đŸĒļ Lightweight with minimal dependencies

đŸ“Ļ Installation

npm install @groupix/groupix-spinner --save

🔧 Usage

Import the module

// In your module (for non-standalone components)
import { GroupixSpinnerModule } from '@groupix/groupix-spinner';

@NgModule({
  imports: [GroupixSpinnerModule],
  // ...
})
export class AppModule {}

// OR in standalone component
import { GroupixSpinnerModule } from '@groupix/groupix-spinner';

@Component({
  // ...
  imports: [GroupixSpinnerModule],
  // ...
})

Add to template

<!-- Default: 3 balls -->
<groupix-spinner></groupix-spinner>

<!-- Custom: 5 balls -->
<groupix-spinner [ballCount]="5"></groupix-spinner>

🎮 Live Demo

Check out the live demo: Groupix Spinner Demo

đŸŽŦ Examples

Basic usage

<groupix-spinner></groupix-spinner>

With loading state

<groupix-spinner *ngIf="isLoading"></groupix-spinner>
<button (click)="isLoading = !isLoading">Toggle Spinner</button>

Custom ball count

<groupix-spinner [ballCount]="7"></groupix-spinner>

📄 License

MIT Š Arshdeep Singh

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago

0.1.1

9 months ago

0.1.0

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago

0.0.0

9 months ago