@acorex/components 5.0.55 → 5.0.56

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.
@@ -0,0 +1,15 @@
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
2
+ import { AXBaseComponent, AXButtonClickEvent, AXStyleColorType } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXActionSheetItemComponent extends AXBaseComponent {
5
+ text: string;
6
+ color: AXStyleColorType;
7
+ onClick: EventEmitter<AXButtonClickEvent>;
8
+ /**
9
+ * @ignore
10
+ */
11
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
12
+ handleOnClick(e: any): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetItemComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXActionSheetItemComponent, "ax-action-sheet-item", never, { "text": "text"; "color": "color"; }, { "onClick": "onClick"; }, never, never>;
15
+ }
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectorRef, ElementRef } from '@angular/core';
2
+ import { AXBaseComponent } from '../base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AXActionSheetComponent extends AXBaseComponent {
5
+ caption: string;
6
+ closeOnBackdrop: boolean;
7
+ isOpen: boolean;
8
+ _backdrop: HTMLElement;
9
+ /**
10
+ * @ignore
11
+ */
12
+ constructor(_elementRef: ElementRef, _cdr: ChangeDetectorRef);
13
+ _handleBackdropClick(): void;
14
+ ngAfterViewInit(): void;
15
+ open(): void;
16
+ close(): void;
17
+ toggle(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXActionSheetComponent, "ax-action-sheet", never, { "caption": "caption"; "closeOnBackdrop": "closeOnBackdrop"; }, {}, never, ["ax-content", "ax-action-sheet-item"]>;
20
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./action-sheet.component";
3
+ import * as i2 from "./action-sheet-item.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../drawer/drawer.module";
6
+ import * as i5 from "../button/button.module";
7
+ import * as i6 from "@angular/platform-browser/animations";
8
+ export declare class AXActionSheetModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXActionSheetModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXActionSheetModule, [typeof i1.AXActionSheetComponent, typeof i2.AXActionSheetItemComponent], [typeof i3.CommonModule, typeof i4.AXDrawerModule, typeof i5.AXButtonModule, typeof i6.BrowserAnimationsModule], [typeof i1.AXActionSheetComponent, typeof i2.AXActionSheetItemComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXActionSheetModule>;
12
+ }
@@ -0,0 +1,3 @@
1
+ export * from './action-sheet.component';
2
+ export * from './action-sheet-item.component';
3
+ export * from './action-sheet.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "5.0.55",
3
+ "version": "5.0.56",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.3.2",
6
6
  "@angular/core": "^13.3.2",
package/public-api.d.ts CHANGED
@@ -2,6 +2,7 @@
2
2
  * Public API refrences of components
3
3
  * @module @acorex/components
4
4
  */
5
+ export * from "./lib/action-sheet";
5
6
  export * from "./lib/alert";
6
7
  export * from "./lib/avatar";
7
8
  export * from "./lib/badge";