From 25a1adbbd2afc75897f83004c48f0a3dd7361b16 Mon Sep 17 00:00:00 2001
From: atorres
Date: Sat, 17 Sep 2022 11:00:23 -0300
Subject: [PATCH] readme
---
projects/ngx-colors/README.md | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/projects/ngx-colors/README.md b/projects/ngx-colors/README.md
index e68c256..4a83d05 100644
--- a/projects/ngx-colors/README.md
+++ b/projects/ngx-colors/README.md
@@ -1,9 +1,10 @@
![size](https://img.shields.io/bundlephobia/min/ngx-colors?style=for-the-badge)
![download](https://img.shields.io/npm/dm/ngx-colors?style=for-the-badge)
+
ngx-colors
A beautiful color picker for angular that let you choose from a
-color palette, using sliders (Hue, Lightness, Alpha sliders) or through text input(hex, rgba, hsla)
+color palette, using sliders (Hue, Lightness, Alpha sliders) or through text input(hex, rgba, hsla)
@@ -12,19 +13,24 @@ color palette, using sliders (Hue, Lightness, Alpha sliders) or through text inp
https://ngx-colors.web.app/
-
## Preview
![example gif](https://raw.githubusercontent.com/KroneCorylus/ngx-colors/master/projects/ngx-color-examples/src/assets/img/example-gif.gif)
## Installation
-#### Npm
-```shell
-npm install @angular/animations
-```
+#### Dependencies
+
+##### ngx-colors < v3.1.0
+
+Angular > v10.0.0 < 13.1.1
+
+##### ngx-colors >= v3.1.0
+
+Angular > v13.1.1
#### Npm
+
```shell
npm install ngx-colors
```
@@ -42,8 +48,11 @@ import { NgxColorsModule } from 'ngx-colors';
]
})
```
+
## Overview and usage
+
This library is composed of two parts:
+
1. ngx-colors-trigger: This directive can be applied to any html element turning it into a trigger that when clicked will open the color picker
2. ngx-colors: This component is a premade button that will display the selected color.
@@ -52,10 +61,15 @@ This library is composed of two parts:
```html
```
+
##### Or with Reactive Forms:
```html
```