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

makeup-floating-label

Package Overview
Dependencies
Maintainers
2
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

makeup-floating-label

Module for creating an accessible, progressively enhanced floating label

  • 0.3.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

makeup-floating-label

Module for creating an accessible, unobtrusive, progressively enhanced floating label.

In a non-javascript state the label will not obscure the textbox; the label will remain in its default floated position above the textbox.

Experimental

This module is still in an experimental state, until it reaches v1 you must consider all minor releases as breaking changes.

Example

import FloatingLabel from "makeup-floating-label";

// get NodeList
const widgetEls = document.querySelectorAll(".floating-label");

// assign next id to each element
widgetEls.forEach(function (el) {
  var widget = new FloatingLabel(el);
});

Markup:

<div class="floating-label">
  <label class="floating-label__label" for="input-1">Input 1</label>
  <input class="floating-label__textbox" id="input-1" name="input-1" />
</div>

Params

  • el: the root widget el
  • options.labelElementAnimateModifier: the classname to add when the label begins its CSS animation (default: 'floating-label__label--animate')
  • options.labelElementInlineModifier: the classname to add when the label is in its non-floating state (default: 'floating-label__label--inline')
  • options.labelElementFocusModifier: the classname to add to the label when the textbox has keyboard focus
  • options.labelElementInvalidModifier: the classname to add to the label when the textbox has an an aria-invalid state
  • options.labelElementDisabledModifier: the classname to add to the label when the textbox has an a disabled state
  • options.textboxElementBackgroundRGB: for the purposes of a Chrome autofill bug, if your textbox background colour is not white, specify its RGB value (default: 'rgb(255, 255, 255)'). An array of RGB values is also supported in the case your textbox background has different colours on focus, invalid, disabled, etc.

Methods

  • refresh(): call this after form autofill or reset to refresh the label state

Custom Events

None

Keywords

FAQs

Package last updated on 15 May 2024

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