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

ngx-bootstrap-datetime-popup

v7.0.4

Published

Datetime popup component using ngx-bootstrap datePicker, timePicker and bsDropdown

Downloads

1,423

Readme

NOTES

  • DO NOT USE 5.0.0 THIS IS BROKEN!! PLEASE USE 5.0.1 WITH NGX-BOOTSTRAP 5.0.0. If you require ngx-bootstrap v4+ then continue to use 4.3.0+
  • VERSION 6.0.0+ of this library uses a Library template built from Angular/Cli so it will be compatible with Ivy

ngx-bootstrap-datetime-popup

Date and time popup picker using ngx-bootstrap library

This is currently a very simple date time picker, with only the features i needed for a project that i use this in. Happy to add more features

image image image

Simple example in demo folder, which can also be found on github pages at https://gillardo.github.io/ngx-bootstrap-datetime-popup/

To use the component, import the DatetimePopupModule via your .ts code, and add it to your modules using forRoot() method. You must also import the modules datepicker, timepicker and dropdown from ngx-bootstrap as there are services that are used

import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { DatepickerModule } from 'ngx-bootstrap/datepicker';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { NgxBootstrapDatetimePopupModule } from 'ngx-bootstrap-datetime-popup';

import { AppComponent } from './app.component';

@NgModule({
  imports: [
    FormsModule,
    BrowserModule,
    BsDropdownModule.forRoot(),
    DatepickerModule.forRoot(),
    TimepickerModule.forRoot(),
    NgxBootstrapDatetimePopupModule.forRoot()
  ],
  declarations: [ AppComponent ],
  bootstrap: [ AppComponent ]
})
export class AppModule {
  
}

Now add the component to your HTML.

<ngx-bootstrap-datetime-popup [(value)]="myDate"></ngx-bootstrap-datetime-popup>

I have now added code so you can change attributes on the "Clear", "Now" and "Close" buttons. in order to do this, you must use an object that implements the same properties as the INgxBootstrapDatetimePopupButtonOptions interface

export interface INgxBootstrapDatetimePopupButtonOptions {
    // should the button be shown
    show: boolean;

    // What text label should it be given
    label: string;

    // css classes to be used, default is 'btn btn-sm btn-secondary'
    cssClass: string;
}

The component accepts 3 inputs closeButton, clearButton and nowButton, so you can bind your options like so:

<ngx-bootstrap-datetime-popup [(value)]="myDate" [closeButton]="myCloseOptions"></ngx-bootstrap-datetime-popup>

Since i dont really like the style of the ngx-bootstrap datePicker, you can override the css like any other style, here is an example

This css also overrides the glyphicon icons that are no longer used in bootstrap 4.

ngx-bootstrap-datetime-popup.dropdown .glyphicon {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ngx-bootstrap-datetime-popup.dropdown timepicker {
    display: flex;
    justify-content: center;
}

ngx-bootstrap-datetime-popup.dropdown .bg-faded {
    border:0;
    background-color: #fff;
}

ngx-bootstrap-datetime-popup.dropdown datepicker button {
    border:0;
    background-color: #fff;
}

ngx-bootstrap-datetime-popup.dropdown datepicker button.active {
    background-color: #ddd;
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.glyphicon-remove-circle:before {
    content: "\f05c";
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.glyphicon-chevron-down:before {
    content: "\f078";
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.glyphicon-chevron-up:before {
    content: "\f077";
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.glyphicon-chevron-left:before {
    content: "\f053";
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.glyphicon-chevron-right:before {
    content: "\f054";
}

ngx-bootstrap-datetime-popup.dropdown .glyphicon.hidden {
    display: none !important;
}

If you want more features please create a PR as i am a little struck for time at the moment. Happy coding!