ngxsmk-datepicker 2.2.11 → 2.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -6
- package/docs/API.md +1 -1
- package/docs/COMPATIBILITY.md +21 -7
- package/docs/FEATURE_SCOPING.md +60 -0
- package/docs/INTEGRATION.md +1 -1
- package/docs/IONIC_INTEGRATION.md +1 -1
- package/docs/IONIC_TESTING.md +1 -1
- package/docs/LOCALE-GUIDE.md +1 -1
- package/docs/PLUGIN-ARCHITECTURE.md +1 -1
- package/docs/REFACTOR_PLAN.md +38 -0
- package/docs/SEO.md +1 -1
- package/docs/SSR-EXAMPLE.md +1 -1
- package/docs/THEME-TOKENS.md +1 -1
- package/docs/TIMEZONE.md +1 -1
- package/docs/extension-points.md +1 -1
- package/docs/signal-forms.md +1 -1
- package/docs/signals.md +1 -1
- package/docs/ssr.md +1 -1
- package/package.json +92 -95
- package/fesm2022/ngxsmk-datepicker.mjs +0 -14210
- package/types/ngxsmk-datepicker.d.ts +0 -2432
package/README.md
CHANGED
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
28
|
-
**Last updated:**
|
|
28
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
29
29
|
|
|
30
30
|
### **Overview**
|
|
31
31
|
|
|
32
32
|
**ngxsmk-datepicker** is a high-performance, enterprise-ready date and range picker engineered for the modern Angular ecosystem (v17+). Built from the ground up with **Angular Signals**, it delivers a seamless, zoneless-ready experience for both desktop and mobile (Ionic) applications.
|
|
33
33
|
|
|
34
|
-
> **Stable Release**: `v2.2.
|
|
34
|
+
> **Stable Release**: `v2.2.12` restores correct **npm** artifacts (compiled `fesm2022/` and types), adds range-mode **`allowSameDay`** for single-day selections, and continues to ship **IANA timezone** support, validation fixes, and strict TypeScript improvements from the v2.2.x line.
|
|
35
35
|
>
|
|
36
|
-
> ⚠️ **Important**: Versions 2.0.10 and 2.0.11 are broken and have been unpublished. Please use v2.2.
|
|
36
|
+
> ⚠️ **Important**: Versions 2.0.10 and 2.0.11 are broken and have been unpublished. Please use v2.2.12 or later.
|
|
37
37
|
|
|
38
38
|
---
|
|
39
39
|
|
|
@@ -591,7 +591,7 @@ The `locale` input controls all internationalization. It automatically formats m
|
|
|
591
591
|
|
|
592
592
|
### **Global Language Support**
|
|
593
593
|
|
|
594
|
-
ngxsmk-datepicker v2.2.
|
|
594
|
+
ngxsmk-datepicker v2.2.12 now features **full localization synchronization** for:
|
|
595
595
|
|
|
596
596
|
- 🇺🇸 English (`en`)
|
|
597
597
|
- 🇩🇪 German (`de`)
|
|
@@ -850,9 +850,9 @@ We welcome and appreciate contributions from the community! Whether it's reporti
|
|
|
850
850
|
|
|
851
851
|
For a full list of changes, please refer to the [CHANGELOG.md](https://github.com/NGXSMK/ngxsmk-datepicker/blob/main/CHANGELOG.md) file.
|
|
852
852
|
|
|
853
|
-
### **v2.2.
|
|
853
|
+
### **v2.2.12** (Current Stable)
|
|
854
854
|
|
|
855
|
-
- 🎉 **Version Update**: Updated to version 2.2.
|
|
855
|
+
- 🎉 **Version Update**: Updated to version 2.2.12.
|
|
856
856
|
- 📦 **npm**: Published tarballs again include `fesm2022/` and TypeScript declarations (release pipeline runs `ng build` before publish).
|
|
857
857
|
- 📅 **Range mode**: Optional `allowSameDay` for single-day ranges (double-click same date or close popover after one day).
|
|
858
858
|
- ✅ **Prior fixes**: IANA timezone “Today”, `minDate` normalization, strict typings, and UI polish from v2.2.6 remain included.
|
|
@@ -905,6 +905,7 @@ This library is optimized for search engine visibility, especially for European
|
|
|
905
905
|
- 📧 Email: [sachindilshan040@gmail.com](mailto:sachindilshan040@gmail.com)
|
|
906
906
|
- 🐙 GitHub: [@toozuuu](https://github.com/toozuuu)
|
|
907
907
|
- 📦 NPM: [ngxsmk-datepicker](https://www.npmjs.com/package/ngxsmk-datepicker)
|
|
908
|
+
- 🌐 Website: [sachindilshan.com](https://www.sachindilshan.com/)
|
|
908
909
|
- 💼 LinkedIn: [sachindilshan](https://www.linkedin.com/in/sachindilshan/)
|
|
909
910
|
|
|
910
911
|
## **⭐ Support**
|
package/docs/API.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This document describes the stable public API of ngxsmk-datepicker with comprehensive real-world examples. APIs marked as **stable** are guaranteed to remain backward-compatible within the same major version. APIs marked as **experimental** may change in future releases.
|
|
4
4
|
|
|
5
|
-
**Version**: 2.2.
|
|
5
|
+
**Version**: 2.2.12+ | **Last updated**: March 21, 2026
|
|
6
6
|
|
|
7
7
|
## Stable vs experimental
|
|
8
8
|
|
package/docs/COMPATIBILITY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Version Compatibility Matrix
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
This document provides comprehensive compatibility information for `ngxsmk-datepicker` across different Angular versions, Zone.js configurations, and SSR/CSR setups.
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ This document provides comprehensive compatibility information for `ngxsmk-datep
|
|
|
14
14
|
| **Angular 18** | ✅ Fully Supported | ✅ All | ✅ Signals, Computed, Effects | ❌ Not Available | ✅ Full | Enhanced signal support |
|
|
15
15
|
| **Angular 19** | ✅ Fully Supported | ✅ All | ✅ Signals, Computed, Effects | ❌ Not Available | ✅ Full | Optimized performance |
|
|
16
16
|
| **Angular 20** | ✅ Fully Supported | ✅ All | ✅ Signals, Computed, Effects | ❌ Not Available | ✅ Full | Fully supported |
|
|
17
|
-
| **Angular 21** | ✅ Fully Supported | ✅ All | ✅ Signals, Computed, Effects | ✅ Signal Forms `[field]` | ✅ Full | **Officially released - Current development target**<br/>✅ Signal Forms (experimental)<br/>✅ Zoneless by default<br/>✅ Vitest
|
|
17
|
+
| **Angular 21** | ✅ Fully Supported | ✅ All | ✅ Signals, Computed, Effects | ✅ Signal Forms `[field]` | ✅ Full | **Officially released - Current development target**<br/>✅ Signal Forms (experimental)<br/>✅ Zoneless by default<br/>✅ Compatible with Vitest-based apps<br/>✅ Angular Aria compatible |
|
|
18
18
|
| **Angular 22+** | 🔄 Future Support | ✅ All | ✅ Signals, Computed, Effects | ✅ Signal Forms `[field]` | ✅ Full | Peer dependency: `<24.0.0` |
|
|
19
19
|
|
|
20
20
|
### Feature Availability by Angular Version
|
|
@@ -50,7 +50,7 @@ This document provides comprehensive compatibility information for `ngxsmk-datep
|
|
|
50
50
|
|
|
51
51
|
#### Angular 21 New Features Compatibility
|
|
52
52
|
- ✅ **Zoneless by Default**: Fully compatible with Angular 21 apps that don't include Zone.js
|
|
53
|
-
- ✅ **Vitest Test Runner**: Library works in apps using Vitest
|
|
53
|
+
- ✅ **Vitest Test Runner**: Library works in apps using Vitest-based setups
|
|
54
54
|
- ✅ **Angular Aria**: Compatible with Angular Aria components; uses custom ARIA implementation for screen reader support
|
|
55
55
|
|
|
56
56
|
### Peer Dependencies
|
|
@@ -364,7 +364,7 @@ The component is tested against:
|
|
|
364
364
|
- ✅ With and without Zone.js
|
|
365
365
|
- ✅ SSR and CSR modes
|
|
366
366
|
- ✅ Various browser environments
|
|
367
|
-
- ✅ **Vitest Compatible**: Works in Angular 21 applications using Vitest
|
|
367
|
+
- ✅ **Vitest Compatible**: Works in Angular 21 applications using Vitest-based test setups
|
|
368
368
|
- Library tests use Karma/Jasmine, but the library itself is fully compatible with Vitest-based apps
|
|
369
369
|
- No changes needed when using Vitest in your Angular 21 application
|
|
370
370
|
|
|
@@ -383,7 +383,7 @@ The component is tested against:
|
|
|
383
383
|
- ✅ **No Changes Needed**: Existing code works without modification
|
|
384
384
|
|
|
385
385
|
### Vitest Test Runner
|
|
386
|
-
- ✅ **Compatible**: Library works in apps using Vitest
|
|
386
|
+
- ✅ **Compatible**: Library works in apps using Vitest-based setups
|
|
387
387
|
- ✅ **No Migration Required**: Use the library as-is in Vitest-based projects
|
|
388
388
|
- ✅ **Test Suite**: Library tests use Karma/Jasmine but library is Vitest-compatible
|
|
389
389
|
|
|
@@ -399,10 +399,8 @@ The component is tested against:
|
|
|
399
399
|
- [Angular SSR Guide](https://angular.dev/guide/ssr)
|
|
400
400
|
- [Zoneless Angular Guide](https://angular.dev/guide/zoneless)
|
|
401
401
|
- [Signal Forms Documentation](https://angular.dev/guide/forms/signal-forms)
|
|
402
|
-
- [Angular Aria Documentation](https://angular.dev/guide/accessibility/angular-aria)
|
|
403
402
|
- [Vitest Documentation](https://vitest.dev/)
|
|
404
403
|
- [Angular Aria Documentation](https://angular.dev/guide/accessibility/angular-aria)
|
|
405
|
-
- [Vitest Documentation](https://vitest.dev/)
|
|
406
404
|
|
|
407
405
|
## 🔍 Version Detection
|
|
408
406
|
|
|
@@ -440,4 +438,20 @@ npm list @angular/core @angular/common @angular/forms
|
|
|
440
438
|
### Issue: Translations not working in SSR
|
|
441
439
|
**Solution**: Translations work in SSR. Ensure locale is explicitly set if auto-detection fails on server.
|
|
442
440
|
|
|
441
|
+
## CI and Angular peer matrix (maintainers)
|
|
442
|
+
|
|
443
|
+
Recommended validation before tagging a release:
|
|
444
|
+
|
|
445
|
+
| Step | Command | Notes |
|
|
446
|
+
|------|---------|--------|
|
|
447
|
+
| Library build | `npx ng build ngxsmk-datepicker --configuration production` | Ensures `dist/ngxsmk-datepicker` artifacts |
|
|
448
|
+
| Unit tests | `npm run test:coverage` | Karma/Jasmine for `ngxsmk-datepicker` project |
|
|
449
|
+
| Demo build | `npx ng build demo-app --configuration production` | Catches app integration issues |
|
|
450
|
+
| Lint | `npm run lint` | ESLint across workspace |
|
|
451
|
+
| E2E (optional CI) | `npm run e2e` with `BASE_URL` pointing at served demo | Playwright; set `CI=1` and start demo separately in pipelines |
|
|
452
|
+
|
|
453
|
+
**Angular minors**: Keep `@angular/*` on the same minor within the workspace (`package.json`). Bump peers in library `projects/ngxsmk-datepicker/package.json` when raising supported ceiling; update this doc’s matrix table and peer JSON block together.
|
|
454
|
+
|
|
455
|
+
**Ionic/Capacitor sample**: The `examples/ionic-test-app` project may require `npm install --legacy-peer-deps` when Ionic’s peers lag Angular—see [examples/ionic-test-app/README.md](../../../examples/ionic-test-app/README.md).
|
|
456
|
+
|
|
443
457
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Feature scoping: Enhanced Localization & Enhanced Time Selection
|
|
2
|
+
|
|
3
|
+
**Last updated:** May 2, 2026 · Aligns with [ROADMAP.md](../../../ROADMAP.md) (Current Focus).
|
|
4
|
+
|
|
5
|
+
This document defines **concrete inputs and behaviors** for roadmap items *Enhanced Localization* and *Enhanced Time Selection* so implementations can proceed without API ambiguity. Until shipped, treat these as **design proposals**; minor renames may occur in minor releases with changelog notes.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Enhanced Localization
|
|
10
|
+
|
|
11
|
+
### Existing building blocks
|
|
12
|
+
|
|
13
|
+
- `@Input() locale: string` — BCP 47 locale tag.
|
|
14
|
+
- `@Input() displayFormat` / `dateFormatPattern` — custom format strings (see README).
|
|
15
|
+
- `@Input() weekStart` — override first day of week.
|
|
16
|
+
- `@Input() rtl` — explicit RTL override.
|
|
17
|
+
|
|
18
|
+
### Proposed additions (backlog)
|
|
19
|
+
|
|
20
|
+
| Input | Type | Purpose |
|
|
21
|
+
|-------|------|---------|
|
|
22
|
+
| `numberingSystem` | `'latn' \| 'arab' \| 'arabext' \| ... \| undefined` | Pass-through to `Intl` / formatting where supported; `undefined` = locale default. |
|
|
23
|
+
| `calendarPreference` | `'gregory' \| 'iso8601' \| undefined` | Opt-in calendar system for display (browser capability dependent). |
|
|
24
|
+
| `currencyDisplayForAddons` | `'symbol' \| 'narrowSymbol' \| 'code'` | If future price/booking templates show currency beside dates. |
|
|
25
|
+
|
|
26
|
+
### Non-input work
|
|
27
|
+
|
|
28
|
+
- Expand **preset format tokens** documentation table (mirror Angular `DatePipe` where aligned).
|
|
29
|
+
- Optional **`Intl.NumberFormat`** wrapper for footer chips / custom templates.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Enhanced Time Selection
|
|
34
|
+
|
|
35
|
+
### Existing building blocks
|
|
36
|
+
|
|
37
|
+
- `@Input() showTime`, `showSeconds`, `use24Hour`, `minuteInterval`, `secondInterval`
|
|
38
|
+
- `@Input() timezone` — IANA zone for “today” and conversions ([timezone.utils](../src/lib/utils/timezone.utils.ts))
|
|
39
|
+
- `@Input() timeRangeMode` — paired times in range mode
|
|
40
|
+
- `@Input() mobileTimePickerStyle`
|
|
41
|
+
|
|
42
|
+
### Proposed additions (backlog)
|
|
43
|
+
|
|
44
|
+
| Input | Type | Purpose |
|
|
45
|
+
|-------|------|---------|
|
|
46
|
+
| `timeZoneDisplay` | `'short' \| 'long' \| 'shortOffset' \| 'longOffset'` | How zone appears next to time when `timezone` is set (Intl-dependent). |
|
|
47
|
+
| `showTimezoneSelector` | `boolean` | Future: opt-in UI to pick among a bounded list of zones (requires design). |
|
|
48
|
+
| `timeStepRounding` | `'floor' \| 'ceil' \| 'nearest'` | When snapping typed times to `minuteInterval`. |
|
|
49
|
+
|
|
50
|
+
### Behaviors to clarify in docs
|
|
51
|
+
|
|
52
|
+
- **Range + time**: document ordering of date vs. time commit when `showTime` is true (single source of truth in component today).
|
|
53
|
+
- **DST transitions**: document that normalization uses the configured `timezone` utilities.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Versioning
|
|
58
|
+
|
|
59
|
+
- New `@Input()` names land in **minor** releases with defaults preserving current behavior.
|
|
60
|
+
- Breaking renames only in **major** releases per [MIGRATION.md](../../../MIGRATION.md).
|
package/docs/INTEGRATION.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ionic Framework Integration Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
This guide provides step-by-step instructions for integrating ngxsmk-datepicker with Ionic Angular applications.
|
|
6
6
|
|
package/docs/IONIC_TESTING.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ionic Integration Testing Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
This document provides comprehensive testing instructions for verifying ngxsmk-datepicker compatibility with Ionic Framework.
|
|
6
6
|
|
package/docs/LOCALE-GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Plugin Architecture
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker features a powerful **plugin architecture** that allows you to extend and customize the component's behavior without modifying its core code. This architecture is built on a **hook-based system** that provides extension points throughout the component's lifecycle.
|
|
6
6
|
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Refactor plan: thin `NgxsmkDatepickerComponent`
|
|
2
|
+
|
|
3
|
+
**Last updated:** May 2, 2026
|
|
4
|
+
|
|
5
|
+
This plan operationalizes [IMPROVEMENT_REPORT.md](../../IMPROVEMENT_REPORT.md) items **1.1**–**1.6** without blocking feature work. Phases are incremental and test-backed.
|
|
6
|
+
|
|
7
|
+
## Goals
|
|
8
|
+
|
|
9
|
+
- Move orchestration of calendar **generation** and **month arrays** behind `CalendarGenerationService` (already exists—expand responsibilities).
|
|
10
|
+
- Move **input ↔ model** normalization boundaries closer to `DatepickerParsingService` / a thin `InputFacade`.
|
|
11
|
+
- Keep **public `@Input` / `@Output` API** stable unless explicitly versioned.
|
|
12
|
+
|
|
13
|
+
## Phase 1 — Boundaries only (low risk)
|
|
14
|
+
|
|
15
|
+
1. List public methods on `NgxsmkDatepickerComponent` that only delegate to `CalendarGenerationService`; replace with direct service calls from tests where duplicated.
|
|
16
|
+
2. Ensure `generateCalendar()` becomes a thin orchestrator: **invalidate revision signals → assign `multiCalendarMonths` → CD**.
|
|
17
|
+
|
|
18
|
+
## Phase 2 — Extract pure builders
|
|
19
|
+
|
|
20
|
+
1. Move `buildCalendarMonths` logic that does not need component closure into `CalendarGenerationService` with explicit parameters (`firstDayOfWeek`, `syncScroll`, `count`).
|
|
21
|
+
2. Unit-test service methods in isolation with Jasmine.
|
|
22
|
+
|
|
23
|
+
## Phase 3 — Parsing facade
|
|
24
|
+
|
|
25
|
+
1. Route typed-input updates through `DatepickerParsingService` + single `applyUserInput()` private method on the component.
|
|
26
|
+
2. Reduce branching between native picker vs. text input vs. inline.
|
|
27
|
+
|
|
28
|
+
## Phase 4 — Touch / positioning (optional)
|
|
29
|
+
|
|
30
|
+
1. Confirm `TouchGestureHandlerService` and `PopoverPositioningService` own all DOM measurements; component emits intents only.
|
|
31
|
+
|
|
32
|
+
## Verification
|
|
33
|
+
|
|
34
|
+
- `npm run test` (ngxsmk-datepicker project)
|
|
35
|
+
- `npm run e2e` with demo-app smoke + playground scenarios
|
|
36
|
+
- Bundle size check script if touching public exports
|
|
37
|
+
|
|
38
|
+
See also [FEATURE_SCOPING.md](./FEATURE_SCOPING.md) for upcoming API additions.
|
package/docs/SEO.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SEO Optimization Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
This document outlines the SEO optimizations implemented for ngxsmk-datepicker to improve search engine visibility and discoverability.
|
|
6
6
|
|
package/docs/SSR-EXAMPLE.md
CHANGED
package/docs/THEME-TOKENS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Theme Tokens & CSS Custom Properties
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
Complete reference for all CSS custom properties (CSS variables) available in ngxsmk-datepicker.
|
|
6
6
|
|
package/docs/TIMEZONE.md
CHANGED
package/docs/extension-points.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Extension Points and Hooks
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker provides comprehensive extension points through the `hooks` input, allowing you to customize rendering, validation, keyboard shortcuts, formatting, and event handling.
|
|
6
6
|
|
package/docs/signal-forms.md
CHANGED
package/docs/signals.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Signals Integration Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker is fully compatible with Angular Signals, providing seamless integration with both traditional reactive forms and modern signal-based patterns.
|
|
6
6
|
|
package/docs/ssr.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Server-Side Rendering (SSR) Guide
|
|
2
2
|
|
|
3
|
-
**Last updated:**
|
|
3
|
+
**Last updated:** May 2, 2026 · **Current stable:** v2.2.12
|
|
4
4
|
|
|
5
5
|
ngxsmk-datepicker is fully compatible with Angular Universal and server-side rendering. This guide covers SSR setup, best practices, and troubleshooting.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,95 +1,92 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ngxsmk-datepicker",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"author": {
|
|
5
|
-
"name": "Sachin Dilshan",
|
|
6
|
-
"url": "https://www.
|
|
7
|
-
},
|
|
8
|
-
"peerDependencies": {
|
|
9
|
-
"@angular/common": ">=17.0.0 <24.0.0",
|
|
10
|
-
"@angular/core": ">=17.0.0 <24.0.0",
|
|
11
|
-
"@angular/forms": ">=17.0.0 <24.0.0",
|
|
12
|
-
"luxon": "^3.0.0"
|
|
13
|
-
},
|
|
14
|
-
"peerDependenciesMeta": {
|
|
15
|
-
"zone.js": {
|
|
16
|
-
"optional": true
|
|
17
|
-
},
|
|
18
|
-
"@angular/material": {
|
|
19
|
-
"optional": true
|
|
20
|
-
},
|
|
21
|
-
"@angular/cdk": {
|
|
22
|
-
"optional": true
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"tslib": "^2.3.0"
|
|
27
|
-
},
|
|
28
|
-
"main": "fesm2022/ngxsmk-datepicker.mjs",
|
|
29
|
-
"module": "fesm2022/ngxsmk-datepicker.mjs",
|
|
30
|
-
"es2022": "fesm2022/ngxsmk-datepicker.mjs",
|
|
31
|
-
"types": "types/ngxsmk-datepicker.d.ts",
|
|
32
|
-
"typings": "types/ngxsmk-datepicker.d.ts",
|
|
33
|
-
"homepage": "https://github.com/NGXSMK/ngxsmk-datepicker#readme",
|
|
34
|
-
"repository": {
|
|
35
|
-
"type": "git",
|
|
36
|
-
"url": "git+https://github.com/NGXSMK/ngxsmk-datepicker.git"
|
|
37
|
-
},
|
|
38
|
-
"bugs": {
|
|
39
|
-
"url": "https://github.com/NGXSMK/ngxsmk-datepicker/issues"
|
|
40
|
-
},
|
|
41
|
-
"sideEffects": false,
|
|
42
|
-
"files": [
|
|
43
|
-
"fesm2022/**/*.mjs",
|
|
44
|
-
"**/*.d.ts",
|
|
45
|
-
"**/*.metadata.json",
|
|
46
|
-
"README.md",
|
|
47
|
-
"LICENSE",
|
|
48
|
-
"CHANGELOG.md",
|
|
49
|
-
"MIGRATION.md",
|
|
50
|
-
"docs/*.md",
|
|
51
|
-
"!docs/**/*.png",
|
|
52
|
-
"!docs/**/*.jpg",
|
|
53
|
-
"!docs/**/*.gif",
|
|
54
|
-
"styles/**/*.css"
|
|
55
|
-
],
|
|
56
|
-
"keywords": [
|
|
57
|
-
"angular",
|
|
58
|
-
"datepicker",
|
|
59
|
-
"date-range-picker",
|
|
60
|
-
"calendar",
|
|
61
|
-
"standalone-component",
|
|
62
|
-
"angular-17",
|
|
63
|
-
"angular-18",
|
|
64
|
-
"angular-19",
|
|
65
|
-
"angular-20",
|
|
66
|
-
"angular-21",
|
|
67
|
-
"typescript",
|
|
68
|
-
"date-selection",
|
|
69
|
-
"i18n",
|
|
70
|
-
"localization"
|
|
71
|
-
],
|
|
72
|
-
"optimization": {
|
|
73
|
-
"treeShaking": true,
|
|
74
|
-
"sideEffects": false,
|
|
75
|
-
"usedExports": true
|
|
76
|
-
},
|
|
77
|
-
"engines": {
|
|
78
|
-
"node": ">=20.19.0 || >=22.12.0",
|
|
79
|
-
"npm": ">=10.0.0"
|
|
80
|
-
},
|
|
81
|
-
"prepublishOnly": "node ../../scripts/assert-lib-publish-artifacts.cjs",
|
|
82
|
-
"exports": {
|
|
83
|
-
".": {
|
|
84
|
-
"types": "./types/ngxsmk-datepicker.d.ts",
|
|
85
|
-
"import": "./fesm2022/ngxsmk-datepicker.mjs",
|
|
86
|
-
"default": "./fesm2022/ngxsmk-datepicker.mjs"
|
|
87
|
-
},
|
|
88
|
-
"./styles/*": {
|
|
89
|
-
"default": "./styles/*"
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ngxsmk-datepicker",
|
|
3
|
+
"version": "2.2.12",
|
|
4
|
+
"author": {
|
|
5
|
+
"name": "Sachin Dilshan",
|
|
6
|
+
"url": "https://www.sachindilshan.com/"
|
|
7
|
+
},
|
|
8
|
+
"peerDependencies": {
|
|
9
|
+
"@angular/common": ">=17.0.0 <24.0.0",
|
|
10
|
+
"@angular/core": ">=17.0.0 <24.0.0",
|
|
11
|
+
"@angular/forms": ">=17.0.0 <24.0.0",
|
|
12
|
+
"luxon": "^3.0.0"
|
|
13
|
+
},
|
|
14
|
+
"peerDependenciesMeta": {
|
|
15
|
+
"zone.js": {
|
|
16
|
+
"optional": true
|
|
17
|
+
},
|
|
18
|
+
"@angular/material": {
|
|
19
|
+
"optional": true
|
|
20
|
+
},
|
|
21
|
+
"@angular/cdk": {
|
|
22
|
+
"optional": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"tslib": "^2.3.0"
|
|
27
|
+
},
|
|
28
|
+
"main": "fesm2022/ngxsmk-datepicker.mjs",
|
|
29
|
+
"module": "fesm2022/ngxsmk-datepicker.mjs",
|
|
30
|
+
"es2022": "fesm2022/ngxsmk-datepicker.mjs",
|
|
31
|
+
"types": "types/ngxsmk-datepicker.d.ts",
|
|
32
|
+
"typings": "types/ngxsmk-datepicker.d.ts",
|
|
33
|
+
"homepage": "https://github.com/NGXSMK/ngxsmk-datepicker#readme",
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/NGXSMK/ngxsmk-datepicker.git"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/NGXSMK/ngxsmk-datepicker/issues"
|
|
40
|
+
},
|
|
41
|
+
"sideEffects": false,
|
|
42
|
+
"files": [
|
|
43
|
+
"fesm2022/**/*.mjs",
|
|
44
|
+
"**/*.d.ts",
|
|
45
|
+
"**/*.metadata.json",
|
|
46
|
+
"README.md",
|
|
47
|
+
"LICENSE",
|
|
48
|
+
"CHANGELOG.md",
|
|
49
|
+
"MIGRATION.md",
|
|
50
|
+
"docs/*.md",
|
|
51
|
+
"!docs/**/*.png",
|
|
52
|
+
"!docs/**/*.jpg",
|
|
53
|
+
"!docs/**/*.gif",
|
|
54
|
+
"styles/**/*.css"
|
|
55
|
+
],
|
|
56
|
+
"keywords": [
|
|
57
|
+
"angular",
|
|
58
|
+
"datepicker",
|
|
59
|
+
"date-range-picker",
|
|
60
|
+
"calendar",
|
|
61
|
+
"standalone-component",
|
|
62
|
+
"angular-17",
|
|
63
|
+
"angular-18",
|
|
64
|
+
"angular-19",
|
|
65
|
+
"angular-20",
|
|
66
|
+
"angular-21",
|
|
67
|
+
"typescript",
|
|
68
|
+
"date-selection",
|
|
69
|
+
"i18n",
|
|
70
|
+
"localization"
|
|
71
|
+
],
|
|
72
|
+
"optimization": {
|
|
73
|
+
"treeShaking": true,
|
|
74
|
+
"sideEffects": false,
|
|
75
|
+
"usedExports": true
|
|
76
|
+
},
|
|
77
|
+
"engines": {
|
|
78
|
+
"node": ">=20.19.0 || >=22.12.0",
|
|
79
|
+
"npm": ">=10.0.0"
|
|
80
|
+
},
|
|
81
|
+
"prepublishOnly": "node ../../scripts/assert-lib-publish-artifacts.cjs",
|
|
82
|
+
"exports": {
|
|
83
|
+
".": {
|
|
84
|
+
"types": "./types/ngxsmk-datepicker.d.ts",
|
|
85
|
+
"import": "./fesm2022/ngxsmk-datepicker.mjs",
|
|
86
|
+
"default": "./fesm2022/ngxsmk-datepicker.mjs"
|
|
87
|
+
},
|
|
88
|
+
"./styles/*": {
|
|
89
|
+
"default": "./styles/*"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|