ngx-np-datepicker 1.2.1 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +5 -12
  2. package/README.md.bak +7 -2
  3. package/package.json +10 -1
package/README.md CHANGED
@@ -1,24 +1,18 @@
1
1
  # Angular Nepali Datepicker
2
-
3
2
  A simple Nepali Date Picker(Bikram Sambat) library in angular with no dependancy.
4
3
 
5
- ### Installation
6
-
4
+ ## Installation
7
5
  ```
8
6
  npm install ngx-np-datepicker
9
-
10
7
  ```
11
8
 
12
9
  ### Demo
13
-
14
- https://github.com/wwwbijay/angular-nepali-datepicker
10
+ https://wwwbijay.github.io/angular-nepali-datepicker/
15
11
 
16
12
  ### Note
17
-
18
13
  This package has no dependancy.
19
14
 
20
- ### Usage
21
-
15
+ ## Usage
22
16
  Import the `NepaliDatepickerModule` in your app.module.ts
23
17
 
24
18
  ```
@@ -44,9 +38,8 @@ then use `<np-datepicker [(ngModel)]="nepaliDate"></np-datepicker>` in your temp
44
38
 
45
39
 
46
40
  ### Format
47
-
48
41
  The supported date format is dd-mm-yyyy
49
42
 
50
- ### Keywords
43
+ ### License
44
+ MIT License
51
45
 
52
- 'Angular', 'Typescript', 'Javascript', 'Nepali Datepicker'
package/README.md.bak CHANGED
@@ -6,7 +6,6 @@ A simple Nepali Date Picker(Bikram Sambat) library in angular with no dependancy
6
6
 
7
7
  ```
8
8
  npm install ngx-np-datepicker
9
-
10
9
  ```
11
10
 
12
11
  ### Demo
@@ -37,7 +36,7 @@ import { NepaliDatepickerModule } from 'angular-nepali-datepicker';
37
36
  })
38
37
  export class AppModule { }
39
38
  ```
40
- then use `<np-datepicker></np-datepicker>` in your template
39
+ then use `<np-datepicker [(ngModel)]="nepaliDate"></np-datepicker>` in your template
41
40
  ```
42
41
  <np-datepicker></np-datepicker>
43
42
  ```
@@ -47,6 +46,12 @@ then use `<np-datepicker></np-datepicker>` in your template
47
46
 
48
47
  The supported date format is dd-mm-yyyy
49
48
 
49
+ ### License
50
+
51
+ MIT License
52
+
53
+ Copyright (C) 2022 Bijay Joshi
54
+
50
55
  ### Keywords
51
56
 
52
57
  'Angular', 'Typescript', 'Javascript', 'Nepali Datepicker'
package/package.json CHANGED
@@ -1,6 +1,15 @@
1
1
  {
2
2
  "name": "ngx-np-datepicker",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
+ "description": "A simple Nepali Date Picker(Bikram Sambat) library in angular with no dependancy.",
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
+ ],
4
13
  "peerDependencies": {
5
14
  "@angular/common": "^13.1.0",
6
15
  "@angular/core": "^13.1.0"