@samhuk/text-input
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

text-input

A vanilla JS text input UI component.

sc1

Usage

npm i @samhuk/text-input

import { createTextInput } from '@samhuk/text-input'

const element = document.createElement('div')

const textInput = createTextInput({
  label: 'User Name',
  initialValue: '',
})

element.appendChild(textInput.rendered.element)

Importing Styles

There are two main ways the styles of the component can be imported into another project. One can either:

  1. import the scss entrypoint or css bundle file into your .ts or .js file. This is supported by all the main bundlers out there like webpack and esbuild as long as you have the required loader/plugin for scss or css files configured.
// Import the scss entrypoint file from the src
import 'node_modules/@samhuk/text-input/src/component/styles/index.scss'
// Import the css bundle file
import 'node_modules/@samhuk/text-input/dist/styles.css'
  1. @import the scss entrypoint file into your scss file.
@import '~@samhuk/text-input/src/component/styles/index.scss';

/@samhuk/text-input/

    Package Sidebar

    Install

    npm i @samhuk/text-input

    Weekly Downloads

    1

    Version

    1.0.4

    License

    MIT

    Unpacked Size

    18 kB

    Total Files

    13

    Last publish

    Collaborators

    • samhuk