Socket
Book a DemoInstallSign in
Socket

@gov.au/keyword-list

Package Overview
Dependencies
Maintainers
4
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gov.au/keyword-list

A list style for emphasising parts of a list item, useful for repeating phrases across that list’s items.

latest
Source
npmnpm
Version
3.0.6
Version published
Maintainers
4
Created
Source

@gov.au/keyword-list

A list style for emphasising parts of a list item, useful for repeating phrases across that list’s items.

Contents

  • Install
  • Usage
  • Dependency graph
  • Tests
  • Release History
  • License

Install

yarn add @gov.au/keyword-list
npm install @gov.au/keyword-list

⬆ back to top

Usage

⬆ back to top

React

Usage:

import AUkeywordList from './keyword-list.js';

<AUkeywordList
  repeatedName='Department of'
  items={[
    {
      link: 'http://www.agriculture.gov.au/',
      name: 'Agriculture and Water Resources',
    },
    {
      link: 'https://www.communications.gov.au/',
      name: 'Communications and the Arts',
      li: {
        className: 'li-wrapping-class',
      },
    },
    {
      link: 'https://www.finance.gov.au/',
      name: 'Finance',
    },
  ]}
/>

All props:

<AUkeywordList
  dark={ false }                                {/* A dark variation of the component */}
  repeatedName="Department of"                  {/* The text That is repeated in each item */}
  linkComponent="a"                             {/* The component used for the link, optional */}
  items={[                                      {/* All items in a neat array */}
    {
      link: 'http://www.agriculture.gov.au/',   {/* The URL of this item, optional */}
      linkComponent: 'a',                       {/* The component used for the link, optional */}
      name: 'Agriculture and Water Resources',  {/* The name of the item */}
      li: {},                                   {/* An object that will be spread onto the <li> tag, optional */}
    },
  ]},
/>

(💡 additional props are spread onto the component)

For more details have a look at the usage example.

⬆ back to top

Dependency graph

keyword-list
├─ core
└─ link-list
   ├─ core
   └─ body
      └─ core

⬆ back to top

Tests

The visual test: https://auds.service.gov.au/packages/keyword-list/tests/site/

⬆ back to top

Release History

  • v3.0.6 - Update core package dependency to use the latest version
  • v3.0.5 - Remove --save-dev flag from readme instructions
  • v3.0.4 - Removed unused Fragment React import
  • v3.0.3 - Removed uikit references
  • v3.0.2 - Update dependencies
  • v3.0.1 - Removing web pack dev server, updating dependencies
  • v3.0.0 - Updated dependency version of link-list, build scripts for Windows
  • v2.1.1 - Replace node-sass with sass
  • v2.1.0 - React router support
  • v2.0.3 - Update dependencies
  • v2.0.2 - Change homepage links
  • v2.0.1 - Fix dependencies
  • v2.0.0 - Change to focus colour and border/muted color mix
  • v1.0.0 - Moved to AU namespace, added new color themes and spacing
  • v0.3.0 - Added pancake-react plugin, ES5 main file
  • v0.2.0 - Added react component
  • v0.1.0 - 💥 Initial version

⬆ back to top

License

Copyright (c) Commonwealth of Australia. Licensed under MIT.

⬆ back to top

};

Keywords

auds

FAQs

Package last updated on 07 Jun 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