ngx-rs-ant 0.11.3 → 0.11.6

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,16 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DxPopoverComponent } from "devextreme-angular";
3
+ import * as i0 from "@angular/core";
4
+ export declare class IconSelectorComponent {
5
+ target: any;
6
+ select: EventEmitter<string>;
7
+ iconList: string[];
8
+ hoverIcon?: string;
9
+ popover: DxPopoverComponent;
10
+ iconZoomOut: DxPopoverComponent;
11
+ constructor();
12
+ selectIcon(icon: string): void;
13
+ zoomOut($event: MouseEvent, icon: string): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconSelectorComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconSelectorComponent, "rs-icon-selector", never, { "target": "target"; }, { "select": "select"; }, never, never, false, never>;
16
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./icon-selector.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "devextreme-angular";
5
+ export declare class IconSelectorModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconSelectorModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IconSelectorModule, [typeof i1.IconSelectorComponent], [typeof i2.CommonModule, typeof i3.DevExtremeModule], [typeof i1.IconSelectorComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IconSelectorModule>;
9
+ }
@@ -22,11 +22,6 @@ export declare class ModalComponent implements OnInit, OnDestroy {
22
22
  hide(): void;
23
23
  ngOnDestroy(): void;
24
24
  resolveModalBackdropPosition(): {
25
- width?: undefined;
26
- height?: undefined;
27
- top?: undefined;
28
- left?: undefined;
29
- } | {
30
25
  width: string;
31
26
  height: string;
32
27
  top: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-rs-ant",
3
- "version": "0.11.3",
3
+ "version": "0.11.6",
4
4
  "license": "MIT",
5
5
  "description": "RsAnt components based on Angular and DevUI",
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -13,6 +13,8 @@ export * from './dynamic-params/dynamic-params.module';
13
13
  export * from './form/form.component';
14
14
  export * from './form/form.module';
15
15
  export * from './form/form.service';
16
+ export * from './icon-selector/icon-selector.component';
17
+ export * from './icon-selector/icon-selector.module';
16
18
  export * from './modal/modal.component';
17
19
  export * from './modal/modal.module';
18
20
  export * from './modal/modal.service';