ngxsmk-datepicker 1.4.6 β 1.4.8
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
CHANGED
|
@@ -252,13 +252,24 @@ We welcome and appreciate contributions from the community! Whether it's reporti
|
|
|
252
252
|
|
|
253
253
|
## **π Changelog**
|
|
254
254
|
|
|
255
|
-
### **v1.4.
|
|
255
|
+
### **v1.4.8** (Latest)
|
|
256
|
+
- π
**Previous Month Days**: Now shows last few days of previous month for better context
|
|
257
|
+
- π― **Smart Selection**: Previous month days are selectable when not disabled by minDate/maxDate
|
|
258
|
+
- π¨ **Visual Improvements**: Better distinction between current and previous month days
|
|
259
|
+
- π§ **Range Selection**: Previous month days can be part of date ranges when valid
|
|
260
|
+
- π **Enhanced UX**: More intuitive calendar navigation and selection
|
|
261
|
+
|
|
262
|
+
### **v1.4.7**
|
|
256
263
|
- β‘ **Instant Navigation**: Removed all animations for lightning-fast arrow navigation
|
|
257
264
|
- π« **Smart Back Arrow**: Automatically disables back arrow when minDate is set
|
|
258
265
|
- π― **Better UX**: Prevents navigation to invalid date ranges
|
|
259
266
|
- π§Ή **Code Optimization**: Cleaner, more maintainable codebase
|
|
260
267
|
- π¦ **Smaller Bundle**: Reduced CSS and JavaScript footprint
|
|
261
268
|
|
|
269
|
+
### **v1.4.6**
|
|
270
|
+
- π§ **Fixed Import Paths**: Corrected package exports for proper module resolution
|
|
271
|
+
- π¦ **Better Package Structure**: Improved npm package configuration
|
|
272
|
+
|
|
262
273
|
### **v1.4.5**
|
|
263
274
|
- π Bug fixes and stability improvements
|
|
264
275
|
- π§ Enhanced error handling
|
|
@@ -7,7 +7,7 @@ A modern, powerful, and fully customizable date and date-range picker component
|
|
|
7
7
|
- **NPM Package**: [ngxsmk-datepicker](https://www.npmjs.com/package/ngxsmk-datepicker)
|
|
8
8
|
- **GitHub Repository**: [https://github.com/toozuuu/ngxsmk-datepicker](https://github.com/toozuuu/ngxsmk-datepicker)
|
|
9
9
|
- **Live Demo**: [https://stackblitz.com/~/github.com/toozuuu/ngxsmk-datepicker](https://stackblitz.com/~/github.com/toozuuu/ngxsmk-datepicker)
|
|
10
|
-
- **Version**: 1.4.
|
|
10
|
+
- **Version**: 1.4.8
|
|
11
11
|
- **License**: MIT
|
|
12
12
|
- **Author**: Sachin Dilshan
|
|
13
13
|
|
|
@@ -225,13 +225,24 @@ We welcome and appreciate contributions from the community! Please see our [Cont
|
|
|
225
225
|
|
|
226
226
|
## π Changelog
|
|
227
227
|
|
|
228
|
-
### v1.4.
|
|
228
|
+
### v1.4.8 (Latest)
|
|
229
|
+
- π
**Previous Month Days**: Now shows last few days of previous month for better context
|
|
230
|
+
- π― **Smart Selection**: Previous month days are selectable when not disabled by minDate/maxDate
|
|
231
|
+
- π¨ **Visual Improvements**: Better distinction between current and previous month days
|
|
232
|
+
- π§ **Range Selection**: Previous month days can be part of date ranges when valid
|
|
233
|
+
- π **Enhanced UX**: More intuitive calendar navigation and selection
|
|
234
|
+
|
|
235
|
+
### v1.4.7
|
|
229
236
|
- β‘ **Instant Navigation**: Removed all animations for lightning-fast arrow navigation
|
|
230
237
|
- π« **Smart Back Arrow**: Automatically disables back arrow when minDate is set
|
|
231
238
|
- π― **Better UX**: Prevents navigation to invalid date ranges
|
|
232
239
|
- π§Ή **Code Optimization**: Cleaner, more maintainable codebase
|
|
233
240
|
- π¦ **Smaller Bundle**: Reduced CSS and JavaScript footprint
|
|
234
241
|
|
|
242
|
+
### v1.4.6
|
|
243
|
+
- π§ **Fixed Import Paths**: Corrected package exports for proper module resolution
|
|
244
|
+
- π¦ **Better Package Structure**: Improved npm package configuration
|
|
245
|
+
|
|
235
246
|
### v1.4.5
|
|
236
247
|
- π Bug fixes and stability improvements
|
|
237
248
|
- π§ Enhanced error handling
|
|
@@ -211,6 +211,7 @@ declare class NgxsmkDatepickerComponent implements OnInit, OnChanges, OnDestroy,
|
|
|
211
211
|
private generateDropdownOptions;
|
|
212
212
|
changeMonth(delta: number): void;
|
|
213
213
|
isSameDay(d1: Date | null, d2: Date | null): boolean;
|
|
214
|
+
isCurrentMonth(day: Date | null): boolean;
|
|
214
215
|
isInRange(d: Date | null): boolean;
|
|
215
216
|
ngOnDestroy(): void;
|
|
216
217
|
static Ι΅fac: i0.Ι΅Ι΅FactoryDeclaration<NgxsmkDatepickerComponent, never>;
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ A modern, powerful, and fully customizable date and date-range picker component
|
|
|
7
7
|
- **NPM Package**: [ngxsmk-datepicker](https://www.npmjs.com/package/ngxsmk-datepicker)
|
|
8
8
|
- **GitHub Repository**: [https://github.com/toozuuu/ngxsmk-datepicker](https://github.com/toozuuu/ngxsmk-datepicker)
|
|
9
9
|
- **Live Demo**: [https://stackblitz.com/~/github.com/toozuuu/ngxsmk-datepicker](https://stackblitz.com/~/github.com/toozuuu/ngxsmk-datepicker)
|
|
10
|
-
- **Version**: 1.4.
|
|
10
|
+
- **Version**: 1.4.8
|
|
11
11
|
- **License**: MIT
|
|
12
12
|
- **Author**: Sachin Dilshan
|
|
13
13
|
|
|
@@ -225,13 +225,24 @@ We welcome and appreciate contributions from the community! Please see our [Cont
|
|
|
225
225
|
|
|
226
226
|
## π Changelog
|
|
227
227
|
|
|
228
|
-
### v1.4.
|
|
228
|
+
### v1.4.8 (Latest)
|
|
229
|
+
- π
**Previous Month Days**: Now shows last few days of previous month for better context
|
|
230
|
+
- π― **Smart Selection**: Previous month days are selectable when not disabled by minDate/maxDate
|
|
231
|
+
- π¨ **Visual Improvements**: Better distinction between current and previous month days
|
|
232
|
+
- π§ **Range Selection**: Previous month days can be part of date ranges when valid
|
|
233
|
+
- π **Enhanced UX**: More intuitive calendar navigation and selection
|
|
234
|
+
|
|
235
|
+
### v1.4.7
|
|
229
236
|
- β‘ **Instant Navigation**: Removed all animations for lightning-fast arrow navigation
|
|
230
237
|
- π« **Smart Back Arrow**: Automatically disables back arrow when minDate is set
|
|
231
238
|
- π― **Better UX**: Prevents navigation to invalid date ranges
|
|
232
239
|
- π§Ή **Code Optimization**: Cleaner, more maintainable codebase
|
|
233
240
|
- π¦ **Smaller Bundle**: Reduced CSS and JavaScript footprint
|
|
234
241
|
|
|
242
|
+
### v1.4.6
|
|
243
|
+
- π§ **Fixed Import Paths**: Corrected package exports for proper module resolution
|
|
244
|
+
- π¦ **Better Package Structure**: Improved npm package configuration
|
|
245
|
+
|
|
235
246
|
### v1.4.5
|
|
236
247
|
- π Bug fixes and stability improvements
|
|
237
248
|
- π§ Enhanced error handling
|