New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ember-cli-time-input

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-time-input

Edit time on date or arrays of dates in Ember

latest
Source
npmnpm
Version
0.15.1
Version published
Maintainers
1
Created
Source

ember-cli-time-input

[Short description of the addon.]

Compatibility

  • Ember.js v5.8 or above
  • Ember CLI v5.8 or above
  • Node.js v20 or above

Installation

ember install ember-cli-time-input

Usage

The time-input component use moment "HH:mm" format. (Not yet configurable)

onChangedTime is called when the time has been updated. If an array of dates are submitted the array will update the time on the current date assigned.

The update will occur on the onblur event.

Usage with only one date:

<TimeInput
  @currentDate={{this.yourDateTime}}
  @onChangedTime={{this.timeUpdated}}
/>

Usage with array of dates:

{{#each myDateArray as |time|}}
  <TimeInput @currentDate={{time}} @arrayDates={{this.myDateArray}} />
{{/each}}

Usage

Installation

  • git clone this repository
  • npm install

Running

  • ember serve
  • Visit your app at http://localhost:4200.

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Linting

  • npm run lint:hbs
  • npm run lint:js
  • npm run lint:js -- --fix

Building

  • ember build

For more information on using ember-cli, visit https://ember-cli.com/.

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Keywords

ember-addon

FAQs

Package last updated on 28 Mar 2026

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