@praxisui/cron-builder 1.0.0-beta.61 → 1.0.0-beta.63
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 +9 -4
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -2,12 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Angular cron expression builder component with validation, humanized description and preview of next occurrences. Ships as a standalone component.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Documentation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- Official documentation: https://praxisui.dev
|
|
8
|
+
- Quickstart reference app: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
9
|
+
- Recommended for: teams that need a reusable CRON editor with validation, preview and Angular forms integration
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
## When to use
|
|
12
|
+
|
|
13
|
+
- Capture CRON schedules in forms without building a custom scheduler UI
|
|
14
|
+
- Validate expressions and show human-readable descriptions to end users
|
|
15
|
+
- Reuse the same scheduling component across admin and enterprise screens
|
|
11
16
|
|
|
12
17
|
## Install
|
|
13
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/cron-builder",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.63",
|
|
4
4
|
"description": "Cron expression builder utilities and components for Praxis UI.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.1.0",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@angular/forms": "^20.1.0",
|
|
9
9
|
"@angular/cdk": "^20.1.0",
|
|
10
10
|
"@angular/material": "^20.1.0",
|
|
11
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
11
|
+
"@praxisui/core": "^1.0.0-beta.63"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "^2.3.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"type": "git",
|
|
26
26
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
27
27
|
},
|
|
28
|
-
"homepage": "https://
|
|
28
|
+
"homepage": "https://praxisui.dev",
|
|
29
29
|
"bugs": {
|
|
30
30
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
31
31
|
},
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"praxisui",
|
|
35
35
|
"cron",
|
|
36
36
|
"schedule",
|
|
37
|
-
"
|
|
37
|
+
"scheduler",
|
|
38
|
+
"forms"
|
|
38
39
|
],
|
|
39
40
|
"sideEffects": false,
|
|
40
41
|
"module": "fesm2022/praxisui-cron-builder.mjs",
|