This is an open source project that builds a cron builder component for Angular applications.
It supports Quartz and Unix cron string formats for both input and output.
Inspired by this non-angular implementation.
You can use either the npm or yarn command-line tool to install packages. npm install --save @sbzen/ng-cron
You need to import the QuartzCronModule
that you want to display by adding the following lines to your ngModule.
import { Bs5QuartzCronModule } from '@sbzen/ng-cron';
// or import { Bs5QuartzCronModule } from '@sbzen/ng-cron';
@NgModule({
imports: [Bs5QuartzCronModule]
})
Add the cron component into your template.
<bs5-quartz-cron></bs5-quartz-cron>
<!-- or <bs5-unix-cron></bs5-unix-cron> -->
As a result you will have this widget