@dev-tcloud/tcloud-ui 0.0.49 → 0.0.50

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,8 +1,9 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./tooltip/tooltip.directive";
3
3
  import * as i2 from "./align/align.directive";
4
+ import * as i3 from "./hover-parent/hover-parent.directive";
4
5
  export declare class TCloudUiDirectiveModule {
5
6
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiDirectiveModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiDirectiveModule, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective], never, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective]>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TCloudUiDirectiveModule, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective, typeof i3.TCloudUiHoverParentDirective], never, [typeof i1.TCloudUiTooltipDirective, typeof i2.TCloudUiAlignDirective, typeof i3.TCloudUiHoverParentDirective]>;
7
8
  static ɵinj: i0.ɵɵInjectorDeclaration<TCloudUiDirectiveModule>;
8
9
  }
@@ -0,0 +1,15 @@
1
+ import { Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TCloudUiHoverParentDirective {
4
+ private renderer;
5
+ private CLASS;
6
+ private ID;
7
+ constructor(renderer: Renderer2);
8
+ onMouseOver(): void;
9
+ onMouseOut(): void;
10
+ set TCHoverParent(id: string);
11
+ set TCHoverParentClass(clss: any);
12
+ getElement(): HTMLElement | undefined;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiHoverParentDirective, never>;
14
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TCloudUiHoverParentDirective, "[TCHoverParent]", never, { "TCHoverParent": "TCHoverParent"; "TCHoverParentClass": "TCHoverParentClass"; }, {}, never, never, false>;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.1.0",
6
6
  "@angular/core": "^14.1.0"
package/public-api.d.ts CHANGED
@@ -43,6 +43,7 @@ export * from './lib/_modules/tcloud-ui-accordion/components/tcloud-ui-accordion
43
43
  export * from './lib/_directives/directives.module';
44
44
  export * from './lib/_directives/tooltip/tooltip.directive';
45
45
  export * from './lib/_directives/align/align.directive';
46
+ export * from './lib/_directives/hover-parent/hover-parent.directive';
46
47
  export * from './lib/_pipes/tcloud-pipes.module';
47
48
  export * from './lib/_pipes/index';
48
49
  export * from './lib/_services/loading-transitions.service';