@acorex/components 18.14.0 → 18.14.1-next.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 (167) hide show
  1. package/calendar/lib/calendar.component.d.ts +16 -5
  2. package/calendar/lib/calendar.module.d.ts +2 -1
  3. package/check-box/lib/check-box.component.d.ts +13 -5
  4. package/cron-job/README.md +3 -0
  5. package/cron-job/index.d.ts +8 -0
  6. package/cron-job/lib/cron-job-container/cron-job-container.component.d.ts +31 -0
  7. package/cron-job/lib/cron-job.module.d.ts +25 -0
  8. package/cron-job/lib/cron-job.service.d.ts +22 -0
  9. package/cron-job/lib/day/day.component.d.ts +22 -0
  10. package/cron-job/lib/day/day.model.d.ts +61 -0
  11. package/cron-job/lib/day/day.service.d.ts +17 -0
  12. package/cron-job/lib/hours/hours.component.d.ts +14 -0
  13. package/cron-job/lib/hours/hours.model.d.ts +5 -0
  14. package/cron-job/lib/hours/hours.service.d.ts +13 -0
  15. package/cron-job/lib/minutes/minutes.component.d.ts +14 -0
  16. package/cron-job/lib/minutes/minutes.model.d.ts +5 -0
  17. package/cron-job/lib/minutes/minutes.service.d.ts +13 -0
  18. package/cron-job/lib/month/month.component.d.ts +16 -0
  19. package/cron-job/lib/month/month.model.d.ts +5 -0
  20. package/cron-job/lib/month/month.service.d.ts +14 -0
  21. package/cron-job/lib/seconds/seconds.component.d.ts +14 -0
  22. package/cron-job/lib/seconds/seconds.model.d.ts +5 -0
  23. package/cron-job/lib/seconds/seconds.service.d.ts +13 -0
  24. package/cron-job/lib/types/iexpression.d.ts +3 -0
  25. package/cron-job/lib/types/shared.model.d.ts +37 -0
  26. package/cron-job/lib/year/year.component.d.ts +15 -0
  27. package/cron-job/lib/year/year.model.d.ts +16 -0
  28. package/cron-job/lib/year/year.service.d.ts +12 -0
  29. package/datetime-input/lib/datetime-input.component.d.ts +9 -0
  30. package/datetime-picker/lib/datetime-picker.component.d.ts +1 -0
  31. package/esm2022/alert/lib/alert.component.mjs +10 -14
  32. package/esm2022/avatar/lib/avatar.component.mjs +2 -2
  33. package/esm2022/calendar/lib/calendar.component.mjs +186 -158
  34. package/esm2022/calendar/lib/calendar.module.mjs +5 -4
  35. package/esm2022/check-box/lib/check-box.component.mjs +39 -22
  36. package/esm2022/common/lib/components/selection-base.component.class.mjs +2 -1
  37. package/esm2022/cron-job/acorex-components-cron-job.mjs +5 -0
  38. package/esm2022/cron-job/index.mjs +9 -0
  39. package/esm2022/cron-job/lib/cron-job-container/cron-job-container.component.mjs +90 -0
  40. package/esm2022/cron-job/lib/cron-job.module.mjs +80 -0
  41. package/esm2022/cron-job/lib/cron-job.service.mjs +60 -0
  42. package/esm2022/cron-job/lib/day/day.component.mjs +61 -0
  43. package/esm2022/cron-job/lib/day/day.model.mjs +88 -0
  44. package/esm2022/cron-job/lib/day/day.service.mjs +196 -0
  45. package/esm2022/cron-job/lib/hours/hours.component.mjs +38 -0
  46. package/esm2022/cron-job/lib/hours/hours.model.mjs +8 -0
  47. package/esm2022/cron-job/lib/hours/hours.service.mjs +82 -0
  48. package/esm2022/cron-job/lib/minutes/minutes.component.mjs +38 -0
  49. package/esm2022/cron-job/lib/minutes/minutes.model.mjs +8 -0
  50. package/esm2022/cron-job/lib/minutes/minutes.service.mjs +82 -0
  51. package/esm2022/cron-job/lib/month/month.component.mjs +47 -0
  52. package/esm2022/cron-job/lib/month/month.model.mjs +8 -0
  53. package/esm2022/cron-job/lib/month/month.service.mjs +96 -0
  54. package/esm2022/cron-job/lib/seconds/seconds.component.mjs +38 -0
  55. package/esm2022/cron-job/lib/seconds/seconds.model.mjs +8 -0
  56. package/esm2022/cron-job/lib/seconds/seconds.service.mjs +82 -0
  57. package/esm2022/cron-job/lib/types/iexpression.mjs +2 -0
  58. package/esm2022/cron-job/lib/types/shared.model.mjs +49 -0
  59. package/esm2022/cron-job/lib/year/year.component.mjs +45 -0
  60. package/esm2022/cron-job/lib/year/year.model.mjs +28 -0
  61. package/esm2022/cron-job/lib/year/year.service.mjs +82 -0
  62. package/esm2022/datetime-input/lib/datetime-input.component.mjs +38 -10
  63. package/esm2022/datetime-picker/lib/datetime-picker.component.mjs +17 -4
  64. package/esm2022/list/lib/list.component.mjs +3 -3
  65. package/esm2022/loading/lib/loading.component.mjs +7 -3
  66. package/esm2022/loading/lib/loading.service.mjs +3 -3
  67. package/esm2022/radio/lib/radio.component.mjs +3 -3
  68. package/esm2022/selection-list/lib/selection-list.component.mjs +18 -28
  69. package/esm2022/text-box/lib/text-box.component.mjs +11 -8
  70. package/esm2022/time-line/lib/time-line-item.component.mjs +3 -3
  71. package/esm2022/time-line/lib/time-line.component.mjs +18 -4
  72. package/fesm2022/acorex-components-action-sheet.mjs +1 -1
  73. package/fesm2022/acorex-components-alert.mjs +10 -14
  74. package/fesm2022/acorex-components-alert.mjs.map +1 -1
  75. package/fesm2022/acorex-components-audio-wave.mjs +1 -1
  76. package/fesm2022/acorex-components-avatar.mjs +3 -3
  77. package/fesm2022/acorex-components-avatar.mjs.map +1 -1
  78. package/fesm2022/acorex-components-badge.mjs +1 -1
  79. package/fesm2022/acorex-components-bottom-navigation.mjs +1 -1
  80. package/fesm2022/acorex-components-breadcrumbs.mjs +1 -1
  81. package/fesm2022/acorex-components-button-group.mjs +1 -1
  82. package/fesm2022/acorex-components-button.mjs +1 -1
  83. package/fesm2022/acorex-components-calendar.mjs +188 -160
  84. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  85. package/fesm2022/acorex-components-check-box.mjs +39 -22
  86. package/fesm2022/acorex-components-check-box.mjs.map +1 -1
  87. package/fesm2022/acorex-components-chips.mjs +1 -1
  88. package/fesm2022/acorex-components-circular-progress.mjs +1 -1
  89. package/fesm2022/acorex-components-collapse.mjs +1 -1
  90. package/fesm2022/acorex-components-color-box.mjs +1 -1
  91. package/fesm2022/acorex-components-color-palette.mjs +1 -1
  92. package/fesm2022/acorex-components-comment.mjs +1 -1
  93. package/fesm2022/acorex-components-common.mjs +2 -1
  94. package/fesm2022/acorex-components-common.mjs.map +1 -1
  95. package/fesm2022/acorex-components-conversation.mjs +1 -1
  96. package/fesm2022/acorex-components-cron-job.mjs +1191 -0
  97. package/fesm2022/acorex-components-cron-job.mjs.map +1 -0
  98. package/fesm2022/acorex-components-data-pager.mjs +1 -1
  99. package/fesm2022/acorex-components-data-table.mjs +1 -1
  100. package/fesm2022/acorex-components-datetime-box.mjs +1 -1
  101. package/fesm2022/acorex-components-datetime-input.mjs +36 -8
  102. package/fesm2022/acorex-components-datetime-input.mjs.map +1 -1
  103. package/fesm2022/acorex-components-datetime-picker.mjs +16 -3
  104. package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -1
  105. package/fesm2022/acorex-components-decorators.mjs +1 -1
  106. package/fesm2022/acorex-components-dialog.mjs +1 -1
  107. package/fesm2022/acorex-components-drawer.mjs +1 -1
  108. package/fesm2022/acorex-components-dropdown-button.mjs +1 -1
  109. package/fesm2022/acorex-components-dropdown.mjs +1 -1
  110. package/fesm2022/acorex-components-form.mjs +1 -1
  111. package/fesm2022/acorex-components-image-editor.mjs +1 -1
  112. package/fesm2022/acorex-components-image.mjs +1 -1
  113. package/fesm2022/acorex-components-json-viewer.mjs +1 -1
  114. package/fesm2022/acorex-components-label.mjs +1 -1
  115. package/fesm2022/acorex-components-list.mjs +3 -3
  116. package/fesm2022/acorex-components-list.mjs.map +1 -1
  117. package/fesm2022/acorex-components-loading-dialog.mjs +1 -1
  118. package/fesm2022/acorex-components-loading.mjs +9 -5
  119. package/fesm2022/acorex-components-loading.mjs.map +1 -1
  120. package/fesm2022/acorex-components-map.mjs +1 -1
  121. package/fesm2022/acorex-components-media-viewer.mjs +1 -1
  122. package/fesm2022/acorex-components-menu.mjs +1 -1
  123. package/fesm2022/acorex-components-nav.mjs +1 -1
  124. package/fesm2022/acorex-components-navbar.mjs +1 -1
  125. package/fesm2022/acorex-components-notification.mjs +1 -1
  126. package/fesm2022/acorex-components-number-box.mjs +1 -1
  127. package/fesm2022/acorex-components-otp.mjs +1 -1
  128. package/fesm2022/acorex-components-page.mjs +1 -1
  129. package/fesm2022/acorex-components-paint.mjs +1 -1
  130. package/fesm2022/acorex-components-password-box.mjs +1 -1
  131. package/fesm2022/acorex-components-phone-box.mjs +1 -1
  132. package/fesm2022/acorex-components-picker.mjs +1 -1
  133. package/fesm2022/acorex-components-popover.mjs +1 -1
  134. package/fesm2022/acorex-components-popup.mjs +1 -1
  135. package/fesm2022/acorex-components-progress-bar.mjs +1 -1
  136. package/fesm2022/acorex-components-qrcode.mjs +1 -1
  137. package/fesm2022/acorex-components-radio.mjs +3 -3
  138. package/fesm2022/acorex-components-radio.mjs.map +1 -1
  139. package/fesm2022/acorex-components-range-slider.mjs +1 -1
  140. package/fesm2022/acorex-components-rate-picker.mjs +1 -1
  141. package/fesm2022/acorex-components-result.mjs +1 -1
  142. package/fesm2022/acorex-components-routing-progress.mjs +1 -1
  143. package/fesm2022/acorex-components-scheduler.mjs +1 -1
  144. package/fesm2022/acorex-components-search-box.mjs +1 -1
  145. package/fesm2022/acorex-components-select-box.mjs +1 -1
  146. package/fesm2022/acorex-components-selection-list.mjs +18 -28
  147. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  148. package/fesm2022/acorex-components-side-menu.mjs +1 -1
  149. package/fesm2022/acorex-components-skeleton.mjs +1 -1
  150. package/fesm2022/acorex-components-slider.mjs +1 -1
  151. package/fesm2022/acorex-components-step-wizard.mjs +1 -1
  152. package/fesm2022/acorex-components-switch.mjs +1 -1
  153. package/fesm2022/acorex-components-tabs.mjs +1 -1
  154. package/fesm2022/acorex-components-tag.mjs +1 -1
  155. package/fesm2022/acorex-components-text-area.mjs +1 -1
  156. package/fesm2022/acorex-components-text-box.mjs +10 -7
  157. package/fesm2022/acorex-components-text-box.mjs.map +1 -1
  158. package/fesm2022/acorex-components-time-line.mjs +19 -5
  159. package/fesm2022/acorex-components-time-line.mjs.map +1 -1
  160. package/fesm2022/acorex-components-toast.mjs +1 -1
  161. package/fesm2022/acorex-components-tooltip.mjs +1 -1
  162. package/fesm2022/acorex-components-uploader.mjs +1 -1
  163. package/fesm2022/acorex-components-wysiwyg.mjs +1 -1
  164. package/package.json +7 -1
  165. package/selection-list/lib/selection-list.component.d.ts +4 -12
  166. package/text-box/lib/text-box.component.d.ts +2 -2
  167. package/time-line/lib/time-line.component.d.ts +2 -0
@@ -15,10 +15,6 @@ declare const AXCalendarComponent_base: import("polytype").Polytype.ClusteredCon
15
15
  */
16
16
  export declare class AXCalendarComponent extends AXCalendarComponent_base {
17
17
  get displayRange(): AXDateTimeRange;
18
- /**
19
- * @ignore
20
- */
21
- private _setDisplayRange;
22
18
  /**
23
19
  * @ignore
24
20
  */
@@ -66,8 +62,23 @@ export declare class AXCalendarComponent extends AXCalendarComponent_base {
66
62
  /**
67
63
  * @ignore
68
64
  */
69
- protected ngOnDestroy(): void;
70
65
  render(): void;
66
+ /**
67
+ * @ignore
68
+ */
69
+ private _setDisplayRange;
70
+ /**
71
+ * @ignore
72
+ */
73
+ private dayView;
74
+ /**
75
+ * @ignore
76
+ */
77
+ private monthView;
78
+ /**
79
+ * @ignore
80
+ */
81
+ private yearView;
71
82
  /**
72
83
  * @ignore
73
84
  */
@@ -5,8 +5,9 @@ import * as i3 from "@angular/common";
5
5
  import * as i4 from "@acorex/core/date-time";
6
6
  import * as i5 from "@acorex/core/translation";
7
7
  import * as i6 from "@acorex/components/tooltip";
8
+ import * as i7 from "@acorex/components/common";
8
9
  export declare class AXCalendarModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCalendarModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXCalendarModule, [typeof i1.AXCalendarComponent, typeof i2.AXCalendarRangeComponent], [typeof i3.CommonModule, typeof i4.AXDateTimeModule, typeof i5.AXTranslationModule, typeof i6.AXTooltipModule], [typeof i1.AXCalendarComponent, typeof i2.AXCalendarRangeComponent]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXCalendarModule, [typeof i1.AXCalendarComponent, typeof i2.AXCalendarRangeComponent], [typeof i3.CommonModule, typeof i4.AXDateTimeModule, typeof i5.AXTranslationModule, typeof i6.AXTooltipModule, typeof i7.AXRippleDirective], [typeof i1.AXCalendarComponent, typeof i2.AXCalendarRangeComponent]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<AXCalendarModule>;
12
13
  }
@@ -1,12 +1,16 @@
1
- import { MXValueComponent } from '@acorex/components/common';
2
- import { AfterViewInit } from '@angular/core';
1
+ import { MXColorComponent, MXValueComponent } from '@acorex/components/common';
3
2
  import * as i0 from "@angular/core";
3
+ declare const AXCheckBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
4
+ new (): MXValueComponent<boolean>;
5
+ ɵfac: import("@angular/core").ɵɵFactoryDeclaration<MXValueComponent<any>, never>;
6
+ ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXValueComponent<any>>;
7
+ }, typeof MXColorComponent]>;
4
8
  /**
5
9
  * A checkbox component that allows users to select or deselect an option.
6
10
  *
7
11
  * @category Components
8
12
  */
9
- export declare class AXCheckBoxComponent extends MXValueComponent<boolean | null> implements AfterViewInit {
13
+ export declare class AXCheckBoxComponent extends AXCheckBoxComponent_base {
10
14
  /**
11
15
  * @ignore
12
16
  */
@@ -38,7 +42,6 @@ export declare class AXCheckBoxComponent extends MXValueComponent<boolean | null
38
42
  /**
39
43
  * @ignore
40
44
  */
41
- ngAfterViewInit(): void;
42
45
  /**
43
46
  * @ignore
44
47
  */
@@ -47,6 +50,11 @@ export declare class AXCheckBoxComponent extends MXValueComponent<boolean | null
47
50
  * @ignore
48
51
  */
49
52
  protected _handleModelChange(value: boolean | null): void;
53
+ /**
54
+ * @ignore
55
+ */
56
+ private get __hostClass();
50
57
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCheckBoxComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, ["_labels"], ["ax-label", "ax-form-hint", "ax-validation-rule"], false, never>;
58
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCheckBoxComponent, "ax-check-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "color": { "alias": "color"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; }, ["_labels"], ["ax-label", "ax-form-hint", "ax-validation-rule"], false, never>;
52
59
  }
60
+ export {};
@@ -0,0 +1,3 @@
1
+ # @acorex/components/cron-job
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/cron-job`.
@@ -0,0 +1,8 @@
1
+ export * from './lib/cron-job-container/cron-job-container.component';
2
+ export * from './lib/cron-job.module';
3
+ export * from './lib/day/day.component';
4
+ export * from './lib/hours/hours.component';
5
+ export * from './lib/minutes/minutes.component';
6
+ export * from './lib/month/month.component';
7
+ export * from './lib/seconds/seconds.component';
8
+ export * from './lib/year/year.component';
@@ -0,0 +1,31 @@
1
+ import { AXClickEvent } from '@acorex/components/common';
2
+ import { AXTabLocation, AXTabLook, AXTabsComponent } from '@acorex/components/tabs';
3
+ import { DayService } from '../day/day.service';
4
+ import { HoursService } from '../hours/hours.service';
5
+ import { MinutesService } from '../minutes/minutes.service';
6
+ import { MonthService } from '../month/month.service';
7
+ import { SecondsService } from '../seconds/seconds.service';
8
+ import { YearService } from '../year/year.service';
9
+ import * as i0 from "@angular/core";
10
+ export declare class AXCronJobContainerComponent {
11
+ #private;
12
+ protected tabComponent: import("@angular/core").Signal<AXTabsComponent>;
13
+ protected activeTab: import("@angular/core").WritableSignal<string>;
14
+ protected expResult: string;
15
+ onExpressionChange: import("@angular/core").OutputEmitterRef<AXClickEvent>;
16
+ protected options: import("@angular/core").WritableSignal<{
17
+ fit: boolean;
18
+ look: AXTabLook;
19
+ location: AXTabLocation;
20
+ }>;
21
+ protected secondsService: SecondsService;
22
+ protected minutesService: MinutesService;
23
+ protected hoursService: HoursService;
24
+ protected monthService: MonthService;
25
+ protected dayService: DayService;
26
+ protected yearService: YearService;
27
+ protected onGetModel(): void;
28
+ protected reverseExpression(cronExpressionPattern: string): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronJobContainerComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronJobContainerComponent, "ax-cron-job-container", never, {}, { "onExpressionChange": "onExpressionChange"; }, never, never, false, never>;
31
+ }
@@ -0,0 +1,25 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./cron-job-container/cron-job-container.component";
3
+ import * as i2 from "./day/day.component";
4
+ import * as i3 from "./hours/hours.component";
5
+ import * as i4 from "./minutes/minutes.component";
6
+ import * as i5 from "./month/month.component";
7
+ import * as i6 from "./seconds/seconds.component";
8
+ import * as i7 from "./year/year.component";
9
+ import * as i8 from "@acorex/components/tabs";
10
+ import * as i9 from "@acorex/components/badge";
11
+ import * as i10 from "@acorex/components/decorators";
12
+ import * as i11 from "@angular/common";
13
+ import * as i12 from "@angular/forms";
14
+ import * as i13 from "@acorex/components/select-box";
15
+ import * as i14 from "@acorex/components/form";
16
+ import * as i15 from "@acorex/components/label";
17
+ import * as i16 from "@acorex/components/check-box";
18
+ import * as i17 from "@acorex/components/text-box";
19
+ import * as i18 from "@acorex/core/translation";
20
+ import * as i19 from "@acorex/components/button";
21
+ export declare class AXCronJobModule {
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronJobModule, never>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXCronJobModule, [typeof i1.AXCronJobContainerComponent, typeof i2.AXCronDayComponent, typeof i3.AXCronHoursComponent, typeof i4.AXCronMinutesComponent, typeof i5.AXCronMonthComponent, typeof i6.AXCronSecondsComponent, typeof i7.AXCronYearComponent], [typeof i8.AXTabsModule, typeof i9.AXBadgeModule, typeof i10.AXDecoratorModule, typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.AXSelectBoxModule, typeof i14.AXFormModule, typeof i15.AXLabelModule, typeof i16.AXCheckBoxModule, typeof i17.AXTextBoxModule, typeof i18.AXTranslationModule, typeof i19.AXButtonModule, typeof i15.AXLabelModule], [typeof i1.AXCronJobContainerComponent, typeof i2.AXCronDayComponent, typeof i3.AXCronHoursComponent, typeof i4.AXCronMinutesComponent, typeof i5.AXCronMonthComponent, typeof i6.AXCronSecondsComponent, typeof i7.AXCronYearComponent]>;
24
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXCronJobModule>;
25
+ }
@@ -0,0 +1,22 @@
1
+ import { DropDownItem, RegexItemsIndex } from './types/shared.model';
2
+ import * as i0 from "@angular/core";
3
+ export declare class StringService {
4
+ addComma(str: string): string;
5
+ getRegexItem(cronExpressionPattern: string, itemIndex: RegexItemsIndex): string;
6
+ getIntervalCronData(regex: string): {
7
+ interval: number;
8
+ startAt: number;
9
+ } | undefined;
10
+ getSpecificCronData(regex: string, dropDowndara?: Array<string>): Array<DropDownItem> | undefined;
11
+ getRangeCronData(regex: string): {
12
+ from: number;
13
+ to: number;
14
+ } | undefined;
15
+ getDayOfMonthCronData(regex: string): {
16
+ day: number;
17
+ xst: number;
18
+ } | undefined;
19
+ mapItemsToDropDownItem(items: Array<string>, dropDowndata?: Array<string>): Array<DropDownItem>;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<StringService, never>;
21
+ static ɵprov: i0.ɵɵInjectableDeclaration<StringService>;
22
+ }
@@ -0,0 +1,22 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { DayService } from './day.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronDayComponent {
6
+ #private;
7
+ dayService: DayService;
8
+ protected boWeekDropDownList: DropDownItem[];
9
+ protected boMonthDropDownList: DropDownItem[];
10
+ protected daysIndexInMonth: number[];
11
+ protected zeroTo30: number[];
12
+ protected changeHandler(e: AXValueChangedEvent): void;
13
+ protected changeHandler2(e: AXValueChangedEvent): void;
14
+ protected get daysList(): Array<string>;
15
+ protected get isBoWeek(): boolean;
16
+ protected get isBoMonth(): boolean;
17
+ protected get isBoWeekCustom(): boolean;
18
+ protected get isBoMonthCustom(): boolean;
19
+ protected get isBoMonthBefore(): boolean;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronDayComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronDayComponent, "ax-cron-day", never, {}, {}, never, never, false, never>;
22
+ }
@@ -0,0 +1,61 @@
1
+ import { DropDownItem } from '../types/shared.model';
2
+ export declare class Day {
3
+ type: DayType;
4
+ baseOnWeek: BaseOnWeek;
5
+ baseOnMonth: BaseOnMonth;
6
+ }
7
+ export declare class BaseOnMonth {
8
+ type: BaseOnMonthType;
9
+ custom: BaseOnMonthCustom;
10
+ before: number;
11
+ }
12
+ export declare class BaseOnWeek {
13
+ type: BaseOnWeekType;
14
+ last: Last;
15
+ custom: BaseOnWeekCustom;
16
+ }
17
+ export declare class BaseOnWeekCustom {
18
+ repeat: BaseOnWeekRepeat;
19
+ specific: Specific;
20
+ dayOfMonth: DayOfMonth;
21
+ }
22
+ export declare class BaseOnMonthCustom {
23
+ repeat: BaseOnMonthRepeat;
24
+ specific: Specific;
25
+ }
26
+ export declare class Last {
27
+ day: number;
28
+ }
29
+ export declare class BaseRepeat {
30
+ isRepeat: boolean;
31
+ interval: number;
32
+ }
33
+ export declare class BaseOnWeekRepeat extends BaseRepeat {
34
+ startAt: number;
35
+ }
36
+ export declare class BaseOnMonthRepeat extends BaseRepeat {
37
+ startAt: number;
38
+ }
39
+ export declare class Specific {
40
+ isSpecefic: boolean;
41
+ values: DropDownItem[];
42
+ }
43
+ export declare class DayOfMonth {
44
+ isDayOfMonth: boolean;
45
+ xst: number;
46
+ day: number;
47
+ }
48
+ export declare enum DayType {
49
+ Every = "every",
50
+ BOWeek = "boweek",
51
+ BOMonth = "bomonth"
52
+ }
53
+ export declare enum BaseOnWeekType {
54
+ Last = "last",
55
+ Custom = "custom"
56
+ }
57
+ export declare enum BaseOnMonthType {
58
+ Last = "last",
59
+ Before = "before",
60
+ Custom = "custom"
61
+ }
@@ -0,0 +1,17 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { IExpression } from '../types/iexpression';
3
+ import { Day } from './day.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DayService implements IExpression {
6
+ private stringService;
7
+ dayModel: Day;
8
+ daysList: Array<string>;
9
+ constructor(stringService: StringService);
10
+ getExpression(): any;
11
+ expressionValidation(preCronExpressionPattern: string, newCronExpressionPattern: string): string;
12
+ reversExpression(cronExpressionPattern: string): void;
13
+ reversExpressionBasedOnWeek(regex: string): void;
14
+ reversExpressionBasedOnMonth(regex: string): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DayService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<DayService>;
17
+ }
@@ -0,0 +1,14 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { HoursService } from './hours.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronHoursComponent {
6
+ #private;
7
+ hoursService: HoursService;
8
+ protected dropdownList: DropDownItem[];
9
+ protected zeroTo23: number[];
10
+ protected changeHandler(e: AXValueChangedEvent): void;
11
+ protected get isCustom(): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronHoursComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronHoursComponent, "ax-cron-hours", never, {}, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,5 @@
1
+ import { Custom, Type } from '../types/shared.model';
2
+ export declare class Hours {
3
+ type: Type;
4
+ custom: Custom;
5
+ }
@@ -0,0 +1,13 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { IExpression } from '../types/iexpression';
3
+ import { Hours } from './hours.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HoursService implements IExpression {
6
+ private stringService;
7
+ hourModel: Hours;
8
+ constructor(stringService: StringService);
9
+ getExpression(): string;
10
+ reversExpression(cronExpressionPattern: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HoursService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<HoursService>;
13
+ }
@@ -0,0 +1,14 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { MinutesService } from './minutes.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronMinutesComponent {
6
+ #private;
7
+ protected minutesService: MinutesService;
8
+ protected dropdownList: DropDownItem[];
9
+ protected zeroTo59: number[];
10
+ protected changeHandler(e: AXValueChangedEvent): void;
11
+ protected get isCustom(): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronMinutesComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronMinutesComponent, "ax-cron-minutes", never, {}, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,5 @@
1
+ import { Custom, Type } from '../types/shared.model';
2
+ export declare class Minutes {
3
+ type: Type;
4
+ custom: Custom;
5
+ }
@@ -0,0 +1,13 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { IExpression } from '../types/iexpression';
3
+ import { Minutes } from './minutes.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MinutesService implements IExpression {
6
+ private stringService;
7
+ minuteModel: Minutes;
8
+ constructor(stringService: StringService);
9
+ getExpression(): string;
10
+ reversExpression(cronExpressionPattern: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MinutesService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<MinutesService>;
13
+ }
@@ -0,0 +1,16 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { MonthService } from './month.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronMonthComponent {
6
+ #private;
7
+ protected monthService: MonthService;
8
+ protected dropdownList: DropDownItem[];
9
+ protected dropdownList2: DropDownItem[];
10
+ protected oneTo12: DropDownItem[];
11
+ protected changeHandler(e: AXValueChangedEvent): void;
12
+ protected get isCustom(): boolean;
13
+ protected get monthsList(): Array<string>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronMonthComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronMonthComponent, "ax-cron-month", never, {}, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,5 @@
1
+ import { Custom, Type } from '../types/shared.model';
2
+ export declare class Month {
3
+ type: Type;
4
+ custom: Custom;
5
+ }
@@ -0,0 +1,14 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { IExpression } from '../types/iexpression';
3
+ import { Month } from './month.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class MonthService implements IExpression {
6
+ private stringService;
7
+ monthModel: Month;
8
+ monthList: Array<string>;
9
+ constructor(stringService: StringService);
10
+ getExpression(): string;
11
+ reversExpression(cronExpressionPattern: string): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonthService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<MonthService>;
14
+ }
@@ -0,0 +1,14 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { SecondsService } from './seconds.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronSecondsComponent {
6
+ #private;
7
+ protected secondsService: SecondsService;
8
+ protected dropdownList: DropDownItem[];
9
+ protected zeroTo59: number[];
10
+ protected changeHandler(e: AXValueChangedEvent): void;
11
+ protected get isCustom(): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronSecondsComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronSecondsComponent, "ax-cron-seconds", never, {}, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,5 @@
1
+ import { Custom, Type } from '../types/shared.model';
2
+ export declare class Seconds {
3
+ type: Type;
4
+ custom: Custom;
5
+ }
@@ -0,0 +1,13 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { IExpression } from '../types/iexpression';
3
+ import { Seconds } from './seconds.model';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SecondsService implements IExpression {
6
+ private stringService;
7
+ secondModel: Seconds;
8
+ constructor(stringService: StringService);
9
+ getExpression(): string;
10
+ reversExpression(cronExpressionPattern: string): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SecondsService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<SecondsService>;
13
+ }
@@ -0,0 +1,3 @@
1
+ export interface IExpression {
2
+ getExpression(): any;
3
+ }
@@ -0,0 +1,37 @@
1
+ export declare class Custom {
2
+ specific: Specific;
3
+ repeat: Repeat;
4
+ between: Between;
5
+ }
6
+ export declare class Repeat {
7
+ isRepeat: boolean;
8
+ interval: number;
9
+ startAt: number;
10
+ }
11
+ export declare class Specific {
12
+ isSpecific: boolean;
13
+ values: DropDownItem[];
14
+ }
15
+ export declare class Between {
16
+ isBetween: boolean;
17
+ from: number;
18
+ to: number;
19
+ }
20
+ export declare enum Type {
21
+ Every = "every",
22
+ Custom = "custom"
23
+ }
24
+ export declare enum RegexItemsIndex {
25
+ Second = 0,
26
+ Minute = 1,
27
+ Hour = 2,
28
+ DayOfMonth = 3,
29
+ Month = 4,
30
+ DayOfWeek = 5,
31
+ Year = 6
32
+ }
33
+ export declare class DropDownItem {
34
+ id: number;
35
+ text: string;
36
+ constructor(id: number, text: string);
37
+ }
@@ -0,0 +1,15 @@
1
+ import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { DropDownItem } from '../types/shared.model';
3
+ import { YearService } from './year.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AXCronYearComponent {
6
+ #private;
7
+ yearService: YearService;
8
+ protected dropdownList: DropDownItem[];
9
+ protected oneTo100: DropDownItem[];
10
+ protected changeHandler(e: AXValueChangedEvent): void;
11
+ protected get isCustom(): boolean;
12
+ protected getYearByOffset(offset: number): number;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXCronYearComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCronYearComponent, "ax-cron-year", never, {}, {}, never, never, false, never>;
15
+ }
@@ -0,0 +1,16 @@
1
+ import { Between as sharedBetween, Custom as sharedCustom, Repeat as sharedRepeat, Type } from '../types/shared.model';
2
+ export declare class Year {
3
+ type: Type;
4
+ custom: Custom;
5
+ }
6
+ export declare class Repeat extends sharedRepeat {
7
+ startAt: number;
8
+ }
9
+ export declare class Between extends sharedBetween {
10
+ from: number;
11
+ to: number;
12
+ }
13
+ export declare class Custom extends sharedCustom {
14
+ repeat: Repeat;
15
+ between: Between;
16
+ }
@@ -0,0 +1,12 @@
1
+ import { StringService } from '../cron-job.service';
2
+ import { Year } from './year.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class YearService {
5
+ private stringService;
6
+ yearModel: Year;
7
+ constructor(stringService: StringService);
8
+ getExpression(): string;
9
+ reversExpression(cronExpressionPattern: string): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<YearService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<YearService>;
12
+ }
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
8
8
  */
9
9
  export declare class AXDateTimeInputComponent extends MXInputBaseValueComponent<Date> {
10
10
  private calendarService;
11
+ private platformService;
11
12
  /**
12
13
  * @ignore
13
14
  */
@@ -116,6 +117,14 @@ export declare class AXDateTimeInputComponent extends MXInputBaseValueComponent<
116
117
  * @param v - The new format string. It defines how date and time values should be formatted.
117
118
  */
118
119
  set format(v: string);
120
+ /**
121
+ * @description check if page is in rtl or ltr
122
+ */
123
+ isRtl: import("@angular/core").WritableSignal<boolean>;
124
+ /**
125
+ * @description listen to direction change to react to it.
126
+ */
127
+ protected ngOnInit(): void;
119
128
  /**
120
129
  * @ignore
121
130
  */
@@ -140,6 +140,7 @@ export declare class AXDateTimePickerComponent extends AXDateTimePickerComponent
140
140
  * @ignore
141
141
  */
142
142
  protected internalSetValue(value: Date): Date | null;
143
+ protected isTodayDisabled(): boolean;
143
144
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimePickerComponent, never>;
144
145
  static ɵcmp: i0.ɵɵComponentDeclaration<AXDateTimePickerComponent, "ax-datetime-picker", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "activeView": { "alias": "activeView"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "holidayDates": { "alias": "holidayDates"; "required": false; }; "type": { "alias": "type"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "cellClass": { "alias": "cellClass"; "required": false; }; "showNavigation": { "alias": "showNavigation"; "required": false; }; "currentTimeButton": { "alias": "currentTimeButton"; "required": false; }; "format": { "alias": "format"; "required": false; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "onClick": "onClick"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "depthChange": "depthChange"; "typeChange": "typeChange"; "activeViewChange": "activeViewChange"; "disabledDatesChange": "disabledDatesChange"; "holidayDatesChange": "holidayDatesChange"; "onNavigate": "onNavigate"; "onSlotClick": "onSlotClick"; "formatChange": "formatChange"; }, never, never, false, never>;
145
146
  }