ngx-datex 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +320 -0
- package/fesm2022/ngx-datex.mjs +3562 -0
- package/package.json +81 -0
- package/types/ngx-datex.d.ts +2161 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ngx-datex",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Modern Angular date range picker with Material Design featuring signals, control flow syntax, time picker, themes, and responsive design for Angular 21+",
|
|
5
|
+
"peerDependencies": {
|
|
6
|
+
"@angular/animations": "^21.1.1",
|
|
7
|
+
"@angular/cdk": "^21.1.1",
|
|
8
|
+
"@angular/common": "^21.1.1",
|
|
9
|
+
"@angular/core": "^21.1.1",
|
|
10
|
+
"@angular/material": "^21.1.1",
|
|
11
|
+
"@formkit/tempo": "^1.0.0"
|
|
12
|
+
},
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"main": "fesm2022/ngx-datex.mjs",
|
|
15
|
+
"module": "fesm2022/ngx-datex.mjs",
|
|
16
|
+
"typings": "types/ngx-datex.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"index.d.ts",
|
|
19
|
+
"*.d.ts",
|
|
20
|
+
"**/*.d.ts",
|
|
21
|
+
"fesm2022/**/*",
|
|
22
|
+
"src/**/*"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public",
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"ngx-datex",
|
|
33
|
+
"angular",
|
|
34
|
+
"angular21",
|
|
35
|
+
"datepicker",
|
|
36
|
+
"date-picker",
|
|
37
|
+
"daterange",
|
|
38
|
+
"date-range",
|
|
39
|
+
"calendar",
|
|
40
|
+
"material-design",
|
|
41
|
+
"angular-material",
|
|
42
|
+
"responsive",
|
|
43
|
+
"time-picker",
|
|
44
|
+
"datetime",
|
|
45
|
+
"signals",
|
|
46
|
+
"control-flow",
|
|
47
|
+
"modern-angular",
|
|
48
|
+
"ui-components",
|
|
49
|
+
"themes",
|
|
50
|
+
"dark-mode",
|
|
51
|
+
"typescript",
|
|
52
|
+
"frontend"
|
|
53
|
+
],
|
|
54
|
+
"author": "Senguana Wisuma Emilio <sengua2017@gmail.com>",
|
|
55
|
+
"license": "MIT",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/senguanasoft/ngx-datex/issues"
|
|
58
|
+
},
|
|
59
|
+
"homepage": "https://github.com/senguanasoft/ngx-datex#readme",
|
|
60
|
+
"repository": {
|
|
61
|
+
"type": "git",
|
|
62
|
+
"url": "git+https://github.com/senguanasoft/ngx-datex.git"
|
|
63
|
+
},
|
|
64
|
+
"release": {
|
|
65
|
+
"branches": [
|
|
66
|
+
"main"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"exports": {
|
|
70
|
+
"./package.json": {
|
|
71
|
+
"default": "./package.json"
|
|
72
|
+
},
|
|
73
|
+
".": {
|
|
74
|
+
"types": "./types/ngx-datex.d.ts",
|
|
75
|
+
"default": "./fesm2022/ngx-datex.mjs"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"tslib": "^2.3.0"
|
|
80
|
+
}
|
|
81
|
+
}
|