https://github.com/neworbit/bootstrap-datepicker
Custom angular datepicker based on angular-ui/bootstrap
https://github.com/neworbit/bootstrap-datepicker
package
Last synced: about 1 year ago
JSON representation
Custom angular datepicker based on angular-ui/bootstrap
- Host: GitHub
- URL: https://github.com/neworbit/bootstrap-datepicker
- Owner: NewOrbit
- License: mit
- Created: 2015-12-11T16:15:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T10:54:09.000Z (almost 2 years ago)
- Last Synced: 2025-03-13T15:40:14.621Z (over 1 year ago)
- Topics: package
- Language: JavaScript
- Homepage:
- Size: 779 KB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# bootstrap-datepicker
> Our custom angular datepicker based on [angular-ui/bootstrap](https://github.com/angular-ui/bootstrap)
## Install
```
$ npm install --save neworbit/bootstrap-datepicker#v2.0.0
```
```
$ bower install --save neworbit/bootstrap-datepicker#^2
```
## Usage
### With npm
```js
import bootstrapDatepicker from 'bootstrap-datepicker';
const app = angular.module('app', [
bootstrapDatepicker
]);
```
### With bower
```html
var app = angular.module('app', [
'ui.bootstrap'
]);
```
## Api
- [DatePicker](https://github.com/angular-ui/bootstrap/tree/0.13.0/src/datepicker/docs)
- [TimePicker](https://github.com/angular-ui/bootstrap/tree/0.13.0/src/timepicker/docs)
## CSS
### Using SASS:
- In your core scss file: `@import "~bootstrap-datepicker/dist/style.css";`
### Not using SASS:
- ``
To override colours, see the comments in src/datepicker.scss
## Release
- update version on `readme.md`
- `$ npm version --force major | minor | patch`
- `$ git push --follow-tags`
## License
MIT © [NewOrbit](http://neworbit.co.uk)