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

jb-time-input

v1.3.1

Published

time input web component

Downloads

71

Readme

jb-time-input web component

Published on webcomponents.org GitHub license

in jb-time-input you can create a input specialy for time the advantage is: sample: https://codepen.io/javadbat/pen/QWdxzKb

  • validation so it only accept time value and not any other invalid format
  • support arrow key to increase and decrease time value
  • time picker
  • support both rtl and ltr direction
  • easy to use and can be used in any js framework like React, Vue, Angular,etc
  • can be used in purejs without any other dependancy
  • has a touch friendly time-picker
  • responsive and mobile friendly

instruction

installation and usage

with npm:

    npm i jb-time-input
    import 'jb-time-input'
    <div>
        <jb-time-input/>
    <div>

event

like any other javascript DOM element you can bind event to web component with DOM.addEventListener the supported event is:

    //when defualt property are defined best time for impl your config
    document.querySelector('jb-date-input').addEventListener('init',this.onCalendarElementInitiated);

    //when calendar init all property and function and dom created and bind successully
    document.querySelector('jb-date-input').addEventListener('load',this.onCalendarElementLoaded);

    //keyboard event
    document.querySelector('jb-time-input').addEventListener('keydown',()=>{});
    document.querySelector('jb-time-input').addEventListener('keyup',()=>{});
    document.querySelector('jb-time-input').addEventListener('keypress',()=>{});
    document.querySelector('jb-time-input').addEventListener('change',()=>{});
    // when user press enter on type good for situation you want so submit form or call search function on user press enter. 
    document.querySelector('jb-time-input').addEventListener('enter',()=>{});
    //focus event
    document.querySelector('jb-time-input').addEventListener('focus',()=>{});
    document.querySelector('jb-time-input').addEventListener('blur',()=>{});

set value

to set value of time input you have 2 way:

  • by html as a attribute:
<jb-time-input value="14:34:63">
  • by javascript
    document.querySelector('jb-date-input').value = "01:11:12";

validation

jb time input will check validation automatically and show error on user blur the input and hide error on user type and blur to use this feature you just have to set validation list of component.

document.querySelector('jb-time-input').validationList = [
    {
    // custom validator with regex
            validator: /^[1][1234].*$/g,
            message:"market is only open on 11-14."
    },
    //custom validator with function 
    {
            validator: (typedText)=>{typedText?return true : return false;},
            message:"you must fill the time"
    }
]

you can trigger validation manually by calling triggerInputValidation function. for example you can call it when submit button clicked and check if value is valid or not.

    // if you set showError false you can get validation result but component wont show error to user by itself its good when you want show error in your own way
    const showError = true;
    const validationResult =  document.querySelector('jb-time-input').triggerInputValidation(showError);
    if(validationResult.isAllValid){
        alert('all validation are passed')
    }else{
        alert('validation error!');
    }

you can also get validation result of your time input by following way:

    document.querySelector('jb-time-input').validation
    //in change event detail
    document.querySelector('jb-time-input').addEventListener('change',(e)=>{
        alert(e.detail.isValid);
        console.log(e.detail.validationObject);
    });

configurabe attributes

you can change some attribute in html like label or message configurable attribute are:

<jb-time-input close-button-text="بستن"></jb-time-input>

disable second

if you want to just input minute and hour and disable second in picker and input just set secondEnabled to false

    document.querySelector('jb-time-input').secondEnabled = false;

frontal zero

if you want picker to show 02 instead of 2 when number is less than 10 just set frontalZero of timepicker default is false.

document.querySelector('jb-time-input').frontalZero = true;

or

<jb-time-input frontal-zero="true"></jb-time-input>

optional units

if you want to tell user some units is optional and greyout the numbers in picker you can set optionalUnits

//it could be 'hour' or 'minute' or 'second'
document.querySelector('jb-time-input').optionalUnits = ['hour'];

set custom style

in some cases in your project you need to change defualt style of web-component for example you need zero margin or different border-radius and etc. if you want to set a custom style to this web-component all you need is to set this css variable in parent scope of web-component. | css variable name | description | | ------------- | ------------- | | --jb-time-input-label-font-size | change font size of web component label default is 0.8em | | --jb-time-input-margin | outer margin of web component default is 12px 0 | | --jb-time-input-height | height of input element default is 40px | | --jb-time-input-border-color | input box border color default is f7f6f6 | | --jb-time-input-bgcolor | background color of input box default is #f7f6f6 | | --jb-time-input-border-botton-width | border bottom width on input box default is 3px | | --jb-time-input-border-radius | input box border radius default is 16px | | --jb-time-input-border-color-focus | input box border-color when user focus | | --jb-time-input-input-padding | inner padding of input element default is 2px 12px 0 12px | | --jb-time-input-value-font-size | font size of input value default is 1.1em | | --jb-time-input-value-color | color of input value default is #1f1735 | | --jb-time-input-placeholder-color | color of input placeholder | | --jb-time-input-placeholder-font-size | font size of placeholder | | --jb-time-input-message-font-size | message and error message under input box font size defaulyt is 0.7em | | --jb-time-input-message-box-display | if you want to hide a error message under the inputbox and show message in your own way set it to none | | --jb-time-input-message-error-color | color of message error default is red but you can change it to what you want | | --jb-time-input-label-color | input label color |