ngxsmk-datepicker 2.2.6 → 2.2.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 +10 -9
- package/docs/API.md +1 -1
- package/docs/COMPATIBILITY.md +1 -1
- package/docs/INTEGRATION.md +1 -1
- package/docs/IONIC_INTEGRATION.md +1 -1
- package/docs/IONIC_TESTING.md +1 -1
- package/docs/LOCALE-GUIDE.md +1 -1
- package/docs/PLUGIN-ARCHITECTURE.md +1 -1
- package/docs/SEO.md +1 -1
- package/docs/SSR-EXAMPLE.md +1 -1
- package/docs/THEME-TOKENS.md +1 -1
- package/docs/TIMEZONE.md +1 -1
- package/docs/extension-points.md +1 -1
- package/docs/signal-forms.md +1 -1
- package/docs/signals.md +1 -1
- package/docs/ssr.md +1 -1
- package/fesm2022/ngxsmk-datepicker.mjs +14219 -0
- package/package.json +93 -85
- package/types/ngxsmk-datepicker.d.ts +2432 -0
package/README.md
CHANGED
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
**Last updated:** March
|
|
27
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
28
28
|
|
|
29
29
|
### **Overview**
|
|
30
30
|
|
|
31
31
|
**ngxsmk-datepicker** is a high-performance, enterprise-ready date and range picker engineered for the modern Angular ecosystem (v17+). Built from the ground up with **Angular Signals**, it delivers a seamless, zoneless-ready experience for both desktop and mobile (Ionic) applications.
|
|
32
32
|
|
|
33
|
-
> **Stable Release**: `v2.2.
|
|
33
|
+
> **Stable Release**: `v2.2.8` restores correct **npm** artifacts (compiled `fesm2022/` and types), adds range-mode **`allowSameDay`** for single-day selections, and continues to ship **IANA timezone** support, validation fixes, and strict TypeScript improvements from the v2.2.x line.
|
|
34
34
|
>
|
|
35
|
-
> ⚠️ **Important**: Versions 2.0.10 and 2.0.11 are broken and have been unpublished. Please use v2.2.
|
|
35
|
+
> ⚠️ **Important**: Versions 2.0.10 and 2.0.11 are broken and have been unpublished. Please use v2.2.8 or later.
|
|
36
36
|
|
|
37
37
|
---
|
|
38
38
|
|
|
@@ -590,7 +590,7 @@ The `locale` input controls all internationalization. It automatically formats m
|
|
|
590
590
|
|
|
591
591
|
### **Global Language Support**
|
|
592
592
|
|
|
593
|
-
ngxsmk-datepicker v2.2.
|
|
593
|
+
ngxsmk-datepicker v2.2.8 now features **full localization synchronization** for:
|
|
594
594
|
|
|
595
595
|
- 🇺🇸 English (`en`)
|
|
596
596
|
- 🇩🇪 German (`de`)
|
|
@@ -849,16 +849,17 @@ We welcome and appreciate contributions from the community! Whether it's reporti
|
|
|
849
849
|
|
|
850
850
|
For a full list of changes, please refer to the [CHANGELOG.md](https://github.com/NGXSMK/ngxsmk-datepicker/blob/main/CHANGELOG.md) file.
|
|
851
851
|
|
|
852
|
-
### **v2.2.
|
|
852
|
+
### **v2.2.8** (Current Stable)
|
|
853
853
|
|
|
854
|
-
- 🎉 **Version Update**: Updated to version 2.2.
|
|
855
|
-
-
|
|
856
|
-
-
|
|
854
|
+
- 🎉 **Version Update**: Updated to version 2.2.8.
|
|
855
|
+
- 📦 **npm**: Published tarballs again include `fesm2022/` and TypeScript declarations (release pipeline runs `ng build` before publish).
|
|
856
|
+
- 📅 **Range mode**: Optional `allowSameDay` for single-day ranges (double-click same date or close popover after one day).
|
|
857
|
+
- ✅ **Prior fixes**: IANA timezone “Today”, `minDate` normalization, strict typings, and UI polish from v2.2.6 remain included.
|
|
857
858
|
|
|
858
859
|
### **v1.9.24**
|
|
859
860
|
|
|
860
861
|
- 🎉 **Version Update**: Updated to version 1.9.24
|
|
861
|
-
- ✅ **Stable Release**: Version 2.2.
|
|
862
|
+
- ✅ **Stable Release**: Version 2.2.8 is the current stable version
|
|
862
863
|
|
|
863
864
|
### **v1.9.23**
|
|
864
865
|
|
package/docs/API.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This document describes the stable public API of ngxsmk-datepicker with comprehensive real-world examples. APIs marked as **stable** are guaranteed to remain backward-compatible within the same major version. APIs marked as **experimental** may change in future releases.
|
|
4
4
|
|
|
5
|
-
**Version**: 2.2.
|
|
5
|
+
**Version**: 2.2.8+ | **Last updated**: March 21, 2026
|
|
6
6
|
|
|
7
7
|
## Stable vs experimental
|
|
8
8
|
|
package/docs/COMPATIBILITY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Version Compatibility Matrix
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
This document provides comprehensive compatibility information for `ngxsmk-datepicker` across different Angular versions, Zone.js configurations, and SSR/CSR setups.
|
|
6
6
|
|
package/docs/INTEGRATION.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ionic Framework Integration Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
This guide provides step-by-step instructions for integrating ngxsmk-datepicker with Ionic Angular applications.
|
|
6
6
|
|
package/docs/IONIC_TESTING.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ionic Integration Testing Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
This document provides comprehensive testing instructions for verifying ngxsmk-datepicker compatibility with Ionic Framework.
|
|
6
6
|
|
package/docs/LOCALE-GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Plugin Architecture
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker features a powerful **plugin architecture** that allows you to extend and customize the component's behavior without modifying its core code. This architecture is built on a **hook-based system** that provides extension points throughout the component's lifecycle.
|
|
6
6
|
|
package/docs/SEO.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SEO Optimization Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
This document outlines the SEO optimizations implemented for ngxsmk-datepicker to improve search engine visibility and discoverability.
|
|
6
6
|
|
package/docs/SSR-EXAMPLE.md
CHANGED
package/docs/THEME-TOKENS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Theme Tokens & CSS Custom Properties
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
Complete reference for all CSS custom properties (CSS variables) available in ngxsmk-datepicker.
|
|
6
6
|
|
package/docs/TIMEZONE.md
CHANGED
package/docs/extension-points.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Extension Points and Hooks
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker provides comprehensive extension points through the `hooks` input, allowing you to customize rendering, validation, keyboard shortcuts, formatting, and event handling.
|
|
6
6
|
|
package/docs/signal-forms.md
CHANGED
package/docs/signals.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Signals Integration Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker is fully compatible with Angular Signals, providing seamless integration with both traditional reactive forms and modern signal-based patterns.
|
|
6
6
|
|
package/docs/ssr.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Server-Side Rendering (SSR) Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:** March
|
|
3
|
+
**Last updated:** March 21, 2026 · **Current stable:** v2.2.8
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker is fully compatible with Angular Universal and server-side rendering. This guide covers SSR setup, best practices, and troubleshooting.
|
|
6
6
|
|