Socket
Socket
Sign inDemoInstall

rb-letter-avatar

Package Overview
Dependencies
8
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rb-letter-avatar

Angular letter avatar component


Version published
Maintainers
1
Install size
431 kB
Created

Changelog

Source

2.0.0

  • Upgrade to Angular 6
  • Use the Angular CLI to build the package

Readme

Source

Angular Letter Avatar Component

A forked version of the letter avatar component from ngu-utility. That library was forked due to the immediate need for a pull-request to be accepted.

This component is a letter avatar for a given string. Like Gmail or Google inbox text avatar i.e. First letter of the given data will be the avatar

Quick Start

npm install rb-letter-avatar --save

Simple Example

// app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { RbLetterAvatarModule } from 'rb-letter-avatar'; // <-- import the module

@NgModule({
  declarations: [],
  imports: [
    RbLetterAvatarModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
<rb-letter-avatar [avatar-data]='title' ></rb-letter-avatar>

Option attributes

You can affect how the letter avatar operates with the following settings:

attribute namedefaultdescription
avatar-custom-bg-colorNo default valueUsing this attribute set the custom color for avatar background.
avatar-dynamicfalseSet this attribute to true if dynamically avatar needs to be generated on data change.
avatar-rotate-degree0Set this attribute required degrees of rotation of the avatar.
avatar-alphabet-colorsdefault color setUsing this attribute set the custom colors for the alphabets only.
avatar-char-count1Specifies the number of letters to displayed. to generate combined letter avatar of first name and last name which are separated by space then set the value to '2'
avatar-dataInput data i.e. email, names...etc -OR- If image already exists for item, set image URL or image data
avatar-height50pxset the height for the avatar
avatar-width50pxset the width for the avatar
avatar-font-weight400set the font weight for the avatar
avatar-font-size30pxset the font size for the letter
avatar-shapesquareset the shape for the avatar. set 'round' for rounded avatars
avatar-font-familyHelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica, Arial,Lucida Grande, sans-serifset the font Family of the avatar.
avatar-borderfalseset the avatar border to 'true' for the white border to avatar.
avatar-custom-borderno default valueusing this attribute set the custom style to avatar borders i.e "border:5px solid black".

preview snaps :

demo demo demo demo demo demo demo demo demo demo

Building from source

Requires globally-installed node (tested with v8.x) & npm.

npm install
npm run build 

Contributions

For problems/suggestions please create an issue on Github.

Contributors

  • @ryanburr

License

The MIT License

Copyright (c) 2018 Ryan M. Burr

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 16 May 2018

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