New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bbc/psammead-timestamp

Package Overview
Dependencies
Maintainers
1
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bbc/psammead-timestamp

React styled component for displaying a timestamp with a suitable semantic markup

  • 4.0.17
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

Description

Displays a timestamp, with suitable semantic markup.

When to use this component

For displaying an isolated timestamp, separate from the other content in an article or cell.

When not to use this component

When a date or time is to be displayed inline inside a paragraph.

Installation

npm install @bbc/psammead-timestamp

Props

ArgumentTypeRequiredDefaultExample
datetimestring (supported formats)YesN/A2006-09-24T05:00-07:00
typographyFuncfunctionNogetBrevierfunction getPica(script){ return 'font-size: 28'; }
paddingbooleanNotruefalse
scriptobjectYesN/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'
darkModeboolnofalsetrue

Usage

import { latin } from '@bbc/gel-foundations/scripts';
import { getPica } from '@bbc/gel-foundations/typography';

const WrappingContainer = () => (
  <Timestamp
    datetime="2019-03-01T14:00+00:00"
    typographyFunc={getPica}
    padding={false}
    script={latin}
    service="news"
  >
    Friday 1 March 2019
  </Timestamp>
);

Accessibility notes

The usage of the semantic time element within this component can result in strange behaviours when using assistive technology such as VoiceOver for iOS. Specifically, it results in a "text splitting" behaviour, where any text in the prefix is read out, but the value inside the semantic time element require an additional swipe before being read out.

However, as we heavily encourage the use of this semantic element, and want to ensure it's usage is in line with the W3C examples, we feel this compromise is necessary.

Contributing

Simorgh 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 Simorgh respository.

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

Simorgh is Apache 2.0 licensed.

Keywords

FAQs

Package last updated on 15 Mar 2021

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