@acorex/components 20.7.39 → 20.7.41

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/otp/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import { AXEvent, MXValueComponent, MXLookComponent } from '@acorex/cdk/common';
2
2
  import * as polytype from 'polytype';
3
3
  import * as _angular_core from '@angular/core';
4
4
 
5
+ type AXOtpMode = 'number' | 'dot' | 'star';
5
6
  declare class AXOtpCompletedEvent extends AXEvent {
6
7
  value: string;
7
8
  isCompleted: boolean;
@@ -18,6 +19,13 @@ declare const AXOtpComponent_base: polytype.Polytype.ClusteredConstructor<[{
18
19
  */
19
20
  declare class AXOtpComponent extends AXOtpComponent_base {
20
21
  type: _angular_core.InputSignal<"number" | "text">;
22
+ /**
23
+ * Controls how entered digits are displayed in each input.
24
+ * - `number`: shows the actual digit
25
+ * - `dot`: shows a dot character
26
+ * - `star`: shows an asterisk character
27
+ */
28
+ mode: _angular_core.InputSignal<AXOtpMode>;
21
29
  /**
22
30
  * Holds the length of the OTP input field.
23
31
  */
@@ -50,6 +58,14 @@ declare class AXOtpComponent extends AXOtpComponent_base {
50
58
  /** @ignore */
51
59
  internalSetValue(value: any): string;
52
60
  /** @ignore */
61
+ protected displayValue(i: number): string;
62
+ /** @ignore */
63
+ protected isMasked(): boolean;
64
+ /** @ignore */
65
+ protected hasValue(i: number): boolean;
66
+ /** @ignore */
67
+ protected _maskCharacter(): string;
68
+ /** @ignore */
53
69
  protected calcFontSize(): void;
54
70
  /** @ignore */
55
71
  protected _handleOnKeyDown(event: KeyboardEvent, i: number): void;
@@ -60,7 +76,7 @@ declare class AXOtpComponent extends AXOtpComponent_base {
60
76
  /** @ignore */
61
77
  protected _emitOnComplete(): void;
62
78
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXOtpComponent, never>;
63
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXOtpComponent, "ax-otp", never, { "state": { "alias": "state"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "look": { "alias": "look"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; }, { "stateChange": "stateChange"; "disabledChange": "disabledChange"; "length": "lengthChange"; "onCompleted": "onCompleted"; }, never, never, true, never>;
79
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXOtpComponent, "ax-otp", never, { "state": { "alias": "state"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "look": { "alias": "look"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "length": { "alias": "length"; "required": false; "isSignal": true; }; }, { "stateChange": "stateChange"; "disabledChange": "disabledChange"; "length": "lengthChange"; "onCompleted": "onCompleted"; }, never, ["ax-validation-rule"], true, never>;
64
80
  }
65
81
 
66
82
  declare class AXOtpModule {
@@ -70,3 +86,4 @@ declare class AXOtpModule {
70
86
  }
71
87
 
72
88
  export { AXOtpCompletedEvent, AXOtpComponent, AXOtpModule };
89
+ export type { AXOtpMode };
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "20.7.39",
3
+ "version": "20.7.41",
4
4
  "peerDependencies": {
5
- "@acorex/core": "20.7.39",
6
- "@acorex/cdk": "20.7.39",
5
+ "@acorex/core": "20.7.41",
6
+ "@acorex/cdk": "20.7.41",
7
7
  "polytype": ">=0.17.0",
8
8
  "angular-imask": ">=7.6.1",
9
9
  "gridstack": ">=12.0.0",
@@ -460,14 +460,14 @@
460
460
  "types": "./toast/index.d.ts",
461
461
  "default": "./fesm2022/acorex-components-toast.mjs"
462
462
  },
463
- "./toolbar": {
464
- "types": "./toolbar/index.d.ts",
465
- "default": "./fesm2022/acorex-components-toolbar.mjs"
466
- },
467
463
  "./tooltip": {
468
464
  "types": "./tooltip/index.d.ts",
469
465
  "default": "./fesm2022/acorex-components-tooltip.mjs"
470
466
  },
467
+ "./toolbar": {
468
+ "types": "./toolbar/index.d.ts",
469
+ "default": "./fesm2022/acorex-components-toolbar.mjs"
470
+ },
471
471
  "./tree-view": {
472
472
  "types": "./tree-view/index.d.ts",
473
473
  "default": "./fesm2022/acorex-components-tree-view.mjs"
@@ -481,7 +481,9 @@ type AXSchedulerMonthDayCell = {
481
481
  isToday: boolean;
482
482
  isHoliday: boolean;
483
483
  holidayTitle?: string;
484
+ holidayDescription?: string;
484
485
  holidayCssClass?: string;
486
+ holidayColor?: string;
485
487
  appointments: AXSchedulerAppointmentSegment[];
486
488
  visibleAppointments: AXSchedulerAppointmentSegment[];
487
489
  hiddenAppointments: AXSchedulerAppointmentSegment[];
@@ -500,6 +502,7 @@ declare class AXSchedulerMonthViewComponent extends NXComponent {
500
502
  private document;
501
503
  private scheduler;
502
504
  private calendarService;
505
+ private localeService;
503
506
  private schedulerService;
504
507
  readonly: _angular_core.InputSignal<boolean>;
505
508
  draggable: _angular_core.InputSignal<boolean>;