ngxsmk-datepicker 2.2.0 → 2.2.3

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 DELETED
@@ -1,1133 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- **Last updated:** February 25, 2026 · **Current stable:** v2.2.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
- ## [2.2.0] - 2026-02-25
11
-
12
- - **Enhanced Visibility**: Fixed text contrast in dropdown options for better accessibility, ensuring high-contrast labels for month and year selections.
13
- - **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.
14
- - **Example Applications**: Added React, Vue, and Vanilla JS implementation examples in the `/examples` directory.
15
-
16
- ### Fixed
17
-
18
- - **TypeScript Strictness Overhaul**: Comprehensive rewrite of library component typing to eliminate all `any` types. Ensure full compatibility with `exactOptionalPropertyTypes` strict configurations.
19
- - Corrected `classes` input type from `Record<string, unknown>` to the concrete `DatepickerClasses` interface explicitly allowing `| undefined = undefined` to support strict assignments.
20
- - Applied specific types everywhere (`Date[]` for timelineMonths, `{label, value: boolean}[]` for ampmOptions, explicit Event and TouchEvent payloads).
21
- - Adjusted Angular pseudo-event `keydown.enter` handlers expecting `KeyboardEvent` to use the base `Event` type for robust type safety.
22
- - **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.
23
- - **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"`.
24
- - **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.
25
-
26
- ### Changed
27
-
28
- - **Header Select Synchronization**: Migrated `CustomSelectComponent` and `CalendarHeaderComponent` to `ViewEncapsulation.None`. Consolidated all dropdown styles into `_header.scss` to enable seamless global layout control.
29
- - **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.
30
- - **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.
31
- - **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.
32
- - **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.
33
- - **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.
34
-
35
-
36
- ## [2.1.7] - 2026-02-23
37
-
38
- ### Added
39
-
40
- - **Google Calendar Integration**: Added full built-in support for syncing and displaying events from Google Calendar.
41
- - New input `enableGoogleCalendar` (boolean) to toggle the feature directly from the template.
42
- - New input `googleClientId` (string) to configure the Google OAuth Client ID.
43
- - New `GoogleCalendarService` responsible for GIS library loading and seamless authentication syncing.
44
- - Displays authenticated status natively within the calendar header popup.
45
- - Emits `googleSyncClick` for tracking user interactions.
46
-
47
- ### Fixed
48
-
49
- - **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.
50
-
51
- ## [2.1.6] - 2026-02-17
52
-
53
- ### Changed
54
-
55
- - **Version**: Bump to 2.1.6 (current stable release).
56
-
57
- ## [2.1.5] - 2026-02-17
58
-
59
- ### Added
60
-
61
- - **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`.
62
- - **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."
63
- - **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.
64
- - **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`.
65
-
66
- ### Changed
67
-
68
- - **Version**: Bump to 2.1.5 (stable release).
69
- - **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()`.
70
- - **Library refactors**: Calendar grid generation and input parsing/formatting logic extracted into `CalendarGenerationService` and `DatepickerParsingService` respectively.
71
- - **Demo styles**: New utility classes (e.g. `.link`, `.no-underline`, `.text-dim`, `.gap-xs`) and tip label layout tweak.
72
- - **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.
73
-
74
- ### Fixed
75
-
76
- - **Demo theme**: Fixed light/dark theme toggle not applying—demo now correctly reflects the active theme (header toggle and system preference).
77
-
78
- ## [2.1.4] - 2026-02-13
79
-
80
- ### Added
81
-
82
- - **Playground Enhancements**: Added new configuration options for `minDate`, `maxDate`, and `weekStart` to the interactive playground, allowing users to test boundary constraints and locale overrides.
83
- - **Improved Internationalization**: Added full translation support for new playground features across all 8 supported languages (English, German, Spanish, Swedish, Korean, Chinese, Japanese, and French).
84
-
85
- ### Fixed
86
-
87
- - **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.
88
- - **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.
89
-
90
- ## [2.1.3] - 2026-02-11
91
-
92
- ### Fixed
93
-
94
- - **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.
95
-
96
- ## [2.1.2] - 2026-02-11
97
-
98
- ### Fixed
99
-
100
- - **Mobile Experience**: Improved stability on mobile devices (specifically Samsung/Android/Edge).
101
- - Fixed an issue where the calendar would close prematurely during interactions due to portaling logic.
102
- - Added "ghost click" protection to the backdrop to prevent accidental closure right after opening.
103
- - Standardized containment checks to handle popovers appended to the document body.
104
- - **Circular Dependency**: Resolved `RuntimeError: NG0200: Circular dependency detected` when using `NgModel` or Reactive Forms.
105
- - Removed `NG_VALUE_ACCESSOR` from component providers to break the circular link with `NgControl`.
106
- - Implemented manual `valueAccessor` assignment in the constructor for safe interaction with Angular's form system.
107
- - **Dependency Cleanup**: Removed unused `forwardRef` and `NG_VALUE_ACCESSOR` imports to improve bundle size and build performance.
108
-
109
- ### Changed
110
-
111
- - **UI Refinement (Premium Aesthetic)**: Improved the overall visual appearance with a "border detox."
112
- - Reduced border thickness from 1.5px to 1px library-wide.
113
- - Softened border colors and added subtle ghost backgrounds for interactive elements.
114
- - Enhanced navigation buttons with a borderless-by-default look.
115
-
116
- ### Removed
117
-
118
- - **Range Duration Header**: Removed the "X Days" duration header from range selection mode to reduce visual clutter and simplify the UI.
119
-
120
-
121
- ## [2.1.1] - 2026-02-09
122
-
123
- ### Fixed
124
-
125
- - **Material Form Field Integration**: Improved `NgxsmkDatepickerComponent` to correctly notify `mat-form-field` of state changes.
126
- - Injected `NgControl` into the component to properly integrate with Angular's form system.
127
- - Added `stateChanges.next()` call in `emitValue` to ensure the form field reflects internal state changes (e.g., when selecting a date).
128
- - **Helper Function Enhancements**: Updated `provideMaterialFormFieldControl` with runtime warnings for missing or incorrect Material tokens.
129
-
130
- ## [2.1.0] - 2026-02-05
131
-
132
-
133
- ### Fixed
134
-
135
- - **Package Configuration**: Corrected TypeScript declaration paths in package.json
136
- - Updated `types` and `typings` fields to point to `types/ngxsmk-datepicker.d.ts` instead of non-existent `index.d.ts`
137
- - Simplified `exports` field to match v2.0.9 format, removing unnecessary module export configurations
138
- - Removed disallowed `esm2022` property from package.json
139
- - Ensures proper TypeScript module resolution in consuming applications
140
-
141
- ### Changed
142
-
143
- - **Package Distribution**: Streamlined package exports configuration for better compatibility
144
- - Aligned exports structure with stable v2.0.9 format
145
- - Removed redundant module resolution entries for cleaner package.json
146
-
147
- ### Important Notice
148
-
149
- ⚠️ **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.
150
-
151
- ## [2.0.11] - 2026-02-05 [BROKEN - UNPUBLISHED]
152
-
153
- **⚠️ This version has been unpublished from npm due to incorrect package configuration. Use v2.1.1 instead.**
154
-
155
- ### Fixed
156
-
157
- - **TypeScript Type Declarations**: Attempted to fix "Could not find a declaration file for module 'ngxsmk-datepicker'" error
158
- - Added proper `exports` field in package.json with correct type declaration path
159
- - Configured exports to point to `index.d.ts` for TypeScript module resolution
160
- - **Note**: This fix was incomplete and the version has been replaced by v2.1.1
161
-
162
- ## [2.0.10] - 2026-02-05 [BROKEN - UNPUBLISHED]
163
-
164
- **⚠️ This version has been unpublished from npm due to incorrect package configuration. Use v2.1.1 instead.**
165
-
166
- ### Fixed
167
-
168
- - **Infinite Recursion in Date Utilities**: Fixed `RangeError: Maximum call stack size exceeded` in `getEndOfDay()` function
169
- - Refactored recursive logic to use direct date manipulation
170
- - Replaced recursive `addMonths` calls with iterative approach
171
- - Improves performance and eliminates stack overflow risk
172
- - **Timezone Test Edge Cases**: Fixed date component preservation in timezone conversion tests
173
- - Updated timezone tests to use `Date.UTC()` for consistent cross-environment behavior
174
- - Ensures test reliability across different system timezones with non-integer offsets (UTC+5:30, etc.)
175
-
176
- ### Optimized
177
-
178
- - **Build and Release**: Removed unnecessary generated files from distribution
179
- - Cleaned up coverage reports and build artifacts
180
- - Streamlined demo app output
181
-
182
- ## [2.0.9] - 2026-01-31
183
-
184
- ### Optimized
185
-
186
- - **Stylesheet Architecture**: Comprehensive optimization of CSS assets
187
- - Replaced redundant mobile stylesheets with a unified "Responsive Overrides" system
188
- - Removed deprecated keyframes and duplicate selectors
189
- - Enhanced commenting standards with industrial/professional documentation style
190
- - Reduced CSS bundle size by eliminating unused styles
191
-
192
- ### Fixed
193
-
194
- - **Sticky Header Overlap**: Resolved critical z-index stacking issue where sticky headers would overlap the datepicker popup
195
- - Implemented aggressive z-index boost (`2147483647`) for the host component when active
196
- - Ensures datepicker always floats above application navigation bars and modal backdrops
197
- - **Mobile Dropup Positioning**: Fixed footer clipping issues on mobile devices
198
- - Time selection dropdowns now intelligently open upwards ("dropup") on screens < 992px
199
- - Prevents dropdown options from being cut off by the bottom of the viewport or sticky footers
200
- - Improved touch interactions for time selection on mobile
201
-
202
- ## [2.0.8] - 2026-01-31
203
-
204
- ### Added
205
-
206
- - **Ionic Integration**: Added automatic support for Ionic CSS variables
207
- - Datepicker now automatically inherits Ionic app theme colors (primary, background, text)
208
- - No additional configuration required for native look and feel in Ionic apps
209
- - Documented integration steps in README
210
-
211
- ### Optimized
212
-
213
- - **Change Detection**: Optimized internal change detection strategy
214
- - Removed redundant `ChangeDetectorRef` calls in favor of Signal-based updates
215
- - Improved compatibility with Zoneless Angular applications
216
- - Cleaner and more efficient state management
217
-
218
- ### Fixed
219
-
220
- - **Mobile Page Jump**: Fixed issue where selecting a date would cause the page to jump to the top on some mobile browsers (Firefox Android)
221
- - Added `{ preventScroll: true }` to focus restoration logic
222
- - **Dropdown Scrolling**: Fixed UX issue in month/year dropdowns
223
- - Dropdowns now automatically scroll to the currently selected option when opened
224
- - Improved mobile scrolling behavior within dropdowns by removing conflicting close logic
225
-
226
- ### Changed
227
-
228
- - **Version Update**: Updated to version 2.0.8
229
-
230
- ## [2.0.7] - 2026-01-26
231
-
232
- - **Version Update**: Updated to version 2.0.7
233
-
234
- ## [2.0.6] - 2026-01-15
235
-
236
- ### Enhanced
237
-
238
- - **Range Picker Reselection**: Improved comprehensive range reselection behavior
239
- - Clicking the start date when a complete range is selected now clears only the end date
240
- - 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
241
- - **NEW**: Clicking any date within the selected range now clears the end date and sets the clicked date as the new start date
242
- - Allows users to easily redefine date ranges from any point (start, end, or within the range)
243
- - Example scenarios:
244
- - Range: Jan 10 - Jan 20, Click Jan 10 → Result: Jan 10 (can select new end)
245
- - Range: Jan 10 - Jan 20, Click Jan 20 → Result: Jan 20 (can select new end)
246
- - Range: Jan 26 - Jan 30, Click Jan 27 → Result: Jan 27 (can select new end)
247
- - Improves usability by providing intuitive range adjustment from any direction
248
-
249
- ### Changed
250
-
251
- - **Code Cleanup**: Removed unnecessary inline comments from range selection logic for cleaner, more maintainable code
252
- - **Version Update**: Updated to version 2.0.6
253
-
254
- ## [2.0.5] - 2026-01-15
255
-
256
- ### Enhanced
257
-
258
- - **Range Picker Reselection**: Improved user experience when reselecting date ranges
259
- - Clicking the start date again after selecting a complete range now clears only the end date
260
- - Allows users to easily redefine the end date without clearing the entire selection
261
- - The start date remains selected, and users can immediately choose a new end date
262
- - Example: After selecting Jan 19 (start) → Jan 21 (end), clicking Jan 19 again keeps Jan 19 selected and clears Jan 21
263
- - Improves usability by reducing clicks needed to adjust date ranges
264
-
265
- ### Fixed
266
-
267
- - **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
268
- - The datepicker now properly emits a partial range value (`{ start: Date, end: null }`) when the end date is cleared
269
- - Parent components and form bindings now correctly reflect the cleared end date state
270
- - Resolves inconsistency between visual calendar state and bound values
271
-
272
- ### Patch Changes
273
-
274
- - **Version Update**: Updated to version 2.0.5
275
- - **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"`).
276
-
277
- ## [2.0.4] - 2026-01-14
278
-
279
- ### Patch Changes
280
-
281
- - **Version Update**: Updated to version 2.0.4
282
- - **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.
283
-
284
- ## [2.0.3] - 2026-01-14
285
-
286
- ### Patch Changes
287
-
288
- - **Version Update**: Updated to version 2.0.3
289
- - **Code Cleanup**: Removed unnecessary comments from `field-sync.service.ts` to improve code readability and maintainability.
290
- - **Bug Fixed**: Verified fixes for issues #136, #112, #84, and #71.
291
- - **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.
292
-
293
- ## [2.0.2] - 2026-01-14
294
-
295
- ### Patch Changes
296
-
297
- - **Version Update**: Updated to version 2.0.2
298
- - **Documentation**: Updated all documentation to reflect new version
299
-
300
- ## [2.0.1] - 2026-01-14
301
-
302
- ### Patch Changes
303
-
304
- - **Version Update**: Updated to version 2.0.1
305
- - **Bug Fixes**: Minor bug fixes and improvements
306
- - **Documentation**: Updated all documentation to reflect new version
307
-
308
- ## [2.0.0] - 2026-01-14
309
-
310
- ### Major Changes
311
-
312
- - **Version Update**: Updated to version 2.0.0
313
- - **Breaking Changes**:
314
- - Updated minimum Angular version requirement to 17.0.0
315
- - Improved Signal Forms integration
316
- - Enhanced timezone handling
317
- - **Documentation**: Updated all documentation to reflect new version
318
-
319
- ## [1.9.29] - 2026-01-13
320
-
321
- ### Added
322
-
323
- - **Angular Signal Forms Validation Support**: Full support for schema-based validation with Angular 21+ Signal Forms
324
- - Automatically detects and responds to validation errors from the field's `errors()` signal
325
- - Recognizes `required` validation from schema (e.g., `required(p.dateDue)`)
326
- - Updates component's `errorState` based on field's `invalid()` signal
327
- - Reactive updates when validation state changes
328
- - Resolves [#136](https://github.com/NGXSMK/ngxsmk-datepicker/issues/136) - "datepicker doesn't recognise 'required' attribute in schema"
329
- - **Validation Error Types**: Added `ValidationError` interface to support Angular Signal Forms error structure
330
- - **Error State Callback**: Added `onErrorStateChanged` callback to `FieldSyncCallbacks` for validation state tracking
331
- - **Comprehensive Documentation**: Added `docs/SIGNAL_FORMS_VALIDATION.md` with usage examples, API reference, and migration guide
332
- - **Test Coverage**: Added comprehensive test suite in `signal-forms-validation.spec.ts` for validation scenarios
333
- - **Input Attributes Support**: Added support for standard input attributes on the datepicker input element
334
- - `inputId`: Custom ID support (defaults to component unique ID)
335
- - `name`: Form name attribute support
336
- - `autocomplete`: Autocomplete attribute support (defaults to 'off')
337
- - `aria-invalid`: Accessibility support for invalid state visibility
338
- - **Keyboard Shortcuts Help Dialog**: Added a built-in help dialog for keyboard shortcuts, accessible via `?` or `Shift + /`.
339
- - **New Shortcut**: Added `?` keyboard shortcut to toggle the help dialog.
340
-
341
- ### Enhanced
342
-
343
- - **Field Sync Service**: Enhanced with new helper methods
344
- - `readFieldErrors()`: Reads validation errors from field's `errors` signal
345
- - `readRequiredState()`: Checks for required validation in errors or direct property (prioritizes schema validation)
346
- - `hasValidationErrors()`: Determines if field has any validation errors
347
- - **Backward Compatibility**: Maintains full compatibility with:
348
- - Direct `required` attribute: `<ngxsmk-datepicker required>`
349
- - Reactive Forms: `<ngxsmk-datepicker [formControl]="dateControl">`
350
- - Template-driven forms: `<ngxsmk-datepicker [(ngModel)]="date">`
351
- - Direct `required` property on field: `field.required = true`
352
-
353
- ### Fixed
354
-
355
- - **Header Layout**: Fixed CSS issue where the datepicker header width was not spanning the full container width, ensuring consistent layout across all screen sizes.
356
- - **Angular Signal Forms Schema Validation**: Fixed issue where `required` attribute from schema was not properly reflected on the input and form validation
357
- - **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.
358
- - **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.
359
- - **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.
360
- - **Field Sync Service**: Updated `readRequiredState` and `readDisabledState` to correctly process function-type fields (Signals).
361
-
362
- ### Changed
363
-
364
- - **Version Update**: Updated to version 1.9.29
365
-
366
- ## [1.9.27] - 2026-01-10
367
-
368
- ### Refactored
369
-
370
- - **Modern Control Flow**: Fully migrated all standalone components (`NgxsmkDatepickerComponent`, `CalendarHeaderComponent`, `CalendarMonthViewComponent`, `CalendarYearViewComponent`, `TimeSelectionComponent`, `CustomSelectComponent`) to modern Angular `@if` and `@for` block syntax.
371
- - **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.
372
-
373
- ### Fixed
374
-
375
- - **Module Resolution**: Resolved "Value could not be determined statically" error when importing standalone library components into traditional NgModules in some monorepo configurations.
376
- - **Build Process**: Fixed library compilation error (`TS6133`) caused by unused `CommonModule` after migration to modern control flow.
377
- - **Monorepo Compatibility**: Improved Angular core dependency resolution for example applications to prevent "duplicate symbol" and "exported symbol not found" errors during development.
378
-
379
- ### Maintenance
380
-
381
- - **Git**: Added `/examples` directory to `.gitignore` to prevent committing experimental test applications.
382
-
383
- ### Changed
384
-
385
- - **Version Update**: Updated to version 1.9.27
386
-
387
- ## [1.9.26] - 2026-01-09
388
-
389
- > ⚠️ **DO NOT USE**: This version contains broken styles. Please use v1.9.27 or v1.9.25 instead.
390
-
391
- ### Refactored
392
-
393
- - **Core Architecture**: Major refactoring of `NgxsmkDatepickerComponent` to address "God Component" issues
394
- - Split monolithic component into dedicated sub-components: `CalendarMonthViewComponent`, `CalendarYearViewComponent`
395
- - Integrated `CalendarHeaderComponent` and `TimeSelectionComponent` to handle specific functional areas
396
- - Removed 1000+ lines of inline template code, significantly improving maintainability and readability
397
- - Improved strict template type checking support
398
- - **No breaking changes** to the public API
399
-
400
- ### Fixed
401
-
402
- - **Ionic Integration**: Fixed issue where `ionic-integration.css` was not exported in the package bundle
403
- - Moved styles to allow correct exporting via package logic
404
- - Ensures `@import 'ngxsmk-datepicker/styles/ionic-integration.css'` works as documented
405
- - Resolves [#123](https://github.com/NGXSMK/ngxsmk-datepicker/issues/123)
406
-
407
- ### Fixed (Mobile UI)
408
-
409
- - **Mobile View Styles**: Enhanced mobile UI styles for both Angular and Ionic projects
410
- - Added proper positioning and animations for `bottom-sheet` and `fullscreen` mobile modes
411
- - Fixed missing styles in core `datepicker.css` that prevented `mobileModalStyle` from working correctly
412
- - Improved gesture handling and transition animations for mobile devices
413
-
414
- ### Changed
415
-
416
- - **Version Update**: Updated to version 1.9.26
417
-
418
- ## [1.9.25] - 2026-01-06
419
-
420
- ### Fixed
421
-
422
- - **IDE Support**: Fixed "This component requires inline template type-checking" error by including all source files in tsconfig
423
- - Ensures accurate template type checking in VS Code and other IDEs
424
- - **NPM Package**: Fixed issue where `README.md` was missing from the npm package
425
- - Updated build scripts to ensure `README.md` is correctly included in the distribution
426
- - Ensures proper documentation rendering on npmjs.com
427
-
428
- ### Changed
429
-
430
- - **Version Update**: Updated to version 1.9.25
431
-
432
- ## [1.9.23] - 2025-12-15
433
-
434
- ### Fixed
435
-
436
- - **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
437
- - Improved `updateFieldFromInternal()` method to always prefer `setValue()` and `updateValue()` methods over direct signal mutation
438
- - Added dev mode warnings when falling back to direct signal mutation, which may bypass dirty state tracking
439
- - Enhanced error handling to track which update method succeeded and provide better diagnostics
440
- - The datepicker now properly marks forms as dirty when using `[field]` binding with Angular 21+ Signal Forms
441
- - Added comprehensive test coverage for Signal Forms dirty state tracking
442
- - Updated documentation with detailed guidance on proper usage patterns and troubleshooting
443
- - Resolves [#112](https://github.com/NGXSMK/ngxsmk-datepicker/issues/112)
444
-
445
- - **CSS Variables Theming (Issue #84)**: Fixed issue where CSS variables theming was not working when variables were defined in the global `:root` selector
446
- - Enhanced CSS selector from `:root` to `:root, :root > body` for higher specificity
447
- - Added `!important` flags to inline styles to ensure they override existing styles
448
- - ThemeBuilderService now properly overrides global stylesheet variables
449
- - Updated documentation to explain the fix and provide guidance
450
- - Resolves [#84](https://github.com/NGXSMK/ngxsmk-datepicker/issues/84)
451
-
452
- ### Changed
453
-
454
- - **Version Update**: Updated to version 1.9.23
455
-
456
- ## [1.9.22] - 2025-12-14
457
-
458
- ### Fixed
459
-
460
- - **Form Control Value Initialization**: Fixed issue where datepicker was not properly updating the displayed month when initialized with form control values
461
- - Added `_updateMemoSignals()` call in `writeValue()` method to ensure month/year signals are properly updated
462
- - Added `scheduleChangeDetection()` to trigger UI updates when form control values are set
463
- - Ensures datepicker correctly displays the month from form control values instead of defaulting to current month
464
- - Resolves issue where demo app datepickers were showing December instead of the correct month from form control values
465
- - Fixes calendar month display when using Reactive Forms with initial values
466
-
467
- - **Locale Week Start Detection**: Fixed `getFirstDayOfWeek()` function to properly return 1 for en-GB locale
468
- - Added fallback logic for locales where `Intl.Locale.weekInfo` is not available (older browsers/environments)
469
- - Implemented locale-based mapping for common locales (en-GB, en-AU, en-NZ, and most European locales return 1 for Monday)
470
- - Now correctly returns Monday (1) for en-GB and other European locales
471
- - Maintains backward compatibility with en-US and other locales that use Sunday (0) as first day
472
- - All calendar utils tests now passing (19/19 tests)
473
-
474
- ### Changed
475
-
476
- - **Version Update**: Updated to version 1.9.22
477
-
478
- ## [1.9.21] - 2025-12-10
479
-
480
- ### Added
481
-
482
- - **Mobile-Specific Features**: Comprehensive mobile optimization and native integration
483
- - Native date picker integration with `useNativePicker` input for automatic native picker on mobile devices
484
- - Bottom sheet modal style with swipe-to-dismiss gesture support
485
- - Mobile-optimized time picker with enhanced touch interactions
486
- - Enhanced gesture support: double-tap on today to select, swipe up/down for year navigation
487
- - Haptic feedback support with `enableHapticFeedback` input (light, medium, heavy vibrations)
488
- - Mobile keyboard optimizations for better input experience
489
- - Mobile-specific animations and transitions
490
- - Auto-detection of mobile devices with `autoDetectMobile` input
491
- - Mobile modal styles: `bottom-sheet`, `center`, and `fullscreen` options
492
-
493
- - **Advanced Selection Modes**: Extended selection capabilities beyond single/range/multiple
494
- - Week selection mode: Select entire weeks with configurable week start day
495
- - Month selection mode: Select entire months with start/end dates
496
- - Quarter selection mode: Select quarters (Q1, Q2, Q3, Q4) with proper date ranges
497
- - Year selection mode: Select entire years with January 1st to December 31st ranges
498
- - All new modes work seamlessly with existing validation, constraints, and formatting
499
-
500
- - **Enhanced Time Selection**: Improved time picker functionality
501
- - Seconds selection with `showSeconds` input and `secondInterval` configuration
502
- - `currentSecond` property for programmatic second control
503
- - Infrastructure for time range selection (future enhancement)
504
-
505
- - **Code Refactoring**: Improved maintainability and performance
506
- - `CalendarGenerationService`: Extracted calendar generation logic for better separation of concerns
507
- - `DisplayFormattingService`: Centralized display formatting logic with support for all selection modes
508
- - `DateValidationService`: Extracted date validation logic for reusable validation across components
509
- - Reduced main component size and complexity
510
- - Improved code organization and testability
511
-
512
- - **Accessibility Enhancements**: Improved screen reader and keyboard navigation
513
- - Enhanced ARIA live region announcements with debouncing and queue management
514
- - Improved focus trap management with proper focus return on close
515
- - Better screen reader support for all new selection modes
516
- - High contrast mode styling improvements
517
-
518
- - **Performance Optimizations**: Infrastructure for better performance
519
- - Virtual scrolling infrastructure for year/decade views (ready for future implementation)
520
- - Lazy loading calendar months with intelligent caching (up to 24 months)
521
- - Calendar month cache with automatic size management
522
- - Preloading of adjacent months for smoother navigation
523
-
524
- - **Test Coverage**: Comprehensive test suite updates
525
- - New service tests: `CalendarGenerationService`, `DisplayFormattingService`, `DateValidationService`
526
- - Updated comprehensive component tests with new selection modes
527
- - Updated utility function tests for week/month/quarter/year helpers
528
- - Updated E2E tests for mobile features and new selection modes
529
- - All 414 tests passing with improved coverage
530
-
531
- ### Changed
532
-
533
- - **Version Update**: Updated to version 1.9.21
534
- - **Hooks Interface**: Extended hooks interface to support new selection modes (`week`, `month`, `quarter`, `year`)
535
- - **Type Definitions**: Updated `DatepickerValue` type to explicitly handle range mode with `[Date, Date | null]`
536
- - **Service Architecture**: Refactored component to use new services for better maintainability
537
-
538
- ### Fixed
539
-
540
- - **Angular 21 Signal Forms Integration (Issue #80)**: Fixed broken `[field]` input binding with Angular 21 Signal Forms
541
- - Improved signal detection in `readFieldValue()` to handle Angular 21's `FieldTree<Date, string>` structure
542
- - Enhanced effect setup to properly track Signal Forms dependencies when `field.value` is a function returning a signal
543
- - Fixed `updateFieldFromInternal()` to handle cases where `field.value` is a function that returns a writable signal
544
- - Now correctly handles Angular 21 Signal Forms where `field.value` is a function that returns the actual signal
545
- - Resolves [#80](https://github.com/NGXSMK/ngxsmk-datepicker/issues/80)
546
- - **Build Issues**: Fixed TypeScript compilation errors related to strict null checks
547
- - **Test Failures**: Fixed async timing issues in AriaLiveService tests
548
- - **Calendar Generation**: Fixed structural issues in calendar generation method
549
- - **Type Safety**: Improved type safety with explicit null checks and proper type definitions
550
-
551
- ### Migration Notes
552
-
553
- - This is a patch version update
554
- - No breaking changes from v1.9.20
555
- - All changes are backward compatible
556
- - Compatible with Angular 17-22
557
- - New features are opt-in and don't affect existing implementations
558
- - Mobile features automatically detect mobile devices but can be disabled with `autoDetectMobile="false"`
559
- - New selection modes extend existing `mode` input with additional options
560
-
561
- ## [1.9.20] - 2025-12-06
562
-
563
- ### Fixed
564
-
565
- - **Test Environment Compatibility (Issue #71)**: Fixed `TypeError: window.matchMedia is not a function` error in test environments (jsdom/Vitest)
566
- - Added try-catch block around `window.matchMedia` call in `applyAnimationConfig()` method
567
- - Component now gracefully handles missing `matchMedia` API in test environments
568
- - Prevents test failures when running with Vitest and jsdom
569
- - Added comprehensive test coverage for `matchMedia` compatibility scenarios
570
-
571
- ### Changed
572
-
573
- - **Version Update**: Updated to version 1.9.20
574
-
575
- ### Migration Notes
576
-
577
- - This is a patch version update
578
- - No breaking changes from v1.9.19
579
- - All changes are backward compatible
580
- - Compatible with Angular 17-22
581
- - Fixes test compatibility issues with Vitest and jsdom environments
582
-
583
- ## [1.9.19] - 2025-01-15
584
-
585
- ### Added
586
-
587
- - **Comprehensive Responsive Layout Redesign**: Complete redesign of demo project layout for all screen sizes
588
- - Redesigned navbar for all breakpoints (320px-374px, 375px-479px, 480px-599px, 600px-767px, 768px-1023px, 1024px+)
589
- - Enhanced sidebar navigation with mobile drawer, tablet collapsible, and desktop fixed layouts
590
- - Responsive hero section with adaptive typography and button layouts
591
- - Feature grid responsive design (1 column → 2 columns → 3 columns → 4 columns)
592
- - Optimized content sections with responsive padding, typography, and spacing
593
- - Improved example demo containers, code blocks, mobile preview containers, and result boxes
594
- - Better touch targets and visual hierarchy across all breakpoints
595
-
596
- ### Changed
597
-
598
- - **Version Update**: Updated to version 1.9.19
599
- - **Meta Tag Update**: Replaced deprecated `apple-mobile-web-app-capable` with `mobile-web-app-capable`
600
- - **Code Cleanup**: Removed unnecessary comments from SCSS files for cleaner codebase
601
-
602
- ### Migration Notes
603
-
604
- - This is a patch version update
605
- - No breaking changes from v1.9.18
606
- - All changes are backward compatible
607
- - Compatible with Angular 17-22
608
- - Demo project layout improvements are automatic and require no code changes
609
-
610
- ## [1.9.18] - 2025-11-22
611
-
612
- ### Fixed
613
-
614
- - **Mobile Touch Event Handling**: Improved touch listener attachment when calendar opens on mobile devices
615
- - Touch listeners now properly attach when calendar first opens, eliminating the need to navigate months first
616
- - Added retry mechanism with multiple attempts to ensure listeners are attached even on slower mobile devices
617
- - Improved timing with double `requestAnimationFrame` calls and multiple retry strategies
618
- - Enhanced mobile rendering timing to handle DOM delays
619
-
620
- ### Changed
621
-
622
- - **Version Update**: Updated to version 1.9.18
623
-
624
- ### Migration Notes
625
-
626
- - This is a patch version update
627
- - No breaking changes from v1.9.17
628
- - All changes are backward compatible
629
- - Compatible with Angular 17-22
630
- - Improved mobile experience with better touch event handling
631
-
632
- ## [1.9.17] - 2025-11-21
633
-
634
- ### Added
635
-
636
- - **Calendar Button Visibility Control**: Added `showCalendarButton` input property to show/hide the calendar icon button
637
- - Defaults to `true` for backward compatibility
638
- - When set to `false`, users can still open the calendar by clicking the input field
639
- - Useful for custom UI designs or when using `allowTyping` with custom calendar triggers
640
- - **Calendar Button Styling**: Added `calendarBtn` to `DatepickerClasses` for custom styling of the calendar button
641
-
642
- ### Changed
643
-
644
- - **Version Update**: Updated to version 1.9.17
645
- - **Type Compatibility**: Updated `SignalFormField` type to be fully compatible with Angular 21's `FieldTree<Date, string>` types
646
-
647
- ### Migration Notes
648
-
649
- - This is a patch version update
650
- - No breaking changes from v1.9.16
651
- - All changes are backward compatible
652
- - Compatible with Angular 17-22
653
- - The calendar button is visible by default (`showCalendarButton="true"`), existing behavior unchanged
654
-
655
- ## [1.9.16] - 2025-11-20
656
-
657
- ### Fixed
658
-
659
- - **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 }`
660
- - Added memo cache invalidation before calendar generation when clicking dates from previous/next months in range mode
661
- - Fixed issue where clicking dates from previous months would navigate but memoized functions would use stale month/year values
662
- - Now properly invalidates memo cache in single, range, and multiple modes when navigating to different months via date clicks
663
- - Users can now select dates from previous months in range mode without issues, allowing proper range selection across month boundaries
664
-
665
- ### Changed
666
-
667
- - **Version Update**: Updated to version 1.9.16
668
- - **Angular 21 Support**: Updated dependencies and peer dependencies to support Angular 21 (officially released)
669
- - Updated devDependencies to Angular 21.0.0
670
- - Updated peer dependencies to support Angular 17-22 (`>=17.0.0 <24.0.0`)
671
- - Full compatibility with Angular 21 including Signal Forms support
672
- - **Signal Forms**: Full support for Angular 21 Signal Forms with `[field]` input binding (experimental feature)
673
- - **Zoneless by Default**: Compatible with Angular 21 applications that don't include Zone.js by default
674
- - **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)
675
- - **Angular Aria Compatible**: Built-in ARIA support works alongside Angular Aria components (uses custom AriaLiveService for screen reader announcements)
676
-
677
- ### Migration Notes
678
-
679
- - This is a patch version update with bug fixes and Angular 21 support
680
- - No breaking changes from v1.9.15
681
- - All fixes are backward compatible
682
- - Compatible with Angular 17-22 (including officially released Angular 21)
683
-
684
- ## [1.9.15] - 2025-11-20
685
-
686
- ### Fixed
687
-
688
- - **Moment Object Binding with ngModel**: Fixed issue where Moment.js objects passed via `[(ngModel)]` were not binding correctly with the datepicker
689
- - Updated `writeValue()` method to normalize Moment.js objects before passing to `initializeValue()`
690
- - Ensures Moment.js objects (including those with `utcOffset()` applied) are properly converted to Date objects when binding with template-driven forms
691
- - Now correctly handles `moment(response.Date).utcOffset(timezone)` when setting via ngModel
692
- - **Date Clicks After Month Navigation**: Fixed issue where dates became unclickable after navigating backward or forward months
693
- - Updated `isDateDisabledMemo` getter to properly invalidate cached memoized function when month/year changes
694
- - Added month/year change detection to ensure disabled date cache is refreshed after navigation
695
- - Dates in previous/next months are now properly clickable without needing to close and reopen the datepicker
696
- - **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 }`
697
- - Added memo cache invalidation before calendar generation when clicking dates from previous/next months in range mode
698
- - Fixed issue where clicking dates from previous months would navigate but memoized functions would use stale month/year values
699
- - Now properly invalidates memo cache in single, range, and multiple modes when navigating to different months via date clicks
700
- - Users can now select dates from previous months in range mode without issues, allowing proper range selection across month boundaries
701
-
702
- ### Changed
703
-
704
- - **Version Update**: Updated to version 1.9.15
705
-
706
- ### Migration Notes
707
-
708
- - This is a patch version update with bug fixes only
709
- - No breaking changes from v1.9.14
710
- - All fixes are backward compatible
711
- - Compatible with Angular 17 and up versions
712
-
713
- ## [1.9.14] - 2025-11-20
714
-
715
- ### Fixed
716
-
717
- - **Date Picker Selection Issue**: Fixed issue where date picker was not working properly when selecting dates, especially in range mode
718
- - Added proper change detection scheduling when setting start date in range mode
719
- - Added memo cache invalidation to ensure UI updates correctly reflect selected dates
720
- - Fixed UI not updating when only start date is selected in range mode
721
- - Dates now properly show as selected and calendar updates correctly in all selection modes
722
- - **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
723
- - Added `momentToDate()` method that detects and preserves timezone offsets from Moment.js objects
724
- - Uses moment's `format('YYYY-MM-DDTHH:mm:ss.SSSZ')` to preserve offset information
725
- - Now correctly handles `moment().utcOffset('-0600')` without requiring `toDate()` which loses timezone information
726
- - Works for single dates, range values, and array of dates
727
-
728
- ### Changed
729
-
730
- - **Version Update**: Updated to version 1.9.14
731
-
732
- ### Migration Notes
733
-
734
- - This is a patch version update with bug fixes only
735
- - No breaking changes from v1.9.13
736
- - All fixes are backward compatible
737
-
738
- ## [1.9.13] - 2025-11-19
739
-
740
- ### Fixed
741
-
742
- - **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)]`
743
- - Changed `emitValue` method to use `_normalizeValue()` instead of `_normalizeDate()` to properly handle range objects `{ start: Date, end: Date }`
744
- - Now correctly emits date values for all modes (single, range, multiple)
745
- - **Range Mode Date Selection**: Fixed issue where dates became disabled/unclickable after navigating to previous or next months in range mode
746
- - Updated `changeMonth()` method to properly update month/year signals when navigating
747
- - Fixed `onDateClick()` for all modes (single, range, multiple) to update signals when clicking dates in different months
748
- - Fixed `onYearClick()`, `onYearSelectChange()`, and `onDecadeClick()` to update signals
749
- - Ensures memoized `isDateDisabledMemo` function uses correct month/year values after navigation
750
- - Dates in previous/next months are now properly selectable without needing to close and reopen the datepicker
751
- - **Moment.js Object Handling**: Fixed issue where Moment.js objects in range values and arrays were not being properly normalized
752
- - Enhanced `_normalizeValue()` method to explicitly detect and convert Moment.js objects in range objects (`{ start, end }`)
753
- - Enhanced array value normalization to properly handle Moment.js objects in multiple date selections
754
- - Ensures Moment.js objects are correctly converted to Date objects before emission in `valueChange` event
755
-
756
- ### Changed
757
-
758
- - **Version Update**: Updated to version 1.9.13
759
-
760
- ### Migration Notes
761
-
762
- - This is a patch version update with bug fixes only
763
- - No breaking changes from v1.9.12
764
- - All fixes are backward compatible
765
-
766
- ## [1.9.12] - 2025-11-19
767
-
768
- ### Added
769
-
770
- - **SEO Optimization**: Comprehensive search engine optimization improvements
771
- - Enhanced meta tags with expanded keywords, geo-location, and Apple mobile web app tags
772
- - Complete Open Graph implementation for social media sharing (Facebook, LinkedIn)
773
- - Enhanced Twitter Card metadata with additional labels and image alt text
774
- - Multi-locale Open Graph support (en_US, es_ES, fr_FR, de_DE)
775
- - Structured data (Schema.org) with SoftwareApplication, WebPage, and HowTo schemas
776
- - robots.txt file with proper crawl directives and sitemap reference
777
- - sitemap.xml with all important pages, priorities, and change frequencies
778
- - SEO documentation guide (docs/SEO.md) with best practices and monitoring recommendations
779
- - **Package Keywords Expansion**: Expanded npm package keywords from 14 to 38 keywords
780
- - Added keywords for features (signal-forms, SSR, zoneless, accessibility)
781
- - Added keywords for use cases (date-picker, time-picker, holiday-calendar)
782
- - Added keywords for qualities (lightweight, customizable, open-source, MIT)
783
- - Improved discoverability on npm and search engines
784
- - **README SEO Enhancements**: Added downloads badge and expanded SEO keywords section
785
- - More comprehensive keyword coverage for better search visibility
786
- - Enhanced description with additional relevant terms
787
-
788
- ### Changed
789
-
790
- - **Version Update**: Updated to version 1.9.12
791
- - **Multi-Calendar Spacing**: Increased gap between multiple calendars from 16px to 32px for better visual separation
792
- - Applied to horizontal, vertical, and auto layouts
793
- - Improved spacing consistency across all multi-calendar configurations
794
- - **Multi-Calendar Container Sizing**: Enhanced container width handling for multi-calendar layouts
795
- - Changed from fixed `width: 100%` to `width: fit-content` for better content fitting
796
- - Increased max-width from 1200px to 1400px to accommodate more calendars
797
- - Containers now properly expand to fit all calendars without overlapping
798
- - **Demo App Select Inputs**: Enhanced styling for all select inputs in the demo application
799
- - Custom dropdown arrow icons with theme-aware colors
800
- - Improved hover and focus states with smooth transitions
801
- - Better visual consistency with the overall design system
802
- - Full dark theme support
803
- - **Build Configuration**: Updated angular.json to include SEO files in build output
804
- - robots.txt and sitemap.xml now properly copied to build root
805
- - Files accessible at site root for search engine crawlers
806
-
807
- ### Removed
808
-
809
- - **Demo App Sections**: Removed "2 Calendars Side-by-Side" and "3 Calendars Side-by-Side" demo sections
810
- - Cleaned up unused TypeScript variables (`multiCalendarRange2`, `multiCalendarSingle3`)
811
-
812
- ### Fixed
813
-
814
- - **Multi-Calendar Overlapping**: Fixed issue where multiple calendars would overlap when displayed side-by-side
815
- - Added proper `box-sizing: border-box` to calendar months
816
- - Reduced container padding for multi-calendar layouts to provide more space
817
- - Ensured containers expand to fit content with proper gap spacing
818
- - **Test Suite**: Fixed TypeScript compilation error in issue-33.spec.ts
819
- - Fixed undefined `dayNumbers` variable in test assertion
820
- - Added proper day number collection for debugging when test fails
821
- - Improved test error messages with actual day numbers found
822
-
823
- ### Migration Notes
824
-
825
- - This is a minor version update with backward compatibility
826
- - No breaking changes from v1.9.11
827
- - SEO improvements are automatic and require no code changes
828
- - See [MIGRATION.md](MIGRATION.md) for detailed migration guide
829
- - See [docs/SEO.md](projects/ngxsmk-datepicker/docs/SEO.md) for SEO best practices
830
-
831
- ## [1.9.11] - 2025-11-17
832
-
833
- ### Fixed
834
-
835
- - **Moment.js Integration with Custom Formats**: Fixed critical issue where Moment.js objects with custom date formats would not populate correctly
836
- - Added `isMomentObject()` helper method to safely detect Moment.js instances
837
- - Enhanced `_normalizeValue()` method to handle Moment.js objects directly by extracting native Date using `.toDate()`
838
- - Improved `parseCustomDateString()` method to use bracket notation for TypeScript compatibility with dynamic object properties
839
- - Added comprehensive support for format tokens: YYYY, YY, MM, M, DD, D, hh, h, HH, H, mm, m, ss, s, a, A
840
- - 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
841
- - Maintains full backward compatibility with Date objects, strings, and all other supported formats
842
-
843
- ### Improved
844
-
845
- - **Custom Format Parser**: Enhanced format token parsing with better TypeScript compatibility
846
- - **Moment.js Detection**: More robust detection of Moment.js objects across different versions
847
- - **Demo Application**: Added working Moment.js integration example with interactive controls
848
-
849
- ## [1.9.10] - 2025-11-15
850
-
851
- ### Changed
852
-
853
- - **Version Update**: Updated to version 1.9.10
854
-
855
- ### Fixed
856
-
857
- - **Async Database Value Loading**: Enhanced datepicker to properly handle database values that load asynchronously after component initialization
858
- - Added fallback sync mechanism in `ngAfterViewInit` to catch async database loads
859
- - Added delayed sync checks in `ngOnInit`, `ngOnChanges`, and `ngAfterViewInit` to handle field value changes that occur after component initialization
860
- - Added sync on calendar open, focus events, and touch events to ensure values are populated
861
- - Extended interval sync duration to 30 seconds (from 10 seconds) with 100ms check intervals
862
- - Ensures datepicker properly displays database values even when they load after the component is rendered
863
- - **TypeScript Compilation Error**: Fixed `EffectRef` type error when using Angular 17+ `effect()` API
864
- - Changed `_fieldEffectDestroy: (() => void) | null` to `_fieldEffectRef: EffectRef | null`
865
- - Updated effect cleanup to use `effectRef.destroy()` instead of function call
866
- - Added proper `EffectRef` import from `@angular/core`
867
- - **Test Configuration**: Fixed test configuration for Angular 17+ compatibility
868
- - Updated karma configuration to work with `@angular/build:karma` builder
869
- - Simplified karma.conf.js to remove deprecated plugins
870
- - Updated test script to target correct project
871
-
872
- ### Improved
873
-
874
- - **Async Value Handling**: Improved handling of field values that change asynchronously
875
- - **Effect Management**: Proper effect lifecycle management with `EffectRef` for correct cleanup
876
- - **Code Cleanup**: Removed unnecessary comments for cleaner codebase
877
- - **Test Reliability**: Enhanced test configuration for better reliability across Angular versions
878
-
879
- ## [1.9.9] - 2025-11-15
880
-
881
- ### Changed
882
-
883
- - **Version Update**: Updated to version 1.9.9
884
-
885
- ### Fixed
886
-
887
- - **Database Value Population**: Fixed critical issue where datepicker would not populate with values from database when using `[field]` input binding
888
- - Added `_normalizeValue()` helper method to properly handle all value types (Date objects, strings, range objects, arrays)
889
- - Updated field effect and related methods to use `_normalizeValue()` instead of `_normalizeDate()` which only handled single dates
890
- - Fixed issue where string dates from database (common scenario) were not being parsed and displayed correctly
891
- - Now properly handles Date objects, string dates, range objects `{start: Date, end: Date}`, and arrays of dates
892
-
893
- ### Improved
894
-
895
- - **Value Normalization**: Improved value normalization to handle all DatepickerValue types consistently
896
- - **Database Integration**: Enhanced compatibility with database values in various formats (strings, Date objects, etc.)
897
-
898
- ## [1.9.8] - 2025-11-14
899
-
900
- ### Changed
901
-
902
- - **Version Update**: Updated to version 1.9.8
903
-
904
- ### Fixed
905
-
906
- - **Date Selection Reset Issue**: Fixed critical bug where selected dates would reset to today's date when using `[field]` input binding
907
- - Fixed `applyCurrentTime` to create a new Date object instead of mutating the original, preventing reference issues
908
- - Added `_isUpdatingFromInternal` flag to prevent field effect from resetting the value when updating internally
909
- - This ensures selected dates are properly stored in the form field instead of being reset to today
910
-
911
- ### Improved
912
-
913
- - **Date Mutation Prevention**: Improved date handling to prevent unintended mutations of date objects
914
- - **Field Update Stability**: Enhanced field binding stability to prevent value resets during internal updates
915
-
916
- ## [1.9.7] - 2025-11-14
917
-
918
- ### Changed
919
-
920
- - **Version Update**: Updated to version 1.9.7
921
-
922
- ### Fixed
923
-
924
- - **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
925
- - **Calendar Generation**: Ensured `generateCalendar()` is called when opening the datepicker via click, touch, or programmatic methods
926
-
927
- ### Improved
928
-
929
- - **Calendar Initialization**: Improved calendar initialization to ensure dates are always generated before the calendar becomes visible
930
-
931
- ## [1.9.6] - 2025-11-14
932
-
933
- ### Changed
934
-
935
- - **Version Update**: Updated to version 1.9.6
936
-
937
- ### Fixed
938
-
939
- - **Multiple Datepicker Management**: Fixed issue where multiple datepickers in the same form would open in the same centered location
940
- - **Outside Click Detection**: Improved click detection to properly close datepicker when clicking outside the popover and input field
941
- - **Auto-close Other Datepickers**: When opening a datepicker, all other open datepickers in the same form are now automatically closed
942
- - **Mobile Datepicker Opening**: Fixed issue where datepicker modal would not open on mobile screens
943
- - **Datepicker Closing on Mobile**: Fixed issue where datepicker would open and immediately disappear on mobile devices
944
- - **Select Box Cursor**: Added pointer cursor to all select boxes (month, year, hour, minute, AM/PM) in the datepicker
945
-
946
- ### Improved
947
-
948
- - **Document Click Handler**: Enhanced document click handler to check if clicks are inside the popover container, not just the input group
949
- - **Touch Event Handling**: Improved touch event handling to prevent premature closing on mobile devices
950
- - **Instance Management**: Added static instance registry to track all datepicker instances for better coordination
951
-
952
- ## [1.9.5] - 2025-11-14
953
-
954
- ### Changed
955
-
956
- - **Version Update**: Updated to version 1.9.5
957
-
958
- ### Fixed
959
-
960
- - **Angular 21+ Signal Forms Type Compatibility**: Fixed TypeScript compilation error with Angular 21+ Signal Forms
961
- - Fixed `Type '() => string' is not assignable to type 'never'` error when using `[field]` input
962
- - Updated `SignalFormField` type definition to be compatible with Angular 21's `FieldTree<Date, string>` types
963
- - Maintains backward compatibility with Angular 17-20 where field input is optional
964
- - Resolves [#33](https://github.com/NGXSMK/ngxsmk-datepicker/issues/33)
965
-
966
- ## [1.9.4] - 2025-11-14
967
-
968
- ### Changed
969
-
970
- - **Version Update**: Updated to version 1.9.4
971
-
972
- ### Added
973
-
974
- - **Custom Date Format**: New `[displayFormat]` input property to display dates in custom formats
975
- - Supports format strings like "MM/DD/YYYY hh:mm A"
976
- - Works with date adapters (date-fns, dayjs, luxon) or built-in simple formatter
977
- - Supports common format tokens: YYYY, MM, DD, hh, mm, A, etc.
978
- - Resolves [#31](https://github.com/NGXSMK/ngxsmk-datepicker/issues/31)
979
-
980
- ### Fixed
981
-
982
- - **Time Selection Dropdowns**: Fixed visibility issues with time selection dropdowns
983
- - Dropdowns now properly display and are not clipped by parent containers
984
- - Improved z-index handling for time selection dropdowns
985
- - Removed unnecessary scrollbars from datepicker wrapper
986
- - Fixed overflow and positioning issues in time selection context
987
- - Resolves [#32](https://github.com/NGXSMK/ngxsmk-datepicker/issues/32)
988
- - **Angular 21+ Signal Forms Type Compatibility**: Fixed TypeScript compilation error with Angular 21+ Signal Forms
989
- - Fixed `Type '() => string' is not assignable to type 'never'` error when using `[field]` input
990
- - Updated `SignalFormField` type definition to be compatible with Angular 21's `FieldTree<Date, string>` types
991
- - Maintains backward compatibility with Angular 17-20 where field input is optional
992
- - Resolves [#33](https://github.com/NGXSMK/ngxsmk-datepicker/issues/33)
993
-
994
- ## [1.9.3] - 2025-11-13
995
-
996
- ### Changed
997
-
998
- - **Version Update**: Updated to version 1.9.3
999
-
1000
- ### Added
1001
-
1002
- - **Time-Only Picker**: New `[timeOnly]` input property to display only time selection without calendar
1003
- - Hides calendar grid and shows only time controls (hour, minute, AM/PM)
1004
- - Automatically enables `showTime` when `timeOnly` is true
1005
- - Perfect for time selection scenarios where date is not needed
1006
- - Value is still a Date object using today's date with selected time
1007
- - Placeholder automatically changes to "Select Time" in time-only mode
1008
- - Resolves [#29](https://github.com/NGXSMK/ngxsmk-datepicker/issues/29)
1009
- - **Modern Demo App UI**: Complete redesign of the demo application
1010
- - Modern navbar with glassmorphism effects, search functionality, and improved theme toggle
1011
- - Redesigned sidebar with gradient backgrounds, smooth animations, and visual indicators
1012
- - Enhanced icon sizes and better visual hierarchy
1013
- - Improved responsive design with better mobile experience
1014
- - Automatic system theme detection (dark/light mode preference)
1015
- - Gradient accents, shadows, and modern design patterns throughout
1016
-
1017
- ### Fixed
1018
-
1019
- - **Test Suite**: Fixed 25+ failing tests across multiple test files
1020
- - **Date Utils Tests**: Fixed `normalizeDate` comparison to use `.toEqual()` instead of `.toBe()` and corrected invalid date handling
1021
- - **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)
1022
- - **Timezone Utils Tests**: Updated `formatDateWithTimezone` calls to match new signature (locale, options, timezone)
1023
- - **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
1024
- - **Adapters Tests**: Fixed date normalization expectations to match actual behavior
1025
- - **Performance Utils Tests**: Changed array comparison to use `.toEqual()` instead of `.toBe()` for cached results
1026
- - **RTL Tests**: Fixed RTL detection from locale and document direction by properly setting document direction in tests
1027
- - **Touch Gestures Tests**: Fixed swipe handling by creating proper array-like TouchList mock that supports both `item()` and `[0]` indexing
1028
- - **Calendar Views Tests**: Fixed time slider tests to initialize dates and sliders correctly, fixed timeline generation test to call `generateTimeline()` directly
1029
- - **Recurring Dates Utils Tests**: Fixed pattern matching test to use correct date (Jan 6 is Monday, not Jan 8)
1030
- - All 353 tests now pass successfully
1031
-
1032
- ## [1.9.2] - 2025-11-12
1033
-
1034
- ### Changed
1035
-
1036
- - **Bundle Optimization**: Optimized bundle size with improved TypeScript compiler settings
1037
- - Main bundle: ~127KB (source maps excluded from published package)
1038
- - Enhanced tree-shaking with optimized imports and compiler options
1039
- - Added `importsNotUsedAsValues: "remove"` for smaller output
1040
- - Disabled `preserveConstEnums` for better inlining
1041
- - **Build Process**:
1042
- - Source maps automatically removed from production builds (saves ~127KB)
1043
- - Improved build scripts with better error handling
1044
- - Enhanced bundle analysis that excludes source maps
1045
- - **Package Configuration**:
1046
- - Fixed package.json exports to eliminate build warnings
1047
- - Optimized `files` array to exclude unnecessary files
1048
- - Updated exports field for better module resolution
1049
- - **Test Configuration**:
1050
- - Added Zone.js polyfills to library test configuration
1051
- - Updated test commands to explicitly target library project
1052
- - Improved test reliability across Angular versions
1053
-
1054
- ### Fixed
1055
-
1056
- - Test suite configuration - added missing Zone.js polyfills for library tests
1057
- - Bundle analysis now correctly excludes source maps from size calculations
1058
- - Build warnings from conflicting export conditions resolved
1059
- - Source map removal script made more resilient for build environments
1060
-
1061
- ## [1.9.1] - 2025-11-11
1062
-
1063
- ### Fixed
1064
-
1065
- - Minor bug fixes and improvements
1066
-
1067
- ## [1.9.0] - 2025-11-10
1068
-
1069
- ### Added
1070
-
1071
- - Extension Points & Hooks system for customization
1072
- - Enhanced keyboard shortcuts (Y, N, W keys)
1073
- - Modern UI/UX with improved animations and responsiveness
1074
- - API documentation with TypeDoc
1075
- - Semantic release automation
1076
- - Animation performance optimizations with GPU acceleration
1077
- - Global search functionality in documentation
1078
- - Mobile playground for responsive testing
1079
-
1080
- ### Changed
1081
-
1082
- - Optimized animations using `transform3d` for hardware acceleration
1083
- - Reduced animation durations from 0.2s to 0.15s
1084
- - Improved transition performance with specific property targeting
1085
- - Updated documentation structure
1086
- - Enhanced mobile responsiveness
1087
-
1088
- ### Fixed
1089
-
1090
- - Animation performance issues
1091
- - Mobile responsive layout
1092
- - Sidebar scrollbar styling
1093
- - TypeScript warnings
1094
-
1095
- ## [1.8.0] - 2025-11-09
1096
-
1097
- ### Added
1098
-
1099
- - Signal Forms support with `[field]` input for Angular 21+
1100
- - SSR compatibility with platform checks
1101
- - Zoneless support (works without Zone.js)
1102
- - Immediate value initialization when `[value]` is set programmatically
1103
- - Comprehensive documentation for Signals, Signal Forms, and SSR
1104
- - GitHub Pages deployment automation
1105
-
1106
- ### Changed
1107
-
1108
- - Updated peer dependencies to support Angular 17-22 (`>=17.0.0 <24.0.0`)
1109
- - Added `@angular/forms` as peer dependency
1110
- - Made `zone.js` optional peer dependency
1111
- - Enhanced `exports` field in package.json with proper types
1112
- - Optimized imports for better tree-shaking
1113
-
1114
- ### Fixed
1115
-
1116
- - Issue #13: Programmatic value setting now works correctly
1117
- - SSR compatibility: All browser APIs properly guarded
1118
- - Value input setter now initializes immediately
1119
-
1120
- ## [1.7.0] - Previous Release
1121
-
1122
- _Previous changelog entries..._
1123
-
1124
- ---
1125
-
1126
- ## Types of Changes
1127
-
1128
- - **Added** for new features
1129
- - **Changed** for changes in existing functionality
1130
- - **Deprecated** for soon-to-be removed features
1131
- - **Removed** for now removed features
1132
- - **Fixed** for any bug fixes
1133
- - **Security** for vulnerability fixes