ngx-np-datepicker 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +1 -1
- package/README.md.bak +0 -47
- package/package.json.bak +0 -40
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-np-datepicker",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "A simple Nepali Date Picker(Bikram Sambat) library in angular.",
|
|
5
5
|
"homepage": "https://wwwbijay.github.io/angular-nepali-datepicker/",
|
|
6
6
|
"keywords": ["Angular","Typescript", "Javascript","Nepali Date Picker"],
|
package/README.md.bak
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
# Angular Nepali Datepicker
|
|
2
|
-
A configurable Nepali Date Picker(Bikram Sambat) built for angular appilcations. Supports latest (Angular 13) version.
|
|
3
|
-
|
|
4
|
-
### Demo
|
|
5
|
-
<a href="https://wwwbijay.github.io/angular-nepali-datepicker/" target="_blank">Click here to check demo.</a>
|
|
6
|
-
|
|
7
|
-
## Installation
|
|
8
|
-
```
|
|
9
|
-
npm install ngx-np-datepicker
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
## Usage
|
|
13
|
-
Import the `NepaliDatepickerModule` in your app.module.ts
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
import { NepaliDatepickerModule } from 'angular-nepali-datepicker';
|
|
17
|
-
|
|
18
|
-
@NgModule({
|
|
19
|
-
declarations: [
|
|
20
|
-
AppComponent,
|
|
21
|
-
],
|
|
22
|
-
imports: [
|
|
23
|
-
BrowserModule,
|
|
24
|
-
NepaliDatepickerModule
|
|
25
|
-
],
|
|
26
|
-
providers: [],
|
|
27
|
-
bootstrap: [AppComponent]
|
|
28
|
-
})
|
|
29
|
-
export class AppModule { }
|
|
30
|
-
```
|
|
31
|
-
then use `<np-datepicker [(ngModel)]="nepaliDate"></np-datepicker>` in your template
|
|
32
|
-
```
|
|
33
|
-
<np-datepicker></np-datepicker>
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Note
|
|
40
|
-
This package has no dependancy.
|
|
41
|
-
|
|
42
|
-
### Format
|
|
43
|
-
The supported date format is dd-mm-yyyy
|
|
44
|
-
|
|
45
|
-
### License
|
|
46
|
-
MIT License
|
|
47
|
-
|
package/package.json.bak
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ngx-np-datepicker",
|
|
3
|
-
"version": "1.3.3",
|
|
4
|
-
"description": "A simple Nepali Date Picker(Bikram Sambat) library in angular.",
|
|
5
|
-
"homepage": "https://wwwbijay.github.io/angular-nepali-datepicker/",
|
|
6
|
-
"keywords": ["Angular","Typescript", "Javascript","Nepali Date Picker"],
|
|
7
|
-
"license": [
|
|
8
|
-
{
|
|
9
|
-
"type": "MIT",
|
|
10
|
-
"url": "https://www.opensource.org/licenses/mit-license.php"
|
|
11
|
-
}
|
|
12
|
-
],
|
|
13
|
-
"peerDependencies": {
|
|
14
|
-
"@angular/common": "^13.1.0",
|
|
15
|
-
"@angular/core": "^13.1.0"
|
|
16
|
-
},
|
|
17
|
-
"dependencies": {
|
|
18
|
-
"tslib": "^2.3.0"
|
|
19
|
-
},
|
|
20
|
-
"module": "fesm2015/ngx-np-datepicker.mjs",
|
|
21
|
-
"es2020": "fesm2020/ngx-np-datepicker.mjs",
|
|
22
|
-
"esm2020": "esm2020/ngx-np-datepicker.mjs",
|
|
23
|
-
"fesm2020": "fesm2020/ngx-np-datepicker.mjs",
|
|
24
|
-
"fesm2015": "fesm2015/ngx-np-datepicker.mjs",
|
|
25
|
-
"typings": "ngx-np-datepicker.d.ts",
|
|
26
|
-
"exports": {
|
|
27
|
-
"./package.json": {
|
|
28
|
-
"default": "./package.json"
|
|
29
|
-
},
|
|
30
|
-
".": {
|
|
31
|
-
"types": "./ngx-np-datepicker.d.ts",
|
|
32
|
-
"esm2020": "./esm2020/ngx-np-datepicker.mjs",
|
|
33
|
-
"es2020": "./fesm2020/ngx-np-datepicker.mjs",
|
|
34
|
-
"es2015": "./fesm2015/ngx-np-datepicker.mjs",
|
|
35
|
-
"node": "./fesm2015/ngx-np-datepicker.mjs",
|
|
36
|
-
"default": "./fesm2020/ngx-np-datepicker.mjs"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"sideEffects": false
|
|
40
|
-
}
|