Socket
Socket
Sign inDemoInstall

ion-rating-stars

Package Overview
Dependencies
14
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ion-rating-stars

Ionic 6 rating stars component using Angular


Version published
Weekly downloads
62
decreased by-33.33%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

ion-rating-stars

Documentation Maintenance License: MIT

📝 Table of Contents

✅ Prerequisites

The current version of the library is compatible with Ionic 6+.

⬇️ Install

Using npm

npm install ion-rating-stars --save

Using yarn

yarn add ion-rating-stars

🛠 Setup

Once installed you need to import our module in the parent module for the component you will be using it in:

import { IonRatingStarsModule } from 'ion-rating-stars';

@NgModule({
  ...
  imports: [IonRatingStarsModule, ...],
  ...
})
export class YourModule {
}

Usage

Include the component on page template, like the example below:

  <ion-rating-stars
  [rating]="3"
  [color]="'darkgrey'"
  [filledColor]="'orange'"
  [margin]="2"
  [size]="20"
  [disabled]="false"
  [opacity]="0.5"
  [isHalfStar]="true"
  (ratingChange)="ratingChanged($event)"></ion-rating-stars>

API

Properties

  • rating: number [0-5].
  • color: string color of stars. applies as color default darkgrey.
  • filledColor: string filledColor of stars. applies as color default orange.
  • margin: number space between stars in pixels. applies as margin-right. default 20.
  • size: number size of stars. applies as font-size. default 20.
  • disabled: boolean disables the events and anything on ratings. applies as pointer-events. default false.
  • opacity: number change stars opacity when disabled is true. applies as number default 0.5
  • isHalfStar: boolean to Enable/Disable half stars. applies as boolean default false

Events

  • ratingChange: EventEmitter<number>, called whenever you change a rating value

Author

👤 Najam Us Saqib

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2023 Saqb92.
This project is MIT licensed.

Keywords

FAQs

Last updated on 20 Sep 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc