@datarailsshared/datarailsshared 1.6.391 → 1.6.395

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.
@@ -22,7 +22,7 @@ export declare class DrCronFieldComponent implements OnInit, ControlValueAccesso
22
22
  };
23
23
  readonly DAY_OF_MONTH_ARRAY: {
24
24
  label: string;
25
- value: number;
25
+ value: import("./dr-cron-field.editor").TDayOfMonth;
26
26
  }[];
27
27
  readonly MONTH_OF_QUARTER_ARRAY: {
28
28
  label: string;
@@ -1,9 +1,10 @@
1
+ export type TDayOfMonth = number | 'L';
1
2
  export interface ICronEditor {
2
3
  everyXHours: number;
3
4
  every: CronEditorPeriod;
4
5
  minute: number;
5
6
  hour: number;
6
- dayOfMonth: number;
7
+ dayOfMonth: TDayOfMonth;
7
8
  month: number;
8
9
  dayOfWeek: number;
9
10
  timePeriod: CronTimePeriod;
@@ -55,13 +56,13 @@ export declare const ALLOWED_PERIODS: CronEditorPeriod[];
55
56
  export declare const addOrdinalSuffix: (num: number) => string;
56
57
  export declare const DAY_OF_MONTH_ARRAY: {
57
58
  label: string;
58
- value: number;
59
+ value: TDayOfMonth;
59
60
  }[];
60
61
  export declare class CronEditor implements ICronEditor {
61
62
  private _fiscalYearStart;
62
63
  private _period;
63
64
  everyXHours: number;
64
- dayOfMonth: number;
65
+ dayOfMonth: TDayOfMonth;
65
66
  dayOfWeek: number;
66
67
  every: CronEditorPeriod;
67
68
  hour: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.6.391",
3
+ "version": "1.6.395",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",