Socket
Socket
Sign inDemoInstall

@rei/cdr-button

Package Overview
Dependencies
Maintainers
9
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rei/cdr-button

REI Cedar Style Framework - Vue Component for Button


Version published
Weekly downloads
0
decreased by-100%
Maintainers
9
Weekly downloads
 
Created
Source

CdrButton

Properties

NameTypeDefault
tagstringbutton
Renders CdrButton as a <button> or <a> element. When using the value of <a>, this element renders as an achor link. Possible values: { 'button''a' }
NameTypeDefault
typestringbutton
Sets the button type. Possible values: { 'button''submit''reset' }
NameTypeDefault
onClickfunctionreturn null
Adds custom click actions.
NameTypeDefault
fullWidthbooleanfalse
Sets button width to 100%. Setting it to true will set the button width to 100% of the parent container. Use the full-width prop with the size prop to control top and bottom padding.
NameTypeDefault
sizestringmedium
Sets the button size. Possible values: { 'small''medium''large' }
NameTypeDefault
responsiveSizearrayn/a
Sets the button size at different responsive breakpoints. Breakpoints are expressed as t-shirt sizing with values: xs, sm, md, and lg. Examples: { ‘large@xs’‘small@lg’ }
NameTypeDefault
iconOnlybooleanfalse
Renders an icon-only button. When this value is true, it will override the size and responsiveSize props
NameTypeDefault
onDarkbooleanfalse
Renders an icon-only button with a light fill color for use on dark backgrounds. The 'iconOnly' prop must be true.
NameTypeDefault
modifierstringn/a
Modifies the style variant for this component. Possible values: { 'secondary' }

Slots

All CdrButton components have two slots.

NameNotes
DefaultSlot for button text. Leave empty if icon-only
iconSlot for the icon

Installation

Resources are available within the CdrButton package:

NameTypeDescription
@rei/cdr-buttonNode module packageImport the component into your project
cdr-button.cssStyle sheetComponent specific styles

To incorporate the required assets for a component, use the following steps:

1. Install using NPM

Install the CdrButton package using npm in your terminal:

Terminal

    npm i -s @rei/cdr-button

2. Import dependencies

main.js

// import your required css.
import "@rei/cdr-link/dist/cdr-button.css";

3. Add component to a template

In this example we’ll create a medium-sized primary button, which is the default.

local.vue

<template>
  <cdr-button
    type="button"
  >
    Add to cart
  </cdr-button>
</template>

<script>
import { CdrButton } from '@rei/cdr-button';
export default {
  ...
  components: {
     CdrButton  
  }
}
</script>

Usage

Size, responsive size, and full-width sizing props

The below example uses both the size and responsive-size props. This button’s size is small, but it will become a large button at the xs and sm breakpoints.

<template>
  <cdr-button
    size="small"
    :responsive-size="[‘large@xs’, ‘large@sm’]"
  >
    Add to cart
  </cdr-button>
</template>

Modifiers

Following variants are available to the cdr-button modifier attribute:

ValueDescription
secondarySets the secondary style for the button

Click Actions

Use the on-click prop to attach custom actions and event handling.

<template>
  <cdr-button
    :on-click="greet"
  >
    Greet
  </cdr-button>
</template>

<script>
export default {
  ...
  methods: {
    greet() {
      console.log(‘Hello there’);
    }
  }
}
</script>

Composing with icons

CdrButton can be used with the icon component from the CdrIcon package.

Text and Icon

To scale Cedar icons appropriately, include the cdr-button__icon class with any icon component. The size prop scales both the icon and button.

In the below example, a Download button is rendered as a button with icon and text using cdr-icon and the icon sprite.

<template>
  <cdr-button>
    <cdr-icon
      slot="icon"
      class="cdr-button__icon"
      use="#download"
    />
    Download
  </cdr-button>
</template>

<script>
import { CdrButton } from '@rei/cdr-button';
import { CdrIcon } from '@rei/cdr-icon;
export default {
  ...
  components: {
     CdrButton,
     CdrIcon,  
  }
}
</script>

Icon Only

Use the following props to modify cdr-button:

  • Default slot must be empty. If text is present in default slot, the text will render
  • size prop is disable when icon-only prop is true
  • For the SVG files:
    • If the fill color is dark, assign true to the on-dark prop
    • on-dark prop only works if icon-only prop is also true
  • Add aria-label text to describe the button’s action when clicked or tapped
<template>
  <cdr-button
    :icon-only="true"
    :on-dark="true"
    aria-label="Complete this step"
  >
    <icon-check-lg
      slot="icon"
      class="cdr-button__icon" />
  </cdr-button>
</template>

CdrCloseButton & CdrPlayButton

The CdrButton package includes two specific icon-only variants. CdrCloseButton and CdrPlayButton include their respective icons and aria-label text for accessibility.

<template>
  <cdr-close-button />
</template>

<script>
import { CdrCloseButton } from '@rei/cdr-button';

export default {
  ...
  components: {
     CdrCloseButton  
  }
}
</script>

Accessibility

  • Cdr-button renders as a button or anchor:
    • Select the semantically correct element, which will ensure that screen readers have correct instructions for how to interact with the component
    • Use cdr-link to make a button that looks like a link
    • Do not use div or input elements
  • Do not add role=”button” to cdr-button
  • Icon-only buttons require aria-label text since only the icon is visible

FAQs

Package last updated on 25 Sep 2018

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