@praxisui/cron-builder 0.0.1 → 1.0.0-beta.1

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @praxis/cron-builder
1
+ # @praxisui/cron-builder
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
  ## Install
6
6
 
7
7
  ```bash
8
- npm i @praxis/cron-builder
8
+ npm i @praxisui/cron-builder
9
9
  ```
10
10
 
11
11
  Peer dependencies (Angular v20):
@@ -14,7 +14,7 @@ Peer dependencies (Angular v20):
14
14
  - `@angular/forms` `^20.1.0`
15
15
  - `@angular/cdk` `^20.1.0`
16
16
  - `@angular/material` `^20.1.0`
17
- - `@praxis/core` `^0.0.1`
17
+ - `@praxisui/core` `^0.0.1`
18
18
 
19
19
  Runtime dependencies (installed automatically):
20
20
  - `cron-parser`, `cronstrue`, `cron-validator`, `luxon`
@@ -26,7 +26,7 @@ Import the standalone component and use it in your template.
26
26
  ```ts
27
27
  // Any standalone component or NgModule-enabled component
28
28
  import { Component } from '@angular/core';
29
- import { PdxCronBuilderComponent } from '@praxis/cron-builder';
29
+ import { PdxCronBuilderComponent } from '@praxisui/cron-builder';
30
30
 
31
31
  @Component({
32
32
  selector: 'app-schedule-form',
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@praxisui/cron-builder",
3
- "version": "0.0.1",
3
+ "version": "1.0.0-beta.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0",
7
7
  "@angular/forms": "^20.1.0",
8
8
  "@angular/cdk": "^20.1.0",
9
9
  "@angular/material": "^20.1.0",
10
- "@praxisui/core": "^0.0.1"
10
+ "@praxisui/core": "^1.0.0-beta.1"
11
11
  },
12
12
  "dependencies": {
13
13
  "tslib": "^2.3.0",