Socket
Socket
Sign inDemoInstall

@bbc/psammead-bulleted-list

Package Overview
Dependencies
Maintainers
40
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bbc/psammead-bulleted-list

React styled component for ordered and unordered lists


Version published
Maintainers
40
Created
Source

psammead-bulleted-list - Known Vulnerabilities Dependency Status peerDependencies Status Storybook GitHub license npm version PRs Welcome

Description

The BulletedList component is a styled bulleted (unordered) list that works for right-to-left and left-to-right languages.

Installation

npm install @bbc/psammead-bulleted-list --save

Props

ArgumentTypeRequiredDefaultExample
dirstringNo'ltr'One of 'rtl' 'ltr'
scriptscriptYesN/A{ canon: { groupA: { fontSize: '28', lineHeight: '32',}, groupB: { fontSize: '32', lineHeight: '36', }, groupD: { fontSize: '44', lineHeight: '48', }, }, trafalgar: { groupA: { fontSize: '20', lineHeight: '24', }, groupB: { fontSize: '24', lineHeight: '28', }, groupD: { fontSize: '32', lineHeight: '36', }, }, }
servicestringYesN/A'news'
bulletPointShape'round' or 'square'NoN/A'round'
bulletPointColourCSS ColourNo'#3F3F42''#ff0000'

Usage

Use BulletedList in place of a ul element with required props and a BulletedListItem in place of an li.

import BulletedList, { BulletedListItem } from '@bbc/psammead-bulleted-list';

const props = {
  dir: 'ltr',
  script: latin,
  service: 'news',
  bulletPointShape: 'round', // or 'square'
};

<BulletedList {...props}>
  <BulletedListItem>A list item</BulletedListItem>
  <BulletedListItem>Another item</BulletedListItem>
</BulletedList>

When to use this component

BulletedLists can be used wherever you need a standard GEL unordered list.

When not to use this component

It's not ideal for when you need a custom bullet. Use the standard <ul> instead if you need to style your bullets.

Accessibility notes

  • The bullets in psammead-bulleted-lists are not read by screen readers and are generated using pseudo-elements.

  • We have added role list and role listitem to the corresponding items due to a VoiceOver bug to reinstate the list semantics

Contributing

Psammead is completely open source. We are grateful for any contributions, whether they be new components, bug fixes or general improvements. Please see our primary contributing guide which can be found at the root of the Psammead repository.

Code of Conduct

We welcome feedback and help on this work. By participating in this project, you agree to abide by the code of conduct. Please take a moment to read it.

License

Psammead is Apache 2.0 licensed.

FAQs

Package last updated on 30 Mar 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc