Socket
Socket
Sign inDemoInstall

@afconsult/apollo

Package Overview
Dependencies
15
Maintainers
4
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @afconsult/apollo

Design system for ÅF Web Apps


Version published
Weekly downloads
44
increased by2100%
Maintainers
4
Install size
11.7 MB
Created
Weekly downloads
 

Readme

Source

Apollo Design System

Design system for Enterprise Web Apps

npm version Build Status License: MIT Commitizen friendly

Getting Started

Install

Install with npm:

npm install @afconsult/apollo --save

Install with Yarn:

yarn add @afconsult/apollo

Example

  1. Import the stylesheet:
import '@afconsult/apollo/dist/css/apollo.css';
  1. Import required apollo components:
import { Button, Form, FormGroup, Input, Label } from '@afconsult/apollo';
  1. Use the components:
const Example = () => (
  <Form>
    <FormGroup>
      <Label for="example">Example Input</Label>
      <Input id="example" placeholder="Inser text here.." />
    </FormGroup>
    <Button type="submit">Submit</Button>
  </Form>
);

Components

Contribute

Feel free to create an issue or feature request.

Development

  1. Install dependencies:
yarn install
  1. Run examples at http://localhost:8080/ with webpack dev server:
yarn run start

Release

Note: you must have the GITHUB_TOKEN environment variable set to a valid GitHub token with write access to your repo.

  1. Run release script and follow the instructions:
yarn run release
  1. Run publish script to publish apollo to npm.
yarn run publish

Authors

Jon Wahlström (jonwa)

See also the list of contributors.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Keywords

FAQs

Last updated on 20 Apr 2019

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