ngxsmk-datepicker 2.3.0 → 2.4.0-beta.0

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/CHANGELOG.md ADDED
@@ -0,0 +1,1318 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ **Last updated:** July 11, 2026 - **Current stable:** v2.4.0
6
+
7
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
+
10
+ ## [Unreleased]
11
+
12
+ ### Added
13
+
14
+ - **`ng add ngxsmk-datepicker` schematic**: installs the package, adds the missing `luxon` peer
15
+ dependency, and prints a getting-started snippet. Shipped in the npm package under `schematics/`
16
+ and self-verified on every publish.
17
+ - **ISO week numbers**: `[showWeekNumbers]` renders an ISO 8601 week-number column; header label is
18
+ customizable via `[weekNumberLabel]` (e.g. `"KW"`). New exported util `getISOWeekNumber`.
19
+ - **Guided input masking**: `[inputMask]` (requires `allowTyping`) slots typed digits into
20
+ `DD`/`MM`/`YY`/`YYYY`/`HH`/`mm`/`ss` tokens and auto-inserts separators. `true` uses
21
+ `displayFormat` (falling back to `MM/DD/YYYY`); a string sets an explicit pattern.
22
+ - **Server-driven disabled dates**: `[asyncDateFilter]` is called with the visible month range on
23
+ every navigation and disables the resolved dates. Stale responses are discarded; new
24
+ `(asyncDateFilterLoading)` and `(asyncDateFilterError)` outputs report request state.
25
+ - **Secondary calendar systems**: `[secondaryCalendar]` annotates each day cell with its date in a
26
+ second calendar (`islamic`, `persian`, `hebrew`, `buddhist`, `japanese`) rendered via `Intl`;
27
+ the grid itself remains Gregorian. New exported utils `getSecondaryDayLabel` and
28
+ `formatDateInCalendarSystem`.
29
+ - **Per-day metadata decorations**: `[dayMetadata]` provider adds a label under the day number
30
+ (e.g. a price), an indicator dot, extra CSS classes, and a tooltip per day — booking-style
31
+ calendars without custom templates. Also available as `meta` in day-template contexts.
32
+ New exported types `DayMetadata` / `DayMetadataProvider`.
33
+ - **Header/footer action slots**: `[calendarHeaderTemplate]` renders custom content at the top of
34
+ the popover; `[calendarFooterTemplate]` replaces the default Clear/Close footer (and, unlike the
35
+ default, also renders in inline mode). Both receive `{ clear(), close() }` actions in context.
36
+
37
+ ### Fixed
38
+
39
+ - **Memory leak — multi-calendar lazy-loading observer**: the `IntersectionObserver` was stored in
40
+ the timeout set and "cleaned up" with `clearTimeout`, so it was never disconnected and retained
41
+ the whole component. It is now tracked separately and disconnected on destroy.
42
+ - **Memory leak — destroy with open popover**: destroying the component while the calendar was open
43
+ (e.g. route navigation) leaked the window `scroll`/`resize` listeners and left the body-appended
44
+ portal view attached to `ApplicationRef`. `ngOnDestroy` now tears both down.
45
+ - **Input mask zero-padding**: with `displayFormat` set, typing a partial token was zero-padded
46
+ (typing `1` became `10`), corrupting subsequent input. Partial tokens are now left as typed, and
47
+ the caret stays at the end when the mask inserts separators.
48
+ - `ngOnDestroy` "state clearing" used no-op `??=` assignments; date references are now actually
49
+ released.
50
+ - The workspace root `package.json` is now `private`, preventing an accidental `npm publish` of the
51
+ workspace itself (releases publish from `dist/ngxsmk-datepicker` as before).
52
+
53
+ ## [2.4.0] - 2026-07-02
54
+
55
+ ### Added
56
+
57
+ - **Dual-Range Comparison**: New `[comparisonRange]="[start, end]"` input highlights a secondary,
58
+ purely-presentational range alongside the primary selection (analytics "this period vs previous"
59
+ use case). Themeable via the `--datepicker-comparison-range-color` CSS variable; does not affect
60
+ selection or emitted values.
61
+
62
+ ### Changed
63
+
64
+ - **Modern reactivity (non-breaking)**: Migrated all `@Output()`s to the `output()` function and an
65
+ initial batch of read-only `@Input()`s to signal `input()`. Public template bindings
66
+ (`[x]="…"` / `(event)="…"`) are unchanged.
67
+ - **Signal-backed internal state**: Converted transient state (`isOpeningCalendar`,
68
+ `naturalLanguagePreview`, `showNaturalLanguagePreview`, `validationErrorMessage`, `typedInputValue`)
69
+ to signals and made the `displayValue` getter side-effect free, reducing manual `markForCheck()`.
70
+
71
+ ### Fixed
72
+
73
+ - **TypeScript 6.0 build compatibility**: Removed the now-invalid `baseUrl` and `importsNotUsedAsValues`
74
+ compiler options that broke the production build and test suite on the TS 6 toolchain.
75
+ - Corrected three internal guards (`autoApplyClose`, `timeRangeMode`, `allowSameDay`) surfaced during
76
+ the signal migration.
77
+
78
+ ### Removed
79
+
80
+ - **Dead SCSS architecture** (~7k lines): the unreferenced, stale `datepicker.scss` +
81
+ `styles/{components,core,abstracts}/` partials, `_legacy-datepicker.scss`, and an orphaned
82
+ `datepicker.css.map`. The maintained flat `styles/datepicker.css` is unaffected.
83
+
84
+ ## [2.3.1] - 2026-06-03
85
+
86
+ ### Added
87
+
88
+ - **Natural Language Input**: Integrated a lightweight, zero-dependency parser engine that resolves text expressions like "today", "tomorrow", relative day/week offsets, and quarter descriptors. Features a dynamic preview suggestion tooltip beneath the input field.
89
+ - **Multi-Calendar View**: Supported side-by-side calendar renders via `[calendars]="2"` or `[calendars]="3"` inputs, with seamless range highlights extending across all month boundaries.
90
+ - **Dynamic Presets Factory**: Introduced the `[rangePresetFactory]` callback input allowing developers to supply dynamic rolling ranges (e.g., fiscal quarters or rolling business-day windows).
91
+ - **Invalid Range Warning**: Highlights ranges with a warning style if a disabled date falls inside the selected range, emitting details via the `(invalidRange)` output.
92
+ - **Timezone Selector UI**: Added a searchable timezone dropdown via `[showTimezoneSelector]="true"` input, with timezone change values emitted via the `(timezoneChange)` output.
93
+ - **Shadow DOM Compatibility (Issue #268)**: Added full, native support for running inside Angular Shadow DOM containers (`ViewEncapsulation.ShadowDom`) and Custom Web Components.
94
+ - Interaction listeners now query and utilize `event.composedPath()` to correctly identify clicked targets originating inside the component shadow boundary, preventing calendar dropdowns and header custom selects from closing prematurely due to event target retargeting.
95
+ - Added new comprehensive Shadow DOM unit test suite (`shadow-dom-compatibility.spec.ts`).
96
+
97
+ ### Changed
98
+
99
+ - **AOT & AoT Compilation Boundaries**: Refactored internal component signals (`_isCalendarOpen`, `_currentMonthSignal`, and `_currentYearSignal`) to `protected` access modifiers to prevent strict production AoT compilation errors.
100
+ - **Code Quality & Cognitive Complexity Reductions**:
101
+ - Flattened highly nested condition structures in `CustomSelectComponent.onDocumentTouchStart()`, reducing cognitive complexity to well below the limit of 15.
102
+ - Decomposed monolithic date check inside `NgxsmkDatepickerComponent.containsNode()` into private helper functions (`containsNodeViaComposedPath`, `containsNodeViaDOM`), drastically improving maintainability and reducing complexity down to 2.
103
+ - **Unnecessary Type Assertions Cleanup**: Cleaned up dozens of redundant type assertions (e.g. `as keyof DatepickerTranslations`, `as HTMLElement`, `as DatepickerValue`, `as EventListenerOptions`) to fully align with standard Angular strict compiler guidelines and eliminate all IDE compiler warnings.
104
+ - **Spec Styling Overhaul**: Refactored the test suite to move the `createMockEvent` helper to the top-level outer scope and transitioned elements cleanup to the modern `insideNode.remove()` native DOM standard.
105
+
106
+ ## [2.3.0] - 2026-05-06
107
+
108
+ ### Fixed
109
+
110
+ - **npm package**: Republished with complete build artifacts (`fesm2022/`, `types/`) and release safeguards to prevent docs-only tarballs.
111
+
112
+ ### Added
113
+
114
+ - **Documentation**: Added [IMPROVEMENT_REPORT.md](IMPROVEMENT_REPORT.md) as the maintained anchor index for roadmap-linked improvements; added [FEATURE_SCOPING.md](projects/ngxsmk-datepicker/docs/FEATURE_SCOPING.md) and [REFACTOR_PLAN.md](projects/ngxsmk-datepicker/docs/REFACTOR_PLAN.md).
115
+ - **Demo**: Playground **Advanced** controls (`syncScroll`, `appendToBody`, `disabledState`, `mobileModalStyle`) and stable `id`s for E2E.
116
+ - **E2E**: [e2e/playground.spec.ts](e2e/playground.spec.ts) — RTL, multi-calendar inline, range quick picks; smoke tests target `.ngxsmk-popover-open` so inline `role="dialog"` calendars on `/examples` do not break strict locators.
117
+ - **Storybook**: `MultiCalendarInline` and `RangeWithQuickPicks` stories.
118
+ - **Examples**: [examples/ionic-test-app/README.md](examples/ionic-test-app/README.md) install and matrix notes.
119
+ - **Compatibility**: CI / peer validation checklist in [COMPATIBILITY.md](projects/ngxsmk-datepicker/docs/COMPATIBILITY.md).
120
+
121
+ ### Changed
122
+
123
+ - **Documentation**: Refreshed Markdown files across the repository with updated metadata headers (last updated/current stable), aligned compatibility wording, and contact links.
124
+ - **Roadmap**: Updated main-component line count reference; roadmap links now resolve to `IMPROVEMENT_REPORT.md`.
125
+ - **Compatibility Docs**: Clarified Vitest wording to describe compatibility without implying a default test runner requirement.
126
+ - **i18n (demo)**: New playground strings for the Advanced section (all demo-app languages).
127
+
128
+ ## [2.2.12] - 2026-05-02 [BROKEN - NPM PACKAGE]
129
+
130
+ ### Fixed
131
+
132
+ - **npm package**: The `2.2.12` tarball on the registry omitted `fesm2022/` and `types/` (only docs, styles, and package metadata). **Use `ngxsmk-datepicker@2.2.11` until `2.4.0` or later** with a full ng-packagr build ([#230](https://github.com/NGXSMK/ngxsmk-datepicker/issues/230)).
133
+
134
+ ## [2.2.11] - 2026-03-24
135
+
136
+ ### Fixed
137
+
138
+ - **Documentation**: Reduced `README.md` size to comply with npm registry metadata limits (64KB), ensuring it displays correctly on the package page.
139
+ - **Package Config**: Fixed `exports` in `package.json` to properly expose `styles/` and `types/`. This resolves "Could not resolve ngxsmk-datepicker/styles/ionic-integration.css" errors in consuming apps.
140
+
141
+ ## [2.2.10] - 2026-03-24 [BROKEN - README ISSUE]
142
+
143
+ ### Fixed
144
+ - Includes all fixes from v2.2.9.
145
+
146
+ ## [2.2.9] - 2026-03-24 [BROKEN - PUBLISHING ISSUE]
147
+
148
+ ### Fixed
149
+
150
+ - **Date Formatting**: Resolved "off-by-one" day of week shift and recursive token replacement corruption in `dateFormatPattern` logic.
151
+ - **Build**: Resolved TypeScript type mismatch in `CustomDateFormatService` that prevented production builds.
152
+
153
+ ## [2.2.8] - 2026-03-21
154
+
155
+ ### Fixed
156
+
157
+ - **npm package**: Republished with a complete ng-packagr build. Tarballs for **2.2.3–2.2.7** on the registry were missing `fesm2022/` and `types/` (published from source without build output). **Use `ngxsmk-datepicker@2.2.8` instead of 2.2.7** for installs from npm. A `prepublishOnly` check now blocks publishing without those artifacts ([#230](https://github.com/NGXSMK/ngxsmk-datepicker/issues/230)).
158
+
159
+ ## [2.2.7] - 2026-03-21
160
+
161
+ ### Fixed
162
+
163
+ - **npm package**: Release workflow builds the library before publish so tarballs include `fesm2022/` and type declarations ([#230](https://github.com/NGXSMK/ngxsmk-datepicker/issues/230)).
164
+
165
+ ### Added
166
+
167
+ - **Range mode**: `allowSameDay` input for single-day ranges (same date twice or close popover with only a start date) ([#231](https://github.com/NGXSMK/ngxsmk-datepicker/issues/231)).
168
+
169
+ ## [2.2.6] - 2026-03-10
170
+
171
+ ### Fixed
172
+ - **Type Safety**: Fixed casing of `DatepickerValue` type export to ensure consistency across the library and consuming applications.
173
+ - **Module Resolution**: Improved TypeScript module resolution for local library development.
174
+ - **Date Modal**: Fixed null pointer exception in `getSelectedDates` when handling partial date ranges.
175
+
176
+ ## [2.2.4] - 2026-03-10
177
+
178
+ ### Fixed
179
+ - **Timezone Support**: Added full support for IANA timezones in "Today" calculation. The component now correctly identifies "Today" based on the configured `timezone` input.
180
+ - **Date Validation**: Fixed an issue where "Today" was incorrectly considered invalid if `minDate` was set to the current time. Validation now normalizes to the start of the day.
181
+ - **Keyboard Shortcuts**: Updated "Today" selection shortcut to be timezone-aware.
182
+
183
+ ## [2.2.3] - 2026-03-09
184
+
185
+ ### Fixed
186
+ - **Linting**: Resolved SonarLint cognitive complexity and nesting depth issues in Material support integration.
187
+ - **Coverage**: Increased function test coverage to ~68.2% to meet project thresholds.
188
+ - **Stability**: Fixed regression in touch event handling and Material Form Field integration.
189
+ - **Maintenance**: Marked static registry as readonly and removed redundant helper methods.
190
+
191
+ ## [2.2.1] - 2026-03-03
192
+
193
+ - **Version**: Bump to 2.2.1.
194
+
195
+ ## [2.2.0] - 2026-02-25
196
+
197
+ - **Enhanced Visibility**: Fixed text contrast in dropdown options for better accessibility, ensuring high-contrast labels for month and year selections.
198
+ - **Web Component Support**: Added capability to export the library as a standard Custom Web Component using Angular Elements, enabling full support for React, Vue, Svelte, and Vanilla JS.
199
+ - **Example Applications**: Added React, Vue, and Vanilla JS implementation examples in the `/examples` directory.
200
+
201
+ ### Fixed
202
+
203
+ - **TypeScript Strictness Overhaul**: Comprehensive rewrite of library component typing to eliminate all `any` types. Ensure full compatibility with `exactOptionalPropertyTypes` strict configurations.
204
+ - Corrected `classes` input type from `Record<string, unknown>` to the concrete `DatepickerClasses` interface explicitly allowing `| undefined = undefined` to support strict assignments.
205
+ - Applied specific types everywhere (`Date[]` for timelineMonths, `{label, value: boolean}[]` for ampmOptions, explicit Event and TouchEvent payloads).
206
+ - Adjusted Angular pseudo-event `keydown.enter` handlers expecting `KeyboardEvent` to use the base `Event` type for robust type safety.
207
+ - **appendToBody positioning (Issue #206)**: When `appendToBody` is enabled, the calendar popover now positions correctly next to the input. The popover uses viewport coordinates and `position: fixed` so it is no longer misplaced on scrolled pages. Inline styles are applied with `!important` so desktop CSS rules do not override the computed position.
208
+ - **Datepicker in modal**: When the datepicker is used inside a modal (or any dialog), the popover no longer flashes in the wrong place on first open. The popover is hidden until positioned and then revealed; modal detection auto-enables `appendToBody`. Demo app Integrations page includes a "Datepicker in a modal" example with `[appendToBody]="true"`.
209
+ - **Popover width**: The calendar popover now matches the input width (with a minimum of 280px) when positioning is applied, so the dropdown aligns visually with the trigger.
210
+
211
+ ### Changed
212
+
213
+ - **Header Select Synchronization**: Migrated `CustomSelectComponent` and `CalendarHeaderComponent` to `ViewEncapsulation.None`. Consolidated all dropdown styles into `_header.scss` to enable seamless global layout control.
214
+ - **Improved Dropdown Layout**: Implemented a flexbox-based `justify-content: space-between` layout for Month/Year selectors, ensuring a professional, edge-to-edge gap between text and icons on mobile screens.
215
+ - **UI Refinement**: Unified container border radii to 12px for visual consistency, removed unnecessary borders from the popover container, and significantly reduced paddings/margins in the header, calendar grid, and footer for a tighter, more modern look.
216
+ - **Performance Optimization**: Further reduced internal calendar opening timers for faster user feedback—Mobile delay reduced from 280ms to 150ms, and Desktop delay reduced to 60ms.
217
+ - **Loading time**: Reduced opening/loading delays so the calendar appears sooner—desktop ~80–120ms (was 200–350ms), mobile ~280ms (was 800ms). Click path delay before positioning/reveal reduced from 100ms to 50ms.
218
+ - **CSS & Linting (SonarLint)**: Resolved duplicate selectors, commented-out code, duplicate properties in `datepicker.css` for cleaner styles, and resolved all 38 remaining TypeScript library lint warnings.
219
+
220
+
221
+ ## [2.1.7] - 2026-02-23
222
+
223
+ ### Added
224
+
225
+ - **Google Calendar Integration**: Added full built-in support for syncing and displaying events from Google Calendar.
226
+ - New input `enableGoogleCalendar` (boolean) to toggle the feature directly from the template.
227
+ - New input `googleClientId` (string) to configure the Google OAuth Client ID.
228
+ - New `GoogleCalendarService` responsible for GIS library loading and seamless authentication syncing.
229
+ - Displays authenticated status natively within the calendar header popup.
230
+ - Emits `googleSyncClick` for tracking user interactions.
231
+
232
+ ### Fixed
233
+
234
+ - **DatePipe Provider Issue**: Fixed `NG0201: No provider found for _DatePipe` error (Issue #193). Decoupled `DatepickerParsingService` from the root injector to ensure it correctly resolves `DatePipe` within the component context. Users no longer need to manually provide `DatePipe` in their application configuration.
235
+
236
+ ## [2.1.6] - 2026-02-17
237
+
238
+ ### Changed
239
+
240
+ - **Version**: Bump to 2.1.6 (current stable release).
241
+
242
+ ## [2.1.5] - 2026-02-17
243
+
244
+ ### Added
245
+
246
+ - **Validation messages (i18n)**: New user-facing validation strings in `DatepickerTranslations`—`invalidDateFormat`, `dateBeforeMin`, `dateAfterMax`, `invalidDate`—with full translation support across all 8 languages. The component shows a translated error message when input is invalid, before min, or after max, and emits `validationError` with `code` and `message`.
247
+ - **Calendar loading state**: Visual loading state (spinner + text) while the calendar is opening or generating. Loading state is announced to screen readers via `AriaLiveService`. A public getter is available for templates to reflect "calendar is loading."
248
+ - **Installation options**: New `docs/INSTALLATION.md` documenting all install methods (npm, Yarn, pnpm, Bun, Git, local path, CDN, tarball). Demo Installation page updated with alternative install commands and a link to the full guide.
249
+ - **Issue-reproduction app**: New minimal Angular app `angular-issue-test` (routes: Home, month-navigation, range-reselection) for manually verifying reported issues. Served via `npx ng serve angular-issue-test`.
250
+
251
+ ### Changed
252
+
253
+ - **Version**: Bump to 2.1.5 (stable release).
254
+ - **Demo app – light/dark theme**: Theme toggle now correctly switches the UI. `data-theme` is synced on the document when theme changes; `html[data-theme='light']` CSS overrides added for the light palette. Nav-link hover uses `var(--color-text-main)` for both themes. Responsive spacing variables use `clamp()`.
255
+ - **Library refactors**: Calendar grid generation and input parsing/formatting logic extracted into `CalendarGenerationService` and `DatepickerParsingService` respectively.
256
+ - **Demo styles**: New utility classes (e.g. `.link`, `.no-underline`, `.text-dim`, `.gap-xs`) and tip label layout tweak.
257
+ - **Docs**: README and library README reference `docs/INSTALLATION.md`. CHANGELOG, MIGRATION, ROADMAP, SECURITY, API_REFERENCE, BUNDLE_SIZE_REPORT, and API.md updated for 2.1.5.
258
+
259
+ ### Fixed
260
+
261
+ - **Demo theme**: Fixed light/dark theme toggle not applying—demo now correctly reflects the active theme (header toggle and system preference).
262
+
263
+ ## [2.1.4] - 2026-02-13
264
+
265
+ ### Added
266
+
267
+ - **Playground Enhancements**: Added new configuration options for `minDate`, `maxDate`, and `weekStart` to the interactive playground, allowing users to test boundary constraints and locale overrides.
268
+ - **Improved Internationalization**: Added full translation support for new playground features across all 8 supported languages (English, German, Spanish, Swedish, Korean, Chinese, Japanese, and French).
269
+
270
+ ### Fixed
271
+
272
+ - **Calendar Grid Consistency**: Ensured the calendar always generates a full 42-day (6-week) grid. This prevents layout shifts and provides a more stable UI when navigating between months with different numbers of days.
273
+ - **Locale-Specific Week Starts**: Fixed issues with manual `weekStart` overrides and locale-dependent first day of week calculations, ensuring accurate calendar generation across diverse cultural settings.
274
+
275
+ ## [2.1.3] - 2026-02-11
276
+
277
+ ### Fixed
278
+
279
+ - **Inline Datepicker Width**: Fixed an issue where the inline datepicker was constrained by container styles in some contexts, causing it to appear cramped or cut off. The inline mode now correctly fits its content.
280
+
281
+ ## [2.1.2] - 2026-02-11
282
+
283
+ ### Fixed
284
+
285
+ - **Mobile Experience**: Improved stability on mobile devices (specifically Samsung/Android/Edge).
286
+ - Fixed an issue where the calendar would close prematurely during interactions due to portaling logic.
287
+ - Added "ghost click" protection to the backdrop to prevent accidental closure right after opening.
288
+ - Standardized containment checks to handle popovers appended to the document body.
289
+ - **Circular Dependency**: Resolved `RuntimeError: NG0200: Circular dependency detected` when using `NgModel` or Reactive Forms.
290
+ - Removed `NG_VALUE_ACCESSOR` from component providers to break the circular link with `NgControl`.
291
+ - Implemented manual `valueAccessor` assignment in the constructor for safe interaction with Angular's form system.
292
+ - **Dependency Cleanup**: Removed unused `forwardRef` and `NG_VALUE_ACCESSOR` imports to improve bundle size and build performance.
293
+
294
+ ### Changed
295
+
296
+ - **UI Refinement (Premium Aesthetic)**: Improved the overall visual appearance with a "border detox."
297
+ - Reduced border thickness from 1.5px to 1px library-wide.
298
+ - Softened border colors and added subtle ghost backgrounds for interactive elements.
299
+ - Enhanced navigation buttons with a borderless-by-default look.
300
+
301
+ ### Removed
302
+
303
+ - **Range Duration Header**: Removed the "X Days" duration header from range selection mode to reduce visual clutter and simplify the UI.
304
+
305
+
306
+ ## [2.1.1] - 2026-02-09
307
+
308
+ ### Fixed
309
+
310
+ - **Material Form Field Integration**: Improved `NgxsmkDatepickerComponent` to correctly notify `mat-form-field` of state changes.
311
+ - Injected `NgControl` into the component to properly integrate with Angular's form system.
312
+ - Added `stateChanges.next()` call in `emitValue` to ensure the form field reflects internal state changes (e.g., when selecting a date).
313
+ - **Helper Function Enhancements**: Updated `provideMaterialFormFieldControl` with runtime warnings for missing or incorrect Material tokens.
314
+
315
+ ## [2.1.0] - 2026-02-05
316
+
317
+
318
+ ### Fixed
319
+
320
+ - **Package Configuration**: Corrected TypeScript declaration paths in package.json
321
+ - Updated `types` and `typings` fields to point to `types/ngxsmk-datepicker.d.ts` instead of non-existent `index.d.ts`
322
+ - Simplified `exports` field to match v2.0.9 format, removing unnecessary module export configurations
323
+ - Removed disallowed `esm2022` property from package.json
324
+ - Ensures proper TypeScript module resolution in consuming applications
325
+
326
+ ### Changed
327
+
328
+ - **Package Distribution**: Streamlined package exports configuration for better compatibility
329
+ - Aligned exports structure with stable v2.0.9 format
330
+ - Removed redundant module resolution entries for cleaner package.json
331
+
332
+ ### Important Notice
333
+
334
+ ⚠️ **Versions 2.0.10 and 2.0.11 have been unpublished from npm** due to critical package configuration issues that prevented proper TypeScript module resolution. All users should upgrade to v2.1.1 or later.
335
+
336
+ ## [2.0.11] - 2026-02-05 [BROKEN - UNPUBLISHED]
337
+
338
+ **⚠️ This version has been unpublished from npm due to incorrect package configuration. Use v2.1.1 instead.**
339
+
340
+ ### Fixed
341
+
342
+ - **TypeScript Type Declarations**: Attempted to fix "Could not find a declaration file for module 'ngxsmk-datepicker'" error
343
+ - Added proper `exports` field in package.json with correct type declaration path
344
+ - Configured exports to point to `index.d.ts` for TypeScript module resolution
345
+ - **Note**: This fix was incomplete and the version has been replaced by v2.1.1
346
+
347
+ ## [2.0.10] - 2026-02-05 [BROKEN - UNPUBLISHED]
348
+
349
+ **⚠️ This version has been unpublished from npm due to incorrect package configuration. Use v2.1.1 instead.**
350
+
351
+ ### Fixed
352
+
353
+ - **Infinite Recursion in Date Utilities**: Fixed `RangeError: Maximum call stack size exceeded` in `getEndOfDay()` function
354
+ - Refactored recursive logic to use direct date manipulation
355
+ - Replaced recursive `addMonths` calls with iterative approach
356
+ - Improves performance and eliminates stack overflow risk
357
+ - **Timezone Test Edge Cases**: Fixed date component preservation in timezone conversion tests
358
+ - Updated timezone tests to use `Date.UTC()` for consistent cross-environment behavior
359
+ - Ensures test reliability across different system timezones with non-integer offsets (UTC+5:30, etc.)
360
+
361
+ ### Optimized
362
+
363
+ - **Build and Release**: Removed unnecessary generated files from distribution
364
+ - Cleaned up coverage reports and build artifacts
365
+ - Streamlined demo app output
366
+
367
+ ## [2.0.9] - 2026-01-31
368
+
369
+ ### Optimized
370
+
371
+ - **Stylesheet Architecture**: Comprehensive optimization of CSS assets
372
+ - Replaced redundant mobile stylesheets with a unified "Responsive Overrides" system
373
+ - Removed deprecated keyframes and duplicate selectors
374
+ - Enhanced commenting standards with industrial/professional documentation style
375
+ - Reduced CSS bundle size by eliminating unused styles
376
+
377
+ ### Fixed
378
+
379
+ - **Sticky Header Overlap**: Resolved critical z-index stacking issue where sticky headers would overlap the datepicker popup
380
+ - Implemented aggressive z-index boost (`2147483647`) for the host component when active
381
+ - Ensures datepicker always floats above application navigation bars and modal backdrops
382
+ - **Mobile Dropup Positioning**: Fixed footer clipping issues on mobile devices
383
+ - Time selection dropdowns now intelligently open upwards ("dropup") on screens < 992px
384
+ - Prevents dropdown options from being cut off by the bottom of the viewport or sticky footers
385
+ - Improved touch interactions for time selection on mobile
386
+
387
+ ## [2.0.8] - 2026-01-31
388
+
389
+ ### Added
390
+
391
+ - **Ionic Integration**: Added automatic support for Ionic CSS variables
392
+ - Datepicker now automatically inherits Ionic app theme colors (primary, background, text)
393
+ - No additional configuration required for native look and feel in Ionic apps
394
+ - Documented integration steps in README
395
+
396
+ ### Optimized
397
+
398
+ - **Change Detection**: Optimized internal change detection strategy
399
+ - Removed redundant `ChangeDetectorRef` calls in favor of Signal-based updates
400
+ - Improved compatibility with Zoneless Angular applications
401
+ - Cleaner and more efficient state management
402
+
403
+ ### Fixed
404
+
405
+ - **Mobile Page Jump**: Fixed issue where selecting a date would cause the page to jump to the top on some mobile browsers (Firefox Android)
406
+ - Added `{ preventScroll: true }` to focus restoration logic
407
+ - **Dropdown Scrolling**: Fixed UX issue in month/year dropdowns
408
+ - Dropdowns now automatically scroll to the currently selected option when opened
409
+ - Improved mobile scrolling behavior within dropdowns by removing conflicting close logic
410
+
411
+ ### Changed
412
+
413
+ - **Version Update**: Updated to version 2.0.8
414
+
415
+ ## [2.0.7] - 2026-01-26
416
+
417
+ - **Version Update**: Updated to version 2.0.7
418
+
419
+ ## [2.0.6] - 2026-01-15
420
+
421
+ ### Enhanced
422
+
423
+ - **Range Picker Reselection**: Improved comprehensive range reselection behavior
424
+ - Clicking the start date when a complete range is selected now clears only the end date
425
+ - Clicking the end date when a complete range is selected now clears the start date and sets the end date as the new start date
426
+ - **NEW**: Clicking any date within the selected range now clears the end date and sets the clicked date as the new start date
427
+ - Allows users to easily redefine date ranges from any point (start, end, or within the range)
428
+ - Example scenarios:
429
+ - Range: Jan 10 - Jan 20, Click Jan 10 → Result: Jan 10 (can select new end)
430
+ - Range: Jan 10 - Jan 20, Click Jan 20 → Result: Jan 20 (can select new end)
431
+ - Range: Jan 26 - Jan 30, Click Jan 27 → Result: Jan 27 (can select new end)
432
+ - Improves usability by providing intuitive range adjustment from any direction
433
+
434
+ ### Changed
435
+
436
+ - **Code Cleanup**: Removed unnecessary inline comments from range selection logic for cleaner, more maintainable code
437
+ - **Version Update**: Updated to version 2.0.6
438
+
439
+ ## [2.0.5] - 2026-01-15
440
+
441
+ ### Enhanced
442
+
443
+ - **Range Picker Reselection**: Improved user experience when reselecting date ranges
444
+ - Clicking the start date again after selecting a complete range now clears only the end date
445
+ - Allows users to easily redefine the end date without clearing the entire selection
446
+ - The start date remains selected, and users can immediately choose a new end date
447
+ - Example: After selecting Jan 19 (start) → Jan 21 (end), clicking Jan 19 again keeps Jan 19 selected and clears Jan 21
448
+ - Improves usability by reducing clicks needed to adjust date ranges
449
+
450
+ ### Fixed
451
+
452
+ - **Range Mode Value Emission**: Fixed issue where clicking the start date again after a complete range was selected would update the visual state but not emit the value change
453
+ - The datepicker now properly emits a partial range value (`{ start: Date, end: null }`) when the end date is cleared
454
+ - Parent components and form bindings now correctly reflect the cleared end date state
455
+ - Resolves inconsistency between visual calendar state and bound values
456
+
457
+ ### Patch Changes
458
+
459
+ - **Version Update**: Updated to version 2.0.5
460
+ - **Documentation**: Added comprehensive "Form Validation" section to README to explain `readonly` input behavior and provide solutions for native browser validation (e.g., using `allowTyping="true"`).
461
+
462
+ ## [2.0.4] - 2026-01-14
463
+
464
+ ### Patch Changes
465
+
466
+ - **Version Update**: Updated to version 2.0.4
467
+ - **Validation Fix**: Fixed issue where `[field]` validation messages were not triggering because the `touched` state was not being synced to the field. Added `markAsTouched` support to `FieldSyncService` and updated `NgxsmkDatepickerComponent` to mark the field as touched on blur and value selection.
468
+
469
+ ## [2.0.3] - 2026-01-14
470
+
471
+ ### Patch Changes
472
+
473
+ - **Version Update**: Updated to version 2.0.3
474
+ - **Code Cleanup**: Removed unnecessary comments from `field-sync.service.ts` to improve code readability and maintainability.
475
+ - **Bug Fixed**: Verified fixes for issues #136, #112, #84, and #71.
476
+ - **TypeScript Compatibility**: Fixed `SignalFormField` and `SignalFormFieldConfig` types to be fully compatible with Angular 21+ `FieldTree<string | Date | null, string>` structure. The types now accept `WritableSignal<string | Date | null>` from Angular's Signal Forms, resolving TypeScript compilation errors when using `[field]` binding.
477
+
478
+ ## [2.0.2] - 2026-01-14
479
+
480
+ ### Patch Changes
481
+
482
+ - **Version Update**: Updated to version 2.0.2
483
+ - **Documentation**: Updated all documentation to reflect new version
484
+
485
+ ## [2.0.1] - 2026-01-14
486
+
487
+ ### Patch Changes
488
+
489
+ - **Version Update**: Updated to version 2.0.1
490
+ - **Bug Fixes**: Minor bug fixes and improvements
491
+ - **Documentation**: Updated all documentation to reflect new version
492
+
493
+ ## [2.0.0] - 2026-01-14
494
+
495
+ ### Major Changes
496
+
497
+ - **Version Update**: Updated to version 2.0.0
498
+ - **Breaking Changes**:
499
+ - Updated minimum Angular version requirement to 17.0.0
500
+ - Improved Signal Forms integration
501
+ - Enhanced timezone handling
502
+ - **Documentation**: Updated all documentation to reflect new version
503
+
504
+ ## [1.9.29] - 2026-01-13
505
+
506
+ ### Added
507
+
508
+ - **Angular Signal Forms Validation Support**: Full support for schema-based validation with Angular 21+ Signal Forms
509
+ - Automatically detects and responds to validation errors from the field's `errors()` signal
510
+ - Recognizes `required` validation from schema (e.g., `required(p.dateDue)`)
511
+ - Updates component's `errorState` based on field's `invalid()` signal
512
+ - Reactive updates when validation state changes
513
+ - Resolves [#136](https://github.com/NGXSMK/ngxsmk-datepicker/issues/136) - "datepicker doesn't recognise 'required' attribute in schema"
514
+ - **Validation Error Types**: Added `ValidationError` interface to support Angular Signal Forms error structure
515
+ - **Error State Callback**: Added `onErrorStateChanged` callback to `FieldSyncCallbacks` for validation state tracking
516
+ - **Comprehensive Documentation**: Added `docs/SIGNAL_FORMS_VALIDATION.md` with usage examples, API reference, and migration guide
517
+ - **Test Coverage**: Added comprehensive test suite in `signal-forms-validation.spec.ts` for validation scenarios
518
+ - **Input Attributes Support**: Added support for standard input attributes on the datepicker input element
519
+ - `inputId`: Custom ID support (defaults to component unique ID)
520
+ - `name`: Form name attribute support
521
+ - `autocomplete`: Autocomplete attribute support (defaults to 'off')
522
+ - `aria-invalid`: Accessibility support for invalid state visibility
523
+ - **Keyboard Shortcuts Help Dialog**: Added a built-in help dialog for keyboard shortcuts, accessible via `?` or `Shift + /`.
524
+ - **New Shortcut**: Added `?` keyboard shortcut to toggle the help dialog.
525
+
526
+ ### Enhanced
527
+
528
+ - **Field Sync Service**: Enhanced with new helper methods
529
+ - `readFieldErrors()`: Reads validation errors from field's `errors` signal
530
+ - `readRequiredState()`: Checks for required validation in errors or direct property (prioritizes schema validation)
531
+ - `hasValidationErrors()`: Determines if field has any validation errors
532
+ - **Backward Compatibility**: Maintains full compatibility with:
533
+ - Direct `required` attribute: `<ngxsmk-datepicker required>`
534
+ - Reactive Forms: `<ngxsmk-datepicker [formControl]="dateControl">`
535
+ - Template-driven forms: `<ngxsmk-datepicker [(ngModel)]="date">`
536
+ - Direct `required` property on field: `field.required = true`
537
+
538
+ ### Fixed
539
+
540
+ - **Header Layout**: Fixed CSS issue where the datepicker header width was not spanning the full container width, ensuring consistent layout across all screen sizes.
541
+ - **Angular Signal Forms Schema Validation**: Fixed issue where `required` attribute from schema was not properly reflected on the input and form validation
542
+ - **Month Navigation**: Fixed a critical bug where navigating to the next month would skip a month (e.g., Jan -> Mar) if the current date was the 31st (due to JS Date overflow). Navigation now correctly calculates from the start of the month.
543
+ - **Signal Forms Integration**: Critical fix for `[field]` binding where Signal fields (passed as functions) were being ignored, preventing validation metadata (like `.required`) from being read.
544
+ - **Range Navigation**: Fixed usability issue where selecting an end date in a different month would unexpectedly reset the calendar view back to the start date's month, causing confusion.
545
+ - **Field Sync Service**: Updated `readRequiredState` and `readDisabledState` to correctly process function-type fields (Signals).
546
+
547
+ ### Changed
548
+
549
+ - **Version Update**: Updated to version 1.9.29
550
+
551
+ ## [1.9.27] - 2026-01-10
552
+
553
+ ### Refactored
554
+
555
+ - **Modern Control Flow**: Fully migrated all standalone components (`NgxsmkDatepickerComponent`, `CalendarHeaderComponent`, `CalendarMonthViewComponent`, `CalendarYearViewComponent`, `TimeSelectionComponent`, `CustomSelectComponent`) to modern Angular `@if` and `@for` block syntax.
556
+ - **Optimized Imports**: Replaced monolithic `CommonModule` with individual directive and pipe imports (`NgClass`, `NgTemplateOutlet`, `DatePipe`) in all standalone components. This improves tree-shaking and resolves resolution conflicts in some environments.
557
+
558
+ ### Fixed
559
+
560
+ - **Module Resolution**: Resolved "Value could not be determined statically" error when importing standalone library components into traditional NgModules in some monorepo configurations.
561
+ - **Build Process**: Fixed library compilation error (`TS6133`) caused by unused `CommonModule` after migration to modern control flow.
562
+ - **Monorepo Compatibility**: Improved Angular core dependency resolution for example applications to prevent "duplicate symbol" and "exported symbol not found" errors during development.
563
+
564
+ ### Maintenance
565
+
566
+ - **Git**: Added `/examples` directory to `.gitignore` to prevent committing experimental test applications.
567
+
568
+ ### Changed
569
+
570
+ - **Version Update**: Updated to version 1.9.27
571
+
572
+ ## [1.9.26] - 2026-01-09
573
+
574
+ > ⚠️ **DO NOT USE**: This version contains broken styles. Please use v1.9.27 or v1.9.25 instead.
575
+
576
+ ### Refactored
577
+
578
+ - **Core Architecture**: Major refactoring of `NgxsmkDatepickerComponent` to address "God Component" issues
579
+ - Split monolithic component into dedicated sub-components: `CalendarMonthViewComponent`, `CalendarYearViewComponent`
580
+ - Integrated `CalendarHeaderComponent` and `TimeSelectionComponent` to handle specific functional areas
581
+ - Removed 1000+ lines of inline template code, significantly improving maintainability and readability
582
+ - Improved strict template type checking support
583
+ - **No breaking changes** to the public API
584
+
585
+ ### Fixed
586
+
587
+ - **Ionic Integration**: Fixed issue where `ionic-integration.css` was not exported in the package bundle
588
+ - Moved styles to allow correct exporting via package logic
589
+ - Ensures `@import 'ngxsmk-datepicker/styles/ionic-integration.css'` works as documented
590
+ - Resolves [#123](https://github.com/NGXSMK/ngxsmk-datepicker/issues/123)
591
+
592
+ ### Fixed (Mobile UI)
593
+
594
+ - **Mobile View Styles**: Enhanced mobile UI styles for both Angular and Ionic projects
595
+ - Added proper positioning and animations for `bottom-sheet` and `fullscreen` mobile modes
596
+ - Fixed missing styles in core `datepicker.css` that prevented `mobileModalStyle` from working correctly
597
+ - Improved gesture handling and transition animations for mobile devices
598
+
599
+ ### Changed
600
+
601
+ - **Version Update**: Updated to version 1.9.26
602
+
603
+ ## [1.9.25] - 2026-01-06
604
+
605
+ ### Fixed
606
+
607
+ - **IDE Support**: Fixed "This component requires inline template type-checking" error by including all source files in tsconfig
608
+ - Ensures accurate template type checking in VS Code and other IDEs
609
+ - **NPM Package**: Fixed issue where `README.md` was missing from the npm package
610
+ - Updated build scripts to ensure `README.md` is correctly included in the distribution
611
+ - Ensures proper documentation rendering on npmjs.com
612
+
613
+ ### Changed
614
+
615
+ - **Version Update**: Updated to version 1.9.25
616
+
617
+ ## [1.9.23] - 2025-12-15
618
+
619
+ ### Fixed
620
+
621
+ - **Signal Forms Dirty State Tracking (Issue #112)**: Fixed issue where Angular Signal Forms were not being marked as dirty when date values changed through the `[field]` binding
622
+ - Improved `updateFieldFromInternal()` method to always prefer `setValue()` and `updateValue()` methods over direct signal mutation
623
+ - Added dev mode warnings when falling back to direct signal mutation, which may bypass dirty state tracking
624
+ - Enhanced error handling to track which update method succeeded and provide better diagnostics
625
+ - The datepicker now properly marks forms as dirty when using `[field]` binding with Angular 21+ Signal Forms
626
+ - Added comprehensive test coverage for Signal Forms dirty state tracking
627
+ - Updated documentation with detailed guidance on proper usage patterns and troubleshooting
628
+ - Resolves [#112](https://github.com/NGXSMK/ngxsmk-datepicker/issues/112)
629
+
630
+ - **CSS Variables Theming (Issue #84)**: Fixed issue where CSS variables theming was not working when variables were defined in the global `:root` selector
631
+ - Enhanced CSS selector from `:root` to `:root, :root > body` for higher specificity
632
+ - Added `!important` flags to inline styles to ensure they override existing styles
633
+ - ThemeBuilderService now properly overrides global stylesheet variables
634
+ - Updated documentation to explain the fix and provide guidance
635
+ - Resolves [#84](https://github.com/NGXSMK/ngxsmk-datepicker/issues/84)
636
+
637
+ ### Changed
638
+
639
+ - **Version Update**: Updated to version 1.9.23
640
+
641
+ ## [1.9.22] - 2025-12-14
642
+
643
+ ### Fixed
644
+
645
+ - **Form Control Value Initialization**: Fixed issue where datepicker was not properly updating the displayed month when initialized with form control values
646
+ - Added `_updateMemoSignals()` call in `writeValue()` method to ensure month/year signals are properly updated
647
+ - Added `scheduleChangeDetection()` to trigger UI updates when form control values are set
648
+ - Ensures datepicker correctly displays the month from form control values instead of defaulting to current month
649
+ - Resolves issue where demo app datepickers were showing December instead of the correct month from form control values
650
+ - Fixes calendar month display when using Reactive Forms with initial values
651
+
652
+ - **Locale Week Start Detection**: Fixed `getFirstDayOfWeek()` function to properly return 1 for en-GB locale
653
+ - Added fallback logic for locales where `Intl.Locale.weekInfo` is not available (older browsers/environments)
654
+ - Implemented locale-based mapping for common locales (en-GB, en-AU, en-NZ, and most European locales return 1 for Monday)
655
+ - Now correctly returns Monday (1) for en-GB and other European locales
656
+ - Maintains backward compatibility with en-US and other locales that use Sunday (0) as first day
657
+ - All calendar utils tests now passing (19/19 tests)
658
+
659
+ ### Changed
660
+
661
+ - **Version Update**: Updated to version 1.9.22
662
+
663
+ ## [1.9.21] - 2025-12-10
664
+
665
+ ### Added
666
+
667
+ - **Mobile-Specific Features**: Comprehensive mobile optimization and native integration
668
+ - Native date picker integration with `useNativePicker` input for automatic native picker on mobile devices
669
+ - Bottom sheet modal style with swipe-to-dismiss gesture support
670
+ - Mobile-optimized time picker with enhanced touch interactions
671
+ - Enhanced gesture support: double-tap on today to select, swipe up/down for year navigation
672
+ - Haptic feedback support with `enableHapticFeedback` input (light, medium, heavy vibrations)
673
+ - Mobile keyboard optimizations for better input experience
674
+ - Mobile-specific animations and transitions
675
+ - Auto-detection of mobile devices with `autoDetectMobile` input
676
+ - Mobile modal styles: `bottom-sheet`, `center`, and `fullscreen` options
677
+
678
+ - **Advanced Selection Modes**: Extended selection capabilities beyond single/range/multiple
679
+ - Week selection mode: Select entire weeks with configurable week start day
680
+ - Month selection mode: Select entire months with start/end dates
681
+ - Quarter selection mode: Select quarters (Q1, Q2, Q3, Q4) with proper date ranges
682
+ - Year selection mode: Select entire years with January 1st to December 31st ranges
683
+ - All new modes work seamlessly with existing validation, constraints, and formatting
684
+
685
+ - **Enhanced Time Selection**: Improved time picker functionality
686
+ - Seconds selection with `showSeconds` input and `secondInterval` configuration
687
+ - `currentSecond` property for programmatic second control
688
+ - Infrastructure for time range selection (future enhancement)
689
+
690
+ - **Code Refactoring**: Improved maintainability and performance
691
+ - `CalendarGenerationService`: Extracted calendar generation logic for better separation of concerns
692
+ - `DisplayFormattingService`: Centralized display formatting logic with support for all selection modes
693
+ - `DateValidationService`: Extracted date validation logic for reusable validation across components
694
+ - Reduced main component size and complexity
695
+ - Improved code organization and testability
696
+
697
+ - **Accessibility Enhancements**: Improved screen reader and keyboard navigation
698
+ - Enhanced ARIA live region announcements with debouncing and queue management
699
+ - Improved focus trap management with proper focus return on close
700
+ - Better screen reader support for all new selection modes
701
+ - High contrast mode styling improvements
702
+
703
+ - **Performance Optimizations**: Infrastructure for better performance
704
+ - Virtual scrolling infrastructure for year/decade views (ready for future implementation)
705
+ - Lazy loading calendar months with intelligent caching (up to 24 months)
706
+ - Calendar month cache with automatic size management
707
+ - Preloading of adjacent months for smoother navigation
708
+
709
+ - **Test Coverage**: Comprehensive test suite updates
710
+ - New service tests: `CalendarGenerationService`, `DisplayFormattingService`, `DateValidationService`
711
+ - Updated comprehensive component tests with new selection modes
712
+ - Updated utility function tests for week/month/quarter/year helpers
713
+ - Updated E2E tests for mobile features and new selection modes
714
+ - All 414 tests passing with improved coverage
715
+
716
+ ### Changed
717
+
718
+ - **Version Update**: Updated to version 1.9.21
719
+ - **Hooks Interface**: Extended hooks interface to support new selection modes (`week`, `month`, `quarter`, `year`)
720
+ - **Type Definitions**: Updated `DatepickerValue` type to explicitly handle range mode with `[Date, Date | null]`
721
+ - **Service Architecture**: Refactored component to use new services for better maintainability
722
+
723
+ ### Fixed
724
+
725
+ - **Angular 21 Signal Forms Integration (Issue #80)**: Fixed broken `[field]` input binding with Angular 21 Signal Forms
726
+ - Improved signal detection in `readFieldValue()` to handle Angular 21's `FieldTree<Date, string>` structure
727
+ - Enhanced effect setup to properly track Signal Forms dependencies when `field.value` is a function returning a signal
728
+ - Fixed `updateFieldFromInternal()` to handle cases where `field.value` is a function that returns a writable signal
729
+ - Now correctly handles Angular 21 Signal Forms where `field.value` is a function that returns the actual signal
730
+ - Resolves [#80](https://github.com/NGXSMK/ngxsmk-datepicker/issues/80)
731
+ - **Build Issues**: Fixed TypeScript compilation errors related to strict null checks
732
+ - **Test Failures**: Fixed async timing issues in AriaLiveService tests
733
+ - **Calendar Generation**: Fixed structural issues in calendar generation method
734
+ - **Type Safety**: Improved type safety with explicit null checks and proper type definitions
735
+
736
+ ### Migration Notes
737
+
738
+ - This is a patch version update
739
+ - No breaking changes from v1.9.20
740
+ - All changes are backward compatible
741
+ - Compatible with Angular 17-22
742
+ - New features are opt-in and don't affect existing implementations
743
+ - Mobile features automatically detect mobile devices but can be disabled with `autoDetectMobile="false"`
744
+ - New selection modes extend existing `mode` input with additional options
745
+
746
+ ## [1.9.20] - 2025-12-06
747
+
748
+ ### Fixed
749
+
750
+ - **Test Environment Compatibility (Issue #71)**: Fixed `TypeError: window.matchMedia is not a function` error in test environments (jsdom/Vitest)
751
+ - Added try-catch block around `window.matchMedia` call in `applyAnimationConfig()` method
752
+ - Component now gracefully handles missing `matchMedia` API in test environments
753
+ - Prevents test failures when running with Vitest and jsdom
754
+ - Added comprehensive test coverage for `matchMedia` compatibility scenarios
755
+
756
+ ### Changed
757
+
758
+ - **Version Update**: Updated to version 1.9.20
759
+
760
+ ### Migration Notes
761
+
762
+ - This is a patch version update
763
+ - No breaking changes from v1.9.19
764
+ - All changes are backward compatible
765
+ - Compatible with Angular 17-22
766
+ - Fixes test compatibility issues with Vitest and jsdom environments
767
+
768
+ ## [1.9.19] - 2025-01-15
769
+
770
+ ### Added
771
+
772
+ - **Comprehensive Responsive Layout Redesign**: Complete redesign of demo project layout for all screen sizes
773
+ - Redesigned navbar for all breakpoints (320px-374px, 375px-479px, 480px-599px, 600px-767px, 768px-1023px, 1024px+)
774
+ - Enhanced sidebar navigation with mobile drawer, tablet collapsible, and desktop fixed layouts
775
+ - Responsive hero section with adaptive typography and button layouts
776
+ - Feature grid responsive design (1 column → 2 columns → 3 columns → 4 columns)
777
+ - Optimized content sections with responsive padding, typography, and spacing
778
+ - Improved example demo containers, code blocks, mobile preview containers, and result boxes
779
+ - Better touch targets and visual hierarchy across all breakpoints
780
+
781
+ ### Changed
782
+
783
+ - **Version Update**: Updated to version 1.9.19
784
+ - **Meta Tag Update**: Replaced deprecated `apple-mobile-web-app-capable` with `mobile-web-app-capable`
785
+ - **Code Cleanup**: Removed unnecessary comments from SCSS files for cleaner codebase
786
+
787
+ ### Migration Notes
788
+
789
+ - This is a patch version update
790
+ - No breaking changes from v1.9.18
791
+ - All changes are backward compatible
792
+ - Compatible with Angular 17-22
793
+ - Demo project layout improvements are automatic and require no code changes
794
+
795
+ ## [1.9.18] - 2025-11-22
796
+
797
+ ### Fixed
798
+
799
+ - **Mobile Touch Event Handling**: Improved touch listener attachment when calendar opens on mobile devices
800
+ - Touch listeners now properly attach when calendar first opens, eliminating the need to navigate months first
801
+ - Added retry mechanism with multiple attempts to ensure listeners are attached even on slower mobile devices
802
+ - Improved timing with double `requestAnimationFrame` calls and multiple retry strategies
803
+ - Enhanced mobile rendering timing to handle DOM delays
804
+
805
+ ### Changed
806
+
807
+ - **Version Update**: Updated to version 1.9.18
808
+
809
+ ### Migration Notes
810
+
811
+ - This is a patch version update
812
+ - No breaking changes from v1.9.17
813
+ - All changes are backward compatible
814
+ - Compatible with Angular 17-22
815
+ - Improved mobile experience with better touch event handling
816
+
817
+ ## [1.9.17] - 2025-11-21
818
+
819
+ ### Added
820
+
821
+ - **Calendar Button Visibility Control**: Added `showCalendarButton` input property to show/hide the calendar icon button
822
+ - Defaults to `true` for backward compatibility
823
+ - When set to `false`, users can still open the calendar by clicking the input field
824
+ - Useful for custom UI designs or when using `allowTyping` with custom calendar triggers
825
+ - **Calendar Button Styling**: Added `calendarBtn` to `DatepickerClasses` for custom styling of the calendar button
826
+
827
+ ### Changed
828
+
829
+ - **Version Update**: Updated to version 1.9.17
830
+ - **Type Compatibility**: Updated `SignalFormField` type to be fully compatible with Angular 21's `FieldTree<Date, string>` types
831
+
832
+ ### Migration Notes
833
+
834
+ - This is a patch version update
835
+ - No breaking changes from v1.9.16
836
+ - All changes are backward compatible
837
+ - Compatible with Angular 17-22
838
+ - The calendar button is visible by default (`showCalendarButton="true"`), existing behavior unchanged
839
+
840
+ ## [1.9.16] - 2025-11-20
841
+
842
+ ### Fixed
843
+
844
+ - **Range Mode Previous Month Selection**: Fixed issue where users could not select dates from previous months in range mode when starting with `{ start: null, end: null }`
845
+ - Added memo cache invalidation before calendar generation when clicking dates from previous/next months in range mode
846
+ - Fixed issue where clicking dates from previous months would navigate but memoized functions would use stale month/year values
847
+ - Now properly invalidates memo cache in single, range, and multiple modes when navigating to different months via date clicks
848
+ - Users can now select dates from previous months in range mode without issues, allowing proper range selection across month boundaries
849
+
850
+ ### Changed
851
+
852
+ - **Version Update**: Updated to version 1.9.16
853
+ - **Angular 21 Support**: Updated dependencies and peer dependencies to support Angular 21 (officially released)
854
+ - Updated devDependencies to Angular 21.0.0
855
+ - Updated peer dependencies to support Angular 17-22 (`>=17.0.0 <24.0.0`)
856
+ - Full compatibility with Angular 21 including Signal Forms support
857
+ - **Signal Forms**: Full support for Angular 21 Signal Forms with `[field]` input binding (experimental feature)
858
+ - **Zoneless by Default**: Compatible with Angular 21 applications that don't include Zone.js by default
859
+ - **Vitest Compatible**: Works with Angular 21's new default Vitest test runner (library tests use Karma/Jasmine, but library is compatible with Vitest-based apps)
860
+ - **Angular Aria Compatible**: Built-in ARIA support works alongside Angular Aria components (uses custom AriaLiveService for screen reader announcements)
861
+
862
+ ### Migration Notes
863
+
864
+ - This is a patch version update with bug fixes and Angular 21 support
865
+ - No breaking changes from v1.9.15
866
+ - All fixes are backward compatible
867
+ - Compatible with Angular 17-22 (including officially released Angular 21)
868
+
869
+ ## [1.9.15] - 2025-11-20
870
+
871
+ ### Fixed
872
+
873
+ - **Moment Object Binding with ngModel**: Fixed issue where Moment.js objects passed via `[(ngModel)]` were not binding correctly with the datepicker
874
+ - Updated `writeValue()` method to normalize Moment.js objects before passing to `initializeValue()`
875
+ - Ensures Moment.js objects (including those with `utcOffset()` applied) are properly converted to Date objects when binding with template-driven forms
876
+ - Now correctly handles `moment(response.Date).utcOffset(timezone)` when setting via ngModel
877
+ - **Date Clicks After Month Navigation**: Fixed issue where dates became unclickable after navigating backward or forward months
878
+ - Updated `isDateDisabledMemo` getter to properly invalidate cached memoized function when month/year changes
879
+ - Added month/year change detection to ensure disabled date cache is refreshed after navigation
880
+ - Dates in previous/next months are now properly clickable without needing to close and reopen the datepicker
881
+ - **Range Mode Previous Month Selection**: Fixed issue where users could not select dates from previous months in range mode when starting with `{ start: null, end: null }`
882
+ - Added memo cache invalidation before calendar generation when clicking dates from previous/next months in range mode
883
+ - Fixed issue where clicking dates from previous months would navigate but memoized functions would use stale month/year values
884
+ - Now properly invalidates memo cache in single, range, and multiple modes when navigating to different months via date clicks
885
+ - Users can now select dates from previous months in range mode without issues, allowing proper range selection across month boundaries
886
+
887
+ ### Changed
888
+
889
+ - **Version Update**: Updated to version 1.9.15
890
+
891
+ ### Migration Notes
892
+
893
+ - This is a patch version update with bug fixes only
894
+ - No breaking changes from v1.9.14
895
+ - All fixes are backward compatible
896
+ - Compatible with Angular 17 and up versions
897
+
898
+ ## [1.9.14] - 2025-11-20
899
+
900
+ ### Fixed
901
+
902
+ - **Date Picker Selection Issue**: Fixed issue where date picker was not working properly when selecting dates, especially in range mode
903
+ - Added proper change detection scheduling when setting start date in range mode
904
+ - Added memo cache invalidation to ensure UI updates correctly reflect selected dates
905
+ - Fixed UI not updating when only start date is selected in range mode
906
+ - Dates now properly show as selected and calendar updates correctly in all selection modes
907
+ - **Moment.js Timezone Offset Preservation**: Fixed issue where Moment.js objects with timezone offsets (e.g., `moment().utcOffset('-0600')`) were not preserving the timezone offset when converted to Date objects
908
+ - Added `momentToDate()` method that detects and preserves timezone offsets from Moment.js objects
909
+ - Uses moment's `format('YYYY-MM-DDTHH:mm:ss.SSSZ')` to preserve offset information
910
+ - Now correctly handles `moment().utcOffset('-0600')` without requiring `toDate()` which loses timezone information
911
+ - Works for single dates, range values, and array of dates
912
+
913
+ ### Changed
914
+
915
+ - **Version Update**: Updated to version 1.9.14
916
+
917
+ ### Migration Notes
918
+
919
+ - This is a patch version update with bug fixes only
920
+ - No breaking changes from v1.9.13
921
+ - All fixes are backward compatible
922
+
923
+ ## [1.9.13] - 2025-11-19
924
+
925
+ ### Fixed
926
+
927
+ - **valueChange Event Bug**: Fixed issue where `(valueChange)` event was emitting `null` instead of the date value for range mode when using template-driven forms with `[(ngModel)]`
928
+ - Changed `emitValue` method to use `_normalizeValue()` instead of `_normalizeDate()` to properly handle range objects `{ start: Date, end: Date }`
929
+ - Now correctly emits date values for all modes (single, range, multiple)
930
+ - **Range Mode Date Selection**: Fixed issue where dates became disabled/unclickable after navigating to previous or next months in range mode
931
+ - Updated `changeMonth()` method to properly update month/year signals when navigating
932
+ - Fixed `onDateClick()` for all modes (single, range, multiple) to update signals when clicking dates in different months
933
+ - Fixed `onYearClick()`, `onYearSelectChange()`, and `onDecadeClick()` to update signals
934
+ - Ensures memoized `isDateDisabledMemo` function uses correct month/year values after navigation
935
+ - Dates in previous/next months are now properly selectable without needing to close and reopen the datepicker
936
+ - **Moment.js Object Handling**: Fixed issue where Moment.js objects in range values and arrays were not being properly normalized
937
+ - Enhanced `_normalizeValue()` method to explicitly detect and convert Moment.js objects in range objects (`{ start, end }`)
938
+ - Enhanced array value normalization to properly handle Moment.js objects in multiple date selections
939
+ - Ensures Moment.js objects are correctly converted to Date objects before emission in `valueChange` event
940
+
941
+ ### Changed
942
+
943
+ - **Version Update**: Updated to version 1.9.13
944
+
945
+ ### Migration Notes
946
+
947
+ - This is a patch version update with bug fixes only
948
+ - No breaking changes from v1.9.12
949
+ - All fixes are backward compatible
950
+
951
+ ## [1.9.12] - 2025-11-19
952
+
953
+ ### Added
954
+
955
+ - **SEO Optimization**: Comprehensive search engine optimization improvements
956
+ - Enhanced meta tags with expanded keywords, geo-location, and Apple mobile web app tags
957
+ - Complete Open Graph implementation for social media sharing (Facebook, LinkedIn)
958
+ - Enhanced Twitter Card metadata with additional labels and image alt text
959
+ - Multi-locale Open Graph support (en_US, es_ES, fr_FR, de_DE)
960
+ - Structured data (Schema.org) with SoftwareApplication, WebPage, and HowTo schemas
961
+ - robots.txt file with proper crawl directives and sitemap reference
962
+ - sitemap.xml with all important pages, priorities, and change frequencies
963
+ - SEO documentation guide (docs/SEO.md) with best practices and monitoring recommendations
964
+ - **Package Keywords Expansion**: Expanded npm package keywords from 14 to 38 keywords
965
+ - Added keywords for features (signal-forms, SSR, zoneless, accessibility)
966
+ - Added keywords for use cases (date-picker, time-picker, holiday-calendar)
967
+ - Added keywords for qualities (lightweight, customizable, open-source, MIT)
968
+ - Improved discoverability on npm and search engines
969
+ - **README SEO Enhancements**: Added downloads badge and expanded SEO keywords section
970
+ - More comprehensive keyword coverage for better search visibility
971
+ - Enhanced description with additional relevant terms
972
+
973
+ ### Changed
974
+
975
+ - **Version Update**: Updated to version 1.9.12
976
+ - **Multi-Calendar Spacing**: Increased gap between multiple calendars from 16px to 32px for better visual separation
977
+ - Applied to horizontal, vertical, and auto layouts
978
+ - Improved spacing consistency across all multi-calendar configurations
979
+ - **Multi-Calendar Container Sizing**: Enhanced container width handling for multi-calendar layouts
980
+ - Changed from fixed `width: 100%` to `width: fit-content` for better content fitting
981
+ - Increased max-width from 1200px to 1400px to accommodate more calendars
982
+ - Containers now properly expand to fit all calendars without overlapping
983
+ - **Demo App Select Inputs**: Enhanced styling for all select inputs in the demo application
984
+ - Custom dropdown arrow icons with theme-aware colors
985
+ - Improved hover and focus states with smooth transitions
986
+ - Better visual consistency with the overall design system
987
+ - Full dark theme support
988
+ - **Build Configuration**: Updated angular.json to include SEO files in build output
989
+ - robots.txt and sitemap.xml now properly copied to build root
990
+ - Files accessible at site root for search engine crawlers
991
+
992
+ ### Removed
993
+
994
+ - **Demo App Sections**: Removed "2 Calendars Side-by-Side" and "3 Calendars Side-by-Side" demo sections
995
+ - Cleaned up unused TypeScript variables (`multiCalendarRange2`, `multiCalendarSingle3`)
996
+
997
+ ### Fixed
998
+
999
+ - **Multi-Calendar Overlapping**: Fixed issue where multiple calendars would overlap when displayed side-by-side
1000
+ - Added proper `box-sizing: border-box` to calendar months
1001
+ - Reduced container padding for multi-calendar layouts to provide more space
1002
+ - Ensured containers expand to fit content with proper gap spacing
1003
+ - **Test Suite**: Fixed TypeScript compilation error in issue-33.spec.ts
1004
+ - Fixed undefined `dayNumbers` variable in test assertion
1005
+ - Added proper day number collection for debugging when test fails
1006
+ - Improved test error messages with actual day numbers found
1007
+
1008
+ ### Migration Notes
1009
+
1010
+ - This is a minor version update with backward compatibility
1011
+ - No breaking changes from v1.9.11
1012
+ - SEO improvements are automatic and require no code changes
1013
+ - See [MIGRATION.md](MIGRATION.md) for detailed migration guide
1014
+ - See docs/SEO.md for SEO best practices *(document removed in July 2026 cleanup)*
1015
+
1016
+ ## [1.9.11] - 2025-11-17
1017
+
1018
+ ### Fixed
1019
+
1020
+ - **Moment.js Integration with Custom Formats**: Fixed critical issue where Moment.js objects with custom date formats would not populate correctly
1021
+ - Added `isMomentObject()` helper method to safely detect Moment.js instances
1022
+ - Enhanced `_normalizeValue()` method to handle Moment.js objects directly by extracting native Date using `.toDate()`
1023
+ - Improved `parseCustomDateString()` method to use bracket notation for TypeScript compatibility with dynamic object properties
1024
+ - Added comprehensive support for format tokens: YYYY, YY, MM, M, DD, D, hh, h, HH, H, mm, m, ss, s, a, A
1025
+ - Resolves issue where `moment(this.date).utcOffset(timezone).format('MM/DD/YYYY hh:mm a')` with `displayFormat="MM/DD/YYYY hh:mm a"` would not populate correctly
1026
+ - Maintains full backward compatibility with Date objects, strings, and all other supported formats
1027
+
1028
+ ### Improved
1029
+
1030
+ - **Custom Format Parser**: Enhanced format token parsing with better TypeScript compatibility
1031
+ - **Moment.js Detection**: More robust detection of Moment.js objects across different versions
1032
+ - **Demo Application**: Added working Moment.js integration example with interactive controls
1033
+
1034
+ ## [1.9.10] - 2025-11-15
1035
+
1036
+ ### Changed
1037
+
1038
+ - **Version Update**: Updated to version 1.9.10
1039
+
1040
+ ### Fixed
1041
+
1042
+ - **Async Database Value Loading**: Enhanced datepicker to properly handle database values that load asynchronously after component initialization
1043
+ - Added fallback sync mechanism in `ngAfterViewInit` to catch async database loads
1044
+ - Added delayed sync checks in `ngOnInit`, `ngOnChanges`, and `ngAfterViewInit` to handle field value changes that occur after component initialization
1045
+ - Added sync on calendar open, focus events, and touch events to ensure values are populated
1046
+ - Extended interval sync duration to 30 seconds (from 10 seconds) with 100ms check intervals
1047
+ - Ensures datepicker properly displays database values even when they load after the component is rendered
1048
+ - **TypeScript Compilation Error**: Fixed `EffectRef` type error when using Angular 17+ `effect()` API
1049
+ - Changed `_fieldEffectDestroy: (() => void) | null` to `_fieldEffectRef: EffectRef | null`
1050
+ - Updated effect cleanup to use `effectRef.destroy()` instead of function call
1051
+ - Added proper `EffectRef` import from `@angular/core`
1052
+ - **Test Configuration**: Fixed test configuration for Angular 17+ compatibility
1053
+ - Updated karma configuration to work with `@angular/build:karma` builder
1054
+ - Simplified karma.conf.js to remove deprecated plugins
1055
+ - Updated test script to target correct project
1056
+
1057
+ ### Improved
1058
+
1059
+ - **Async Value Handling**: Improved handling of field values that change asynchronously
1060
+ - **Effect Management**: Proper effect lifecycle management with `EffectRef` for correct cleanup
1061
+ - **Code Cleanup**: Removed unnecessary comments for cleaner codebase
1062
+ - **Test Reliability**: Enhanced test configuration for better reliability across Angular versions
1063
+
1064
+ ## [1.9.9] - 2025-11-15
1065
+
1066
+ ### Changed
1067
+
1068
+ - **Version Update**: Updated to version 1.9.9
1069
+
1070
+ ### Fixed
1071
+
1072
+ - **Database Value Population**: Fixed critical issue where datepicker would not populate with values from database when using `[field]` input binding
1073
+ - Added `_normalizeValue()` helper method to properly handle all value types (Date objects, strings, range objects, arrays)
1074
+ - Updated field effect and related methods to use `_normalizeValue()` instead of `_normalizeDate()` which only handled single dates
1075
+ - Fixed issue where string dates from database (common scenario) were not being parsed and displayed correctly
1076
+ - Now properly handles Date objects, string dates, range objects `{start: Date, end: Date}`, and arrays of dates
1077
+
1078
+ ### Improved
1079
+
1080
+ - **Value Normalization**: Improved value normalization to handle all DatepickerValue types consistently
1081
+ - **Database Integration**: Enhanced compatibility with database values in various formats (strings, Date objects, etc.)
1082
+
1083
+ ## [1.9.8] - 2025-11-14
1084
+
1085
+ ### Changed
1086
+
1087
+ - **Version Update**: Updated to version 1.9.8
1088
+
1089
+ ### Fixed
1090
+
1091
+ - **Date Selection Reset Issue**: Fixed critical bug where selected dates would reset to today's date when using `[field]` input binding
1092
+ - Fixed `applyCurrentTime` to create a new Date object instead of mutating the original, preventing reference issues
1093
+ - Added `_isUpdatingFromInternal` flag to prevent field effect from resetting the value when updating internally
1094
+ - This ensures selected dates are properly stored in the form field instead of being reset to today
1095
+
1096
+ ### Improved
1097
+
1098
+ - **Date Mutation Prevention**: Improved date handling to prevent unintended mutations of date objects
1099
+ - **Field Update Stability**: Enhanced field binding stability to prevent value resets during internal updates
1100
+
1101
+ ## [1.9.7] - 2025-11-14
1102
+
1103
+ ### Changed
1104
+
1105
+ - **Version Update**: Updated to version 1.9.7
1106
+
1107
+ ### Fixed
1108
+
1109
+ - **Calendar Population**: Fixed critical issue where datepicker calendar would not populate with dates when opened, especially when multiple datepickers were present in the same form
1110
+ - **Calendar Generation**: Ensured `generateCalendar()` is called when opening the datepicker via click, touch, or programmatic methods
1111
+
1112
+ ### Improved
1113
+
1114
+ - **Calendar Initialization**: Improved calendar initialization to ensure dates are always generated before the calendar becomes visible
1115
+
1116
+ ## [1.9.6] - 2025-11-14
1117
+
1118
+ ### Changed
1119
+
1120
+ - **Version Update**: Updated to version 1.9.6
1121
+
1122
+ ### Fixed
1123
+
1124
+ - **Multiple Datepicker Management**: Fixed issue where multiple datepickers in the same form would open in the same centered location
1125
+ - **Outside Click Detection**: Improved click detection to properly close datepicker when clicking outside the popover and input field
1126
+ - **Auto-close Other Datepickers**: When opening a datepicker, all other open datepickers in the same form are now automatically closed
1127
+ - **Mobile Datepicker Opening**: Fixed issue where datepicker modal would not open on mobile screens
1128
+ - **Datepicker Closing on Mobile**: Fixed issue where datepicker would open and immediately disappear on mobile devices
1129
+ - **Select Box Cursor**: Added pointer cursor to all select boxes (month, year, hour, minute, AM/PM) in the datepicker
1130
+
1131
+ ### Improved
1132
+
1133
+ - **Document Click Handler**: Enhanced document click handler to check if clicks are inside the popover container, not just the input group
1134
+ - **Touch Event Handling**: Improved touch event handling to prevent premature closing on mobile devices
1135
+ - **Instance Management**: Added static instance registry to track all datepicker instances for better coordination
1136
+
1137
+ ## [1.9.5] - 2025-11-14
1138
+
1139
+ ### Changed
1140
+
1141
+ - **Version Update**: Updated to version 1.9.5
1142
+
1143
+ ### Fixed
1144
+
1145
+ - **Angular 21+ Signal Forms Type Compatibility**: Fixed TypeScript compilation error with Angular 21+ Signal Forms
1146
+ - Fixed `Type '() => string' is not assignable to type 'never'` error when using `[field]` input
1147
+ - Updated `SignalFormField` type definition to be compatible with Angular 21's `FieldTree<Date, string>` types
1148
+ - Maintains backward compatibility with Angular 17-20 where field input is optional
1149
+ - Resolves [#33](https://github.com/NGXSMK/ngxsmk-datepicker/issues/33)
1150
+
1151
+ ## [1.9.4] - 2025-11-14
1152
+
1153
+ ### Changed
1154
+
1155
+ - **Version Update**: Updated to version 1.9.4
1156
+
1157
+ ### Added
1158
+
1159
+ - **Custom Date Format**: New `[displayFormat]` input property to display dates in custom formats
1160
+ - Supports format strings like "MM/DD/YYYY hh:mm A"
1161
+ - Works with date adapters (date-fns, dayjs, luxon) or built-in simple formatter
1162
+ - Supports common format tokens: YYYY, MM, DD, hh, mm, A, etc.
1163
+ - Resolves [#31](https://github.com/NGXSMK/ngxsmk-datepicker/issues/31)
1164
+
1165
+ ### Fixed
1166
+
1167
+ - **Time Selection Dropdowns**: Fixed visibility issues with time selection dropdowns
1168
+ - Dropdowns now properly display and are not clipped by parent containers
1169
+ - Improved z-index handling for time selection dropdowns
1170
+ - Removed unnecessary scrollbars from datepicker wrapper
1171
+ - Fixed overflow and positioning issues in time selection context
1172
+ - Resolves [#32](https://github.com/NGXSMK/ngxsmk-datepicker/issues/32)
1173
+ - **Angular 21+ Signal Forms Type Compatibility**: Fixed TypeScript compilation error with Angular 21+ Signal Forms
1174
+ - Fixed `Type '() => string' is not assignable to type 'never'` error when using `[field]` input
1175
+ - Updated `SignalFormField` type definition to be compatible with Angular 21's `FieldTree<Date, string>` types
1176
+ - Maintains backward compatibility with Angular 17-20 where field input is optional
1177
+ - Resolves [#33](https://github.com/NGXSMK/ngxsmk-datepicker/issues/33)
1178
+
1179
+ ## [1.9.3] - 2025-11-13
1180
+
1181
+ ### Changed
1182
+
1183
+ - **Version Update**: Updated to version 1.9.3
1184
+
1185
+ ### Added
1186
+
1187
+ - **Time-Only Picker**: New `[timeOnly]` input property to display only time selection without calendar
1188
+ - Hides calendar grid and shows only time controls (hour, minute, AM/PM)
1189
+ - Automatically enables `showTime` when `timeOnly` is true
1190
+ - Perfect for time selection scenarios where date is not needed
1191
+ - Value is still a Date object using today's date with selected time
1192
+ - Placeholder automatically changes to "Select Time" in time-only mode
1193
+ - Resolves [#29](https://github.com/NGXSMK/ngxsmk-datepicker/issues/29)
1194
+ - **Modern Demo App UI**: Complete redesign of the demo application
1195
+ - Modern navbar with glassmorphism effects, search functionality, and improved theme toggle
1196
+ - Redesigned sidebar with gradient backgrounds, smooth animations, and visual indicators
1197
+ - Enhanced icon sizes and better visual hierarchy
1198
+ - Improved responsive design with better mobile experience
1199
+ - Automatic system theme detection (dark/light mode preference)
1200
+ - Gradient accents, shadows, and modern design patterns throughout
1201
+
1202
+ ### Fixed
1203
+
1204
+ - **Test Suite**: Fixed 25+ failing tests across multiple test files
1205
+ - **Date Utils Tests**: Fixed `normalizeDate` comparison to use `.toEqual()` instead of `.toBe()` and corrected invalid date handling
1206
+ - **Calendar Utils Tests**: Updated `generateMonthOptions` to include required year parameter, fixed `generateTimeOptions` to match new return type (object with `hourOptions`/`minuteOptions`), fixed `generateDecadeGrid` expectations, updated `processDateRanges` to match new return type (object instead of array)
1207
+ - **Timezone Utils Tests**: Updated `formatDateWithTimezone` calls to match new signature (locale, options, timezone)
1208
+ - **Edge Cases Tests**: Fixed `update12HourState` to check component properties instead of return value, changed `previewEndDate` to `hoveredDate`, fixed date validation and normalization expectations, corrected `applyCurrentTime` to use `currentDisplayHour` and `isPm`, fixed touch event mocks, added change detection for calendar toggle, corrected `isDateDisabled` null handling
1209
+ - **Adapters Tests**: Fixed date normalization expectations to match actual behavior
1210
+ - **Performance Utils Tests**: Changed array comparison to use `.toEqual()` instead of `.toBe()` for cached results
1211
+ - **RTL Tests**: Fixed RTL detection from locale and document direction by properly setting document direction in tests
1212
+ - **Touch Gestures Tests**: Fixed swipe handling by creating proper array-like TouchList mock that supports both `item()` and `[0]` indexing
1213
+ - **Calendar Views Tests**: Fixed time slider tests to initialize dates and sliders correctly, fixed timeline generation test to call `generateTimeline()` directly
1214
+ - **Recurring Dates Utils Tests**: Fixed pattern matching test to use correct date (Jan 6 is Monday, not Jan 8)
1215
+ - All 353 tests now pass successfully
1216
+
1217
+ ## [1.9.2] - 2025-11-12
1218
+
1219
+ ### Changed
1220
+
1221
+ - **Bundle Optimization**: Optimized bundle size with improved TypeScript compiler settings
1222
+ - Main bundle: ~127KB (source maps excluded from published package)
1223
+ - Enhanced tree-shaking with optimized imports and compiler options
1224
+ - Added `importsNotUsedAsValues: "remove"` for smaller output
1225
+ - Disabled `preserveConstEnums` for better inlining
1226
+ - **Build Process**:
1227
+ - Source maps automatically removed from production builds (saves ~127KB)
1228
+ - Improved build scripts with better error handling
1229
+ - Enhanced bundle analysis that excludes source maps
1230
+ - **Package Configuration**:
1231
+ - Fixed package.json exports to eliminate build warnings
1232
+ - Optimized `files` array to exclude unnecessary files
1233
+ - Updated exports field for better module resolution
1234
+ - **Test Configuration**:
1235
+ - Added Zone.js polyfills to library test configuration
1236
+ - Updated test commands to explicitly target library project
1237
+ - Improved test reliability across Angular versions
1238
+
1239
+ ### Fixed
1240
+
1241
+ - Test suite configuration - added missing Zone.js polyfills for library tests
1242
+ - Bundle analysis now correctly excludes source maps from size calculations
1243
+ - Build warnings from conflicting export conditions resolved
1244
+ - Source map removal script made more resilient for build environments
1245
+
1246
+ ## [1.9.1] - 2025-11-11
1247
+
1248
+ ### Fixed
1249
+
1250
+ - Minor bug fixes and improvements
1251
+
1252
+ ## [1.9.0] - 2025-11-10
1253
+
1254
+ ### Added
1255
+
1256
+ - Extension Points & Hooks system for customization
1257
+ - Enhanced keyboard shortcuts (Y, N, W keys)
1258
+ - Modern UI/UX with improved animations and responsiveness
1259
+ - API documentation with TypeDoc
1260
+ - Semantic release automation
1261
+ - Animation performance optimizations with GPU acceleration
1262
+ - Global search functionality in documentation
1263
+ - Mobile playground for responsive testing
1264
+
1265
+ ### Changed
1266
+
1267
+ - Optimized animations using `transform3d` for hardware acceleration
1268
+ - Reduced animation durations from 0.2s to 0.15s
1269
+ - Improved transition performance with specific property targeting
1270
+ - Updated documentation structure
1271
+ - Enhanced mobile responsiveness
1272
+
1273
+ ### Fixed
1274
+
1275
+ - Animation performance issues
1276
+ - Mobile responsive layout
1277
+ - Sidebar scrollbar styling
1278
+ - TypeScript warnings
1279
+
1280
+ ## [1.8.0] - 2025-11-09
1281
+
1282
+ ### Added
1283
+
1284
+ - Signal Forms support with `[field]` input for Angular 21+
1285
+ - SSR compatibility with platform checks
1286
+ - Zoneless support (works without Zone.js)
1287
+ - Immediate value initialization when `[value]` is set programmatically
1288
+ - Comprehensive documentation for Signals, Signal Forms, and SSR
1289
+ - GitHub Pages deployment automation
1290
+
1291
+ ### Changed
1292
+
1293
+ - Updated peer dependencies to support Angular 17-22 (`>=17.0.0 <24.0.0`)
1294
+ - Added `@angular/forms` as peer dependency
1295
+ - Made `zone.js` optional peer dependency
1296
+ - Enhanced `exports` field in package.json with proper types
1297
+ - Optimized imports for better tree-shaking
1298
+
1299
+ ### Fixed
1300
+
1301
+ - Issue #13: Programmatic value setting now works correctly
1302
+ - SSR compatibility: All browser APIs properly guarded
1303
+ - Value input setter now initializes immediately
1304
+
1305
+ ## [1.7.0] - Previous Release
1306
+
1307
+ _Previous changelog entries..._
1308
+
1309
+ ---
1310
+
1311
+ ## Types of Changes
1312
+
1313
+ - **Added** for new features
1314
+ - **Changed** for changes in existing functionality
1315
+ - **Deprecated** for soon-to-be removed features
1316
+ - **Removed** for now removed features
1317
+ - **Fixed** for any bug fixes
1318
+ - **Security** for vulnerability fixes