@morozeckiy/dd-lib 0.1.29 → 0.1.31

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.
@@ -1,12 +1,14 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { LibCommonButtonComponent } from '../common/lib-common-button';
3
+ import { TooltipData } from "../core";
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class LibFilterButtonComponent extends LibCommonButtonComponent {
5
6
  btnTitle: string | undefined;
6
7
  clearEvent: EventEmitter<null>;
7
8
  hintEvent: EventEmitter<null>;
9
+ hintContent: TooltipData | undefined;
8
10
  onClear($event: MouseEvent): void;
9
11
  hintClick($event: MouseEvent): void;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<LibFilterButtonComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<LibFilterButtonComponent, "dd-lib-filter-button", never, { "btnTitle": { "alias": "btnTitle"; "required": false; }; }, { "clearEvent": "clearEvent"; "hintEvent": "hintEvent"; }, never, ["*"], true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibFilterButtonComponent, "dd-lib-filter-button", never, { "btnTitle": { "alias": "btnTitle"; "required": false; }; "hintContent": { "alias": "hintContent"; "required": false; }; }, { "clearEvent": "clearEvent"; "hintEvent": "hintEvent"; }, never, ["*"], true, never>;
12
14
  }
@@ -1,7 +1,7 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
1
+ import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
2
  import { SvgIconsService } from "../core";
3
3
  import * as i0 from "@angular/core";
4
- export declare class LibSvgIconComponent {
4
+ export declare class LibSvgIconComponent implements OnInit {
5
5
  private el;
6
6
  private rdr;
7
7
  private svgIconRegistry;
@@ -9,9 +9,10 @@ export declare class LibSvgIconComponent {
9
9
  width: string | undefined;
10
10
  height: string | undefined;
11
11
  color: string | undefined;
12
- set icon(iconName: string | null | undefined);
12
+ icon: string | null | undefined;
13
13
  private svgIcon;
14
14
  constructor(el: ElementRef, rdr: Renderer2, svgIconRegistry: SvgIconsService, document: any);
15
+ ngOnInit(): void;
15
16
  private svgElementFromString;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<LibSvgIconComponent, [null, null, null, { optional: true; }]>;
17
18
  static ɵcmp: i0.ɵɵComponentDeclaration<LibSvgIconComponent, "dd-lib-svg-icon", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morozeckiy/dd-lib",
3
- "version": "0.1.29",
3
+ "version": "0.1.31",
4
4
  "repository": "https://gitlab.com/Morozeckiy/dd-lib",
5
5
  "publishConfig": {
6
6
  "access": "public"