ngxsmk-datepicker 1.0.4 → 1.0.6
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 +17 -1
- package/package.json +8 -3
- package/docs/1.png +0 -0
- package/docs/2.png +0 -0
- package/docs/3.png +0 -0
package/README.md
CHANGED
|
@@ -134,6 +134,22 @@ The locale input controls all internationalization. It automatically formats mon
|
|
|
134
134
|
<!-- Renders the calendar in French -->
|
|
135
135
|
<ngxsmk-datepicker [locale]="'fr-FR'"></ngxsmk-datepicker>
|
|
136
136
|
|
|
137
|
+
## **🤝 Contributions**
|
|
138
|
+
We welcome and appreciate contributions from the community! Whether it's reporting a bug, suggesting a new feature, or submitting code, your help is valuable.
|
|
139
|
+
|
|
140
|
+
Forking and Development
|
|
141
|
+
* Fork the ngxsmk-datepicker repository on GitHub.
|
|
142
|
+
|
|
143
|
+
* Clone your fork to your local machine.
|
|
144
|
+
|
|
145
|
+
* Install dependencies and run the demo app to begin development.
|
|
146
|
+
|
|
147
|
+
* Create a new feature branch for your specific changes.
|
|
148
|
+
|
|
149
|
+
* Commit your changes following standard practices.
|
|
150
|
+
|
|
151
|
+
* Submit a Pull Request (PR) to the main branch of the original repository.
|
|
152
|
+
|
|
137
153
|
## **📜 License**
|
|
138
154
|
|
|
139
|
-
MIT
|
|
155
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngxsmk-datepicker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "
|
|
6
|
-
"@angular/core": "
|
|
5
|
+
"@angular/common": ">=17.0.0",
|
|
6
|
+
"@angular/core": ">=17.0.0"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"tslib": "^2.3.0"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://github.com/toozuuu/ngxsmk-datepicker#readme",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/toozuuu/ngxsmk-datepicker.git"
|
|
15
|
+
},
|
|
11
16
|
"sideEffects": false,
|
|
12
17
|
"files": [
|
|
13
18
|
"**/*.d.ts",
|
package/docs/1.png
DELETED
|
Binary file
|
package/docs/2.png
DELETED
|
Binary file
|
package/docs/3.png
DELETED
|
Binary file
|