npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ovh-ux/ng-ovh-form-flat

v5.0.1

Published

Form Design for v6 manager

Downloads

21

Readme

ng-ovh-form-flat

Form Design for v6 manager.

npm version Downloads Dependencies Dev Dependencies Gitter

Install

$ yarn add @ovh-ux/ng-ovh-form-flat

Usage

import angular from 'angular';
import ngOvhFormFlat from '@ovh-ux/ng-ovh-form-flat';

angular.module('myModule', [ngOvhFormFlat]);

Example

OVH form flat is a overload template for angular-bootstrap.

OVH form flat can design thoses elements:

  • Text input
  • Textarea
  • Select
  • Checkbox
  • Radio input
  • Switch button

:warning: Note :warning:

  • In OVH form flat, labels aren't display until the placeholder is visible.
  • div tags are optionals. If you use it, you will have a first structure with a label at top, and input below. If you already have a style which position your label where you want, you can keep it and evade adding div row / col-xx-xx.

Before using specials tags, you have to add a ovh-form-flat class on your form:

<form
    name="myFormName"
    data-ng-submit="..."
    class="form-horizontal ovh-form-flat">
    ...
</form>

Text inputs

To create a text input, you have to frame your input tag with a <div data-flat-input-container>.

<div data-flat-input-container>
    <label
        class="control-label"
        for="myInputId">
        My Input Label Example
    </label>
    <input
        id="myInputId"
        name="myInputName"
        class="form-control"
        placeholder="My Input Label Example">
</div>

Checkboxes

To display a checkbox, wrap your checkbox input with a tag <flat-checkbox>.

<flat-checkbox>
    <input
        type="checkbox"
        name="myInputName"
        id="myInputId"
        data-ng-model="myCheckbox">
</flat-checkbox>

Select

To display a custom select, wrap your select with a tag <flat-select>.

<select
    name="mySelect"
    class="form-control"
    data-flat-select
    data-ng-model="myModel">
    <option value="opt1">Option 1</option>
    <option value="opt2">Option 2</option>
</select>

Radios

To display a radio, wrap your radio input with a tag <flat-radio>.

<flat-radio>
    <input
        type="radio"
        name="myInputName"
        id="myInputId"
        data-ng-model="myCheckbox">
</flat-radio>

If you want, you can wrap your flat-radio in a label tag, like below:

<label>
    <flat-radio>
        <input
            type="radio"
            name="myInputName"
            id="myInputId"
            data-ng-model="myCheckbox">
    </flat-radio>
    My label
</label>

Textarea

To create a textarea, you have to frame your textarea tag with a <div data-flat-input-container>.

<div data-flat-input-container>
    <label
        class="control-label"
        for="myInputId">
        My Input Label Example
    </label>
    <textarea
        id="myInputId"
        name="myInputName"
        class="form-control"
        placeholder="My Input Label Example">
    </textarea>
</div>

Combine input & select (example: email)

To combine an input and a select, you have to frame your input and select tags with a <div data-flat-input-container>.

<div class="col-xs-12 input-select">
    <div data-flat-input-container>
        <label class="control-label">Email</label>
        <div class="input-select-container">
            <div class="input-group col-xs-8">
                <input
                    name="accountName"
                    class="form-control"
                    required
                    placeholder="{{ 'account_name' | translate }}">
                 <span class="input-group-addon">@</span>
            </div>
            <div class="col-xs-4 no-margin">
                <select
                    name="accountDomain"
                    class="form-control"
                    required
                    data-flat-select>
                    <option value="@ovh.fr" selected>ovh.fr</option>
                </select>
            </div>
        </div>
    </div>
</div>

Test

$ yarn test

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS