@acorex/components 5.0.57 → 5.0.60

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.
@@ -9,7 +9,7 @@ export declare class AXActionSheetItemComponent extends AXBaseComponent {
9
9
  * @ignore
10
10
  */
11
11
  constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
12
- handleOnClick(e: any): void;
12
+ _handleOnClick(e: any): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetItemComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDeclaration<AXActionSheetItemComponent, "ax-action-sheet-item", never, { "text": "text"; "color": "color"; }, { "onClick": "onClick"; }, never, never>;
15
15
  }
@@ -11,7 +11,6 @@ export declare class AXActionSheetComponent extends AXBaseComponent {
11
11
  */
12
12
  constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
13
13
  _handleBackdropClick(): void;
14
- ngAfterViewInit(): void;
15
14
  open(): void;
16
15
  close(): void;
17
16
  toggle(): void;
@@ -1,8 +1,12 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
1
2
  import { AXBaseComponent } from '../base/mixin';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class AXBreadCrumbsItemComponent extends AXBaseComponent {
4
5
  text: string;
5
- constructor();
6
+ /**
7
+ * @ignore
8
+ */
9
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
6
10
  static ɵfac: i0.ɵɵFactoryDeclaration<AXBreadCrumbsItemComponent, never>;
7
11
  static ɵcmp: i0.ɵɵComponentDeclaration<AXBreadCrumbsItemComponent, "ax-breadcrumbs-item", never, { "text": "text"; }, {}, never, ["ax-prefix,ax-loading,ax-icon", "ax-suffix,ax-loading,ax-icon"]>;
8
12
  }
@@ -1,7 +1,11 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
1
2
  import { AXBaseComponent } from '../base';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class AXBreadCrumbsComponent extends AXBaseComponent {
4
- constructor();
5
+ /**
6
+ * @ignore
7
+ */
8
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
5
9
  static ɵfac: i0.ɵɵFactoryDeclaration<AXBreadCrumbsComponent, never>;
6
10
  static ɵcmp: i0.ɵɵComponentDeclaration<AXBreadCrumbsComponent, "ax-breadcrumbs", never, {}, {}, never, ["ax-breadcrumbs-item"]>;
7
11
  }
@@ -37,5 +37,5 @@ export declare class AXCalendarComponent extends AXCalendarComponentMixin {
37
37
  private isHoliday;
38
38
  private isWeekend;
39
39
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCalendarComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarComponent, "ax-calendar", never, { "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "disabled": "disabled"; "tabIndex": "tabIndex"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "type": "type"; "holidayDates": "holidayDates"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "depthChange": "depthChange"; "typeChange": "typeChange"; "onSlotClick": "onSlotClick"; }, never, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXCalendarComponent, "ax-calendar", never, { "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "disabled": "disabled"; "tabIndex": "tabIndex"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "type": "type"; "holidayDates": "holidayDates"; }, { "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "depthChange": "depthChange"; "typeChange": "typeChange"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "onSlotClick": "onSlotClick"; }, never, never>;
41
41
  }
@@ -1,14 +1,14 @@
1
- import { OnInit } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
2
2
  import { AXBaseComponent } from '../base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class AXCollapseGroupComponent extends AXBaseComponent implements OnInit {
5
+ private cdr;
5
6
  accordion: boolean;
6
7
  nonCollapsedIndex: number;
7
8
  private _collapses;
8
- constructor();
9
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
9
10
  ngOnInit(): void;
10
11
  ngAfterViewInit(): void;
11
- ngDoCheck(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCollapseGroupComponent, never>;
13
13
  static ɵcmp: i0.ɵɵComponentDeclaration<AXCollapseGroupComponent, "ax-collapse-group", never, { "accordion": "accordion"; "nonCollapsedIndex": "nonCollapsedIndex"; }, {}, ["_collapses"], ["ax-collapse"]>;
14
14
  }
@@ -1,14 +1,15 @@
1
- import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
2
  import { AXBaseComponent } from '../base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class AXCollapseComponent extends AXBaseComponent implements OnInit {
5
+ private cdr;
6
+ constructor(elementRef: ElementRef, cdr: ChangeDetectorRef);
5
7
  isCollapsedChange: EventEmitter<any>;
6
8
  private _isCollapsed;
7
9
  get isCollapsed(): boolean;
8
10
  set isCollapsed(v: boolean);
9
11
  caption: string;
10
12
  headerTemplate: TemplateRef<any>;
11
- constructor();
12
13
  ngOnInit(): void;
13
14
  handleHeaderClick(): void;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AXCollapseComponent, never>;
@@ -143,5 +143,5 @@ export declare class AXDatePickerComponent extends AXBaseDatePickerMixin {
143
143
  _handleOnInputClickEvent(e: MouseEvent): void;
144
144
  private _highlightPart;
145
145
  static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePickerComponent, never>;
146
- static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "isOpen": "isOpen"; "fitParent": "fitParent"; "dropdownWidth": "dropdownWidth"; "position": "position"; "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "placeholder": "placeholder"; "maxLength": "maxLength"; "type": "type"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "format": "format"; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "depthChange": "depthChange"; "typeChange": "typeChange"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule"]>;
146
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePickerComponent, "ax-date-picker", never, { "isOpen": "isOpen"; "fitParent": "fitParent"; "dropdownWidth": "dropdownWidth"; "position": "position"; "disabled": "disabled"; "tabIndex": "tabIndex"; "readonly": "readonly"; "allowNull": "allowNull"; "value": "value"; "debounceTime": "debounceTime"; "name": "name"; "checked": "checked"; "placeholder": "placeholder"; "maxLength": "maxLength"; "type": "type"; "depth": "depth"; "activeView": "activeView"; "min": "min"; "max": "max"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "format": "format"; }, { "onOpened": "onOpened"; "onClosed": "onClosed"; "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "onValueChanged": "onValueChanged"; "depthChange": "depthChange"; "typeChange": "typeChange"; "disabledDates": "disabledDates"; "holidayDates": "holidayDates"; "formatChange": "formatChange"; }, never, ["ax-prefix", "ax-suffix", "ax-validation-rule"]>;
147
147
  }
@@ -1,8 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./result.component";
3
3
  import * as i2 from "@angular/common";
4
- export declare class ResultModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<ResultModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<ResultModule, [typeof i1.AXResultComponent], [typeof i2.CommonModule], [typeof i1.AXResultComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<ResultModule>;
4
+ export declare class AXResultModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXResultModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXResultModule, [typeof i1.AXResultComponent], [typeof i2.CommonModule], [typeof i1.AXResultComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXResultModule>;
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "5.0.57",
3
+ "version": "5.0.60",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.3.2",
6
6
  "@angular/core": "^13.3.2",